/*
Theme Name: Heritage Aesthetics Clinic
Theme URI: https://example.com
Author: Rajesh Rai 
Author URI: https://example.com
Description: Custom WordPress theme built for Heritage Aesthetics Clinic
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: heritage-aesthetics-clinic
*/


/* .page-hero.treatments-hero + * {
    margin-top: -10px;
    position: relative;
    z-index: 10;
}
 */

/* ========================================
   CUSTOM FONTS
======================================== */
@font-face {
    font-family: 'Parfumerie Script Pro';
    src: url('assets/fonts/ParfumerieScriptPro.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Blosta Script';
    src: url('assets/fonts/BlostaScript.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ========================================
   ANIMATIONS & TRANSITIONS
======================================== */

/* Smooth transitions for all interactive elements */
* {
    transition: all 0.3s ease;
}

/* Fade in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Page load animations */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

/* Stagger animations for lists */
.stagger-item {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.stagger-item:nth-child(1) {
    animation-delay: 0.1s;
}

.stagger-item:nth-child(2) {
    animation-delay: 0.2s;
}

.stagger-item:nth-child(3) {
    animation-delay: 0.3s;
}

.stagger-item:nth-child(4) {
    animation-delay: 0.4s;
}

.stagger-item:nth-child(5) {
    animation-delay: 0.5s;
}

.stagger-item:nth-child(6) {
    animation-delay: 0.6s;
}

/* Hover effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
}

/* Smooth scroll */
/* Smooth scroll */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}


/* ========================================
   SCROLL ANIMATIONS
======================================== */

.reveal-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.scroll-reveal {
    opacity: 1;
    transform: translateY(0);
}

/* Section transitions */
/* .intro-section, */
/* .speciality-section, remove scroll effect */
.home-section,
.three-columns-section,
.invitation-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.intro-section.active,
/* .speciality-section.active, */
.home-section.active,
.three-columns-section.active,
.invitation-section.active {
    opacity: 1;
    transform: translateY(0);
}


.speciality-section {
    opacity: 1;
    transform: none;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overscroll-behavior: none;
	min-width: 1024px;
}


:root {
    /* Color Variables */
    --cream: #e4d8ce;
    --dark-navy: #1A2B52;
    --gold: #D4AF37;
    --light-gold: #E8D5A3;
    --text-dark: #2C2C2C;
    --text-light: #FFFFFF;
    --bg-color: #e9e5db;

    /* Typography Scale - Standardized Font Sizes */
    /* Display: Hero titles, main page headings */
    --font-display: clamp(48px, 5vw, 80px);

    /* H1: Page titles, major section headers */
    --font-h1: clamp(36px, 3.5vw, 56px);

    /* H2: Section headings, card titles */
    --font-h2: clamp(28px, 2.5vw, 42px);

    /* H3: Sub-sections, item titles */
    --font-h3: clamp(22px, 2vw, 32px);

    /* Body: Standard paragraph text */
    --font-body: clamp(20px, 1.2vw, 18px);

    /* Small: Navigation, captions, metadata */
    --font-small: clamp(13px, 1vw, 15px);

    /* Tiny: Labels, badges */
    --font-tiny: clamp(10px, 0.8vw, 12px);
}

body {
    margin: 0;
    font-family: 'Libre Baskerville', serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: url('https://theheritageaesthetics.com/wp-content/uploads/2026/02/treatment-bg.jpeg');
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ========================================
   TREATMENT PAGES - SHARED STYLES
======================================== */

/* Treatment Page Container */
.treatment-page-container {
    background-color: var(--cream);
    /* Dark Navy */
    min-height: 100vh;
    padding-top: 0;
    padding-bottom: 0;
}

/* Hero Section with Background Image */
.treatment-hero {
    position: relative;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
}

/* ========================================
   SHARED PAGE HERO (Treatments, Contact, Story, Team)
======================================== */
.page-hero.treatments-hero {
    position: relative;
    height: 600px;
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
/*     overflow: hidden; */
    will-change: transform;
    /* Default background if not overridden by page specific styles */
    background-image: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)), url('https://theheritageaesthetics.com/wp-content/uploads/2026/03/building-background.png');
	-webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}

.page-hero .hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(235 235 235 / 50%);
    /* 	background: linear-gradient(to right, rgb(255 255 255 / 0%), rgba(239 239 239)); */
}

.page-hero .hero-content {
    position: relative;
/*     z-index: 2; */
    max-width: 900px;
    padding: 0 20px;
    display: flex;
    flex-flow: column;
    align-items: center;
}

.page-hero .hero-title {
    font-family: 'Blosta Script', serif !important;
    /* Unified font as requested */
    font-size: var(--font-display);
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: -20px;
    color: var(--dark-navy);
    line-height: 1.2;
}

.page-hero .ornamental-divider {
    width: 500px;
    height: auto;

    margin-top: 10px;
}

.page-hero .ornamental-divider img {
    width: 100%;
    height: auto;
}

@media (max-width: 991px) {
    .page-hero.treatments-hero {
        height: 500px;
    }
}

@media (max-width: 576px) {
    .page-hero.treatments-hero {
        height: 400px;
    }
}

.treatment-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 22, 40, 0.6);
    /* Dark navy overlay */
}

.treatment-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.treatment-main-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: var(--font-display);
    font-weight: 400;
    color: #F5F5DC;
    /* Cream */
    letter-spacing: 4px;
    margin: 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

/* Content Container */
.treatment-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 40px;
}

/* Service Title Section */
.service-title-section {
    text-align: center;
    margin-bottom: 80px;
}

.service-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: var(--font-h2);
    font-weight: 400;
    color: var(--dark-navy);
    /* Cream */
    letter-spacing: 3px;
    margin-bottom: 30px;
    /* text-transform: uppercase; */
}

/* Ornamental Divider */
.treatment-page-container .ornamental-divider {
    width: 300px;
    margin: 30px auto;
    text-align: center;
}

.treatment-page-container .ornamental-divider svg {
    width: 100%;
    height: 60px;
}

/* Section Styling */
.treatment-section {
    /*     margin-bottom: 60px; */
    padding: 50px 40px;
    background: rgba(212, 175, 55, 0.03);
    /* border: 1px solid rgba(212, 175, 55, 0.15); */
    border-radius: 2px;
}

.treatment-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: var(--font-h3);
    font-weight: 400;
    color: #D4AF37;
    /* Gold */
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.treatment-text {
    font-family: 'Montserrat', sans-serif;
    font-size: var(--font-body);
    line-height: 1.9;
    color: #F5F5DC;
    /* Cream */
    margin-bottom: 25px;
    text-align: justify;
}

.treatment-text strong {
    color: #D4AF37;
    /* Gold */
    font-weight: 600;
}

/* Lists */
.treatment-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.treatment-list-item {
    font-family: 'Montserrat', sans-serif;
    font-size: var(--font-body);
    line-height: 1.8;
    color: #F5F5DC;
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
}

.treatment-list-item::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: #D4AF37;
    /* Gold */
    font-size: 14px;
}

/* Book Now CTA Section */
.treatment-page-container .cta-section {
    text-align: center;
    padding: 80px 40px;

    /* border: 2px solid rgba(212, 175, 55, 0.3); */
    border-radius: 4px;
    margin-top: 80px;
    position: relative;
}

.treatment-page-container .cta-section::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 400;
    color: #F5F5DC;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.cta-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #D4AF37;
    margin-bottom: 40px;
    font-style: italic;
}

.btn-book-cta {
    display: inline-block;
    padding: 20px 60px;
    background-color: transparent;

    color: #F5F5DC;
    font-family: 'Parfumerie Script Pro', cursive;
    font-size: 32px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
    letter-spacing: 1px;
}

