/* ============================================================
   Trovare Therapy — main.css
   Brand palette + full layout styles
   ============================================================ */

:root {
    --cream:      #FFF4EC;
    --blush:      #FFDBDA;
    --lavender:   #E0D3DE;
    --slate:      #9DA3A4;
    --plum:       #604D53;
    --white:      #ffffff;
    --text-dark:  #3a2f32;
    --text-mid:   #3a2f32;
    --pad:        6rem;
}

/* ─── RESET & BASE ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Jost', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    font-weight: 400;
    line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    line-height: 1.15;
}

/* ─── KILL ANY WP-INJECTED SUB-MENUS ────────────────────── */
#mainNav .sub-menu,
#mainNav ul ul,
#mainNav .children {
    display: none !important;
}
#mainNav .menu-item-has-children > a .sub-menu-toggle,
#mainNav .menu-item-has-children > a::after {
    display: none !important;
}

/* ─── NAVIGATION ────────────────────────────────────────── */
#mainNav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.2rem 4rem;
    background: rgba(255,244,236,0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(96,77,83,0.1);
    transition: box-shadow 0.3s ease;
}
.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--plum);
    letter-spacing: 0.04em;
    text-decoration: none;
    line-height: 1;
}
.nav-logo img { max-height: 50px; width: auto; }
.nav-logo span {
    display: block;
    font-size: 0.58rem;
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--slate);
    margin-top: 2px;
}
.nav-links {
    display: flex; gap: 0.25rem;
    list-style: none; align-items: center;
}
.nav-links li { position: relative; }
.nav-links a {
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--text-dark);
    text-decoration: none;
    padding: 0.5rem 0.85rem;
    transition: color 0.2s;
    display: flex; align-items: center; gap: 4px;
}
.nav-links a:hover { color: var(--plum); }
.nav-links a.current-page { color: var(--plum); border-bottom: 1px solid var(--plum); }

.nav-cta {
    background: var(--plum) !important;
    color: var(--white) !important;
    padding: 0.5rem 1.3rem !important;
}
.nav-cta:hover { background: var(--text-dark) !important; }

/* Hamburger */
.nav-toggle {
    display: none; cursor: pointer;
    flex-direction: column; gap: 5px;
    background: none; border: none; padding: 4px;
}
.nav-toggle span {
    width: 24px; height: 1.5px;
    background: var(--plum); display: block;
    transition: all 0.3s;
}

/* ─── BUTTONS ───────────────────────────────────────────── */
.btn-primary {
    background: var(--plum);
    color: var(--white);
    padding: 0.85rem 2.2rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.73rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    border: none; cursor: pointer;
    display: inline-block;
    transition: background 0.25s, transform 0.2s;
}
.btn-primary:hover { background: var(--text-dark); transform: translateY(-1px); }

.btn-ghost {
    color: var(--plum);
    font-family: 'Jost', sans-serif;
    font-size: 0.73rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid var(--plum);
    padding-bottom: 2px;
    transition: all 0.2s;
    display: inline-block;
}
.btn-ghost:hover { color: var(--text-dark); border-color: var(--text-dark); }

.btn-light {
    background: var(--cream);
    color: var(--plum);
    padding: 0.85rem 2.2rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.73rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    margin-top: 1.2rem;
    transition: background 0.2s;
}
.btn-light:hover { background: var(--blush); }

/* ─── SHARED SECTION ATOMS ──────────────────────────────── */
.section-eyebrow {
    font-size: 0.67rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--slate);
    margin-bottom: 0.9rem;
}
.section-title {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    line-height: 1.12;
    color: var(--plum);
    margin-bottom: 1.2rem;
}
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}
.section-header p:not(.section-eyebrow) {
    font-size: 1rem;
    color: var(--slate);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ─── NAV OFFSET ────────────────────────────────────────── */
body { padding-top: 90px; }


/* ─── HERO ──────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-top: -90px;
    padding-top: 90px;
}
.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-video {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(42, 28, 32, 0.52);
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 820px;
    padding: 0 2rem;
    color: var(--cream);
}.hero { margin-top: -90px; padding-top: 90px; } /* hero resets this since it handles its own offset */

/* ─── HERO ──────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 80px;
    overflow: hidden;
}
.hero-left { display: none; }
.hero-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255,244,236,0.75);
    margin-bottom: 1.5rem;
}
.hero-title {
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 300;
}
.hero-title em { font-style: italic; color: var(--blush); }
.hero-sub {
    font-size: 1.05rem;
    line-height: 1.85;
    color: rgba(255,244,236,0.88);
    max-width: 440px;
    margin-bottom: 2.5rem;
    font-weight: 300;
}
.hero-actions { display: flex; gap: 1.2rem; flex-wrap: wrap; align-items: center; }
.hero-right {
    position: relative;
    background: var(--lavender);
    overflow: hidden;
}
.hero-img, .hero-img-bg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}
.hero-img-bg {
    background: linear-gradient(135deg, var(--blush) 0%, var(--lavender) 45%, #c8b8c4 100%);
}
.hero-shape {
    position: absolute;
    width: 340px; height: 340px;
    border-radius: 50% 40% 60% 50%;
    background: var(--blush);
    opacity: 0.5;
    top: 8%; right: -80px; z-index: 1;
    pointer-events: none;
}
.hero-img-overlay {
    position: absolute; inset: 0; z-index: 2;
    display: flex; align-items: flex-end;
    padding: 3rem;
    background: linear-gradient(to top, rgba(96,77,83,0.32) 0%, transparent 55%);
}
.hero-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--white);
    font-weight: 300;
    line-height: 1.5;
    max-width: 300px;
}

/* Hero entrance animation */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow  { animation: fadeUp 0.8s 0.1s ease both; }
.hero-title    { animation: fadeUp 0.8s 0.25s ease both; }
.hero-sub      { animation: fadeUp 0.8s 0.4s ease both; }
.hero-actions  { animation: fadeUp 0.8s 0.55s ease both; }

/* ─── MEET ──────────────────────────────────────────────── */
.meet-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
    background: var(--white);
}
.meet-img-wrap { position: relative; overflow: hidden; min-height: 480px; }
.meet-img-bg {
    position: absolute; inset: 0;
    background: linear-gradient(160deg, var(--lavender) 0%, var(--blush) 100%);
}
.meet-blob {
    position: absolute;
    width: 75%; height: 86%;
    top: 7%; left: 12%;
    border-radius: 60% 40% 50% 55% / 50% 55% 45% 60%;
    background: var(--blush);
    overflow: hidden; z-index: 1;
}
.meet-blob-inner {
    width: 100%; height: 100%;
    background: linear-gradient(160deg, #f5caca 0%, var(--lavender) 100%);
}
.meet-photo {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; z-index: 2;
}
.meet-content {
    padding: 6rem 5rem;
    display: flex; flex-direction: column; justify-content: center;
}
.meet-content p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-mid);
    margin-bottom: 1rem;
    font-weight: 300;
}
.credentials {
    margin-top: 2rem;
    display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.credential-tag {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--plum);
    background: var(--cream);
    border: 1px solid var(--lavender);
    padding: 0.35rem 0.9rem;
    border-radius: 20px;
    white-space: nowrap;
}
.credential-tag::before { content: none; }

