/* ========================================
   Medical Skin Studio - Stylesheet
   Color Palette:
         Taupe:        #59534B
         Dark Taupe:   #4B463F
         Darker Taupe: #3C3832
         Light Taupe:  #CFC9C2
         Pale Taupe:   #EEEAE6
         Beige:        #F4F1ED
         Warm Beige:   #E8E2DB
         Off-white:    #FBFAF8
         White:        #FFFFFF
         Dark Text:    #2E2A25
         Mid Text:     #6A6359
   ======================================== */

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --sage: #59534B;
    --sage-dark: #4B463F;
    --sage-darker: #3C3832;
    --sage-light: #CFC9C2;
    --sage-pale: #EEEAE6;
    --beige: #F4F1ED;
    --beige-warm: #E8E2DB;
    --off-white: #FBFAF8;
    --white: #FFFFFF;
    --dark: #2E2A25;
    --dark-soft: #3B362F;
    --mid: #6A6359;
    --light-text: #8C857B;
    --border: #D9D3CB;
    --shadow: rgba(89, 83, 75, 0.10);
    --shadow-md: rgba(89, 83, 75, 0.16);
    --sage-rgb: 89, 83, 75;
    --sage-dark-rgb: 75, 70, 63;
    --sage-darker-rgb: 60, 56, 50;
    --sage-light-rgb: 207, 201, 194;
    --sage-pale-rgb: 238, 234, 230;
    --beige-rgb: 244, 241, 237;
    --off-white-rgb: 251, 250, 248;
    --dark-rgb: 46, 42, 37;
    --radius: 12px;
    --radius-sm: 8px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: var(--dark);
    background-color: var(--off-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    line-height: 1.3;
    color: var(--dark);
}

a {
    color: var(--sage-dark);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--sage-darker);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 36px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--sage);
    color: var(--white);
    border-color: var(--sage);
}

.btn-primary:hover {
    background-color: var(--sage-dark);
    border-color: var(--sage-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--sage-dark);
    transform: translateY(-2px);
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition);
    background-color: transparent;
}

.navbar.scrolled {
    background-color: rgba(250, 250, 247, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 0;
    box-shadow: 0 2px 20px var(--shadow);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    gap: 0;
    line-height: 1;
    text-decoration: none;
    color: var(--white);
    transition: color var(--transition);
}

.brand-logo {
    display: block;
    max-width: 100%;
    width: auto;
    height: auto;
    aspect-ratio: 818.56 / 52.95;
}

.nav-logo .brand-logo {
    width: 300px;
    height: auto;
}

.logo-medical {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--white);
    transition: color var(--transition);
}

.logo-skin {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--white);
    transition: color var(--transition);
    margin-top: -2px;
}

.navbar.scrolled .logo-medical,
.navbar.scrolled .logo-skin {
    color: var(--dark);
}

.navbar.scrolled .nav-logo {
    color: var(--dark);
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: clamp(4px, 0.9vw, 8px);
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 50px;
    transition: all var(--transition);
    text-decoration: none;
}

/* Desktop nav overflow (auto "More" dropdown when items would clip) */
.navbar.navbar--compact .nav-link {
    font-size: 0.76rem;
    padding: 7px 12px;
}

.navbar.navbar--compact .nav-cta {
    padding: 9px 16px;
}

/* Mid widths (roughly 770px–1110px): shrink logo + tighten links to avoid clipping */
@media (max-width: 1110px) {
    .nav-logo .brand-logo {
        width: 240px;
    }

    .nav-link {
        font-size: 0.76rem;
        padding: 7px 12px;
    }

    .nav-cta {
        padding: 10px 18px;
        margin-left: 4px;
    }
}

.nav-overflow {
    position: relative;
}

.nav-overflow-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 50px;
    transition: all var(--transition);
    background: none;
    border: none;
    cursor: pointer;
}

.nav-overflow-btn:hover {
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.1);
}

.navbar.scrolled .nav-overflow-btn {
    color: var(--mid);
}

.navbar.scrolled .nav-overflow-btn:hover {
    color: var(--sage-dark);
    background-color: var(--sage-pale);
}