.btn-book-cta:hover {
    background-color: #D4AF37;
    color: #0a1628;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

/* Responsive Design for Treatment Pages */
@media (max-width: 768px) {
    .treatment-hero {
        height: 300px;
        margin-top: 80px;
    }

    .treatment-main-title {
        font-size: 40px;
        letter-spacing: 2px;
    }

    .treatment-content {
        padding: 50px 20px;
    }

    .service-title {
        font-size: 36px;
    }

    .treatment-section {
        padding: 35px 25px;
    }

    .treatment-section-title {
        font-size: 28px;
    }

    .treatment-text {
        font-size: 15px;
        text-align: left;
    }

    .cta-title {
        font-size: 36px;
    }

    .btn-book-cta {
        font-size: 24px;
        padding: 15px 40px;
    }

    .treatment-page-container .cta-section {
        padding: 50px 25px;
    }
}

@media (max-width: 576px) {
    .treatment-main-title {
        font-size: 32px;
    }

    .service-title {
        font-size: 28px;
    }

    .treatment-page-container .ornamental-divider {
        width: 200px;
    }
}

/* ========================================
   NAVBAR & HEADER
======================================== */
.heritage-navbar {
    background: transparent;
    padding: 20px 0;
    transition: all 0.3s ease;
}

#heritageNav {
    padding-top: 20px;
}

.heritage-navbar.scrolled {
    background: rgba(26, 43, 82, 0.98);
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

/* Navigation Menu */
.heritage-menu {
    align-items: center;
    gap: 15px;
}

/* Shorter vertical separator - not on first item */
.heritage-menu .nav-item:not(:first-child) {
    position: relative;
    padding-left: 30px;
}

.heritage-menu .nav-item:not(:first-child)::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    height: 15px;
    width: 2px;
    background-color: var(--dark-navy);
    opacity: 0.5;
}

.heritage-navbar.scrolled .heritage-menu .nav-item:not(:first-child)::before {
    background-color: var(--text-light);
}

.heritage-menu .nav-link {
    color: var(--dark-navy);
    /* Dark Text for Light Background */
    font-size: 25px;
	font-weight: bolder;
    /* font-weight: 600; */
    letter-spacing: 1.5px;
    padding: 10px 15px !important;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    font-family: 'Cormorant Garamond', serif;
    opacity: 1;
}

/* Scrolled State: White Text */
.heritage-navbar.scrolled .nav-link {
    color: var(--text-light) !important;
    opacity: 0.9;
}

/* Ensure bootstrap override */
.navbar-dark .navbar-nav .nav-link {
    color: var(--dark-navy);
}

.heritage-navbar.scrolled .navbar-nav .nav-link {
    color: var(--text-light);
}

.heritage-menu .nav-link::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.heritage-menu .nav-link:hover::before,
.heritage-menu .nav-link.active::before {
    width: 60%;
}

.heritage-menu .nav-link:hover {
    color: var(--gold) !important;
    opacity: 1;
}

/* Logo Styling */
.logo-item {
    margin: 0 30px;
}

.heritage-logo {
    height: 120px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

/* Invert Logo on Scroll (Navy -> White) */
.heritage-navbar.scrolled .heritage-logo {
    height: 60px;
    filter: brightness(0) invert(1);
}

.heritage-logo:hover {
    transform: scale(1.05);
}

.heritage-logo-mobile {
    height: 50px;
    width: auto;
}

/* Dropdown Menu */
.heritage-menu .dropdown-menu {
    background: rgba(26, 43, 82, 0.98);
    border: 1px solid var(--gold);
    border-radius: 0;
    margin-top: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    padding: 0;
}

.heritage-menu .dropdown-item {
    color: var(--text-light);
    padding: 12px 20px;
    transition: all 0.3s ease;
    font-size: 13px;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.heritage-menu .dropdown-item:last-child {
    border-bottom: none;
}

.heritage-menu .dropdown-item:hover {
    background: var(--gold);
    color: var(--dark-navy);
    padding-left: 25px;
}

/* Mobile Menu Styling */
.navbar-toggler {
    border: 1px solid var(--dark-navy);
    padding: 8px 12px;
}

.heritage-navbar.scrolled .navbar-toggler {
    border-color: var(--gold);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
}

/* Toggler Icon color swap */
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(26, 43, 82, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.heritage-navbar.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgb(31 41 80)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile Logo Position */
.mobile-logo {
    margin-left: auto;
}

@media (max-width: 991px) {
    .heritage-navbar {
        background: rgba(26, 43, 82, 0.98);
        /* Solid Light background on mobile default */
    }

    .heritage-navbar.scrolled {
        background: rgba(26, 43, 82, 0.98);
    }

    .heritage-menu {
        margin-top: 20px;
        text-align: center;
        padding-bottom: 20px;
    }

    /* Hide pipe separators on mobile */
    .heritage-menu .nav-item:not(:first-child)::before {
        display: none;
    }

    .heritage-menu .nav-item:not(:first-child) {
        padding-left: 0;
    }

    .heritage-menu .nav-link {
        padding: 15px 20px !important;
        border-bottom: 1px solid rgba(26, 43, 82, 0.1);
        color: white !important;
    }

    .heritage-navbar.scrolled .heritage-menu .nav-link {
        color: var(--text-light) !important;
        border-bottom-color: rgba(232, 213, 163, 0.1);
    }

    .logo-item {
        display: none;
    }
}

/* ========================================
   HERO SECTION
======================================== */
.hero-blend-bottom {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 500px;
    /*     background: linear-gradient(to bottom, 
        transparent 0%,
        rgba(228, 216, 206, 0.5) 50%,
        var(--cream) 100%
    ); */

    /* 	background: linear-gradient(to bottom, transparent 0%, rgb(251 251 251 / 50%) 50%, #e5d8cf 100%); */
    /* 	background: linear-gradient(to bottom, transparent 0%, rgb(229 216 207) 100%, #e5d8cf 100%); */
    /* 	background: linear-gradient(to bottom, transparent 0%, rgb(251 251 251 / 15%) 40%, rgb(251 251 251 / 35%) 65%, rgb(253 248 248 / 50%) 80%, #e9e6dc 100%); */
/*     background: linear-gradient(to bottom, transparent 0%, rgb(233 229 219 / 0.1) 30%, rgb(233 229 219 / 0.3) 55%, rgb(233 229 219 / 0.6) 75%, rgb(233 229 219 / 0.9) 90%, #ebe7dd 100%); */
	background: linear-gradient(to bottom, transparent 0%, rgb(233 229 219 / 0.1) 30%, rgb(233 229 219 / 0.3) 55%, rgb(233 229 219 / 0.6) 75%, rgb(235 231 220) 90%, #ece8dd 100%);
	 

    z-index: 5;
    pointer-events: none;
}



.hero-section {
    position: relative;
    height: 100vh !important;
    min-height: 600px;
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0;
    padding: 0;
	
	 overflow: hidden;
    /* This makes the bottom 20% of the video fade to 0% opacity */
/*     -webkit-mask-image: linear-gradient(to bottom, 
        black 0%, 
        black 75%, 
        rgba(0, 0, 0, 0.1) 95%, 
        transparent 100%
    );
    mask-image: linear-gradient(to bottom, 
        black 0%, 
        black 75%, 
        rgba(0, 0, 0, 0.1) 95%, 
        transparent 100%
    ); */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center center;
	-webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Light gradient overlay */
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.5));
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--dark-navy);
    padding: 0 20px;
}

/* Logo instead of Title */
.hero-logo-large {
    max-width: 600px;
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
    animation: fadeIn 1.5s ease-out;
}

/* Mobile responsive video background */
@media (max-width: 768px) {
    .hero-section {
        min-height: 500px;
        height: 80vh !important;
    }

    .hero-logo-large {
        max-width: 400px;
        width: 90%;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 400px;
        height: 70vh !important;
    }

    .hero-logo-large {
        max-width: 300px;
        width: 115%;
        margin-top: 90px;
    }
}

/* .intro-blend-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to bottom, 
        rgba(228, 216, 206, 0) 0%,
        rgba(228, 216, 206, 0.5) 50%,
        var(--cream) 100%
    );
    z-index: 1;
    pointer-events: none;
} */

.hero-subtitle {
    font-size: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.9;
    text-shadow: none;
    font-weight: 600;
}

/* ========================================
   INTRO SECTION
======================================== */
.intro-section {
/*     background-image: linear-gradient(rgba(245, 241, 234, 0.6), rgba(245, 241, 234, 0.6)), url('https://theheritageaesthetics.com/wp-content/uploads/2026/02/treatment-bg.jpeg'); */
	background-image: linear-gradient(rgb(235 232 222) 0%, rgba(245, 241, 234, 0.2)), url(https://theheritageaesthetics.com/wp-content/uploads/2026/02/treatment-bg.jpeg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    padding: 100px 20px;
    	margin-top: -30px;
}


.intro-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px;
    align-items: center;
}

.intro-text {
    padding-right: 40px;
    text-align: center;
}

.intro-heading {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: clamp(28px, 3.5vw, 48px);
    font-style: italic;
    font-weight: 400;
    margin-bottom: 30px;
    color: var(--dark-navy);
    line-height: 1.3;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 0.02em;
    text-rendering: optimizeLegibility;
}

.intro-description {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(16px, 1.4vw, 20px);
    font-style: italic;
    font-weight: 400;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.intro-text p {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(16px, 1.4vw, 20px);
    font-style: italic;
    font-weight: 400;
    line-height: 1.8;
    color: var(--dark-navy);
}

/* Signature text with custom script font */
#signature-text {
    all: unset;
    /*     font-family: 'Blosta Script', cursive; */
    font-size: clamp(36px, 4vw, 70px);
    color: var(--dark-navy);
    /* 1. Prevents jagged edges */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    /* 2. Adjust spacing - script fonts often need extra room */
    letter-spacing: 0.02em;
    line-height: 1.4;

    /* 3. Text rendering optimization */
    text-rendering: optimizeLegibility;
}


.intro-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* .ornate-frame {
    position: relative;
    width: 400px;
    height: 500px;
    border: 15px solid var(--gold);
    border-radius: 50% / 60%;
    padding: 20px;
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2),
        inset 0 0 0 8px var(--cream),
        inset 0 0 0 10px var(--gold);
    overflow: hidden;
}