/* ─── SPECIALTIES ───────────────────────────────────────── */
.specialties-section { padding: 7rem 6rem; background: var(--cream); }
.specialties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}
.specialty-card {
    background: var(--white);
    padding: 2.8rem 2.5rem;
    position: relative; overflow: hidden;
    cursor: pointer; text-decoration: none;
    display: block; color: inherit;
    transition: background 0.3s, transform 0.3s;
}
.specialty-card::before {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px; background: var(--plum);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.35s ease;
}
.specialty-card:hover::before { transform: scaleX(1); }
.specialty-card:hover { background: var(--cream); transform: translateY(-3px); }
.specialty-icon {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--blush);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.4rem;
    font-size: 1.2rem;
}
.specialty-card h3 { font-size: 1.25rem; margin-bottom: 0.8rem; color: var(--plum); }
.specialty-card p { font-size: 0.88rem; line-height: 1.8; color: var(--slate); font-weight: 300; }
.specialty-arrow {
    margin-top: 1.2rem;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--plum);
    display: flex; align-items: center; gap: 6px;
    opacity: 0; transform: translateX(-6px);
    transition: opacity 0.3s, transform 0.3s;
    font-family: 'Jost', sans-serif;
}
.specialty-card:hover .specialty-arrow { opacity: 1; transform: translateX(0); }

/* ─── HEALING LOOKS LIKE ────────────────────────────────── */
.healing-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--lavender);
    min-height: 60vh;
}
.healing-content {
    padding: 7rem 5rem;
    display: flex; flex-direction: column; justify-content: center;
}
.healing-list {
    margin-top: 2rem;
    list-style: none;
    display: flex; flex-direction: column; gap: 1.1rem;
}
.healing-list li {
    display: flex; align-items: flex-start; gap: 1rem;
    font-size: 0.95rem; line-height: 1.75;
    color: var(--text-mid);
}
.healing-list li::before {
    content: '—'; color: var(--plum);
    flex-shrink: 0; margin-top: 0.1em;
}
.healing-img {
    position: relative; overflow: hidden; min-height: 400px;
}
.healing-img-bg, .healing-photo {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}
.healing-img-bg {
    background: linear-gradient(135deg, var(--blush) 0%, #c9b5c3 100%);
}

/* ─── GETTING STARTED ───────────────────────────────────── */
.getting-started-section { padding: 7rem 6rem; background: var(--white); }
.getting-started-page { padding-top: 80px; }
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}
.step-card {
    padding: 2.5rem 2rem;
    background: var(--cream);
}
.step-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    color: var(--blush);
    font-weight: 300;
    line-height: 1;
    margin-bottom: 1rem;
}
.step-card h3 { font-size: 1.1rem; margin-bottom: 0.7rem; color: var(--plum); }
.step-card p { font-size: 0.85rem; line-height: 1.8; color: var(--slate); }

/* Contact Form */
.contact-form-wrap {
    margin-top: 4.5rem;
    max-width: 680px;
    margin-left: auto; margin-right: auto;
}
.contact-form-wrap h2, .contact-form-wrap h3 {
    font-size: 2rem; text-align: center;
    color: var(--plum); margin-bottom: 0.5rem;
}
.form-sub {
    text-align: center;
    font-size: 0.85rem;
    color: var(--slate);
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
    font-size: 0.67rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--slate);
}
.form-group input,
.form-group textarea,
.form-group select {
    border: 1px solid rgba(96,77,83,0.22);
    border-radius: 0;
    padding: 0.85rem 1rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    background: var(--cream);
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
    -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--plum); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { margin-top: 1.5rem; text-align: center; }
.form-message {
    padding: 1rem 1.2rem;
    margin-bottom: 1.2rem;
    font-size: 0.88rem;
    border-radius: 2px;
}
.form-success { background: #f0faf5; color: #2a6b4a; border: 1px solid #b2dfc8; }
.form-error   { background: #fdf0f0; color: #8b2020; border: 1px solid #f0b2b2; }
.btn-primary[disabled] { opacity: 0.6; cursor: wait; }

/* ─── CONSULTING ─────────────────────────────────────────── */
.consulting-section {
    padding: 7rem 6rem;
    background: var(--plum);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}
.consulting-content .section-eyebrow { color: rgba(255,244,236,0.45); }
.consulting-content .section-title   { color: var(--cream); }
.consulting-content p {
    color: rgba(255,244,236,0.72);
    font-size: 0.95rem;
    line-height: 1.9;
    margin-bottom: 1rem;
}
.consulting-services { display: flex; flex-direction: column; gap: 1.1rem; }
.consulting-item {
    padding: 1.5rem 1.8rem;
    background: rgba(255,244,236,0.07);
    border-left: 3px solid rgba(255,219,218,0.35);
    cursor: pointer;
    text-decoration: none;
    display: block; color: inherit;
    transition: background 0.25s;
}
.consulting-item:hover { background: rgba(255,244,236,0.13); }
.consulting-item h4 { font-size: 1rem; color: var(--cream); margin-bottom: 0.3rem; }
.consulting-item p { font-size: 0.82rem; color: rgba(255,244,236,0.55); line-height: 1.7; margin: 0; }

/* ─── FAQ ────────────────────────────────────────────────── */
.faq-section { padding: 7rem 6rem; background: var(--cream); }
.faq-list {
    max-width: 760px;
    margin: 3rem auto 0;
}
.faq-item { border-bottom: 1px solid rgba(96,77,83,0.14); }
.faq-question {
    width: 100%; background: none; border: none;
    display: flex; align-items: center;
    justify-content: space-between;
    padding: 1.6rem 0;
    cursor: pointer; text-align: left;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem; font-weight: 400;
    color: var(--plum); gap: 1rem;
    transition: color 0.2s;
}
.faq-question:hover { color: var(--text-dark); }
.faq-icon {
    width: 28px; height: 28px;
    border: 1px solid rgba(96,77,83,0.3);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
    color: var(--plum);
    transition: all 0.3s;
    line-height: 1;
}
.faq-item.open .faq-icon {
    background: var(--plum); color: var(--white);
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
    max-height: 400px;
    padding-bottom: 1.5rem;
}
.faq-answer p {
    font-size: 0.92rem;
    line-height: 1.9;
    color: var(--text-mid);
    padding-right: 2.5rem;
}


/* ─── FAQ STANDALONE PAGE ────────────────────────────────── */
.faq-page-body { padding: 5rem 0; background: var(--white); }
.faq-page-inner { max-width: 860px; margin: 0 auto; padding: 0 3rem; }
.faq-intro { margin-bottom: 3.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--lavender); }
.faq-intro p { font-size: 1rem; line-height: 1.9; color: var(--text-mid); }
.faq-intro a { color: var(--plum); text-decoration: underline; }
.faq-category { margin-bottom: 3rem; }
.faq-category-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--slate);
    margin-bottom: 0.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--lavender);
}
.faq-category .faq-list { max-width: 100%; margin: 0; }
.faq-cta {
    margin-top: 4rem;
    padding: 3.5rem;
    background: var(--cream);
    text-align: center;
    border-top: 2px solid var(--lavender);
}
.faq-cta h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--plum);
    font-weight: 300;
    margin: 0.5rem 0 1rem;
}
.faq-cta p { font-size: 0.9rem; color: var(--text-mid); margin-bottom: 2rem; line-height: 1.8; }
.faq-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.faq-hero { background: var(--plum); }
.faq-overlay { background: rgba(60,47,50,0.55); }
/* ─── LOCATION ───────────────────────────────────────────── */
.location-section {
    padding: 5rem 6rem;
    background: var(--white);
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}
.location-info h2 { font-size: 2.2rem; color: var(--plum); margin-bottom: 1rem; }
.location-info > p { font-size: 0.9rem; color: var(--slate); line-height: 1.8; margin-bottom: 0.5rem; }
.address {
    margin-top: 1.5rem;
    padding: 1.2rem 1.5rem;
    background: var(--cream);
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 2;
}
.address strong { display: block; font-weight: 500; color: var(--plum); margin-bottom: 0.2rem; }
.address a { color: var(--plum); text-decoration: none; }
.address a:hover { text-decoration: underline; }
.map-wrap { position: relative; height: 320px; overflow: hidden; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }
.map-placeholder {
    width: 100%; height: 100%;
    background: var(--lavender);
    display: flex; align-items: center; justify-content: center;
    padding: 2rem; text-align: center;
}
.map-placeholder p {
    font-size: 0.8rem;
    color: var(--plum);
    opacity: 0.55;
    letter-spacing: 0.06em;
}
.map-overlay-label {
    position: absolute; bottom: 1rem; left: 1rem;
    background: var(--white);
    padding: 0.55rem 1rem;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--plum);
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

