/* Harvest Your Passion — Global Styles */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0f172a;
}
::-webkit-scrollbar-thumb {
    background: #475569;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #64748b;
}

/* Link transitions */
a {
    transition: color 0.2s ease;
}

/* Card hover effects */
.group:hover {
    transform: translateY(-2px);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

/* Public brand theme redesign */
:root {
    --brand-navy: #1a2744;
    --brand-blue: #5b9bbf;
    --brand-coral: #e8a0a0;
    --brand-gold: #f7c157;
    --brand-cream: #f7f6f2;
    --brand-green: #5a7f5f;
    --brand-ink: #263246;
    --brand-muted: #647084;
    --brand-line: rgba(26, 39, 68, 0.12);
    --brand-card: rgba(255, 255, 255, 0.74);
    --brand-shadow: 0 18px 48px rgba(26, 39, 68, 0.12);
    --section-accent: var(--brand-gold);
}

body.public-theme {
    margin: 0;
    min-height: 100vh;
    background: var(--brand-cream);
    color: var(--brand-ink);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.public-theme[data-section="home"] {
    --section-accent: var(--brand-gold);
    background:
        radial-gradient(circle at 18% 16%, rgba(247, 193, 87, 0.38), transparent 34%),
        linear-gradient(180deg, #fffdf6 0%, #f8efd5 48%, var(--brand-cream) 100%);
}

body.public-theme[data-section="home"] .public-visual {
    background:
        linear-gradient(145deg, rgba(26,39,68,0.18), rgba(247,193,87,0.08)),
        url("/assets/images/hero-home.jpg") center/cover no-repeat;
}

body.public-theme[data-section="home"] .public-visual::before,
body.public-theme[data-section="home"] .public-visual::after {
    display: none;
}

.home-hero {
    min-height: clamp(520px, 62vh, 760px);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    /* CP-052 (Leo): fade into the WARM tone the body shows right below the
       hero (was pale cream -> visible cold band before the next section). */
    background:
        linear-gradient(180deg, rgba(248,239,213,0) 56%, #f8efd5 100%),
        url("/assets/images/hero-home.jpg") center/cover no-repeat;
}

.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 44%, rgba(26,39,68,.16), transparent 0 34%, transparent 35%),
        linear-gradient(180deg, rgba(26,39,68,.10), rgba(26,39,68,.02) 46%, rgba(248,239,213,.92) 100%);
    pointer-events: none;
}

.home-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    min-height: clamp(520px, 62vh, 760px);
    padding: 72px 0 96px;
}

.home-hero__content {
    width: min(850px, 100%);
    text-align: center;
    color: #fff;
    padding: clamp(24px, 5vw, 42px);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(26,39,68,.30), rgba(26,39,68,.14));
    border: 1px solid rgba(255,255,255,.22);
    box-shadow: 0 24px 70px rgba(26,39,68,.18);
    backdrop-filter: blur(2px);
}

.home-hero__content h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(42px, 7vw, 76px);
    line-height: .98;
    font-weight: 800;
    letter-spacing: 0;
    text-shadow: 0 3px 24px rgba(26,39,68,.42);
}

.home-hero__content p {
    margin: 18px auto 0;
    color: rgba(255,255,255,.95);
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.5;
    text-shadow: 0 2px 16px rgba(26,39,68,.34);
}

.home-hero__actions {
    justify-content: center;
}

