/* =========================================================
   Grover Wellness
   site.css
   Beautification 1.0
   ========================================================= */


/* =========================================================
   1. Design tokens
   ========================================================= */

:root {
    --gw-navy: #081a3a;
    --gw-navy-deep: #051126;
    --gw-blue: #143d78;
    --gw-gold: #d6ad45;
    --gw-gold-warm: #d98c3f;
    --gw-gold-light: #f1d88d;
    --gw-ink: #17223b;
    --gw-muted: #667085;
    --gw-cream: #faf7f2;
    --gw-cream-dark: #f3eadc;
    --gw-sand: #f6dfbd;
    --gw-paper: #fffdf9;
    --gw-white: #ffffff;
    --gw-container-width: 1140px;
    --gw-header-height: 78px;
    --gw-shadow-small: 0 12px 30px rgba(8, 26, 58, 0.08);
    --gw-shadow-medium: 0 24px 70px rgba(8, 26, 58, 0.12);
    --gw-shadow-large: 0 30px 90px rgba(8, 26, 58, 0.18);
}

/* =========================================================
   Conversation form and private submission dashboard
   ========================================================= */

.conversation-form-page,
.conversation-received,
.admin-login,
.admin-submissions,
.admin-submission-detail {
    min-height: 72vh;
    padding: clamp(4rem, 8vw, 7rem) 0;
    background: #f7f1e7;
    color: #17253a;
}

.conversation-form-page {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #07162d 0%, #132a48 48%, #4c3636 100%);
    color: #f8f4eb;
}

.conversation-form-page__glow {
    position: absolute;
    inset: auto -15% -40% 20%;
    height: 34rem;
    background: radial-gradient(circle, rgba(210, 165, 90, .32), transparent 68%);
    pointer-events: none;
}

.conversation-form-page__inner {
    position: relative;
    width: min(100%, 760px);
}

.conversation-form-page__intro {
    margin-bottom: 2rem;
}

.conversation-form-page__intro h1,
.conversation-received h1,
.admin-submissions h1,
.admin-submission-detail h1,
.admin-login h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.25rem, 6vw, 4.5rem);
    line-height: 1.04;
}

.conversation-form-page__intro > p:last-child {
    max-width: 660px;
    color: #d8dfeb;
    font-size: 1.08rem;
}

.conversation-form,
.admin-login__card,
.admin-follow-up,
.admin-message,
.admin-empty {
    padding: clamp(1.4rem, 4vw, 2.5rem);
    border: 1px solid rgba(200, 169, 93, .35);
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .18);
    color: #17253a;
}

.conversation-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.conversation-form__field,
.conversation-form__fieldset {
    margin: 0 0 1.2rem;
}

.conversation-form__field label,
.conversation-form__fieldset legend {
    display: block;
    margin-bottom: .45rem;
    font-weight: 700;
}

.conversation-form__field input,
.conversation-form__field textarea,
.conversation-form__field select {
    width: 100%;
    border: 1px solid #b7c0cb;
    border-radius: .65rem;
    padding: .8rem .9rem;
    background: #fff;
    color: #17253a;
}

.conversation-form__field input:focus,
.conversation-form__field textarea:focus,
.conversation-form__field select:focus {
    border-color: #a47c1e;
    outline: 3px solid rgba(199, 166, 74, .25);
}

.conversation-form__choices {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

.conversation-form__choices label,
.conversation-form__consent {
    display: flex;
    align-items: flex-start;
    gap: .55rem;
}

.conversation-form__choices label {
    padding: .7rem 1rem;
    border: 1px solid #c8d0d9;
    border-radius: 999px;
    background: #f7f9fb;
}

.conversation-form__consent {
    margin: .9rem 0;
}

.conversation-form__consent input {
    width: 1.1rem;
    height: 1.1rem;
    margin-top: .15rem;
}

.conversation-form__field > span,
.conversation-form__fieldset > span,
.conversation-form__consent + span,
.conversation-form__errors {
    display: block;
    margin-top: .35rem;
    color: #a3212d;
    font-size: .92rem;
}

.conversation-form__errors:empty {
    display: none;
}

.conversation-form__honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.conversation-form__submit {
    margin-top: 1rem;
}

.conversation-form__privacy {
    margin: 1rem 0 0;
    color: #5e6876;
    font-size: .9rem;
}

.conversation-received {
    text-align: center;
}

.conversation-received .gw-button-row {
    justify-content: center;
    margin-top: 2rem;
}

.survey-invitation {
    margin: 2rem 0;
    padding: clamp(1.35rem, 4vw, 2rem);
    border: 1px solid rgba(178, 132, 38, .28);
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(250, 244, 228, .94));
    box-shadow: 0 20px 48px rgba(8, 26, 58, .08);
}

