/* ============================================================
   ANGELIC COSMETIC CLINIC — MAIN STYLESHEET
   Theme: Angelic Theme v1.0
   Palette: Warm rose-clay · Champagne gold · Ivory · Warm brown
   Fonts: Cormorant Garamond (headings) · DM Sans (body)
   ============================================================ */

/* ============================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
    /* Brand Colours */
    --rose:         #C4A08A;
    --rose-dark:    #8B7E76;
    --rose-light:   #E8D5C8;
    --gold:         #B9946A;
    --gold-light:   #D4B588;
    --brown:        #2C2421;
    --brown-light:  #231C1A;
    --navy:         #2C2421;
    --navy-light:   #655954;

    /* Neutrals */
    --ivory:        #FDFBF8;
    --cream:        #F5EEE7;
    --cream-dark:   #EDE4DA;
    --white:        #FFFFFF;
    --text-dark:    #1A1A1A;
    --text-body:    #4A4540;
    --text-muted:   #7A7572;
    --border:       #E8DDD5;

    /* Typography */
    --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;

    /* Sizing */
    --container:    1200px;
    --container-sm: 720px;
    --radius:       8px;
    --radius-lg:    16px;

    /* Shadows */
    --shadow-sm:    0 2px 8px rgba(82,67,61,0.06);
    --shadow-md:    0 4px 20px rgba(82,67,61,0.08);

    /* Transitions */
    --transition:   all 0.25s ease;
    --transition-slow: all 0.4s ease;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-body);
    background-color: var(--ivory);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 80px; /* clear floating header */
}
/* Homepage hero extends behind floating header */
body.home { padding-top: 0; }

img, video, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--rose-dark); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
address { font-style: normal; }

/* Screen reader only */
.sr-only, .screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Skip link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--navy);
    color: var(--white);
    padding: 8px 16px;
    z-index: 1000;
}
.skip-link:focus { top: 0; }

/* Icon utility — applied by angelic_icon() PHP helper */
.icon {
    display: inline-block;
    flex-shrink: 0;
    vertical-align: middle;
    height: auto;
}

/* Icon + text spacing — when icon precedes text inside a heading/link */
h2 > .icon,
h3 > .icon,
.btn > .icon,
.trust-badge > .icon,
.footer-contact-link > .icon,
.contact-detail-item > .icon,
.instagram-feed-notice .icon {
    margin-right: 0.4rem;
}

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-dark);
    letter-spacing: 0.01em;
    margin-bottom: 1rem;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 300; margin-bottom: 1.25rem; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 1.25rem; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); margin-bottom: 0.75rem; }
h4 { font-size: 1.2rem; font-weight: 500; }
h5 { font-size: 1rem; font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

strong { font-weight: 600; }
em { font-style: italic; }

.section-eyebrow {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--rose-dark);
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1rem;
}
.section-eyebrow::before,
.section-eyebrow::after {
    content: '';
    display: block;
    width: 1.5rem;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
    opacity: 0.8;
}
.section-eyebrow--light { color: var(--rose-light); }
.section-eyebrow--light::before,
.section-eyebrow--light::after { background: rgba(255,255,255,0.5); }

/* ============================================================
   4. LAYOUT — CONTAINER & UTILITIES
   ============================================================ */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
}
.container--narrow { max-width: var(--container-sm); }

/* Breadcrumb navigation */
.breadcrumbs {
    padding: 1rem 0 0;
    background: var(--ivory);
}
.breadcrumbs .container {
    display: flex;
    align-items: center;
    gap: 0;
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--text-muted);
}
.breadcrumbs a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}
.breadcrumbs a:hover { color: var(--brown); }
.breadcrumb__sep {
    margin: 0 0.5rem;
    color: var(--border);
    font-size: 0.7rem;
}
.breadcrumb__current {
    color: var(--text-body);
    font-weight: 500;
}

.section { padding: 6.5rem 0; }
.section--white  { background-color: var(--white); }
.section--cream  { background-color: var(--cream); }
.section--light  { background-color: var(--ivory); }
.section--navy {
    background-color: var(--cream);
    padding-left: 2rem;
    padding-right: 2rem;
}
.section--navy > .container {
    background: #2C2421;
    border-radius: 24px;
    padding: 4.5rem 3.5rem;
    position: relative;
    overflow: hidden;
}
.section--navy > .container::before {
    content: 'A';
    font-family: var(--font-heading);
    font-size: 12rem;
    position: absolute;
    top: -2rem;
    right: 2rem;
    opacity: 0.04;
    color: white;
    pointer-events: none;
    z-index: 0;
    line-height: 1;
}
.section--navy > .container > * {
    position: relative;
    z-index: 1;
}
.section--navy > .container h1,
.section--navy > .container h2,
.section--navy > .container h3 { color: var(--white); }
.section--navy > .container p  { color: rgba(255,255,255,0.92); }
.section--navy > .container .section-subtitle { color: rgba(255,255,255,0.92); }


.section-label {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 0.75rem;
}
.section-header  { text-align: center; margin-bottom: 3rem; }
.section-header h2 { margin-bottom: 1.25rem; }
.section-subtitle { color: var(--text-muted); max-width: 600px; margin: 0 auto; margin-top: 0.5rem; line-height: 1.8; }

.section-header--light h2 { color: var(--white); }
.section-header__image {
    margin-top: 2rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 24px rgba(82,67,61,0.1);
}
.section-header__image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
}

.text-center { text-align: center; }
.mt-2 { margin-top: 1.5rem; }
.mt-3 { margin-top: 2.5rem; }
.mb-2 { margin-bottom: 1.5rem; }

.two-col-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.two-col-content__image { border-radius: var(--radius-lg); overflow: hidden; }
.two-col-content__image img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: var(--radius-lg); }
.two-col-content__text h2 { margin-bottom: 1.25rem; }
.two-col-content__text p  { margin-bottom: 1rem; }

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.6rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 100px;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
}
.btn--gold {
    background-color: var(--brown);
    color: var(--white);
    border: 1.5px solid var(--brown);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.btn--gold::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.13);
    transform: translateX(-101%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: inherit;
    pointer-events: none;
    z-index: -1;
}
.btn--gold:hover::after { transform: translateX(0); }
.btn--gold:hover {
    background-color: var(--brown-light);
    border-color: var(--brown-light);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(62,45,34,0.4);
}
.btn--outline-dark {
    background: transparent;
    color: var(--text-dark);
    border: 1.5px solid var(--text-dark);
}
.btn--outline-dark:hover {
    background: var(--text-dark);
    color: var(--white);
}
.btn--outline-white {
    background: transparent;
    color: var(--white);
    border: 1.5px solid var(--white);
}
.btn--outline-white:hover {
    background: var(--white);
    color: var(--navy);
}
.btn--outline-light {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.5);
}
.btn--outline-light:hover {
    background: rgba(255,255,255,0.2);
    border-color: var(--white);
}
.btn--text {
    padding: 0;
    background: none;
    border: none;
    color: var(--rose-dark);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
}
.btn--text:hover { color: var(--gold); }
.btn--sm  { padding: 0.5rem 1.1rem; font-size: 0.75rem; }
.btn--lg  { padding: 0.8rem 2rem; font-size: 0.875rem; }
.btn--full { width: 100%; justify-content: center; }

/* Button group — wrapping row of buttons with gap */
.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

/* ============================================================
   6. HEADER & NAVIGATION
   ============================================================ */