.nav-overflow-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 200px;
    padding: 10px;
    border-radius: var(--radius);
    list-style: none;
    display: none;
    z-index: 1101;
    background: rgba(45, 59, 45, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 12px 30px var(--shadow-md);
}

.navbar.scrolled .nav-overflow-menu {
    background: rgba(250, 250, 247, 0.98);
}

.nav-overflow.open .nav-overflow-menu {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.nav-overflow-menu .nav-link {
    width: 100%;
    border-radius: var(--radius-sm);
    padding: 10px 12px;
    color: rgba(255, 255, 255, 0.92);
}

.navbar.scrolled .nav-overflow-menu .nav-link {
    color: var(--dark) !important;
}

@media (max-width: 768px) {
    .nav-overflow {
        display: none !important;
    }
}

.nav-link:hover {
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.1);
}

.navbar.scrolled .nav-link {
    color: var(--mid);
}

.navbar.scrolled .nav-link:hover {
    color: var(--sage-dark);
    background-color: var(--sage-pale);
}

.nav-cta {
    background-color: var(--sage);
    color: var(--white) !important;
    font-weight: 500;
    margin-left: 8px;
}

.nav-cta:hover {
    background-color: var(--sage-dark) !important;
    color: var(--white) !important;
}

.navbar.scrolled .nav-cta {
    color: var(--white) !important;
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--white);
    position: relative;
    transition: all var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--white);
    transition: all var(--transition);
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.navbar.scrolled .hamburger,
.navbar.scrolled .hamburger::before,
.navbar.scrolled .hamburger::after {
    background-color: var(--dark);
}

.nav-toggle.active .hamburger {
    background-color: transparent;
}

.nav-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.nav-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--sage-darker) 0%, var(--sage-dark) 40%, var(--sage) 70%, var(--sage-light) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(var(--sage-light-rgb), 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(var(--beige-rgb), 0.1) 0%, transparent 40%),
        radial-gradient(ellipse at 60% 80%, rgba(var(--sage-darker-rgb), 0.2) 0%, transparent 50%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(var(--dark-rgb), 0.15);
    z-index: 2;
}

.hero-periphery {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    padding: 120px 24px 80px;
    color: var(--white);
    opacity: 1;
    mix-blend-mode: soft-light;
}

.hero-periphery-grid {
    height: 100%;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(5, 1fr);
    gap: clamp(10px, 1.8vw, 22px);
}

.hero-periphery-grid > div {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    border-radius: 12px;
}

.hero-periphery-grid svg {
    width: clamp(18px, 2.2vw, 34px);
    height: auto;
    display: block;
}

.hero-periphery-grid img {
    width: min(100%, 240px);
    aspect-ratio: 1 / 1;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 12px;
    filter: contrast(1.08) saturate(1.02);
}

@media (max-width: 1024px) {
    .hero-periphery-grid {
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: repeat(6, 1fr);
    }

    .hero-periphery-grid img {
        max-width: 180px;
    }
}

@media (max-width: 768px) {
    .hero-periphery-grid {
        grid-template-columns: repeat(7, 1fr);
        grid-template-rows: repeat(6, 1fr);
    }

    .hero-periphery-grid img {
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .hero-periphery-grid {
        grid-template-columns: repeat(7, 1fr);
        grid-template-rows: repeat(5, 1fr);
    }

    .hero-periphery-grid img {
        max-width: 90px;
    }
}

.hero-periphery-item {
    opacity: 0;
    transition-property: opacity;
    transition-duration: var(--mss-fade-duration, 1200ms);
    transition-timing-function: ease;
}

.hero-periphery-item.is-visible {
    opacity: var(--mss-hero-float-opacity, 0.34);
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    padding: 120px 24px 80px;
}

.hero-content {
    position: relative;
    overflow: hidden; /* if you need clipping */
}


.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 16px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 300;
    color: var(--white);
    letter-spacing: 0.02em;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;
}

.brand-logo--facials-aesthetics {
    aspect-ratio: 818.56 / 106.5;
}

.hero-title .brand-logo--facials-aesthetics {
    width: 100%;
    max-width: 720px;
    height: auto;
    margin: 0 auto;
}

.hero-divider {
    width: 60px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 auto 24px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
}

