/* ============================================================
   CNY Psychiatric NP Services - Stylesheet
   Colors derived from brand: sage green, dark navy, gold, cream
   ============================================================ */

:root {
    --sage:        #b8cfc7;
    --sage-light:  #d4e4de;
    --sage-pale:   #e8f0ec;
    --sage-bg:     #f2f7f5;
    --navy:        #1e3245;
    --navy-mid:    #2c4a63;
    --navy-light:  #3a6080;
    --gold:        #d4a054;
    --gold-hover:  #dfb06a;
    --gold-pale:   #f8f0e2;
    --cream:       #faf8f4;
    --cream-dark:  #f0ece3;
    --white:       #ffffff;
    --text:        #2d3436;
    --text-light:  #5f6c72;
    --text-muted:  #637072;
    --border:      #dce3e0;

    --gold-text:   #926c2a;

    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --container:   1140px;
    --radius:      16px;
    --radius-sm:   10px;
    --radius-lg:   24px;
    --radius-xl:   32px;
    --shadow:      0 4px 24px rgba(30, 50, 69, .06);
    --shadow-md:   0 8px 32px rgba(30, 50, 69, .08);
    --shadow-lg:   0 16px 56px rgba(30, 50, 69, .12);
    --shadow-glow: 0 8px 32px rgba(212, 160, 84, .2);
    --transition:  .35s cubic-bezier(.4, 0, .2, 1);
    --transition-slow: .6s cubic-bezier(.4, 0, .2, 1);
}

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

html {
    scroll-padding-top: 80px;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}
html.modal-open,
html.modal-open body {
    overflow: hidden;
    overscroll-behavior: none;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: var(--gold-text);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover { color: var(--gold); }

::selection {
    background: var(--sage);
    color: var(--navy);
}

/* ----- Skip Link ----- */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--navy);
    color: var(--white);
    padding: .75rem 1.5rem;
    z-index: 10000;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    font-weight: 500;
}
.skip-link:focus {
    left: 50%;
    transform: translateX(-50%);
}