/* --- Header wrapper ---
   Two-row header: top info bar + main nav bar.
   Full-width, no floating pill. */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    transform: translateY(0);
    transition: transform 0.3s ease;
}
.site-header.is-hidden {
    transform: translateY(-100%);
}

/* --- Top info bar --- */
.header__topbar {
    display: none;
}
.header__topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    padding: 0 3rem;
}
.header__topbar-address {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.02em;
}
.header__topbar-social {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.header__topbar-social a {
    color: rgba(255,255,255,0.7);
    transition: color 0.2s ease;
    display: flex;
}
.header__topbar-social a:hover { color: var(--white); }

/* --- Main nav bar --- */
.header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    grid-template-areas: "logo nav icons cta";
    align-items: center;
    min-height: 64px;
    max-width: 100%;
    padding: 0.5rem 3rem;
    background: #2C2421;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.site-header.is-scrolled .header__inner {
    box-shadow: 0 4px 20px rgba(91,79,70,0.18);
}

/* Assign grid areas */
.header__logo      { grid-area: logo; }
.header__nav       { grid-area: nav;  display: flex; justify-content: flex-end; padding-right: 1.5rem; }
.header__icons     { grid-area: icons; display: flex; align-items: center; gap: 0.75rem; padding-right: 1.25rem; }
.header__cta       { grid-area: cta;  display: flex; align-items: center; }
.header__hamburger { display: none; }

/* Header social icons (desktop) */
.header__icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.65);
    transition: color 0.2s ease;
}
.header__icon-link:hover { color: var(--white); }

/* --- Logo --- */
.header__logo a,
.header__logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    text-decoration: none;
}
.header__logo img { height: var(--logo-h, 50px); width: auto; display: block; }
.logo-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.03em;
    line-height: 1;
}
.logo-tagline {
    font-size: 0.58rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
}

/* --- Header CTA button — cream/ivory pill --- */
.btn--header-cta {
    background: var(--cream) !important;
    color: var(--brown) !important;
    border: 1px solid var(--cream) !important;
    border-radius: 999px;
    font-size: 0.78rem;
    padding: 0.65rem 1.5rem;
}
.btn--header-cta:hover {
    background: var(--white) !important;
    border-color: var(--white) !important;
}

/* --- Desktop nav menu --- */
.nav-menu {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.25rem;
    list-style: none;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: rgba(255,255,255,0.85);
    white-space: nowrap;
    border-radius: 999px;
    transition: color 0.25s ease, background 0.2s ease;
    min-height: 44px;
}
.nav-menu > li > a:hover,
.nav-menu > .current-menu-item > a,
.nav-menu > .current-menu-ancestor > a,
.nav-menu > .current-page-ancestor > a {
    color: var(--white);
    background: rgba(255,255,255,0.12);
}
/* Focus ring for keyboard nav */
.nav-menu > li > a:focus-visible {
    outline: 2px solid var(--rose);
    outline-offset: 2px;
}

/* --- Dropdown sub-menu --- */
.nav-menu > li {
    position: relative;
    padding-bottom: 16px;  /* extend hover zone below the link */
    margin-bottom: -16px;
}
.nav-menu .sub-menu {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    min-width: 250px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 40px rgba(82,67,61,0.14);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 500;
    list-style: none;
    padding: 0.5rem;
}
/* Large invisible bridge — cursor can travel easily from parent to dropdown */
.nav-menu .sub-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    height: 24px;
}
.nav-menu > li:hover > .sub-menu,
.nav-menu > li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
    transition-delay: 0s;
}
/* Delay before hiding so cursor can travel to dropdown */
.nav-menu > li > .sub-menu {
    transition-delay: 0.25s;
}
.nav-menu .sub-menu a {
    display: flex;
    align-items: center;
    padding: 0.65rem 1rem;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--text-body);
    border-radius: var(--radius);
    white-space: nowrap;
    transition: color 0.15s ease, background 0.15s ease;
    min-height: 44px;
}
.nav-menu .sub-menu a:hover { color: var(--brown); background: var(--cream); }
.nav-menu .sub-menu a:focus-visible { outline: 2px solid var(--gold); outline-offset: 1px; }

/* --- Hamburger button (hidden desktop, shown mobile) --- */
.header__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
}
.header__hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease;
    transform-origin: center;
}

/* (Header CTA button styles defined above in main header section) */
.header__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.header__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.header__hamburger:focus-visible { outline: 2px solid var(--rose); outline-offset: 2px; }

/* ============================================================
   HEADER — MOBILE / TABLET  (≤1024px)
   Layout: [ hamburger ] [ logo (centred) ] [ cta-spacer ]
   The hamburger is last in DOM but placed first via grid-area.
   ============================================================ */
/* Hide mobile-only elements on desktop */
.header__mobile-call { display: none; }

@media (max-width: 1024px) {
    /* Hide top bar on mobile */
    .header__topbar { display: none; }

    .header__inner {
        grid-template-columns: auto 1fr auto auto;
        grid-template-areas: "logo . call hamburger";
        min-height: 60px;
        padding: 0.6rem 1.25rem;
    }
    /* Logo on the left — smaller on mobile */
    .header__logo {
        grid-area: logo;
        justify-self: start;
        text-align: left;
    }
    .header__logo img { height: 38px; }
    .header__logo .logo-name { font-size: 1.15rem; }
    .header__logo .logo-tagline { font-size: 0.45rem; }
    /* Hide desktop CTA + icons */
    .header__cta { display: none; }
    .header__icons { display: none; }
    /* Hamburger on the right */
    .header__hamburger {
        grid-area: hamburger;
        display: flex;
        justify-self: end;
    }
    /* Call icon — white with circle border, left of hamburger */
    .header__mobile-call {
        grid-area: call;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 1.5px solid rgba(255,255,255,0.7);
        color: var(--white);
        text-decoration: none;
        transition: var(--transition);
        margin-right: 0.25rem;
    }
    .header__mobile-call:hover {
        border-color: var(--white);
        background: rgba(255,255,255,0.12);
    }
    .header__mobile-call svg { width: 16px; height: 16px; }
    /* Desktop nav hidden */
    .header__nav { display: none; }
}

/* ============================================================
   MOBILE NAV — FULL-SCREEN OVERLAY
   Lives OUTSIDE <header> in the DOM, so position:fixed works.
   ============================================================ */
.mobile-nav {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    height: 100dvh;
    background: #2C2421;
    z-index: 600;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    overflow-y: auto;
    overscroll-behavior: contain;
    display: flex;
    flex-direction: column;
}
.mobile-nav.is-open {
    opacity: 1;
    visibility: visible;
}

/* Inner padding wrapper */
.mobile-nav__inner {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.5rem 2rem 2.5rem;
    gap: 0;
}

/* Header row: brand + close button */
.mobile-nav__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 2rem;
    margin-bottom: 1rem;
}
.mobile-nav__brand {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    text-decoration: none;
}
.mobile-nav__brand .logo-name    { font-size: 1.35rem; color: var(--white); }
.mobile-nav__brand .logo-tagline { font-size: 0.58rem; color: rgba(255,255,255,0.5); }
.mobile-nav__logo-img { height: 28px; width: auto; display: block; }

