/* ============================================================
   styles.css
   Global stylesheet for drkaceykiesman.com

   Responsibilities:
   - Design tokens (colours, fonts, spacing, easing)
   - Global reset and base element styles
   - All layout components: header, hero, sections, footer
   - Interior page components: pricing, contact, cards, FAQ
   - Responsive overrides across all breakpoints

   Sections:
     1)  Custom Properties
     2)  Global Reset & Base
     3)  Typography
     4)  Header & Navigation
     5)  Homepage Hero
     6)  About Section
     7)  Services Grid
     8)  Specialty Marquee
     9)  More Services Grid
     10) Hours & Location
     11) Footer
     12) Page Hero (interior pages)
     13) Page Hero Actions
     14) Pricing Sections
     15) Contact Form & Validation
     16) Injectable Cards & Details
     17) Expect Grid
     18) Details Grid
     19) FAQ Accordion
     20) Service CTA
     21) Service Feature Rows
     22) Morpheus8 Accordion
     23) Responsive Overrides

   Cleanup notes:
   - Removed @import Google Fonts — duplicate of <link> tags in HTML head;
     CSS @import is render-blocking inside a render-blocking file and causes
     a redundant network roundtrip.
   - Removed [data-animate] block (46 lines) — dead code from a previous
     animation system. The site uses data-reveal + reveal.css exclusively.
   - Removed object-fit: cover from .about-image img — inherited from global img reset.
   - Removed text-decoration: none from .services-cta-btn — inherited from global a reset.
   - Removed padding/margin: 0 from .price-list and .injectable-details — covered
     by the universal * reset.
   - Removed padding: 0 from .expect-item ul — same reason.
   - Removed redundant @media (max-width: 900px) morpheus8 block — set the same
     grid-template-columns: 1fr 1fr as the non-media default.
   - Merged two @media (max-width: 768px) nav/header blocks into one.
   ============================================================ */


/* ============================================================
   1) CUSTOM PROPERTIES
   ============================================================ */

:root {
    --cream: #FAF8F2;
    --ivory: #F2EDE2;
    --beige: #E4DDD0;
    --brown-light: #3a4b5f;
    --brown: #5c6c74;

    --text-dark: #1A1814;
    --text-mid: #4A453E;
    --text-light: #8A8278;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;

    --radius: 12px;
    --max-w: min(95vw, 1600px);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}


/* ============================================================
   2) GLOBAL RESET & BASE
   ============================================================ */

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.65;
    overflow-x: hidden;
}

/* Subtle grain texture overlay */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
    opacity: 0.022;
    pointer-events: none;
    z-index: 9999;
}

img {
    width: 100%;
    display: block;
    object-fit: cover;
}

a {
    text-decoration: none;
}


/* ============================================================
   3) TYPOGRAPHY
   ============================================================ */

h1,
h2,
h3 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.eyebrow {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brown-light);
    margin-bottom: 14px;
}


/* ============================================================
   4) HEADER & NAVIGATION
   ============================================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--cream);
    border-bottom: 1px solid transparent;
    padding: 20px 40px;
    transition: border-color 0.3s ease, background 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.scrolled {
    border-bottom-color: var(--beige);
    background: rgba(250, 248, 242, 0.94);
    backdrop-filter: blur(10px);
}

.header-inner {
    max-width: var(--max-w);
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-link {
    display: flex;
    flex-direction: column;
    gap: 2px;
    color: inherit;
}

.brand-name {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--text-dark);
    line-height: 1;
}

.brand-sub {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--text-light);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.main-nav a {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--text-mid);
    letter-spacing: 0.01em;
    position: relative;
    transition: color 0.22s var(--ease);
}

.main-nav a:not(.nav-book)::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--brown);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.28s var(--ease);
}

.main-nav a:not(.nav-book):hover {
    color: var(--brown);
}

.main-nav a:not(.nav-book):hover::after {
    transform: scaleX(1);
}

.nav-book {
    padding: 10px 22px;
    background: var(--brown);
    color: #FAF8F2 !important;
    border-radius: 999px;
    font-size: 0.78rem !important;
    font-weight: 500 !important;
    transition: background 0.2s !important;
}

.nav-book:hover {
    background: var(--brown-light) !important;
    color: #FAF8F2 !important;
}

/* Active nav state for current page */
.nav-active {
    color: var(--brown) !important;
    opacity: 1 !important;
}

@media (max-width: 768px) {
    .site-header {
        position: relative;
    }

    .main-nav {
        gap: 10px;
        flex-wrap: nowrap;
    }

    .main-nav a {
        font-size: 0.72rem;
    }

    .nav-book {
        padding: 6px 10px;
        font-size: 0.66rem !important;
        white-space: nowrap;
    }
}

@media (max-width: 403px) {
    .main-nav {
        gap: 8px;
    }

    .main-nav a {
        font-size: 0.68rem;
    }

    .nav-book {
        padding: 5px 8px;
        font-size: 0.62rem !important;
    }
}

@media (max-width: 381px) {
    .main-nav {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        width: 100%;
    }

    .main-nav a {
        font-size: 0.7rem;
        text-align: center;
        justify-self: center;
    }

    .nav-book {
        padding: 6px 10px;
        font-size: 0.66rem !important;
        justify-self: center;
        white-space: nowrap;
    }
}


/* ============================================================
   5) HOMEPAGE HERO
   ============================================================ */