.ornate-frame::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50% / 60%;
    border: 2px solid var(--light-gold);
    opacity: 0.5;
} */

.ornate-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

/* ========================================
   NAVY SECTION
======================================== */
.navy-section {
    background-image: url('assets/images/background_texture_navy.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--text-light);
    padding: 80px 20px;
}

.navy-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    text-align: center;
}

.navy-title {
    font-family: 'Parfumerie Script Pro', cursive;
    font-size: clamp(36px, 5vw, 70px);
    margin-bottom: 15px;
    color: var(--text-light);
}

.navy-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(15px, 1.2vw, 18px);
    font-style: italic;
    line-height: 1.8;
    opacity: 0.9;
}

.navy-text a {
    color: var(--light-gold);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.navy-text a:hover {
    color: var(--gold);
}

/* ========================================
   SPECIALITY SECTION
======================================== */
.speciality-section {
    background-image: linear-gradient(rgba(245, 241, 234, 0.6), rgba(245, 241, 234, 0.6)), url('https://theheritageaesthetics.com/wp-content/uploads/2026/02/treatment-bg.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    padding: 100px 20px;
}

.speciality-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;

}

/* Decorative Candle on Left */
.speciality-decor {
    flex-shrink: 0;
    width: 300px;
    /* padding-top: 80px; */
}

.candle-decoration {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 5px 10px var(--cream));
}

/* Main Content Area */
.speciality-main {
    flex: 1;
/*     max-width: 900px; */
    padding: 20px;
}

.speciality-header {
    text-align: center;
    margin-bottom: 60px;
}

.speciality-main-title {
    font-family: 'Blosta Script', cursive !important;
    font-size: var(--font-display, clamp(48px, 5vw, 80px));
    font-style: italic;
    margin-bottom: 15px;
    color: var(--dark-navy);
}



/* Grid Layout - 2 Columns */
.speciality-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 80px;
}

.speciality-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 100px;
}

/* Title wrapper to hold icon and h3 side by side */
.speciality-title-wrapper {
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: stretch;
    gap: 15px;
    margin-bottom: 10px;
}

/* Wax Stamp Icon */
.speciality-icon {
    width: 60px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.speciality-item-title {
/*     font-family: 'Parfumerie Script Pro', cursive; */
	font-family: 'Cormorant Garamond', serif;
/*     font-size: clamp(32px, 4vw, 60px); */
	font-size: 40px !important;
/*     font-weight: bold; */
    margin: 0;
    color: var(--dark-navy);
    text-align: center;
	white-space: nowrap;
}

.speciality-item-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(16px, 1.8vw, 20px);
    line-height: 1.6;
    color: var(--dark-navy);
    /*     text-align: justify; */
    margin: 0;
}

/* ========================================
   INVITATION SECTION
======================================== */
.invitation-section {
    padding: 120px 20px;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.invitation-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 0;
    right: 0;
    bottom: -20%;
    height: 140%;
    background-image: url('assets/images/exclusive_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.7;
    filter: blur(3px);
    z-index: 0;
    will-change: transform;
    transform: translateY(var(--parallax-y-invitation, 0));
}

.invitation-container {
    max-width: 1000px;
    width: 95%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.invitation-envelope-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.2));
}

/* ========================================
   ITINERARY SECTION
======================================== */
.itinerary-section {
    padding: 120px 20px;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* .itinerary-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 0;
    right: 0;
    bottom: -20%;
    height: 140%;
    background-image: linear-gradient(rgba(35, 44, 82, 0.7), rgba(35, 44, 82, 0.7)), url('assets/images/itinerary_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    will-change: transform;
    transform: translateY(var(--parallax-y-itinerary, 0));
}
 */
.itinerary-container {
    max-width: 1100px;
    width: 95%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.itinerary-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.2));
}

/* ========================================
   SWAN QUOTE SECTION
======================================== */
.swan-section {
    padding: 80px 20px;
    position: relative;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.swan-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 0;
    right: 0;
    bottom: -20%;
    height: 170%;
    background-image: url('assets/images/swan.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    will-change: transform;
    transform: translateY(var(--parallax-y-swan, 0));
}

.swan-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(20, 25, 45, 0.75), rgba(20, 25, 45, 0.75));
    z-index: 0;
}

.swan-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.swan-quote {
    font-family: 'Parfumerie Script Pro', cursive;
    font-size: clamp(28px, 3.5vw, 48px);
    color: #ffffff;
    font-weight: normal;
    line-height: 1.4;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    margin: 0;
}