/* Close button */
.mobile-nav__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: var(--white);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    flex-shrink: 0;
    transition: background 0.2s ease;
}
.mobile-nav__close:hover  { background: rgba(255,255,255,0.18); }
.mobile-nav__close:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* Nav links — large serif text, left-aligned */
.mobile-nav__menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0;
}
.mobile-nav__menu > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 60px;
    padding: 0 0.25rem;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--white);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: color 0.2s ease;
    opacity: 0;
    transform: translateY(12px);
}
.mobile-nav.is-open .mobile-nav__menu > li > a {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.35s ease, transform 0.35s ease, color 0.2s ease;
}
.mobile-nav.is-open .mobile-nav__menu > li:nth-child(1) > a { transition-delay: 0.08s; }
.mobile-nav.is-open .mobile-nav__menu > li:nth-child(2) > a { transition-delay: 0.12s; }
.mobile-nav.is-open .mobile-nav__menu > li:nth-child(3) > a { transition-delay: 0.16s; }
.mobile-nav.is-open .mobile-nav__menu > li:nth-child(4) > a { transition-delay: 0.20s; }
.mobile-nav.is-open .mobile-nav__menu > li:nth-child(5) > a { transition-delay: 0.24s; }
.mobile-nav.is-open .mobile-nav__menu > li:nth-child(6) > a { transition-delay: 0.28s; }
.mobile-nav.is-open .mobile-nav__menu > li:nth-child(7) > a { transition-delay: 0.32s; }

.mobile-nav__menu > li > a:hover,
.mobile-nav__menu > .current-menu-item > a {
    color: var(--gold);
}
.mobile-nav__menu > li > a:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: -2px;
}

/* Parent items with sub-menus */
.mobile-nav__menu > li.menu-item-has-children {
    position: relative;
    display: block;
}
.mobile-nav__menu > li.menu-item-has-children > a {
    width: 100%;
}
.submenu-toggle {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    border-left: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.5);
    font-size: 1.25rem;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.2s ease;
}
.submenu-toggle:hover { color: var(--gold); }
.submenu-toggle[aria-expanded="true"] { color: var(--gold); }
.submenu-toggle:focus-visible { outline: 2px solid var(--gold); outline-offset: -2px; }

/* Sub-menu items */
.mobile-nav__menu .sub-menu {
    list-style: none;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius);
    width: 100%;
    display: none;
    margin-bottom: 0.5rem;
}
.mobile-nav__menu .sub-menu.is-open {
    display: block;
}
.mobile-nav__menu .sub-menu a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0 1.25rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(255,255,255,0.7);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    text-decoration: none;
    transition: color 0.2s ease;
}
.mobile-nav__menu .sub-menu a:hover { color: var(--white); }
.mobile-nav__menu .sub-menu li:last-child a { border-bottom: none; }

/* CTA pinned to bottom */
.mobile-nav__cta {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    padding-top: 2rem;
    margin-top: auto;
    border-top: 1px solid rgba(255,255,255,0.1);
}
/* Override .btn--gold on dark backgrounds — white pill, dark text */
.mobile-nav__cta .btn--gold {
    text-align: center;
    background: var(--white) !important;
    border-color: var(--white) !important;
    color: var(--brown) !important;
    border-radius: 999px;
}
.mobile-nav__cta .btn--gold:hover {
    background: var(--cream) !important;
    border-color: var(--cream) !important;
    color: var(--brown) !important;
}
.mobile-nav__phone {
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s ease;
}
.mobile-nav__phone:hover { color: var(--white); }

/* Overlay backdrop — hidden since nav is full-screen */
.mobile-nav__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 599;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}
.mobile-nav__overlay.is-open {
    opacity: 0;
    visibility: hidden;
}

/* ============================================================
   7. HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background: #2C2421;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    overflow: hidden;
    margin-top: 0; /* header floats over hero */
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Feather watermark — hero (white, above dark overlay, below hero text) */
.hero::after {
    content: '';
    position: absolute;
    right: 4%;
    top: 50%;
    transform: translateY(-55%) rotate(8deg);
    width: clamp(140px, 18vw, 240px);
    height: calc(clamp(140px, 18vw, 240px) * 3);
    background-image: url('../icons/feather-light.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    opacity: 0.1;
    pointer-events: none;
    z-index: 1; /* above bg-overlay (auto), below hero__content (z-index:2) */
}

.hero__bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, var(--hero-overlay, 0));
    pointer-events: none;
}
.hero__content {
    position: relative;
    z-index: 2;
    padding: calc(var(--logo-h, 52px) + 50px) 2rem 4rem;
}
.hero__text { max-width: 600px; }
.hero__eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--rose-light);
    margin-bottom: 1.25rem;
}
.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--white);
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
}
.hero__subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.80);
    max-width: 500px;
    margin-bottom: 2.5rem;
    line-height: 1.75;
}
.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}
.hero__reassurance {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-style: italic;
    color: rgba(255,255,255,0.75);
    margin-bottom: 2rem;
}
.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}
.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
}
.trust-badge svg { color: var(--rose-light); flex-shrink: 0; }
.hero__scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    color: rgba(255,255,255,0.4);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(6px); }
}


/* ============================================================
   9. SERVICES GRID (Homepage)
   ============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.services-grid { counter-reset: service-card; }

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    counter-increment: service-card;
    box-shadow: var(--shadow-sm);
}
.service-card::after {
    content: counter(service-card, decimal-leading-zero);
    position: absolute;
    top: 0.25rem;
    right: 1rem;
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--rose-dark);
    opacity: 0.22;
    pointer-events: none;
    user-select: none;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--gold);
    transition: height 0.35s ease;
}
.service-card:hover {
    box-shadow: 0 8px 32px rgba(82,67,61,0.15);
    border-color: var(--brown);
}
.service-card:hover::before { height: 100%; }
.service-card__icon {
    font-size: 1.5rem;
    color: var(--brown);
    margin-bottom: 1rem;
}
.service-card__title {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}
.service-card__desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}
.service-card__link {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--rose-dark);
}
.service-card__link:hover { color: var(--gold); }
.services-grid__footer { text-align: center; margin-top: 2.5rem; }

/* ============================================================
   10. INTRO STRIP (Homepage)
   ============================================================ */
.intro-strip__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: center;
}
/* When about image is present, switch to 3-col */
.intro-strip__inner:has(.intro-strip__image) {
    grid-template-columns: 1.2fr 0.8fr auto;
}
.intro-strip__text h2 { margin-bottom: 1rem; }
.intro-strip__text p { margin-bottom: 1rem; color: var(--text-body); }
.intro-strip__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(82,67,61,0.1);
}
.intro-strip__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-lg);
}
.intro-strip__stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex-shrink: 0;
}
.stat-card { text-align: center; padding: 1.5rem; background: var(--white); border-radius: var(--radius-lg); box-shadow: 0 2px 12px rgba(0,0,0,0.05); min-width: 140px; }
.stat-card__number { display: block; font-family: var(--font-heading); font-size: 2.5rem; font-weight: 300; color: var(--rose-dark); line-height: 1; margin-bottom: 0.25rem; }
.stat-card__label { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }

/* ============================================================
   11. WHY CHOOSE US — PILLARS
   ============================================================ */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.pillar { text-align: center; }
.pillar__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(196,160,138,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--rose-light);
}
.section--navy .pillar h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 0.75rem; }
.section--navy .pillar p { color: rgba(255,255,255,0.90); font-size: 0.9rem; }

/* ============================================================
   12. JOURNEY STEPS (Homepage)
   ============================================================ */