body.public-theme[data-section="coaching"] {
    --section-accent: var(--brand-coral);
    background:
        radial-gradient(circle at 86% 18%, rgba(232, 160, 160, 0.34), transparent 30%),
        linear-gradient(180deg, #fff8f6 0%, #f7f6f2 62%, #f0eee8 100%);
}

body.public-theme[data-section="blog"] {
    --section-accent: var(--brand-blue);
    background:
        radial-gradient(circle at 88% 12%, rgba(91, 155, 191, 0.24), transparent 34%),
        linear-gradient(180deg, #f7fbfd 0%, var(--brand-cream) 70%);
}

body.public-theme[data-section="about"] {
    --section-accent: var(--brand-green);
    background:
        radial-gradient(circle at 15% 18%, rgba(247, 193, 87, 0.22), transparent 32%),
        linear-gradient(180deg, #fffdfa 0%, var(--brand-cream) 65%);
}

body.public-theme[data-section="contact"] {
    --section-accent: var(--brand-green);
    background:
        radial-gradient(circle at 12% 18%, rgba(90, 127, 95, 0.22), transparent 32%),
        linear-gradient(180deg, #fbfdf9 0%, var(--brand-cream) 70%);
}

.about-banner {
    min-height: clamp(280px, 36vh, 420px);
    display: grid;
    align-items: center;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(26,39,68,.20), rgba(26,39,68,.04) 52%, var(--brand-cream) 100%),
        url("/assets/images/hero-home.jpg") center/cover no-repeat;
}

.about-banner h1 {
    color: #fff;
    font-size: clamp(48px, 8vw, 82px);
    line-height: 1;
    margin: 0;
    font-weight: 800;
    text-align: center;
    text-shadow: 0 4px 28px rgba(26,39,68,.42);
}

.about-profile-section {
    padding: clamp(48px, 7vw, 84px) 0 24px;
}

.about-profile {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: clamp(26px, 5vw, 52px);
    align-items: center;
    max-width: 920px;
}

.about-profile-photo {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 999px;
    border: 6px solid rgba(255,255,255,.92);
    box-shadow: 0 18px 42px rgba(26,39,68,.18);
}

.public-shell {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.public-hero {
    position: relative;
    overflow: hidden;
    min-height: clamp(620px, 82vh, 820px);
    display: flex;
    align-items: center;
    padding: 96px 0 72px;
}

.public-hero::after {
    content: "";
    position: absolute;
    inset: auto -10% -18% 42%;
    height: 68%;
    background:
        radial-gradient(circle at 72% 28%, rgba(255,255,255,0.85), transparent 0 9%, transparent 10%),
        radial-gradient(circle at 32% 52%, rgba(255,255,255,0.46), transparent 0 8%, transparent 9%),
        linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    opacity: 0.72;
    pointer-events: none;
}

.public-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(300px, .76fr);
    gap: clamp(32px, 6vw, 72px);
    align-items: center;
}

.public-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--brand-navy);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.public-eyebrow::before {
    content: "";
    width: 34px;
    height: 2px;
    border-radius: 999px;
    background: var(--section-accent);
}

.public-hero h1,
.public-page-title {
    margin: 0;
    color: var(--brand-navy);
    font-size: clamp(44px, 7vw, 68px);
    line-height: 0.98;
    letter-spacing: 0;
    font-weight: 800;
}

.public-lede {
    margin: 22px 0 0;
    color: var(--brand-muted);
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.7;
    max-width: 680px;
}

.public-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.public-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 200ms ease, background 200ms ease, color 200ms ease;
}

.public-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(26,39,68,0.18);
}

.public-btn:active {
    transform: scale(.98);
}

.public-btn--dark {
    background: var(--brand-navy);
    color: #fff;
}

.public-btn--accent {
    background: var(--section-accent);
    color: var(--brand-navy);
}

.public-btn--outline {
    background: rgba(255,255,255,0.36);
    color: var(--brand-navy);
    border-color: rgba(26,39,68,0.22);
}

.public-visual {
    min-height: 430px;
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(26,39,68,0.72), rgba(26,39,68,0.08)),
        radial-gradient(circle at 30% 25%, var(--section-accent), transparent 0 16%, transparent 17%),
        linear-gradient(135deg, rgba(255,255,255,0.62), rgba(255,255,255,0.12));
    box-shadow: var(--brand-shadow);
    border: 1px solid rgba(255,255,255,0.66);
    position: relative;
    overflow: hidden;
}

.public-visual::before,
.public-visual::after {
    content: "";
    position: absolute;
    border: 1.5px solid rgba(255,255,255,0.58);
    border-radius: 999px;
    transform: rotate(-18deg);
}

.public-visual::before {
    width: 72%;
    height: 42%;
    left: -12%;
    bottom: 14%;
}

.public-visual::after {
    width: 94%;
    height: 58%;
    right: -34%;
    top: 10%;
}

.public-section {
    padding: clamp(72px, 9vw, 116px) 0;
}

.public-section--dark {
    background: var(--brand-navy);
    color: #fff;
}

.public-section-title {
    color: var(--brand-navy);
    font-size: clamp(32px, 4vw, 42px);
    line-height: 1.08;
    margin: 0 0 14px;
    font-weight: 800;
}

.public-section--dark .public-section-title {
    color: #fff;
}

.public-section-copy {
    color: var(--brand-muted);
    font-size: 17px;
    line-height: 1.65;
    max-width: 680px;
    margin: 0;
}

.public-section--dark .public-section-copy {
    color: rgba(255,255,255,0.72);
}

.public-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 36px;
}