/* ─── FOOTER ─────────────────────────────────────────────── */
#site-footer {
    background: var(--text-dark);
    color: rgba(255,244,236,0.65);
    padding: 4rem 6rem 2rem;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,244,236,0.1);
}
.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    color: var(--cream);
    font-weight: 400;
    margin-bottom: 0.5rem;
    display: block;
    line-height: 1.3;
    text-decoration: none;
}
.footer-logo-sub {
    font-size: 0.6rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255,244,236,0.3);
    margin-bottom: 1.2rem;
    display: block;
}
.footer-desc {
    font-size: 0.84rem;
    line-height: 1.9;
    color: rgba(255,244,236,0.45);
    max-width: 280px;
}
.footer-socials { display: flex; gap: 0.7rem; margin-top: 1.5rem; }
.social-link {
    width: 36px; height: 36px;
    border: 1px solid rgba(255,244,236,0.18);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,244,236,0.45);
    text-decoration: none;
    font-size: 0.72rem; font-weight: 500;
    transition: all 0.2s;
}
.social-link:hover {
    background: var(--blush);
    color: var(--plum);
    border-color: var(--blush);
}
.footer-col h4 {
    font-family: 'Jost', sans-serif;
    font-size: 0.67rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--cream); font-weight: 400;
    margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a {
    text-decoration: none;
    font-size: 0.82rem;
    color: rgba(255,244,236,0.45);
    transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--blush); }
.footer-bottom {
    padding-top: 1.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; gap: 0.8rem;
}
.footer-bottom p { font-size: 0.7rem; color: rgba(255,244,236,0.22); letter-spacing: 0.07em; }
.footer-bottom a { color: rgba(255,244,236,0.32); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--blush); }

/* ─── INNER PAGE ────────────────────────────────────────── */
.inner-page { padding-top: 0; }
.page-container {
    max-width: 860px;
    margin: 0 auto;
    padding: 5rem 2rem 6rem;
}
.page-header { margin-bottom: 2.5rem; }
.page-header h1 { font-size: clamp(2rem, 4vw, 3.2rem); color: var(--plum); }
.page-content p { font-size: 1rem; line-height: 1.9; color: var(--text-mid); margin-bottom: 1.2rem; }

/* ─── SCROLL FADE IN ─────────────────────────────────────── */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1100px) {
    #mainNav { padding: 1rem 2.5rem; }
    .hero { grid-template-columns: 1fr; }
    .hero-right { min-height: 55vw; }
    .hero-left { padding: 5rem 3rem; }
    .meet-section { grid-template-columns: 1fr; }
    .meet-img-wrap { min-height: 50vw; }
    .healing-section { grid-template-columns: 1fr; }
    .healing-img { min-height: 42vw; }
    .specialties-grid { grid-template-columns: 1fr 1fr; }
    .steps-grid { grid-template-columns: 1fr 1fr; }
    .consulting-section { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 4rem; }
    .location-section { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .specialties-section,
    .faq-section,
    .getting-started-section,
    .location-section { padding-left: 3rem; padding-right: 3rem; }
}

@media (max-width: 768px) {
    #mainNav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .specialties-grid,
    .steps-grid,
    .form-grid { grid-template-columns: 1fr; }
    .form-group.full { grid-column: 1; }
    .footer-top { grid-template-columns: 1fr; }
    .specialties-section,
    .faq-section,
    .getting-started-section,
    .healing-content,
    .consulting-section,
    .location-section { padding-left: 1.5rem; padding-right: 1.5rem; }
    #site-footer { padding: 3rem 1.5rem 1.5rem; }
    .hero-left { padding: 4rem 1.5rem; }
    .meet-content { padding: 4rem 1.5rem; }
    .faq-section { padding-left: 1.5rem; padding-right: 1.5rem; }
}

/* Mobile nav open */
#mainNav.open .nav-links {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream);
    padding: 0.5rem 0;
    z-index: 999; gap: 0;
    border-top: 1px solid rgba(96,77,83,0.1);
    box-shadow: 0 8px 24px rgba(96,77,83,0.12);
}
#mainNav.open .nav-links li {
    border-bottom: 1px solid rgba(96,77,83,0.07);
}
#mainNav.open .nav-links a {
    padding: 0.85rem 1.5rem;
    font-size: 0.85rem;
    display: block;
    border-bottom: none;
}

#mainNav.open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
#mainNav.open .nav-toggle span:nth-child(2) { opacity: 0; }
#mainNav.open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* ============================================================
   INNER PAGES — Service, Specialty, Consulting, FAQ
   ============================================================ */

/* ─── INNER HERO ────────────────────────────────────────── */
.inner-hero {
    position: relative;
    min-height: 42vh;
    display: flex; align-items: flex-end;
    padding: 9rem 6rem 4rem;
    background: var(--plum);
    overflow: hidden;
}
.inner-hero-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
}
.inner-hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to top, rgba(58,47,50,0.78) 0%, rgba(96,77,83,0.4) 100%);
}
.specialty-overlay { background: linear-gradient(to top, rgba(58,47,50,0.72) 0%, rgba(96,77,83,0.3) 100%); }
.consulting-overlay { background: linear-gradient(135deg, rgba(96,77,83,0.9) 0%, rgba(58,47,50,0.7) 100%); }
.faq-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: var(--plum);
}
.inner-hero-content {
    position: relative; z-index: 2;
    max-width: 680px;
}
.inner-hero-content .section-eyebrow { color: rgba(255,244,236,0.55); margin-bottom: 0.6rem; }
.inner-hero-title {
    font-size: clamp(2.4rem, 4.5vw, 4rem);
    color: var(--white);
    font-weight: 300;
    margin-bottom: 0.6rem;
    line-height: 1.08;
}
.inner-hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: rgba(255,244,236,0.75);
    font-weight: 300;
}
.specialty-hero-icon {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    display: block;
}