.hero-description {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
    max-width: 540px;
    margin: 0 auto 40px;
    opacity: 0.9;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.8s;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 1s;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 1.4s;
}

.hero-scroll a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
    animation: bounceDown 2s ease-in-out infinite;
}

.hero-scroll a:hover {
    color: var(--white);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* --- Section Styles --- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 400;
    margin-bottom: 20px;
}

.section-divider {
    width: 50px;
    height: 2px;
    background-color: var(--sage);
    margin: 0 auto;
}

.section-description {
    max-width: 600px;
    margin: 20px auto 0;
    color: var(--mid);
    font-size: 0.95rem;
}

/* --- About --- */
.about {
    padding: 100px 0;
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--sage-pale) 0%, var(--sage-light) 100%);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--sage-dark);
}

.about-image-placeholder span {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.about-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--mid);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.about-features {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--sage-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sage-dark);
}

.about-feature strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--dark);
}

.about-feature p {
    font-size: 0.85rem;
    margin-bottom: 0;
    color: var(--mid);
}

/* --- Treatments --- */
.treatments {
    padding: 100px 0;
    background-color: var(--beige);
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.treatment-card {
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    transition: all var(--transition);
    border: 1px solid transparent;
}

.treatment-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px var(--shadow-md);
    border-color: var(--sage-light);
}

.treatment-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background-color: var(--sage-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sage-dark);
    transition: all var(--transition);
}

.treatment-card:hover .treatment-icon {
    background-color: var(--sage);
    color: var(--white);
}

.treatment-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.treatment-card p {
    font-size: 0.9rem;
    color: var(--mid);
    line-height: 1.7;
}

/* --- Pricing --- */
.pricing {
    padding: 100px 0;
    background-color: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    background-color: var(--off-white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.pricing-card:hover {
    box-shadow: 0 12px 30px var(--shadow-md);
    transform: translateY(-4px);
}

.pricing-card-highlight {
    border-color: var(--sage);
    position: relative;
}

.pricing-card-highlight::before {
    content: 'Popular';
    position: absolute;
    top: 16px;
    right: -28px;
    background-color: var(--sage);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 32px;
    transform: rotate(45deg);
    z-index: 1;
}

.pricing-card-header {
    background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
    padding: 24px 30px;
}

.pricing-card-header h3 {
    color: var(--white);
    font-size: 1.3rem;
    text-align: center;
}

.pricing-card-body {
    padding: 30px;
}

.price-list {
    list-style: none;
}

.price-list li {
    display: flex;
    align-items: baseline;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}

.price-list li:last-child {
    border-bottom: none;
}

.treatment-name {
    white-space: nowrap;
    color: var(--dark-soft);
}

.treatment-dots {
    flex: 1;
    border-bottom: 2px dotted var(--border);
    margin: 0 10px;
    min-width: 20px;
    position: relative;
    top: -4px;
}

.treatment-price {
    font-weight: 600;
    color: var(--sage-dark);
    white-space: nowrap;
    font-size: 0.95rem;
}

.pricing-note {
    margin-top: 16px;
    font-size: 0.8rem;
    color: var(--mid);
    font-style: italic;
    line-height: 1.6;
}

/* --- Testimonial Banner --- */
.testimonial-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--sage-dark) 0%, var(--sage) 100%);
    color: var(--white);
    text-align: center;
}

.testimonial-banner blockquote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 20px;
}

.testimonial-banner cite {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    opacity: 0.8;
}

/* --- Contact --- */
.contact {
    padding: 100px 0;
    background-color: var(--beige);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form-wrapper h3,
.contact-details h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.contact-form-wrapper > p {
    color: var(--mid);
    font-size: 0.9rem;
    margin-bottom: 28px;
}

/* Form */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--dark-soft);
    margin-bottom: 8px;
}

.required {
    color: var(--sage-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--dark);
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--light-text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--sage);
    box-shadow: 0 0 0 3px rgba(var(--sage-rgb), 0.15);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%235A6B5A' stroke-width='2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Checkbox */
.form-consent {
    margin-top: 4px;
}

.checkbox-label {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.82rem !important;
    font-weight: 400 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    color: var(--mid) !important;
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    accent-color: var(--sage);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 0.9rem;
}

.form-status {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    display: none;
}