/* ========================================
   HOME SECTION
======================================== */
.home-section {
    background-image: linear-gradient(rgba(245, 241, 234, 0.6), rgba(245, 241, 234, 0.6)), url('https://theheritageaesthetics.com/wp-content/uploads/2026/02/treatment-bg.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    padding: 100px 20px;
}

.home-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.home-image-wrapper {
    display: flex;
    justify-content: center;
}

/* Ornate Lace Frame Wrapper */
.lace-frame-wrapper {
    position: relative;
    padding: 30px;
    background: linear-gradient(135deg, #f5f1e8 0%, #ede7d9 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow:
        0 0 0 15px var(--cream),
        0 0 0 17px rgba(212, 175, 55, 0.2),
        0 20px 60px rgba(0, 0, 0, 0.15);
    width: fit-content;
    max-width: 500px;
}

/* Decorative Lace Pattern Border */
.lace-frame-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background-image: repeating-linear-gradient(45deg,
            transparent,
            transparent 10px,
            rgba(212, 175, 55, 0.05) 10px,
            rgba(212, 175, 55, 0.05) 20px);
    border: 25px solid transparent;
    border-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><path d="M0,0 Q25,15 50,0 T100,0 L100,100 Q75,85 50,100 T0,100 Z" fill="%23ede7d9" stroke="%23d4af37" stroke-width="1" opacity="0.4"/></svg>') 30;
    pointer-events: none;
    z-index: 1;
}

/* Lace corner embellishments */
.lace-frame-wrapper::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    pointer-events: none;
    z-index: 1;
}

/* Image inside lace frame */
.lace-frame-wrapper>img {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
    z-index: 2;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.oval-frame {
    position: relative;
    width: 380px;
    height: 480px;
    border-radius: 50% / 60%;
    overflow: hidden;
    border: 12px solid white;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3),
        inset 0 0 0 5px rgba(232, 213, 163, 0.5);
    z-index: 2;
}

.oval-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-content {
    padding-left: 20px;
}

.home-title {
    font-family: 'Parfumerie Script Pro', cursive;
    font-size: clamp(48px, 8vw, 130px);
    margin-bottom: 20px;
    color: rgba(139, 115, 85, 0.8);
    font-weight: normal;
    line-height: 1.2;
}

.home-subtitle {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(139, 115, 85, 0.9);
    margin-bottom: 25px;
    text-transform: uppercase;
}

.home-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-style: italic;
    line-height: 1.9;
    color: rgba(139, 115, 85, 0.85);
    margin-bottom: 20px;
    text-align: justify;
}

/* ========================================
   CONTACT FORM SECTION
======================================== */
.contact-section {
    
/*     padding: 100px 20px; */
    position: relative;
    min-height: 600px;
    overflow: hidden;
}

/* .contact-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 0;
    right: 0;
    bottom: -20%;
    height: 140%;
    background-image: url('assets/images/chandelier.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    z-index: 0;
    will-change: transform;
    transform: translateY(var(--parallax-y-contact, 0));
} */

/* .contact-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(42, 35, 75, 0.85), rgba(42, 35, 75, 0.85));
    z-index: 0;
} */

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-title {
    font-family: 'Blosta Script', cursive !important;
    font-size: var(--font-display, clamp(48px, 5vw, 80px));
    color: var(--dark-navy);
    text-align: center;
    font-weight: normal;
	margin-bottom: 50px;
}

.contact-form {
    background: var(--dark-navy);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-label {
    display: block;
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 8px;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
}

.form-label-small {
    display: block;
    color: #ffffff;
    /*     font-size: 20px; */
    margin-bottom: 5px;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-family: 'Libre Baskerville', serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 80px;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    color: #ffffff;
    /* font-size: 24px; */
    cursor: pointer;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-submit {
    width: 100%;
    padding: 15px 30px;
    background: #e9e5db;
    color: var(--dark-navy);
    border-radius: 20px;
    border: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    font-style: italic;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    text-transform: capitalize;
}

.form-submit:hover {
    /*     background: var(--dark-navy); */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 165, 114, 0.3);
}

.form-disclaimer {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    margin-top: 15px;
    font-style: italic;
}

/* ========================================
   PRICING/LACE SECTION
======================================== */
.pricing-section {
    background-color: var(--dark-navy);
    padding: 100px 20px;
    position: relative;
}

.lace-frame {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 80px 60px;
    position: relative;
}

.lace-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 25px solid;
    border-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M0,0 L20,20 L0,40 L20,60 L0,80 L0,100 L100,100 L100,80 L80,60 L100,40 L80,20 L100,0 Z" fill="white" stroke="%23D4AF37" stroke-width="2"/></svg>') 30 repeat;
    pointer-events: none;
}

.lace-content {
    text-align: center;
    position: relative;
}

.lace-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.lace-text {
    font-size: 16px;
    line-height: 1.9;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* ========================================
   FOOTER TOP SECTION
======================================== */
.footer-top-section {
    color: var(--dark-navy);
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
    z-index: 1000;
    /* Ensure it stays above the fixed decorative pattern */
}

.footer-top-section::before {
    content: '';
    position: absolute;
    top: 40%;
    left: 0;
    right: 0;
    bottom: -20%;
    height: 190%;
    background-image: url('assets/images/exclusive_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    will-change: transform;
    transform: translateY(var(--parallax-y-footer, 0));
}

.footer-top-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.3);
    z-index: 0;
}

.footer-top-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-contact-info {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(24px, 3vw, 40px);
    font-style: italic;
    font-weight: bold;
    color: var(--dark-navy);
    margin: 0;
    line-height: 1.6;
}