/* Hero accent backgrounds for service pages (shown when no featured image) */
.hero-bg--individual { background: linear-gradient(135deg, var(--plum) 0%, #8a6d74 100%); }
.hero-bg--couples    { background: linear-gradient(135deg, #7a5c63 0%, var(--plum) 100%); }
.hero-bg--group      { background: linear-gradient(135deg, var(--plum) 0%, #5a4850 100%); }
.hero-bg--intensives { background: linear-gradient(135deg, #4a3840 0%, var(--plum) 100%); }

/* ─── SERVICE / SPECIALTY BODY ──────────────────────────── */
.service-body { padding: 5rem 6rem; background: var(--white); }

.service-body-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.service-intro {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    line-height: 1.6;
    color: var(--plum);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.service-main > p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-mid);
    margin-bottom: 1.2rem;
    font-weight: 300;
}

.service-approach,
.service-who {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(96,77,83,0.12);
}
.service-approach h2,
.service-who h2 {
    font-size: 1.5rem;
    color: var(--plum);
    margin-bottom: 1rem;
}
.service-approach p,
.service-who > p {
    font-size: 0.95rem;
    line-height: 1.9;
    color: var(--text-mid);
}

.who-list {
    list-style: none;
    display: flex; flex-direction: column; gap: 0.85rem;
    margin-top: 0.5rem;
}
.who-list li {
    display: flex; align-items: flex-start; gap: 0.9rem;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-mid);
    font-weight: 300;
}
.who-list li::before {
    content: '—';
    color: var(--plum);
    flex-shrink: 0;
    margin-top: 0.08em;
}

.service-cta-block {
    margin-top: 3rem;
    padding: 2.5rem;
    background: var(--cream);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}
.service-cta-block > p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--plum);
    margin: 0;
}

/* ─── SIDEBAR ───────────────────────────────────────────── */
.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-top: 0.5rem;
}

.sidebar-facts {
    background: var(--cream);
    padding: 1.8rem;
}
.sidebar-facts h3,
.sidebar-related h3 {
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--slate);
    margin-bottom: 1.2rem;
    font-family: 'Jost', sans-serif;
    font-weight: 400;
}

.fact-row {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(96,77,83,0.1);
}
.fact-row:last-child { border-bottom: none; }
.fact-label {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--slate);
    font-family: 'Jost', sans-serif;
}
.fact-value {
    font-size: 0.92rem;
    color: var(--plum);
    font-weight: 400;
}

.modalities-list {
    list-style: none;
    display: flex; flex-direction: column; gap: 0.5rem;
}
.modalities-list li {
    font-size: 0.85rem;
    color: var(--text-mid);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(96,77,83,0.08);
    display: flex; align-items: center; gap: 0.5rem;
}
.modalities-list li::before {
    content: '·';
    color: var(--plum);
    font-size: 1.2rem;
    line-height: 1;
}

.sidebar-related ul { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.sidebar-related ul li a {
    font-size: 0.85rem;
    color: var(--text-mid);
    text-decoration: none;
    padding: 0.4rem 0;
    display: block;
    border-bottom: 1px solid rgba(96,77,83,0.07);
    transition: color 0.2s;
}
.sidebar-related ul li a:hover { color: var(--plum); }
.sidebar-related ul li:last-child a { border-bottom: none; }

.sidebar-cta {
    padding: 1.5rem;
    background: var(--lavender);
    text-align: center;
}
.sidebar-cta p {
    font-size: 0.85rem;
    color: var(--text-mid);
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

/* ─── CONSULTING MAIN PAGE ──────────────────────────────── */
.consulting-main-intro {
    max-width: 680px;
    margin: 0 auto 0;
}
.consulting-main-intro .service-intro { text-align: center; }
.consulting-main-intro p:last-child {
    text-align: center;
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-mid);
}

.consulting-cards-section {
    padding: 3rem 6rem 6rem;
    background: var(--white);
}
.consulting-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    max-width: 1000px;
    margin: 0 auto;
}
.consulting-card {
    padding: 3rem 2.8rem;
    background: var(--cream);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    position: relative;
    overflow: hidden;
    transition: background 0.3s, transform 0.3s;
}
.consulting-card::before {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px; background: var(--plum);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.35s ease;
}
.consulting-card:hover::before { transform: scaleX(1); }
.consulting-card:hover { background: var(--white); transform: translateY(-3px); }
.consulting-card-icon {
    font-size: 1.5rem;
    color: var(--plum);
    opacity: 0.5;
}
.consulting-card h2 { font-size: 1.4rem; color: var(--plum); margin: 0; }
.consulting-card > p { font-size: 0.88rem; line-height: 1.8; color: var(--slate); }
.consulting-card .specialty-arrow { margin-top: auto; }

.consulting-bottom-cta {
    padding: 6rem;
    background: var(--lavender);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.consulting-bottom-cta p:not(.section-eyebrow) {
    font-size: 1rem;
    color: var(--text-mid);
    max-width: 480px;
    line-height: 1.8;
}

/* ─── FAQ STANDALONE ────────────────────────────────────── */
.faq-standalone-page .inner-hero {
    min-height: 36vh;
    background: var(--plum);
    padding: 5rem 6rem 3.5rem;
}
.faq-page-section {
    padding: 5rem 6rem;
    background: var(--cream);
}
.faq-intro {
    max-width: 700px;
    margin: 0 auto 4rem;
    text-align: center;
}
.faq-intro p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-mid);
}
.faq-categories {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}
.faq-category-title {
    font-size: 1rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--slate);
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--blush);
}
.faq-still-have-questions {
    max-width: 560px;
    margin: 5rem auto 0;
    text-align: center;
    padding-top: 4rem;
    border-top: 1px solid rgba(96,77,83,0.12);
    display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
}
.faq-still-have-questions p:not(.section-eyebrow) {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.8;
}

/* ─── INNER PAGE RESPONSIVE ─────────────────────────────── */
@media (max-width: 1024px) {
    .inner-hero { padding: 5rem 3rem 3.5rem; }
    .service-body { padding: 4rem 3rem; }
    .service-body-grid { grid-template-columns: 1fr; gap: 3rem; }
    .service-sidebar { flex-direction: row; flex-wrap: wrap; }
    .service-sidebar > * { flex: 1 1 280px; }
    .consulting-cards-section { padding: 2rem 3rem 4rem; }
    .consulting-bottom-cta { padding: 4rem 3rem; }
    .faq-page-section { padding: 4rem 3rem; }
}

@media (max-width: 768px) {
    .inner-hero { padding: 5rem 1.5rem 3rem; min-height: 52vw; }
    .service-body { padding: 3rem 1.5rem; }
    .consulting-cards-grid { grid-template-columns: 1fr; }
    .consulting-cards-section { padding: 2rem 1.5rem 3rem; }
    .consulting-bottom-cta { padding: 3rem 1.5rem; }
    .faq-page-section { padding: 3rem 1.5rem; }
    .service-sidebar { flex-direction: column; }
}


/* ============================================================
   LANDING PAGES — Services, Specialties, Consulting
   ============================================================ */

.landing-body {
    padding: 5rem 6rem 6rem;
    background: var(--white);
}

.landing-intro {
    max-width: 680px;
    margin: 0 auto 4rem;
    text-align: center;
}
.landing-intro p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-mid);
}

/* ─── Cards grid ────────────────────────────────────────── */
.landing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    margin-bottom: 5rem;
}
.landing-cards--3col {
    grid-template-columns: repeat(3, 1fr);
}

.landing-card {
    background: var(--cream);
    padding: 2.8rem 2.5rem;
    text-decoration: none;
    color: inherit;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    transition: background 0.3s, transform 0.25s;
}
.landing-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--plum);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}
.landing-card:hover::after { transform: scaleX(1); }
.landing-card:hover {
    background: var(--white);
    transform: translateY(-3px);
}

.landing-card-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
    opacity: 0.7;
    width: 36px;
    text-align: center;
}

.landing-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.landing-card-body h2 {
    font-size: 1.3rem;
    color: var(--plum);
    margin: 0;
    line-height: 1.2;
}
.landing-card-sub {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1rem;
    color: var(--slate);
    margin: 0;
}
.landing-card-desc {
    font-size: 0.88rem;
    line-height: 1.8;
    color: var(--text-mid);
    margin: 0.3rem 0 0;
    font-weight: 300;
}
.landing-card-link {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--plum);
    margin-top: 0.8rem;
    display: inline-block;
    opacity: 0.6;
    transition: opacity 0.3s, transform 0.3s;
    font-family: 'Jost', sans-serif;
}
.landing-card:hover .landing-card-link {
    opacity: 1;
    transform: translateX(4px);
}