.form-status.success {
    display: block;
    background-color: var(--sage-pale);
    color: var(--sage-darker);
    border: 1px solid var(--sage-light);
}

.form-status.error {
    display: block;
    background-color: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* Contact Info */
.contact-details {
    margin-bottom: 32px;
}

.contact-details h3 {
    margin-bottom: 24px;
}

.contact-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--sage-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sage-dark);
}

.contact-detail strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.contact-detail p {
    font-size: 0.9rem;
    color: var(--mid);
    line-height: 1.6;
}

.contact-detail a {
    color: var(--sage-dark);
    font-weight: 500;
}

.contact-detail a:hover {
    color: var(--sage-darker);
}

.contact-map {
    border-radius: var(--radius);
    overflow: hidden;
}

.contact-map iframe {
    display: block;
}

.map-note {
    margin-top: 8px;
    text-align: center;
    color: var(--light-text);
}

/* --- Footer --- */
.footer {
    background-color: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .nav-logo {
    margin-bottom: 16px;
}

.footer .logo-medical,
.footer .logo-skin {
    color: var(--white);
}

.footer .nav-logo {
    color: var(--white);
}

.footer .nav-logo .brand-logo {
    height: 28px;
    width: auto;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links h4,
.footer-social h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--sage-light);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition);
}

.social-link:hover {
    background-color: var(--sage);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.82rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal a:hover {
    color: var(--sage-light);
}

/* --- Back to Top --- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--sage);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
    box-shadow: 0 4px 15px var(--shadow-md);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--sage-dark);
    transform: translateY(-2px);
}

/* --- Scroll Reveal Animation --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   Responsive Design
   ========================================== */

/* Tablet Landscape */
@media (max-width: 1024px) {
    .about-grid {
        gap: 40px;
    }

    .treatments-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        gap: 40px;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    /* Nav Mobile */
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 40px;
        gap: 4px;
        transition: right 0.4s cubic-bezier(0.65, 0, 0.35, 1);
        box-shadow: -8px 0 30px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        color: var(--dark) !important;
        font-size: 0.9rem;
        padding: 12px 16px;
        width: 100%;
        border-radius: var(--radius-sm);
    }

    .nav-link:hover {
        background-color: var(--sage-pale) !important;
        color: var(--sage-dark) !important;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 12px;
        text-align: center;
    }

    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.4);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
    }

    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* About */
    .about {
        padding: 80px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-placeholder {
        aspect-ratio: 16/9;
    }

    /* Treatments */
    .treatments {
        padding: 80px 0;
    }

    .treatments-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    /* Pricing */
    .pricing {
        padding: 80px 0;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    /* Contact */
    .contact {
        padding: 80px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Mobile */
@media (max-width: 480px) {
    html {
        font-size: 15px;
    }

    .container {
        padding: 0 16px;
    }

    .hero-content {
        padding: 100px 16px 60px;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .treatment-card {
        padding: 30px 24px;
    }

    .about-content h3 {
        font-size: 1.5rem;
    }

    .testimonial-banner {
        padding: 60px 0;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
    }
}


/* ==========================================
   PERSONALISED V2 — OVERRIDES & ADDITIONS
   Testimonial carousel, interactive FAQ,
   before/after, trust bar, process section
   ========================================== */

/* --- Hero description width --- */
.hero-description { max-width: 520px; }

/* --- About personal note callout --- */
.about-personal-note {
    background: var(--sage-pale);
    border-left: 4px solid var(--sage);
    padding: 20px 24px;
    margin-top: 28px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 0.92rem;
    line-height: 1.8;
    color: var(--dark-soft);
    font-style: italic;
}
.about-personal-note strong {
    font-style: normal;
    color: var(--dark);
}

/* --- Trust / Credential Bar --- */
.trust-bar {
    padding: 40px 0;
    background: var(--sage-pale);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.trust-bar-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--sage-dark);
}
.trust-icon {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--white);
    display: flex; align-items: center; justify-content: center;
    color: var(--sage-dark);
    box-shadow: 0 2px 8px rgba(var(--sage-dark-rgb), 0.1);
}

/* --- Practitioner Section --- */
.practitioner-section {
    padding: 80px 0;
    background: var(--white);
    border-top: 1px solid var(--border);
}
.practitioner-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 48px;
    align-items: start;
}
.practitioner-photo {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--sage-pale), var(--beige));
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--sage-dark);
}
.practitioner-photo span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
}
.practitioner-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; font-weight: 500;
    color: var(--dark); margin-bottom: 8px;
}
.practitioner-content .role {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem; font-weight: 500;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--sage-dark); margin-bottom: 24px; display: block;
}
.practitioner-content p {
    color: var(--mid); font-size: 0.95rem;
    line-height: 1.85; margin-bottom: 16px;
}
.practitioner-qualifications {
    list-style: none; margin-top: 24px;
    display: flex; flex-wrap: wrap; gap: 10px;
}
.practitioner-qualifications li {
    background: var(--sage-pale); color: var(--sage-dark);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.04em; text-transform: uppercase;
    padding: 6px 14px; border-radius: 50px;
}