/* ========================================
   FOOTER
======================================== */
footer {
    background-color: #0F1A35;
    color: var(--text-light);
    padding: 40px 20px;
    text-align: center;
    position: relative;
    z-index: 10;
    /* Ensure it stays above the fixed decorative pattern */
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-text {
    font-size: 14px;
    opacity: 0.7;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

/* ----------------------------------------
   LANDSCAPE TABLET / SMALL LAPTOP (1024x600)
---------------------------------------- */
@media (max-width: 1024px) and (max-height: 600px) {
    #contact-ornamental-divider {
        width: 400px !important;
        margin: -50px auto 30px !important;
    }

    .page-hero .hero-title {
        font-size: 48px !important;
    }

    .page-hero .ornamental-divider {
        width: 400px !important;
    }

    .navbar-dark .navbar-nav .nav-link {
        font-size: 10px;
    }

    .values-item-text {
        font-size: 16px !important;
    }

    /* Hero Section - reduce height for short viewport */
    .hero-section {
        min-height: 400px;
        height: 100vh !important;
    }

    .hero-logo-large {
        max-width: 600px;
        margin-top: 80px;
    }

    /* Intro Section */


    .intro-section {
        padding: 60px 20px;
    }

    .intro-container {
        gap: 30px;
    }

    .intro-heading {
        font-size: 32px;
    }

    /* Navy Section */
    .navy-section {
        padding: 50px 20px;
    }

    .navy-container {
        gap: 30px;
    }

    .navy-title {
        font-size: 45px;
    }

    /* Speciality Section */
    .speciality-section {
        padding: 60px 20px;
    }

    .speciality-container {
        gap: 30px;
    }

    .speciality-decor {
        width: 150px;
		top: -200px !important;
    }

    .speciality-header {
        margin-bottom: 30px;
    }

    .speciality-main-title {
        font-size: 90px;
    }

    .speciality-grid {
        gap: 30px 90px !important;

    }

    .speciality-item-title {
        font-size: 50px;
    }

    .speciality-item-text {
        font-size: 16px;
    }

    .speciality-icon {
        width: 50px;
        height: 50px;
    }

    /* Invitation & Itinerary Sections */
    .invitation-section,
    .itinerary-section {
        padding: 60px 20px;
        min-height: 400px;
    }

    /* Swan Quote Section */
    .swan-section {
        padding: 50px 20px;
        min-height: 180px;
    }

    /* Home Section */
    .home-section {
        padding: 60px 20px;
    }

    .home-container {
        gap: 40px;
    }

    .home-title {
        font-size: 80px;
    }

    /* Contact Form Section */
    .contact-section {
        padding: 60px 20px;
        min-height: auto;
    }

    .contact-title {
        font-size: 80px;
        margin-bottom: 25px;
    }

    .contact-label {
        font-size: 38px !important;
    }

    /* Footer */
    .footer-decorative-banner {
        padding: 25px 20px;
    }

    /* Treatment Pages */
    .page-hero {
        min-height: 350px;
    }

    .treatments-section {
        padding: 60px 20px;
    }

    /* Values Section */
    .values-section {
        min-height: auto;
    }

    /* Policy Pages */
    .policy-page-container {
        padding: 100px 20px 60px;
    }

    .our-team-page .treatment-heading {
        font-size: 60px !important;
    }

    .our-team-page .treatment-text {
        font-size: 20px !important;
    }

    .our-team-page .image-col {
        min-height: 0px !important;
    }

    .our-team-page .image-wrapper {
        width: 60% !important;
    }
}

@media (max-width: 1280px) {
	.hero-section {
		height: 80vh !important;
	}
    .hero-logo-large {
        max-width: 900px !important;
        margin-top: 50px !important;
    }
	.intro-text {
/* 		padding-right: 10px; */
	}
	.intro-container {
/* 		transform: scale(1.2);
		padding: 50px 80px; */
	}
	.intro-text p {
		font-size: 27px;
		line-height: 1.2;
/* 		text-align: justify; */
	}
	.values-container {
		padding: 0px 0px !important;
	}
	.values-content-overlay {
/* 		transform: scale(1.2); */
	}
	
	.values-title-script {
		font-size: 60px !important;
	}
	
	.at-the-heritage {
		font-size: 32px !important;
	}
	.values-item-title {
		font-size: 60px !important;
	}
	.values-item-text {
		font-size: 25px !important;
		line-height: 1.4 !important;
	}
	
	.speciality-item-text {
/* 		font-size: 25px; */
	}
	
	    .speciality-statue-decor {
        width: clamp(300px, 65vw, 800px);
        opacity: 0.4;
        left: -50px;
    }
	
	.clinic-approach-content-overlay {
/* 		transform: scale(1.2); */
	}
	.clinic-approach-text {
		font-size: 22px !important;
	}
	.heritage-experience-container {
		padding-bottom: 120px;
	}
	
	.heritage-experience-heading {
		font-size: 32px !important;
	}
	.heritage-experience-text {
		font-size: 22px !important;
		
	}
	.contact-section {
/* 		transform: scale(1.2);  */
/* 		margin-bottom: 60px; */
	}
	
/* 	Treatment page */
	.treatment-title {
		font-size: clamp(62px, 4vw, 68px);
	}
	
	.treatment-description {
		font-size: 22px;
	}
	
/* 	our story page */
	.story-subtitle {
		font-size: 66px;
	}
}

@media (max-width: 968px) {
    .hero-title {
        font-size: 48px;
    }

    .intro-container,
    .home-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .intro-text {
        padding-right: 0;
    }

    .home-content {
        padding-left: 0;
    }

    .navy-container,
    .footer-top-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .speciality-container {
        flex-direction: column;
/*         align-items: center; */
    }

    .speciality-decor {
        width: 150px;
        padding-top: 0;
        margin-bottom: 40px;
    }

    .speciality-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ornate-frame,
    .oval-frame {
        width: 300px;
        height: 380px;
    }

    .lace-frame-wrapper {
        padding: 20px;
        max-width: 350px;
    }

    .lace-frame-wrapper::before {
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
        border-width: 15px;
    }
}

@media (max-width: 640px) {
	.hero-logo-large {
        max-width: 900px !important;
/*         margin-top: 50px !important; */
    }

    .invitation-section,
    .itinerary-section {
        padding: 60px 0;
    }

    .invitation-container,
    .itinerary-container {
        width: 100%;
    }

    .swan-section {
        padding: 60px 20px;
        min-height: 200px;
    }

    .swan-quote {
        font-size: 28px;
    }

    .contact-section {
        padding: 60px 20px;
    }

    .contact-title {
        font-size: 38px;
        margin-bottom: 30px;
    }

    .contact-form {
        padding: 25px 20px;
    }

    .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-submit {
        font-size: 16px;
        padding: 12px 25px;
    }

    .hero-title {
        font-size: 36px;
    }

    .intro-heading,
    .home-title,
    .invitation-title,
    .speciality-main-title {
        font-size: 40px;
    }

    .home-subtitle {
        font-size: 16px;
        letter-spacing: 1.5px;
    }


    .lace-title {
        font-size: 28px;
    }

    .lace-frame {
        padding: 40px 30px;
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
    }
}

/* ========================================
   ANIMATIONS
======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-container {
    animation: fadeIn 0.8s ease-out;
}

/* ========================================
   FOOTER ADDITIONAL CONTENT
======================================== */
.footer-additional {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
    line-height: 1.6;
}

.footer-additional p {
    margin-bottom: 10px;
}

.footer-additional a {
    color: var(--light-gold);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.footer-additional a:hover {
    color: var(--gold);
}

/* ========================================
   PREMIUM FOOTER
======================================== */

.premium-footer {
    margin-top: 0;
    position: relative;
    z-index: 10;
}

/* Decorative Address Banner */
.footer-decorative-banner {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 100" preserveAspectRatio="none"><defs><pattern id="toile" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="%232A234B" opacity="0.15"/><path d="M10,30 Q15,25 20,30 T30,30" stroke="%232A234B" stroke-width="0.5" fill="none" opacity="0.1"/><circle cx="70" cy="60" r="1.5" fill="%232A234B" opacity="0.12"/><path d="M60,70 Q65,68 70,70 T80,70" stroke="%232A234B" stroke-width="0.4" fill="none" opacity="0.08"/></pattern></defs><rect width="1200" height="100" fill="%23E4D8CE"/><rect width="1200" height="100" fill="url(%23toile)"/></svg>');
    background-size: cover;
    background-position: center;
    background-color: var(--cream);
    padding: 40px 20px;
    border-top: 1px solid rgba(42, 35, 75, 0.1);
    position: relative;
}

.footer-decorative-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(228, 216, 206, 0.3) 20%,
            rgba(228, 216, 206, 0.5) 50%,
            rgba(228, 216, 206, 0.3) 80%,
            transparent 100%);
    pointer-events: none;
}

.footer-banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.footer-address {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-style: italic;
    color: var(--dark-navy);
    margin: 0;
    letter-spacing: 0.5px;
   
}

/* Copyright Section */
.footer-copyright-section {
    background-color: var(--dark-navy);
    padding: 25px 20px;
}

.footer-copyright-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin: 0;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-address {
        font-size: 16px;
    }

    .footer-decorative-banner {
        padding: 30px 15px;
    }

    .footer-copyright-section {
        padding: 20px 15px;
    }
}

/* ========================================
   TREATMENTS OVERVIEW PAGE STYLES
======================================== */

.treatments-section {
    background-color: var(--cream);
    padding: 100px 20px;
}

.treatments-main-title {
    font-family: 'Parfumerie Script Pro', cursive;
    font-size: 70px;
    color: var(--dark-navy);
    margin-bottom: 20px;
}

.treatments-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-style: italic;
    color: var(--text-dark);
    margin-top: 20px;
}

