/*
Theme Name: Calm Creek Education
Theme URI: https://calmcreekeducation.com
Author: Calm Creek Education Services LLC
Description: Multi-section WordPress theme for Calm Creek Education. Warm, hand-painted folk direction. Earthy folk trio palette.
Version: 0.3.0
License: Proprietary
Text Domain: calm-creek
*/

:root {
    /* Earthy folk trio palette */
    --sage: #8ba96d;
    --sage-deep: #547039;
    --rose: #b85370;
    --rose-deep: #8a2f4c;
    --teal: #6ba8a3;
    --teal-deep: #3e7570;
    --mustard: #a57818;

    /* Warm neutrals */
    --cream: #f5ecd7;
    --cream-soft: #faf4e3;
    --cream-deep: #ebdfc2;

    /* Ink — darker for stronger contrast on cream backgrounds */
    --ink: #1f2d1b;
    --ink-soft: #3b4a37;
    --ink-mute: #667060;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--ink);
    line-height: 1.7;
    background: var(--cream);
    font-size: 17px;
}

a { color: var(--rose-deep); }
a:hover { color: var(--rose); }

.visually-hidden {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- Staging banner ---------- */
.staging-banner {
    background: var(--mustard);
    color: #1f2d1b;
    text-align: center;
    padding: 0.55rem 1rem;
    font-size: 0.82rem;
    letter-spacing: 0.02em;
    line-height: 1.4;
    position: relative;
    z-index: 101;
}
.staging-banner strong { font-weight: 700; margin-right: 0.35rem; }
@media (max-width: 600px) { .staging-banner { font-size: 0.76rem; padding: 0.5rem 0.75rem; } }

/* ---------- Header ---------- */
.site-header {
    background: var(--cream);
    border-bottom: 1px solid rgba(46,62,42,0.14);
    position: sticky;
    top: 0;
    z-index: 200;
}

.site-header-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    text-decoration: none;
    color: inherit;
}

.brand-mark {
    width: 60px;
    height: auto;
    flex-shrink: 0;
    display: inline-block;
}

.brand-mark svg { width: 100%; height: auto; display: block; }

.brand-text { display: flex; flex-direction: column; line-height: 1; }

.brand-name {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-style: italic;
    font-weight: 500;
    font-size: 1.75rem;
    color: var(--ink);
    letter-spacing: 0.01em;
}

.brand-tag {
    font-family: 'Inter', sans-serif;
    font-size: 0.62rem;
    font-weight: 600;
    color: var(--ink-soft);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-top: 0.3rem;
}

.primary-nav {
    justify-self: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.primary-nav,
.primary-nav ul,
.primary-nav li {
    list-style: none;
}

.primary-nav > li,
.primary-nav li {
    display: block;
    margin: 0;
    padding: 0;
}

.primary-nav > li > a,
.primary-nav a {
    color: var(--ink);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    display: inline-block;
    padding: 0.5rem 0.9rem;
    border-radius: 8px;
    transition: color 0.18s, background 0.18s;
}

.primary-nav > li > a:hover,
.primary-nav a:hover {
    color: var(--sage-deep);
    background: rgba(139, 169, 109, 0.12);
}

.primary-nav .current-menu-item > a,
.primary-nav .current_page_item > a,
.primary-nav .current-menu-ancestor > a {
    color: var(--sage-deep);
}

.primary-nav .current-menu-item > a::before,
.primary-nav .current_page_item > a::before,
.primary-nav .current-menu-ancestor > a::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -2px;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--rose);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.member-login {
    font-size: 0.82rem;
    color: var(--ink-soft);
    text-decoration: none;
    letter-spacing: 0.05em;
}
.member-login:hover { color: var(--sage-deep); text-decoration: underline; }

.member-login-panel { display: none; } /* shown on mobile only */

/* Book CTA text variants — full text desktop, short on mobile */
.cta-text-compact { display: none; }
.cta-text-full { display: inline; }

/* Hamburger toggle + panel close — hidden on desktop */
.nav-toggle,
.nav-panel-close {
    display: none;
}

.nav-toggle {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease;
    transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-panel-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: transparent;
    border: none;
    width: 44px;
    height: 44px;
    cursor: pointer;
    color: var(--ink);
    font-size: 1.8rem;
    line-height: 1;
    padding: 0;
}
.nav-panel-close:hover { color: var(--rose-deep); }

.nav-panel-footer { display: none; } /* shown on mobile only */

/* ---------- Buttons ---------- */
.cta {
    display: inline-block;
    background: var(--rose);
    color: var(--cream-soft);
    padding: 0.85rem 1.75rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
    transition: background 0.2s, transform 0.15s;
    box-shadow: 0 2px 0 var(--rose-deep);
    line-height: 1.2;
    white-space: nowrap;
}