/* ----- Utility ----- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-muted { color: var(--text-muted); font-size: .9rem; }
.hide-mobile { }

/* ----- Buttons ----- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    padding: .9rem 2.2rem;
    border-radius: 60px;
    font-family: var(--font-body);
    font-size: .95rem;
    font-weight: 500;
    letter-spacing: .01em;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}
.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: opacity var(--transition);
    background: linear-gradient(135deg, rgba(255,255,255,.15) 0%, transparent 100%);
}
.btn:hover::after { opacity: 1; }

.btn-icon { display: flex; align-items: center; }

.btn-primary {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}
.btn-primary:hover {
    background: var(--gold-hover);
    border-color: var(--gold-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-ghost {
    background: transparent;
    color: var(--navy);
    border-color: rgba(30, 50, 69, .2);
}
.btn-ghost:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
    transform: translateY(-2px);
}

.btn-ghost-light {
    background: transparent;
    color: rgba(255,255,255,.9);
    border-color: rgba(255,255,255,.3);
}
.btn-ghost-light:hover {
    background: rgba(255,255,255,.15);
    color: var(--white);
    border-color: rgba(255,255,255,.5);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}
.btn-white:hover {
    background: var(--cream);
    border-color: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,0,0,.15);
}

.btn-block { width: 100%; }
.btn-large { padding: 1.1rem 2.8rem; font-size: 1.05rem; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 248, 244, .45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: all var(--transition);
}
.site-header.scrolled {
    background: rgba(250, 248, 244, .85);
    border-bottom-color: var(--border);
    box-shadow: 0 1px 24px rgba(30, 50, 69, .06);
}

.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 88px;
    transition: height var(--transition);
}
.site-header.scrolled .nav-container {
    height: 88px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: .75rem;
    text-decoration: none;
    color: var(--navy);
}
.nav-logo img {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    object-fit: cover;
    border: none;
    background-color: rgba(208, 218, 216, .65);
    box-shadow: 0 2px 8px rgba(30, 50, 69, .12);
    transition: all var(--transition);
}
.site-header.scrolled .nav-logo img {
    width: 76px;
    height: 76px;
}
.nav-logo-text {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy);
    transition: font-size var(--transition);
}
.site-header.scrolled .nav-logo-text {
    font-size: 1.05rem;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: .15rem;
}
.nav-menu a {
    display: block;
    padding: .45rem .9rem;
    font-size: .88rem;
    font-weight: 500;
    color: var(--text-light);
    border-radius: 50px;
    transition: all var(--transition);
    text-decoration: none;
}
.nav-menu a:hover,
.nav-menu a.active {
    color: var(--navy);
    background: var(--sage-pale);
}

/* Portal dropdown */
.nav-dropdown {
    position: relative;
}
.nav-portal {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .45rem .9rem;
    font-family: var(--font-body);
    font-size: .88rem;
    font-weight: 500;
    color: var(--navy);
    background: none;
    border: 1.5px solid var(--border);
    border-radius: 50px;
    cursor: pointer;
    margin-left: .25rem;
    transition: all var(--transition);
}
.nav-portal:hover,
.nav-dropdown.open .nav-portal {
    border-color: var(--sage);
    background: var(--sage-pale);
}
.dropdown-chevron {
    transition: transform var(--transition);
    flex-shrink: 0;
}
.nav-dropdown.open .dropdown-chevron {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + .45rem);
    right: 0;
    white-space: nowrap;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    list-style: none;
    padding: .35rem;
    opacity: 0;
    visibility: hidden;
    transform-origin: top right;
    transform: translateY(-6px);
    transition: opacity .25s ease, visibility .25s ease, transform .25s cubic-bezier(.4, 0, .2, 1);
    z-index: 100;
}
.nav-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu li {
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity .2s ease, transform .2s ease;
}
.nav-dropdown.open .dropdown-menu li {
    opacity: 1;
    transform: translateY(0);
}
.nav-dropdown.open .dropdown-menu li:nth-child(1) {
    transition-delay: .06s;
}
.nav-dropdown.open .dropdown-menu li:nth-child(2) {
    transition-delay: .12s;
}
.dropdown-menu a {
    display: flex;
    align-items: center;
    padding: .55rem .85rem;
    font-size: .85rem;
    font-weight: 500;
    color: var(--text) !important;
    border-radius: 6px;
    transition: all var(--transition);
    text-decoration: none;
    background: none !important;
    border: none !important;
    margin: 0 !important;
}
.dropdown-menu a:hover {
    background: var(--sage-pale) !important;
    color: var(--navy) !important;
}
.dropdown-menu a svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-right: .45rem;
    color: var(--text-muted);
    transition: color var(--transition);
}
.dropdown-menu a:hover svg {
    color: var(--navy);
}

/* Contact card phone & fax */
.contact-card-phone-fax {
    flex-wrap: wrap;
}
.contact-phone-fax-details {
    width: 100%;
    display: flex;
    gap: .5rem;
    margin-top: .75rem;
    padding-top: .75rem;
    border-top: 1px solid var(--border);
}
.contact-detail-row {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .5rem .75rem;
    font-size: .88rem;
    font-weight: 600;
    color: var(--navy);
    background: var(--sage-pale);
    border-radius: 50px;
    text-decoration: none;
    transition: all var(--transition);
}
.contact-detail-row svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    opacity: .6;
}
a.contact-detail-row:hover {
    background: var(--sage);
}
a.contact-detail-row:hover svg {
    opacity: 1;
}

/* Contact card portal links */
.contact-card-portal {
    flex-wrap: wrap;
}
.contact-portal-links {
    width: 100%;
    display: flex;
    gap: .5rem;
    margin-top: .75rem;
    padding-top: .75rem;
    border-top: 1px solid var(--border);
}
.contact-portal-links a {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .5rem .75rem;
    font-size: .82rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all var(--transition);
    text-decoration: none;
}
.contact-portal-links a svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    margin-right: .3rem;
}
.contact-portal-links a:first-child {
    background: var(--sage-pale);
    color: var(--navy);
}
.contact-portal-links a:first-child:hover {
    background: var(--sage);
    color: var(--navy);
}
.contact-portal-links a:last-child {
    background: var(--navy);
    color: var(--white);
}
.contact-portal-links a:last-child:hover {
    background: var(--navy-mid);
    color: var(--white);
}

.nav-cta {
    background: var(--gold) !important;
    color: var(--white) !important;
    margin-left: .25rem !important;
    padding: .5rem 1.2rem !important;
}
.nav-cta:hover {
    background: var(--gold-hover) !important;
    color: var(--white) !important;
}

/* Hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    position: relative;
    z-index: 1001;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}
.nav-toggle:hover { background: var(--sage-pale); }

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all var(--transition);
    position: absolute;
    left: 12px;
}
.hamburger        { top: 21px; }
.hamburger::before { content: ''; top: -6px; }
.hamburger::after  { content: ''; top: 6px; }

.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after  { top: 0; transform: rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    background: linear-gradient(160deg, var(--cream) 0%, var(--sage-pale) 40%, var(--sage-light) 100%);
    overflow: hidden;
    padding: 88px 0 0;
}

/* Organic blobs */
.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.hero-blob {
    position: absolute;
    opacity: .08;
    transition: transform 0.8s ease;
}
.hero-blob-1 {
    width: 700px;
    height: 700px;
    top: -20%;
    right: -10%;
    fill: var(--sage);
    animation: blobFloat1 20s ease-in-out infinite;
}
.hero-blob-2 {
    width: 500px;
    height: 500px;
    bottom: -15%;
    left: -8%;
    fill: var(--gold);
    opacity: .06;
    animation: blobFloat2 25s ease-in-out infinite;
}
.hero-blob-3 {
    width: 300px;
    height: 300px;
    top: 35%;
    left: 15%;
    fill: var(--sage);
    opacity: .05;
    animation: blobFloat3 18s ease-in-out infinite;
}

@keyframes blobFloat1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33%      { transform: translate(20px, -30px) rotate(5deg); }
    66%      { transform: translate(-15px, 15px) rotate(-3deg); }
}
@keyframes blobFloat2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33%      { transform: translate(-20px, 20px) rotate(-4deg); }
    66%      { transform: translate(25px, -10px) rotate(6deg); }
}
@keyframes blobFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(15px, -20px) scale(1.05); }
}

/* Hero image - full bleed */
.hero-image {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}
.hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(30, 50, 69, .65) 0%,
        rgba(30, 50, 69, .4) 40%,
        rgba(30, 50, 69, .1) 75%,
        rgba(30, 50, 69, 0) 100%
    );
}
@media (max-width: 768px) {
    .hero-image::after {
        background: rgba(30, 50, 69, .5);
    }
}

.hero-content {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 3rem 0 8rem;
    min-height: calc(100vh - 88px);
    min-height: calc(100svh - 88px);
}

/* Hero text */
.hero-text {
    max-width: 620px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1.25rem;
}
.eyebrow-line {
    display: block;
    width: 40px;
    height: 2px;
    background: var(--sage-light);
}
.hero-eyebrow span:last-child {
    font-size: .85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--sage-light);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 5.5vw, 4.8rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 24px rgba(30, 50, 69, .5), 0 1px 4px rgba(30, 50, 69, .3);
}
.hero h1 em {
    font-style: italic;
    color: var(--gold);
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.12rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, .85);
    max-width: 500px;
    margin-bottom: 2.25rem;
    text-shadow: 0 1px 12px rgba(30, 50, 69, .4), 0 1px 3px rgba(30, 50, 69, .2);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* (hero-visual / hero-logo-wrap removed - using full-bleed hero image) */

/* Hero wave divider */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 3;
    color: var(--white);
    line-height: 0;
}
.hero-wave svg {
    width: 100%;
    height: 80px;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
    background: var(--white);
    padding: 2.5rem 0;
    position: relative;
    z-index: 4;
}
.trust-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--radius);
    transition: all var(--transition);
}
.trust-item:hover {
    background: var(--sage-bg);
}
.trust-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: var(--radius-sm);
    background: var(--sage-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    transition: all var(--transition);
}
.trust-item:hover .trust-icon {
    background: var(--gold);
    color: var(--white);
}
.trust-item strong {
    display: block;
    font-size: .9rem;
    font-weight: 600;
    color: var(--navy);
}
.trust-item span {
    font-size: .8rem;
    color: var(--text-muted);
}

/* ============================================================
   SECTION SHARED
   ============================================================ */
.section-eyebrow {
    font-size: .78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--gold-text);
    margin-bottom: .75rem;
}
.section-eyebrow-light { color: var(--gold-pale); }

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 4rem;
}
.section-header-left {
    text-align: left;
    max-width: none;
}
.section-header h2,
.about-text h2,
.hours-left h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 1rem;
}
.section-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================================
   SECTION WAVE DIVIDERS
   ============================================================ */