.treatment-card {
    background: white;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    min-height: 380px;
    border-radius: 8px;
}

.treatment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15) !important;
}

.treatment-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.treatment-icon-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.treatment-icon-fallback {
    display: none;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gold);
    color: white;
    font-size: 36px;
    line-height: 70px;
}

.treatment-title {
    font-family: 'Parfumerie Script Pro', cursive;
    font-size: 44px;
    color: var(--dark-navy);
    margin-bottom: 20px;
}

.treatment-description {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: -webkit-center;
	color: var(--dark-navy);
}

.treatment-link {
    display: inline-block;
    padding: 12px 35px;
    background: var(--dark-navy);
    color: white;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.treatment-link:hover {
    background: var(--gold) !important;
    color: var(--dark-navy) !important;
}

/* ========================================
   TREATMENT PAGES STYLES
======================================== */

/* Treatment Page Layout */
.treatment-detail-section {
    background-color: var(--cream);
    padding: 100px 20px;
}

.technology-section {
    background-color: var(--cream);
    padding: 100px 20px;
}

/* Treatment Page Headers */
.treatment-main-title,
.technology-main-title {
    font-family: 'Parfumerie Script Pro', cursive;
    font-size: 70px;
    color: var(--cream);
    margin-bottom: 20px;
}

.treatments-subtitle,
.technology-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-style: italic;
    color: var(--text-dark);
    margin-top: 20px;
}

/* Treatment Sections */
.treatment-section,
.technology-intro,
.technology-overview,
.technology-selection,
.technology-safety,
.technology-note {
    /* background: white; */
    padding: 50px 40px;
    /*     margin-bottom: 40px; */
    /*     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08); */
    /* border-radius: 8px; */
}

/* Section Titles */
.treatment-section-title,
.technology-section-title {
    font-family: 'Parfumerie Script Pro', cursive;
    font-size: 48px;
    color: var(--cream);
    margin-bottom: 25px;
    text-align: center;
}

.treatment-category-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 15px;
}

/* Treatment Text */
.treatment-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-style: italic;
    line-height: 1.8;
    color: var(--text-dark);
    text-align: justify;
}

.treatment-text-small {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-style: italic;
    line-height: 1.8;
    color: var(--text-dark);
}

.treatment-text+.treatment-text {
    margin-top: 20px;
}

/* Treatment Lists */
.treatment-list {
    list-style: none;
    padding-left: 0;
}

.treatment-list-item {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-style: italic;
    line-height: 1.8;
    color: var(--text-dark);
}

.treatment-list-item::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.treatment-checklist-item {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-style: italic;
    line-height: 1.8;
    color: var(--text-dark);
}

.treatment-checklist-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.treatment-criteria-item {
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-style: italic;
    line-height: 1.8;
    color: var(--text-dark);
}

.treatment-criteria-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 20px;
}

/* Treatment Note Box */
.treatment-note {
    background: #f9f6f3;
    padding: 20px;
    border-left: 4px solid var(--gold);
    margin-top: 25px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-style: italic;
    line-height: 1.8;
    color: var(--text-dark);
    text-align: justify;
}

.technology-feature-box {
    background: #f9f6f3;
    padding: 25px;
    margin-bottom: 20px;
    border-left: 4px solid var(--gold);
    border-radius: 4px;
}

.technology-feature-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 12px;
}

.technology-feature-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-style: italic;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: var(--dark-navy);
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.cta-title {
    font-family: 'Parfumerie Script Pro', cursive;
    font-size: 48px;
    color: white;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.cta-subtitle-extended {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.7;
}

.btn-book-cta,
.btn-consultation {
    display: inline-block;
    padding: 18px 60px;
    background: var(--cream);
    color: var(--dark-navy);
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    border-radius: 4px;
}

.btn-book-cta:hover,
.btn-consultation:hover {
    background: white !important;
    color: var(--dark-navy) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4) !important;
}

/* Technology Page Specific */
.technology-category {
    margin-bottom: 35px;
}

.technology-note {
    background: var(--dark-navy);
    padding: 50px 40px;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {

    .treatment-main-title,
    .technology-main-title {
        font-size: 50px;
    }

    .treatment-section-title,
    .technology-section-title,
    .cta-title {
        font-size: 38px;
    }

    .treatment-section,
    .technology-intro,
    .technology-overview,
    .technology-selection,
    .technology-safety,
    .technology-note,
    .cta-section {
        padding: 30px 25px;
    }

    .treatment-text {
        font-size: 18px;
    }
}

/* ========================================
   CONTACT PAGE STYLES
======================================== */

.contact-section-home {
    /*     background-color: var(--cream); */
    background-image: linear-gradient(rgba(245, 241, 234, 0.6), rgba(245, 241, 234, 0.6)), url('https://theheritageaesthetics.com/wp-content/uploads/2026/02/treatment-bg.jpeg');
/* 	background-image: linear-gradient(rgb(232 230 220), rgb(255 255 255 / 60%)), url(https://theheritageaesthetics.com/wp-content/uploads/2026/02/treatment-bg.jpeg); */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    padding: 100px 20px;
}

.contact-main-title {
    font-family: 'Parfumerie Script Pro', cursive;
    font-size: 70px;
    color: var(--dark-navy);
    margin-bottom: 20px;
}

.contact-subtitle {
    font-family: 'Cormorant Garamond', serif;
/*     font-size: clamp(16px, 1.5vw, 20px); */
	font-size: 22px;
    color: var(--dark-navy);
    text-align: center;

    font-style: italic;
    opacity: 0.85;
}

.contact-info-card,
.contact-form-card {
    /* Glassmorphism Effect */
/*     background: rgb(236 232 223); */
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 50px 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    height: 100%;
}

.contact-info-title,
.contact-form-title {
    font-family: 'Cormorant Garamond', serif !important;
/*     font-size: var(--font-h3, clamp(22px, 2vw, 32px)); */
	font-size: 32px;
    font-weight: 400;
    /*     letter-spacing: 8px; */
    /*     font-family: 'Parfumerie Script Pro', cursive;
    font-size: var(--font-display, clamp(48px, 5vw, 80px)); */
    color: var(--dark-navy);
    margin-bottom: 30px;
    text-align: center;
}

.contact-form-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: var(--font-body, clamp(16px, 1.2vw, 18px));
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
}

.contact-info-item:last-of-type {
    border-bottom: none;
}

.contact-icon {
    font-size: 32px;
    width: 60px;
    flex-shrink: 0;
}

.contact-details {
    flex: 1;
}

.contact-label {
    font-family: 'Cormorant Garamond', serif !important;
/*     font-size: var(--font-h3, clamp(22px, 2vw, 32px)); */
    color: var(--dark-navy);
    margin-bottom: 8px;
}

.contact-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: var(--font-body, clamp(16px, 1.2vw, 18px));
    font-style: italic;
    line-height: 1.6;
    color: var(--dark-navy);
    margin: 0;
}

.contact-link {
    color: var(--dark-navy);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--gold);
}

.contact-cta-box {
    background: var(--dark-navy);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    margin-top: 30px;
}

.contact-cta-title {
    font-family: 'Cormorant Garamond';
    font-size: 32px;
    color: white;
    margin-bottom: 15px;
}