.cta:hover {
    background: var(--rose-deep);
    color: var(--cream-soft);
    transform: translateY(-1px);
}

.cta-book { padding: 0.75rem 1.5rem; font-size: 0.88rem; }

.cta.cta-secondary {
    background: transparent;
    color: var(--ink);
    box-shadow: inset 0 0 0 2px var(--sage);
}
.cta.cta-secondary:hover { background: var(--sage); color: var(--cream-soft); }

.cta-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

/* ---------- Hero ---------- */
.hero {
    padding: 4.5rem 2rem 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-pebbles {
    display: block;
    margin: 0 auto 2rem;
    width: 180px;
    height: auto;
}

.hero h1, .hero h2 {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-style: italic;
    font-weight: 500;
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    color: var(--ink);
    max-width: 820px;
    margin: 0 auto 1.25rem;
    line-height: 1.2;
}

.hero .lede, .hero p {
    max-width: 640px;
    margin: 0 auto 1.5rem;
    color: var(--ink-soft);
    font-size: 1.12rem;
    line-height: 1.65;
}

/* ---------- Layout ---------- */
.container { max-width: 1080px; margin: 0 auto; padding: 0 2rem; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 2rem; }

section { padding: 4.5rem 0; }

.section-heading {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-style: italic;
    font-weight: 500;
    color: var(--sage-deep);
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.section-eyebrow {
    display: block;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--mustard);
    margin-bottom: 0.75rem;
}

.section-lede {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
    color: var(--ink-soft);
    font-size: 1.05rem;
}

/* ---------- Home: split cards ---------- */
.split-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.split-card {
    background: var(--cream-soft);
    border-radius: 28px;
    padding: 2rem 1.75rem;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
}

.split-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px -18px rgba(46, 62, 42, 0.35);
}

.split-card .pebble {
    width: 48px; height: 36px;
    border-radius: 50%;
    display: block;
    margin-bottom: 1rem;
}

.split-card:nth-child(1) .pebble { background: var(--sage); }
.split-card:nth-child(2) .pebble { background: var(--rose); }
.split-card:nth-child(3) .pebble { background: var(--teal); }

.split-card h4 {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-style: italic;
    font-weight: 500;
    color: var(--ink);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.split-card .card-tag {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--mustard);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.split-card p { color: var(--ink-soft); font-size: 0.97rem; margin-bottom: 1rem; }

.split-card .arrow {
    margin-top: auto;
    color: var(--rose);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ---------- Meet Ms. Betsy (home) ---------- */
.meet-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 920px;
    margin: 0 auto;
}

.meet-portrait {
    margin: 0;
    text-align: center;
}

.portrait-placeholder {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: var(--cream);
    border: 1px solid rgba(46,62,42,0.14);
    position: relative;
    margin: 0 auto 0.75rem;
    overflow: hidden;
}

.portrait-pebble {
    position: absolute;
    border-radius: 50%;
    opacity: 0.75;
}

.portrait-pebble-1 {
    width: 90px; height: 70px;
    background: var(--sage);
    top: 38%; left: 18%;
}
.portrait-pebble-2 {
    width: 75px; height: 60px;
    background: var(--rose);
    top: 30%; left: 48%;
}
.portrait-pebble-3 {
    width: 68px; height: 52px;
    background: var(--teal);
    top: 45%; left: 64%;
}

.meet-portrait figcaption {
    font-size: 0.78rem;
    color: var(--ink-mute);
    font-style: italic;
    letter-spacing: 0.03em;
}

.meet-copy .inline-cta { margin-top: 0.5rem; display: inline-block; }

@media (max-width: 720px) {
    .meet-grid { grid-template-columns: 1fr; gap: 2rem; }
    .portrait-placeholder { width: 220px; height: 220px; }
}

/* ---------- Community: understated member-login strip ---------- */
.member-strip {
    background: var(--cream-deep);
    border-bottom: 1px solid rgba(46,62,42,0.1);
    padding: 0.5rem 0;
    font-size: 0.82rem;
}

.member-strip p {
    text-align: right;
    margin: 0;
    color: var(--ink-soft);
}

.member-strip a {
    color: var(--sage-deep);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(84, 112, 57, 0.35);
    padding-bottom: 1px;
}

.member-strip a:hover {
    color: var(--ink);
    border-bottom-color: var(--sage-deep);
}

@media (max-width: 600px) {
    .member-strip p { text-align: center; }
}

/* ---------- Resources hub: featured-hub grid ---------- */
.featured-hub-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1080px;
    margin: 0 auto;
}

.featured-hub-card {
    background: var(--cream-soft);
    border-radius: 24px;
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(46,62,42,0.14);
    transition: transform 0.2s, box-shadow 0.2s;
}