.journey-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
}
.journey-step {
    flex: 1;
    text-align: center;
    padding: 0 1.5rem;
}
.journey-step__num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 300;
    color: var(--rose-dark);
    display: block;
    margin-bottom: 0.5rem;
    line-height: 1;
}
.journey-step h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.journey-step p  { font-size: 0.875rem; color: var(--text-body); }
.journey-step__divider {
    width: 1px;
    height: 100px;
    background: var(--border);
    flex-shrink: 0;
    margin-top: 2.5rem;
}

/* ============================================================
   13. TESTIMONIALS
   ============================================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
.testimonial-card {
    background: var(--ivory);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: -0.75rem;
    left: 1.25rem;
    font-family: var(--font-heading);
    font-size: 7rem;
    font-weight: 700;
    line-height: 1;
    color: var(--rose-dark);
    opacity: 0.07;
    pointer-events: none;
    user-select: none;
}
.testimonial-card__stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 1rem; }
.testimonial-card__text { font-size: 0.95rem; line-height: 1.7; color: var(--text-body); margin-bottom: 1.25rem; font-style: italic; }
.testimonial-card__author { font-size: 0.875rem; }
.testimonial-card__author strong { color: var(--text-dark); }
.testimonial-card__author span  { color: var(--text-muted); }
.reviews-disclaimer { text-align: center; font-size: 0.8rem; color: var(--text-muted); }

/* ============================================================
   14. CTA BAND
   ============================================================ */
/* CTA accent word — applied to individual words in CTA headings */
.cta-accent {
    color: var(--gold);
    font-style: italic;
}

.cta-band {
    background: var(--ivory);
    padding: 2.5rem 2rem;
}
.cta-band > .container {
    background: #2C2421;
    border-radius: 24px;
    padding: 3.5rem 3.5rem;
}

/* Primary button on dark background — white fill so it reads clearly */
.cta-band .btn--gold {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--brown);
}
.cta-band .btn--gold:hover {
    background-color: var(--rose-light);
    border-color: var(--rose-light);
    color: var(--brown);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.cta-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.cta-band__text h2,
.cta-band .section-header h2 { color: var(--white) !important; margin-bottom: 0.75rem; font-size: 2rem; }
.cta-band__text p { color: rgba(255,255,255,0.85) !important; margin: 0; }
.cta-band .section-header p,
.cta-band .section-subtitle { color: rgba(255,255,255,0.85) !important; }
.cta-band__buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 1.5rem; }
.cta-band__actions { display: flex; gap: 1rem; flex-shrink: 0; flex-wrap: wrap; }
.cta-reassurance {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-style: italic;
    color: rgba(255,255,255,0.70) !important;
    margin-top: 1rem;
    text-align: center;
}

/* ============================================================
   15. SERVICES PAGE — FEATURE LIST
   ============================================================ */
.services-list { display: flex; flex-direction: column; gap: 3rem; }
.service-feature {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.service-feature--reverse { direction: rtl; }
.service-feature--reverse > * { direction: ltr; }
.service-feature__image { aspect-ratio: 4/3; overflow: hidden; }
.service-feature__image .image-placeholder { height: 100%; }
.service-feature__image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.service-feature__content { padding: 3rem; }
.service-feature__tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rose-dark);
    background: var(--cream);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}
.service-feature__title { font-size: 1.8rem; margin-bottom: 1rem; }
.service-feature__highlights {
    list-style: none;
    margin: 1.25rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
}
.service-feature__highlights li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.service-feature__highlights li::before {
    content: '✦';
    color: var(--brown);
    font-size: 0.6rem;
    flex-shrink: 0;
}

/* ============================================================
   16. PRICING TABLES
   ============================================================ */
.pricing-category { margin-bottom: 3rem; }
.pricing-category__title {
    font-size: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border);
    margin-bottom: 1.25rem;
    color: var(--text-dark);
}
.pricing-category__note { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1rem; }
.pricing-table { display: flex; flex-direction: column; gap: 1px; background: var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.pricing-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    padding: 1.25rem 1.75rem;
    background: var(--white);
    transition: var(--transition);
}
.pricing-row:hover { background: var(--ivory); }
.pricing-row h3 { font-size: 1rem; font-weight: 500; margin-bottom: 0.25rem; color: var(--text-dark); }
.pricing-row p  { font-size: 0.85rem; color: var(--text-muted); margin: 0; }
.pricing-row--highlight { background: var(--cream); }
.pricing-row--featured  { background: var(--cream); border: 2px solid var(--gold); }

.pricing-row__price { text-align: right; flex-shrink: 0; }
.price-from   { display: block; font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.1rem; }
.price-amount { display: block; font-family: var(--font-heading); font-size: 2rem; font-weight: 400; color: var(--rose-dark); line-height: 1; }
.price-unit   { display: block; font-size: 0.7rem; color: var(--text-muted); margin-top: 0.1rem; }