.public-card {
    background: var(--brand-card);
    border: 1px solid rgba(26,39,68,0.1);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 12px 34px rgba(26,39,68,0.08);
    color: var(--brand-ink);
    text-decoration: none;
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.public-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--brand-shadow);
    border-color: color-mix(in srgb, var(--section-accent) 58%, transparent);
}

.public-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: var(--section-accent);
    border: 1px solid color-mix(in srgb, var(--section-accent) 64%, transparent);
    margin-bottom: 18px;
}

.public-icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
}

.public-card h3 {
    color: var(--brand-navy);
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 800;
}

.public-card p {
    margin: 0;
    color: var(--brand-muted);
    line-height: 1.6;
    font-size: 15px;
}

.public-footer {
    background: var(--brand-navy);
    color: rgba(255,255,255,0.72);
    padding: 32px 0;
}

.public-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.public-footer a {
    color: rgba(255,255,255,0.72);
    text-decoration: none;
}

.public-footer a:hover {
    color: #fff;
}

.home-footer-links {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.home-socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

.home-socials a {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.16);
    color: rgba(255,255,255,.74);
    background: rgba(255,255,255,.05);
}

.home-socials a:hover {
    color: #fff;
    background: rgba(255,255,255,.12);
}

.home-socials svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 900px) {
    .public-hero-grid,
    .contact-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .public-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .public-hero {
        min-height: auto;
        padding: 72px 0 56px;
    }

    .about-profile {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .public-shell {
        width: min(100% - 28px, 1180px);
    }

    .public-card-grid {
        grid-template-columns: 1fr;
    }

    .public-actions,
    .public-footer-row,
    .home-footer-links {
        align-items: stretch;
        flex-direction: column;
    }

    .public-btn {
        width: 100%;
    }

    .home-hero {
        min-height: 560px;
        background-position: center top;
    }

    .home-hero__inner {
        min-height: 560px;
        padding: 54px 0 86px;
    }

    .home-hero__content {
        border-radius: 22px;
    }

    .home-socials {
        justify-content: center;
    }
}

/* Public page integrations for existing components */
body.public-theme .h-scope {
    --bg: var(--brand-cream);
    --surface: rgba(255,255,255,.72);
    --elevated: rgba(255,255,255,.9);
    --border: var(--brand-line);
    --text-primary: var(--brand-ink);
    --text-secondary: var(--brand-muted);
    --accent-green: var(--section-accent);
    --accent-blue: var(--brand-blue);
}

body.public-theme .h-input,
body.public-theme .h-textarea,
body.public-theme .h-select {
    background: rgba(255,255,255,.86);
    color: var(--brand-ink);
    border-color: rgba(26,39,68,.16);
}

body.public-theme .h-btn--primary {
    background: var(--brand-coral);
    color: var(--brand-navy);
    border-color: transparent;
    border-radius: 999px;
}

body.public-theme[data-section="coaching"] #packages-grid > div {
    background: rgba(255,255,255,.78) !important;
    color: var(--brand-ink) !important;
    border-color: rgba(232,160,160,.34) !important;
    border-radius: 18px !important;
    box-shadow: 0 14px 34px rgba(26,39,68,.1);
}

body.public-theme[data-section="coaching"] #packages-grid h3,
body.public-theme[data-section="coaching"] #packages-grid p {
    color: var(--brand-navy) !important;
}

body.public-theme[data-section="coaching"] #packages-grid ul,
body.public-theme[data-section="coaching"] #packages-grid li {
    color: var(--brand-muted) !important;
}

body.public-theme[data-section="coaching"] #packages-grid .text-harvest-green,
body.public-theme[data-section="coaching"] #packages-grid span {
    color: #b86464 !important;
}

body.public-theme[data-section="coaching"] #packages-grid a {
    background: var(--brand-coral) !important;
    color: var(--brand-navy) !important;
    border-radius: 999px !important;
    min-height: 44px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

.coaching-clarity {
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(232,160,160,.34);
    border-radius: 22px;
    box-shadow: 0 18px 48px rgba(26,39,68,.1);
    margin: 0 0 36px;
    padding: clamp(28px, 5vw, 48px);
    text-align: center;
}

.coaching-clarity h2 {
    color: var(--brand-navy);
    font-size: clamp(30px, 4.6vw, 48px);
    line-height: 1.05;
    margin: 0 auto 16px;
    max-width: 820px;
    font-weight: 800;
}

.coaching-clarity p {
    color: var(--brand-muted);
    font-size: 18px;
    line-height: 1.7;
    margin: 0 auto;
    max-width: 760px;
}