/* Static (non-clickable) cards */
.landing-card--static {
    cursor: default;
}
.landing-card--static::after { display: none; }
.landing-card--static:hover {
    background: var(--cream);
    transform: none;
}

/* ─── Bottom CTA ────────────────────────────────────────── */
.landing-cta {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(96,77,83,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}
.landing-cta p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--plum);
    font-style: italic;
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
    .landing-body { padding: 4rem 3rem 5rem; }
    .landing-cards--3col { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .landing-body { padding: 3rem 1.5rem 4rem; }
    .landing-cards,
    .landing-cards--3col { grid-template-columns: 1fr; }
    .landing-card { flex-direction: column; gap: 0.8rem; }
}

/* ══════════════════════════════════════════════════════════════════════
   ADDITIONS — Amy Wesson / Trovare Counseling and Consulting
   ══════════════════════════════════════════════════════════════════════ */

/* ── Font weight fix — darker text ──────────────────────────────────── */
body { color: #2e2428; }
p, li, address { color: #2e2428; font-weight: 400; }
.hero-sub, .landing-card-desc, .service-intro, .meet-content p { font-weight: 400; color: #2e2428; }
/* Hero text must always be light — sits over dark video overlay */
.hero-content .hero-eyebrow { color: var(--cream) !important; }
.hero-content .hero-title    { color: var(--cream) !important; }
.hero-content .hero-title em { color: var(--blush) !important; }
.hero-content .hero-sub      { color: var(--cream) !important; font-weight: 300;
    font-size: 0.68rem; letter-spacing: 0.28em; text-transform: uppercase;
    font-family: 'Jost', sans-serif; max-width: 440px; line-height: 1.85; }
.hero-actions .btn-ghost-light {
    font-size: 0.68rem !important;
    letter-spacing: 0.28em !important;
    text-transform: uppercase !important;
    font-family: 'Jost', sans-serif !important;
    font-weight: 400 !important;
    border-bottom: 1px solid rgba(255,244,236,0.5) !important;
    padding-bottom: 2px !important;
    background: none !important;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
}

/* ── Nav logo — full name ────────────────────────────────────────────── */
.nav-logo { font-size: 1rem; letter-spacing: 0.01em; }

/* ── Dropdown nav ────────────────────────────────────────────────────── */
.has-dropdown { position: relative; }
.has-dropdown > a { display: flex; align-items: center; gap: 0.3rem; }
.nav-arrow { font-size: 0.6rem; opacity: 0.6; transition: transform 0.2s; }
.has-dropdown:hover .nav-arrow { transform: rotate(180deg); }

.nav-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 1px solid rgba(96,77,83,0.12);
    border-radius: 4px;
    box-shadow: 0 8px 32px rgba(96,77,83,0.12);
    min-width: 220px;
    padding: 0.5rem 0;
    list-style: none;
    margin: 0;
    z-index: 200;
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown { display: block; }
.nav-dropdown li { padding: 0; }
.nav-dropdown a {
    display: block;
    padding: 0.6rem 1.2rem;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #3a2f32;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}
.nav-dropdown a:hover { background: var(--cream); color: var(--plum); }

/* ── Service photo grid ──────────────────────────────────────────────── */
.services-overview-section { padding: 5rem var(--side-pad); background: var(--white); }
.services-photo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}
.service-photo-card { display: block; text-decoration: none; color: inherit; border-radius: 4px; overflow: hidden; }
.service-photo-wrap { position: relative; overflow: hidden; aspect-ratio: 4/3; background: var(--lavender); }
.service-photo { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.service-photo-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, var(--blush) 0%, var(--lavender) 100%); }
.service-photo-card:hover .service-photo { transform: scale(1.04); }
.service-photo-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(60,47,50,0.88) 0%, rgba(60,47,50,0.4) 60%, transparent 100%);
    padding: 2rem 1.8rem 1.8rem;
    color: #fff;
    transition: padding 0.3s;
}
.service-photo-card:hover .service-photo-overlay { padding-bottom: 2.2rem; }
.service-photo-overlay h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin: 0 0 0.4rem;
    color: #fff;
}
.service-photo-overlay p { font-size: 0.82rem; font-weight: 300; margin: 0 0 0.8rem; opacity: 0.9; color: rgba(255,255,255,0.9); }
.service-photo-link { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blush); opacity: 0; transition: opacity 0.3s; }
.service-photo-card:hover .service-photo-link { opacity: 1; }

/* ── Approach band ────────────────────────────────────────────────────── */
.approach-band { background: var(--plum); padding: 4rem var(--side-pad); }
.approach-band-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.approach-item { text-align: center; color: var(--cream); }
.approach-icon { font-size: 1.8rem; display: block; margin-bottom: 1rem; opacity: 0.8; }
.approach-item h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 400; margin: 0 0 0.6rem; color: var(--blush); }
.approach-item p { font-size: 0.82rem; font-weight: 300; line-height: 1.7; color: rgba(255,244,236,0.8); margin: 0; }

/* ── FAQ cta link ─────────────────────────────────────────────────────── */
.faq-cta { text-align: center; margin-top: 2rem; }
.faq-cta a { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--plum); text-decoration: none; border-bottom: 1px solid var(--lavender); padding-bottom: 2px; transition: border-color 0.2s; }
.faq-cta a:hover { border-color: var(--plum); }

/* ── Location actions ─────────────────────────────────────────────────── */
.location-actions { margin-top: 1.5rem; }

/* ── Getting started rates section ───────────────────────────────────── */
.gs-rates {
    max-width: 720px;
    margin: 0 auto 4rem;
    padding: 3rem var(--side-pad);
    background: var(--cream);
    border-radius: 4px;
}
.gs-rates h2 { margin-bottom: 1rem; }
.gs-rates p { font-weight: 400; color: #2e2428; line-height: 1.85; }

/* ── Specialty hero icon ──────────────────────────────────────────────── */
.specialty-hero-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; opacity: 0.85; }

/* ── Specialty landing cards — clickable ─────────────────────────────── */
.specialties-landing .landing-card { cursor: pointer; }
.landing-card:not(.landing-card--static) { transition: background 0.3s, transform 0.25s; }
.landing-card:not(.landing-card--static):hover { background: var(--white); transform: translateY(-3px); }
.landing-card:not(.landing-card--static):hover .landing-card-link { opacity: 1; transform: translateX(4px); }

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .services-photo-grid { grid-template-columns: 1fr; }
    .approach-band-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .approach-band-inner { grid-template-columns: 1fr; }
    .nav-dropdown { left: 0; transform: none; }
}

/* ─── INTRO BAND ─────────────────────────────────────────── */
.intro-band { background: var(--plum); padding: 3.5rem var(--pad); }
.intro-band-inner { max-width: 860px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 3rem; flex-wrap: wrap; }
.intro-band-inner p { color: rgba(255,244,236,0.85); font-size: 1.05rem; line-height: 1.85; font-weight: 300; flex: 1; }
.btn-ghost-light { color: var(--cream) !important; border-color: rgba(255,244,236,0.4); white-space: nowrap; }
.btn-ghost-light:hover { border-color: var(--cream); background: rgba(255,244,236,0.1); }