/* VIP Pricing */
.pricing-row--vip { background: linear-gradient(to right, #fff 0%, #fdf7f2 100%); }
.price-amount--vip { color: var(--gold); }

/* VIP Teaser Block */
.vip-teaser { padding: 4rem 0; }
.vip-teaser__inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.vip-teaser__icon { font-size: 2rem; color: var(--gold); flex-shrink: 0; }
.vip-teaser__text { flex: 1; }
.vip-teaser__text h2 { color: var(--white); margin-bottom: 0.75rem; }
.vip-teaser__text p  { color: rgba(255,255,255,0.8); margin: 0; }
.vip-teaser__actions { display: flex; gap: 1rem; flex-wrap: wrap; flex-shrink: 0; }

/* VIP Lock Screen */
.vip-lock-screen {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: var(--cream);
    padding: 4rem 0;
}
.vip-lock-card {
    max-width: 500px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    text-align: center;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
    border: 1px solid var(--border);
}
.vip-lock-card__icon { font-size: 2.5rem; color: var(--brown); margin-bottom: 1rem; }
.vip-lock-card__title { margin-bottom: 0.75rem; }
.vip-lock-card__desc { color: var(--text-muted); margin-bottom: 2rem; }
.vip-lock-card .post-password-form { text-align: left; }
.vip-lock-card .post-password-form label { display: block; font-weight: 500; margin-bottom: 0.5rem; font-size: 0.875rem; }
.vip-lock-card .post-password-form input[type="password"] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    margin-bottom: 1rem;
}
.vip-lock-card .post-password-form input[type="submit"] {
    width: 100%;
    padding: 0.85rem;
    background: var(--gold);
    color: var(--white);
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}
.vip-lock-card .post-password-form input[type="submit"]:hover { background: var(--gold-light); }
.vip-lock-card__request { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.vip-lock-card__request p { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.vip-lock-card__hint { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.75rem; }
.vip-lock-card__back { margin-top: 1.5rem; font-size: 0.875rem; }
.vip-lock-card__back a { color: var(--text-muted); }
.vip-lock-card__back a:hover { color: var(--rose-dark); }

/* ============================================================
   17. GALLERY
   ============================================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}
.gallery-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.gallery-item__images {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.gallery-item__before,
.gallery-item__after { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.gallery-placeholder { height: 100%; min-height: 200px; }
.gallery-item__label {
    position: absolute;
    bottom: 0.5rem;
    left: 0.5rem;
    background: rgba(0,0,0,0.6);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.2rem 0.5rem;
    border-radius: 20px;
}
.gallery-item__label--after { left: auto; right: 0.5rem; background: rgba(185,148,106,0.85); }
.gallery-item__info { padding: 1rem 1.25rem; }
.gallery-item__treatment { font-weight: 600; font-size: 0.875rem; margin-bottom: 0.2rem; }
.gallery-item__area      { color: var(--text-muted); font-size: 0.8rem; margin-bottom: 0.5rem; }
.gallery-item__disclaimer { font-size: 0.75rem; color: var(--text-muted); }

.gallery-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}
.gallery-filter-btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1.5px solid var(--border);
    border-radius: 30px;
    background: var(--white);
    color: var(--text-muted);
    transition: var(--transition);
}
.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}
.gallery-section__footer { text-align: center; margin-top: 2rem; }
.gallery-cta-text { font-size: 1.1rem; margin-bottom: 1rem; }

/* Teaser on homepage */
.gallery-teaser__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 1rem;
}
.gallery-tile { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3/4; }
.gallery-tile__placeholder {
    height: 100%;
    background: var(--cream-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    text-align: center;
    border: 1px dashed var(--border);
}
.gallery-tile__placeholder span { font-weight: 600; }
.gallery-tile__placeholder small { font-size: 0.75rem; }
.gallery-compliance-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 1.5rem;
}

/* ============================================================
   18. CONTACT FORM
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    align-items: start;
}
@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .form-row { grid-template-columns: 1fr; }
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.25rem; margin: 1.5rem 0; }
.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.contact-detail-item svg { flex-shrink: 0; color: var(--rose-dark); margin-top: 3px; }
.contact-detail-item strong { display: block; font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.2rem; }
.contact-detail-item a { color: var(--text-body); font-size: 0.9rem; }
.contact-detail-item a:hover { color: var(--rose-dark); }
.contact-detail-item address { font-size: 0.9rem; color: var(--text-body); }
.contact-detail-item span { font-size: 0.9rem; color: var(--text-body); }
.contact-map { margin-top: 2rem; }
.contact-map .map-embed { border-radius: var(--radius-lg); overflow: hidden; }
.contact-map .map-embed iframe { min-height: 280px; }
.contact-vip-promo {
    margin-top: 2rem;
    padding: 1.25rem;
    background: var(--cream);
    border-radius: var(--radius);
    border-left: 3px solid var(--gold);
}
.contact-vip-promo p { font-size: 0.875rem; margin-bottom: 0.75rem; }

.contact-form-wrap { overflow: hidden; }
.contact-form-wrap h2 { margin-bottom: 1.5rem; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; max-width: 100%; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.8rem; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-body); }
.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.9rem;
    color: var(--text-body);
    background: var(--white);
    transition: var(--transition);
    width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--rose);
    box-shadow: 0 0 0 3px rgba(196,160,138,0.15);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.required { color: var(--rose-dark); margin-left: 2px; }
.form-group--consent .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.8rem;
    line-height: 1.5;
    color: var(--text-muted);
    cursor: pointer;
    max-width: 100%;
    text-transform: none;
    letter-spacing: 0;
}
.form-group--consent input[type="checkbox"] {
    margin-top: 2px;
    accent-color: var(--rose);
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}
.form-privacy-note { text-align: center; margin-top: 0.5rem; color: var(--text-muted); }

.form-success {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: #f0f9f0;
    border: 1px solid #6B8F71;
    border-radius: var(--radius);
    color: #3d6b44;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}
.form-error {
    padding: 1rem 1.25rem;
    background: #fdf0f0;
    border: 1px solid #d97b7b;
    border-radius: var(--radius);
    color: #a33;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* ============================================================
   19. COMPLIANCE ELEMENTS
   ============================================================ */
.compliance-disclaimer {
    background: var(--navy);
    padding: 1.25rem 0;
}
.compliance-disclaimer p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.65);
    margin: 0;
    line-height: 1.6;
}
.compliance-disclaimer strong { color: rgba(255,255,255,0.9); }

.compliance-section { padding: 2.5rem 0; }
.compliance-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-left: 4px solid var(--navy);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}
.compliance-box__title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--navy);
}
.compliance-box__list {
    list-style: disc;
    padding-left: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.compliance-box__list li { font-size: 0.875rem; color: var(--text-body); line-height: 1.6; }
.compliance-box h3 { font-size: 1rem; margin-bottom: 0.75rem; }
.compliance-box p  { font-size: 0.85rem; color: var(--text-body); line-height: 1.65; margin-bottom: 0.75rem; }

.compliance-note--inline {
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    background: var(--cream);
    border-left: 3px solid var(--navy);
    border-radius: var(--radius);
    font-size: 0.85rem;
    color: var(--text-body);
    line-height: 1.6;
}
.compliance-note--inline strong { color: var(--navy); }

/* ============================================================
   20. ABOUT PAGE
   ============================================================ */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.approach-item { text-align: center; }
.approach-item__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--rose-dark);
}
.approach-item h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.approach-item p  { font-size: 0.875rem; color: var(--text-muted); }

.compliance-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.compliance-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
}
.compliance-card h3 { color: var(--white); font-size: 1rem; margin-bottom: 0.75rem; }
.compliance-card p  { color: rgba(255,255,255,0.90); font-size: 0.875rem; }

.about-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   21. SERVICE PAGE COMPONENTS
   ============================================================ */
.treatment-areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}
.treatment-area-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.treatment-area-card:hover { border-color: var(--rose-light); box-shadow: var(--shadow-md); }
.treatment-area-card h3 { font-size: 0.95rem; margin-bottom: 0.5rem; }
.treatment-area-card p  { font-size: 0.825rem; color: var(--text-muted); margin: 0; }
.treatment-areas-note  { font-size: 0.8rem; color: var(--text-muted); }

.expect-steps { display: flex; flex-direction: column; gap: 1.5rem; }
.expect-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}
.expect-step:last-child { border-bottom: none; padding-bottom: 0; }
.expect-step__num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--rose-dark);
    line-height: 1;
    flex-shrink: 0;
    width: 60px;
    text-align: center;
}
.expect-step h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.expect-step p  { font-size: 0.9rem; color: var(--text-body); margin: 0; }

.results-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
.results-info-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}
.results-info-card h3 { color: var(--white); font-size: 1rem; margin-bottom: 0.5rem; }
.results-info-card p  { color: rgba(255,255,255,0.90); font-size: 0.875rem; margin: 0; }
.results-disclaimer { text-align: center; color: rgba(255,255,255,0.75); font-size: 0.8rem; }

.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1rem 0 1.5rem;
}
.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9rem;
}
.check-list li::before {
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 3L5 9L2 6' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.service-cta-group { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}
.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-body);
}
.benefit-item svg { color: var(--brown); flex-shrink: 0; margin-top: 2px; }

.treatment-type-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}
.treatment-type-card h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }
.treatment-type-card p  { font-size: 0.9rem; color: var(--text-body); line-height: 1.65; margin-bottom: 0.5rem; }

.related-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.related-service-card {
    display: block;
    padding: 2rem;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    text-decoration: none;
    box-shadow: var(--shadow-sm);
}
.related-service-card:hover {
    border-color: var(--rose-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.related-service-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--text-dark); }
.related-service-card p  { font-size: 0.875rem; color: var(--text-muted); margin: 0; }

/* ============================================================
   22. FAQ ACCORDION
   ============================================================ */
.faq-accordion { display: flex; flex-direction: column; gap: 0.625rem; }

.faq-item {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: box-shadow 0.25s ease;
    box-shadow: var(--shadow-sm);
}
.faq-item:hover { box-shadow: var(--shadow-md); }

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.4rem 1.75rem;
    text-align: left;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    background: none;
    border: none;
    gap: 1.5rem;
    cursor: pointer;
    transition: color 0.2s ease;
}
.faq-question:hover { color: var(--rose-dark); }