body.client-theme .bk-wrap,
body.client-theme .cc-wrap {
    max-width: 960px;
    padding: clamp(44px, 7vw, 88px) 20px;
}

body.client-theme .bk-h1,
body.client-theme .cc-h1 {
    color: var(--brand-navy);
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.05;
}

body.client-theme .bk-sub,
body.client-theme .cc-sub,
body.client-theme .bk-desc,
body.client-theme .h-muted {
    color: var(--brand-muted) !important;
}

body.client-theme .bk-card,
body.client-theme .h-card,
body.client-theme .bg-harvest-surface,
body.client-theme .bg-harvest-elevated {
    background: rgba(255,255,255,.78) !important;
    border-color: rgba(232,160,160,.34) !important;
    color: var(--brand-ink) !important;
    box-shadow: 0 14px 34px rgba(26,39,68,.1);
}

body.client-theme .max-w-lg.bg-harvest-surface {
    background: rgba(255,255,255,.82) !important;
    border: 1px solid rgba(232,160,160,.34) !important;
    border-radius: 22px !important;
    color: var(--brand-ink) !important;
    box-shadow: var(--brand-shadow);
}

body.client-theme .max-w-lg.bg-harvest-surface label,
body.client-theme .max-w-lg.bg-harvest-surface p,
body.client-theme .max-w-lg.bg-harvest-surface span {
    color: var(--brand-muted) !important;
}

body.client-theme .max-w-lg.bg-harvest-surface input,
body.client-theme .max-w-lg.bg-harvest-surface select,
body.client-theme .max-w-lg.bg-harvest-surface textarea {
    background: rgba(255,255,255,.9) !important;
    color: var(--brand-ink) !important;
    border-color: rgba(26,39,68,.16) !important;
}

body.client-theme .bk-name,
body.client-theme .h-empty__title,
body.client-theme .cc-sec {
    color: var(--brand-navy) !important;
}

body.client-theme .bk-price,
body.client-theme a[style*="accent-green"],
body.client-theme a[style*="accent-blue"] {
    color: #b86464 !important;
}

body.client-theme .bk-slot {
    background: rgba(255,255,255,.9) !important;
    color: var(--brand-navy) !important;
    border-color: rgba(232,160,160,.42) !important;
}

body.client-theme .bk-slot:hover {
    background: var(--brand-coral) !important;
    border-color: var(--brand-coral) !important;
    color: var(--brand-navy) !important;
}

body.client-theme .h-badge--neutral {
    background: rgba(232,160,160,.2);
    color: var(--brand-navy);
}

body.client-theme > div[style*="background:var(--surface)"] {
    background: rgba(255,255,255,.72) !important;
    border-bottom: 1px solid rgba(232,160,160,.34) !important;
}

body.client-theme > div[style*="background:var(--surface)"] a {
    color: var(--brand-muted) !important;
}

body.client-theme > div[style*="background:var(--surface)"] a[href="/coaching/coach.html"] {
    color: #b86464 !important;
}

.ct-direct {
    color: var(--brand-muted);
    font-size: 14px;
    line-height: 1.6;
    margin: 18px 0 0;
    text-align: center;
}

.ct-direct a {
    color: #b86464;
    font-weight: 800;
}

body.public-theme[data-section="coaching"] .bg-brand-warm {
    background: var(--brand-gold) !important;
    color: var(--brand-navy) !important;
}

.about-portrait {
    background:
        linear-gradient(145deg, rgba(26,39,68,.68), rgba(247,193,87,.18)),
        radial-gradient(circle at 50% 30%, rgba(247,246,242,.92), transparent 0 14%, transparent 15%),
        radial-gradient(circle at 50% 58%, rgba(247,246,242,.68), transparent 0 24%, transparent 25%),
        linear-gradient(135deg, rgba(232,160,160,.22), rgba(247,193,87,.24));
}

.about-story {
    max-width: 880px;
    color: var(--brand-muted);
}

.public-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 38px;
}

.public-stats div {
    border: 1px solid var(--brand-line);
    border-radius: 16px;
    padding: 18px;
    background: rgba(255,255,255,.72);
    text-align: center;
}

.public-stats strong {
    display: block;
    color: var(--brand-navy);
    font-size: 28px;
    line-height: 1;
}

.public-stats span {
    color: var(--brand-muted);
    display: block;
    margin-top: 8px;
    font-size: 13px;
    font-weight: 700;
}