.hero {
    position: relative;
    height: 92vh;
    min-height: 580px;
    display: flex;
    align-items: flex-end;
    padding: 80px 40px;
    color: var(--cream);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url("/images/rock.webp") center/cover no-repeat;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(10, 20, 14, 0.82) 0%,
            rgba(10, 20, 14, 0.28) 55%,
            rgba(10, 20, 14, 0.08) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: clamp(520px, 60vw, 1000px);
}

.hero-eyebrow {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 22px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5.5vw, 7.5rem);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin-bottom: 26px;
    color: var(--ivory);
}

.hero-title span {
    display: block;
    white-space: nowrap;
}

.hero-title em {
    font-style: italic;
    font-weight: 300;
}

.hero-text {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--ivory);
    max-width: 420px;
    margin-bottom: 36px;
    line-height: 1.75;
}

.hero-btn {
    display: inline-block;
    padding: 13px 28px;
    background: var(--ivory);
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    border-radius: 999px;
    transition: background 0.28s var(--ease), color 0.28s var(--ease), transform 0.22s var(--ease), box-shadow 0.28s var(--ease);
}

.hero-btn:hover {
    background: var(--brown);
    color: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(109, 101, 91, 0.38);
}


/* ============================================================
   6) ABOUT SECTION
   ============================================================ */

.about {
    background: var(--cream);
    padding: clamp(80px, 10vw, 140px) clamp(20px, 5vw, 80px);
}

.about-inner {
    max-width: var(--max-w);
    margin: auto;
    display: grid;
    grid-template-columns: 0.5fr 1fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: center;
}

.about-inner + .about-inner {
    margin-top: clamp(64px, 9vw, 120px);
}

.about-image {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.about-image img {
    height: 100%;
}

.about-heading {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 3.5rem);
    font-weight: 400;
    margin-bottom: 26px;
    color: var(--text-dark);
    line-height: 1.2;
}

.about-body {
    font-size: clamp(0.9rem, 1.05vw, 1.1rem);
    color: var(--text-mid);
    margin-bottom: 16px;
    line-height: 1.8;
    font-weight: 300;
}

.about-inner--flip {
    grid-template-columns: 1fr 0.5fr;
}

.about-divider {
    max-width: var(--max-w);
    margin: clamp(60px, 8vw, 100px) auto;
    border-top: 1px solid var(--beige);
}


/* ============================================================
   7) SERVICES GRID
   ============================================================ */

.services {
    background: var(--ivory);
    padding: clamp(80px, 10vw, 160px) clamp(16px, 2vw, 32px);
}

.services-inner {
    max-width: var(--max-w);
    margin: auto;
}

.section-header {
    margin-bottom: clamp(40px, 5vw, 72px);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3.5vw, 4rem);
    font-weight: 400;
    color: var(--text-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(24px, 3vw, 52px);
}

.service {
    padding: clamp(28px, 3vw, 50px) 0;
    border-top: 1px solid var(--beige);
    transition: opacity 0.25s;
}

.service:hover {
    opacity: 0.75;
}

.service h3 {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 1.5vw, 1.8rem);
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.service p {
    font-size: clamp(0.85rem, 1vw, 1rem);
    color: var(--text-mid);
    line-height: 1.72;
    font-weight: 300;
}

.service-link {
    font-size: clamp(0.75rem, 0.85vw, 0.9rem);
    font-weight: 500;
    color: var(--brown);
    letter-spacing: 0.02em;
    transition: opacity 0.2s;
}

.service-link:hover {
    opacity: 0.6;
}

.services-cta {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: clamp(32px, 4vw, 56px);
    padding-top: clamp(28px, 3vw, 44px);
    border-top: 1px solid var(--beige);
}

.services-cta-btn {
    display: inline-block;
    background: var(--brown);
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 999px;
    transition: background 0.2s;
}

.services-cta-btn:hover {
    background: var(--brown-light);
}

.services-cta-btn--outline {
    background: transparent;
    border: 1px solid var(--brown);
    color: var(--brown);
}

.services-cta-btn--outline:hover {
    background: var(--brown-light);
    color: var(--cream);
}


/* ============================================================
   8) SPECIALTY MARQUEE
   ============================================================ */

.marquee-section {
    background: var(--brown);
    overflow: hidden;
    padding: 0;
}

/* Wave: ivory (services) melts into brown */
.marquee-section::before {
    content: '';
    display: block;
    width: 100%;
    height: 90px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 90' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,0 L1440,0 L1440,45 C1200,8 960,82 720,45 C480,8 240,82 0,45 Z' fill='%23F2EDE2'/%3E%3C/svg%3E") 0 0 / 100% 100% no-repeat;
}

/* Wave: brown melts into cream */
.marquee-section::after {
    content: '';
    display: block;
    width: 100%;
    height: 90px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 90' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,45 C240,8 480,82 720,45 C960,8 1200,82 1440,45 L1440,90 L0,90 Z' fill='%23FAF8F2'/%3E%3C/svg%3E") 0 0 / 100% 100% no-repeat;
}

@media (min-width: 900px) {
    .marquee-section::before {
        height: 120px;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 90' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,0 L1440,0 L1440,45 C1320,8 1080,82 960,45 C840,8 600,82 480,45 C360,8 120,82 0,45 Z' fill='%23F2EDE2'/%3E%3C/svg%3E");
    }

    .marquee-section::after {
        height: 120px;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 90' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,45 C120,8 360,82 480,45 C600,8 840,82 960,45 C1080,8 1320,82 1440,45 L1440,90 L0,90 Z' fill='%23FAF8F2'/%3E%3C/svg%3E");
    }
}

