/* ══════════════════════════════════════════════
   BRIGHT DAY WELLNESS
   For the woman lying awake at 2am.
   Built by The Midnight Garden
   v4 -- Editorial spacing, premium therapy feel, Walk With Me pacing
   ══════════════════════════════════════════════ */

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

:root {
    --pink: #D45B9E;
    --pink-bright: #E86CB3;
    --pink-glow: rgba(232,108,179,0.35);
    --pink-soft: rgba(212,91,158,0.06);
    --pink-bg: #F8F0F8;
    --water: #5B9ED4;
    --water-bright: #6CB3E8;
    --water-glow: rgba(108,179,232,0.3);
    --water-soft: rgba(91,158,212,0.06);
    --water-bg: #EEF3FC;
    --purple: #7B5DAF;
    --purple-bright: #9873CC;
    --purple-glow: rgba(152,115,204,0.3);
    --purple-soft: rgba(123,93,175,0.06);
    --purple-bg: #F3F0FA;
    --sage: #5DAF6B;
    --sage-bg: #EEFAF2;
    --coral: #E8887A;
    --linen: #F6F4FB;
    --charcoal: #2D2250;
    --text: #3A3360;
    --text-mid: #6B6390;
    --text-light: #9890AB;
    --white: #FFFFFF;
    --font-h: 'Cormorant Garamond', Georgia, serif;
    --font-b: 'Didact Gothic', sans-serif;
    --radius: 24px;
    --radius-sm: 14px;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: var(--font-b);
    font-size: 16px; line-height: 1.7;
    color: var(--text);
    background: var(--linen);
    overflow-x: hidden;
}

a { color: var(--purple); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--purple-bright); }
img { max-width: 100%; height: auto; display: block; }

.skip-link {
    position: absolute; top: -100%; left: 16px;
    background: var(--charcoal); color: white;
    padding: 8px 16px; border-radius: 8px; z-index: 9999;
}
.skip-link:focus { top: 16px; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }


/* ══════════════════════════════════════════════
   TYPOGRAPHY -- Cormorant Garamond headlines, italic emphasis
   ══════════════════════════════════════════════ */
h1, h2, h3, h4 { font-family: var(--font-h); line-height: 1.15; color: var(--charcoal); }
h1 { font-size: clamp(2.6rem, 7vw, 4.2rem); font-weight: 500; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.9rem, 5vw, 3rem); font-weight: 500; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.4rem); font-weight: 500; }

/* Font play */
.italic { font-style: italic; }
.light { font-weight: 400; }
.serif { font-family: var(--font-h); }
.big { font-size: 1.2em; }
.small { font-size: 0.85em; }
.accent { color: var(--pink-bright); }
.accent-water { color: var(--water); }
.accent-purple { color: var(--purple-bright); }
.accent-lav { color: var(--purple-bright); }

/* Glowing text */
.glow-pink { color: var(--pink-bright); text-shadow: 0 0 30px var(--pink-glow), 0 0 60px rgba(232,108,179,0.12); }
.glow-water { color: var(--water-bright); text-shadow: 0 0 30px var(--water-glow), 0 0 60px rgba(108,179,232,0.12); }
.glow-purple { color: var(--purple-bright); text-shadow: 0 0 30px var(--purple-glow); }

/* Pull quote style */
.pullquote {
    font-family: var(--font-h);
    font-style: italic;
    font-size: clamp(1.4rem, 3.5vw, 2rem);
    font-weight: 400;
    line-height: 1.55;
    color: var(--text);
    max-width: 640px;
}


/* ══════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════ */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-b); font-size: 1rem;
    padding: 16px 36px; border-radius: 50px;
    border: none; cursor: pointer;
    transition: all 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
    text-decoration: none;
}
.btn--primary {
    background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
    color: white;
    box-shadow: 0 4px 24px var(--pink-glow);
}
.btn--primary:hover {
    color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 40px var(--pink-glow), 0 0 60px rgba(232,108,179,0.15);
}
.btn--outline {
    background: transparent;
    color: var(--charcoal);
    border: 2px solid var(--water);
}
.btn--outline:hover {
    background: var(--water-bright);
    color: white;
    border-color: var(--water-bright);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--water-glow);
}
.btn--soft {
    background: var(--pink-soft);
    color: var(--pink);
    border: 1px solid rgba(212,91,158,0.15);
}
.btn--soft:hover {
    background: var(--pink-bg);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px var(--pink-glow);
}
/* Quick-action buttons: email, text, call */
.btn--action {
    background: var(--water-soft);
    color: var(--water);
    border: 1px solid rgba(91,158,212,0.15);
    padding: 10px 20px;
    font-size: 0.9rem;
}
.btn--action:hover {
    background: var(--water);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px var(--water-glow);
}


/* ══════════════════════════════════════════════
   ANIMATIONS -- Alive, organic
   ══════════════════════════════════════════════ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes gentleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
@keyframes glowPulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}
/* ══════════════════════════════════════════════
   FEATHERED SECTION TRANSITIONS
   ══════════════════════════════════════════════ */