.featured-hub-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px -18px rgba(46,62,42,0.35);
}

.featured-hub-card .hub-pebble {
    width: 32px;
    height: 24px;
    border-radius: 50%;
    margin-bottom: 0.85rem;
    display: block;
}

.featured-hub-card h3 {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-style: italic;
    font-weight: 500;
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: var(--ink);
    line-height: 1.2;
}

.featured-hub-card h3 a {
    color: inherit;
    text-decoration: none;
}

.featured-hub-card h3 a:hover { color: var(--rose-deep); }

.featured-hub-card .hub-tag {
    font-size: 0.95rem;
    color: var(--ink-soft);
    margin-bottom: 1.25rem;
    line-height: 1.55;
}

.featured-hub-card .featured-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-weight: 600;
    color: var(--mustard);
    margin-bottom: 0.25rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(46,62,42,0.14);
}

.featured-hub-card .featured-link {
    margin-bottom: 1.25rem;
}

.featured-hub-card .featured-link a {
    color: var(--ink);
    text-decoration: none;
    font-size: 0.98rem;
    line-height: 1.4;
    font-weight: 500;
    display: inline-block;
    border-bottom: 1px solid rgba(184, 83, 112, 0.25);
    padding-bottom: 1px;
}

.featured-hub-card .featured-link a:hover {
    color: var(--rose-deep);
    border-bottom-color: var(--rose);
}

.featured-hub-card .hub-explore {
    margin-top: auto;
    color: var(--sage-deep);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.featured-hub-card .hub-explore:hover {
    color: var(--ink);
    text-decoration: underline;
    text-decoration-color: var(--sage);
}

@media (max-width: 900px) {
    .featured-hub-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .featured-hub-grid { grid-template-columns: 1fr; }
}

/* ---------- Resources hub: essay cards ---------- */
.essay-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
    margin-top: 2.5rem;
}

.essay-card {
    display: flex;
    flex-direction: column;
    background: var(--cream);
    border-radius: 20px;
    padding: 1.5rem 1.5rem 1.25rem;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(46,62,42,0.10);
    transition: border-color 0.18s, transform 0.15s;
}

.essay-card:hover {
    transform: translateY(-2px);
    border-color: var(--sage);
    color: inherit;
}

.essay-card h4 {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-style: italic;
    font-weight: 500;
    font-size: 1.15rem;
    color: var(--ink);
    margin-bottom: 0.5rem;
    line-height: 1.25;
}

.essay-card p {
    font-size: 0.92rem;
    color: var(--ink-soft);
    line-height: 1.55;
    margin-bottom: 0.85rem;
    flex: 1;
}

.essay-card .arrow {
    color: var(--rose);
    font-size: 0.85rem;
    font-weight: 600;
}

/* ---------- Newsletter band (Resources "Stay close") ---------- */
.newsletter-band {
    background: var(--sage);
    color: var(--cream-soft);
    padding: 4rem 0;
}

.newsletter-block {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}

.newsletter-band .section-heading { color: var(--cream-soft); }

.newsletter-lede {
    color: var(--cream-deep);
    font-size: 1.02rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.newsletter-form-wide {
    display: flex;
    gap: 0.6rem;
    max-width: 440px;
    margin: 0 auto;
}

.newsletter-form-wide input[type="email"] {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    border: none;
    background: var(--cream-soft);
    color: var(--ink);
    font-size: 0.95rem;
}

.newsletter-form-wide button {
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    border: none;
    background: var(--rose);
    color: var(--cream-soft);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s;
}

.newsletter-form-wide button:hover { background: var(--rose-deep); }

@media (max-width: 600px) {
    .newsletter-form-wide { flex-direction: column; }
    .newsletter-form-wide button { width: 100%; }
}

/* ---------- About: hero with side portrait ---------- */
.about-hero {
    padding: 4rem 0 3.5rem;
    background: var(--cream-soft);
    border-bottom: 1px solid rgba(46,62,42,0.12);
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 3.5rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.about-hero-copy h1 {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-style: italic;
    font-weight: 500;
    font-size: clamp(2rem, 4.5vw, 3rem);
    color: var(--ink);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.about-hero-copy .prose p { font-size: 1.05rem; line-height: 1.7; }

.about-portrait {
    margin: 0;
    text-align: center;
}

.portrait-placeholder-large {
    width: 300px;
    height: 300px;
}

@media (max-width: 820px) {
    .about-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .about-hero-copy .page-eyebrow { text-align: center !important; }
    .portrait-placeholder-large { width: 240px; height: 240px; }
}

/* ---------- Credentials list ---------- */
.credentials-list {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
}

.credentials-list li {
    padding: 0.75rem 0 0.75rem 1.75rem;
    border-bottom: 1px solid rgba(46,62,42,0.12);
    position: relative;
    color: var(--ink);
    font-size: 1rem;
}

.credentials-list li:last-child { border-bottom: none; }

.credentials-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.1rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--sage);
}

.credentials-list li:nth-child(3n+2)::before { background: var(--rose); }
.credentials-list li:nth-child(3n+3)::before { background: var(--teal); }

.placeholder-token {
    color: var(--ink-mute);
    font-style: italic;
    background: rgba(165, 120, 24, 0.1);
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
    border: 1px dashed rgba(165, 120, 24, 0.4);
}

/* Prose h4 for sub-sections (like "What I do." / "What I don't do.") */
.prose h4 {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-style: italic;
    font-weight: 500;
    color: var(--ink);
    font-size: 1.35rem;
    margin: 2rem 0 0.75rem;
}

/* ---------- Service area ---------- */
.service-area-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 2rem auto 0;
}