@media (min-width: 1400px) {
    .marquee-section::before {
        height: 150px;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 90' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,0 L1440,0 L1440,45 C1350,8 1170,82 1080,45 C990,8 810,82 720,45 C630,8 450,82 360,45 C270,8 90,82 0,45 Z' fill='%23F2EDE2'/%3E%3C/svg%3E");
    }

    .marquee-section::after {
        height: 150px;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 90' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,45 C90,8 270,82 360,45 C450,8 630,82 720,45 C810,8 990,82 1080,45 C1170,8 1350,82 1440,45 L1440,90 L0,90 Z' fill='%23FAF8F2'/%3E%3C/svg%3E");
    }
}

.marquee-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 40px 0;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 25s linear infinite;
}

.marquee-set {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.marquee-item {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3.5vw, 4rem);
    font-style: italic;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.88);
    padding: 0 52px;
    white-space: nowrap;
    letter-spacing: -0.01em;
}

.marquee-sep {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.5rem;
    flex-shrink: 0;
    opacity: 0.7;
}

@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}


/* ============================================================
   9) MORE SERVICES GRID
   ============================================================ */

.more-services {
    background: var(--cream);
    padding: clamp(80px, 10vw, 160px) clamp(16px, 2vw, 32px);
}

.more-services-inner {
    max-width: var(--max-w);
    margin: auto;
}

.more-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(24px, 3vw, 52px);
}

.more-item {
    padding: clamp(24px, 2.5vw, 44px) 0;
    border-top: 1px solid var(--beige);
    transition: opacity 0.25s;
    display: flex;
    flex-direction: column;
}

.more-item:hover {
    opacity: 0.75;
}

.more-num {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 2.2vw, 3rem);
    font-weight: 300;
    color: var(--beige);
    margin-bottom: clamp(14px, 1.5vw, 24px);
    line-height: 1;
}

.more-item h3 {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 1.3vw, 1.6rem);
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.more-item p {
    font-size: clamp(0.82rem, 0.95vw, 1rem);
    color: var(--text-mid);
    margin-bottom: 16px;
    line-height: 1.68;
    font-weight: 300;
}

.more-link {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--brown);
    letter-spacing: 0.06em;
    position: relative;
    padding-bottom: 2px;
    margin-top: auto;
    padding-top: 20px;
}

.more-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.more-link:hover::after {
    transform: scaleX(1);
}


/* ============================================================
   10) HOURS & LOCATION
   ============================================================ */

.location {
    background: var(--ivory);
    padding: clamp(80px, 10vw, 160px) clamp(16px, 2vw, 32px);
}

.location.location--cream {
    background: var(--cream);
}

/* When the location section is cream, flip the footer wave to cream too */
.location.location--cream + .footer::before {
    background-color: var(--cream);
}

.location-inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: clamp(40px, 5vw, 80px);
    max-width: var(--max-w);
    margin: auto;
    align-items: start;
}

.hours h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 2.5vw, 2.8rem);
    font-weight: 400;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.hours-list {
    border-top: 1px solid var(--beige);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--beige);
    font-size: 0.87rem;
    color: var(--text-mid);
    font-weight: 300;
}

.hours-row span:last-child {
    font-weight: 400;
    color: var(--text-dark);
}

.map iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: var(--radius);
    display: block;
}


/* ============================================================
   11) FOOTER
   ============================================================ */

.footer {
    position: relative;
    background: var(--brown);
    color: var(--ivory);
    padding: 120px 40px 0;
}

/* Section color melts into brown at top of footer — wave shape is masked, color is driven by background-color */
.footer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 90px;
    background-color: var(--ivory);
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 90' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,45 C240,8 480,82 720,45 C960,8 1200,82 1440,45 L1440,0 L0,0 Z' fill='%23000'/%3E%3C/svg%3E") 0 0 / 100% 100% no-repeat;
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 90' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,45 C240,8 480,82 720,45 C960,8 1200,82 1440,45 L1440,0 L0,0 Z' fill='%23000'/%3E%3C/svg%3E") 0 0 / 100% 100% no-repeat;
    pointer-events: none;
}

/* Wave color follows the section directly above the footer */
.pricing-section:not(.pricing-alt) + .footer::before,
.pricing-section.pricing-alt + .service-cta + .footer::before {
    background-color: var(--cream);
}

@media (min-width: 961px) {
    .footer {
        padding-top: 160px;
    }

    .footer::before {
        height: 140px;
        -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 140' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,70 C240,5 480,135 720,70 C960,5 1200,135 1440,70 L1440,0 L0,0 Z' fill='%23000'/%3E%3C/svg%3E") 0 0 / 100% 100% no-repeat;
        mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 140' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,70 C240,5 480,135 720,70 C960,5 1200,135 1440,70 L1440,0 L0,0 Z' fill='%23000'/%3E%3C/svg%3E") 0 0 / 100% 100% no-repeat;
    }
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr 0.9fr 1.8fr 0.8fr;
    gap: 56px 48px;
    max-width: var(--max-w);
    margin: 0 auto;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-inner > * {
    min-width: 0;
}

/* Brand column */
.footer-name {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 2.4rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--cream);
    margin-bottom: 6px;
    line-height: 1.1;
}

.footer-sub {
    font-size: 0.6rem;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    color: var(--ivory);
    font-weight: 400;
    margin-bottom: 28px;
    white-space: nowrap;
}

.footer-instagram {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ivory);
    font-size: 0.78rem;
    font-weight: 300;
    letter-spacing: 0.04em;
    transition: color 0.25s;
}

.footer-instagram:hover {
    color: var(--cream);
}