.section-wave {
    line-height: 0;
    margin-top: -1px;
}
.section-wave svg {
    width: 100%;
    height: 60px;
    display: block;
}
/* About (cream) → Services (sage-bg) */
.section-wave-sage {
    color: var(--sage-bg);
    background: var(--cream);
}
/* Services (sage-bg) → Rates (cream) */
.section-wave-cream {
    color: var(--cream);
    background: var(--sage-bg);
}
/* Rates (cream) → Approach (white) */
.section-wave-white {
    color: var(--white);
    background: var(--cream);
}
/* Approach (white) → Hours (sage-bg): reuses sage class but from white bg */
.section-wave-sage-from-white {
    color: var(--sage-bg);
    background: var(--white);
}
/* Hours (sage-bg) → CTA (navy) */
.section-wave-cta {
    color: var(--sage-bg);
    background: transparent;
    position: relative;
    z-index: 2;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
    padding: 7rem 0;
    background: var(--cream);
}

.about-layout {
    display: grid;
    grid-template-columns: .85fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-visual {
    position: relative;
}
.about-img-frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--sage-pale);
    padding: 1.25rem;
    z-index: 2;
    box-shadow: var(--shadow-lg);
}
.about-img-frame img {
    width: 100%;
    border-radius: var(--radius-lg);
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center top;
}
.about-accent-shape {
    position: absolute;
    width: 85%;
    height: 90%;
    border-radius: var(--radius-xl);
    background: linear-gradient(145deg, var(--sage) 0%, var(--gold) 100%);
    opacity: .12;
    top: 1.5rem;
    left: 2.5rem;
    z-index: 1;
    transition: all var(--transition-slow);
}
.about-visual:hover .about-accent-shape {
    top: 2rem;
    left: 3rem;
    opacity: .18;
}

.about-text .section-eyebrow { margin-bottom: .75rem; }

.about-quote {
    margin: 1.75rem 0;
    padding-left: 1.5rem;
    border-left: 3px solid var(--gold);
}
.about-quote p {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--navy);
}

.about-body p {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
}
.about-body p:last-child { margin-bottom: 2rem; }

/* ============================================================
   SERVICES
   ============================================================ */
.services {
    padding: 7rem 0;
    background: var(--sage-bg);
    position: relative;
}

/* Horizontal carousel */
.carousel-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: .75rem;
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 1rem .5rem 2rem;
    margin: 0 -.5rem;
}
.carousel-track::-webkit-scrollbar { display: none; }

.carousel-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 2.25rem 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
}
.carousel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sage) 0%, var(--gold) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.carousel-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--sage);
}
.carousel-card:hover::before {
    transform: scaleX(1);
}

/* Card accent bar */
.carousel-card-accent {
    width: 32px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--sage), var(--gold));
    opacity: .35;
    margin-bottom: 1rem;
    transition: all var(--transition);
}
.carousel-card:hover .carousel-card-accent {
    width: 48px;
    opacity: .7;
}

/* Card icon */
.carousel-card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    background: var(--sage-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    margin-bottom: 1.25rem;
    transition: all var(--transition);
}
.carousel-card-img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}
.carousel-card:hover .carousel-card-icon {
    background: var(--navy);
    color: var(--white);
    transform: scale(1.06);
}

/* Card typography */
.carousel-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: .6rem;
}
.carousel-card p {
    color: var(--text-light);
    font-size: .93rem;
    line-height: 1.75;
    flex: 1;
}

/* CTA card */
.carousel-card-cta {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    border-color: transparent;
    justify-content: center;
}
.carousel-card-cta::before { display: none; }
.carousel-card-cta:hover {
    border-color: transparent;
}
.carousel-card-cta h3 { color: var(--white); }
.carousel-card-cta p { color: var(--sage-light); }
.carousel-card-cta .btn-white {
    align-self: flex-start;
    margin-top: 1rem;
}

/* Arrow buttons */
.carousel-arrow {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: var(--white);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
    z-index: 2;
}
.carousel-arrow:hover:not(:disabled) {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
    box-shadow: var(--shadow-md);
}
.carousel-arrow:disabled {
    opacity: .3;
    cursor: default;
}