.service-area-map { text-align: center; }

.map-placeholder {
    background: var(--cream-soft);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(46,62,42,0.14);
    aspect-ratio: 14 / 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder svg {
    width: 100%;
    height: auto;
    display: block;
}

.map-caption {
    font-size: 0.78rem;
    color: var(--ink-mute);
    font-style: italic;
    margin-top: 0.6rem;
}

.service-area-copy p { font-size: 1.05rem; }

@media (max-width: 820px) {
    .service-area-grid { grid-template-columns: 1fr; gap: 2rem; }
    .service-area-copy { text-align: center; }
}

/* ---------- Trust-signals block ---------- */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    max-width: 980px;
    margin: 0 auto;
}

.trust-item {
    background: var(--cream-soft);
    border-radius: 20px;
    padding: 1.75rem 1.5rem;
    text-align: left;
    border: 1px solid rgba(46,62,42,0.14);
}

.trust-item .trust-pebble {
    display: block;
    width: 28px;
    height: 22px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.trust-item h5 {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-style: italic;
    font-weight: 500;
    font-size: 1.25rem;
    color: var(--ink);
    margin-bottom: 0.4rem;
}

.trust-item p {
    font-size: 0.95rem;
    color: var(--ink-soft);
    line-height: 1.55;
}

/* ---------- Inline CTA link ---------- */
.inline-cta {
    color: var(--rose-deep);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid rgba(184, 83, 112, 0.25);
    padding-bottom: 2px;
    transition: border-color 0.15s, color 0.15s;
}
.inline-cta:hover {
    color: var(--rose);
    border-bottom-color: var(--rose);
}

/* ---------- Soft-close section ---------- */
.soft-close {
    padding: 3rem 0;
}
.soft-close p { margin-bottom: 0.5rem; font-size: 1.05rem; }
.soft-close p:last-child { margin-bottom: 0; }

/* ---------- Services grid (used on tutoring) ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--cream-soft);
    padding: 2rem 1.75rem;
    border-radius: 28px;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -14px;
    left: 1.75rem;
    width: 28px;
    height: 28px;
    border-radius: 50%;
}

.service-card:nth-child(3n+1)::before { background: var(--sage); }
.service-card:nth-child(3n+2)::before { background: var(--rose); }
.service-card:nth-child(3n+3)::before { background: var(--teal); }

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px -18px rgba(46, 62, 42, 0.35);
}

.service-card h4 {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-style: italic;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
}

.service-card p { font-size: 0.97rem; color: var(--ink-soft); line-height: 1.65; }

/* ---------- Generic content sections ---------- */
.band-cream-soft { background: var(--cream-soft); }
.band-cream-deep { background: var(--cream-deep); }
.band-sage { background: var(--sage); color: var(--cream-soft); }
.band-sage .section-heading { color: var(--cream-soft); }
.band-sage .section-eyebrow { color: var(--cream-deep); }
.band-sage a { color: var(--cream-soft); text-decoration-color: var(--cream-deep); }

.prose {
    max-width: 720px;
    margin: 0 auto;
    color: var(--ink-soft);
}
.prose p { margin-bottom: 1.15rem; font-size: 1.05rem; line-height: 1.75; }
.prose p strong { color: var(--ink); font-weight: 600; }
.prose ul, .prose ol { margin: 0 0 1.15rem 1.25rem; color: var(--ink-soft); }
.prose li { margin-bottom: 0.5rem; }
.prose h3 {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-style: italic;
    color: var(--sage-deep);
    font-size: 1.6rem;
    margin: 2rem 0 0.75rem;
    font-weight: 500;
}

.prose.centered { text-align: center; }

.price-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.price-card {
    background: var(--cream);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    text-align: center;
    min-width: 220px;
    border: 1px solid rgba(46,62,42,0.14);
}

.price-card .price-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--mustard);
    font-weight: 600;
}