.footer-instagram-icon {
    width: 32px;
    height: 32px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.25s;
}

.footer-instagram:hover .footer-instagram-icon {
    border-color: rgba(255, 255, 255, 0.6);
}

.footer-socials {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

@media (max-width: 1200px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px 32px;
    }

    .footer-inner > *:nth-child(even) {
        text-align: right;
    }

    .footer-socials {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* Column headings */
.footer h3 {
    font-family: var(--font-body);
    font-size: 0.58rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ivory);
    margin-bottom: 20px;
}

/* Contact column */
.footer-contact p,
.footer-contact a {
    font-size: 0.84rem;
    color: var(--ivory);
    margin-bottom: 5px;
    font-weight: 300;
    line-height: 1.65;
    display: block;
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: rgba(255, 255, 255, 0.363);
}

/* Quick booking pills */
.footer-book-pills {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
}

.footer-pill {
    display: block;
    padding: 6px 10px;
    border: 1px solid rgba(242, 237, 226, 0.28);
    border-radius: 100px;
    font-size: 0.74rem;
    letter-spacing: 0.04em;
    color: var(--ivory);
    font-weight: 300;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    background: rgba(242, 237, 226, 0.04);
    transition: background 0.22s, border-color 0.22s, color 0.22s;
}

.footer-pill:hover {
    background: rgba(242, 237, 226, 0.1);
    border-color: rgba(242, 237, 226, 0.55);
    color: var(--cream);
}

@media (max-width: 600px) {
    .footer-book-pills {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-pill {
        font-size: 0.7rem;
        letter-spacing: 0.02em;
        padding: 5px 8px;
    }
}

@media (max-width: 370px) {
    .footer-pill {
        font-size: 0.64rem;
        letter-spacing: 0.01em;
        padding: 5px 6px;
    }
}

/* Pages nav column */
.footer-nav {
    text-align: right;
}

.footer-nav a {
    display: block;
    font-size: 0.84rem;
    color: var(--ivory);
    margin-bottom: 10px;
    font-weight: 300;
    letter-spacing: 0.01em;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: rgba(255, 255, 255, 0.363);
}

/* Bottom bar */
.footer-bottom {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 22px 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.18);
    font-weight: 300;
    letter-spacing: 0.02em;
}

/* Back to top button */
.back-to-top {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    background: transparent;
    color: rgba(255, 255, 255, 0.36);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: border-color 0.22s, color 0.22s, background 0.22s;
}

.back-to-top:hover {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--cream);
    background: rgba(255, 255, 255, 0.06);
}


/* ============================================================
   12) PAGE HERO (interior pages)
   ============================================================ */

.page-hero {
    position: relative;
    background: var(--brown);
    text-align: center;
    padding: clamp(140px, 18vw, 200px) clamp(16px, 2vw, 32px) clamp(100px, 14vw, 150px);
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 90px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 90' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,50 C240,10 480,90 720,50 C960,10 1200,90 1440,50 L1440,90 L0,90 Z' fill='%23FAF8F2'/%3E%3C/svg%3E") 0 0 / 100% 100% no-repeat;
    pointer-events: none;
}

@media (min-width: 961px) {
    .page-hero {
        padding-bottom: 180px;
    }

    .page-hero::after {
        height: 140px;
        background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 140' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,70 C240,5 480,135 720,70 C960,5 1200,135 1440,70 L1440,140 L0,140 Z' fill='%23FAF8F2'/%3E%3C/svg%3E") 0 0 / 100% 100% no-repeat;
    }
}

/* Variant that bleeds into ivory instead of cream */
.page-hero--ivory::after {
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 90' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,50 C240,10 480,90 720,50 C960,10 1200,90 1440,50 L1440,90 L0,90 Z' fill='%23F2EDE2'/%3E%3C/svg%3E") 0 0 / 100% 100% no-repeat;
}

@media (min-width: 961px) {
    .page-hero--ivory::after {
        background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 140' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,70 C240,5 480,135 720,70 C960,5 1200,135 1440,70 L1440,140 L0,140 Z' fill='%23F2EDE2'/%3E%3C/svg%3E") 0 0 / 100% 100% no-repeat;
    }
}

.page-hero .eyebrow {
    color: rgba(242, 237, 226, 0.5);
    margin-bottom: 20px;
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--ivory);
    margin: 0 0 24px;
}

.page-hero h1 em {
    font-style: italic;
}

.page-hero-sub {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(242, 237, 226, 0.55);
    font-weight: 300;
    max-width: 460px;
    margin: 0 auto;
    line-height: 1.7;
}


/* ============================================================
   13) PAGE HERO ACTIONS
   ============================================================ */

.page-hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px;
}

.hero-action-btn {
    display: inline-block;
    background: var(--ivory);
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 13px 32px;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: background 0.22s var(--ease), color 0.22s var(--ease), border-color 0.22s var(--ease), box-shadow 0.22s var(--ease);
}

.hero-action-btn:hover {
    background: var(--brown);
    color: var(--cream);
    border-color: var(--ivory);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
}

.hero-action-btn--outline {
    background: transparent;
    border: 1px solid rgba(242, 237, 226, 0.45);
    color: rgba(242, 237, 226, 0.85);
    transition: background 0.22s var(--ease), border-color 0.22s var(--ease), color 0.22s var(--ease), box-shadow 0.22s var(--ease);
}

.hero-action-btn--outline:hover {
    background: var(--ivory);
    border-color: var(--ivory);
    color: var(--text-dark);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
}