/* Dot indicators */
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: .5rem;
    padding: 0 calc(44px + .75rem);
}
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: .5rem;
}
.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: var(--border);
    cursor: pointer;
    transition: all var(--transition);
    padding: 0;
}
.carousel-dot.active {
    background: var(--navy);
    width: 24px;
    border-radius: 4px;
}

/* Pause/play toggle */
.carousel-pause {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: var(--white);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    margin-left: .75rem;
    flex-shrink: 0;
}
.carousel-pause:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}
.carousel-pause .carousel-play-icon { display: none; }
.carousel-pause.paused .carousel-pause-icon { display: none; }
.carousel-pause.paused .carousel-play-icon { display: block; }

/* ============================================================
   RATES
   ============================================================ */
.rates {
    padding: 7rem 0;
    background: var(--cream);
}
.fee-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.fee-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: all var(--transition);
}
.fee-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--sage);
}
.fee-label {
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--gold-text);
    margin-bottom: .5rem;
}
.fee-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: .75rem;
    line-height: 1.3;
}
.fee-card > .fee-price {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .75rem;
}
.fee-desc {
    font-size: .88rem;
    color: var(--text-light);
    line-height: 1.6;
}
.fee-options {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-bottom: .75rem;
}
.fee-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .5rem .75rem;
    background: var(--sage-pale);
    border-radius: var(--radius-sm);
}
.fee-duration {
    font-size: .9rem;
    color: var(--text);
}
.fee-option .fee-price {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
}
.fee-callout {
    margin-top: 2rem;
    padding: 1.5rem 2rem;
    border-left: 4px solid var(--gold);
    background: var(--white);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}
.fee-callout p {
    font-size: .9rem;
    color: var(--text);
    line-height: 1.7;
    font-style: normal;
    display: flex;
    align-items: flex-start;
    gap: .75rem;
}
.fee-callout-icon {
    flex-shrink: 0;
    margin-top: .15rem;
    opacity: .4;
}
.fee-callout p + p {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

/* ============================================================
   APPROACH
   ============================================================ */
.approach {
    padding: 7rem 0;
    background: var(--white);
}

.approach-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 3rem;
}

.approach-step {
    position: relative;
    padding: 0 1.5rem;
}

.approach-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.approach-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--sage);
    line-height: 1;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--sage-pale);
    position: relative;
    z-index: 2;
    transition: all var(--transition);
}
.approach-step:hover .approach-num {
    background: var(--gold);
    color: var(--white);
    transform: scale(1.1);
}

.approach-line {
    position: absolute;
    top: 32px;
    left: calc(50% + 32px);
    right: calc(-50% + 32px);
    height: 2px;
    background: linear-gradient(90deg, var(--sage) 0%, var(--border) 100%);
    z-index: 1;
}

.approach-content {
    text-align: center;
}
.approach-content h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: .65rem;
}
.approach-content p {
    color: var(--text-light);
    font-size: .93rem;
    line-height: 1.7;
}

/* ============================================================
   HOURS
   ============================================================ */
.hours-section {
    padding: 7rem 0;
    background: var(--sage-bg);
}

.hours-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hours-left h2 { margin-bottom: .75rem; }
.hours-intro {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Contact cards */
.contact-cards {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}
.contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    text-decoration: none;
    color: var(--text);
    transition: all var(--transition);
}
a.contact-card:hover {
    border-color: var(--sage);
    box-shadow: var(--shadow);
    transform: translateX(4px);
    color: var(--text);
}

.contact-card-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: var(--sage-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    transition: all var(--transition);
}
a.contact-card:hover .contact-card-icon {
    background: var(--gold);
    color: var(--white);
}

.contact-card strong {
    display: block;
    font-size: .9rem;
    font-weight: 600;
    color: var(--navy);
}
.contact-card span {
    font-size: .85rem;
    color: var(--text-muted);
}

/* Hours card */
.hours-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.75rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}
.hours-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hours-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}
.hours-card-header h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy);
}
.hours-badge {
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--gold-text);
    background: var(--gold-pale);
    padding: .3rem .8rem;
    border-radius: 50px;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.25rem;
}
.hours-table td {
    padding: .7rem 0;
    border-bottom: 1px solid var(--border);
    font-size: .93rem;
}
.hours-table td:first-child {
    font-weight: 500;
    color: var(--navy);
}
.hours-table td:last-child {
    text-align: right;
    color: var(--text-light);
}
.hours-table tr:last-child td { border-bottom: none; }
.hours-table tr.closed td { color: var(--text-muted); }