.feather {
    position: relative;
    z-index: 5;
    height: 0;
    pointer-events: none;
    overflow: visible;
}
.feather__gradient {
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    height: 120px;
    pointer-events: none;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ══════════════════════════════════════════════
   ANNOUNCEMENT BAR
   ══════════════════════════════════════════════ */
.announcement {
    background: linear-gradient(135deg, var(--purple) 0%, var(--pink) 100%);
    color: white;
    text-align: center;
    padding: 10px 16px;
    font-size: 0.85rem;
    position: relative;
    z-index: 1001;
}
.announcement a { color: white; text-decoration: underline; text-underline-offset: 2px; }
.announcement a:hover { color: rgba(255,255,255,0.8); }


/* ══════════════════════════════════════════════
   NAV
   ══════════════════════════════════════════════ */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(246,244,251,0.85);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 1px 30px rgba(45,34,80,0.06); }
.nav__inner {
    max-width: 1100px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
}
.nav__logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav__logo img { height: 52px; width: auto; }
.nav__logo-text {
    font-family: var(--font-h); font-weight: 500; font-size: 1.15rem;
    color: var(--charcoal); letter-spacing: 0.01em;
}
.nav__links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav__links a {
    font-size: 0.9rem; color: var(--text); text-decoration: none; transition: color 0.2s;
}
.nav__links a:hover { color: var(--pink); }
.nav__cta { font-size: 0.88rem; padding: 12px 26px; font-weight: 600; letter-spacing: 0.02em; box-shadow: 0 2px 12px var(--pink-glow); }
.nav__social {
    display: flex; align-items: center; gap: 8px; margin-left: 8px;
}
.nav__social a {
    width: 30px; height: 30px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-light); transition: all 0.3s;
}
.nav__social a:hover { color: var(--pink); transform: scale(1.1); }
.nav__toggle {
    display: none; background: none; border: none; cursor: pointer;
    width: 32px; height: 32px; position: relative;
}
.nav__toggle span {
    display: block; width: 22px; height: 2px;
    background: var(--charcoal); position: absolute; left: 5px; transition: all 0.3s;
}
.nav__toggle span:nth-child(1) { top: 9px; }
.nav__toggle span:nth-child(2) { top: 15px; }
.nav__toggle span:nth-child(3) { top: 21px; }
.nav__toggle.open span:nth-child(1) { top: 15px; transform: rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { top: 15px; transform: rotate(-45deg); }


/* ══════════════════════════════════════════════
   HERO -- Full-bleed, big header (Walk With Me style)
   ══════════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    position: relative;
    overflow: hidden;
    background: var(--linen);
    display: flex;
    align-items: flex-end;
}
.hero__glow {
    position: absolute; border-radius: 50%;
    pointer-events: none; z-index: 1;
}
.hero__glow--1 {
    width: 80vw; height: 80vw;
    bottom: -30%; right: -15%;
    background: radial-gradient(circle, var(--pink-glow) 0%, transparent 50%);
    animation: glowPulse 6s ease-in-out infinite;
}
.hero__glow--2 {
    width: 60vw; height: 60vw;
    top: -15%; left: -15%;
    background: radial-gradient(circle, var(--water-glow) 0%, transparent 45%);
    animation: glowPulse 8s ease-in-out 2s infinite;
    opacity: 0.35;
}
.hero__glow--3 {
    width: 40vw; height: 40vw;
    bottom: 15%; left: 25%;
    background: radial-gradient(circle, var(--purple-glow) 0%, transparent 50%);
    animation: glowPulse 7s ease-in-out 1s infinite;
    opacity: 0.25;
}
.hero__cory {
    position: absolute;
    right: 0; bottom: 0;
    height: 95vh; height: 95dvh;
    max-height: 920px;
    width: auto; z-index: 2;
    filter: drop-shadow(0 20px 60px rgba(45,34,80,0.18));
    animation: fadeUp 1s ease-out forwards;
}
.hero__content {
    position: relative; z-index: 3;
    max-width: 560px;
    padding: 140px 0 80px;
    margin-left: max(24px, 6vw);
}
.hero__intro {
    font-family: var(--font-h);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--purple);
    margin-bottom: 12px;
    opacity: 0.9;
}
.hero__title { margin-bottom: 24px; }
.hero__sub {
    font-size: 1.1rem; color: var(--text-mid);
    margin-bottom: 36px; line-height: 1.8; max-width: 440px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 20px; }
.hero__details {
    font-size: 0.92rem; color: var(--text); letter-spacing: 0.02em;
    font-weight: 600;
}
.hero__details--sub {
    font-size: 0.82rem; color: var(--text-mid); font-weight: 400;
    margin-top: 4px;
}


/* ══════════════════════════════════════════════
   "SHE" SECTION -- The woman she's speaking to
   ══════════════════════════════════════════════ */
.she-section {
    padding: 120px 0;
    background: var(--pink-bg);
    position: relative;
    overflow: hidden;
}
.she-section::before {
    content: '';
    position: absolute; top: -40%; right: -20%;
    width: 50vw; height: 50vw;
    background: radial-gradient(circle, var(--pink-glow) 0%, transparent 50%);
    opacity: 0.2; pointer-events: none;
}
.she-section__inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}
.she-section__inner .pullquote {
    margin-bottom: 32px;
}
.she-section__inner p {
    color: var(--text-mid);
    font-size: 1rem;
    max-width: 520px;
    margin: 0 auto 32px;
}


/* ══════════════════════════════════════════════
   ROUTES -- Clean list
   ══════════════════════════════════════════════ */