/* ============================================================
   14) PRICING SECTIONS
   ============================================================ */

.pricing-section {
    background: var(--cream);
    padding: clamp(80px, 10vw, 130px) clamp(16px, 4vw, 64px);
}

.pricing-section.pricing-alt {
    background: var(--ivory);
}

.pricing-section-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: clamp(40px, 8vw, 120px);
    align-items: start;
}

.pricing-header {
    position: sticky;
    top: 100px;
}

.pricing-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 2.8vw, 2.6rem);
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.2;
    margin: 12px 0 16px;
}

.pricing-header > p {
    font-family: var(--font-body);
    font-size: 0.86rem;
    color: var(--text-mid);
    font-weight: 300;
    line-height: 1.7;
}

.price-list {
    list-style: none;
}

.price-item {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 17px 0;
    border-bottom: 1px solid var(--beige);
}

.price-item:first-child {
    border-top: 1px solid var(--beige);
}

.price-label {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-shrink: 0;
}

.price-name {
    font-family: var(--font-body);
    font-size: 0.93rem;
    font-weight: 400;
    color: var(--text-dark);
}

.price-duration {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: 300;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.price-dots {
    flex: 1;
    border-bottom: 1px dotted var(--beige);
    margin-bottom: 5px;
    min-width: 16px;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--text-dark);
    flex-shrink: 0;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

/* Staggered price reveal — amount fades in after its row */
[data-reveal] .price-amount {
    opacity: 0;
    transition: opacity 0.4s ease-out 0.22s;
}

[data-reveal].is-visible .price-amount {
    opacity: 1;
}

.pricing-section-cta {
    margin-top: 40px;
    grid-column: 2;
}

@media (max-width: 760px) {
    .pricing-section-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .pricing-header {
        position: static;
    }

    .pricing-section-cta {
        grid-column: 1;
    }
}


/* ============================================================
   15) CONTACT FORM & VALIDATION
   ============================================================ */

.contact-section {
    background: var(--cream);
    padding: clamp(80px, 10vw, 130px) clamp(16px, 4vw, 64px);
}

.contact-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: clamp(40px, 8vw, 120px);
    align-items: start;
}

.contact-info {
    position: sticky;
    top: 100px;
}

.contact-info h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 2.8vw, 2.6rem);
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.2;
    margin: 12px 0 16px;
}

.contact-intro {
    font-size: 0.86rem;
    color: var(--text-mid);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 36px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-detail-label {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brown);
    font-weight: 400;
    min-width: 56px;
    padding-top: 2px;
    flex-shrink: 0;
}

.contact-detail-value {
    font-size: 0.88rem;
    color: var(--text-dark);
    font-weight: 300;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.form-row--2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field label {
    font-size: 0.7rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--brown);
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-optional {
    font-size: 0.65rem;
    letter-spacing: 0.05em;
    color: var(--text-light);
    font-style: italic;
    text-transform: none;
}

.form-field input,
.form-field textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--beige);
    padding: 10px 0;
    font-family: var(--font-body);
    font-size: 0.93rem;
    font-weight: 300;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.2s;
    resize: none;
}

.form-field input:focus,
.form-field textarea:focus {
    border-bottom-color: var(--text-dark);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: var(--text-light);
}

.form-submit {
    align-self: flex-start;
    background: var(--brown);
    color: var(--ivory);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 36px;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: background 0.2s, opacity 0.2s;
    margin-top: 4px;
}

.form-submit:hover:not(:disabled) {
    background: var(--brown-light);
}

.form-submit--sent {
    opacity: 0.55;
    cursor: default;
}

/* Validation error states */
.field-error {
    border-bottom-color: #c94b4b !important;
}

.field-error:focus {
    border-bottom-color: #c94b4b;
    box-shadow: 0 6px 12px -8px rgba(201, 75, 75, 0.4);
}

.field-error + label,
.form-field:has(.field-error) label {
    color: #c94b4b;
}

.form-error-text {
    font-size: 0.7rem;
    color: #c94b4b;
    margin-top: 4px;
}

@media (max-width: 760px) {
    .contact-inner {
        grid-template-columns: 180px 1fr;
        gap: 24px;
    }

    .contact-info {
        position: static;
    }

    .contact-detail {
        flex-direction: column;
        gap: 4px;
    }

    .form-row--2col {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

@media (max-width: 480px) {
    .contact-inner {
        grid-template-columns: 130px 1fr;
        gap: 16px;
    }
}

@media (max-width: 380px) {
    .contact-inner {
        grid-template-columns: 110px 1fr;
        gap: 12px;
    }
}


/* ============================================================
   16) INJECTABLE CARDS & DETAILS
   ============================================================ */

.injectables-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.injectable-card {
    background: var(--cream);
    border: 1px solid var(--beige);
    border-top: 2px solid var(--brown);
    border-radius: var(--radius);
    padding: clamp(24px, 3vw, 36px);
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
    box-shadow: 0 1px 16px rgba(109, 101, 91, 0.05);
}

.injectable-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(109, 101, 91, 0.11);
}

.injectable-card-top {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-bottom: 20px;
}

.injectable-card h3 {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brown);
}

.injectable-price {
    font-family: var(--font-display);
    font-size: clamp(2rem, 2.8vw, 2.6rem);
    font-weight: 300;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1;
    white-space: nowrap;
}

.injectable-price span {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 300;
    font-style: normal;
    color: var(--text-light);
    letter-spacing: 0.06em;
}

.injectable-desc {
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 1.7;
    font-weight: 300;
    padding-top: 12px;
}