/* --- Treatment notes --- */
.treatment-card .treatment-note {
    display: block; margin-top: 8px;
    font-size: 0.78rem; color: var(--sage-dark);
    font-style: italic;
}

/* --- How It Works / Process --- */
.process-section {
    padding: 80px 0;
    background: var(--off-white);
    border-top: 1px solid var(--border);
}
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 20px;
    position: relative;
}
.process-steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--sage-light);
    z-index: 0;
}
.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}
.process-number {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: var(--sage);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem; font-weight: 500;
    box-shadow: 0 4px 16px rgba(var(--sage-dark-rgb), 0.2);
}
.process-step h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.04em;
    color: var(--dark); margin-bottom: 8px;
}
.process-step p {
    font-size: 0.85rem; color: var(--mid);
    line-height: 1.7; max-width: 220px; margin: 0 auto;
}

/* --- Testimonial Carousel --- */
.testimonial-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--sage-dark) 0%, var(--sage) 100%);
    color: var(--white);
    text-align: center;
    overflow: hidden;
}
.testimonial-section .section-subtitle { color: rgba(255,255,255,0.7); }
.testimonial-section .section-title { color: var(--white); }
.testimonial-section .section-divider { background: rgba(255,255,255,0.4); }
.testimonial-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.testimonial-track { overflow: hidden; }
.testimonial-slides {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-slide {
    min-width: 100%;
    padding: 0 20px;
}
.testimonial-slide blockquote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 300; font-style: italic;
    line-height: 1.6; margin-bottom: 20px;
}
.testimonial-slide cite {
    font-family: 'Montserrat', sans-serif;
    font-style: normal; font-size: 0.85rem;
    font-weight: 400; letter-spacing: 0.1em; opacity: 0.8;
}
.testimonial-stars {
    margin-bottom: 16px;
    display: flex; justify-content: center; gap: 4px;
}
.testimonial-stars svg { color: #F5D060; }
.testimonial-controls {
    display: flex; justify-content: center;
    align-items: center; gap: 16px;
    margin-top: 32px;
}
.testimonial-btn {
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s ease;
}
.testimonial-btn:hover { background: rgba(255,255,255,0.3); }
.testimonial-dots { display: flex; gap: 8px; }
.testimonial-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: none; cursor: pointer;
    transition: all 0.3s ease;
}
.testimonial-dot.active {
    background: var(--white);
    transform: scale(1.2);
}

/* --- Before & After Gallery --- */
.results-section { padding: 80px 0; background: var(--white); }
.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.result-card {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}
.result-card:hover {
    box-shadow: 0 8px 24px var(--shadow-md);
    transform: translateY(-4px);
}
.result-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    position: relative;
}
.result-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    grid-row: 1;
}
.result-img-before { grid-column: 1; }
.result-img-after { grid-column: 2; }
.result-before, .result-after {
    aspect-ratio: 1;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 4px; font-size: 0.7rem; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    grid-row: 1;
}
.result-image:has(.result-img) .result-before,
.result-image:has(.result-img) .result-after {
    position: absolute;
    bottom: 8px;
    padding: 4px 10px;
    border-radius: 4px;
    aspect-ratio: auto;
    font-size: 0.6rem;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(4px);
}
.result-image:has(.result-img) .result-before { left: 8px; }
.result-image:has(.result-img) .result-after { right: 8px; }
.result-image:has(.result-img) .result-before svg,
.result-image:has(.result-img) .result-after svg { display: none; }
.result-before { background: var(--beige); color: var(--mid); grid-column: 1; }
.result-after { background: var(--sage-pale); color: var(--sage-dark); grid-column: 2; }
.result-img-combined { grid-column: 1 / span 2; }
.result-image .divider-line {
    position: absolute; top: 0; bottom: 0;
    left: 50%; width: 2px; background: var(--white);
}
.result-info { padding: 16px 20px; background: var(--off-white); }
.result-info h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; margin-bottom: 4px;
}
.result-info p { font-size: 0.78rem; color: var(--mid); }