.routes {
    padding: 120px 0;
    position: relative;
}
.routes__title { margin-bottom: 40px; }
.routes__list { display: flex; flex-direction: column; }
.route {
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px; padding: 28px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    text-decoration: none; color: var(--charcoal);
    transition: all 0.35s; position: relative;
}
.route:first-child { border-top: 1px solid rgba(0,0,0,0.06); }
.route::before {
    content: ''; position: absolute;
    left: -24px; top: 0; bottom: 0; width: 3px;
    border-radius: 3px; opacity: 0; transition: opacity 0.3s;
}
.route:nth-child(1)::before { background: var(--pink); }
.route:nth-child(2)::before { background: var(--water); }
.route:nth-child(3)::before { background: var(--purple); }
.route:nth-child(4)::before { background: var(--sage); }
.route:nth-child(5)::before { background: var(--coral); }
.route:hover { padding-left: 16px; color: var(--charcoal); }
.route:hover::before { opacity: 1; left: 0; }
.route__text h3 { font-size: 1.15rem; margin-bottom: 2px; transition: color 0.3s; }
.route:hover .route__text h3 { color: var(--pink); }
.route__text p { font-size: 0.92rem; color: var(--text-mid); line-height: 1.5; max-width: 560px; }
.route__go {
    font-size: 1.4rem; color: var(--pink); opacity: 0;
    transform: translateX(-10px); transition: all 0.3s; flex-shrink: 0;
}
.route:hover .route__go { opacity: 1; transform: translateX(0); }
.routes__more { margin-top: 32px; font-size: 0.92rem; color: var(--text-mid); }
.routes__more a { color: var(--pink); }


/* ══════════════════════════════════════════════
   TOOLS TEASER -- Colorful bg
   ══════════════════════════════════════════════ */
.tools-teaser {
    padding: 120px 0;
    background: var(--purple-bg);
    position: relative; overflow: hidden;
}
.tools-teaser::before {
    content: '';
    position: absolute; bottom: -30%; left: -10%;
    width: 40vw; height: 40vw;
    background: radial-gradient(circle, var(--purple-glow) 0%, transparent 50%);
    opacity: 0.15; pointer-events: none;
}
.tools-teaser__inner {
    display: grid; grid-template-columns: 1fr 1.2fr;
    gap: 56px; align-items: center;
}
.tools-teaser__text h2 { margin-bottom: 12px; }
.tools-teaser__text p { color: var(--text-mid); font-size: 1.02rem; }
.tools-teaser__links { display: flex; flex-direction: column; gap: 14px; }
.tool-link {
    display: block; padding: 22px 24px;
    border-radius: var(--radius-sm);
    background: var(--white); text-decoration: none; color: var(--charcoal);
    transition: all 0.35s; position: relative; overflow: hidden;
}
.tool-link::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--pink-soft) 0%, var(--purple-soft) 100%);
    opacity: 0; transition: opacity 0.35s;
}
.tool-link:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 32px rgba(45,34,80,0.06); color: var(--charcoal);
}
.tool-link:hover::after { opacity: 1; }
.tool-link__name {
    display: block; font-family: var(--font-h); font-weight: 600;
    font-size: 1.02rem; margin-bottom: 2px; position: relative; z-index: 1;
}
.tool-link__desc { font-size: 0.85rem; color: var(--text-mid); position: relative; z-index: 1; }


/* ══════════════════════════════════════════════
   TESTIMONIALS / REVIEWS
   ══════════════════════════════════════════════ */
.testimonials {
    padding: 120px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}
.testimonials::before {
    content: '';
    position: absolute; top: -20%; right: -15%;
    width: 40vw; height: 40vw;
    background: radial-gradient(circle, var(--water-glow) 0%, transparent 50%);
    opacity: 0.15; pointer-events: none;
}
.testimonials__header {
    text-align: center;
    margin-bottom: 48px;
}
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 960px;
    margin: 0 auto;
}
.testimonial-card {
    background: var(--linen);
    border-radius: var(--radius);
    padding: 40px 36px;
    border: none;
    position: relative;
}
.testimonial-card::before {
    content: '\201C';
    font-family: var(--font-h);
    font-size: 4rem;
    color: var(--water);
    opacity: 0.2;
    position: absolute;
    top: 12px;
    left: 20px;
    line-height: 1;
}
.testimonial-card__text {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.85;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.testimonial-card__author {
    font-size: 0.82rem;
    color: var(--text-light);
    font-family: var(--font-h);
    font-weight: 600;
}


/* ══════════════════════════════════════════════
   ORGANIZATION / CREDENTIAL LOGOS
   ══════════════════════════════════════════════ */
.org-logos {
    padding: 100px 0;
    background: var(--linen);
    text-align: center;
}
.org-logos__header {
    margin-bottom: 32px;
}
.org-logos__header p {
    color: var(--text-mid);
    font-size: 0.95rem;
    max-width: 500px;
    margin: 8px auto 0;
}
.org-logos__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}
.org-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-mid);
    transition: all 0.3s;
    padding: 16px 24px;
    border-radius: var(--radius-sm);
}
.org-logo:hover {
    background: var(--purple-soft);
    color: var(--purple);
    transform: translateY(-2px);
}
.org-logo__icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    background: var(--purple-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-h);
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--purple);
    transition: transform 0.3s;
}
.org-logo:hover .org-logo__icon {
    transform: scale(1.08);
}
.org-logo__icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}
.org-logo__name {
    font-size: 0.82rem;
    font-weight: 600;
}
.org-logo__sub {
    font-size: 0.7rem;
    color: var(--text-light);
    margin-top: -2px;
}