.contact-cta-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.btn-contact-cta {
    display: inline-block;
    padding: 14px 40px;
    background: var(--cream);
    color: var(--dark-navy);
    font-family: 'Cormorant Garamond', serif;
    font-size: var(--font-body, clamp(16px, 1.2vw, 18px));
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-contact-cta:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Google Maps Section */
.google-map-container {
/*     background: #e7e3da; */
    padding: 50px 40px;
/*     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08); */
/*     border-radius: 8px; */
    margin-top: 40px;
}

.map-title {
    font-family: 'Cormorant Garamond', cursive;
/*     font-size: var(--font-h3, clamp(22px, 2vw, 32px)); */
	font-size: 32px;
    color: var(--dark-navy);
    text-align: center;
    margin-bottom: 30px;
	text-transform: uppercase;
}

.map-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
/*     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
}

.map-note {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-style: italic;
    color: var(--text-dark);
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background: #f9f6f3;
    border-radius: 4px;
}

/* Contact Form */
.contact-label-form {
    font-family: 'Cormorant Garamond', serif;
    font-size: var(--font-body, clamp(16px, 1.2vw, 18px));
    font-weight: 600;
    color: #e0e0e0;
    margin-bottom: 8px;
    display: block;
}

.contact-input,
.contact-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-style: italic;
    transition: all 0.3s ease;
}

.contact-input:focus,
.contact-textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.contact-textarea {
    resize: vertical;
}

.btn-submit-contact {
    width: 100%;
    padding: 16px 40px;
    background: var(--cream);
    color: var(--dark-navy);
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit-contact:hover {
    background: var(--gold);
    color: var(--dark-navy);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* ========================================
   TESTIMONIALS SECTION
======================================== */

.testimonials-section {
    background-color: white;
    padding: 100px 20px;
}

.testimonials-title {
    font-family: 'Parfumerie Script Pro', cursive;
    font-size: 60px;
    color: var(--dark-navy);
    text-align: center;
    margin-bottom: 20px;
}

.testimonials-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-style: italic;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 60px;
}

.testimonial-card {
    background: var(--cream);
    padding: 40px 35px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-quote-icon {
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 50px;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
}

.testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-style: italic;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Parfumerie Script Pro', cursive;
    font-size: 24px;
}

.testimonial-details {
    flex: 1;
}

.testimonial-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 5px;
}

.testimonial-treatment {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-style: italic;
    color: var(--text-dark);
}

.testimonial-rating {
    color: var(--gold);
    font-size: 18px;
    margin-top: 5px;
}

/* Responsive for Contact & Testimonials */
@media (max-width: 768px) {

    .contact-main-title,
    .testimonials-title {
        font-size: 50px;
    }

    .contact-info-title,
    .contact-form-title {
        font-size: var(--font-h2, clamp(28px, 2.5vw, 42px));
    }

    .contact-info-card,
    .contact-form-card {
        padding: 30px 25px;
    }

    .testimonial-card {
        padding: 30px 25px;
    }
	
	.medically-led-text {
		font-size: 16px !important;
	}
}

/* ========================================
   FOOTER STYLES (Updated to match reference)
======================================== */
footer {
    padding: 30px 0;
}

.footer-content {
    max-width: 1400px;
}

/* Footer Menu */
.footer-menu {
    margin: 0;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 8px;
    list-style: none;
}

.footer-menu a {
    color: #FFFFFF !important;
    font-family: 'Cormorant Garamond', serif;
    text-transform: uppercase;
    font-size: 14px;
    /* unify size for consistency */
    letter-spacing: 1.3px;
    line-height: 1.6;
    opacity: 0.95;
    transition: color 0.3s ease, opacity 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.footer-menu a:hover {
    color: #D4AF37 !important;
    opacity: 1;
}

/* Footer Brand */
.footer-brand {
    color: #FFFFFF;
    font-family: 'Playfair Display', serif;
    margin-bottom: 12px !important;
}

.footer-address {
    font-family: 'Libre Baskerville', serif;
    color: rgba(255, 255, 255, 0.9);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
}

/* Social Icons */
.footer-socials a {
    display: inline-block;
    transition: all 0.3s ease;
    text-decoration: none;
    opacity: 0.9;
}

.footer-socials a:hover {
    color: #D4AF37 !important;
    opacity: 1;
    transform: translateY(-2px);
}

/* Gmail icon monochrome (black & white) */
.footer-socials .gmail-icon {
    display: inline-block;
    filter: grayscale(100%) brightness(0) invert(1);
    /* renders white icon on dark background */
    opacity: 0.9;
    transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.footer-socials a:hover .gmail-icon {
    opacity: 1;
    transform: translateY(-2px);
}

.footer-contact-info {
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact-info p {
    margin-bottom: 4px;
}

.footer-contact-info a {
    color: #FFFFFF;
    transition: color 0.3s ease;
}

.footer-contact-info a:hover {
    color: #D4AF37 !important;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-menu {
        text-align: center;
    }

    .footer-contact-info {
        text-align: center !important;
    }

    footer .col-md-4 {
        margin-bottom: 25px;
    }

    footer .col-md-4:last-child {
        margin-bottom: 0;
    }
}

/* ========================================
   POLICY PAGES STYLES
======================================== */
.policy-page-container {
    background-color: var(--cream);
    min-height: 100vh;
    padding: 120px 20px 80px;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: #FFFFFF;
    padding: 60px 80px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.policy-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    color: var(--dark-navy);
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.policy-text {
    font-family: 'Libre Baskerville', serif;
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-dark);
    white-space: pre-line;
}

.policy-text p {
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .policy-content {
        padding: 40px 30px;
    }

    .policy-title {
        font-size: 36px;
    }

    .policy-text {
        font-size: 15px;
    }
}

/* ========================================
   ENHANCED MOBILE RESPONSIVENESS
   ======================================== */

/* ----------------------------------------
   NAVBAR MOBILE IMPROVEMENTS
---------------------------------------- */
@media (max-width: 991px) {
    .heritage-navbar {
        padding: 10px 0;
    }

    #heritageNav {
        padding-top: 20px;
    }

    .heritage-menu .nav-link {
        font-size: 12px;
        padding: 12px 15px !important;
        letter-spacing: 1px;
    }

    .heritage-logo-mobile {
        height: 40px;
    }

    /* Improve touch targets */
    .navbar-toggler {
        padding: 10px 14px;
        min-width: 44px;
        min-height: 44px;
        background-color: var(--cream);
    }

    .portrait-founder {
        display: flex;
        justify-content: center;
    }
}

/* ----------------------------------------
   FONT SCALING - TABLET (768px)
---------------------------------------- */
@media (max-width: 768px) {

    /* Large Script Fonts */
    .speciality-main-title,
    .home-title,
    .contact-title {
        font-size: 80px !important;
    }

    .contact-subtitle {
/*         font-size: var(--font-h1, clamp(36px, 3.5vw, 56px)); */
		padding-bottom: 20px;
    }

    .navy-title {
        font-size: 50px;
    }

    .treatments-main-title,
    .contact-main-title {
        font-size: 50px;
    }

    .speciality-item-title {
        font-size: 45px;
    }

    #signature-text {
        font-size: 50px;
    }

    .intro-heading {
        font-size: 38px;
    }

    .intro-description,
    .intro-text p {
        font-size: 16px;
    }

    .speciality-item-text {
        font-size: 22px;
    }

    .footer-contact-info {
        font-size: 28px !important;
    }

    .swan-quote {
        font-size: 32px;
    }

    .contact-label {
        font-size: var(--font-h3, clamp(22px, 2vw, 32px));
    }

    .contact-info-title,
    .contact-form-title,
    .map-title {
        font-size: var(--font-h1, clamp(36px, 3.5vw, 56px));
    }

    .cta-title {
        font-size: 38px;
    }

    .testimonials-title {
        font-size: 42px;
    }

    /* Navy Section - Single Column */
    .navy-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .navy-text {
        font-size: 16px;
    }

    /* Speciality Section Improvements */
    .speciality-section {
        padding: 60px 15px;
    }

    .speciality-icon {
        width: 55px;
        height: 50px;
    }

    .speciality-title-wrapper {
        flex-direction: row;
        gap: 20px;
        justify-content: center;
    }

    /* 	.speciality-item {
		padding-bottom: 60px;
	} */

    .speciality-item-text {
        text-align: center;
    }

    /* Intro Section */
    .intro-section {
        padding: 60px 15px;
    }

    .ornate-frame img {
        max-width: 100%;
    }

    /* Home Section */
    .home-section {
        padding: 60px 15px;
    }

    .home-text {
        font-size: 16px;
        text-align: left;
    }

    /* Invitation Section */
    .invitation-section {
        padding: 80px 10px;
    }

    /* Contact Form Improvements */
    .contact-form {
        padding: 30px 20px;
    }

    .form-label,
    .form-label-small {
        font-size: 13px;
    }

    .checkbox-label {
        font-size: 13px;
    }

    .form-input,
    .form-textarea {
        padding: 14px 16px;
        font-size: 16px;
    }

    /* Footer Improvements */
    .footer-decorative-banner {
        padding: 25px 15px;
    }

    .footer-address {
        font-size: 15px !important;
    }

    .footer-menu a {
        font-size: 13px;
    }

    /* Treatment Cards */
    .treatment-card {
        padding: 35px 25px;
        min-height: auto;
    }

    .treatment-title {
        font-size: 36px;
    }

    /* CTA Buttons - Touch Friendly */
    .btn-book-cta,
    .btn-consultation,
    .btn-contact-cta,
    .btn-submit-contact,
    .form-submit,
    .treatment-link {
        padding: 14px 30px;
        min-height: 48px;
        font-size: 16px;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 25px 20px;
    }

    .testimonial-text {
        font-size: 16px;
    }

    /* Policy Pages */
    .policy-page-container {
        padding: 100px 15px 60px;
    }

    .policy-content {
        padding: 40px 25px;
    }
}