.hours-note {
    font-size: .85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    padding-top: .75rem;
    border-top: 1px solid var(--border);
}

.hours-cta { margin-top: .5rem; }

/* ============================================================
   CTA
   ============================================================ */
.cta {
    padding: 8rem 0;
    padding-top: calc(8rem + 60px);
    margin-top: -60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: url('images/hero-bottom.webp') center / cover no-repeat fixed;
}
.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(30, 50, 69, .78);
    z-index: 1;
}

.cta-content {
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.25rem;
}
.cta p {
    color: var(--sage-light);
    font-size: 1.08rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}
.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--cream);
    border-top: 1px solid var(--border);
}
.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
    gap: 1.5rem;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: .75rem;
}
.footer-brand img {
    height: 80px;
    width: auto;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(30, 50, 69, .15);
    opacity: .85;
}
.footer-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--navy);
}
.footer-tagline {
    font-size: .95rem;
    color: var(--text-muted);
    font-style: italic;
}

.footer-nav {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.footer-nav a {
    font-size: .85rem;
    color: var(--text-light);
    transition: color var(--transition);
}
.footer-nav a:hover { color: var(--gold-text); }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 1.25rem 0;
    flex-wrap: wrap;
    gap: .5rem 1rem;
}
.footer-bottom p {
    font-size: .8rem;
    color: var(--text-muted);
}
.footer-credit {
    margin-left: auto;
}
    font-size: .75rem;
    color: var(--text-muted);
}
.footer-credit a {
    color: #8B5A8F;
    font-weight: 600;
    transition: color var(--transition);
}
.footer-credit a:hover {
    color: #AB7AAF;
}

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(30, 50, 69, .5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
}
.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}
.modal-overlay[hidden] {
    display: none;
}

.modal {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 520px;
    width: 100%;
    max-height: 90vh;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 2.5rem;
    position: relative;
    box-shadow: 0 24px 80px rgba(30, 50, 69, .2);
    transform: translateY(20px) scale(.97);
    transition: transform var(--transition);
    box-sizing: border-box;
}
.modal.modal-widget {
    max-width: 600px;
    height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.modal-overlay.open .modal {
    transform: translateY(0) scale(1);
}

/* Embedded widget iframe */
.modal-widget-wrap {
    flex: 1;
    min-height: 0;
}
.modal-iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--radius-sm);
    max-width: 100%;
}

.modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 2;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--sage-pale);
    color: var(--navy);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}
.modal-close:hover {
    background: var(--navy);
    color: var(--white);
}

.modal-logo-banner {
    background: #d1dad9;
    margin: -2.5rem -2.5rem -1px;
    padding: 2rem 2.5rem 0;
    text-align: center;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    position: relative;
}
.modal-banner-wave {
    line-height: 0;
    color: var(--white);
    margin: 0 -2.5rem -1px;
}
.modal-banner-wave svg {
    width: 100%;
    height: 40px;
    display: block;
}
.modal-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-top: 1.5rem;
}
.modal-logo {
    height: 120px;
    width: auto;
    border-radius: 12px;
    margin: 0 auto;
    box-shadow: none;
}
.modal-header h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .5rem;
}
.modal-header p {
    font-size: .93rem;
    color: var(--text-light);
    line-height: 1.6;
}
.modal-phone-link {
    color: var(--gold-text);
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}
.modal-phone-link:hover {
    text-decoration: underline;
}

/* Form */
.modal-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group { display: flex; flex-direction: column; }
.form-group label {
    font-size: .85rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: .35rem;
}
.form-group label span { color: var(--gold); }
.label-optional { color: var(--text-muted); font-weight: 400; }

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: .93rem;
    padding: .75rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--cream);
    color: var(--text);
    transition: all var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--sage);
    box-shadow: 0 0 0 3px rgba(184, 207, 199, .3);
    background: var(--white);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}
.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #d63031;
    box-shadow: 0 0 0 3px rgba(214, 48, 49, .1);
}

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