.survey-invitation h2 { margin: .35rem 0 .65rem; color: var(--gw-navy); font-family: Georgia, serif; }
.survey-invitation small { display: block; margin-top: .85rem; color: #6f7884; }

.survey-page {
    min-height: 70vh;
    padding: clamp(3rem, 8vw, 6.5rem) 0;
    background:
        radial-gradient(circle at 85% 8%, rgba(224, 181, 77, .16), transparent 30rem),
        linear-gradient(180deg, #f8f2e6, #f3eee5);
}

.survey-page__inner { max-width: 860px; }
.survey-page__intro { max-width: 720px; margin-bottom: 2rem; }
.survey-page__intro h1, .survey-complete-card h1 { margin: .35rem 0 .8rem; color: var(--gw-navy); font-family: Georgia, serif; font-size: clamp(2.15rem, 6vw, 4.2rem); font-weight: 500; }
.survey-page__intro > p:last-child { color: #526071; font-size: 1.08rem; line-height: 1.75; }

.survey-form, .survey-complete-card {
    padding: clamp(1.2rem, 4vw, 2.5rem);
    border: 1px solid rgba(8, 26, 58, .1);
    border-radius: 24px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 24px 60px rgba(8, 26, 58, .1);
}

.survey-question { margin: 0; padding: 1.4rem 0; border: 0; border-bottom: 1px solid rgba(8, 26, 58, .1); }
.survey-question legend, .survey-question__title { display: flex; align-items: center; gap: .7rem; margin-bottom: 1rem; color: var(--gw-navy); font-family: Georgia, serif; font-size: 1.25rem; font-weight: 600; }
.survey-question legend span, .survey-question__title > span { display: grid; flex: 0 0 30px; width: 30px; height: 30px; place-items: center; border-radius: 50%; background: #f4e6bd; color: #76591d; font: 800 .72rem/1 system-ui, sans-serif; }
.survey-question small { color: #7a8491; font: 500 .78rem/1.2 system-ui, sans-serif; }
.survey-question textarea { width: 100%; padding: .85rem 1rem; border: 1px solid #ccd2da; border-radius: 12px; color: #18283d; background: #fff; font: inherit; resize: vertical; }
.survey-question textarea:focus { outline: 3px solid rgba(210, 164, 53, .24); border-color: #b68a26; }
.survey-hint { margin: -.4rem 0 .85rem; color: #6f7884; font-size: .9rem; }
.survey-followup { margin-top: 1rem; }

.survey-options { display: grid; gap: .65rem; }
.survey-options--grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.survey-options--inline { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.survey-options label { display: flex; align-items: center; gap: .65rem; min-height: 48px; padding: .7rem .85rem; border: 1px solid rgba(8, 26, 58, .13); border-radius: 12px; background: #fbfaf7; cursor: pointer; }
.survey-options label:has(input:checked) { border-color: #c89b32; background: #fff6dc; box-shadow: inset 0 0 0 1px rgba(200, 155, 50, .25); }
.survey-options input { width: 18px; height: 18px; accent-color: #9c731e; }
.survey-options + span, .survey-question > span.field-validation-error { display: block; margin-top: .5rem; color: #9c2f2f; }
.survey-consent { margin: 1.4rem 0 1rem; }
.survey-submit { width: 100%; justify-content: center; }
.survey-form__errors:not(:empty) { margin-bottom: 1rem; padding: 1rem 1.1rem; border: 1px solid #d9a5a5; border-radius: 12px; background: #fff1f1; }
.survey-form__errors ul { margin: 0; padding-left: 1.2rem; }

.crm-empty { margin: 0; color: #6f7884; }
.crm-survey__answers { display: grid; gap: .85rem; margin: 0; }
.crm-survey__answers > div { display: grid; grid-template-columns: minmax(140px, .7fr) minmax(0, 1.5fr); gap: 1rem; padding-bottom: .85rem; border-bottom: 1px solid rgba(8, 26, 58, .08); }
.crm-survey__answers > div:last-child { padding-bottom: 0; border-bottom: 0; }
.crm-survey__answers dt { color: #6f7884; font-size: .8rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.crm-survey__answers dd { margin: 0; color: #26374d; line-height: 1.55; white-space: pre-wrap; }
.crm-survey__tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.crm-survey__tags span { padding: .28rem .55rem; border-radius: 999px; background: #f4e6bd; color: #624a19; font-size: .82rem; }

@media (max-width: 640px) {
    .survey-options--grid, .survey-options--inline { grid-template-columns: 1fr; }
    .crm-survey__answers > div { grid-template-columns: 1fr; gap: .3rem; }
}

.admin-login {
    display: grid;
    place-items: center;
}

.admin-login__card {
    width: min(92vw, 480px);
}

.admin-login__card h1 {
    font-size: clamp(2rem, 6vw, 3rem);
}

.admin-submissions__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.admin-filters {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    margin-bottom: 1.5rem;
}

.admin-filters a {
    padding: .55rem .85rem;
    border: 1px solid #c4cbd3;
    border-radius: 999px;
    color: #26364a;
    text-decoration: none;
}

.admin-filters a.active {
    border-color: #172b49;
    background: #172b49;
    color: #fff;
}

.admin-submission-list {
    display: grid;
    gap: .85rem;
}

.admin-submission-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: .45rem 1rem;
    padding: 1.1rem 1.25rem;
    border: 1px solid #d4d8dc;
    border-radius: .9rem;
    background: #fff;
    color: #17253a;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(23, 37, 58, .06);
}

.admin-submission-card:hover {
    border-color: #b48c2e;
    transform: translateY(-1px);
}

.admin-submission-card p,
.admin-submission-card small {
    grid-column: 2 / -1;
    margin: 0;
}

.admin-status {
    display: inline-flex;
    width: max-content;
    padding: .3rem .55rem;
    border-radius: 999px;
    background: #e6eef8;
    color: #183b66;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.admin-submission-detail__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, .75fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.admin-message h1 {
    margin-top: .8rem;
    font-size: clamp(2rem, 5vw, 3.5rem);
}

.admin-message__date {
    color: #657184;
}

.admin-message dl > div {
    display: grid;
    grid-template-columns: 9rem 1fr;
    gap: 1rem;
    padding: .55rem 0;
    border-bottom: 1px solid #e4e7ea;
}

.admin-message dt {
    color: #657184;
}

.admin-message__body {
    white-space: pre-wrap;
    line-height: 1.7;
}

.admin-saved {
    margin: 1rem 0;
    padding: .8rem 1rem;
    border-radius: .65rem;
    background: #e2f4e8;
    color: #185b30;
}

/* Relationship Center */
.crm-shell {
    min-height: 100vh;
    padding: clamp(2.5rem, 6vw, 5rem) 0 6rem;
    color: #142238;
    background:
        radial-gradient(circle at 88% 4%, rgba(214, 173, 69, .16), transparent 26rem),
        linear-gradient(180deg, #f8f3ea 0%, #f1e9dc 100%);
}

.crm-hero,
.crm-person-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
}

.crm-hero { margin-bottom: 2rem; }
.crm-hero h1,
.crm-person-header h1 {
    margin: .2rem 0 .55rem;
    color: var(--gw-navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.5rem, 6vw, 4.7rem);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -.04em;
}
.crm-hero p:last-child,
.crm-person-header p:last-child { max-width: 660px; margin: 0; color: #667085; font-size: 1.05rem; }
.crm-quiet-button {
    padding: .7rem 1rem;
    border: 1px solid rgba(8, 26, 58, .18);
    border-radius: 999px;
    background: rgba(255,255,255,.55);
    color: var(--gw-navy);
    cursor: pointer;
}

.crm-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .8rem;
    margin-bottom: 1.5rem;
}
.crm-metric {
    position: relative;
    overflow: hidden;
    min-height: 148px;
    padding: 1.1rem;
    border: 1px solid rgba(8, 26, 58, .1);
    border-radius: 18px;
    background: rgba(255,255,255,.82);
    color: var(--gw-navy);
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(8,26,58,.06);
}
.crm-metric::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 4px; background: var(--metric, var(--gw-gold)); }
.crm-metric--gold { --metric: #d6ad45; }
.crm-metric--rose { --metric: #c46b65; }
.crm-metric--blue { --metric: #4a76a8; }
.crm-metric--green { --metric: #4b8a68; }
.crm-metric span, .crm-metric small { display: block; }
.crm-metric span { color: #5d6877; font-weight: 700; }
.crm-metric strong { display: block; margin: .35rem 0 .2rem; font-family: Georgia, serif; font-size: 2.5rem; font-weight: 500; }
.crm-metric small { color: #798291; }

.crm-toolbar {
    padding: 1rem 1rem .35rem;
    border: 1px solid rgba(8,26,58,.1);
    border-radius: 18px 18px 0 0;
    background: rgba(255,255,255,.66);
}
.crm-search { display: flex; gap: .6rem; margin-bottom: .9rem; }
.crm-search input { flex: 1; min-width: 0; padding: .8rem 1rem; border: 1px solid #c8cfd7; border-radius: 10px; background: #fff; }
.crm-search button { padding: .7rem 1.15rem; border: 0; border-radius: 10px; background: var(--gw-navy); color: white; font-weight: 700; cursor: pointer; }
.crm-toolbar .admin-filters { margin-bottom: .55rem; }
.crm-list-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .9rem 1.1rem;
    border-right: 1px solid rgba(8,26,58,.1);
    border-left: 1px solid rgba(8,26,58,.1);
    background: rgba(255,255,255,.45);
    color: #687384;
}
.crm-list-heading div { display: flex; align-items: center; gap: .55rem; color: var(--gw-navy); }
.crm-live-dot { width: .55rem; height: .55rem; border-radius: 50%; background: #4b8a68; box-shadow: 0 0 0 4px rgba(75,138,104,.13); }

.crm-people-list { overflow: hidden; border: 1px solid rgba(8,26,58,.1); border-radius: 0 0 18px 18px; background: rgba(255,255,255,.78); }
.crm-person {
    display: grid;
    grid-template-columns: 46px minmax(145px,.8fr) minmax(220px,1.4fr) 90px auto 92px 24px;
    align-items: center;
    gap: .9rem;
    padding: 1rem 1.1rem;
    border-bottom: 1px solid rgba(8,26,58,.08);
    color: #17253a;
    text-decoration: none;
    transition: background .18s ease, transform .18s ease;
}
.crm-person:last-child { border-bottom: 0; }
.crm-person:hover { background: #fffaf1; transform: translateX(2px); }
.crm-avatar { display: grid; width: 46px; height: 46px; place-items: center; border-radius: 14px; background: linear-gradient(145deg,#102b52,#27588c); color: #f3d680; font-family: Georgia,serif; font-size: 1.15rem; }
.crm-avatar--large { flex: 0 0 auto; width: 76px; height: 76px; border-radius: 22px; font-size: 1.65rem; }
.crm-person__identity, .crm-person__next { display: flex; min-width: 0; flex-direction: column; }
.crm-person__identity small, .crm-person__time, .crm-person__next small { overflow: hidden; color: #778190; text-overflow: ellipsis; white-space: nowrap; }
.crm-person__message { overflow: hidden; color: #526071; text-overflow: ellipsis; white-space: nowrap; }
.crm-person__next.is-due strong { color: #a44a45; }
.crm-person__arrow { color: #a17a24; font-size: 1.25rem; }

.admin-status--new { background: #fff0c7; color: #735315; }
.admin-status--reviewed { background: #e7edf6; color: #37506f; }
.admin-status--contacted { background: #dcebf8; color: #21547d; }
.admin-status--followup { background: #f5dfdc; color: #8b4540; }
.admin-status--closed { background: #dceee3; color: #2e6947; }

.crm-back { display: inline-block; margin-bottom: 1.5rem; color: #40526a; font-weight: 700; text-decoration: none; }
.crm-person-header { align-items: center; justify-content: flex-start; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(8,26,58,.12); }
.crm-person-header > div { flex: 1; }
.crm-person-header h1 { font-size: clamp(2.4rem,5vw,4rem); }
.crm-workspace { display: grid; grid-template-columns: minmax(0,1.35fr) minmax(310px,.65fr); gap: 1.25rem; align-items: start; margin-top: 1.5rem; }
.crm-story { display: grid; gap: 1rem; }
.crm-panel, .crm-action-card { padding: clamp(1.25rem,3vw,2rem); border: 1px solid rgba(8,26,58,.11); border-radius: 18px; background: rgba(255,255,255,.88); box-shadow: 0 16px 40px rgba(8,26,58,.06); }
.crm-panel__heading { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.2rem; }
.crm-panel__heading > div { display: flex; align-items: center; gap: .65rem; }
.crm-panel__heading span { display: grid; width: 30px; height: 30px; place-items: center; border-radius: 50%; background: #f4e6bd; color: #76591d; font-size: .75rem; font-weight: 800; }
.crm-panel h2, .crm-action-card h2 { margin: 0; color: var(--gw-navy); font-family: Georgia,serif; font-size: 1.55rem; font-weight: 500; }
.crm-panel__heading small { color: #7a8491; }
.crm-contact-actions { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: .8rem; }
.crm-contact-actions a { display: flex; flex-direction: column; padding: .9rem 1rem; border: 1px solid #d9d3c8; border-radius: 12px; background: #fffaf1; color: var(--gw-navy); text-decoration: none; }
.crm-contact-actions small { color: #7b6b50; }
.crm-story__message { margin: 0; padding: 1.2rem 1.25rem; border-left: 3px solid var(--gw-gold); background: #fbf7ef; color: #334257; font-family: Georgia,serif; font-size: 1.12rem; line-height: 1.7; white-space: pre-wrap; }
.crm-timeline { display: grid; gap: 1rem; }
.crm-timeline > div { position: relative; display: grid; grid-template-columns: 14px 1fr; column-gap: .7rem; }
.crm-timeline span { grid-row: 1 / 3; width: 10px; height: 10px; margin-top: .25rem; border: 2px solid #fff; border-radius: 50%; background: #4b8a68; box-shadow: 0 0 0 2px #b8d3c3; }
.crm-timeline small { color: #7b8490; }
.crm-action-card { position: sticky; top: 1.25rem; border-top: 4px solid var(--gw-gold); }
.crm-action-card__intro { margin-bottom: 1.4rem; }
.crm-action-card__intro h2 { font-size: 1.8rem; }
.crm-check { padding: .75rem; border: 1px solid #d8dde3; border-radius: 12px; background: #fafbfc; }
.crm-check span { display: flex; flex-direction: column; }
.crm-check small { color: #737d8a; font-size: .8rem; }
.crm-save { width: 100%; }
.crm-private-note { margin: .75rem 0 0; color: #7a8390; font-size: .8rem; text-align: center; }
.crm-lucy-advice { border-top: 4px solid #8d6ab8; background: linear-gradient(145deg,rgba(255,255,255,.94),rgba(247,241,252,.92)); }
.crm-lucy-advice__text { margin-bottom: 1.2rem; padding: 1.1rem 1.2rem; border-radius: 14px; background: #fff; color: #334257; line-height: 1.65; white-space: pre-wrap; }
.crm-lucy-advice__button { width: 100%; border: 1px solid #7855a2; background: #7855a2; color: #fff; }
.crm-lucy-advice__button:hover { background: #65458c; color: #fff; }

@media (max-width: 980px) {
    .crm-metrics { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .crm-person { grid-template-columns: 46px 1fr auto 24px; }
    .crm-person__message { grid-column: 2 / -1; }
    .crm-person__next, .crm-person__time { display: none; }
    .crm-workspace { grid-template-columns: 1fr; }
    .crm-action-card { position: static; }
}

@media (max-width: 600px) {
    .crm-hero, .crm-person-header { flex-wrap: wrap; }
    .crm-metrics { grid-template-columns: 1fr 1fr; }
    .crm-metric { min-height: 128px; }
    .crm-search { flex-direction: column; }
    .crm-person { grid-template-columns: 46px 1fr auto; gap: .7rem; }
    .crm-person__message { grid-column: 1 / -1; white-space: normal; }
    .crm-person__arrow { display: none; }
    .crm-contact-actions { grid-template-columns: 1fr; }
    .crm-panel__heading { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 760px) {
    .conversation-form__grid,
    .admin-submission-detail__grid {
        grid-template-columns: 1fr;
    }

    .admin-submissions__header,
    .admin-submission-card {
        display: block;
    }

    .admin-submission-card > * {
        display: block;
        margin-bottom: .5rem;
    }

    .admin-message dl > div {
        grid-template-columns: 1fr;
        gap: .15rem;
    }
}


/* =========================================================
   2. Base styles
   ========================================================= */

html {
    position: relative;
    min-height: 100%;
    font-size: 14px;
    scroll-behavior: smooth;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

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

body {
    min-height: 100%;
    margin: 0;
    color: var(--gw-ink);
    background: var(--gw-cream);
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.gw-skip-link {
    position: fixed;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 9999;
    padding: 0.75rem 1rem;
    color: var(--gw-white);
    background: var(--gw-navy);
    border: 2px solid var(--gw-gold-light);
    border-radius: 0.5rem;
    transform: translateY(-150%);
}

.gw-skip-link:focus {
    color: var(--gw-white);
    transform: translateY(0);
}

#main-content:focus {
    outline: none;
}

.gw-back-to-top {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 1000;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    min-width: 48px;
    min-height: 48px;
    padding: 0.65rem 0.85rem;
    color: var(--gw-white);
    background: var(--gw-navy);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    box-shadow: var(--gw-shadow-medium);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.gw-back-to-top:hover,
.gw-back-to-top:focus-visible {
    color: var(--gw-navy);
    background: var(--gw-gold-light);
    outline: 3px solid rgba(214, 173, 69, 0.35);
    outline-offset: 3px;
}

.gw-back-to-top[hidden] {
    display: none;
}

.gw-legal-hero {
    padding: clamp(7rem, 12vw, 10rem) 0 clamp(4rem, 8vw, 6rem);
    color: var(--gw-white);
    background:
        radial-gradient(circle at 80% 10%, rgba(214, 173, 69, 0.24), transparent 32rem),
        linear-gradient(145deg, var(--gw-navy-deep), var(--gw-blue));
}

.gw-legal-hero h1 {
    margin-bottom: 1rem;
    color: var(--gw-white);
}

.gw-legal-hero p:last-child {
    max-width: 46rem;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.gw-legal-content {
    padding: clamp(4rem, 8vw, 7rem) 0;
    background: var(--gw-paper);
}

.gw-legal-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
    font-size: clamp(1.35rem, 3vw, 1.8rem);
}

.gw-legal-content h2:first-child {
    margin-top: 0;
}

.gw-legal-updated {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(8, 26, 58, 0.14);
    color: var(--gw-muted);
    font-size: 0.95rem;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

main {
    display: block;
    overflow-x: clip;
}

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

a {
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.container {
    width: min( var(--gw-container-width), calc(100% - 40px) );
    margin-right: auto;
    margin-left: auto;
}


/* =========================================================
   3. Bootstrap compatibility and accessibility
   ========================================================= */

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.1rem var(--gw-white), 0 0 0 0.25rem rgba(217, 140, 63, 0.45);
}

.form-floating > .form-control-plaintext::placeholder,
.form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder,
.form-floating > .form-control:focus::placeholder {
    text-align: start;
}


/* =========================================================
   4. Header and navigation
   ========================================================= */

.gw-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: var(--gw-header-height);
    background: linear-gradient( 180deg, rgba(5, 17, 38, 0.97), rgba(8, 26, 58, 0.91) );
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: 0 8px 30px rgba(5, 17, 38, 0.12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.gw-nav-container {
    min-height: var(--gw-header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.gw-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--gw-white);
    text-decoration: none;
}

    .gw-brand:hover {
        color: var(--gw-white);
        transform: translateY(-1px);
    }

.gw-brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 2px solid var(--gw-gold);
    border-radius: 50%;
    color: var(--gw-gold-light);
    background: radial-gradient( circle at 35% 30%, rgba(255, 255, 255, 0.12), transparent 55% );
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(214, 173, 69, 0.16);
}

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

    .gw-brand-text strong {
        font-size: 1.05rem;
        letter-spacing: 0.04em;
    }

    .gw-brand-text small {
        margin-top: 4px;
        color: var(--gw-gold-light);
        font-size: 0.7rem;
        letter-spacing: 0.18em;
        text-transform: uppercase;
    }

.gw-navigation {
    display: flex;
    align-items: center;
    gap: 28px;
}

    .gw-navigation a {
        position: relative;
        color: #e6edf9;
        font-size: 0.92rem;
        font-weight: 700;
        text-decoration: none;
    }

        .gw-navigation a:not(.gw-nav-button)::after {
            content: "";
            position: absolute;
            left: 0;
            right: 100%;
            bottom: -7px;
            height: 2px;
            background: linear-gradient( 90deg, var(--gw-gold), var(--gw-gold-light) );
            transition: right 0.22s ease;
        }

        .gw-navigation a:hover {
            color: var(--gw-gold-light);
        }

        .gw-navigation a:not(.gw-nav-button):hover::after {
            right: 0;
        }

    .gw-navigation .gw-nav-button {
        padding: 11px 18px;
        border: 1px solid rgba(255, 255, 255, 0.28);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.05);
    }

        .gw-navigation .gw-nav-button:hover {
            color: var(--gw-navy);
            border-color: var(--gw-gold-light);
            background: linear-gradient( 135deg, var(--gw-gold), var(--gw-gold-light) );
            box-shadow: 0 12px 28px rgba(214, 173, 69, 0.22);
            transform: translateY(-2px);
        }

.gw-nav-toggle {
    display: none;
    padding: 8px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

    .gw-nav-toggle span {
        width: 26px;
        height: 2px;
        display: block;
        margin: 5px 0;
        background: var(--gw-white);
        transition: transform 0.2s ease, opacity 0.2s ease;
    }


/* =========================================================
   5. Hero section
   ========================================================= */

.gw-hero {
    position: relative;
    isolation: isolate;
    min-height: calc(100vh - var(--gw-header-height));
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 110px 0 120px;
    color: var(--gw-white);
    background: linear-gradient( 180deg, rgba(5, 17, 38, 0.04) 0%, rgba(5, 17, 38, 0.24) 43%, rgba(5, 17, 38, 0.74) 79%, rgba(5, 17, 38, 0.98) 100% ), linear-gradient( 135deg, #07172f 0%, #17375f 34%, #b95f43 63%, #e99b54 82%, #f6d18e 100% );
}

    /* Sunrise glow */

    .gw-hero::before {
        content: "";
        position: absolute;
        z-index: -2;
        width: 620px;
        height: 620px;
        right: 5%;
        top: 45%;
        transform: translateY(-50%);
        border-radius: 50%;
        background: radial-gradient( circle, rgba(255, 247, 208, 1) 0%, rgba(249, 210, 126, 0.92) 17%, rgba(236, 148, 77, 0.58) 34%, rgba(208, 91, 61, 0.22) 50%, transparent 72% );
        filter: blur(3px);
        animation: gwSunArrival 8.5s cubic-bezier(.22, .72, .32, 1) both;
    }

    /* Mountain silhouette */

    .gw-hero::after {
        content: "";
        position: absolute;
        z-index: -1;
        left: -5%;
        right: -5%;
        bottom: -1px;
        height: 46%;
        background: radial-gradient( ellipse at 76% 100%, rgba(246, 196, 124, 0.20), transparent 50% ), linear-gradient( 165deg, transparent 0 42%, rgba(15, 44, 75, 0.82) 43% 57%, #07172f 58% );
        clip-path: polygon( 0 56%, 13% 42%, 25% 57%, 39% 30%, 52% 51%, 65% 24%, 77% 49%, 90% 20%, 100% 38%, 100% 100%, 0 100% );
    }

/* =========================================================
   New Possibilities hero
   Overrides the shared homepage sunrise artwork
   ========================================================= */

.gw-possibilities-hero {
    background: radial-gradient( circle at 78% 28%, rgba(241, 216, 141, 0.20), transparent 28% ), radial-gradient( circle at 16% 78%, rgba(217, 140, 63, 0.18), transparent 34% ), linear-gradient( 135deg, #06142e 0%, #0d2b57 42%, #284e78 70%, #78624f 100% );
}

    /* Completely remove the homepage sun */
    .gw-possibilities-hero::before {
        content: none;
    }

    /* Replace the mountains with a subtle open-road horizon */
    .gw-possibilities-hero::after {
        left: 0;
        right: 0;
        bottom: 0;
        height: 42%;
        background: linear-gradient( 172deg, transparent 0 42%, rgba(7, 23, 47, 0.55) 43% 57%, #051126 58% );
        clip-path: polygon( 0 63%, 17% 56%, 34% 60%, 51% 48%, 67% 55%, 83% 39%, 100% 52%, 100% 100%, 0 100% );
    }

/* Pre-dawn atmosphere */

.gw-dawn-overlay {
    position: absolute;
    z-index: 0;
    inset: 0;
    pointer-events: none;
    background: linear-gradient( 180deg, rgba(1, 6, 20, 0.78) 0%, rgba(3, 11, 31, 0.68) 38%, rgba(15, 20, 42, 0.42) 68%, rgba(62, 43, 46, 0.16) 100% );
    animation: gwDawnBrighten 8.5s ease-out both;
}

/* Faint stars during the opening dawn */

.gw-stars {
    position: absolute;
    z-index: 1;
    inset: 0 0 35%;
    pointer-events: none;
    opacity: 0.72;
    background-image: radial-gradient(circle at 8% 18%, rgba(255,255,255,.82) 0 1px, transparent 1.6px), radial-gradient(circle at 16% 43%, rgba(255,255,255,.55) 0 1px, transparent 1.5px), radial-gradient(circle at 25% 12%, rgba(255,255,255,.72) 0 1px, transparent 1.6px), radial-gradient(circle at 35% 34%, rgba(255,255,255,.52) 0 1px, transparent 1.5px), radial-gradient(circle at 45% 16%, rgba(255,255,255,.76) 0 1px, transparent 1.7px), radial-gradient(circle at 56% 41%, rgba(255,255,255,.50) 0 1px, transparent 1.5px), radial-gradient(circle at 66% 11%, rgba(255,255,255,.68) 0 1px, transparent 1.6px), radial-gradient(circle at 77% 30%, rgba(255,255,255,.72) 0 1px, transparent 1.7px), radial-gradient(circle at 88% 16%, rgba(255,255,255,.54) 0 1px, transparent 1.5px), radial-gradient(circle at 94% 47%, rgba(255,255,255,.66) 0 1px, transparent 1.6px);
    animation: gwStarsFade 6.6s ease-in both;
}

.gw-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    animation: gwHeroEntrance 2s ease-out 2.9s both;
}

.gw-eyebrow {
    margin: 0 0 18px;
    color: var(--gw-gold-light);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.gw-eyebrow-dark {
    color: #A86E10;
    font-size: .80rem;
    font-weight: 800;
    letter-spacing: .24em;
    text-transform: uppercase;
}

.gw-hero h1 {
    max-width: 900px;
    margin: 0 0 28px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.05em;
    text-wrap: balance;
}

    .gw-hero h1 span {
        display: block;
        color: var(--gw-gold-light);
        text-shadow: 0 5px 30px rgba(5, 17, 38, 0.26);
    }

.gw-lead {
    max-width: 720px;
    margin: 0;
    color: #e1e9f6;
    font-size: 1.2rem;
    line-height: 1.75;
    text-wrap: pretty;
}

.gw-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
}


/* =========================================================
   6. Buttons and links
   ========================================================= */

.gw-button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

    .gw-button:hover {
        transform: translateY(-2px);
    }

.gw-button-primary {
    color: var(--gw-ink);
    background: linear-gradient( 135deg, var(--gw-gold), var(--gw-gold-light) );
    box-shadow: 0 16px 34px rgba(214, 173, 69, 0.24);
}

    .gw-button-primary:hover {
        color: var(--gw-ink);
        box-shadow: 0 20px 44px rgba(214, 173, 69, 0.34);
    }

.gw-button-secondary {
    color: var(--gw-white);
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(8px);
}

    .gw-button-secondary:hover {
        color: var(--gw-white);
        border-color: rgba(255, 255, 255, 0.68);
        background: rgba(255, 255, 255, 0.13);
        box-shadow: 0 14px 34px rgba(5, 17, 38, 0.18);
    }

.gw-text-link {
    position: relative;
    display: inline-block;
    margin-top: 16px;
    color: var(--gw-navy);
    font-weight: 800;
    text-decoration: none;
}

    .gw-text-link::after {
        content: "";
        position: absolute;
        left: 0;
        right: 100%;
        bottom: -4px;
        height: 2px;
        background: var(--gw-gold-warm);
        transition: right 0.22s ease;
    }

    .gw-text-link:hover {
        color: var(--gw-gold-warm);
    }

        .gw-text-link:hover::after {
            right: 0;
        }


/* =========================================================
   7. Scroll cue
   ========================================================= */

.gw-scroll-cue {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-decoration: none;
    text-transform: uppercase;
}

    .gw-scroll-cue:hover {
        color: var(--gw-gold-light);
    }

.gw-scroll-arrow {
    font-size: 1.4rem;
    animation: gwArrowFloat 1.8s ease-in-out infinite;
}

/* =========================================================
8. Welcome section
========================================================= */

.gw-intro {
    position: relative;
    z-index: 5;
    margin-top: -72px;
    padding: 138px 0 124px;
    color: var(--gw-ink);
    background: linear-gradient( 180deg, #e9ae68 0%, #f1c88f 7%, #f6dfbd 18%, #faeedb 38%, var(--gw-cream) 70%, var(--gw-cream) 100% );
    border-radius: 46px 46px 0 0;
    box-shadow: 0 -22px 70px rgba(7, 23, 47, 0.15);
}

    .gw-intro::before {
        content: "";
        position: absolute;
        z-index: -1;
        top: -120px;
        left: 0;
        right: 0;
        height: 220px;
        pointer-events: none;
        background: radial-gradient( ellipse at 76% 100%, rgba(250, 203, 131, 0.86) 0%, rgba(239, 167, 94, 0.42) 38%, transparent 70% ), linear-gradient( 180deg, transparent 0%, rgba(240, 172, 98, 0.32) 46%, rgba(246, 223, 189, 0.82) 100% );
    }

.gw-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(52px, 8vw, 100px);
    align-items: start;
}

.gw-intro-heading {
    position: sticky;
    top: calc(var(--gw-header-height) + 48px);
}

.gw-intro h2,
.gw-section-heading h2 {
    margin: 0;
    color: var(--gw-navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 5.6vw, 5rem);
    font-weight: 500;
    line-height: 1.06;
    letter-spacing: -0.045em;
    text-wrap: balance;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.30);
}

.gw-intro-copy {
    max-width: 700px;
    padding-top: 8px;
}

    .gw-intro-copy p {
        margin: 0 0 24px;
        color: #39485b;
        font-size: 1.12rem;
        line-height: 1.95;
        text-wrap: pretty;
    }

    .gw-intro-copy p {
        color: #26364c;
        font-size: 1.22rem;
    }

.gw-intro-emphasis {
    position: relative;
    margin-top: 34px !important;
    padding: 25px 28px 25px 32px;
    overflow: hidden;
    color: var(--gw-navy) !important;
    border: 1px solid rgba(168, 110, 16, 0.18);
    border-radius: 18px;
    background: linear-gradient( 135deg, rgba(255, 253, 249, 0.88), rgba(246, 223, 189, 0.62) );
    box-shadow: 0 18px 44px rgba(8, 26, 58, 0.08);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.28rem !important;
    font-style: italic;
    line-height: 1.6 !important;
}

    .gw-intro-emphasis::before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 5px;
        background: linear-gradient( 180deg, var(--gw-gold), var(--gw-gold-warm) );
    }

/* =========================================================
9. Path section heading
========================================================= */

.gw-paths {
    position: relative;
    padding: 118px 0 120px;
    background: radial-gradient( circle at 12% 15%, rgba(214, 173, 69, 0.10), transparent 32% ), linear-gradient( 180deg, var(--gw-cream) 0%, #f7efe4 54%, #efe4d4 100% );
}

.gw-section-heading {
    max-width: 820px;
    margin: 0 auto 58px;
    text-align: center;
}

    .gw-section-heading h2 {
        margin-bottom: 24px;
    }

.gw-section-intro {
    max-width: 660px;
    margin: 0 auto;
    color: #566377;
    font-size: 1.08rem;
    line-height: 1.85;
    text-wrap: pretty;
}

/* =========================================================
10. Path cards
========================================================= */

.gw-path-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.gw-card {
    position: relative;
    min-height: 410px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 48px;
    border: 1px solid rgba(8, 26, 58, 0.08);
    border-radius: 30px;
    background: radial-gradient( circle at 100% 100%, rgba(214, 173, 69, 0.15), transparent 38% ), linear-gradient( 145deg, var(--gw-paper), #f5eee4 );
    box-shadow: var(--gw-shadow-medium);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

    .gw-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 48px;
        width: 76px;
        height: 4px;
        border-radius: 0 0 999px 999px;
        background: linear-gradient( 90deg, var(--gw-gold), var(--gw-gold-warm) );
    }

    .gw-card::after {
        content: "";
        position: absolute;
        width: 250px;
        height: 250px;
        right: -105px;
        bottom: -110px;
        border-radius: 50%;
        background: rgba(214, 173, 69, 0.10);
        transition: transform 0.35s ease;
    }

.gw-card {
    transform: translateY(-8px);
    border-color: rgba(214, 173, 69, 0.30);
    box-shadow: var(--gw-shadow-large);
}

    .gw-card:hover::after {
        transform: scale(1.12);
    }

.gw-card-dark {
    color: var(--gw-white);
    border-color: rgba(255, 255, 255, 0.09);
    background: radial-gradient( circle at 100% 100%, rgba(241, 216, 141, 0.15), transparent 40% ), linear-gradient( 145deg, var(--gw-navy-deep), var(--gw-blue) );
}

    .gw-card-dark::before {
        background: linear-gradient( 90deg, var(--gw-gold), var(--gw-gold-light) );
    }

    .gw-card-dark::after {
        background: rgba(241, 216, 141, 0.08);
    }

.gw-card-number {
    position: absolute;
    top: 27px;
    right: 32px;
    color: currentColor;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    opacity: 0.12;
}

.gw-card-kicker {
    position: relative;
    z-index: 1;
    margin: 42px 0 16px !important;
    color: #a86e10 !important;
    font-size: 0.76rem !important;
    font-weight: 800;
    line-height: 1.4 !important;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.gw-card-dark .gw-card-kicker {
    color: var(--gw-gold-light) !important;
}

.gw-card h3 {
    position: relative;
    z-index: 1;
    max-width: 520px;
    margin: 0 0 20px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 3vw, 2.65rem);
    font-weight: 500;
    line-height: 1.18;
    letter-spacing: -0.025em;
    text-wrap: balance;
}

.gw-card > p(.gw-card-kicker) {
    position: relative;
    z-index: 1;
    max-width: 540px;
    margin: 0;
    color: var(--gw-muted);
    font-size: 1.02rem;
    line-height: 1.85;
}

.gw-card-dark > p(.gw-card-kicker) {
    color: #d7e0ef;
}

.gw-card a {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    align-self: flex-start;
    margin-top: auto;
    padding-top: 34px;
    color: var(--gw-navy);
    font-weight: 800;
    text-decoration: none;
}

.gw-card-dark a {
    color: var(--gw-gold-light);
}

.gw-card a span {
    transition: transform 0.22s ease;
}

.gw-card a span {
    transform: translateX(5px);
}

/* =========================================================
11. Connection section
========================================================= */

.gw-connection {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 150px 0;
    color: var(--gw-white);
    background: radial-gradient( circle at 75% 30%, rgba(217, 140, 63, 0.24), transparent 34% ), radial-gradient( circle at 20% 100%, rgba(214, 173, 69, 0.16), transparent 38% ), linear-gradient( 145deg, var(--gw-navy-deep), var(--gw-navy) 58%, var(--gw-blue) );
}

    .gw-connection::before {
        content: "";
        position: absolute;
        z-index: -1;
        width: 520px;
        height: 520px;
        right: -180px;
        top: -220px;
        border: 1px solid rgba(241, 216, 141, 0.12);
        border-radius: 50%;
        box-shadow: 0 0 0 70px rgba(241, 216, 141, 0.025), 0 0 0 140px rgba(241, 216, 141, 0.018);
    }

.gw-connection-content {
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
}

.gw-connection blockquote {
    max-width: 940px;
    margin: 0 auto 34px;
    color: var(--gw-white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 6.3vw, 5.8rem);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.045em;
    text-wrap: balance;
}

.gw-connection-content > p {
    max-width: 720px;
    margin: 0 auto;
    color: #cdd8e9;
    font-size: 1.16rem;
    line-height: 1.85;
    text-wrap: pretty;
}

/* =========================================================
12. Promise section
========================================================= */

.gw-promise {
    position: relative;
    padding: 110px 0 120px;
    background: radial-gradient( circle at 50% 0%, rgba(214, 173, 69, 0.12), transparent 36% ), linear-gradient( 180deg, #e8dac7 0%, #f3eadc 48%, #d8c6ad 100% );
}

.gw-promise-panel {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    padding: 72px 76px 64px;
    overflow: hidden;
    color: var(--gw-white);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 32px;
    background: radial-gradient( circle at 50% 0%, rgba(241, 216, 141, 0.20), transparent 42% ), linear-gradient( 145deg, var(--gw-navy-deep), var(--gw-blue) );
    box-shadow: 0 34px 90px rgba(8, 26, 58, 0.22);
}

    .gw-promise-panel::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        width: 120px;
        height: 4px;
        border-radius: 0 0 999px 999px;
        background: linear-gradient( 90deg, var(--gw-gold), var(--gw-gold-light) );
        transform: translateX(-50%);
    }

    .gw-promise-panel::after {
        content: "";
        position: absolute;
        width: 280px;
        height: 280px;
        right: -120px;
        bottom: -130px;
        border-radius: 50%;
        background: rgba(241, 216, 141, 0.08);
    }

.gw-promise-mark {
    position: relative;
    z-index: 1;
    margin: 0 0 18px;
    color: var(--gw-gold-light);
    font-size: 1.7rem;
}

.gw-promise-panel .gw-eyebrow {
    position: relative;
    z-index: 1;
    margin-bottom: 24px;
}

.gw-promise blockquote {
    position: relative;
    z-index: 1;
    max-width: 810px;
    margin: 0 auto 30px;
    color: var(--gw-white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.8rem, 3.3vw, 2.8rem);
    line-height: 1.4;
    text-wrap: balance;
}

.gw-promise-signature {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--gw-gold-light);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.06em;
}

/* =========================================================
Phase 2 responsive adjustments
========================================================= */

@media (max-width: 900px) {
    .gw-intro-grid,
    .gw-path-grid {
        grid-template-columns: 1fr;
    }

    .gw-intro-grid {
        gap: 48px;
    }

    .gw-intro-heading {
        position: static;
    }

    .gw-section-heading {
        margin-bottom: 44px;
    }

    .gw-connection {
        padding: 120px 0;
    }
}

@media (max-width: 600px) {
    .gw-intro {
        margin-top: -48px;
        padding: 102px 0 88px;
        border-radius: 32px 32px 0 0;
        background: linear-gradient( 180deg, #e9ae68 0%, #f2ce99 9%, #f7e4c8 25%, #faeedf 48%, var(--gw-cream) 78%, var(--gw-cream) 100% );
    }

        .gw-intro::before {
            top: -85px;
            height: 150px;
        }

        .gw-intro h2,
        .gw-section-heading h2 {
            font-size: clamp(2.55rem, 12vw, 3.5rem);
        }

    .gw-intro-copy p {
        font-size: 1.04rem;
        line-height: 1.82;
    }

        .gw-intro-copy p:first-child {
            font-size: 1.12rem;
        }

    .gw-intro-emphasis {
        padding: 22px 22px 22px 26px;
        font-size: 1.16rem !important;
    }

    .gw-paths {
        padding: 88px 0 92px;
    }

    .gw-section-heading {
        margin-bottom: 38px;
        text-align: left;
    }

    .gw-section-intro {
        font-size: 1rem;
    }

    .gw-path-grid {
        gap: 22px;
    }

    .gw-card {
        min-height: 390px;
        padding: 34px 28px;
        border-radius: 24px;
    }

        .gw-card::before {
            left: 28px;
            width: 62px;
        }

    .gw-card-number {
        top: 24px;
        right: 26px;
        font-size: 3rem;
    }

    .gw-card-kicker {
        margin-top: 38px !important;
    }

    .gw-card h3 {
        font-size: 2.05rem;
    }

    .gw-connection {
        padding: 105px 0;
    }

        .gw-connection blockquote {
            font-size: clamp(2.6rem, 13vw, 4rem);
        }

    .gw-connection-content > p:last-child {
        font-size: 1.04rem;
    }

    .gw-promise {
        padding: 78px 0 88px;
    }

    .gw-promise-panel {
        padding: 58px 26px 50px;
        border-radius: 24px;
    }

    .gw-promise blockquote {
        font-size: 1.75rem;
        line-height: 1.42;
    }
}

    /* =========================================================
   12. Generic Bootstrap cards and buttons
   ========================================================= */

    .card {
        border: none;
        border-radius: 22px;
        background: var(--gw-paper);
        box-shadow: var(--gw-shadow-small);
        transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

        .card:hover {
            transform: translateY(-6px);
            box-shadow: var(--gw-shadow-medium);
        }

    .btn-primary {
        padding: 0.9rem 2.2rem;
        border-color: var(--gw-gold-warm);
        border-radius: 40px;
        background: var(--gw-gold-warm);
        font-weight: 600;
        transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    }

        .btn-primary:hover,
        .btn-primary:focus {
            border-color: #c5792f;
            background: #c5792f;
            transform: translateY(-2px);
            box-shadow: 0 14px 30px rgba(197, 121, 47, 0.22);
        }
    /* =========================================================
   13. Footer
   ========================================================= */

    .gw-footer {
        padding: 70px 0 28px;
        color: #c7d2e6;
        background: linear-gradient( 180deg, var(--gw-navy-deep), #030b19 );
    }

    .gw-footer-grid {
        display: grid;
        grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr);
        gap: 70px;
    }

        .gw-footer-grid > div {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .gw-footer-grid p {
            max-width: 520px;
            margin-top: 18px;
            color: #9eacc3;
        }

        .gw-footer-grid h3 {
            margin: 0 0 12px;
            color: var(--gw-white);
            font-size: 1rem;
        }

        .gw-footer-grid a {
            color: #c7d2e6;
            text-decoration: none;
        }

            .gw-footer-grid a:hover {
                color: var(--gw-gold-light);
            }

    .gw-footer-bottom {
        display: flex;
        justify-content: space-between;
        gap: 20px;
        margin-top: 54px;
        padding-top: 24px;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        color: #8494ad;
        font-size: 0.82rem;
    }

        .gw-footer-bottom p {
            margin: 0;
        }
    /* =========================================================
   14. Animations
   ========================================================= */

    @keyframes gwSunriseGlow {
        from {
            opacity: 0.78;
            transform: translateY(-50%) scale(0.96);
        }

        to {
            opacity: 1;
            transform: translateY(-50%) scale(1.04);
        }
    }

    @keyframes gwSunArrival {
        0% {
            opacity: 0.16;
            transform: translateY(18%) scale(0.74);
        }

        22% {
            opacity: 0.30;
        }

        58% {
            opacity: 0.76;
        }

        100% {
            opacity: 1;
            transform: translateY(-50%) scale(1);
        }
    }

    @keyframes gwHeroEntrance {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes gwArrowFloat {
        0%, 100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(7px);
        }
    }

    @keyframes gwDawnBrighten {
        0% {
            opacity: 1;
        }

        22% {
            opacity: 0.94;
        }

        58% {
            opacity: 0.46;
        }

        100% {
            opacity: 0;
        }
    }

    @keyframes gwStarsFade {
        0% {
            opacity: 0.72;
        }

        30% {
            opacity: 0.60;
        }

        70% {
            opacity: 0.10;
        }

        100% {
            opacity: 0;
        }
    }
    /* =========================================================
   15. Tablet layout
   ========================================================= */

    @media (max-width: 900px) {
        .gw-nav-toggle {
            display: block;
        }

        .gw-navigation {
            position: absolute;
            top: var(--gw-header-height);
            left: 0;
            right: 0;
            display: none;
            padding: 22px;
            background: rgba(8, 26, 58, 0.98);
            box-shadow: 0 20px 40px rgba(5, 17, 38, 0.20);
            flex-direction: column;
            align-items: stretch;
            gap: 8px;
        }

            .gw-navigation.gw-navigation-open {
                display: flex;
            }

            .gw-navigation a {
                padding: 10px;
            }

                .gw-navigation a::after {
                    display: none;
                }

        .gw-intro-grid,
        .gw-path-grid {
            grid-template-columns: 1fr;
        }

        .gw-intro-grid {
            gap: 42px;
        }

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

            .gw-footer-grid > div:first-child {
                grid-column: 1 / -1;
            }
    }
    /* =========================================================
   16. Mobile layout
   ========================================================= */

    @media (max-width: 600px) {
        .container {
            width: min( var(--gw-container-width), calc(100% - 28px) );
        }

        .gw-brand-text strong {
            font-size: 0.96rem;
        }

        .gw-brand-text small {
            font-size: 0.62rem;
        }

        .gw-hero {
            min-height: calc(100svh - var(--gw-header-height));
            align-items: flex-start;
            padding: 88px 0 120px;
        }

            .gw-hero::before {
                width: 430px;
                height: 430px;
                right: -32%;
                top: 30%;
            }

            .gw-hero::after {
                height: 38%;
                clip-path: polygon( 0 60%, 16% 46%, 29% 59%, 42% 40%, 55% 58%, 70% 34%, 84% 54%, 100% 37%, 100% 100%, 0 100% );
            }

            .gw-hero h1 {
                font-size: clamp(3rem, 16vw, 4.4rem);
                line-height: 1;
            }

        .gw-lead {
            font-size: 1.05rem;
            line-height: 1.65;
        }

        .gw-actions {
            flex-direction: column;
            align-items: stretch;
        }

        .gw-button {
            width: 100%;
        }

        .gw-scroll-cue {
            bottom: 20px;
        }

        .gw-intro {
            margin-top: -48px;
            padding: 98px 0 82px;
            border-radius: 32px 32px 0 0;
            background: linear-gradient( 180deg, #e9ae68 0%, #f2ce99 9%, #f7e4c8 25%, #faeedf 48%, var(--gw-cream) 78%, var(--gw-cream) 100% );
        }

            .gw-intro::before {
                top: -85px;
                height: 150px;
            }

        .gw-paths,
        .gw-section {
            padding: 78px 0;
        }

        .gw-promise {
            padding: 10px 0 78px;
        }

        .gw-promise-panel {
            padding: 52px 26px 46px;
            border-radius: 24px;
        }

        .gw-card {
            min-height: auto;
            padding: 30px;
        }

            .gw-card h3 {
                margin-top: 56px;
            }

        .gw-footer-grid {
            grid-template-columns: 1fr;
        }

            .gw-footer-grid > div:first-child {
                grid-column: auto;
            }

        .gw-footer-bottom {
            flex-direction: column;
        }
    }
    /* =========================================================
   17. Reduced motion
   ========================================================= */

    @media (prefers-reduced-motion: reduce) {
        html {
            scroll-behavior: auto;
        }

        *,
        *::before,
        *::after {
            scroll-behavior: auto !important;
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }

        .gw-dawn-overlay,
        .gw-stars {
            display: none;
        }

        .gw-hero::before {
            opacity: 1;
            transform: translateY(-50%) scale(1);
        }
    }

/* =========================================================
   New Possibilities standalone hero
   ========================================================= */

/* =========================================================
   Next Chapter — where health and wealth meet
   ========================================================= */

.next-chapter {
    color: var(--gw-navy);
    background: #fbf7ef;
}

.next-chapter__hero {
    position: relative;
    isolation: isolate;
    min-height: calc(92vh - var(--gw-header-height));
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 110px 0 120px;
    color: var(--gw-white);
    background:
        linear-gradient(180deg, rgba(5, 17, 38, 0.06), rgba(5, 17, 38, 0.76)),
        linear-gradient(125deg, #07172f 0%, #174468 42%, #b96e4a 72%, #efbd78 100%);
}

.next-chapter__hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: auto -5% -1px;
    height: 35%;
    background: linear-gradient(168deg, transparent 0 44%, rgba(8, 29, 49, 0.8) 45% 57%, #06172a 58%);
    clip-path: polygon(0 62%, 17% 46%, 34% 59%, 51% 38%, 68% 55%, 84% 34%, 100% 51%, 100% 100%, 0 100%);
}

.next-chapter__glow {
    position: absolute;
    z-index: -2;
    width: min(62vw, 760px);
    aspect-ratio: 1;
    right: -7%;
    top: 46%;
    border-radius: 50%;
    transform: translateY(-50%);
    background: radial-gradient(circle, rgba(255, 250, 220, 0.98), rgba(247, 194, 112, 0.72) 25%, rgba(223, 119, 72, 0.25) 48%, transparent 70%);
    animation: gwSunArrival 8.5s cubic-bezier(.22, .72, .32, 1) both;
}

.next-chapter__hero-inner {
    position: relative;
    z-index: 1;
    animation: gwHeroEntrance 2s ease-out 2.9s both;
}

.next-chapter__hero h1 {
    max-width: 900px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.3rem, 7.4vw, 6.8rem);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.05em;
    text-wrap: balance;
}

.next-chapter__hero h1 span {
    display: block;
    color: var(--gw-gold-light);
}

.next-chapter__hero-line {
    max-width: 830px;
    margin: 24px 0 0;
    color: #fff2d4;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.45rem, 2.8vw, 2.25rem);
    line-height: 1.3;
    text-wrap: balance;
}

.next-chapter__lead {
    max-width: 650px;
    margin: 30px 0 34px;
    color: #e6edf5;
    font-size: 1.12rem;
    line-height: 1.75;
}

.next-chapter__opening,
.next-chapter__agency,
.next-chapter__invitation {
    padding: 105px 0;
}

.next-chapter__opening h2,
.next-chapter__agency h2,
.next-chapter__invitation h2,
.next-chapter__possibilities h2 {
    margin: 0 0 30px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 4.6vw, 4rem);
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: -0.035em;
    text-wrap: balance;
}

.next-chapter__opening p,
.next-chapter__agency p,
.next-chapter__invitation > .container > p {
    font-size: 1.1rem;
    line-height: 1.85;
}

.next-chapter__quote {
    margin: 48px 0 0;
    padding: 8px 0 8px 30px;
    border-left: 3px solid var(--gw-gold);
    color: #8b5523;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    line-height: 1.5;
}

.next-chapter__possibilities {
    padding: 105px 0;
    color: var(--gw-white);
    background: #081d35;
}

.next-chapter__possibilities .gw-section-kicker {
    color: var(--gw-gold-light);
}

.next-chapter__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 52px;
}

.next-chapter__card {
    padding: 38px 32px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.055);
}

.next-chapter__card > span {
    display: block;
    margin-bottom: 25px;
    font-size: 2rem;
}

.next-chapter__card h3 {
    margin: 0 0 16px;
    color: #f8d998;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.55rem;
}

.next-chapter__card p {
    margin: 0;
    color: #d9e3ef;
    line-height: 1.75;
}

.next-chapter__agency {
    background: linear-gradient(135deg, #f3dfbd, #fbf7ef 55%, #e8efe8);
}

.next-chapter__truth {
    margin-top: 42px;
    padding-top: 32px;
    border-top: 1px solid rgba(8, 29, 53, 0.18);
    color: #8b5523;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.45rem, 2.8vw, 2.05rem) !important;
    line-height: 1.5 !important;
}

.next-chapter__invitation {
    text-align: center;
}

.next-chapter__invitation .gw-button-row {
    justify-content: center;
    margin-top: 38px;
}

.next-chapter__closing {
    max-width: 760px;
    margin: 48px auto 0;
    color: #657184;
    font-size: 0.88rem !important;
    line-height: 1.65 !important;
}

@media (max-width: 900px) {
    .next-chapter__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .next-chapter__hero {
        min-height: calc(100svh - var(--gw-header-height));
        align-items: flex-start;
        padding: 82px 0 105px;
    }

    .next-chapter__glow {
        width: 540px;
        right: -75%;
        top: 30%;
    }

    .next-chapter__hero h1 {
        font-size: clamp(3rem, 15vw, 4.35rem);
    }

    .next-chapter__opening,
    .next-chapter__agency,
    .next-chapter__invitation,
    .next-chapter__possibilities {
        padding: 78px 0;
    }

    .next-chapter__card {
        padding: 30px 26px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .next-chapter__glow {
        animation: none;
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
}

/* =========================================================
   Meet the Grover Family
   ========================================================= */

.family-path {
    color: var(--gw-ink);
    background: #fbf7ef;
}

.family-path__hero {
    position: relative;
    isolation: isolate;
    min-height: calc(88vh - var(--gw-header-height));
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 110px 0 125px;
    color: var(--gw-white);
    background:
        linear-gradient(105deg, rgba(5, 17, 38, 0.93) 0%, rgba(8, 35, 58, 0.76) 50%, rgba(73, 72, 45, 0.28) 100%),
        linear-gradient(135deg, #06152c, #16445a 52%, #9c7948 100%);
}

.family-path__hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: auto -4% -1px;
    height: 31%;
    background: linear-gradient(170deg, transparent 0 45%, rgba(7, 25, 43, 0.68) 46% 58%, #06172a 59%);
    clip-path: polygon(0 63%, 18% 48%, 36% 60%, 53% 43%, 70% 58%, 86% 39%, 100% 53%, 100% 100%, 0 100%);
}

.family-path__light {
    position: absolute;
    z-index: -2;
    width: min(68vw, 800px);
    aspect-ratio: 1;
    right: -8%;
    top: 48%;
    border-radius: 50%;
    transform: translateY(-50%);
    background: radial-gradient(circle, rgba(255, 246, 204, 0.86), rgba(228, 171, 91, 0.44) 28%, rgba(158, 112, 68, 0.14) 50%, transparent 70%);
}

.family-path__hero-inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.family-path__hero h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.05em;
    text-wrap: balance;
}

.family-path__hero h1 span {
    display: block;
    color: var(--gw-gold-light);
}

.family-path__lead {
    max-width: 680px;
    margin: 30px 0 36px;
    color: #e9eff3;
    font-size: clamp(1.16rem, 2vw, 1.42rem);
    line-height: 1.72;
    text-wrap: balance;
}

.family-path__companions {
    padding: 105px 0;
    color: var(--gw-white);
    background:
        radial-gradient(circle at 12% 20%, rgba(214, 173, 69, 0.2), transparent 28rem),
        linear-gradient(135deg, var(--gw-navy-deep), var(--gw-navy) 55%, #12376c);
}

.family-path__companions-heading {
    max-width: 850px;
    margin: 0 auto 60px;
    text-align: center;
}

.family-path__companions-heading .gw-section-kicker {
    color: var(--gw-gold-light);
}

.family-path__companions-heading h2 {
    margin: 0 0 18px;
    color: var(--gw-white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.7rem, 6vw, 5.2rem);
    line-height: 1.05;
    letter-spacing: -0.045em;
    text-wrap: balance;
}

.family-path__companions-heading > p:last-child {
    color: #dce6ef;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.family-path__companion-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.family-path__companion {
    display: flex;
    flex-direction: column;
    min-height: 480px;
    padding: 34px 30px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 26px;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
}

.family-path__companion--michael {
    background: linear-gradient(145deg, #70451f, #3d281b);
}

.family-path__companion--coop {
    background: linear-gradient(145deg, #164786, #071c3b);
}

.family-path__companion--lucille {
    background: linear-gradient(145deg, #226b50, #082f2a);
}

.family-path__companion h3 {
    margin: 12px 0 14px;
    color: var(--gw-white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 4vw, 3.25rem);
}

.family-path__companion p:last-child {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
}

.family-path__companion-role {
    margin: 28px 0 0;
    color: var(--gw-gold-light);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.family-path__person-mark,
.family-path__coop-mark {
    position: relative;
    display: grid;
    place-items: center;
    width: 130px;
    height: 130px;
    margin: 0 auto;
    color: var(--gw-navy);
    background: linear-gradient(145deg, var(--gw-gold-light), var(--gw-gold));
    border: 5px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.family-path__person-mark span,
.family-path__coop-mark span {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
}

.family-path__coop-mark {
    border-radius: 50% 50% 42% 42%;
}

.family-path__coop-mark i {
    position: absolute;
    top: -25px;
    width: 4px;
    height: 26px;
    background: var(--gw-gold-light);
}

.family-path__coop-mark i::after {
    position: absolute;
    top: -7px;
    left: -5px;
    width: 14px;
    height: 14px;
    content: "";
    background: var(--gw-gold-light);
    border-radius: 50%;
}

.family-path__plant {
    position: relative;
    width: 140px;
    height: 150px;
    margin: -12px auto -8px;
}

.family-path__leaf {
    position: absolute;
    bottom: 45px;
    left: 50%;
    width: 34px;
    height: 110px;
    background: linear-gradient(90deg, #2b7d55, #a8c96d 50%, #255f45);
    border: 2px solid rgba(224, 231, 145, 0.55);
    border-radius: 80% 14% 70% 18%;
    transform-origin: bottom center;
}

.family-path__leaf--one { height: 120px; transform: translateX(-50%) rotate(-7deg); }
.family-path__leaf--two { height: 100px; transform: translateX(-92%) rotate(-25deg); }
.family-path__leaf--three { height: 108px; transform: translateX(-8%) rotate(23deg); }
.family-path__leaf--four { height: 82px; transform: translateX(-52%) rotate(9deg); }

.family-path__pot {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 105px;
    height: 58px;
    background: linear-gradient(145deg, #dda875, #955a32);
    border-radius: 7px 7px 26px 26px;
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.3);
    transform: translateX(-50%);
}

.family-path__companions-signoff {
    max-width: 760px;
    margin: 50px auto 0;
    color: var(--gw-gold-light);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-style: italic;
    text-align: center;
}

.family-path__welcome,
.family-path__family-first,
.family-path__values,
.family-path__michael,
.family-path__table {
    padding: 105px 0;
}

.family-path__welcome-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(48px, 8vw, 100px);
    align-items: start;
}

.family-path__welcome h2,
.family-path__family-first h2,
.family-path__values h2,
.family-path__michael h2,
.family-path__table h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.3rem, 4.8vw, 4.2rem);
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

.family-path__copy p,
.family-path__family-first p,
.family-path__michael > .container > p,
.family-path__table > .container > p {
    font-size: 1.1rem;
    line-height: 1.85;
}

.family-path__copy p:first-child {
    margin-top: 0;
}

.family-path__emphasis {
    margin-top: 34px;
    color: #8b5523;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.35rem, 2.5vw, 1.85rem) !important;
    line-height: 1.55 !important;
}

.family-path__family-first {
    color: var(--gw-white);
    background:
        radial-gradient(circle at 80% 20%, rgba(241, 216, 141, 0.14), transparent 34%),
        #0b2943;
}

.family-path__family-first .gw-section-kicker {
    color: var(--gw-gold-light);
}

.family-path__family-first h2 {
    margin-bottom: 34px;
}

.family-path__family-first p {
    color: #dce6ed;
}

.family-path__family-first blockquote {
    margin: 50px 0 0;
    padding: 8px 0 8px 30px;
    border-left: 3px solid var(--gw-gold);
    color: #f8d998;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    line-height: 1.5;
}

.family-path__values {
    color: var(--gw-white);
    background: #081d35;
}

.family-path__values .gw-section-kicker {
    color: var(--gw-gold-light);
}

.family-path__value-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 55px;
}

.family-path__value {
    min-height: 330px;
    padding: 36px 32px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.055);
}

.family-path__value > span {
    display: block;
    color: var(--gw-gold-light);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
}

.family-path__value h3 {
    margin: 72px 0 17px;
    color: #f8d998;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.65rem;
}

.family-path__value p {
    margin: 0;
    color: #d9e3ef;
    line-height: 1.78;
}

.family-path__michael {
    background: linear-gradient(135deg, #f3dfbd, #fbf7ef 58%, #e8efe8);
}

.family-path__michael h2,
.family-path__table h2 {
    margin-bottom: 32px;
}

.family-path__michael blockquote {
    margin: 50px 0 0;
    padding: 34px 38px;
    border-left: 3px solid var(--gw-gold);
    border-radius: 0 18px 18px 0;
    color: #70451f;
    background: rgba(255, 255, 255, 0.56);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.35rem, 2.6vw, 1.9rem);
    line-height: 1.55;
}

.family-path__michael cite {
    display: block;
    margin-top: 20px;
    color: var(--gw-muted);
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    font-size: 0.9rem;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.family-path__table {
    text-align: center;
}

.family-path__table-truth {
    margin: 42px 0 0;
    color: #8b5523;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.5rem, 3vw, 2.15rem) !important;
}

.family-path__table .gw-button-row {
    justify-content: center;
    align-items: center;
    margin-top: 44px;
}

@media (max-width: 900px) {
    .family-path__welcome-grid,
    .family-path__value-grid,
    .family-path__companion-grid {
        grid-template-columns: 1fr;
    }

    .family-path__companion {
        display: grid;
        grid-template-columns: 150px minmax(0, 1fr);
        min-height: 0;
    }

    .family-path__companion-role {
        margin-top: 0;
    }

    .family-path__value {
        min-height: auto;
    }

    .family-path__value h3 {
        margin-top: 42px;
    }
}

@media (max-width: 600px) {
    .family-path__hero {
        min-height: calc(100svh - var(--gw-header-height));
        align-items: flex-start;
        padding: 84px 0 110px;
    }

    .family-path__light {
        width: 520px;
        right: -76%;
        top: 30%;
    }

    .family-path__hero h1 {
        font-size: clamp(3rem, 15vw, 4.5rem);
    }

    .family-path__welcome,
    .family-path__companions,
    .family-path__family-first,
    .family-path__values,
    .family-path__michael,
    .family-path__table {
        padding: 78px 0;
    }

    .family-path__companion {
        display: flex;
        text-align: center;
    }

    .family-path__michael blockquote {
        padding: 28px 25px;
    }
}

.gw-possibilities-hero {
    position: relative;
    isolation: isolate;
    min-height: calc(100vh - var(--gw-header-height));
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 110px 0 120px;
    color: var(--gw-white);
    background: radial-gradient( circle at 82% 18%, rgba(241, 216, 141, 0.12), transparent 24% ), radial-gradient( circle at 12% 82%, rgba(217, 140, 63, 0.16), transparent 30% ), linear-gradient( 135deg, #051126 0%, #0b2852 42%, #214b78 72%, #594f50 100% );
}

    .gw-possibilities-hero::before {
        content: "";
        position: absolute;
        z-index: -2;
        inset: 0;
        background: linear-gradient( 115deg, transparent 0 48%, rgba(241, 216, 141, 0.06) 49% 51%, transparent 52% );
    }

    .gw-possibilities-hero::after {
        content: "";
        position: absolute;
        z-index: -1;
        left: 0;
        right: 0;
        bottom: 0;
        height: 38%;
        background: #051126;
        clip-path: polygon( 0 74%, 18% 63%, 34% 68%, 52% 52%, 69% 62%, 84% 45%, 100% 57%, 100% 100%, 0 100% );
    }

    .gw-possibilities-hero .gw-hero-content {
        position: relative;
        z-index: 2;
        max-width: 850px;
        animation: gwHeroEntrance 1.4s ease-out both;
    }

@media (max-width: 600px) {
    .gw-possibilities-hero {
        min-height: calc(100svh - var(--gw-header-height));
        align-items: flex-start;
        padding: 88px 0 110px;
    }

        .gw-possibilities-hero h1 {
            font-size: clamp(3rem, 16vw, 4.4rem);
            line-height: 1;
        }
}

/* =========================================================
   Health Path — Trailhead
   ========================================================= */

.health-trailhead {
    position: relative;
    overflow: hidden;
    background: var(--gw-cream);
}

.health-trailhead__image {
    display: block;
    width: 100%;
    height: auto;
}

.health-trailhead__content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 32px 20px 180px;
    text-align: center;
    color: var(--gw-white);
}

.health-trailhead__transition {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    height: 260px;
    pointer-events: none;
    background: linear-gradient( to bottom, rgba(255,248,238,0) 0%, rgba(255,248,238,0.08) 55%, rgba(255,248,238,0.35) 80%, var(--gw-cream) 100% );
}

.health-chapter--one {
    margin-top: -1px;
    background: var(--gw-cream);
}

/* =========================================================
   Health Path — Chapter experience
   ========================================================= */

.health-path {
    background:
        radial-gradient(circle at 15% 8%, rgba(241, 216, 141, 0.2), transparent 30%),
        linear-gradient(180deg, #fffdf9 0%, var(--gw-cream) 46%, #f4ebde 100%);
}

.health-chapter-one {
    position: relative;
    padding: 72px 20px 96px;
}

.health-chapter__inner {
    position: relative;
    width: min(920px, 100%);
    margin: 0 auto;
}

.health-chapter__header {
    position: relative;
    overflow: hidden;
    padding: clamp(70px, 10vw, 120px) clamp(28px, 7vw, 80px);
    color: var(--gw-white);
    text-align: center;
    background:
        radial-gradient(circle at 76% 18%, rgba(241, 216, 141, 0.16), transparent 32%),
        linear-gradient(135deg, var(--gw-navy-deep), var(--gw-blue));
    border: 1px solid rgba(214, 173, 69, 0.28);
    border-radius: 34px 34px 12px 12px;
    box-shadow: var(--gw-shadow-large);
}

.health-chapter__eyebrow {
    margin: 0 0 18px;
    color: var(--gw-gold-light);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.health-chapter__title {
    max-width: 720px;
    margin: 0 auto;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.65rem, 7vw, 5.2rem);
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: -0.035em;
}

.health-chapter__title span {
    display: block;
    margin-top: 10px;
    color: var(--gw-gold-light);
    font-style: italic;
}

.health-chapter__opening {
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.08rem;
}

.health-chapter__passage,
.health-chapter__welcome,
.health-chapter__footer {
    position: relative;
    padding: clamp(58px, 8vw, 88px) clamp(28px, 8vw, 84px);
}

.health-chapter__passage {
    color: var(--gw-ink);
    text-align: center;
    background: rgba(255, 253, 249, 0.92);
    border-right: 1px solid rgba(8, 26, 58, 0.07);
    border-left: 1px solid rgba(8, 26, 58, 0.07);
}

.health-chapter__passage + .health-chapter__passage {
    border-top: 1px solid rgba(214, 173, 69, 0.2);
}

.health-chapter__passage p,
.health-chapter__welcome p,
.health-chapter__footer p {
    max-width: 680px;
    margin: 0 auto 18px;
    font-size: clamp(1rem, 1.8vw, 1.16rem);
    line-height: 1.85;
}

.health-chapter__passage--arrival {
    padding-top: clamp(82px, 11vw, 124px);
}

.health-chapter__question {
    max-width: 690px;
    margin: 48px auto;
    padding: 34px 28px;
    color: var(--gw-navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 5vw, 3.6rem);
    font-style: italic;
    line-height: 1.2;
    background: linear-gradient(135deg, rgba(246, 223, 189, 0.52), rgba(255, 253, 249, 0.82));
    border: 1px solid rgba(214, 173, 69, 0.24);
    border-radius: 20px;
    box-shadow: var(--gw-shadow-small);
}

.health-chapter__emphasis,
.health-chapter__final-truth {
    color: var(--gw-navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.65rem, 4vw, 2.7rem) !important;
    font-weight: 600;
    line-height: 1.3 !important;
}

.health-chapter__welcome {
    color: var(--gw-white);
    text-align: center;
    background:
        radial-gradient(circle at 20% 10%, rgba(241, 216, 141, 0.14), transparent 34%),
        linear-gradient(145deg, var(--gw-navy-deep), var(--gw-navy));
}

.health-chapter__invitation {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 700px;
    margin: 42px auto;
}

.health-chapter__invitation p {
    display: grid;
    min-height: 92px;
    margin: 0;
    padding: 22px 14px;
    place-items: center;
    color: var(--gw-gold-light);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.25rem;
    line-height: 1.35;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(241, 216, 141, 0.2);
    border-radius: 16px;
}

.health-chapter__promise {
    margin-top: 38px !important;
    color: var(--gw-gold-light);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.5rem, 3vw, 2.1rem) !important;
    line-height: 1.45 !important;
}

.health-chapter__passage--hope {
    background:
        radial-gradient(circle at 80% 18%, rgba(214, 173, 69, 0.14), transparent 34%),
        linear-gradient(180deg, #fff9ef, var(--gw-sand));
}

.health-chapter__hope-line {
    margin: 36px auto !important;
    color: var(--gw-blue);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.25rem, 6vw, 4.4rem) !important;
    font-style: italic;
    line-height: 1.12 !important;
}

.health-chapter__rhythm {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    max-width: 720px;
    margin: 42px auto 0;
}

.health-chapter__rhythm p {
    flex: 1 1 180px;
    margin: 0;
    padding: 18px 16px;
    color: var(--gw-blue);
    font-weight: 700;
    background: var(--gw-cream);
    border: 1px solid rgba(214, 173, 69, 0.24);
    border-radius: 999px;
}

.health-chapter__passage--closing {
    background: linear-gradient(180deg, var(--gw-paper), #f8f0e5);
}

.health-chapter__final-truth {
    margin-top: 36px !important;
    color: var(--gw-gold-warm);
}

.health-chapter__footer {
    color: var(--gw-white);
    text-align: center;
    background: linear-gradient(135deg, var(--gw-blue), var(--gw-navy-deep));
    border-radius: 0 0 34px 34px;
    box-shadow: var(--gw-shadow-large);
}

.health-chapter__next {
    display: inline-flex;
    flex-direction: column;
    gap: 2px;
    min-width: min(340px, 100%);
    margin-top: 20px;
    padding: 18px 28px;
    color: var(--gw-navy-deep);
    font-weight: 800;
    text-decoration: none;
    background: linear-gradient(135deg, var(--gw-gold-light), var(--gw-gold));
    border-radius: 999px;
    box-shadow: 0 16px 40px rgba(214, 173, 69, 0.22);
}

.health-chapter__next span {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
    font-style: italic;
}

.health-chapter__next:hover {
    color: var(--gw-navy-deep);
    transform: translateY(-3px);
}

.gw-chapter-closing {
    padding: clamp(78px, 11vw, 132px) 24px;
    color: var(--gw-ink);
    text-align: center;
    background:
        radial-gradient(circle at 50% 0%, rgba(241, 216, 141, 0.28), transparent 44%),
        var(--gw-cream);
}

.gw-chapter-closing p {
    max-width: 700px;
    margin: 0 auto 18px;
    font-size: clamp(1rem, 1.8vw, 1.16rem);
    line-height: 1.85;
}

.gw-chapter-closing .gw-emphasis {
    margin: 38px auto;
    color: var(--gw-navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.75rem, 4.3vw, 3rem);
    line-height: 1.3;
}

.gw-next-room {
    padding: 0 24px 96px;
    text-align: center;
    background: var(--gw-cream);
}

.gw-next-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: min(320px, 100%);
    padding: 17px 28px;
    color: var(--gw-white);
    font-weight: 800;
    text-decoration: none;
    background: var(--gw-navy);
    border: 1px solid rgba(214, 173, 69, 0.5);
    border-radius: 999px;
    box-shadow: var(--gw-shadow-medium);
}

.gw-next-button:hover {
    color: var(--gw-gold-light);
    transform: translateY(-3px);
}

@media (max-width: 720px) {
    .health-chapter-one {
        padding: 34px 14px 64px;
    }

    .health-chapter__header {
        border-radius: 24px 24px 10px 10px;
    }

    .health-chapter__invitation {
        grid-template-columns: 1fr;
    }

    .health-chapter__invitation p {
        min-height: 68px;
    }

    .health-chapter__footer {
        border-radius: 0 0 24px 24px;
    }
}

.gw-navigation .gw-nav-invitation {
    color: var(--gw-gold-light);
}

@media (max-width: 1100px) {
    .gw-navigation {
        gap: 16px;
    }

    .gw-navigation a {
        font-size: 0.82rem;
    }
}

/* =========================================================
   Lucy's interactive room
   ========================================================= */

.lucy-room-page {
    background: var(--gw-cream);
}

.lucy-room-intro {
    position: relative;
    overflow: hidden;
    padding: clamp(5rem, 10vw, 8rem) 0;
    color: var(--gw-white);
    text-align: center;
    background:
        radial-gradient(circle at 72% 72%, rgba(241, 216, 141, 0.24), transparent 28rem),
        linear-gradient(145deg, var(--gw-navy-deep), #183f67);
}

.lucy-room-intro h1 {
    margin: 0 auto 1.5rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.045em;
}

.lucy-room-intro p:not(.gw-eyebrow) {
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.lucy-room-experience {
    padding: clamp(2rem, 5vw, 4rem) 0 clamp(4rem, 8vw, 7rem);
    background:
        radial-gradient(circle at 10% 10%, rgba(214, 173, 69, 0.13), transparent 24rem),
        #e8dfd2;
}

.lucy-room-stage {
    position: relative;
    width: 100%;
    height: min(66vw, 650px);
    min-height: 440px;
    overflow: hidden;
    border: 1px solid rgba(8, 26, 58, 0.14);
    border-radius: 30px;
    background: #ece2d3;
    box-shadow: var(--gw-shadow-large);
}

.lucy-room-scene-frame {
    position: absolute;
    inset: 0;
}

.lucy-room-scene {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.lucy-room-scene-tv {
    position: absolute;
    z-index: 2;
    top: 9.2%;
    right: 4.3%;
    width: 34.2%;
    height: 36.5%;
    overflow: hidden;
    border-radius: 2px;
    background:
        linear-gradient(115deg, transparent 0 38%, rgba(255, 255, 255, 0.18) 42%, transparent 47%),
        radial-gradient(circle at 28% 36%, rgba(231, 174, 72, 0.85), transparent 24%),
        radial-gradient(circle at 72% 60%, rgba(70, 147, 164, 0.8), transparent 29%),
        linear-gradient(145deg, #162c45, #503c57 48%, #1c5360);
    filter: brightness(0.78) saturate(0.9);
    animation: lucy-tv-program 9s ease-in-out infinite alternate;
    pointer-events: none;
}

.lucy-room-scene-tv::before,
.lucy-room-scene-tv::after,
.lucy-room-scene-tv span {
    position: absolute;
    content: "";
}

.lucy-room-scene-tv::before {
    inset: 0;
    opacity: 0.22;
    background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(255, 255, 255, 0.24) 4px);
    animation: lucy-tv-scan 1.6s linear infinite;
}

.lucy-room-scene-tv::after {
    top: 16%;
    left: 12%;
    width: 42%;
    height: 54%;
    border-radius: 50% 45% 38% 52%;
    background: rgba(238, 207, 137, 0.46);
    filter: blur(5px);
    animation: lucy-tv-figure 6s ease-in-out infinite alternate;
}

.lucy-room-scene-tv span {
    right: 7%;
    bottom: 9%;
    width: 48%;
    height: 8%;
    border-radius: 999px;
    background: rgba(246, 239, 214, 0.38);
    box-shadow: 0 -12px 0 rgba(246, 239, 214, 0.16);
}

@keyframes lucy-tv-program {
    0%, 34% { filter: brightness(0.7) saturate(0.85); }
    38%, 72% { filter: brightness(0.92) saturate(1.12); }
    76%, 100% { filter: brightness(0.76) saturate(0.95); }
}

@keyframes lucy-tv-scan {
    from { transform: translateY(-4px); }
    to { transform: translateY(4px); }
}

@keyframes lucy-tv-figure {
    from { transform: translate3d(-3%, 1%, 0) scale(0.94); opacity: 0.42; }
    to { transform: translate3d(16%, -3%, 0) scale(1.08); opacity: 0.68; }
}

@media (prefers-reduced-motion: reduce) {
    .lucy-room-scene-tv,
    .lucy-room-scene-tv::before,
    .lucy-room-scene-tv::after {
        animation: none;
    }
}

.lucy-room-message {
    position: absolute;
    right: 1.2rem;
    bottom: 1.2rem;
    left: 1.2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.9rem 1.1rem;
    color: var(--gw-white);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    background: rgba(5, 17, 38, 0.82);
    box-shadow: var(--gw-shadow-medium);
    backdrop-filter: blur(10px);
    pointer-events: none;
}

.lucy-room-message strong {
    color: var(--gw-gold-light);
}

.lucy-room-cup {
    position: absolute;
    right: clamp(0.7rem, 3vw, 2rem);
    bottom: 4.8rem;
    width: clamp(82px, 13vw, 145px);
    transform: rotate(-4deg);
    transform-origin: 70% 100%;
    filter: drop-shadow(0 16px 18px rgba(5, 17, 38, 0.28));
    pointer-events: none;
}

.lucy-room-cup img {
    width: 100%;
}

.lucy-room-cup.is-sipping {
    animation: lucySip 0.9s ease-in-out;
}

.lucy-room-loading {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: var(--gw-navy);
    background: #ece2d3;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.4rem;
}

.lucy-room-loading[hidden] {
    display: none;
}

.lucy-rumpus-topics {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 1rem;
}

.lucy-rumpus-topics button {
    min-height: 104px;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    justify-content: center;
    padding: 1rem;
    color: var(--gw-navy);
    text-align: left;
    border: 1px solid rgba(8, 26, 58, 0.16);
    border-radius: 16px;
    background: rgba(255, 253, 249, 0.9);
    box-shadow: var(--gw-shadow-small);
    font: inherit;
    cursor: pointer;
}

.lucy-rumpus-topics button:hover,
.lucy-rumpus-topics button:focus-visible,
.lucy-rumpus-topics button.is-active {
    border-color: var(--gw-gold);
    background: var(--gw-gold-light);
    transform: translateY(-2px);
}

.lucy-rumpus-topics strong {
    font-size: 1rem;
}

.lucy-rumpus-topics span {
    color: var(--gw-muted);
    font-size: 0.88rem;
    line-height: 1.35;
}

.lucy-rumpus-lesson {
    margin-top: 1rem;
    padding: clamp(1.35rem, 3vw, 2rem);
    border: 1px solid rgba(8, 26, 58, 0.12);
    border-radius: 20px;
    background: rgba(255, 253, 249, 0.8);
}

.lucy-rumpus-lesson h2 {
    margin: 0.35rem 0 0.65rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.lucy-rumpus-lesson > p:last-child {
    max-width: 780px;
    margin: 0;
    color: var(--gw-muted);
}

.lucy-rumpus-chat {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
    gap: clamp(1.25rem, 4vw, 3rem);
    margin-top: 1rem;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--gw-navy);
    border-radius: 24px;
    background: #f8f1e6;
    box-shadow: var(--gw-shadow-medium);
}

.lucy-rumpus-chat__intro h2 {
    margin: 0.35rem 0 0.8rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.05;
}

.lucy-rumpus-chat__intro > p:last-child {
    color: var(--gw-muted);
}

.lucy-rumpus-chat__transcript {
    min-height: 170px;
    max-height: 300px;
    overflow-y: auto;
    padding: 1rem;
    border: 1px solid rgba(8, 26, 58, 0.12);
    border-radius: 16px;
    background: var(--gw-white);
}

.lucy-chat-line {
    width: fit-content;
    max-width: 88%;
    margin: 0 0 0.75rem;
    padding: 0.75rem 0.9rem;
    border-radius: 14px;
    background: #eef1f4;
}

.lucy-chat-line--visitor {
    margin-left: auto;
    color: var(--gw-white);
    background: var(--gw-navy);
}

.lucy-chat-line--lucy strong {
    color: #8b5523;
}

.lucy-rumpus-chat__form {
    grid-column: 2;
}

.lucy-rumpus-chat__form label {
    display: block;
    margin-bottom: 0.45rem;
    font-weight: 800;
}

.lucy-rumpus-chat__form > div {
    display: flex;
    gap: 0.6rem;
}

.lucy-rumpus-chat__form input {
    min-width: 0;
    flex: 1;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(8, 26, 58, 0.24);
    border-radius: 12px;
    background: var(--gw-white);
    font: inherit;
}

.lucy-room-stage .lucy-room-tv {
    position: absolute;
    z-index: 32;
    top: 9.2%;
    right: 4.3%;
    width: 34.2%;
    height: 36.5%;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin: 0;
    padding: clamp(0.45rem, 0.8vw, 0.75rem);
    overflow: hidden;
    color: #f8f1e6;
    border: 0;
    border-radius: 2px;
    background: rgba(7, 20, 37, 0.96);
    box-shadow: none;
}

.lucy-room-stage .lucy-rumpus-chat__intro h2 {
    margin: 0.15rem 0 0.35rem;
    color: var(--gw-white);
    font-size: clamp(1rem, 1.7vw, 1.55rem);
}

.lucy-room-stage .lucy-rumpus-chat__intro p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(0.58rem, 0.72vw, 0.75rem);
    line-height: 1.25;
}

.lucy-room-stage .lucy-rumpus-chat__transcript {
    min-height: 42px;
    flex: 1;
    padding: 0.4rem;
    color: var(--gw-navy);
    font-size: clamp(0.58rem, 0.7vw, 0.72rem);
}

.lucy-room-stage .lucy-chat-line {
    margin-bottom: 0.45rem;
    padding: 0.5rem 0.65rem;
}

.lucy-room-stage .lucy-rumpus-chat__form {
    width: 100%;
}

.lucy-room-stage .lucy-rumpus-chat__form label {
    color: var(--gw-gold-light);
    margin: 0;
    font-size: 0.62rem;
}

.lucy-room-stage .lucy-rumpus-chat__form input,
.lucy-room-stage .lucy-rumpus-chat__form button {
    min-height: 28px;
    padding: 0.35rem 0.45rem;
    font-size: 0.68rem;
}

.lucy-tv-starters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.lucy-tv-starters button {
    padding: 0.25rem 0.4rem;
    color: var(--gw-gold-light);
    border: 1px solid rgba(241, 216, 141, 0.38);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    font: inherit;
    font-size: clamp(0.52rem, 0.62vw, 0.66rem);
    cursor: pointer;
}

.lucy-tv-starters button:hover,
.lucy-tv-starters button:focus-visible {
    color: var(--gw-navy);
    background: var(--gw-gold-light);
}

.lucy-tv-privacy {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.54rem;
    text-align: center;
}

.lucy-tv-status {
    margin: 0;
    color: var(--gw-gold-light);
    font-size: clamp(0.55rem, 0.68vw, 0.7rem);
    font-style: italic;
}

.lucy-room-tv[hidden],
.lucy-room-quiz[hidden] {
    display: none !important;
}

.lucy-room-stage > .lucy-room-message {
    right: auto;
    left: 1.2rem;
    width: 47%;
}

.lucy-room-controls {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 1rem;
}

.lucy-room-purpose {
    margin-top: 1.2rem;
    padding: 1.2rem;
    border: 1px solid rgba(8, 26, 58, 0.12);
    border-radius: 18px;
    background: rgba(255, 253, 249, 0.78);
}

.lucy-room-purpose > p {
    margin: 0 0 0.75rem;
    color: #8b5523;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.lucy-room-purpose ol {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.lucy-room-purpose li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--gw-muted);
    font-weight: 800;
}

.lucy-room-purpose li span {
    width: 2rem;
    height: 2rem;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    border: 2px solid rgba(8, 26, 58, 0.18);
    border-radius: 50%;
}

.lucy-room-purpose li.is-current {
    color: var(--gw-navy);
}

.lucy-room-purpose li.is-current span {
    border-color: var(--gw-gold);
    background: var(--gw-gold-light);
}

.lucy-room-purpose li.is-complete {
    color: #3d6b47;
}

.lucy-room-purpose li.is-complete span {
    color: var(--gw-white);
    border-color: #3d6b47;
    background: #3d6b47;
}

.lucy-room-control {
    min-height: 52px;
    padding: 0.75rem 0.8rem;
    color: var(--gw-navy);
    border: 1px solid rgba(8, 26, 58, 0.2);
    border-radius: 14px;
    background: var(--gw-paper);
    box-shadow: var(--gw-shadow-small);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    touch-action: manipulation;
}

.lucy-room-control:hover,
.lucy-room-control:focus-visible,
.lucy-room-control.is-on {
    color: var(--gw-navy-deep);
    border-color: var(--gw-gold);
    background: var(--gw-gold-light);
    transform: translateY(-2px);
}

.lucy-room-help {
    margin: 1rem 0 0;
    color: var(--gw-muted);
    text-align: center;
}

.lucy-room-life-cta {
    justify-content: center;
    margin-top: 1.2rem;
}

/* Life With Lucy */
.life-with-lucy {
    min-height: calc(100svh - 84px);
    padding: clamp(2.5rem, 6vw, 5rem) 1rem;
    color: #f8f2e7;
    background:
        radial-gradient(circle at 50% 14%, rgba(68, 111, 125, 0.34), transparent 32rem),
        linear-gradient(145deg, #07182d, #102d42 58%, #183d46);
}

.life-with-lucy__shell {
    width: min(100%, 820px);
    margin: 0 auto;
    text-align: center;
}

.life-with-lucy__intro {
    margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.life-with-lucy__intro h1 {
    margin: 0.25rem 0 0.65rem;
    color: #fffaf1;
    font-family: var(--gw-font-display);
    font-size: clamp(3rem, 9vw, 6.4rem);
    font-weight: 500;
    line-height: 0.95;
}

.life-with-lucy__intro > p:last-child {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1rem, 2.3vw, 1.25rem);
}

.lucy-conversation-tv {
    position: relative;
    padding: clamp(0.65rem, 1.5vw, 0.9rem);
    border: 1px solid rgba(255, 255, 255, 0.19);
    border-radius: 26px;
    background: linear-gradient(135deg, #343a3e, #181d22 58%, #3e4446);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38), inset 0 1px rgba(255, 255, 255, 0.15);
}

.lucy-conversation-tv__screen {
    min-height: clamp(300px, 48vw, 430px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2rem, 7vw, 4.7rem);
    overflow: hidden;
    border-radius: 18px;
    background:
        linear-gradient(rgba(255, 255, 255, 0.018) 50%, transparent 50%) 0 0 / 100% 4px,
        radial-gradient(circle at 50% 35%, rgba(54, 110, 118, 0.3), transparent 46%),
        #081b2c;
    box-shadow: inset 0 0 55px rgba(0, 0, 0, 0.45);
}

.lucy-conversation-tv__label {
    margin: 0 0 1rem;
    color: #e7c979;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.19em;
    text-transform: uppercase;
}

.lucy-conversation-tv__response {
    max-width: 650px;
    margin: 0 auto;
    color: #fffaf0;
    font-family: var(--gw-font-display);
    font-size: clamp(1.8rem, 5vw, 3.3rem);
    line-height: 1.16;
    text-wrap: balance;
}

.lucy-conversation-tv__thinking {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1rem;
    letter-spacing: 0.08em;
}

.lucy-conversation-history {
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.67);
    font-size: 0.82rem;
    text-align: left;
}

.lucy-conversation-history summary {
    cursor: pointer;
    text-align: center;
}

.lucy-conversation-history div {
    max-height: 130px;
    margin-top: 0.8rem;
    padding: 0.7rem;
    overflow-y: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.lucy-conversation-history p {
    margin: 0.35rem 0;
}

.lucy-conversation-plant {
    position: absolute;
    z-index: 4;
    top: -48px;
    right: clamp(18px, 5vw, 54px);
    width: 76px;
    height: 112px;
    pointer-events: none;
}

.lucy-conversation-plant__cord {
    position: absolute;
    top: 0;
    left: 37px;
    width: 2px;
    height: 48px;
    background: #b69559;
}

.lucy-conversation-plant__pot {
    position: absolute;
    top: 42px;
    left: 22px;
    width: 34px;
    height: 27px;
    border-radius: 4px 4px 12px 12px;
    background: linear-gradient(90deg, #9d5a3f, #c47952 55%, #8a4937);
}

.lucy-conversation-plant__vine {
    position: absolute;
    top: 63px;
    width: 28px;
    height: 47px;
    border: solid #65805d;
    border-width: 0 3px 0 0;
    border-radius: 50%;
}

.lucy-conversation-plant__vine::before,
.lucy-conversation-plant__vine::after {
    position: absolute;
    width: 16px;
    height: 9px;
    content: "";
    border-radius: 90% 10% 90% 10%;
    background: #76936b;
}

.lucy-conversation-plant__vine::before { top: 9px; left: 9px; transform: rotate(24deg); }
.lucy-conversation-plant__vine::after { top: 28px; left: 1px; transform: rotate(-24deg); }
.lucy-conversation-plant__vine--one { left: 28px; }
.lucy-conversation-plant__vine--two { left: 40px; height: 37px; transform: rotate(-12deg); }

.life-with-lucy__form {
    width: min(100% - 1.25rem, 650px);
    margin: 1.2rem auto 0;
}

.life-with-lucy__form > div {
    display: grid;
    grid-template-columns: 1fr 48px;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.life-with-lucy__form input {
    min-width: 0;
    padding: 0.55rem 0.8rem 0.55rem 1rem;
    color: #fff;
    border: 0;
    outline: 0;
    background: transparent;
    font: inherit;
}

.life-with-lucy__form input::placeholder { color: rgba(255, 255, 255, 0.56); }

.life-with-lucy__form button {
    width: 42px;
    height: 42px;
    color: #091c2f;
    border: 0;
    border-radius: 50%;
    background: #e4c36d;
    font-size: 1.35rem;
    cursor: pointer;
}

.life-with-lucy__privacy {
    margin: 0.7rem 0 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
}

.life-with-lucy__room-link {
    display: inline-block;
    margin-top: 1.4rem;
    color: #e5cd91;
    font-size: 0.85rem;
    text-decoration: underline;
    text-underline-offset: 4px;
}

@media (max-width: 540px) {
    .life-with-lucy { padding: 2.5rem 0.75rem 3.5rem; }
    .life-with-lucy__intro { margin-bottom: 2.8rem; }
    .lucy-conversation-tv { border-radius: 20px; }
    .lucy-conversation-tv__screen { min-height: 350px; padding: 2.4rem 1.25rem; border-radius: 13px; }
    .lucy-conversation-tv__response { font-size: clamp(1.75rem, 8.5vw, 2.45rem); }
    .lucy-conversation-plant { right: 8px; transform: scale(0.78); transform-origin: bottom right; }
}

@media (prefers-reduced-motion: reduce) {
    .lucy-conversation-tv__screen { scroll-behavior: auto; }
}

.lucy-room-closing {
    padding: clamp(5rem, 10vw, 8rem) 0;
    text-align: center;
    background:
        radial-gradient(circle at 25% 20%, rgba(85, 126, 87, 0.14), transparent 28rem),
        linear-gradient(135deg, #e8efe8, var(--gw-cream));
}

.lucy-room-closing h2 {
    max-width: 800px;
    margin: 0 auto 1.4rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    font-weight: 500;
    line-height: 1.08;
}

.lucy-room-closing p:not(.gw-eyebrow) {
    max-width: 680px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

@media (max-width: 900px) {
    .lucy-rumpus-chat {
        grid-template-columns: 1fr;
    }

    .lucy-rumpus-chat__form {
        grid-column: 1;
    }

    .lucy-rumpus-topics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lucy-room-controls {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

.lucy-room-control--fan {
        grid-column: 1 / -1;
    }

    .lucy-room-control--sip {
        grid-column: 1 / -1;
    }

    .lucy-room-control--sit {
        grid-column: 1 / -1;
    }

    .lucy-room-purpose ol {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .lucy-rumpus-chat__form > div {
        align-items: stretch;
        flex-direction: column;
    }

    .lucy-rumpus-topics {
        grid-template-columns: 1fr;
    }

    .lucy-rumpus-topics button {
        min-height: 82px;
    }

    .lucy-room-stage {
        position: sticky;
        z-index: 20;
        top: calc(var(--gw-header-height) + 0.5rem);
        height: 48svh;
        min-height: 340px;
        border-radius: 20px;
    }

    .lucy-room-message {
        right: 0.7rem;
        bottom: 0.7rem;
        left: 0.7rem;
    }

    .lucy-room-control {
        min-height: 58px;
    }

    .lucy-room-cup {
        bottom: 6.8rem;
        width: 88px;
    }
}

@keyframes lucySip {
    0%, 100% {
        transform: rotate(-4deg) translate(0, 0);
    }

    45% {
        transform: rotate(-28deg) translate(-18px, -38px) scale(1.08);
    }
}

@media (prefers-reduced-motion: reduce) {
    .lucy-room-cup.is-sipping {
        animation: none;
    }
}

/* =========================================================
   Health Path — Lucy's mock conversation balloon
   ========================================================= */

.health-lucy {
    position: relative;
    display: grid;
    grid-template-columns: minmax(210px, 0.72fr) minmax(330px, 1.28fr);
    align-items: end;
    max-width: 940px;
    overflow: hidden;
    margin: clamp(3rem, 8vw, 6rem) auto;
    border: 1px solid rgba(214, 173, 69, 0.42);
    border-radius: 34px;
    background: linear-gradient(135deg, #f9f2e6, #fffdf8);
    box-shadow: 0 26px 70px rgba(5, 17, 38, 0.2);
}

.health-lucy__portrait {
    position: relative;
    align-self: stretch;
    min-height: 610px;
    background: #dfe9d9;
}

.health-lucy__portrait::after {
    position: absolute;
    inset: auto 0 0;
    height: 35%;
    content: "";
    background: linear-gradient(transparent, rgba(5, 17, 38, 0.52));
    pointer-events: none;
}

.health-lucy__portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 30%;
}

.health-lucy__portrait > p {
    position: absolute;
    z-index: 1;
    right: 1.25rem;
    bottom: 1rem;
    left: 1.25rem;
    margin: 0;
    color: var(--gw-white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
    text-align: center;
}

.health-lucy__balloon {
    position: relative;
    margin: clamp(1.25rem, 3vw, 2.5rem);
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border: 1px solid rgba(214, 173, 69, 0.52);
    border-radius: 28px;
    background: rgba(255, 253, 249, 0.97);
    box-shadow: 0 16px 42px rgba(5, 17, 38, 0.12);
}

.health-lucy__balloon.is-entering {
    animation: healthLucyEnter 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.health-lucy__balloon::before {
    position: absolute;
    top: 50%;
    left: -17px;
    width: 32px;
    height: 32px;
    border-bottom: 1px solid rgba(214, 173, 69, 0.52);
    border-left: 1px solid rgba(214, 173, 69, 0.52);
    content: "";
    background: #fffdf9;
    transform: translateY(-50%) rotate(45deg);
}

.health-lucy__balloon[hidden],
.health-lucy__return[hidden],
.health-lucy [hidden] {
    display: none !important;
}

.health-lucy__dismiss {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 42px;
    height: 42px;
    color: var(--gw-muted);
    border: 0;
    border-radius: 50%;
    background: transparent;
    font: inherit;
    font-size: 1.65rem;
    line-height: 1;
    cursor: pointer;
}

.health-lucy__dismiss:hover,
.health-lucy__dismiss:focus-visible {
    color: var(--gw-navy);
    background: rgba(8, 26, 58, 0.08);
}

.health-lucy__eyebrow {
    margin: 0 2rem 0.55rem 0 !important;
    color: #8b5523;
    font-size: 0.78rem !important;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.health-lucy h2 {
    margin: 0 1.5rem 1.5rem 0;
    color: var(--gw-navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.75rem, 3.2vw, 2.65rem);
    font-weight: 500;
    line-height: 1.13;
}

.health-lucy__choices {
    display: grid;
    gap: 0.7rem;
}

.health-lucy__choices button,
.health-lucy__own-words,
.health-lucy__form button,
.health-lucy__reply a {
    min-height: 52px;
    padding: 0.85rem 1rem;
    color: var(--gw-navy);
    border: 1px solid rgba(8, 26, 58, 0.16);
    border-radius: 16px;
    background: var(--gw-white);
    font: inherit;
    font-weight: 750;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.health-lucy__choices button:hover,
.health-lucy__choices button:focus-visible,
.health-lucy__own-words:hover,
.health-lucy__own-words:focus-visible {
    border-color: var(--gw-gold);
    background: #fff8e9;
    transform: translateY(-1px);
}

.health-lucy__own-words {
    width: 100%;
    margin-top: 0.8rem;
    color: #264f84;
    border-color: rgba(38, 79, 132, 0.42);
}

.health-lucy__form {
    display: grid;
    gap: 0.75rem;
}

.health-lucy__form label {
    color: var(--gw-navy);
    font-weight: 800;
}

.health-lucy__form textarea {
    width: 100%;
    min-height: 112px;
    padding: 0.9rem 1rem;
    color: var(--gw-ink);
    border: 1px solid rgba(8, 26, 58, 0.25);
    border-radius: 16px;
    background: var(--gw-white);
    font: inherit;
    resize: vertical;
}

.health-lucy__form button,
.health-lucy__reply a {
    color: var(--gw-navy-deep);
    border-color: var(--gw-gold);
    background: var(--gw-gold-light);
    text-align: center;
}

.health-lucy__reply > p {
    margin: 0 0 1.25rem !important;
    color: var(--gw-navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.3rem !important;
    line-height: 1.55 !important;
}

.health-lucy__reply a {
    display: block;
}

.health-lucy__reply button,
.health-lucy__not-now {
    display: block;
    margin: 0.9rem auto 0;
    padding: 0.45rem 0.75rem;
    color: var(--gw-muted);
    border: 0;
    background: transparent;
    font: inherit;
    text-decoration: underline;
    text-underline-offset: 0.2em;
    cursor: pointer;
}

.health-lucy__privacy {
    margin: 1.2rem 0 0 !important;
    color: var(--gw-muted);
    font-size: 0.78rem !important;
    line-height: 1.45 !important;
    text-align: center;
}

.health-lucy__return {
    grid-column: 2;
    align-self: center;
    justify-self: center;
    min-height: 52px;
    margin: 2rem;
    padding: 0.85rem 1.4rem;
    color: var(--gw-navy);
    border: 1px solid var(--gw-gold);
    border-radius: 999px;
    background: var(--gw-gold-light);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

@media (max-width: 760px) {
    .health-lucy {
        display: block;
        border-radius: 26px;
    }

    .health-lucy__portrait {
        min-height: 360px;
        max-height: 52vh;
    }

    .health-lucy__portrait img {
        object-position: 50% 27%;
    }

    .health-lucy__balloon {
        margin: -1.25rem 0 0;
        padding: 1.5rem 1rem max(1.25rem, env(safe-area-inset-bottom));
        border-width: 1px 0 0;
        border-radius: 26px 26px 0 0;
        box-shadow: 0 -16px 38px rgba(5, 17, 38, 0.16);
    }

    .health-lucy__balloon::before {
        top: -12px;
        left: 50%;
        transform: translateX(-50%) rotate(135deg);
    }

    .health-lucy h2 {
        margin-right: 2rem;
        font-size: clamp(1.7rem, 8vw, 2.3rem);
    }

    .health-lucy__choices button,
    .health-lucy__own-words,
    .health-lucy__form button,
    .health-lucy__reply a {
        min-height: 58px;
    }

    .health-lucy__return {
        width: calc(100% - 2rem);
        margin: 1.25rem 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .health-lucy__choices button,
    .health-lucy__own-words {
        transition: none;
    }

    .health-lucy__balloon.is-entering {
        animation: none;
    }
}

@keyframes healthLucyEnter {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.985);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* =========================================================
   Conversation — coming soon
   ========================================================= */

.conversation-soon {
    position: relative;
    isolation: isolate;
    min-height: calc(100svh - var(--gw-header-height));
    display: grid;
    overflow: hidden;
    place-items: center;
    padding: clamp(5rem, 11vw, 9rem) 0;
    color: var(--gw-white);
    text-align: center;
    background:
        radial-gradient(circle at 18% 16%, rgba(214, 173, 69, 0.13), transparent 24rem),
        radial-gradient(circle at 82% 78%, rgba(89, 130, 102, 0.15), transparent 30rem),
        linear-gradient(145deg, var(--gw-navy-deep), var(--gw-blue));
}

.conversation-soon__glow {
    position: absolute;
    z-index: -1;
    width: min(52vw, 620px);
    aspect-ratio: 1;
    right: -8%;
    bottom: -34%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(241, 216, 141, 0.72), rgba(217, 140, 63, 0.18) 46%, transparent 70%);
    filter: blur(3px);
}

.conversation-soon__inner {
    max-width: 860px;
}

.conversation-soon h1 {
    margin: 0 auto 1.7rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: -0.045em;
    text-wrap: balance;
}

.conversation-soon__lead {
    max-width: 720px;
    margin: 0 auto 2rem;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.conversation-soon__promise {
    max-width: 660px;
    margin: 2.5rem auto;
    padding: clamp(1.5rem, 4vw, 2.3rem);
    border: 1px solid rgba(241, 216, 141, 0.3);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.055);
    backdrop-filter: blur(12px);
}

.conversation-soon__promise p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.conversation-soon__promise p + p {
    margin-top: 1rem;
}

.conversation-soon__actions {
    justify-content: center;
}

.conversation-soon__signature {
    margin: 2.5rem 0 0;
    color: var(--gw-gold-light);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.25rem;
    font-style: italic;
}

/* =========================================================
   Lucy's wellness quiz
   ========================================================= */

.lucy-quiz {
    scroll-margin-top: calc(var(--gw-header-height) + 1rem);
    padding: clamp(4rem, 9vw, 8rem) 0;
    background:
        radial-gradient(circle at 82% 12%, rgba(89, 130, 102, 0.15), transparent 28rem),
        linear-gradient(180deg, #f8f2e8, var(--gw-cream));
}

.lucy-quiz [hidden] {
    display: none !important;
}

.lucy-quiz__shell {
    max-width: 900px;
    margin: 0 auto;
    padding: clamp(1.5rem, 5vw, 3.5rem);
    border: 1px solid rgba(8, 26, 58, 0.13);
    border-radius: 30px;
    background: rgba(255, 253, 249, 0.92);
    box-shadow: var(--gw-shadow-large);
}

.lucy-quiz__intro {
    max-width: 690px;
    margin: 0 auto;
    padding: clamp(1rem, 4vw, 3rem) 0;
    text-align: center;
}

.lucy-quiz__intro h2,
.lucy-quiz__header h2 {
    margin: 0 0 1rem;
    color: var(--gw-navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.35rem, 6vw, 4.2rem);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.lucy-quiz__intro > p:not(.gw-eyebrow) {
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

.lucy-quiz__header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
}

.lucy-quiz__header h2 {
    margin-bottom: 0;
    font-size: clamp(2rem, 5vw, 3.25rem);
}

.lucy-quiz__score {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    margin: 0;
    color: var(--gw-muted);
    text-align: right;
}

.lucy-quiz__score strong {
    color: var(--gw-navy);
    font-size: 1.2rem;
}

.lucy-quiz__bar {
    height: 7px;
    overflow: hidden;
    margin: 1.5rem 0 2.5rem;
    border-radius: 999px;
    background: rgba(8, 26, 58, 0.11);
}

.lucy-quiz__bar span {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--gw-gold), var(--gw-gold-light));
    transition: width 0.35s ease;
}

.lucy-quiz__category {
    margin: 0 0 0.65rem;
    color: #8b5523;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.lucy-quiz__question {
    margin: 0;
    padding: 0;
    border: 0;
}

.lucy-quiz__question legend {
    width: 100%;
    margin: 0 0 1.5rem;
    color: var(--gw-navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.65rem, 4vw, 2.45rem);
    font-weight: 500;
    line-height: 1.25;
}

.lucy-quiz__answers {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.lucy-quiz__answer {
    position: relative;
}

.lucy-quiz__answer input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.lucy-quiz__answer label {
    display: block;
    padding: 1rem 1.15rem;
    color: var(--gw-ink);
    border: 2px solid rgba(8, 26, 58, 0.12);
    border-radius: 14px;
    background: var(--gw-paper);
    cursor: pointer;
}

.lucy-quiz__answer label:hover {
    border-color: rgba(214, 173, 69, 0.65);
    background: #fff8eb;
}

.lucy-quiz__answer input:focus-visible + label {
    outline: 3px solid rgba(214, 173, 69, 0.42);
    outline-offset: 3px;
}

.lucy-quiz__answer input:checked + label {
    color: var(--gw-navy-deep);
    border-color: var(--gw-gold);
    background: var(--gw-gold-light);
    box-shadow: var(--gw-shadow-small);
}

.lucy-quiz__feedback {
    padding: clamp(1.4rem, 4vw, 2.3rem);
    border-left: 4px solid var(--gw-gold);
    border-radius: 0 18px 18px 0;
    background: linear-gradient(135deg, #fff8e9, #f3eadc);
}

.lucy-quiz__verdict {
    margin: 0 0 0.8rem;
    color: var(--gw-navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.45rem, 3.5vw, 2rem);
    font-style: italic;
    font-weight: 600;
}

.lucy-quiz__verdict.is-correct {
    color: #315f3d;
}

.lucy-quiz__verdict.is-wrong {
    color: #8b5523;
}

.lucy-quiz__feedback > a {
    display: block;
    width: fit-content;
    margin: 1rem 0 1.5rem;
    color: var(--gw-blue);
    font-weight: 700;
}

.lucy-quiz__finish {
    padding: clamp(1rem, 4vw, 3rem) 0;
    text-align: center;
}

.lucy-quiz__final-score {
    margin: 0 0 1rem;
    color: #8b5523;
    font-size: clamp(2.4rem, 7vw, 4.5rem);
    font-weight: 800;
}

.lucy-quiz__finish h3 {
    max-width: 720px;
    margin: 0 auto 1.2rem;
    color: var(--gw-navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.9rem, 5vw, 3.2rem);
    font-weight: 500;
}

.lucy-quiz__return {
    margin: 1.5rem auto 2rem;
    color: #315f3d;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
    font-style: italic;
}

.lucy-quiz__finish .gw-button-row {
    justify-content: center;
}

.lucy-quiz__restart {
    border: 0;
    background: transparent;
    font: inherit;
    cursor: pointer;
}

.lucy-quiz__notice {
    margin: 2.5rem 0 0;
    padding-top: 1.25rem;
    color: var(--gw-muted);
    border-top: 1px solid rgba(8, 26, 58, 0.1);
    font-size: 0.9rem;
    text-align: center;
}

@media (max-width: 660px) {
    .lucy-quiz__shell {
        border-radius: 22px;
    }

    .lucy-quiz__header {
        display: block;
    }

    .lucy-quiz__score {
        flex-direction: row;
        justify-content: space-between;
        margin-top: 1rem;
        text-align: left;
    }
}

/* Lucy hosts the quiz inside her room */

.lucy-room-quiz {
    position: absolute;
    z-index: 30;
    top: 1rem;
    bottom: 1rem;
    left: 1rem;
    width: min(48%, 520px);
    overflow-y: auto;
    padding: 0;
    border-radius: 24px;
    background: transparent;
    overscroll-behavior: contain;
}

.lucy-room-quiz .lucy-quiz__shell {
    min-height: 100%;
    padding: clamp(1.15rem, 2.4vw, 2rem);
    border-radius: 24px;
    background: rgba(255, 253, 249, 0.95);
    box-shadow: 0 20px 55px rgba(5, 17, 38, 0.24);
    backdrop-filter: blur(14px);
}

.lucy-room-quiz .lucy-quiz__intro {
    padding: 0.75rem 0;
}

.lucy-room-quiz .lucy-quiz__intro h2,
.lucy-room-quiz .lucy-quiz__header h2 {
    font-size: clamp(1.8rem, 3.8vw, 2.8rem);
}

.lucy-room-quiz .lucy-quiz__question legend {
    font-size: clamp(1.35rem, 2.5vw, 1.8rem);
}

.lucy-room-quiz .lucy-quiz__answer label {
    padding: 0.75rem 0.85rem;
}

.lucy-room-quiz .lucy-quiz__notice {
    margin-top: 1.5rem;
}

.lucy-room-stage > .lucy-room-loading {
    z-index: 50;
}

.lucy-room-stage > .lucy-room-message {
    z-index: 35;
    right: auto;
    left: 1.2rem;
    width: 47%;
}

.lucy-room-controls--simple {
    width: min(460px, 100%);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-inline: auto;
}

.lucy-room-controls--simple .lucy-room-control {
    grid-column: auto;
}

@media (max-width: 760px) {
    .lucy-room-stage {
        position: relative;
        top: auto;
        height: auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        overflow: visible;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .lucy-room-scene-frame {
        position: relative;
        inset: auto;
        width: 100%;
        aspect-ratio: 1672 / 941;
    }

    .lucy-room-scene {
        width: 100%;
        height: auto;
        aspect-ratio: 1672 / 941;
        border: 1px solid rgba(8, 26, 58, 0.14);
        border-radius: 20px;
        box-shadow: var(--gw-shadow-large);
    }

    .lucy-room-quiz {
        position: relative;
        inset: auto;
        width: 100%;
        max-height: 72svh;
        border-radius: 20px;
    }

    .lucy-room-quiz .lucy-quiz__shell {
        border-radius: 20px;
    }

    .lucy-room-stage > .lucy-room-message {
        top: 0.7rem;
        right: 0.7rem;
        bottom: auto;
        left: 0.7rem;
        font-size: 0.9rem;
    }

    .lucy-room-stage .lucy-room-tv {
        position: relative;
        inset: auto;
        width: 100%;
        height: min(68svh, 590px);
        min-height: 480px;
        padding: 1rem;
        gap: 0.7rem;
        border: 10px solid #24282d;
        border-radius: 12px;
        box-shadow: 0 18px 38px rgba(5, 17, 38, 0.3);
    }

    .lucy-room-stage .lucy-rumpus-chat__intro p {
        font-size: 0.88rem;
    }

    .lucy-room-stage .lucy-rumpus-chat__intro h2 {
        font-size: clamp(1.7rem, 8vw, 2.3rem);
    }

    .lucy-room-stage .lucy-rumpus-chat__transcript {
        min-height: 150px;
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .lucy-room-stage .lucy-rumpus-chat__form label,
    .lucy-tv-status {
        font-size: 0.82rem;
    }

    .lucy-room-stage .lucy-rumpus-chat__form input,
    .lucy-room-stage .lucy-rumpus-chat__form button {
        min-height: 46px;
        padding: 0.7rem 0.8rem;
        font-size: 0.92rem;
    }

    .lucy-tv-starters button {
        padding: 0.42rem 0.6rem;
        font-size: 0.78rem;
    }

    .lucy-tv-privacy {
        font-size: 0.7rem;
    }

    .lucy-room-cup {
        right: 1rem;
        bottom: 59%;
        width: 72px;
    }

    .lucy-room-controls--simple {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
/* Personalized presentation handoff */
.presentation-preparing {
    min-height: 68vh;
    display: grid;
    place-items: center;
    padding: 5rem 1.25rem;
    text-align: center;
    background: radial-gradient(circle at top, rgba(205, 231, 216, .55), transparent 55%);
}

.presentation-preparing__inner {
    max-width: 720px;
}

.presentation-preparing__spinner {
    width: 3rem;
    height: 3rem;
    margin: 2rem auto;
    border: .3rem solid rgba(37, 92, 68, .18);
    border-top-color: #255c44;
    border-radius: 50%;
    animation: presentation-spin .9s linear infinite;
}

.presentation-preparing__fallback {
    margin-top: 1.5rem;
}

@keyframes presentation-spin {
    to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
    .presentation-preparing__spinner { animation: none; }
}