/* ══════════════════════════════════════════════
   INSTAGRAM REELS SECTION
   ══════════════════════════════════════════════ */
.reels-section {
    padding: 80px 0;
    background: var(--purple-bg);
    text-align: center;
}
.reels-section__header {
    margin-bottom: 40px;
}
.reels-section__header p {
    color: var(--text-mid);
    font-size: 0.95rem;
    margin-top: 8px;
}
.reels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}
.reel-placeholder {
    aspect-ratio: 9/16;
    max-height: 320px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-family: var(--font-h);
    font-weight: 600;
    border: 2px dashed;
}
.reel-placeholder--red {
    background: rgba(232,136,122,0.08);
    border-color: rgba(232,136,122,0.3);
    color: var(--coral);
}
.reel-placeholder--green {
    background: rgba(93,175,107,0.08);
    border-color: rgba(93,175,107,0.3);
    color: var(--sage);
}
.reels-grid iframe {
    width: 100%;
    aspect-ratio: 9/16;
    max-height: 320px;
    border: none;
    border-radius: var(--radius-sm);
}


/* ══════════════════════════════════════════════
   FLOATING BOOK BUTTON
   ══════════════════════════════════════════════ */
.floating-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}
.floating-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}
.floating-cta .btn {
    padding: 14px 28px;
    font-size: 0.9rem;
    box-shadow: 0 8px 32px var(--pink-glow), 0 4px 16px rgba(0,0,0,0.1);
    background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
    color: white;
}
.floating-cta .btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 48px var(--pink-glow), 0 6px 24px rgba(0,0,0,0.15);
    color: white;
}


/* ══════════════════════════════════════════════
   IMAGE PLACEHOLDERS
   ══════════════════════════════════════════════ */
.placeholder-img {
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-family: var(--font-b);
    font-weight: 600;
    text-align: center;
    padding: 16px;
    line-height: 1.4;
}
.placeholder-img--red {
    background: rgba(232,136,122,0.1);
    border: 2px dashed rgba(232,136,122,0.35);
    color: var(--coral);
}
.placeholder-img--green {
    background: rgba(93,175,107,0.1);
    border: 2px dashed rgba(93,175,107,0.35);
    color: var(--sage);
}


/* ══════════════════════════════════════════════
   FINAL CTA
   ══════════════════════════════════════════════ */
.final-cta {
    text-align: center; padding: 120px 24px;
    background: var(--charcoal); color: white;
    position: relative; overflow: hidden;
}
.final-cta__glow {
    position: absolute; border-radius: 50%; pointer-events: none;
}
.final-cta__glow--1 {
    width: 400px; height: 400px; top: -100px; left: -100px;
    background: radial-gradient(circle, var(--pink-glow) 0%, transparent 60%); opacity: 0.4;
}
.final-cta__glow--2 {
    width: 300px; height: 300px; bottom: -80px; right: -80px;
    background: radial-gradient(circle, var(--purple-glow) 0%, transparent 60%); opacity: 0.4;
}
.final-cta h2 { color: white; margin-bottom: 14px; position: relative; }
.final-cta p {
    color: rgba(255,255,255,0.5); margin-bottom: 36px;
    max-width: 420px; margin-left: auto; margin-right: auto; position: relative;
}
.final-cta .btn { position: relative; }


/* ══════════════════════════════════════════════
   FOOTER -- Light style (Walk With Me inspired)
   ══════════════════════════════════════════════ */
.footer {
    background: var(--white);
    color: var(--text-mid);
    padding: 56px 24px 36px;
    border-top: 1px solid rgba(0,0,0,0.06);
}
.footer__inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: 48px;
}
.footer__brand h3 { font-family: var(--font-h); color: var(--charcoal); font-size: 1.15rem; margin-bottom: 10px; }
.footer__brand p { font-size: 0.88rem; line-height: 1.7; color: var(--text-mid); }
.footer__brand a { color: var(--text-mid); }
.footer__brand a:hover { color: var(--purple); }
.footer h4 { color: var(--charcoal); font-size: 0.88rem; margin-bottom: 16px; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 8px; }
.footer li a { color: var(--text-mid); font-size: 0.88rem; transition: color 0.2s; }
.footer li a:hover { color: var(--pink); }
.footer__social { display: flex; gap: 12px; margin-top: 18px; }
.footer__social a {
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(123,93,175,0.06);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-light); transition: all 0.4s ease;
    position: relative;
}
.footer__social a::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink-glow), var(--purple-glow));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    filter: blur(8px);
}
.footer__social a:hover {
    background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px var(--pink-glow), 0 4px 20px var(--purple-glow);
}
.footer__social a:hover::before { opacity: 1; }
.footer__crisis {
    background: rgba(232,136,122,0.06); border: 1px solid rgba(232,136,122,0.12);
    border-radius: 10px; padding: 10px 16px; font-size: 0.8rem;
    margin-top: 20px; display: inline-block;
}
.footer__crisis strong { color: var(--coral); }
.footer__bottom {
    max-width: 1100px; margin: 36px auto 0;
    padding-top: 24px; border-top: 1px solid rgba(0,0,0,0.06);
    display: flex; justify-content: space-between; font-size: 0.78rem;
    color: var(--text-light);
}
.footer__bottom a { color: var(--text-light); }
.footer__bottom a:hover { color: var(--purple); }
.footer__compliance {
    max-width: 1100px; margin: 20px auto 0;
    padding-top: 16px; border-top: 1px solid rgba(0,0,0,0.04);
    font-size: 0.72rem; line-height: 1.7; color: var(--text-light);
    text-align: center;
}
.footer__compliance a { color: var(--text-mid); text-decoration: underline; text-underline-offset: 2px; }
.footer__compliance a:hover { color: var(--purple); }
.footer__credit {
    max-width: 1100px; margin: 20px auto 0;
    text-align: center; font-size: 0.72rem; color: var(--text-light);
}
.footer__credit a {
    color: var(--text-mid);
    text-decoration: none;
    transition: color 0.2s;
}
.footer__credit a:hover { color: var(--purple); }