/* ─── SERVICES GRID (homepage) ──────────────────────────── */
.services-section { padding: 6rem var(--pad); background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; margin: 3rem 0; max-width: 1200px; margin-left: auto; margin-right: auto; }
.service-card { background: var(--white); border-radius: 2px; overflow: hidden; border: 1px solid var(--lavender); transition: transform 0.25s, box-shadow 0.25s; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(96,77,83,0.12); }
.service-card-img { width: 100%; aspect-ratio: 4/3; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
.service-card:hover .service-card-img img { transform: scale(1.04); }
.service-card-body { padding: 1.8rem; }
.service-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--plum); margin-bottom: 0.6rem; font-weight: 400; }
.service-card p { font-size: 0.85rem; line-height: 1.8; color: var(--text-mid); margin-bottom: 1.2rem; }
.service-card-link { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--plum); text-decoration: none; font-family: 'Jost', sans-serif; }
.section-cta { text-align: center; margin-top: 2rem; padding-bottom: 1rem; }

/* ─── DUAL SECTION (speaking/consulting) ─────────────────── */
.dual-section { display: grid; grid-template-columns: 1fr 1fr; }
.dual-card { padding: 5rem; }
.dual-card--speaking { background: var(--lavender); }
.dual-card--consulting { background: var(--blush); }
.dual-card-inner { max-width: 520px; padding-left: 3rem; }
.dual-card h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--plum); margin: 0.6rem 0 1.2rem; font-weight: 300; line-height: 1.2; }
.dual-card p { font-size: 0.9rem; line-height: 1.85; color: var(--text-mid); margin-bottom: 1.8rem; }
.dual-card .section-eyebrow { color: var(--plum); opacity: 0.7; }
.dual-card .btn-ghost { border-color: var(--plum); color: var(--plum); }

/* ─── PSYCH TODAY SECTION ────────────────────────────────── */
.psych-today-section { padding: 1.5rem 6rem; background: var(--cream); border-top: 1px solid var(--lavender); border-bottom: 1px solid var(--lavender); }
.psych-today-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.psych-today-inner .section-eyebrow { margin: 0; font-size: 0.65rem; }
/* ─── ABOUT PAGE REFINEMENTS ─────────────────────────────── */
.about-main .credentials { margin-bottom: 2.5rem; }
.about-page .psych-today-section { padding: 2rem 6rem; }
.about-cta { margin-top: 0; }
.about-cta h2 { font-size: 2rem; }

/* Footer name wrapping fix */
.footer-col:first-child { min-width: 0; }
.footer-logo { word-break: break-word; }


/* ─── ABOUT PAGE ─────────────────────────────────────────── */
.about-main { padding: 5rem var(--pad) 6rem; background: var(--white); }
.about-main-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 340px 1fr; gap: 5rem; align-items: start; }
.about-photo { width: 100%; border-radius: 2px; display: block; }
.about-photo-placeholder { width: 100%; aspect-ratio: 3/4; background: var(--lavender); border-radius: 2px; }
.about-badges { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.8rem; }
.about-badges .btn-ghost, .about-badges .btn-primary { display: block; text-align: center; }
.about-lead { font-size: 1.05rem; line-height: 1.9; color: var(--text-mid); margin-bottom: 1.5rem; font-weight: 300; }
.about-more { margin-top: 1.5rem; }
.about-sub-heading { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--plum); font-weight: 400; margin: 2rem 0 0.8rem; }
.about-specialty-list { display: flex; flex-direction: column; gap: 1.5rem; margin: 1.5rem 0; }
.about-specialty-item h4 { font-family: 'Jost', sans-serif; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--plum); font-weight: 500; margin-bottom: 0.5rem; }
.about-specialty-item p { font-size: 0.9rem; line-height: 1.8; color: var(--text-mid); }
.learn-more-btn { background: none; border: 1px solid var(--lavender); color: var(--plum); padding: 0.6rem 1.5rem; font-family: 'Jost', sans-serif; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; margin-top: 1.5rem; transition: all 0.2s; }
.learn-more-btn:hover { background: var(--cream); border-color: var(--plum); }
.meet-actions { display: flex; gap: 1rem; margin-top: 1.5rem; flex-wrap: wrap; }
.about-cta { padding: 5rem var(--pad); background: var(--plum); text-align: center; }
.about-cta-inner { max-width: 680px; margin: 0 auto; }
.about-cta h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; color: var(--cream); font-weight: 300; margin-bottom: 0.8rem; }
.about-cta p { color: rgba(255,244,236,0.75); margin-bottom: 2rem; }
.about-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.about-hero { background: var(--plum); }

/* ─── COUNSELING PAGE ────────────────────────────────────── */
.counseling-intro { padding: 4rem var(--pad) 3rem; background: var(--cream); }
.counseling-intro-inner { max-width: 860px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 3rem; flex-wrap: wrap; }
.counseling-intro-inner p { font-size: 1rem; line-height: 1.9; color: var(--text-mid); flex: 1; margin: 0; }
.service-detail { padding: 5rem var(--pad); background: var(--white); overflow: hidden; position: relative; }
.service-detail--alt { background: var(--cream); }
.service-detail-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.service-photo { width: 100%; border-radius: 2px; display: block; aspect-ratio: 4/3; object-fit: cover; }
.service-photo-placeholder { width: 100%; aspect-ratio: 4/3; background: var(--lavender); border-radius: 2px; }
.service-detail-content .section-eyebrow { margin-bottom: 0.6rem; }
.service-detail-content h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.5rem,2.5vw,2.1rem); color: var(--plum); font-weight: 300; line-height: 1.2; margin-bottom: 1.3rem; }
.service-detail-content p { font-size: 0.95rem; line-height: 1.9; color: var(--text-mid); margin-bottom: 1.8rem; }
.counseling-cta-band { padding: 5rem var(--pad); background: var(--plum); text-align: center; clear: both; position: relative; z-index: 1; }
.counseling-cta-band h2 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--cream); font-weight: 300; margin-bottom: 0.8rem; }
.counseling-cta-band p { color: rgba(255,244,236,0.75); margin-bottom: 2rem; }

/* ─── SPEAKING PAGE ──────────────────────────────────────── */
.speaking-intro { padding: 5rem var(--pad); background: var(--cream); }
.speaking-intro-inner { max-width: 780px; margin: 0 auto; }
.speaking-intro-inner h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; color: var(--plum); font-weight: 300; margin-bottom: 1.2rem; }
.speaking-intro-inner p { font-size: 1rem; line-height: 1.9; color: var(--text-mid); }
.speaking-topics { padding: 5rem var(--pad); background: var(--white); }
.speaking-topics-inner { max-width: 1200px; margin: 0 auto; }
.topic-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; margin-top: 2.5rem; }
.topic-card { background: var(--cream); padding: 2.2rem; border-left: 3px solid var(--plum); }
.topic-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--plum); font-weight: 400; margin-bottom: 0.8rem; }
.topic-card p { font-size: 0.875rem; line-height: 1.8; color: var(--text-mid); }
.speaking-logos { padding: 4rem var(--pad); background: var(--cream); text-align: center; }
.speaking-logos-inner { max-width: 900px; margin: 0 auto; }
.logo-grid { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: center; align-items: center; margin-top: 1.5rem; }
.speaking-cta { padding: 5rem var(--pad); background: var(--plum); text-align: center; }
.speaking-cta-inner { max-width: 600px; margin: 0 auto; }
.speaking-cta h2 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--cream); font-weight: 300; margin-bottom: 0.8rem; }
.speaking-cta p { color: rgba(255,244,236,0.75); margin-bottom: 2rem; }
.speaking-hero { background: var(--lavender); }
.speaking-hero .inner-hero-title, .speaking-hero .inner-hero-subtitle, .speaking-hero .section-eyebrow { color: var(--plum); }
.speaking-hero .inner-hero-overlay { background: rgba(224,211,222,0.3); }