.btn-submit {
    margin-top: .5rem;
}
.btn-submit-loading {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}
.spinner {
    animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.form-disclaimer {
    font-size: .78rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.5;
    margin-top: .5rem;
}

/* Success state */
.modal-success {
    text-align: center;
    padding: 1.5rem 0;
}
.success-icon {
    color: var(--gold);
    margin-bottom: 1.25rem;
}
.modal-success h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .75rem;
}
.modal-success p {
    color: var(--text-light);
    font-size: .95rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}
.success-phone {
    font-size: .9rem;
}
.success-phone a {
    color: var(--gold-text);
    font-weight: 600;
}

/* ============================================================
   LEGAL MODALS & ACCORDION
   ============================================================ */
.modal-legal {
    max-width: 700px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
}
.modal-legal .modal-header {
    flex-shrink: 0;
    margin-bottom: 1.25rem;
}
.modal-legal .modal-header h2 {
    margin-bottom: .35rem;
}
.legal-updated {
    font-size: .78rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: .25rem;
}

.modal-body {
    overflow-y: auto;
    flex: 1;
    min-height: 0;
    padding: 0 .25rem .5rem 0;
}

.legal-accordion {
    display: flex;
    flex-direction: column;
}

.legal-accordion-item {
    border-bottom: 1px solid var(--border);
}
.legal-accordion-item:last-child {
    border-bottom: none;
}

.legal-accordion-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
    background: none;
    border: none;
    border-left: 3px solid transparent;
    padding-left: .75rem;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: .95rem;
    font-weight: 600;
    color: var(--navy);
    text-align: left;
    transition: all var(--transition);
}
.legal-accordion-btn:hover {
    color: var(--navy-mid);
}
.legal-accordion-btn .accordion-chevron {
    flex-shrink: 0;
    transition: transform var(--transition);
    color: var(--text-muted);
}
.legal-accordion-btn.active {
    border-left-color: var(--gold);
}
.legal-accordion-btn.active .accordion-chevron {
    transform: rotate(180deg);
    color: var(--gold);
}

.legal-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
    padding: 0 0 0 .75rem;
}
.legal-accordion-content.open {
    max-height: 600px;
    padding: 0 0 1.25rem .75rem;
}

.legal-accordion-content p {
    font-family: var(--font-body);
    font-size: .9rem;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: .75rem;
}
.legal-accordion-content p:last-child {
    margin-bottom: 0;
}
.legal-accordion-content ul {
    list-style: disc;
    padding-left: 1.25rem;
    margin-bottom: .75rem;
}
.legal-accordion-content ul:last-child {
    margin-bottom: 0;
}
.legal-accordion-content li {
    font-size: .9rem;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: .35rem;
}

/* Footer legal links */
.footer-legal {
    font-size: .8rem;
}
.footer-legal a {
    color: var(--text-muted);
    transition: color var(--transition);
}
.footer-legal a:hover {
    color: var(--gold-text);
}
.footer-legal span {
    margin: 0 .4rem;
    color: var(--border);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: translate(0);
}