.faq-icon {
    width: 30px;
    height: 30px;
    border: 1.5px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--text-dark);
    flex-shrink: 0;
    transition: transform 0.3s ease, background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
    line-height: 1;
}
.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
    background-color: var(--brown);
    border-color: var(--brown);
    color: var(--white);
}

.faq-answer {
    padding: 0 1.75rem 1.5rem;
    border-top: 1px solid var(--border);
}
.faq-answer p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 1rem 0 0;
    line-height: 1.75;
}

/* ============================================================
   23. LOCATION SECTION
   ============================================================ */
.location-section__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}
.location-section__map {
    display: flex;
    flex-direction: column;
}
.location-section__map .map-embed {
    flex: 1;
    padding-bottom: 0;
    height: 100%;
    min-height: 400px;
}
.location-suburbs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.4rem;
    margin: 1rem 0 1.5rem;
}
.location-suburbs li {
    font-size: 0.875rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.location-suburbs li::before { content: '→'; color: var(--rose); font-size: 0.75rem; }

/* ============================================================
   23b. INSTAGRAM FEED SECTION
   ============================================================ */
.instagram-section .section-header h2 {
    display: flex;
    align-items: center;
    justify-content: center;
}
.instagram-feed-wrap {
    margin-bottom: 2rem;
}

/* Smash Balloon overrides — force 6-col grid to match our grid */
.instagram-feed-wrap .instagram-feed-container,
.instagram-feed-wrap #sb_instagram {
    padding: 0 !important;
}
.instagram-feed-wrap #sb_instagram .sbi_item {
    border-radius: var(--radius) !important;
    overflow: hidden !important;
}

/* Fallback notice shown before plugin is installed */
.instagram-feed-notice {
    background: var(--cream-dark);
    border: 1px dashed var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}
.instagram-section__cta {
    text-align: center;
    margin-top: 2rem;
}
.instagram-section__cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* ============================================================
   24. MAP EMBED + PLACEHOLDER
   ============================================================ */
.map-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
}
.map-embed iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.map-placeholder {
    height: 300px;
    background: var(--cream-dark);
    border: 1px dashed var(--border);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--text-muted);
    text-align: center;
    padding: 2rem;
}
.map-placeholder--sm { height: 200px; }

/* ============================================================
   25. IMAGE PLACEHOLDER (development only)
   ============================================================ */
.image-placeholder {
    background: var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    color: var(--text-muted);
    font-size: 0.8rem;
    border: 1px dashed var(--border);
    border-radius: var(--radius);
    text-align: center;
    padding: 2rem;
    width: 100%;
}

/* ============================================================
   26. LINK TILES (Services page)
   ============================================================ */
.link-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.link-tile {
    display: block;
    padding: 2.5rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    box-shadow: var(--shadow-sm);
}
.link-tile:hover {
    border-color: var(--rose-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.link-tile h3 { font-size: 1.2rem; margin-bottom: 0.5rem; color: var(--text-dark); }
.link-tile p  { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 0; }
.link-tile__arrow {
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--rose-light);
    transition: var(--transition);
}
.link-tile:hover .link-tile__arrow { transform: translateY(-50%) translateX(4px); color: var(--rose-dark); }

/* ============================================================
   27. BLOG
   ============================================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.blog-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.blog-card__image-link img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.blog-card__body { padding: 1.5rem; }
.blog-card__meta { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 0.5rem; letter-spacing: 0.04em; }
.blog-card__title { font-size: 1.2rem; margin-bottom: 0.75rem; line-height: 1.3; }
.blog-card__title a { color: var(--text-dark); }
.blog-card__title a:hover { color: var(--rose-dark); }
.blog-card__excerpt { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.65; }

/* Blog Single */
.blog-single-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 4rem;
    padding: 3rem 0;
}
.blog-post__header { margin-bottom: 2rem; }
.blog-post__meta { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.blog-post__title { margin-bottom: 1.5rem; }
.blog-post__thumbnail { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 2rem; }
.blog-post__content { font-size: 1rem; line-height: 1.8; }
.blog-post__content h2 { font-size: 1.6rem; margin: 2rem 0 0.75rem; }
.blog-post__content h3 { font-size: 1.25rem; margin: 1.5rem 0 0.5rem; }
.blog-post__content ul, .blog-post__content ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.blog-post__content ul { list-style: disc; }
.blog-post__content ol { list-style: decimal; }
.blog-post__content li { margin-bottom: 0.25rem; }
.blog-post__footer { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.blog-post__disclaimer { margin-top: 1.5rem; padding: 1rem 1.25rem; background: var(--cream); border-radius: var(--radius); font-size: 0.85rem; color: var(--text-muted); }

.blog-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-widget {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid var(--border);
}
.sidebar-widget__title { font-size: 1rem; margin-bottom: 0.75rem; }
.sidebar-widget p { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 1rem; }
.sidebar-service-links { display: flex; flex-direction: column; gap: 0.4rem; }
.sidebar-service-links a { font-size: 0.875rem; color: var(--text-body); padding: 0.35rem 0; border-bottom: 1px solid var(--border); }
.sidebar-service-links a:hover { color: var(--rose-dark); }

/* ============================================================
   28. FOOTER
   ============================================================ */
.footer-main {
    background: #2C2421;
    padding: 4.5rem 0 2.5rem;
    position: relative;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
}
.footer-main::before {
    content: 'Angelic';
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: clamp(5rem, 18vw, 14rem);
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    color: var(--white);
    opacity: 0.03;
    pointer-events: none;
    user-select: none;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 3rem;
}
/* Footer logo sizing */
.site-footer .custom-logo-link img,
.site-footer .custom-logo { height: 55px; width: auto; display: block; }
@media (max-width: 768px) {
    .site-footer .custom-logo-link img,
    .site-footer .custom-logo { height: 45px; }
}
.footer-logo-text .logo-name    { font-family: var(--font-heading); font-size: 1.4rem; color: var(--white); display: block; }
.footer-logo-text .logo-tagline { font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--rose-light); display: block; }
.footer-about { font-size: 0.85rem; color: rgba(255,255,255,0.75); margin-top: 1rem; line-height: 1.7; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.footer-social__link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.75);
    transition: var(--transition);
}
.footer-social__link:hover { background: var(--rose); border-color: var(--rose); color: var(--white); }

.footer-col__title {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--rose-light);
    margin-bottom: 1.25rem;
}
.footer-nav { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-nav a { font-size: 0.875rem; color: rgba(255,255,255,0.75); transition: var(--transition); }
.footer-nav a:hover { color: var(--white); }

.footer-address { margin-bottom: 1rem; }
.footer-address p { font-size: 0.875rem; color: rgba(255,255,255,0.78); line-height: 1.65; }
.footer-address strong { color: rgba(255,255,255,0.85); }
.footer-contact-links { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.25rem; }
.footer-contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.78);
    transition: var(--transition);
}
.footer-contact-link:hover { color: var(--white); }
.footer-contact-link svg { color: var(--rose); flex-shrink: 0; }

.footer-hours h4 { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--rose-light); margin-bottom: 0.5rem; }
.footer-hours p   { font-size: 0.8rem; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 1rem; }
.footer-book-btn  {
    margin-top: 0.5rem;
    background: var(--white) !important;
    border-color: var(--white) !important;
    color: var(--brown) !important;
    border-radius: 999px;
}
.footer-book-btn:hover {
    background: var(--cream) !important;
    border-color: var(--cream) !important;
    color: var(--brown) !important;
}