/* ─── CONSULTING PAGE ────────────────────────────────────── */
.consulting-intro { padding: 5rem var(--pad); background: var(--cream); }
.consulting-intro-inner { max-width: 780px; margin: 0 auto; }
.consulting-intro-inner h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; color: var(--plum); font-weight: 300; margin-bottom: 1.2rem; }
.consulting-intro-inner p { font-size: 1rem; line-height: 1.9; color: var(--text-mid); }
.consulting-services { padding: 5rem var(--pad); background: var(--white); }
.consulting-services-inner { max-width: 1200px; margin: 0 auto; }
.consulting-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; margin-top: 2.5rem; }
.consulting-card { background: var(--cream); padding: 2.2rem; border-top: 3px solid var(--plum); }
.consulting-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--plum); font-weight: 400; margin-bottom: 0.8rem; }
.consulting-card p { font-size: 0.875rem; line-height: 1.8; color: var(--text-mid); }
.consulting-philosophy { padding: 5rem var(--pad); background: var(--lavender); overflow: hidden; }
.consulting-philosophy-inner { max-width: 780px; margin: 0 auto; }
.consulting-philosophy h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--plum); font-weight: 300; margin-bottom: 1.2rem; }
.consulting-philosophy p { font-size: 1rem; line-height: 1.9; color: var(--plum); }
.consulting-cta { padding: 5rem var(--pad); background: var(--plum); text-align: center; }
.consulting-cta-inner { max-width: 600px; margin: 0 auto; }
.consulting-cta h2 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--cream); font-weight: 300; margin-bottom: 0.8rem; }
.consulting-cta p { color: rgba(255,244,236,0.75); margin-bottom: 2rem; }
.consulting-hero { background: var(--plum); }

/* ─── CONTACT PAGE ───────────────────────────────────────── */
.contact-body { padding: 4rem var(--pad) 6rem; background: var(--white); }
.contact-body-inner { max-width: 780px; margin: 0 auto; }
.contact-options { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 4rem; }
.contact-option { padding: 2.5rem; background: var(--cream); }
.contact-option.contact-option--schedule { border-top: 3px solid var(--plum); }
.contact-option.contact-option--message { border-top: 3px solid var(--lavender); }
.contact-option h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--plum); font-weight: 300; margin: 0.4rem 0 0.8rem; }
.contact-option p { font-size: 0.875rem; line-height: 1.8; color: var(--text-mid); margin-bottom: 1.5rem; }
.contact-divider { display: none; }
.contact-form-wrap { margin-bottom: 3rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; color: var(--plum); }
.form-field input, .form-field textarea, .form-field select { width: 100%; border: 1px solid var(--lavender); border-radius: 2px; padding: 0.75rem 1rem; font-family: 'Jost', sans-serif; font-size: 0.9rem; color: var(--text-mid); background: var(--cream); box-sizing: border-box; transition: border-color 0.2s; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--plum); outline: none; }
.form-field textarea { min-height: 140px; resize: vertical; line-height: 1.7; }
.form-optional { font-weight: 300; opacity: 0.6; font-size: 0.85em; }
.contact-details { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; padding: 2.5rem; background: var(--cream); border-radius: 2px; margin-top: 2rem; }
.contact-detail-item { display: flex; flex-direction: column; gap: 0.3rem; }
.contact-detail-label { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--slate); font-weight: 500; }
.contact-detail-item a, .contact-detail-item span { font-size: 0.9rem; color: var(--text-mid); text-decoration: none; }
.contact-detail-item a:hover { color: var(--plum); }
.contact-hero { background: var(--plum); }

/* ─── RESPONSIVE ADDITIONS ───────────────────────────────── */
@media (max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(2,1fr); }
    .dual-section { grid-template-columns: 1fr; }
    .about-main-inner { grid-template-columns: 280px 1fr; gap: 3rem; }
    .service-detail-inner { grid-template-columns: 1fr; gap: 3rem; }
    .service-detail--alt .service-detail-img { order: -1; }
    .topic-grid, .consulting-grid { grid-template-columns: 1fr; }
    .contact-options { grid-template-columns: 1fr; }
    .contact-divider { display: none; }
}
@media (max-width: 768px) {
    .services-grid { grid-template-columns: 1fr; }
    .about-main-inner { grid-template-columns: 1fr; }
    .about-badges { flex-direction: row; }
    .contact-details { grid-template-columns: 1fr; }
    .about-cta-btns { flex-direction: column; align-items: center; }
    .meet-actions { flex-direction: column; }
    .intro-band-inner { flex-direction: column; text-align: center; }
}

/* ─── SPEAKING PAGE ADDITIONS ───────────────────────────── */
.speaking-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.speaking-intro-img img { width: 100%; border-radius: 2px; object-fit: cover; max-height: 500px; }
.partner-logo { max-height: 60px; max-width: 140px; object-fit: contain; filter: grayscale(100%); opacity: 0.6; transition: opacity 0.2s, filter 0.2s; }
.partner-logo:hover { opacity: 1; filter: none; }

/* ─── CONSULTING PAGE ADDITIONS ─────────────────────────── */
.consulting-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.consulting-intro-img img { width: 100%; border-radius: 2px; object-fit: cover; max-height: 500px; }

/* ─── HERO ACTIONS CENTERED ─────────────────────────────── */
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

@media (max-width: 768px) {
    .speaking-intro-grid,
    .consulting-intro-grid { grid-template-columns: 1fr; }
    .speaking-intro-img, .consulting-intro-img { order: -1; }
}


/* ─── NEW CONSULTING PAGE SECTIONS ──────────────────────── */
.consulting-intro-section { padding: 5rem var(--pad); background: var(--cream); }
.consulting-intro-inner { max-width: 780px; margin: 0 auto; }
.consulting-intro-inner .section-eyebrow { margin-bottom: 0.8rem; }
.consulting-intro-inner .section-title { margin-bottom: 1.2rem; }
.consulting-intro-inner p { font-size: 1rem; line-height: 1.9; color: var(--text-mid); }

.consulting-services-section { padding: 5rem var(--pad); background: var(--white); }
.consulting-services-inner { max-width: 1200px; margin: 0 auto; }
.consulting-services-inner .section-eyebrow { margin-bottom: 0.8rem; }
.consulting-services-inner .section-title { margin-bottom: 2.5rem; }
.consulting-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.consulting-card { background: var(--cream); padding: 2.2rem; border-top: 3px solid var(--plum); }
.consulting-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--plum); font-weight: 400; margin-bottom: 0.8rem; }
.consulting-card p { font-size: 0.875rem; line-height: 1.8; color: var(--text-mid); }

.consulting-philosophy-section { padding: 5rem var(--pad); background: var(--lavender); }
.consulting-philosophy-inner { max-width: 780px; margin: 0 auto; }
.consulting-philosophy-inner .section-eyebrow { margin-bottom: 0.8rem; }
.consulting-philosophy-inner .section-title { margin-bottom: 1.2rem; }
.consulting-philosophy-inner p { font-size: 1rem; line-height: 1.9; color: var(--plum); margin-bottom: 2rem; }

/* ─── CONTACT PAGE — single message option ───────────────── */
.contact-options--single { display: block; margin-bottom: 3rem; }
.contact-options--single .contact-option { max-width: 480px; border-top: 3px solid var(--lavender); }

/* ─── SPEAKING INTRO GRID ────────────────────────────────── */
.speaking-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; max-width: 1100px; margin: 0 auto; }
.speaking-intro-img { overflow: hidden; border-radius: 2px; }
.speaking-intro-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 900px) {
    .speaking-intro-grid { grid-template-columns: 1fr; }
    .consulting-cards { grid-template-columns: 1fr; }
}