/* ══════════════════════════════════════════════
   SUBPAGE SHARED
   ══════════════════════════════════════════════ */
section { padding: 100px 0; position: relative; }
.section-label {
    font-family: var(--font-b); font-size: 0.78rem;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--pink); margin-bottom: 10px; display: block;
}
.page-hero {
    padding: 140px 0 80px; position: relative; overflow: hidden;
}
.page-hero::before {
    content: ''; position: absolute; top: -20%; right: -10%;
    width: 50vw; height: 50vw;
    background: radial-gradient(circle, var(--pink-glow) 0%, transparent 50%);
    pointer-events: none; opacity: 0.25;
}
.page-hero h1 { margin-bottom: 16px; position: relative; }
.page-hero p { font-size: 1.08rem; color: var(--text-mid); max-width: 580px; line-height: 1.8; position: relative; }
.page-hero__subtitle { font-size: 1.08rem; color: var(--text-mid); max-width: 580px; line-height: 1.8; margin-top: 12px; }

.content-section { padding: 100px 0; }
.content-section--alt { background: var(--white); }
.content-section--pink { background: var(--pink-bg); }
.content-section--purple { background: var(--purple-bg); }
.content-section--water { background: var(--water-bg); }
.content-section--sage { background: var(--sage-bg); }
.content-section__header { margin-bottom: 32px; }
.content-section__header p { color: var(--text-mid); font-size: 1.02rem; line-height: 1.8; max-width: 680px; }
.content-section__prose { max-width: 720px; }
.content-section__prose p { color: var(--text-mid); margin-bottom: 16px; line-height: 1.8; }
.section-subtitle { color: var(--text-mid); font-size: 1.04rem; line-height: 1.7; }

.card {
    background: var(--white); border-radius: var(--radius);
    padding: 32px; border: 1px solid rgba(0,0,0,0.04);
    transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(45,34,80,0.08); }

.credential-badge {
    display: inline-block; background: var(--pink-soft); border-radius: 50px;
    padding: 6px 16px; font-size: 0.82rem; color: var(--text-mid); margin: 3px;
}

/* Info boxes */
.info-box { background: var(--purple-soft); border-radius: var(--radius-sm); padding: 24px; margin: 20px 0; }
.info-box--highlight { background: var(--water-soft); }
.info-box--sage { background: rgba(93,175,107,0.06); }
.info-box--water { background: var(--water-soft); }
.info-box--pink { background: var(--pink-soft); }

.disclaimer-box { background: rgba(232,136,122,0.05); border: 1px solid rgba(232,136,122,0.1); border-radius: var(--radius-sm); padding: 20px 24px; font-size: 0.9rem; color: var(--text-mid); margin: 24px 0; }
.disclaimer-box strong { color: var(--coral); }

.contact-map { border-radius: var(--radius); overflow: hidden; margin-top: 24px; }
.contact-map iframe { width: 100%; height: 320px; border: none; }

.legal-content { max-width: 720px; }
.legal-content h2 { font-size: 1.3rem; margin: 40px 0 12px; }
.legal-content p { color: var(--text-mid); margin-bottom: 16px; }

/* FAQ */
.faq { padding: 80px 0; }
.faq__item { border-bottom: 1px solid rgba(0,0,0,0.06); }
.faq__question {
    width: 100%; background: none; border: none; padding: 24px 0;
    display: flex; justify-content: space-between; align-items: center;
    cursor: pointer; font-family: var(--font-h); font-size: 1.05rem;
    font-weight: 600; color: var(--charcoal); text-align: left;
}
.faq__question svg { flex-shrink: 0; transition: transform 0.3s; color: var(--pink); }
.faq__item.open .faq__question svg { transform: rotate(45deg); }
.faq__answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq__item.open .faq__answer { max-height: 500px; padding-bottom: 24px; }
.faq__answer p { color: var(--text-mid); line-height: 1.7; }

/* Rate cards */
.rate-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.rate-card { background: var(--white); border-radius: var(--radius); padding: 36px; text-align: center; border: 1px solid rgba(0,0,0,0.04); }
.rate-card--featured { border-color: var(--pink); border-width: 2px; }
.rate-card .rate-price {
    font-family: var(--font-h); font-size: 1.6rem; font-weight: 500;
    color: var(--purple); margin: 12px 0;
}
.rate-card .rate-unit { font-size: 0.88rem; color: var(--text-mid); display: block; margin-bottom: 16px; }