.injectable-details {
    list-style: none;
    display: flex;
    flex-direction: column;
    flex: 1;
    border-top: 1px solid var(--beige);
}

.injectable-details li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 10px 0;
    border-bottom: 1px dashed color-mix(in srgb, var(--beige) 70%, transparent);
    font-size: 0.82rem;
    color: var(--text-mid);
    font-weight: 300;
    gap: 12px;
}

.injectable-details li:last-child {
    border-bottom: none;
}

.detail-label {
    font-size: 0.63rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brown-light);
    font-weight: 500;
    flex-shrink: 0;
}

.injectable-book {
    display: block;
    width: 100%;
    text-align: center;
    background: transparent;
    color: var(--brown);
    border: 1px solid var(--brown);
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    padding: 13px 20px;
    border-radius: 999px;
    transition: background 0.22s var(--ease), color 0.22s var(--ease);
    margin-top: 20px;
}

.injectable-book:hover {
    background: var(--brown);
    color: var(--cream);
}


/* ============================================================
   17) EXPECT GRID
   ============================================================ */

.expect-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.expect-item h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--beige);
}

.expect-item ul {
    list-style: none;
    display: flex;
    flex-direction: column;
}

.expect-item li {
    font-size: 0.87rem;
    color: var(--text-mid);
    font-weight: 300;
    padding: 9px 0;
    border-bottom: 1px solid var(--beige);
    line-height: 1.5;
}

.expect-item p {
    font-size: 0.87rem;
    color: var(--text-mid);
    font-weight: 300;
    line-height: 1.75;
}


/* ============================================================
   18) DETAILS GRID
   ============================================================ */

.details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.detail-item {
    padding: 24px 24px 24px 0;
    border-top: 1px solid var(--beige);
}

/* Remove top border for second row items (seamless look) */
.detail-item:nth-child(n+4) {
    border-top-color: transparent;
}

.detail-item h4 {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brown);
    margin-bottom: 10px;
}

.detail-item p {
    font-size: 0.87rem;
    color: var(--text-mid);
    font-weight: 300;
    line-height: 1.65;
}


/* ============================================================
   18.5) BEFORE & AFTER DIPTYCH
   ============================================================ */

.before-after-grid {
    --ba-ratio: 3 / 4;
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(48px, 6vw, 80px);
}

.before-after-grid.is-double {
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 4.5vw, 64px);
}

/* Single-pair full-width: shorter photos on desktop so it isn't a wall of face */
@media (min-width: 761px) {
    .before-after-grid:not(.is-double) {
        --ba-ratio: 1 / 1;
    }
}

.before-after-pair {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.before-after-pair-head {
    display: flex;
    align-items: baseline;
    gap: 14px;
}

.before-after-pair-num {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--brown);
    line-height: 1;
}

.before-after-pair-rule {
    flex: 1;
    height: 1px;
    background: var(--beige);
    transform: translateY(-3px);
}

.before-after-pair-tag {
    font-family: var(--font-body);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-light);
}

.before-after-diptych {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(14px, 1.8vw, 24px);
    position: relative;
}

.before-after-frame {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background: var(--beige);
    box-shadow: 0 1px 0 var(--beige), 0 18px 38px -28px rgba(26, 24, 20, 0.35);
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.before-after-pair:hover .before-after-frame {
    transform: translateY(-2px);
    box-shadow: 0 1px 0 var(--beige), 0 24px 48px -28px rgba(26, 24, 20, 0.42);
}

.before-after-frame img {
    width: 100%;
    height: 100%;
    aspect-ratio: var(--ba-ratio);
    object-fit: cover;
    display: block;
    transition: transform 0.9s var(--ease);
}

.before-after-pair:hover .before-after-frame img {
    transform: scale(1.02);
}

.before-after-frame-label {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cream);
    background: rgba(26, 24, 20, 0.42);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 5px 11px;
    border-radius: 999px;
    pointer-events: none;
}

.before-after-frame--after .before-after-frame-label {
    background: rgba(58, 75, 95, 0.62);
}

.before-after-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-top: 4px;
}

.before-after-info-title {
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 1.4vw, 1.2rem);
    font-weight: 400;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.3;
    letter-spacing: 0.005em;
}

.before-after-info-meta {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-light);
}


/* ============================================================
   19) FAQ ACCORDION
   ============================================================ */

.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-top: 1px solid var(--beige);
}

.faq-item:last-child {
    border-bottom: 1px solid var(--beige);
}

.faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    font-family: var(--font-body);
    font-size: 0.93rem;
    font-weight: 400;
    color: var(--text-dark);
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.1rem;
    color: var(--brown);
    flex-shrink: 0;
    transition: transform 0.2s var(--ease);
    line-height: 1;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
    color: #b94040;
}

.faq-item p {
    font-size: 0.88rem;
    color: var(--text-mid);
    font-weight: 300;
    line-height: 1.75;
    padding-bottom: 20px;
    max-width: 680px;
}


/* ============================================================
   20) SERVICE CTA
   ============================================================ */

.service-cta {
    background: var(--ivory);
    padding: clamp(80px, 10vw, 130px) clamp(16px, 4vw, 64px);
    text-align: center;
}

/* Auto-alternate: if previous section is ivory, flip CTA to cream */
.pricing-section.pricing-alt + .service-cta {
    background: var(--cream);
}

.service-cta-inner {
    max-width: 560px;
    margin: 0 auto;
}

.service-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    color: var(--text-dark);
    margin: 12px 0 16px;
    line-height: 1.15;
}