/* Stagger children */
.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s ease, transform .5s ease;
}
.stagger-children.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: .1s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: .2s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: .3s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: .4s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: .5s; }
.stagger-children.visible > * {
    opacity: 0;
    transform: translateY(20px);
}
.stagger-children.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .hero-text { max-width: 520px; }
    .carousel-card { flex: 0 0 280px; }
    .carousel-arrow { display: none; }
    .approach-timeline { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .approach-line { display: none; }
    .about-layout { gap: 3rem; }
    .fee-cards { grid-template-columns: 1fr 1fr; }
    .fee-cards .fee-card:last-child { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    html { scroll-padding-top: 68px; }

    .hide-mobile { display: none; }

    .nav-toggle { display: block; }
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        height: 100vh;
        height: 100svh;
        background: var(--cream);
        flex-direction: column;
        align-items: stretch;
        padding: 5.5rem 1.5rem 2rem;
        gap: .25rem;
        transform: translateX(100%);
        transition: transform var(--transition);
        box-shadow: -12px 0 48px rgba(30, 50, 69, .12);
    }
    .nav-menu.open { transform: translateX(0); }
    .nav-menu a {
        font-size: 1rem;
        padding: .8rem 1rem;
        border-radius: var(--radius-sm);
    }
    .nav-dropdown {
        width: 100%;
    }
    .nav-portal {
        width: 100%;
        justify-content: center;
        margin-left: 0;
        font-size: 1rem;
        padding: .8rem 1rem;
        border-radius: var(--radius-sm);
        z-index: auto;
        box-shadow: none;
    }
    .nav-dropdown.open .nav-portal {
        border-radius: var(--radius-sm);
        border-bottom-color: var(--sage);
        box-shadow: none;
    }
    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        background: var(--sage-bg);
        border-radius: var(--radius-sm);
        margin-top: .35rem;
        transform: none;
        transform-origin: top center;
        padding: .25rem;
        min-width: 0;
    }
    .nav-dropdown.open .dropdown-menu {
        transform: none;
    }
    .dropdown-menu li,
    .nav-dropdown.open .dropdown-menu li {
        opacity: 1;
        transform: none;
        transition-delay: 0s;
    }
    .dropdown-menu a {
        text-align: center;
        font-size: .95rem !important;
    }
    .nav-cta {
        margin-left: 0 !important;
        margin-top: .5rem;
        text-align: center;
        justify-content: center;
    }

    .hero-content {
        padding: 2rem 0 6rem;
    }
    .hero-text {
        max-width: 100%;
        text-align: center;
    }
    .hero-eyebrow { justify-content: center; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-wave svg { height: 50px; }

    .trust-items { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .trust-item { padding: .75rem; }

    .about-layout { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-visual { max-width: 360px; margin: 0 auto; }

    .section-wave svg { height: 40px; }
    .cta { margin-top: -40px; padding-top: calc(5rem + 40px); }

    .carousel-card { flex: 0 0 85vw; max-width: 320px; }
    .carousel-track { gap: 1rem; scroll-padding-left: 1rem; }
    .carousel-card-cta .btn-white { align-self: center; }
    .carousel-card-cta { text-align: center; }

    .fee-cards { grid-template-columns: 1fr; }

    .approach-timeline { grid-template-columns: 1fr; gap: 1.5rem; }
    .approach-step { display: flex; gap: 1.25rem; padding: 0; }
    .approach-marker { flex-direction: row; margin-bottom: 0; }
    .approach-num { width: 52px; height: 52px; font-size: 1.5rem; min-width: 52px; }
    .approach-content { text-align: left; }

    .hours-layout { grid-template-columns: 1fr; gap: 2.5rem; }

    .footer-top, .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-bottom .footer-credit {
        margin-left: 0;
    }
    .footer-brand { justify-content: center; }
    .footer-nav { justify-content: center; }

    .about, .services, .rates, .approach, .hours-section, .cta { padding: 5rem 0; }

    .cta { background-attachment: scroll; }

    .modal { padding: 1.5rem 1rem; }
    .modal-logo-banner { margin: -1.5rem -1rem 0; padding: 1.5rem 1rem 0; }
    .modal-banner-wave { margin: 0 -1rem; }
    .modal-widget { max-width: 100%; }
    .modal-legal { max-height: 90vh; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.4rem; }
    .hero-subtitle { font-size: 1rem; }
    .btn { padding: .8rem 1.5rem; font-size: .9rem; }
    .about-quote p { font-size: 1.1rem; }
    .trust-items { grid-template-columns: 1fr; }
    .hours-card { padding: 1.75rem; }
    .hero-text { max-width: 100%; }
    .modal-overlay { padding: .75rem; }
    .modal { padding: 1.25rem .75rem; }
    .modal-logo-banner { margin: -1.25rem -.75rem 0; padding: 1.25rem .75rem 0; }
    .modal-banner-wave { margin: 0 -.75rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .hero-blob { animation: none; }

    .spinner { animation: none; }
    .reveal, .reveal-left, .reveal-right {
        transition: none;
        opacity: 1;
        transform: none;
    }
    .stagger-children > * {
        transition: none;
        opacity: 1;
        transform: none;
    }
    .carousel-card:hover { transform: none; }
    .btn:hover { transform: none; }
}

/* Print */
@media print {
    .site-header, .hero-bg, .hero-wave, .modal-overlay,
    .nav-toggle, .section-wave { display: none; }
    .cta::before { display: none; }
    .hero { min-height: auto; padding: 2rem 0; }
    body { background: white; color: black; }
    .cta { background: #eee; }
    .cta h2, .cta p { color: black; }
}