.price-card .price-amount {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 2rem;
    color: var(--ink);
    margin-top: 0.25rem;
}

.price-card .price-unit { font-size: 0.9rem; color: var(--ink-soft); }

/* ---------- Contact band ---------- */
.contact-info {
    text-align: center;
    font-size: 1.1rem;
}

.contact-info p { margin-bottom: 0.85rem; }

.contact-info a {
    color: var(--cream-soft);
    text-decoration: underline;
    text-decoration-color: var(--cream-deep);
    text-underline-offset: 4px;
    font-weight: 600;
}

.contact-info .contact-name {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-style: italic;
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* ---------- Resources preview ---------- */
.hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.hub-card {
    background: var(--cream-soft);
    border-radius: 20px;
    padding: 1.5rem 1.25rem;
    text-decoration: none;
    color: inherit;
    display: block;
    border: 1px solid transparent;
    transition: border-color 0.2s, transform 0.15s;
}

.hub-card:hover { border-color: var(--sage); transform: translateY(-2px); color: inherit; }

.hub-card .hub-pebble {
    width: 24px; height: 24px; border-radius: 50%; margin-bottom: 0.75rem;
}

.hub-card:nth-child(5n+1) .hub-pebble { background: var(--sage); }
.hub-card:nth-child(5n+2) .hub-pebble { background: var(--rose); }
.hub-card:nth-child(5n+3) .hub-pebble { background: var(--teal); }
.hub-card:nth-child(5n+4) .hub-pebble { background: var(--mustard); }
.hub-card:nth-child(5n+5) .hub-pebble { background: var(--sage-deep); }

.hub-card h5 {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.25rem;
    color: var(--ink);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.hub-card p { font-size: 0.88rem; color: var(--ink-soft); }

/* ---------- Footer ---------- */
.site-footer {
    background: var(--ink);
    color: var(--cream-deep);
    padding: 4rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr 1.3fr;
    gap: 2.5rem;
}

.footer-col h5 {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--mustard);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a {
    color: var(--cream-deep);
    text-decoration: none;
    font-size: 0.93rem;
}
.footer-col a:hover { color: var(--cream-soft); text-decoration: underline; }
.footer-col p { font-size: 0.93rem; color: var(--cream-deep); margin-bottom: 0.75rem; }

.footer-brand .brand-mark { width: 50px; margin-bottom: 0.75rem; }
.footer-brand .brand-name {
    color: var(--cream-soft);
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.75rem;
}
.footer-entity { font-size: 0.82rem; color: var(--ink-mute); }
.footer-scope { font-size: 0.82rem; color: var(--ink-mute); font-style: italic; }

.footer-service-area { font-size: 0.85rem; color: var(--ink-mute); }

.newsletter-promise { font-size: 0.88rem; }

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.newsletter-form input[type="email"] {
    flex: 1;
    min-width: 0;
    padding: 0.65rem 0.9rem;
    border-radius: 999px;
    border: none;
    background: var(--cream-soft);
    color: var(--ink);
    font-size: 0.88rem;
}

.newsletter-form button {
    padding: 0.65rem 1.25rem;
    border-radius: 999px;
    border: none;
    background: var(--rose);
    color: var(--cream-soft);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.2s;
}

.newsletter-form button:hover { background: var(--rose-deep); }

.footer-legal {
    max-width: 1180px;
    margin: 3rem auto 0;
    padding: 1.5rem 2rem 0;
    border-top: 1px solid rgba(245,236,215,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.82rem;
    color: var(--ink-mute);
}

.footer-legal-nav { display: flex; align-items: center; gap: 0.5rem; }
.footer-legal-nav a { color: var(--cream-deep); text-decoration: none; }
.footer-legal-nav a:hover { color: var(--cream-soft); }

/* ---------- WP entry content ---------- */
.entry-content {
    max-width: 760px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.entry-content h1,
.entry-content h2,
.entry-content h3 {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-style: italic;
    font-weight: 500;
    color: var(--sage-deep);
    margin: 1.75rem 0 0.85rem;
}

.entry-content h1 { font-size: 2.5rem; text-align: center; color: var(--ink); }
.entry-content h2 { font-size: 1.9rem; }
.entry-content h3 { font-size: 1.5rem; }

.entry-content p {
    margin-bottom: 1.25rem;
    color: var(--ink);
    line-height: 1.8;
}

/* ---------- Page header (non-home) ---------- */
.page-header {
    padding: 4rem 2rem 3rem;
    text-align: center;
    background: var(--cream-soft);
    border-bottom: 1px solid rgba(46,62,42,0.12);
}

.page-header h1 {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-style: italic;
    font-weight: 500;
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--ink);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.page-header .page-eyebrow {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--mustard);
    margin-bottom: 0.75rem;
}

.page-header p {
    max-width: 620px;
    margin: 0 auto;
    color: var(--ink-soft);
    font-size: 1.1rem;
}

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
    font-size: 0.82rem;
    color: var(--ink-soft);
    margin-bottom: 1.25rem;
}
.breadcrumbs ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    justify-content: center;
    margin: 0;
    padding: 0;
}
.breadcrumbs li { display: inline-flex; align-items: center; }
.breadcrumbs li + li::before {
    content: '›';
    color: var(--ink-mute);
    margin-right: 0.4rem;
}
.breadcrumbs a {
    color: var(--ink-soft);
    text-decoration: none;
    border-bottom: 1px solid transparent;
}
.breadcrumbs a:hover { color: var(--sage-deep); border-bottom-color: var(--sage); }
.breadcrumbs [aria-current="page"] { color: var(--ink); font-weight: 500; }

/* ---------- Hub/cluster/article page chrome ---------- */
.hub-marker {
    display: inline-block;
    width: 40px;
    height: 30px;
    border-radius: 50%;
    margin: 0 auto 1rem;
}

.page-header-lede {
    max-width: 640px;
    margin: 1rem auto 0;
    color: var(--ink-soft);
    font-size: 1.05rem;
}

.page-header-lede p { margin-bottom: 0.5rem; }

/* Cluster list on hub page */
.cluster-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 820px;
    margin: 0 auto;
}