/* Steps */
.steps__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 40px; }
.step { text-align: center; }
.step__number {
    width: 64px; height: 64px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px; font-family: var(--font-h); font-weight: 700; font-size: 1.4rem; color: white;
}
.step:nth-child(1) .step__number { background: linear-gradient(135deg, var(--pink), var(--purple)); }
.step:nth-child(2) .step__number { background: linear-gradient(135deg, var(--water), var(--purple)); }
.step:nth-child(3) .step__number { background: linear-gradient(135deg, var(--sage), #3D9A6B); }
.step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { font-size: 0.9rem; color: var(--text-mid); max-width: 260px; margin: 0 auto; }

/* About carousel */
.about-carousel { position: relative; max-width: 380px; height: 460px; margin: 0 auto; }
.about-carousel__photo {
    position: absolute; bottom: 0; left: 50%;
    transform: translateX(-50%) translateY(10px);
    max-height: 440px; width: auto; opacity: 0;
    filter: drop-shadow(0 20px 40px rgba(45,34,80,0.12));
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.about-carousel__photo--active { opacity: 1; transform: translateX(-50%) translateY(0); }
.about-hero__inner { display: grid; grid-template-columns: auto 1fr; gap: 48px; align-items: center; }
.about-tabs { display: flex; gap: 0; margin-bottom: 32px; }
.about-tab {
    padding: 14px 28px; font-family: var(--font-h); font-size: 1rem; font-weight: 600;
    background: none; border: none; cursor: pointer; color: var(--text-light);
    border-bottom: 3px solid transparent; transition: all 0.3s;
}
.about-tab:hover { color: var(--text); }
.about-tab--active { color: var(--pink); border-bottom-color: var(--pink); }
.about-panel { display: none; }
.about-panel--active { display: block; }


/* ══════════════════════════════════════════════
   BLOG INDEX
   ══════════════════════════════════════════════ */
.blog-intro { max-width: 620px; }
.blog-intro p { font-size: 1.08rem; color: var(--text-mid); line-height: 1.8; margin-top: 16px; }

.blog-feed { display: flex; flex-direction: column; gap: 0; }

.blog-card {
    display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px;
    padding: 36px 0; border-bottom: 1px solid rgba(0,0,0,0.06);
    text-decoration: none; color: var(--charcoal); transition: all 0.3s;
}
.blog-card:hover { transform: translateX(6px); color: var(--charcoal); }
.blog-card__number {
    font-family: var(--font-h); font-size: 2.6rem; font-weight: 700;
    color: var(--pink-bright); opacity: 0.25; line-height: 1; min-width: 48px; text-align: center;
}
.blog-card:nth-child(even) .blog-card__number { color: var(--purple-bright); }
.blog-card:nth-child(3n) .blog-card__number { color: var(--water-bright); }
.blog-card__body { }
.blog-card__tag {
    display: inline-block; font-size: 0.72rem; font-family: var(--font-b);
    letter-spacing: 0.08em; text-transform: uppercase; color: var(--pink);
    background: var(--pink-soft); border-radius: 50px; padding: 3px 12px; margin-bottom: 8px;
}
.blog-card:nth-child(even) .blog-card__tag { color: var(--purple); background: var(--purple-soft); }
.blog-card:nth-child(3n) .blog-card__tag { color: var(--water); background: var(--water-soft); }
.blog-card__title {
    font-family: var(--font-h); font-size: 1.2rem; font-weight: 600;
    line-height: 1.3; margin-bottom: 6px;
}
.blog-card__hook { font-size: 0.92rem; color: var(--text-mid); line-height: 1.6; }
.blog-card__arrow {
    font-size: 1.4rem; color: var(--text-light); transition: all 0.3s;
}
.blog-card:hover .blog-card__arrow { color: var(--pink); transform: translateX(4px); }
.blog-card--placeholder { opacity: 0.45; pointer-events: none; }
.blog-card--placeholder .blog-card__tag { background: rgba(0,0,0,0.03); color: var(--text-light); }

/* ══════════════════════════════════════════════
   BLOG POST
   ══════════════════════════════════════════════ */
.post-header { padding: 140px 0 48px; position: relative; overflow: hidden; }
.post-header::before {
    content: ''; position: absolute; top: -20%; right: -10%;
    width: 50vw; height: 50vw;
    background: radial-gradient(circle, var(--pink-glow) 0%, transparent 50%);
    pointer-events: none; opacity: 0.2;
}
.post-header .container { position: relative; }
.post-meta {
    display: flex; flex-wrap: wrap; align-items: center; gap: 16px;
    font-size: 0.85rem; color: var(--text-mid); margin-bottom: 16px;
}
.post-meta__tag {
    display: inline-block; font-size: 0.72rem; font-family: var(--font-b);
    letter-spacing: 0.08em; text-transform: uppercase; color: var(--pink);
    background: var(--pink-soft); border-radius: 50px; padding: 3px 12px;
}
.post-header h1 { max-width: 720px; margin-bottom: 16px; }
.post-header .post-lede {
    font-size: 1.1rem; color: var(--text-mid); max-width: 640px; line-height: 1.8;
}

.post-body { max-width: 720px; margin: 0 auto; padding: 0 24px; }
.post-body h2 {
    font-size: clamp(1.3rem, 3vw, 1.7rem); margin: 48px 0 16px;
    color: var(--charcoal); line-height: 1.3;
}
.post-body h3 {
    font-size: 1.1rem; margin: 32px 0 12px; color: var(--charcoal);
}
.post-body p { color: var(--text); margin-bottom: 20px; line-height: 1.8; }
.post-body ul, .post-body ol {
    margin: 0 0 20px 24px; color: var(--text); line-height: 1.8;
}
.post-body li { margin-bottom: 8px; }
.post-body strong { color: var(--charcoal); }

.post-section--pink { background: var(--pink-bg); padding: 48px 0; margin: 40px 0; }
.post-section--purple { background: var(--purple-bg); padding: 48px 0; margin: 40px 0; }
.post-section--water { background: var(--water-bg); padding: 48px 0; margin: 40px 0; }
.post-section--linen { background: var(--linen); padding: 48px 0; margin: 40px 0; }

.post-cta-mid {
    background: var(--purple-soft); border-radius: var(--radius-sm);
    padding: 24px 28px; margin: 40px 0; max-width: 720px; margin-left: auto; margin-right: auto;
}
.post-cta-mid p { margin-bottom: 0; color: var(--text); }
.post-cta-mid a { font-weight: 600; }

.post-faq { max-width: 720px; margin: 0 auto; padding: 48px 24px; }
.post-faq h2 { font-size: 1.4rem; margin-bottom: 24px; }

.post-footer-cta {
    text-align: center; padding: 64px 24px; background: var(--charcoal); color: white;
}
.post-footer-cta h2 { color: white; margin-bottom: 12px; }
.post-footer-cta p { color: rgba(255,255,255,0.5); margin-bottom: 28px; max-width: 480px; margin-left: auto; margin-right: auto; }

.post-author {
    max-width: 720px; margin: 0 auto; padding: 32px 24px;
    display: flex; align-items: center; gap: 20px;
}
.post-author img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; }
.post-author__name { font-family: var(--font-h); font-weight: 600; font-size: 1rem; }
.post-author__bio { font-size: 0.88rem; color: var(--text-mid); }

.post-disclaimer {
    max-width: 720px; margin: 0 auto; padding: 16px 24px;
    font-size: 0.82rem; color: var(--text-light);
}

.post-nav {
    max-width: 720px; margin: 0 auto; padding: 24px 24px 48px;
}
.post-nav a {
    font-family: var(--font-h); font-weight: 600; font-size: 0.95rem;
}


/* ══════════════════════════════════════════════
   EMAIL CAPTURE
   ══════════════════════════════════════════════ */
.email-capture {
    padding: 100px 0;
    background: var(--purple-bg);
}
.email-capture__inner {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}
.email-capture__inner h2 {
    margin-bottom: 12px;
}
.email-capture__inner > p {
    color: var(--text-mid);
    margin-bottom: 28px;
}
.email-capture__form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.email-capture__input {
    flex: 1;
    min-width: 160px;
    padding: 14px 18px;
    border: 2px solid rgba(139,93,175,0.15);
    border-radius: var(--radius-sm);
    font-family: var(--font-b);
    font-size: 1rem;
    background: var(--white);
    color: var(--text);
    transition: border-color 0.2s;
}
.email-capture__input:focus {
    outline: none;
    border-color: var(--purple);
}
.email-capture__input::placeholder {
    color: var(--text-light);
}
.email-capture__form .btn {
    white-space: nowrap;
}
.email-capture__trust {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 12px;
}


/* ══════════════════════════════════════════════
   STORY SECTION -- Image/text alternating split
   ══════════════════════════════════════════════ */
.story-split {
    padding: 120px 0;
    background: var(--white);
}
.story-split__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}
.story-split--reverse .story-split__inner {
    direction: rtl;
}
.story-split--reverse .story-split__inner > * {
    direction: ltr;
}
.story-split__image {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}
.story-split__image img {
    width: 100%;
    height: auto;
    display: block;
}
.story-split__image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    box-shadow: inset 0 0 60px rgba(45,34,80,0.04);
    pointer-events: none;
}
.story-split__text {
    max-width: 460px;
}
.story-split__text .section-label {
    margin-bottom: 16px;
}
.story-split__text h2 {
    margin-bottom: 20px;
}
.story-split__text p {
    color: var(--text-mid);
    font-size: 1.02rem;
    line-height: 1.85;
    margin-bottom: 16px;
}
.story-split__text .btn {
    margin-top: 12px;
}