/* --- FAQ Accordion --- */
.faq-section { padding: 80px 0; background: var(--beige); }
.faq-list { max-width: 720px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
    display: flex; justify-content: space-between; align-items: center;
    width: 100%; padding: 24px 0; background: none; border: none;
    cursor: pointer; text-align: left;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem; font-weight: 500;
    color: var(--dark); transition: color 0.3s ease;
}
.faq-question:hover { color: var(--sage-dark); }
.faq-icon {
    flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
    background: var(--sage-pale);
    display: flex; align-items: center; justify-content: center;
    color: var(--sage-dark); transition: all 0.3s ease; margin-left: 16px;
}
.faq-icon svg { transition: transform 0.3s ease; }
.faq-item.active .faq-icon { background: var(--sage); color: var(--white); }
.faq-item.active .faq-icon svg { transform: rotate(180deg); }
.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
}
.faq-answer-inner {
    padding: 0 0 24px; font-size: 0.9rem;
    line-height: 1.8; color: var(--mid);
}

/* --- Instagram CTA --- */
.instagram-cta {
    padding: 60px 0; background: var(--off-white);
    text-align: center; border-top: 1px solid var(--border);
}
.instagram-cta h3 { font-size: 1.8rem; margin-bottom: 8px; }
.instagram-cta p { color: var(--mid); font-size: 0.92rem; margin-bottom: 24px; }
.instagram-cta .btn-instagram {
    display: inline-flex; align-items: center; gap: 10px;
    background: linear-gradient(135deg, #833AB4, #E1306C, #F77737);
    color: var(--white); border-radius: 50px; padding: 14px 32px;
    font-family: 'Montserrat', sans-serif; font-size: 0.85rem;
    font-weight: 500; letter-spacing: 0.06em;
    transition: all 0.3s ease; text-decoration: none;
}
.instagram-cta .btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(225,48,108,0.3);
    color: var(--white);
}

/* --- Announcement Bar --- */
.announcement-bar {
    background: var(--sage-dark); color: var(--white);
    text-align: center; padding: 10px 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem; font-weight: 500;
    letter-spacing: 0.04em;
    position: sticky; top: 0; z-index: 1001;
}
.navbar { top: var(--announcement-height, 0px) !important; }
.announcement-bar a {
    color: var(--white); text-decoration: underline;
    text-underline-offset: 2px;
}
.announcement-bar .close-announcement {
    position: absolute; right: 16px; top: 50%;
    transform: translateY(-50%); background: none;
    border: none; color: rgba(255,255,255,0.7);
    cursor: pointer; padding: 4px; line-height: 1;
}
.announcement-bar .close-announcement:hover { color: var(--white); }
.announcement-bar.hidden { display: none; }

/* --- Treatment Finder CTA --- */
.treatment-finder-cta {
    padding: 48px 0;
    background: linear-gradient(135deg, var(--sage-pale) 0%, var(--beige) 100%);
    text-align: center;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.treatment-finder-cta h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem; font-weight: 500;
    margin-bottom: 8px; color: var(--dark);
}
.treatment-finder-cta p {
    color: var(--mid); font-size: 0.9rem; margin-bottom: 20px;
    max-width: 480px; margin-left: auto; margin-right: auto;
}