.cluster-block {
    background: var(--cream-soft);
    border-radius: 24px;
    padding: 2rem 2rem 1.5rem;
}

.cluster-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 500;
    font-size: 1.6rem;
    color: var(--ink);
    margin-bottom: 0.5rem;
}

.cluster-header h3 a { color: inherit; text-decoration: none; }
.cluster-header h3 a:hover { color: var(--rose-deep); }

.cluster-lede {
    color: var(--ink-soft);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.article-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(46,62,42,0.14);
}

.article-list li { border-bottom: 1px solid rgba(46,62,42,0.14); }

.article-list a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 0;
    text-decoration: none;
    color: var(--ink);
    transition: color 0.15s;
}

.article-list a:hover { color: var(--rose-deep); }

.article-layer {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 600;
    color: var(--mustard);
    white-space: nowrap;
    flex-shrink: 0;
}

.article-title { font-size: 1rem; }

/* Cluster → article cards */
.article-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 720px;
    margin: 0 auto;
}

.article-card {
    display: block;
    background: var(--cream-soft);
    border-radius: 20px;
    padding: 1.5rem 1.75rem;
    text-decoration: none;
    color: inherit;
    position: relative;
    transition: transform 0.15s, box-shadow 0.15s;
    border: 1px solid transparent;
}

.article-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px -14px rgba(46,62,42,0.3);
    border-color: var(--sage);
    color: inherit;
}

.article-card .article-layer-badge {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 600;
    color: var(--cream-soft);
    background: var(--mustard);
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    margin-bottom: 0.6rem;
}

.article-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 500;
    font-size: 1.35rem;
    color: var(--ink);
    margin-bottom: 0.4rem;
    line-height: 1.25;
}

.article-card p {
    font-size: 0.95rem;
    color: var(--ink-soft);
    margin-bottom: 0.75rem;
}

.article-card .arrow {
    color: var(--rose);
    font-weight: 600;
    font-size: 0.88rem;
}

/* Article body */
.article-header .article-layer-badge-header {
    display: inline-block;
    font-size: 0.75rem;
    padding: 0.3rem 0.85rem;
    margin-bottom: 1rem;
}

.article-body { padding: 3.5rem 0 2rem; }
.article-body .prose p:first-of-type { font-size: 1.15rem; color: var(--ink); }
.article-body .prose p:first-of-type::first-letter {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 3.5rem;
    float: left;
    line-height: 0.9;
    padding: 0.35rem 0.6rem 0 0;
    color: var(--rose);
}

/* Essay list */
.essay-list { list-style: none; margin: 0; padding: 0; }

.essay-item {
    padding: 2rem 0;
    border-bottom: 1px solid rgba(46,62,42,0.14);
}

.essay-item:last-child { border-bottom: none; }

.essay-item time {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--mustard);
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.essay-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 500;
    font-size: 1.65rem;
    margin-bottom: 0.4rem;
}

.essay-item h3 a { color: var(--ink); text-decoration: none; }
.essay-item h3 a:hover { color: var(--rose-deep); }

.essay-item p { color: var(--ink-soft); font-size: 0.98rem; }