.footer-compliance {
    background: #231C1A;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-compliance p { font-size: 0.75rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 0.75rem; }
.footer-legal-nav { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-legal-nav a { font-size: 0.75rem; color: rgba(255,255,255,0.6); }
.footer-legal-nav a:hover { color: rgba(255,255,255,0.85); }
.footer-credit { font-size: 0.75rem; color: rgba(255,255,255,0.45); }
.footer-credit__link {
    color: rgba(255,255,255,0.75);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer-credit__link:hover { color: var(--white); }

/* ============================================================
   29. 404 PAGE
   ============================================================ */
.error-404-section {
    padding: 6rem 0;
    background: var(--cream);
    min-height: 70vh;
    display: flex;
    align-items: center;
}
.error-404__code { font-family: var(--font-heading); font-size: clamp(6rem, 20vw, 12rem); font-weight: 300; color: var(--rose-light); line-height: 1; margin-bottom: 0; }
.error-404__title { margin-bottom: 1rem; }
.error-404__desc { color: var(--text-muted); max-width: 450px; margin: 0 auto 2rem; }
.error-404__links { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.error-404__search { max-width: 360px; margin: 0 auto; }
.error-404__search .search-form { display: flex; gap: 0.5rem; }
.error-404__search input[type="search"] {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.9rem;
}
.error-404__search input[type="submit"] {
    padding: 0.75rem 1.25rem;
    background: var(--gold);
    color: var(--white);
    border-radius: var(--radius);
    font-size: 0.875rem;
    cursor: pointer;
    border: none;
    font-weight: 500;
}

/* ============================================================
   30. MEET YOUR PRACTITIONERS — Team Section
   ============================================================ */

/* Feather watermark — team section (gold, left side, behind cards) */
.team-section {
    position: relative;
    overflow: hidden;
}
.team-section::before {
    content: '';
    position: absolute;
    left: -3%;
    bottom: 0;
    transform: rotate(-14deg) translateY(10%);
    width: clamp(130px, 14vw, 210px);
    height: calc(clamp(130px, 14vw, 210px) * 3);
    background-image: url('../icons/feather-dark.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center bottom;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 860px;
    margin: 0 auto 3rem;
}

.team-card {
    display: flex;
    flex-direction: column;
}

.team-card__image {
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 1.75rem;
    background: linear-gradient(145deg, var(--cream-dark) 0%, var(--rose-light) 100%);
    position: relative;
    box-shadow: 0 4px 24px rgba(82,67,61,0.1);
}

.team-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: 4px solid var(--brown);
    border-radius: 16px;
}
.team-card__image-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    color: var(--rose-dark);
    opacity: 0.45;
}
.team-card__image-placeholder span {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.team-card__name {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--text-dark);
    letter-spacing: 0.01em;
    margin-bottom: 0.3rem;
}

.team-card__role {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brown);
    margin-bottom: 1rem;
}

.team-card__bio {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    flex: 1;
}

.team-card__credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.credential-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--rose-dark);
    background: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    border: 1px solid var(--border);
}
.credential-badge::before {
    content: '✦';
    font-size: 0.55rem;
    color: var(--brown);
}

/* Team combined stats strip */
.team-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    padding: 2rem 3rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    max-width: 680px;
    margin: 0 auto;
    box-shadow: 0 2px 16px rgba(82,67,61,0.06);
}

.team-stat { text-align: center; }

.team-stat__number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 300;
    color: var(--rose-dark);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.team-stat__label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.team-stat__divider {
    width: 1px;
    height: 56px;
    background: var(--border);
    flex-shrink: 0;
}

/* ============================================================
   31. RESPONSIVE — TABLET (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
    .container { padding: 0 1.75rem; }

    .services-grid       { grid-template-columns: repeat(2, 1fr); }
    .pillars-grid        { grid-template-columns: repeat(2, 1fr); }
    .approach-grid       { grid-template-columns: repeat(2, 1fr); }
    .compliance-cards    { grid-template-columns: repeat(2, 1fr); }
    .results-info-grid   { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid       { grid-template-columns: repeat(2, 1fr); }
    .footer-grid         { grid-template-columns: 1fr 1fr; }
    .testimonials-grid   { grid-template-columns: 1fr 1fr; }
    .treatment-areas-grid { grid-template-columns: repeat(2, 1fr); }

    .service-feature     { grid-template-columns: 1fr; }
    .service-feature--reverse { direction: ltr; }
    .service-feature__content { padding: 2rem; }
    .service-feature__image { order: -1; }
    .service-feature__image .image-placeholder { min-height: 200px; }

    /* Header: handled in Section 6 @media block above */

    .section--navy { padding: 3.5rem 1.5rem; }
    .section--navy > .container { padding: 4rem 2.5rem; }
    .cta-band { padding: 2rem 1.5rem; }
    .cta-band > .container { padding: 3rem 2.5rem; }

    .blog-single-layout  { grid-template-columns: 1fr; }
    .blog-sidebar        { order: -1; }
    .blog-grid           { grid-template-columns: 1fr 1fr; }

    .intro-strip__inner,
    .intro-strip__inner:has(.intro-strip__image) { grid-template-columns: 1fr; }
    .intro-strip__image  { max-height: 350px; }
    .intro-strip__stats  { flex-direction: row; flex-wrap: wrap; justify-content: center; }
    .stat-card           { flex: 1; min-width: 0; }

    .journey-steps { flex-direction: column; }
    .journey-step__divider { display: none; }

    .two-col-content { grid-template-columns: 1fr; }
    .contact-grid    { grid-template-columns: 1fr; }
    .location-section__inner { grid-template-columns: 1fr; }
}

/* ============================================================
   31. RESPONSIVE — MOBILE (≤640px)
   ============================================================ */
@media (max-width: 640px) {
    .container { padding: 0 1.5rem; }
    .section { padding: 2.5rem 0; }

    /* Tighten utility spacing */
    .mt-2 { margin-top: 1rem; }
    .mt-3 { margin-top: 1.5rem; }

    /* Reduce section header bottom gap */
    .section-header { margin-bottom: 1.75rem; }

    /* Stack paired CTA buttons and make them full width */
    /* Stack any adjacent button groups full-width */
    .hero__actions,
    .btn-group {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        align-items: stretch;
    }
    .hero__actions .btn,
    .btn-group .btn { width: 100%; justify-content: center; }

    .hero { min-height: 85vh; }
    .hero__content { padding: calc(var(--logo-h, 52px) + 60px) 1.5rem 3rem; }

    .intro-strip__stats { flex-direction: column; }
    .stat-card          { width: 100%; min-width: 0; }
    .hero__title { font-size: 2.8rem; }
    .hero__actions { flex-direction: column; }
    .hero__trust    { gap: 0.75rem; }

    .services-grid { grid-template-columns: 1fr; }
    .pillars-grid  { grid-template-columns: 1fr; }
    .approach-grid { grid-template-columns: 1fr; }
    .compliance-cards { grid-template-columns: 1fr; }
    .results-info-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
    .treatment-areas-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .gallery-grid  { grid-template-columns: 1fr; }
    .gallery-teaser__grid { grid-template-columns: 1fr 1fr; }
    .related-services-grid { grid-template-columns: 1fr; }
    .link-tiles { grid-template-columns: 1fr; }
    .blog-grid  { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }

    .cta-band__inner { flex-direction: column; text-align: center; }
    .cta-band__actions { justify-content: center; }

    .vip-teaser__inner { flex-direction: column; text-align: center; }
    .vip-teaser__actions { justify-content: center; width: 100%; }
    .vip-teaser__actions .btn { width: 100%; justify-content: center; }

    .form-row { grid-template-columns: 1fr; }
    .service-feature__highlights { grid-template-columns: 1fr; }
    .location-suburbs { grid-template-columns: 1fr; }

    .service-feature,
    .service-feature--reverse {
        direction: ltr;
        width: 100%;
        overflow: hidden;
    }
    .service-feature__content { padding: 1.25rem; }
    .service-feature .btn     { width: 100%; text-align: center; justify-content: center; }

    .expect-step { flex-direction: column; }
    .expect-step__num { width: auto; text-align: left; }

    .section--navy { padding: 2rem 1rem; }
    .section--navy > .container { border-radius: 16px; padding: 3rem 1.75rem; }
    .cta-band { padding: 1.5rem 1rem; }
    .cta-band > .container { border-radius: 16px; padding: 2.5rem 1.5rem; }

    .team-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .team-stats { flex-direction: column; gap: 1.5rem; padding: 1.75rem 2rem; }
    .team-stat__divider { width: 60px; height: 1px; }
    .team-card__image { aspect-ratio: 4 / 5; } /* keep portrait ratio on mobile to avoid cropping */
}