/* ══════════════════════════════════════════════
   PROCESS SECTION -- 3-step journey
   ══════════════════════════════════════════════ */
.process {
    padding: 120px 0;
    background: var(--pink-bg);
    text-align: center;
}
.process__header {
    margin-bottom: 64px;
}
.process__header p {
    color: var(--text-mid);
    font-size: 1.02rem;
    max-width: 540px;
    margin: 12px auto 0;
}
.process__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    max-width: 900px;
    margin: 0 auto;
}
.process__step {
    text-align: center;
}
.process__number {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-family: var(--font-h);
    font-weight: 500;
    font-size: 1.6rem;
    color: white;
}
.process__step:nth-child(1) .process__number { background: linear-gradient(135deg, var(--pink), var(--purple)); }
.process__step:nth-child(2) .process__number { background: linear-gradient(135deg, var(--water), var(--purple)); }
.process__step:nth-child(3) .process__number { background: linear-gradient(135deg, var(--sage), #3D9A6B); }
.process__step h3 {
    margin-bottom: 12px;
}
.process__step p {
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.7;
    max-width: 260px;
    margin: 0 auto;
}


/* ══════════════════════════════════════════════
   REACH OUT YOUR WAY -- Contact buttons strip
   ══════════════════════════════════════════════ */
.reach-out {
    padding: 48px 0;
    background: var(--water-bg);
    text-align: center;
}
.reach-out h3 { margin-bottom: 16px; }
.reach-out__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}


/* ══════════════════════════════════════════════
   GOOGLE REVIEWS
   ══════════════════════════════════════════════ */
.google-reviews {
    padding: 100px 0;
    background: var(--water-bg);
    text-align: center;
}
.google-reviews__badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border: 1px solid rgba(45,34,80,0.08);
    border-radius: var(--radius);
    padding: 20px 32px;
    margin-bottom: 32px;
    box-shadow: 0 2px 12px rgba(45,34,80,0.04);
}
.google-reviews__badge img {
    height: 28px;
    width: auto;
}
.google-reviews__stars {
    display: flex;
    align-items: center;
    gap: 2px;
    color: #FBBC04;
    font-size: 1.2rem;
}
.google-reviews__rating {
    font-family: var(--font-h);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-right: 4px;
}
.google-reviews__count {
    font-size: 0.85rem;
    color: var(--text-mid);
}
.google-reviews__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}
.google-review-card {
    background: var(--white);
    border: 1px solid rgba(45,34,80,0.06);
    border-radius: var(--radius-sm);
    padding: 24px;
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s;
}
.google-review-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(45,34,80,0.06);
}
.google-review-card__stars {
    color: #FBBC04;
    font-size: 0.9rem;
    margin-bottom: 10px;
}
.google-review-card__text {
    font-size: 0.92rem;
    color: var(--text);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 12px;
}
.google-review-card__author {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 600;
}