/* Hub cross-link pills */
.hub-cross-links {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.hub-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem 0.5rem 0.75rem;
    background: var(--cream);
    border-radius: 999px;
    text-decoration: none;
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.15s, transform 0.15s;
    border: 1px solid rgba(46,62,42,0.14);
}

.hub-pill:hover { background: var(--cream-soft); transform: translateY(-1px); color: var(--ink); }

.hub-pill .hub-pebble {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-block;
}

/* ---------- Primary nav dropdown ---------- */
.primary-nav li { position: relative; }

.primary-nav li.menu-item-has-children > a::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid var(--ink-mute);
    margin-left: 0.45rem;
    vertical-align: middle;
    transition: transform 0.2s, border-top-color 0.2s;
}

.primary-nav li.menu-item-has-children:hover > a::after,
.primary-nav li.menu-item-has-children:focus-within > a::after {
    transform: rotate(180deg);
    border-top-color: var(--sage-deep);
}

/* Invisible hover bridge — keeps dropdown open while the cursor travels
   from the parent item down into the sub-menu. Critical UX fix. */
.primary-nav li.menu-item-has-children::after {
    content: '';
    position: absolute;
    top: 100%;
    left: -12px;
    right: -12px;
    height: 18px;
    pointer-events: none;
}

.primary-nav li.menu-item-has-children:hover::after,
.primary-nav li.menu-item-has-children:focus-within::after {
    pointer-events: auto;
}

.primary-nav .sub-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(-4px);
    min-width: 240px;
    background: var(--cream-soft);
    border-radius: 16px;
    padding: 0.5rem;
    box-shadow: 0 18px 44px -22px rgba(46,62,42,0.45);
    display: flex;
    flex-direction: column;
    gap: 2px;
    z-index: 110;
    border: 1px solid rgba(46,62,42,0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
    list-style: none;
    margin: 0;
}

.primary-nav li:hover > .sub-menu,
.primary-nav li:focus-within > .sub-menu,
.primary-nav .sub-menu:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.primary-nav .sub-menu li { display: block; margin: 0; padding: 0; }

.primary-nav .sub-menu a {
    display: block;
    padding: 0.55rem 1rem;
    font-size: 0.92rem;
    color: var(--ink);
    white-space: nowrap;
    border-radius: 10px;
    font-weight: 400;
}

.primary-nav .sub-menu a:hover {
    background: var(--cream);
    color: var(--sage-deep);
}

.primary-nav .sub-menu .current-menu-item > a,
.primary-nav .sub-menu .current_page_item > a {
    color: var(--sage-deep);
    background: var(--cream);
    font-weight: 500;
}

.primary-nav .sub-menu .current-menu-item > a::before,
.primary-nav .sub-menu .current_page_item > a::before {
    display: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-brand, .footer-newsletter { grid-column: span 2; }
}