/* --- WhatsApp Float --- */
.whatsapp-float {
    position: fixed; bottom: 24px; left: 24px; z-index: 999;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25D366; color: white;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    transition: all 0.3s ease; text-decoration: none;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37,211,102,0.5);
    color: white;
}
.whatsapp-float .whatsapp-tooltip {
    position: absolute; left: 68px; background: white;
    color: var(--dark); padding: 8px 14px; border-radius: 8px;
    font-family: 'Montserrat', sans-serif; font-size: 0.75rem;
    font-weight: 500; white-space: nowrap;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* --- Mobile CTA Bar --- */
.mobile-cta-bar {
    display: none; position: fixed; bottom: 0; left: 0; right: 0;
    z-index: 998; background: var(--white);
    border-top: 1px solid var(--border); padding: 12px 16px;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.08); text-align: center;
    transform: translateY(100%); transition: transform 0.3s ease;
}
.mobile-cta-bar.visible { transform: translateY(0); }
.mobile-cta-bar .btn { width: 100%; max-width: 400px; text-align: center; }

/* --- Cookie Banner --- */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
    background: var(--dark); color: rgba(255,255,255,0.85);
    padding: 20px 24px; font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem; line-height: 1.6;
    display: flex; align-items: center; justify-content: center;
    gap: 20px; flex-wrap: wrap;
    transform: translateY(100%); transition: transform 0.4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner p { max-width: 600px; margin: 0; }
.cookie-banner a { color: var(--sage-light); text-decoration: underline; }
.cookie-btn {
    background: var(--sage); color: var(--white); border: none;
    padding: 10px 24px; border-radius: 50px;
    font-family: 'Montserrat', sans-serif; font-size: 0.78rem;
    font-weight: 600; cursor: pointer; letter-spacing: 0.04em;
    transition: background 0.3s ease;
}
.cookie-btn:hover { background: var(--sage-dark); }

/* --- Lock banner (shown when unlocked) --- */
.lock-banner {
    background: var(--sage-darker); color: rgba(255,255,255,0.85);
    text-align: center; padding: 8px 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem; font-weight: 400;
    letter-spacing: 0.04em;
}
.lock-banner a {
    color: var(--white); font-weight: 600;
    text-decoration: underline; text-underline-offset: 2px;
}

/* Hide mobile close button on desktop */
.nav-close-wrapper { display: none; }

/* --- V2 Responsive overrides --- */
@media (max-width: 1024px) {
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .process-steps::before { display: none; }
    .results-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .practitioner-grid { grid-template-columns: 1fr; gap: 32px; }
    .practitioner-photo { max-width: 260px; margin: 0 auto; }
    .process-steps { grid-template-columns: 1fr 1fr; gap: 24px; }
    .results-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
    .trust-bar-inner { gap: 20px; }
    .trust-item { font-size: 0.7rem; }

    /* Close button inside mobile menu */
    .nav-close-wrapper {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }
    .nav-close-btn {
        background: none; border: none;
        font-size: 2rem; line-height: 1; color: var(--dark);
        cursor: pointer; width: 44px; height: 44px;
        display: flex; align-items: center; justify-content: center;
        border-radius: 50%;
        transition: background 0.2s ease, color 0.2s ease;
    }
    .nav-close-btn:hover {
        background: var(--sage-pale); color: var(--sage-dark);
    }

    /* Full-screen mobile menu, centered */
    .nav-menu {
        z-index: 1100; width: 100%; max-width: 100%;
        height: 100vh; height: 100dvh;
        align-items: center; justify-content: center;
        padding: 0 32px; gap: 0;
        text-align: center; background-color: var(--white);
    }
    .nav-menu .nav-link {
        font-size: 1.15rem; padding: 16px 20px;
        width: auto; display: inline-block; letter-spacing: 0.08em;
    }
    .nav-menu .nav-cta {
        margin-top: 24px; padding: 14px 36px; font-size: 1rem;
    }
    .mobile-cta-bar { display: block; }
    .whatsapp-float { bottom: 80px; }
    .cookie-banner { bottom: 0; padding-bottom: 62px; }

    /* Hide announcement bar when mobile menu is open */
    .nav-menu.active ~ .announcement-bar,
    body.menu-open .announcement-bar { display: none; }
}
@media (max-width: 480px) {
    .process-steps { grid-template-columns: 1fr; max-width: 280px; margin: 0 auto; }
    .announcement-bar { font-size: 0.7rem; padding: 8px 36px 8px 16px; }
}