/* ----------------------------------------
   FONT SCALING - MOBILE (576px)
---------------------------------------- */
@media (max-width: 576px) {

    /* Large Script Fonts - Further Reduction */
    .speciality-main-title,
    .home-title,
    .contact-title {
        font-size: 60px !important;
    }

    

    .navy-title {
        font-size: 42px;
    }

    

    #signature-text {
        font-size: 42px;
    }

    .intro-heading {
        font-size: 32px;
    }

    .footer-contact-info {
        font-size: 16px !important;
    }

    .contact-label {
        font-size: var(--font-h3, clamp(22px, 2vw, 32px));
    }

    .contact-info-title,
    .contact-form-title,
    .map-title {
        font-size: var(--font-h2, clamp(28px, 2.5vw, 42px));
    }

    .cta-title {
        font-size: 32px;
    }

    /* Speciality Section */
    .speciality-item-text {
        font-size: 20px;
        text-align: left;
    }

    /* Footer Top Section */
    .footer-top-section {
        padding: 40px 15px;
    }

    /* Google Map */
    .google-map-container {
        padding: 30px 20px;
    }

    /* Ornamental Divider */
    .ornamental-divider {
        width: 200px;
    }

    .page-hero .ornamental-divider {
        width: 300px;
    }
}

/* ----------------------------------------
   FONT SCALING - SMALL MOBILE (480px)
---------------------------------------- */
@media (max-width: 480px) {

    /* Extra Small Screen Font Sizes */
    .speciality-main-title,
    .home-title,
    .contact-title {
        font-size: 40px !important;
    }

   

    .navy-title {
        font-size: 38px;
    }

    .treatments-main-title,
    .contact-main-title {
        font-size: 40px;
    }

   

    #signature-text {
        font-size: 38px;
    }

    .intro-heading {
        font-size: 28px;
    }

    .intro-description,
    .intro-text p {
        font-size: 16px;
    }

    .speciality-item-text {
        font-size: 16px;
    }


    .swan-quote {
        font-size: 24px;
    }

    .contact-label {
        font-size: var(--font-body, clamp(16px, 1.2vw, 18px));
    }

    .contact-info-title,
    .contact-form-title,
    .map-title {
        font-size: var(--font-h3, clamp(22px, 2vw, 32px));
    }

    .cta-title {
        font-size: 28px;
    }

    .testimonials-title {
        font-size: 36px;
    }

    /* Treatment Page Hero */
    .treatment-main-title {
        font-size: 28px !important;
    }

    /* Navbar - Extra Small */
    .heritage-menu .nav-link {
        font-size: 11px;
        padding: 10px 12px !important;
    }

    /* Navy Section */
    .navy-section {
        padding: 50px 15px;
    }

    .navy-text {
        font-size: 15px;
    }

    /* Speciality Section */
    .speciality-header {
        margin-bottom: 40px;
    }

    .speciality-icon {
        width: 50px;
        height: 45px;
    }

    /* Home Section */
    .home-subtitle {
        font-size: 14px;
        letter-spacing: 1px;
    }

    .home-text {
        font-size: 16px;
    }

    /* Contact Section */
    .contact-section {
        padding: 50px 15px;
    }

    .contact-icon {
        font-size: 26px;
        width: 45px;
    }

    .contact-text {
        font-size: var(--font-body, clamp(16px, 1.2vw, 18px));
    }

    /* Contact Form */
    .contact-form {
        padding: 25px 15px;
        border-radius: 15px;
    }

    

    

    /* Lace Frame */
    .lace-frame-wrapper {
        padding: 15px;
        max-width: 280px;
    }

    .lace-frame-wrapper::before {
        border-width: 10px;
    }

    /* Oval Frame */
    .ornate-frame,
    .oval-frame {
        width: 250px;
        height: 320px;
    }

    /* Treatment Cards */
    .treatment-card {
        padding: 30px 20px;
    }

    .treatment-title {
        font-size: 32px;
    }

    .treatment-description {
        font-size: 16px;
    }

    /* CTA Section */
    .cta-section {
        padding: 40px 20px;
    }

    .cta-text {
        font-size: 16px;
    }

    .cta-subtitle,
    .cta-subtitle-extended {
        font-size: 16px;
    }

    /* Footer */
    footer {
        padding: 25px 10px;
    }

    .footer-heading img {
        width: 220px !important;
    }

    .footer-menu a {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .footer-socials a {
        margin: 0 8px !important;
        font-size: 20px !important;
    }

    /* Testimonials */
    .testimonials-section {
        padding: 60px 15px;
    }

    .testimonial-quote-icon {
        font-size: 36px;
    }

    .testimonial-avatar {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .testimonial-name {
        font-size: 18px;
    }

    /* Policy Pages */
    .policy-content {
        padding: 30px 20px;
    }

    .policy-title {
        font-size: 30px;
    }

    .policy-text {
        font-size: 14px;
    }
}

/* ----------------------------------------
   TOUCH-FRIENDLY IMPROVEMENTS
---------------------------------------- */
@media (max-width: 768px) {

    /* Minimum touch target sizes */
    a,
    button,
    input[type="submit"],
    .nav-link,
    .dropdown-item {
        min-height: 44px;
    }

    /* Improve form input visibility */
    .form-input:focus,
    .form-textarea:focus,
    .contact-input:focus,
    .contact-textarea:focus {
        border-width: 2px;
    }

    /* Better link spacing */
    .footer-menu li {
        margin-bottom: 12px;
    }

    /* Ensure no horizontal overflow */
    body {
        overflow-x: hidden;
    }

    .container,
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
}