.service-cta h2 em {
    font-style: italic;
}

.service-cta-inner > p {
    font-size: 0.9rem;
    color: var(--text-mid);
    font-weight: 300;
    margin-bottom: 36px;
    line-height: 1.7;
}

.service-cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.service-cta-btn {
    display: inline-block;
    background: var(--brown);
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 36px;
    border-radius: 999px;
    transition: background 0.2s;
}

.service-cta-btn:hover {
    background: var(--brown-light);
}

.service-cta-btn--outline {
    background: transparent;
    border: 1px solid var(--brown);
    color: var(--brown);
}

.service-cta-btn--outline:hover {
    background: var(--brown-light);
    color: var(--cream);
}


/* ============================================================
   21) SERVICE FEATURE ROWS
   ============================================================ */

.svc-row {
    background: var(--cream);
    padding: clamp(80px, 10vw, 140px) clamp(16px, 4vw, 64px);
}

.svc-row--alt {
    background: var(--ivory);
}

.svc-row-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(48px, 7vw, 120px);
    align-items: center;
}

.svc-row-media {
    display: flex;
    justify-content: center;
}

.svc-media-image {
    width: 100%;
    max-width: clamp(400px, 28vw, 580px);
    aspect-ratio: 4/4;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.4s var(--ease);
}

.svc-media-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: var(--beige);
    border-radius: 18px;
}

.svc-media-placeholder img,
.svc-media-placeholder video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.svc-row-content {
    display: flex;
    flex-direction: column;
    padding-left: clamp(30px, 5vw, 40px);
}

.svc-row-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.2vw, 3.8rem);
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.12;
    margin: 12px 0 20px;
}

.svc-row-content > p {
    font-size: clamp(0.9rem, 1.05vw, 1.05rem);
    color: var(--text-mid);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 520px;
}

.svc-row-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .svc-row {
        padding: 60px clamp(16px, 4vw, 40px);
    }

    .svc-row-inner {
        gap: clamp(24px, 4vw, 52px);
    }
}

@media (max-width: 850px) {
    .svc-row {
        padding: 48px 20px;
    }

    .svc-row-actions .services-cta-btn {
        text-align: center;
        font-size: 0.7rem;
        padding: 10px 16px;
    }
}

@media (max-width: 640px) {
    .svc-row-inner {
        gap: 16px;
        align-items: start;
    }

    .svc-media-placeholder {
        aspect-ratio: 1 / 1;
    }

    .svc-row-content h2 {
        font-size: 1.25rem;
        margin: 6px 0 10px;
    }

    .svc-row-content > p {
        font-size: 0.8rem;
        line-height: 1.6;
        margin-bottom: 16px;
        max-width: none;
    }

    .svc-row-actions {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 500px) {
    .svc-row-inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .svc-row-inner--flip .svc-row-media {
        order: -1;
    }

    .svc-media-placeholder {
        aspect-ratio: 4 / 3;
    }

    .svc-row-content h2 {
        font-size: 1.7rem;
        margin: 10px 0 14px;
    }

    .svc-row-content > p {
        font-size: 0.88rem;
        margin-bottom: 22px;
    }

    .svc-row-actions {
        flex-direction: row;
    }

    .svc-row-actions .services-cta-btn {
        font-size: 0.78rem;
        padding: 12px 22px;
    }
}


/* ============================================================
   22) MORPHEUS8 ACCORDION
   ============================================================ */

.morph-options {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.morph-option-group {
    border-top: 1px solid var(--beige);
    min-width: 0;
}

.morph-option-group:last-child {
    border-bottom: 1px solid var(--beige);
}

.morph-option-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 0;
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.morph-option-summary::-webkit-details-marker {
    display: none;
}

.morph-option-summary-inner {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.morph-option-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brown);
    background: var(--ivory);
    padding: 4px 12px;
    border-radius: 999px;
    align-self: flex-start;
}

.morph-option-summary h3 {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 1.6vw, 1.5rem);
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.2;
}

.morph-option-summary p {
    font-size: 0.84rem;
    color: var(--text-mid);
    font-weight: 300;
    line-height: 1.6;
}

.morph-option-toggle {
    font-size: 1.2rem;
    color: var(--brown);
    flex-shrink: 0;
    transition: transform 0.25s var(--ease);
    line-height: 1;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.morph-option-group[open] > summary .morph-option-toggle {
    transform: rotate(45deg);
    color: #b94040;
}

.morph-option-body {
    padding-bottom: 32px;
    width: 100%;
    min-width: 0;
}

.morph-option-body .injectables-grid {
    grid-template-columns: 1fr 1fr;
    width: 100%;
}

/* Nested sub-accordions — boxed inside parent body */
.morph-option-body > .morph-option-group {
    background: var(--ivory);
    border-radius: 10px;
    border: 1px solid var(--beige);
    overflow: hidden;
    margin-bottom: 8px;
}

.morph-option-body > .morph-option-group:last-child {
    margin-bottom: 0;
}

.morph-option-body > .morph-option-group .morph-option-summary {
    padding: 18px 20px;
}

.morph-option-body > .morph-option-group .morph-option-summary h3 {
    font-size: clamp(0.95rem, 1.2vw, 1.15rem);
}

.morph-option-body > .morph-option-group .morph-option-badge {
    background: var(--beige);
}

.morph-option-body > .morph-option-group .morph-option-body {
    padding: 0 20px 20px;
}

@media (max-width: 500px) {
    .morph-option-summary {
        padding: 20px 0;
    }

    .morph-option-body .injectables-grid {
        gap: 10px;
    }

    .morph-option-body .injectable-card {
        padding: 16px 12px;
    }

    .morph-option-body .injectable-price {
        font-size: 1.5rem;
    }

    .morph-option-body .injectable-book {
        padding: 10px 12px;
        font-size: 0.62rem;
    }
}


/* ============================================================
   23) BEFORE & AFTER SLIDER
   ============================================================ */

.ba-section {
    background: var(--cream);
    padding: clamp(80px, 10vw, 130px) clamp(16px, 4vw, 64px);
}

.ba-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.ba-header {
    text-align: center;
    max-width: 560px;
}

.ba-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    color: var(--text-dark);
    margin: 12px 0 16px;
    line-height: 1.15;
}