@media (max-width: 760px) {
    .public-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ===== CP-010: coaching content sections (How Coaching Works, Flow, FAQ) ===== */
.hcw-shell { max-width: 980px; }
.hcw-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; margin-top: 10px; }
.hcw-block h3 { color: var(--brand-navy); font-size: 21px; font-weight: 800; margin: 0 0 12px; }
.hcw-block p { color: var(--brand-ink); font-size: 16px; line-height: 1.75; margin: 0 0 14px; }
.hcw-note { color: var(--brand-muted) !important; font-style: italic; }
.hcw-list { list-style: none; padding: 0; margin: 0 0 14px; }
.hcw-list li { position: relative; padding: 6px 0 6px 28px; color: var(--brand-ink); font-size: 16px; line-height: 1.6; }
.hcw-list li::before { content: "🌱"; position: absolute; left: 0; top: 6px; font-size: 14px; }
.hcw-list--yes li::before { content: "✓"; color: var(--brand-green); font-weight: 800; font-size: 16px; }
.hcw-list--no li::before { content: "✕"; color: #b8443c; font-weight: 800; font-size: 15px; }
.hcw-who { margin-top: 44px; display: grid; grid-template-columns: 380px 1fr; gap: 36px; align-items: center; }
.hcw-who-img { min-height: 300px; border-radius: 18px; }
.hcw-who-cols { display: grid; gap: 26px; }
.hcw-start { margin-top: 44px; background: #fffcf8; border: 1px solid var(--brand-line); border-top: 3px solid var(--brand-gold); border-radius: 18px; padding: 28px 30px; box-shadow: 0 2px 12px rgba(180,160,130,.12); }
.hcw-start h3 { color: var(--brand-navy); font-size: 21px; font-weight: 800; margin: 0 0 14px; }
.hcw-steps { margin: 0; padding-left: 22px; }
.hcw-steps li { color: var(--brand-ink); font-size: 16px; line-height: 1.7; padding: 6px 0; }
.hcw-steps li::marker { color: var(--brand-gold); font-weight: 800; }

.flow-img { display: block; width: 100%; max-width: 860px; margin: 6px auto 26px; border-radius: 16px; }
.flow-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.flow-step { background: #fffcf8; border: 1px solid var(--brand-line); border-radius: 16px; padding: 20px 18px; box-shadow: 0 2px 10px rgba(180,160,130,.10); }
.flow-step h3 { color: var(--brand-navy); font-size: 16px; font-weight: 800; margin: 0 0 10px; }
.flow-step .hcw-list li { font-size: 14.5px; padding: 4px 0 4px 22px; }
.flow-step .hcw-list li::before { content: "•"; color: var(--brand-gold); font-size: 18px; top: 1px; }

.faq-shell { max-width: 860px; }
.faq-head { display: grid; grid-template-columns: 1fr 240px; gap: 28px; align-items: center; margin-bottom: 18px; }
.faq-img { min-height: 200px; border-radius: 18px; }
.faq-item { background: #fffcf8; border: 1px solid var(--brand-line); border-radius: 14px; margin-bottom: 12px; box-shadow: 0 2px 8px rgba(180,160,130,.08); overflow: hidden; }
.faq-item summary { cursor: pointer; list-style: none; padding: 18px 22px; font-size: 17px; font-weight: 700; color: var(--brand-navy); position: relative; user-select: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); font-size: 24px; font-weight: 400; color: var(--brand-gold); transition: transform .2s ease; }
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item[open] summary { border-bottom: 1px solid var(--brand-line); }
.faq-item p { margin: 0; padding: 16px 22px 20px; color: var(--brand-ink); font-size: 16px; line-height: 1.75; }
.faq-item summary:hover { background: rgba(247,193,87,.08); }

@media (max-width: 820px) {
  .hcw-grid, .hcw-who, .flow-grid { grid-template-columns: 1fr; }
  .hcw-who-img { min-height: 220px; }
  .faq-head { grid-template-columns: 1fr; }
  .faq-img { min-height: 160px; }
  .flow-img { border-radius: 12px; }
}

/* ===== CP-FINAL A10-17: entrance animations (subtle, CSS + IntersectionObserver) ===== */
@media (prefers-reduced-motion: no-preference) {
  .anim-down { opacity: 0; transform: translateY(-20px); animation: animDown .6s ease-out forwards; }
  .anim-up { opacity: 0; transform: translateY(20px); transition: opacity .4s ease-out, transform .4s ease-out; }
  .anim-up.anim-in { opacity: 1; transform: translateY(0); }
  @keyframes animDown { to { opacity: 1; transform: translateY(0); } }
}