/* ══════════════════════════════════════════════
   SPECIALTY CARDS -- Walk With Me bordered style
   ══════════════════════════════════════════════ */
.specialty-cards {
    padding: 120px 0;
    background: var(--white);
}
.specialty-cards__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}
.specialty-card {
    border: 2px solid rgba(45,34,80,0.08);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-decoration: none;
    color: var(--charcoal);
    text-align: center;
    transition: all 0.35s;
    position: relative;
    overflow: hidden;
}
.specialty-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(45,34,80,0.08);
    color: var(--charcoal);
}
.specialty-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
}
.specialty-card__content h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}
.specialty-card__content p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.6;
    margin-bottom: 16px;
}
.specialty-card__cta {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--purple);
    transition: color 0.2s;
}
.specialty-card:hover .specialty-card__cta {
    color: var(--pink);
}
.specialty-card:hover .specialty-card__icon {
    transform: scale(1.08);
    transition: transform 0.3s;
}


/* ══════════════════════════════════════════════
   RESPONSIVE -- Mobile first energy
   ══════════════════════════════════════════════ */
@media (max-width: 900px) {
    .hero { align-items: center; flex-direction: column; }
    .hero__cory {
        position: relative; right: auto; bottom: auto;
        height: auto; max-height: 55vh; margin: 0 auto;
    }
    .hero__content {
        text-align: center; margin: 0 auto;
        padding: 120px 24px 32px;
    }
    .hero__sub { margin-left: auto; margin-right: auto; }
    .hero__actions { justify-content: center; }
    .hero__glow { display: none; }
    .tools-teaser__inner { grid-template-columns: 1fr; gap: 40px; }
    .footer__inner { grid-template-columns: 1fr; text-align: center; }
    .footer__social { justify-content: center; }
    .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
    .about-hero__inner { grid-template-columns: 1fr; text-align: center; }
    .steps__grid { grid-template-columns: 1fr; }
    .she-section { padding: 100px 0; position: relative; }
    .blog-card { grid-template-columns: 1fr; gap: 8px; padding: 28px 0; }
    .blog-card__number { display: none; }
    .blog-card__arrow { display: none; }
    .testimonials__grid { grid-template-columns: 1fr; }
    .reels-grid { grid-template-columns: repeat(3, 1fr); }
    .nav__social { display: none; }
    .specialty-cards__grid { grid-template-columns: 1fr; }
    .story-split__inner { grid-template-columns: 1fr; gap: 40px; }
    .story-split--reverse .story-split__inner { direction: ltr; }
    .process__steps { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 600px) {
    .nav__links { display: none; }
    .nav__toggle { display: block; }
    .nav__links.open {
        display: flex; flex-direction: column;
        position: absolute; top: 72px; left: 0; right: 0;
        background: var(--white); padding: 24px; gap: 16px;
        box-shadow: 0 12px 40px rgba(45,34,80,0.1);
    }
    h1 { font-size: 2rem; }
    .hero__cory { max-height: 48vh; }
    .hero__content { padding-top: 100px; }
    .route { padding: 22px 0; }
    .pullquote { font-size: 1.2rem; }
    .about-tabs { flex-direction: column; }
    .about-tab { text-align: left; border-bottom: none; border-left: 3px solid transparent; padding: 12px 24px; }
    .about-tab--active { border-left-color: var(--pink); }
    .email-capture__form {
        flex-direction: column;
    }
    .email-capture__input {
        min-width: 100%;
    }
    .reels-grid { grid-template-columns: repeat(2, 1fr); }
    .floating-cta { bottom: 16px; right: 16px; }
    .floating-cta .btn { padding: 12px 20px; font-size: 0.82rem; }
    .rate-cards { grid-template-columns: 1fr; }
    .specialty-cards__grid { grid-template-columns: 1fr; }
    .reach-out__buttons { flex-direction: column; align-items: center; }
}