/* ─── PARTNER LOGOS ──────────────────────────────────────── */
.partner-logo { max-height: 60px; width: auto; object-fit: contain; filter: grayscale(0.3); opacity: 0.85; transition: opacity 0.2s; }
.partner-logo:hover { opacity: 1; filter: none; }


/* ─── CONTACT PAGE — info only ───────────────────────────── */
.contact-body-inner--info-only {
    max-width: 680px;
    margin: 0 auto;
    padding: 5rem 2rem 6rem;
}
.contact-info-box {
    background: var(--white);
    border: 1px solid var(--lavender);
    padding: 3rem;
}
.contact-info-box .section-eyebrow { margin-bottom: 0.5rem; }
.contact-info-box h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--plum);
    font-weight: 300;
    margin-bottom: 2.5rem;
}
.contact-info-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}
.contact-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(96,77,83,0.1);
}
.contact-info-item:last-child { border-bottom: none; padding-bottom: 0; }
.contact-info-label {
    font-size: 0.67rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--slate);
    font-family: 'Jost', sans-serif;
}
.contact-info-item a,
.contact-info-item span {
    font-size: 0.95rem;
    color: var(--text-dark);
    text-decoration: none;
    line-height: 1.7;
}
.contact-info-item a:hover { color: var(--plum); }
.contact-info-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 1rem;
}
@media (max-width: 600px) {
    .contact-info-box { padding: 2rem 1.5rem; }
    .contact-info-actions { flex-direction: column; }
}


/* ============================================================
   MOBILE AUDIT FIXES
   ============================================================ */

/* ─── Reduce --pad on smaller screens ───────────────────── */
@media (max-width: 1100px) {
    :root { --pad: 3rem; }
}
@media (max-width: 768px) {
    :root { --pad: 1.5rem; }
}

/* ─── HERO — mobile ─────────────────────────────────────── */
@media (max-width: 768px) {
    .hero {
        min-height: 100svh;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .hero-content {
        padding: 0 1.5rem;
    }
    .hero-title {
        font-size: clamp(2.4rem, 9vw, 3.5rem);
    }
    .hero-sub {
        max-width: 100%;
        font-size: 1rem;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-actions {
        justify-content: center;
        gap: 1rem;
    }
    .hero-actions .btn-primary,
    .hero-actions .btn-ghost-light {
        width: 100%;
        text-align: center;
    }
}

/* ─── MEET / ABOUT SECTION — mobile ─────────────────────── */
@media (max-width: 768px) {
    .meet-section {
        grid-template-columns: 1fr;
    }
    .meet-img-wrap {
        min-height: 70vw;
        height: 70vw;
    }
    .meet-content {
        padding: 3rem 1.5rem;
    }
    .meet-actions {
        flex-direction: column;
        gap: 1rem;
    }
    .meet-actions .btn-primary,
    .meet-actions .btn-ghost {
        text-align: center;
    }
}

/* ─── SERVICES GRID — mobile ─────────────────────────────── */
@media (max-width: 900px) {
    .services-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
    .services-grid { grid-template-columns: 1fr; }
}

/* ─── HEALING SECTION — mobile ──────────────────────────── */
@media (max-width: 768px) {
    .healing-section { grid-template-columns: 1fr; }
    .healing-content { padding: 3rem 1.5rem; }
    .healing-img { min-height: 55vw; }
}

/* ─── LOCATION — mobile ──────────────────────────────────── */
@media (max-width: 768px) {
    .location-section {
        grid-template-columns: 1fr;
        padding: 3rem 1.5rem;
        gap: 2rem;
    }
    .map-wrap { height: 260px; }
}

/* ─── FOOTER — mobile ────────────────────────────────────── */
@media (max-width: 768px) {
    .footer-top { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 0.5rem; }
    .footer-desc { max-width: 100%; }
}

/* ─── INNER HERO — mobile ────────────────────────────────── */
@media (max-width: 768px) {
    .inner-hero {
        padding: 6rem 1.5rem 3rem;
        min-height: 36vh;
        align-items: flex-end;
    }
    .inner-hero-title { font-size: clamp(2rem, 8vw, 3rem); }
    .inner-hero-subtitle { font-size: 1rem; }
}

/* ─── COUNSELING PAGE — mobile ───────────────────────────── */
@media (max-width: 768px) {
    .counseling-intro-inner {
        flex-direction: column;
        gap: 1.5rem;
    }
    .service-detail { padding: 3rem 1.5rem; }
    .service-detail-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    /* image always on top on mobile */
    .service-detail--alt .service-detail-img { order: -1; }
    .counseling-cta-band { padding: 3rem 1.5rem; }
}

/* ─── ABOUT PAGE — mobile ────────────────────────────────── */
@media (max-width: 768px) {
    .about-main { padding: 3rem 1.5rem 4rem; }
    .about-main-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .about-photo-col { max-width: 320px; margin: 0 auto; width: 100%; }
    .about-badges .btn-ghost,
    .about-badges .btn-primary { display: block; text-align: center; }
    .about-cta { padding: 3rem 1.5rem; }
    .about-cta-btns { flex-direction: column; align-items: center; }
}

/* ─── SPEAKING PAGE — mobile ─────────────────────────────── */
@media (max-width: 768px) {
    .speaking-intro { padding: 3rem 1.5rem; }
    .speaking-intro-grid { grid-template-columns: 1fr; gap: 2rem; }
    .speaking-topics { padding: 3rem 1.5rem; }
    .topic-grid { grid-template-columns: 1fr; gap: 1.2rem; }
    .speaking-logos { padding: 3rem 1.5rem; }
    .logo-grid { gap: 1.5rem; }
    .speaking-cta { padding: 3rem 1.5rem; }
}

/* ─── CONSULTING PAGE — mobile ───────────────────────────── */
@media (max-width: 768px) {
    .consulting-intro-section { padding: 3rem 1.5rem; }
    .consulting-services-section { padding: 3rem 1.5rem; }
    .consulting-cards { grid-template-columns: 1fr; gap: 1.2rem; }
    .consulting-philosophy-section { padding: 3rem 1.5rem; }
}

/* ─── FAQ PAGE — mobile ──────────────────────────────────── */
@media (max-width: 768px) {
    .faq-page-inner { padding: 0 1.5rem; }
    .faq-cta { padding: 2rem 1.5rem; }
    .faq-cta-btns { flex-direction: column; align-items: stretch; }
    .faq-cta-btns .btn-primary,
    .faq-cta-btns .btn-ghost { text-align: center; }
    .faq-answer p { padding-right: 0; }
}

/* ─── CONTACT PAGE — mobile ──────────────────────────────── */
@media (max-width: 768px) {
    .contact-body-inner--info-only { padding: 3rem 1.5rem 4rem; }
    .contact-info-box { padding: 2rem 1.5rem; }
    .contact-info-actions { flex-direction: column; }
    .contact-info-actions .btn-primary,
    .contact-info-actions .btn-ghost { text-align: center; }
}

/* ─── PSYCH TODAY BADGE — mobile ─────────────────────────── */
@media (max-width: 768px) {
    .psych-today-section { padding: 1.5rem; }
    .psych-today-inner { flex-direction: column; text-align: center; }
}

/* ─── MOBILE NAV — ensure Book button shows ─────────────── */
#mainNav.open .nav-links .nav-cta {
    margin-top: 1rem;
    text-align: center;
    background: var(--plum) !important;
    color: var(--white) !important;
    padding: 0.9rem 1rem !important;
    border-bottom: none !important;
}

/* ─── GENERAL BUTTON TOUCH TARGETS ──────────────────────── */
@media (max-width: 768px) {
    .btn-primary, .btn-ghost, .btn-light {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}