/* ============================================================
   33. CRO ENHANCEMENTS — Hero Animations · Stat Counters · Sticky CTA
   ============================================================ */

/* --- Hero entrance — clip-path reveal + fade --- */
@keyframes heroReveal {
    from { opacity: 0; clip-path: inset(0 0 100% 0); transform: translateY(16px); }
    to   { opacity: 1; clip-path: inset(0 0 0 0); transform: translateY(0); }
}
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero__eyebrow     { animation: heroFadeUp 0.6s ease both; animation-delay: 0.2s; }
.hero__title       { animation: heroReveal 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) both; animation-delay: 0.35s; }
.hero__subtitle    { animation: heroFadeUp 0.7s ease both; animation-delay: 0.65s; }
.hero__actions     { animation: heroFadeUp 0.6s ease both; animation-delay: 0.85s; }
.hero__reassurance { animation: heroFadeUp 0.5s ease both; animation-delay: 1s; }

/* --- Image reveal — clip-path wipe on scroll --- */
.reveal-image {
    clip-path: inset(0 0 100% 0);
    transition: clip-path 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-image.is-revealed {
    clip-path: inset(0 0 0 0);
}

/* --- Service card image hover scale --- */
.service-feature__image {
    overflow: hidden;
    border-radius: var(--radius-lg);
}
.service-feature__image img {
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.service-feature:hover .service-feature__image img {
    transform: scale(1.04);
}

/* --- Team card image hover scale --- */
.team-card__image {
    overflow: hidden;
    border-radius: 16px;
}
.team-card__image img {
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.team-card:hover .team-card__image img {
    transform: scale(1.03);
}

/* --- CTA button shimmer effect --- */
@keyframes shimmer {
    0%   { left: -100%; }
    100% { left: 200%; }
}
.btn--gold {
    position: relative;
    overflow: hidden;
}
.btn--gold::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.2),
        transparent
    );
    animation: shimmer 4s ease-in-out infinite;
    animation-delay: 2s;
    pointer-events: none;
}

/* --- Reduced motion: disable all animations --- */
@media (prefers-reduced-motion: reduce) {
    .hero__eyebrow,
    .hero__title,
    .hero__subtitle,
    .hero__actions,
    .hero__reassurance { animation: none; }
    .reveal-image { clip-path: none; }
    .service-feature__image img,
    .team-card__image img { transition: none; }
    .btn--gold::after { animation: none; display: none; }
}

/* Hide feather watermarks on small screens — too prominent at narrow widths */
@media (max-width: 767px) {
    .hero::after,
    .team-section::before { display: none; }
}

/* --- Sticky mobile CTA bar (mobile only) --- */
.sticky-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 0.75rem 1.25rem;
    gap: 0.75rem;
    align-items: center;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    transform: translateY(100%);
    transition: transform 0.35s ease;
}
.sticky-cta-bar.is-visible { transform: translateY(0); }

.sticky-cta-bar__book {
    flex: 1;
    text-align: center;
    justify-content: center;
    font-size: 0.875rem !important;
    padding: 0.65rem 1rem !important;
}
.sticky-cta-bar__phone {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--brown);
    white-space: nowrap;
    padding: 0.65rem 0.9rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
    text-decoration: none;
}
.sticky-cta-bar__phone:hover { color: var(--brown); border-color: var(--brown); }
.sticky-cta-bar__phone svg { flex-shrink: 0; }

@media (max-width: 640px) {
    .sticky-cta-bar { display: flex; }
}

/* ============================================================
   34. AFTERCARE PAGE
   ============================================================ */
.aftercare-page__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}
.aftercare-page__card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.aftercare-page__card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.aftercare-page__card--highlight {
    background: #2C2421;
    border-color: transparent;
    color: var(--white);
}
.aftercare-page__card--highlight h3 { color: var(--white) !important; }
.aftercare-page__card--highlight p  { color: rgba(255,255,255,0.95) !important; }
.aftercare-page__card-icon {
    font-size: 2rem;
    color: var(--brown);
    margin-bottom: 1.25rem;
}
.aftercare-page__card--highlight .aftercare-page__card-icon { color: var(--gold); }
.aftercare-page__card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}
.aftercare-page__card p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--text-body);
    margin-bottom: 1rem;
}
.aftercare-page__card-hint {
    font-size: 0.825rem !important;
    color: var(--text-muted) !important;
    font-style: italic;
}
.aftercare-page__card .btn { margin-top: 0.5rem; }

/* Guidelines */
.aftercare-page__guidelines {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}
.aftercare-page__guideline {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}
.aftercare-page__guideline h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--rose-dark);
}
.aftercare-page__guideline ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.aftercare-page__guideline li {
    font-size: 0.875rem;
    color: var(--text-body);
    line-height: 1.6;
    padding-left: 1.25rem;
    position: relative;
}
.aftercare-page__guideline li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

/* Urgent / When to contact */
.aftercare-page__urgent {
    margin-top: 2rem;
}
.aftercare-page__urgent-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}
.aftercare-page__urgent-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}
.aftercare-page__urgent-icon {
    font-size: 1.25rem;
    color: var(--brown);
    flex-shrink: 0;
    margin-top: 0.1rem;
}
.aftercare-page__urgent-item strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}
.aftercare-page__urgent-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}
.aftercare-page__emergency-cta {
    text-align: center;
    padding: 2.5rem;
    background: var(--cream);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}
.aftercare-page__emergency-cta p {
    margin-bottom: 1.25rem;
    font-size: 1rem;
    color: var(--text-dark);
}

/* Responsive */
@media (max-width: 768px) {
    .aftercare-page__cards { grid-template-columns: 1fr; }
    .aftercare-page__guidelines { grid-template-columns: 1fr; }
}

/* (mobile-cta-bar removed — using sticky-cta-bar in header.php instead, with scroll-based visibility) */

/* ============================================================
   BOOKING PAGE
   ============================================================ */
.booking-embed-section {
    min-height: 600px;
}
.booking-embed {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}
.booking-embed iframe {
    width: 100%;
    min-height: 500px;
    border: none;
    border-radius: var(--radius);
}