@media (max-width: 820px) {
    /* Mobile header row: [hamburger] [brand centered] [book CTA] */
    .site-header-inner {
        grid-template-columns: 1fr auto 1fr;
        gap: 0.5rem;
        padding: 0.75rem 1rem;
        text-align: left;
    }

    .nav-toggle {
        display: flex;
        justify-self: start;
        grid-column: 1;
        grid-row: 1;
    }

    .brand {
        justify-self: center;
        grid-column: 2;
        grid-row: 1;
        flex-direction: column;
        gap: 0.35rem;
        align-items: center;
    }

    .brand-mark { width: 46px; }
    .brand-text { align-items: center; text-align: center; line-height: 1; }
    .brand-name { font-size: 1.2rem; }
    .brand-tag { font-size: 0.55rem; letter-spacing: 0.2em; margin-top: 0.25rem; }

    .header-actions {
        justify-self: end;
        grid-column: 3;
        grid-row: 1;
    }

    /* Hide desktop items, show panel chrome */
    .member-login-desktop { display: none; }
    .nav-panel-close { display: block; }
    .nav-panel-footer { display: block; }

    .cta-text-full { display: none; }
    .cta-text-compact { display: inline; }

    .cta-book {
        padding: 0.55rem 1rem;
        font-size: 0.82rem;
    }

    .header-actions { gap: 0.5rem; }

    /* Primary nav becomes a slide-in drawer from the right */
    .primary-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(340px, 86vw);
        background: var(--cream);
        border-left: 1px solid rgba(46,62,42,0.14);
        box-shadow: -24px 0 60px -30px rgba(46,62,42,0.5);
        display: flex;
        flex-direction: column;
        align-items: stretch;
        padding: 4.5rem 1.5rem 2rem;
        gap: 0;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 200;
        justify-self: stretch;
    }

    body.nav-open .primary-nav {
        transform: translateX(0);
    }

    /* Backdrop */
    body.nav-open::after {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(31, 45, 27, 0.22);
        z-index: 150;
        animation: navFadeIn 0.2s ease;
    }

    @keyframes navFadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    body.nav-open { overflow: hidden; }

    /* Top-level nav items — large tap targets */
    .primary-nav > li {
        display: block;
        border-bottom: 1px solid rgba(46,62,42,0.12);
    }
    .primary-nav > li:last-of-type { border-bottom: none; }

    .primary-nav > li > a {
        display: block;
        padding: 1rem 0.25rem;
        font-size: 1.1rem;
        font-weight: 500;
        border-radius: 0;
        line-height: 1.3;
    }

    .primary-nav > li > a:hover {
        background: transparent;
        color: var(--sage-deep);
    }

    /* Reset current-page rose dot (use left border instead) */
    .primary-nav .current-menu-item > a::before,
    .primary-nav .current_page_item > a::before,
    .primary-nav .current-menu-ancestor > a::before {
        display: none;
    }

    .primary-nav .current-menu-item > a,
    .primary-nav .current_page_item > a,
    .primary-nav .current-menu-ancestor > a {
        padding-left: 0.75rem;
        margin-left: -0.25rem;
        border-left: 3px solid var(--rose);
        color: var(--sage-deep);
    }

    /* Accordion trigger — replace the tiny 4px triangle with a larger,
       higher-contrast chevron drawn with two rotated box-shadow borders. */
    .primary-nav li.menu-item-has-children > a {
        position: relative;
        padding-right: 2.75rem; /* room for the chevron */
    }

    .primary-nav li.menu-item-has-children > a::after {
        /* Reset the desktop triangle */
        content: '';
        float: none;
        position: absolute;
        right: 1rem;
        top: 50%;
        width: 10px;
        height: 10px;
        border: 0;
        border-right: 2px solid var(--sage-deep);
        border-bottom: 2px solid var(--sage-deep);
        transform: translateY(-75%) rotate(45deg);
        margin: 0;
        transition: transform 0.25s ease;
    }

    .primary-nav li.menu-item-has-children.is-open > a {
        background: var(--cream-soft);
        color: var(--sage-deep);
    }

    .primary-nav li.menu-item-has-children.is-open > a::after {
        transform: translateY(-25%) rotate(-135deg);
    }

    /* Sub-menu as smooth accordion (max-height transition) */
    .primary-nav .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        display: flex;
        flex-direction: column;
        background: var(--cream-soft);
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0;
        margin: 0;
        min-width: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
    }

    /* Left accent — makes it visually clear items belong to the parent */
    .primary-nav .sub-menu::after {
        content: '';
        position: absolute;
        left: 0.75rem;
        top: 0.5rem;
        bottom: 0.5rem;
        width: 2px;
        background: var(--sage);
        border-radius: 1px;
        opacity: 0;
        transition: opacity 0.25s ease 0.1s;
    }

    .primary-nav .sub-menu::before { display: none; }

    .primary-nav li.menu-item-has-children.is-open > .sub-menu {
        max-height: 600px; /* enough for 7 items */
    }

    .primary-nav li.menu-item-has-children.is-open > .sub-menu::after {
        opacity: 1;
    }

    .primary-nav .sub-menu li { border: none; }

    .primary-nav .sub-menu a {
        padding: 0.85rem 1rem 0.85rem 1.75rem;
        font-size: 1rem;
        border-radius: 0;
        color: var(--ink);
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .primary-nav .sub-menu a:hover,
    .primary-nav .sub-menu a:active {
        background: var(--cream);
        color: var(--sage-deep);
    }

    /* Panel footer — member login pinned at bottom */
    .nav-panel-footer {
        margin-top: auto;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(46,62,42,0.12);
    }

    .member-login-panel {
        display: inline-block;
        padding: 0.75rem 0.25rem;
        font-size: 0.95rem;
        color: var(--ink);
        letter-spacing: 0.04em;
    }
}

@media (max-width: 600px) {
    .brand-mark { width: 36px; }
    .brand-name { font-size: 1.1rem; }
    .hero { padding: 2.5rem 1.25rem 3.5rem; }
    .hero-pebbles { width: 140px; }
    section { padding: 3.5rem 0; }
    .section-heading { font-size: 1.8rem; }
    .footer-inner { grid-template-columns: 1fr; }
    .footer-brand, .footer-newsletter { grid-column: span 1; }
    .footer-legal { flex-direction: column; text-align: center; }
    .newsletter-form { flex-direction: column; }
    .newsletter-form button { width: 100%; }
}

@media (max-width: 420px) {
    /* Very small screens: tighten CTA; brand can stay stacked */
    .cta-book { padding: 0.5rem 0.85rem; font-size: 0.78rem; }
    .brand-mark { width: 42px; }
    .brand-name { font-size: 1.1rem; }
}