.ba-subtext {
    font-size: 0.84rem;
    color: var(--text-light);
    font-weight: 300;
}

.ba-wrap {
    width: 100%;
    max-width: 720px;
}

.ba-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
    -webkit-user-select: none;
    touch-action: none;
    --split: 50%;
    box-shadow: 0 8px 48px rgba(0, 0, 0, 0.13);
}

.ba-before,
.ba-after {
    position: absolute;
    inset: 0;
}

.ba-before img,
.ba-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.ba-before {
    z-index: 2;
    clip-path: inset(0 calc(100% - var(--split)) 0 0);
}

.ba-after {
    z-index: 1;
}

.ba-label {
    position: absolute;
    top: 14px;
    z-index: 4;
    font-family: var(--font-body);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(26, 24, 20, 0.42);
    padding: 5px 13px;
    border-radius: 999px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    pointer-events: none;
}

.ba-label--left {
    left: 14px;
}

.ba-label--right {
    right: 14px;
    z-index: 4;
}

.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--split);
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
}

.ba-line {
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
}

.ba-circle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 18px rgba(0, 0, 0, 0.22);
    color: var(--brown);
    pointer-events: all;
    cursor: ew-resize;
    flex-shrink: 0;
    transition: transform 0.15s var(--ease), box-shadow 0.15s var(--ease);
}

.ba-container:active .ba-circle,
.ba-container.ba-dragging .ba-circle {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.28);
}


/* ============================================================
   24) RESPONSIVE OVERRIDES
   ============================================================ */

/* --- Tablet: 960px --- */
@media (max-width: 820px) {

    .site-header {
        padding: 18px 24px;
    }

    .header-inner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        align-items: center;
    }

    .main-nav {
        gap: 14px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .about {
        padding: 80px 32px;
    }

    .about-inner {
        gap: 40px;
    }

    .services {
        padding: 80px 20px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .more-services {
        padding: 80px 20px;
    }

    .more-grid {
        grid-template-columns: 1fr 1fr;
    }

    .location {
        padding: 80px 20px;
    }

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

    .footer {
        padding: 80px 24px 0;
    }
}

/* --- Compact: 700px --- */
@media (max-width: 700px) {
    .about-inner,
    .about-inner--flip {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about-image {
        aspect-ratio: 1;
    }

    .about-heading {
        font-size: 1.6rem;
        margin-bottom: 14px;
    }

    .about-body {
        font-size: 0.9rem;
        line-height: 1.7;
    }
}

/* --- Service page grids: 760px --- */
@media (max-width: 760px) {
    .injectables-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .expect-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .expect-item:last-child {
        grid-column: 1 / -1;
    }

    .details-grid {
        grid-template-columns: 1fr 1fr;
    }

    .detail-item:nth-child(n+4) {
        border-top-color: var(--beige);
    }

    .detail-item:nth-child(n+3) {
        border-top-color: transparent;
    }

    .before-after-grid.is-double {
        grid-template-columns: 1fr;
        gap: clamp(40px, 6vw, 64px);
    }
}

/* --- Mobile: 500px --- */
@media (max-width: 500px) {
    .hero-title {
        font-size: 2.3rem;
    }

    .about {
        padding: 56px 16px;
    }

    .about-inner {
        gap: 20px;
    }

    .about-image {
        aspect-ratio: 1;
        border-radius: 12px;
    }

    .about-heading {
        font-size: 1.5rem;
        line-height: 1.25;
    }

    .about-body {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .services {
        padding: 56px 16px;
    }

    .service {
        padding: 20px 0;
    }

    .service h3 {
        font-size: 1.1rem;
    }

    .service p {
        font-size: 0.82rem;
    }

    .more-services {
        padding: 56px 16px;
    }

    .more-item {
        padding: 20px 0;
    }

    .more-num {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .more-item h3 {
        font-size: 1.05rem;
    }

    .location {
        padding: 56px 16px;
    }

    .footer-name {
        font-size: 2rem;
    }
}

/* --- Service page cards: 480px --- */
@media (max-width: 480px) {
    .injectables-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .injectable-card {
        padding: 24px 18px;
    }

    .expect-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .expect-item {
        padding: 22px 16px;
    }

    .details-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .detail-item {
        padding: 20px 16px;
    }

    .before-after-grid {
        gap: 40px;
    }

    .before-after-diptych {
        gap: 10px;
    }

    .before-after-frame-label {
        font-size: 0.55rem;
        letter-spacing: 0.18em;
        padding: 4px 9px;
        top: 9px;
        left: 9px;
    }

    .before-after-info-title {
        font-size: 1rem;
    }

    .before-after-info-meta {
        font-size: 0.65rem;
    }
}

/* --- Very small phones: 380px --- */
@media (max-width: 380px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.08;
        letter-spacing: -0.02em;
    }
}
