/* ================= FONTS ================= */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

/* ================= VARIABLES ================= */
:root {
    --cream: #FAF8F2;
    --ivory: #F2EDE2;
    --beige: #E4DDD0;
    --brown-light: #9c948b;
    --brown: #6d655b;

    --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);
}

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

html {
    scroll-behavior: smooth;
}

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 */
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;
}

/* ================= 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;
}

/* ================= SCROLL REVEAL ================= */
[data-animate] {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.about-text[data-animate] {
    transition-delay: 0.12s;
}

.services-grid [data-animate]:nth-child(2) {
    transition-delay: 0.08s;
}

.services-grid [data-animate]:nth-child(3) {
    transition-delay: 0.16s;
}

.services-grid [data-animate]:nth-child(4) {
    transition-delay: 0.08s;
}

.services-grid [data-animate]:nth-child(5) {
    transition-delay: 0.16s;
}

.services-grid [data-animate]:nth-child(6) {
    transition-delay: 0.24s;
}

.more-grid [data-animate]:nth-child(2) {
    transition-delay: 0.08s;
}

.more-grid [data-animate]:nth-child(3) {
    transition-delay: 0.16s;
}

.more-grid [data-animate]:nth-child(4) {
    transition-delay: 0.24s;
}

/* ================= HEADER ================= */
.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);
}

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

.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;
}

/* ================= 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/hero.jpg") 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, 48vw, 860px);
}

.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 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);
}

/* ================= ABOUT ================= */
.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: 3 / 4;
}

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

.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);
}

/* ================= SERVICES ================= */
.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;
    text-decoration: none;
    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);
    color: var(--cream);
}

/* ================= SPECIALTY MARQUEE ================= */
.marquee-section {
    background: var(--brown);
    overflow: hidden;
    padding: 0;
    /* waves replace the straight edges */
}

/* Wave: ivory (services) melts into brown — mobile: 2 cycles */
.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 — mobile: 2 cycles */
.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;
}

/* Tablet: 3 cycles, taller */
@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");
    }
}

/* Desktop: 4 cycles, tallest */
@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 32s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.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%);
    }
}

/* ================= MORE SERVICES ================= */
.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;
}

.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 {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--brown);
    letter-spacing: 0.02em;
    transition: opacity 0.2s;
}

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

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

.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;
}

/* ================= FOOTER ================= */
.footer {
    position: relative;
    background: var(--brown);
    color: var(--ivory);
    padding: 120px 40px 40px;
    /* extra top padding for wave */
}

/* Ivory melts into brown (top of footer) */
.footer::before {
    content: '';
    position: absolute;
    top: -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,45 C240,8 480,82 720,45 C960,8 1200,82 1440,45 L1440,0 L0,0 Z' fill='%23F2EDE2'/%3E%3C/svg%3E") 0 0 / 100% 100% no-repeat;
    pointer-events: none;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    max-width: var(--max-w);
    margin: 0 auto 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--cream);
    margin-bottom: 4px;
}

.footer-sub {
    font-size: 0.65rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    line-height: 1.55;
}

.footer h3 {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 18px;
}

.footer p {
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
    font-weight: 300;
}

.footer a {
    color: rgba(255, 255, 255, 0.6);
    display: block;
    margin-bottom: 10px;
    font-size: 0.86rem;
    font-weight: 300;
    transition: color 0.2s;
}

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

.footer-bottom {
    max-width: var(--max-w);
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.25);
    font-weight: 300;
}

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

/* --- Desktop: deeper, more dramatic footer wave --- */
@media (min-width: 961px) {
    .footer {
        padding-top: 160px;
    }

    .footer::before {
        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,0 L0,0 Z' fill='%23F2EDE2'/%3E%3C/svg%3E") 0 0 / 100% 100% no-repeat;
    }
}

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

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

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

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

    .hero {
        padding: 60px 24px;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    /* ABOUT: keep 2-column side-by-side, tighten gap */
    .about {
        padding: 80px 32px;
    }

    .about-inner {
        gap: 40px;
    }

    /* SERVICES: 2×3 */
    .services {
        padding: 80px 20px;
    }

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

    /* MORE SERVICES: 2×2 */
    .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: 60px 20px 36px;
    }

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

/* --- 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;
    }
}

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

    /* ABOUT */
    .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: keep 2-col */
    .services {
        padding: 56px 16px;
    }

    .service {
        padding: 20px 0;
    }

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

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

    /* MORE SERVICES: keep 2×2 */
    .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;
    }
}


/* ================= 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;
    }
}

.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;
}

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

/* ================= 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;
    padding: 0;
    margin: 0;
}

.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;
}

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

    .pricing-header {
        position: static;
    }
}


/* ================= CONTACT FORM ================= */
.contact-section {
    background: var(--ivory);
    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;
}

/* Form */
.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;
}

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

    .contact-info {
        position: static;
    }

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

/* ================= 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;
    transition: background 0.2s, color 0.2s;
}

.hero-action-btn:hover {
    background: var(--cream);
}

.hero-action-btn--outline {
    background: transparent;
    border: 1px solid rgba(242, 237, 226, 0.45);
    color: rgba(242, 237, 226, 0.85);
}

.hero-action-btn--outline:hover {
    background: rgba(242, 237, 226, 0.12);
    color: var(--ivory);
}

/* ================= INJECTABLE CARDS ================= */
.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;
    margin-bottom: 0;
}

.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;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    flex: 1;
    border-top: 1px solid var(--beige);
    margin-top: 0;
}

.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);
}

/* ================= 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;
    padding: 0;
    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;
}

/* ================= 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);
}

.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;
}

/* ================= FAQ ================= */
.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);
}

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

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

.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);
    color: var(--cream);
}

/* ================= SERVICE PAGE RESPONSIVE ================= */
@media (max-width: 760px) {
    .injectables-grid {
        grid-template-columns: 1fr;
    }

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

    .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;
    }
}

@media (max-width: 500px) {
    .details-grid {
        grid-template-columns: 1fr;
    }

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

/* ================= MORPHEUS8 OPTION 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] .morph-option-toggle {
    transform: rotate(45deg);
}

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

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

@media (max-width: 900px) {
    .morph-option-body .injectables-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 500px) {
    .morph-option-body .injectables-grid {
        grid-template-columns: 1fr;
    }

    .morph-option-summary {
        padding: 20px 0;
    }
}


@media (max-width: 768px) {
    .main-nav {
        gap: 14px;
        /* tighter spacing between links */
        flex-wrap: nowrap;
        /* prevent wrapping to new line */
    }

    .main-nav a {
        font-size: 0.75rem;
        /* slightly smaller links */
    }

    .nav-book {
        padding: 6px 12px;
        /* smaller button */
        font-size: 0.68rem !important;
        white-space: nowrap;
        /* prevents "Book a Visit" breaking */
    }
}