/* ─── Tokens ───────────────────────────────────── */
:root {
    --bg: #faf6ee;
    --bg-card: #ffffff;
    --bg-soft: #f4ede0;
    --bg-sand: #ece2cf;
    --sage: #8a9d82;
    --sage-dark: #6e8068;
    --sage-soft: #d6dfd2;
    --terracotta: #d96b3a;
    --terracotta-dark: #a8512a;
    --text: #1a1d1a;
    --text-soft: #5a5048;
    --text-muted: #8a8077;
    --border: #e3d9c3;
    --shadow-sm: 0 2px 8px rgba(60, 45, 30, 0.05);
    --shadow-md: 0 6px 18px rgba(60, 45, 30, 0.07);
    --radius: 16px;
}

/* ─── Reset / Base ─────────────────────────────── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Jost', Georgia, serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-weight: 300;
}

h1, h2, h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ─── Top Banner ───────────────────────────────── */
.top-banner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 14px 36px;
    background-color: var(--bg-card);
    border-bottom: 1px solid var(--border);
}

.logo { justify-self: start; }
.logo img {
    height: 48px;
    width: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--sage-soft);
}

.banner-title { justify-self: center; }
.banner-title h1 {
    font-size: 1.9rem;
    letter-spacing: 4px;
    color: var(--text);
    text-transform: uppercase;
    font-weight: 400;
}

.banner-button { justify-self: end; }
.banner-button button {
    background-color: transparent;
    color: var(--sage-dark);
    border: 1px solid var(--sage);
    padding: 10px 22px;
    font-size: 0.85rem;
    cursor: pointer;
    border-radius: 999px;
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.25s ease;
}
.banner-button button:hover {
    background-color: var(--sage);
    color: white;
}

/* ─── Hero ─────────────────────────────────────── */
.hero {
    height: 640px;
    background-image: url("../../resources/images/lao-road.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(44, 37, 32, 0.25) 0%, rgba(44, 37, 32, 0.45) 100%);
}

.hero-overlay {
    position: relative;
    z-index: 1;
    padding: 40px 50px;
    max-width: 720px;
}

.quote {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.4rem;
    color: white;
    font-style: italic;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 18px;
}

.quote-author {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Jost', sans-serif;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-sub {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.92);
    font-style: italic;
    line-height: 1.5;
    max-width: 620px;
    margin: 14px auto 0;
}


/* ─── Intro ─────────────────────────────────────── */
.intro {
    padding: 60px 20px 40px;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.intro p {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--text-soft);
    font-weight: 300;
    margin-bottom: 18px;
}
.intro p:last-child { margin-bottom: 0; }

/* ─── Steps (Interactive Tabs) ──────────────────── */
.steps {
    max-width: 1000px;
    margin: 30px auto 60px;
    padding: 20px;
    text-align: center;
}

.steps h2 {
    font-size: 2.4rem;
    margin-bottom: 8px;
    color: var(--text);
}

.steps .section-sub {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 35px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.steps-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    list-style: none;
    margin: 0 auto 30px;
    padding: 0;
    max-width: 700px;
}

.step-tab {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 18px;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.step-tab:hover {
    border-color: var(--sage);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.step-tab.active {
    background-color: var(--sage);
    border-color: var(--sage);
}

.step-tab.active .step-num,
.step-tab.active .step-title { color: white; }

.step-num {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.4rem;
    line-height: 1;
    color: var(--sage-dark);
    font-weight: 500;
}

.step-title {
    font-size: 0.9rem;
    color: var(--text-soft);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.step-panel {
    background-color: var(--bg-soft);
    border-radius: var(--radius);
    padding: 35px 40px;
    margin: 0 auto 30px;
    max-width: 720px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    min-height: 160px;
    transition: opacity 0.2s ease;
}

.step-panel.fading { opacity: 0; }

.step-panel h3 {
    font-size: 1.6rem;
    color: var(--terracotta-dark);
    margin-bottom: 12px;
}

.step-panel p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-soft);
}

.steps-foot {
    font-size: 1rem;
    max-width: 640px;
    margin: 0 auto;
    color: var(--text-muted);
    font-style: italic;
}

/* ─── Generic Container Section ─────────────────── */
.container-section {
    max-width: 1100px;
    margin: 60px auto;
    padding: 50px 40px;
    background-color: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.section-header {
    text-align: center;
    margin-bottom: 35px;
}

.section-header h2 {
    font-size: 2.1rem;
    color: var(--text);
    margin-bottom: 8px;
}

.section-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ─── Reflection + Affirmations Duo Grid ────────── */
.duo-grid {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 15px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 25px;
    align-items: stretch;
}

.duo-grid > section {
    margin: 0;
    height: 100%;
}

/* ─── AI Loading State ──────────────────────────── */
.ai-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    color: var(--text-muted);
    gap: 15px;
}

.spinner {
    width: 32px;
    height: 32px;
    border: 2px solid var(--sage-soft);
    border-top-color: var(--sage-dark);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

.ai-error {
    text-align: center;
    color: var(--terracotta-dark);
    padding: 20px;
    font-style: italic;
}

/* ─── Daily Reflection ──────────────────────────── */
.reflection-date-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 28px;
}

.reflection-date-label {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-soft);
    min-width: 240px;
    text-align: center;
    letter-spacing: 1px;
}

.nav-btn {
    background: transparent;
    color: var(--sage-dark);
    border: 1px solid var(--sage);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav-btn:hover { background: var(--sage); color: white; }
.nav-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    background: transparent;
    color: var(--sage-dark);
}

.reflection-theme {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--terracotta-dark);
    text-align: center;
    margin-bottom: 22px;
    font-style: italic;
}

.reflection-quote {
    background: var(--bg-soft);
    border-left: 3px solid var(--sage);
    padding: 22px 26px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.reflection-quote p {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.25rem;
    color: var(--text);
    margin-bottom: 8px;
    font-style: italic;
}

.reflection-quote cite {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: normal;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.reflection-reading p {
    font-size: 1rem;
    line-height: 1.95;
    margin-bottom: 15px;
    color: var(--text-soft);
}

.reflection-meditation {
    margin-top: 25px;
    padding: 20px 24px;
    background: var(--sage-soft);
    border-radius: 12px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text);
}

/* ─── Activities Grid ───────────────────────────── */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.activity-card {
    background: var(--bg-soft);
    border: 1px solid transparent;
    border-radius: 12px;
    padding: 22px 16px;
    text-align: center;
    font-size: 1.4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: default;
    transition: all 0.25s ease;
}

.activity-card:hover {
    transform: translateY(-3px);
    border-color: var(--sage);
    background: var(--bg-card);
}

.activity-card span {
    font-size: 0.9rem;
    color: var(--text-soft);
    font-weight: 400;
}

/* ─── Affirmations ──────────────────────────────── */
.affirmations-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.affirmation-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: var(--bg-soft);
    padding: 22px;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.affirmation-card:hover { border-color: var(--sage-soft); }

.affirmation-number {
    background: transparent;
    color: var(--sage-dark);
    border: 1px solid var(--sage);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 500;
    flex-shrink: 0;
}

.affirmation-card p {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text);
    line-height: 1.55;
    font-weight: 400;
}

/* ─── Gratitude ─────────────────────────────────── */
.gratitude-section {
    background: linear-gradient(135deg, var(--sage-soft) 0%, var(--bg-soft) 100%);
    border: 1px solid var(--border);
}

.gratitude-wrap {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.gratitude-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 50px 45px;
    box-shadow: var(--shadow-sm);
}

.prayer-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.9;
    color: var(--text);
    margin-bottom: 22px;
    font-weight: 400;
}

.prayer-closing {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--terracotta);
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* ─── CTA ───────────────────────────────────────── */
.cta {
    max-width: 1000px;
    margin: 60px auto;
    padding: 50px 40px;
    background-color: var(--bg-soft);
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--border);
}

.cta button {
    background-color: var(--sage);
    color: white;
    border: none;
    padding: 13px 24px;
    margin: 8px;
    font-size: 0.85rem;
    border-radius: 999px;
    cursor: pointer;
    font-family: 'Jost', sans-serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 400;
    transition: background 0.25s ease;
}

.cta button:hover { background-color: var(--sage-dark); }

.cta p {
    margin-top: 28px;
    font-size: 1rem;
    line-height: 1.8;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-soft);
}

/* ─── Online Meeting Now ────────────────────────── */
.online-meeting-section {
    text-align: center;
    border: 1px solid var(--sage);
    background: var(--bg-card);
}

.online-meeting-section h2 {
    font-size: 1.9rem;
    color: var(--text);
    margin-bottom: 12px;
}

.online-meeting-section > p {
    font-size: 1rem;
    color: var(--text-soft);
    max-width: 600px;
    margin: 0 auto 30px;
}

.online-pulse {
    width: 12px;
    height: 12px;
    background: var(--sage);
    border-radius: 50%;
    margin: 0 auto 18px;
    box-shadow: 0 0 0 0 rgba(138, 157, 130, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(138,157,130,0.5); }
    70% { box-shadow: 0 0 0 14px rgba(138,157,130,0); }
    100% { box-shadow: 0 0 0 0 rgba(138,157,130,0); }
}

.online-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.online-btn {
    display: inline-block;
    padding: 13px 24px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-family: 'Jost', sans-serif;
    text-decoration: none;
    transition: all 0.25s ease;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid transparent;
}

.aa-online { background: var(--sage); color: white; }
.aa-online:hover { background: var(--sage-dark); }
.na-online { background: transparent; color: var(--sage-dark); border-color: var(--sage); }
.na-online:hover { background: var(--sage); color: white; }
.room-online { background: var(--terracotta); color: white; }
.room-online:hover { background: var(--terracotta-dark); }

/* ─── Meeting Finder ────────────────────────────── */
.search-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 30px;
}

.search-wrap input {
    flex: 1;
    min-width: 240px;
    max-width: 400px;
    padding: 13px 18px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Jost', sans-serif;
    background: var(--bg);
    color: var(--text);
    transition: border-color 0.2s ease;
}
.search-wrap input:focus {
    outline: none;
    border-color: var(--sage);
}

.search-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.search-btn {
    display: inline-block;
    padding: 13px 22px;
    border: 1px solid var(--sage);
    border-radius: 999px;
    font-size: 0.8rem;
    font-family: 'Jost', sans-serif;
    cursor: pointer;
    background: transparent;
    color: var(--sage-dark);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.25s ease;
}
.search-btn:hover { background: var(--sage); color: white; }

.meeting-result-info {
    background: var(--bg-soft);
    border-radius: 12px;
    padding: 26px;
    text-align: center;
    line-height: 1.8;
    color: var(--text-soft);
}

.meeting-result-info p { margin-bottom: 10px; }

.meeting-external-link {
    display: inline-block;
    margin-top: 12px;
    padding: 12px 24px;
    background: var(--sage);
    color: white;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: background 0.25s ease;
}
.meeting-external-link:hover { background: var(--sage-dark); }

.search-prompt {
    text-align: center;
    color: var(--text-muted);
    font-style: italic;
}

/* ─── Crisis Section ────────────────────────────── */
.crisis-section {
    background: #2a2520;
    color: var(--bg);
    padding: 70px 30px;
    text-align: center;
}

.crisis-section h2 {
    font-size: 2.1rem;
    color: white;
    margin-bottom: 15px;
}

.crisis-intro {
    font-size: 1rem;
    color: rgba(250, 246, 238, 0.7);
    max-width: 650px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.crisis-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.crisis-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.25s ease;
}

.crisis-card.emergency {
    border-color: rgba(200, 122, 94, 0.5);
    background: rgba(200, 122, 94, 0.1);
}

.crisis-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-2px);
}

.crisis-icon { font-size: 1.8rem; opacity: 0.85; }

.crisis-card h3 {
    font-size: 1.15rem;
    color: white;
    font-weight: 500;
}

.crisis-card p {
    font-size: 0.85rem;
    color: rgba(250, 246, 238, 0.6);
    text-align: center;
    line-height: 1.5;
}

.crisis-btn {
    display: inline-block;
    margin-top: 8px;
    padding: 10px 20px;
    background: var(--sage);
    color: white;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.8rem;
    font-family: 'Jost', sans-serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: background 0.25s ease;
}
.crisis-btn:hover { background: var(--sage-dark); }
.crisis-card.emergency .crisis-btn { background: var(--terracotta); }
.crisis-card.emergency .crisis-btn:hover { background: var(--terracotta-dark); }

.secondary-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.25);
    color: rgba(250, 246, 238, 0.8);
}
.secondary-btn:hover { background: rgba(255,255,255,0.08); }

/* ─── Footer ────────────────────────────────────── */
.site-footer {
    background: #1e1812;
    color: rgba(250, 246, 238, 0.5);
    text-align: center;
    padding: 35px 20px;
}

.site-footer p { margin-bottom: 8px; font-size: 0.85rem; }
.footer-disclaimer {
    font-size: 0.75rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    color: rgba(250, 246, 238, 0.35);
}

/* ─── Then / Now (intro before-after pair) ────────── */
.then-now {
    max-width: 1100px;
    margin: 30px auto 10px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.then-now figure {
    margin: 0;
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.then-now img {
    display: block;
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.then-now figcaption {
    padding: 20px 24px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.65;
    color: var(--text-soft);
}

.then-now .label {
    display: block;
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--terracotta);
    font-style: normal;
    margin-bottom: 8px;
}

/* Photo under affirmations */
.affirmations-img {
    display: block;
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin-top: 24px;
}

/* Photo on topic cards (Adventures) */
.topic-card img {
    display: block;
    width: calc(100% + 56px);
    height: 200px;
    object-fit: cover;
    margin: -30px -28px 18px;
    border-top-left-radius: var(--radius);
    border-top-right-radius: var(--radius);
}

/* ─── Site Nav ──────────────────────────────────── */
.site-nav {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    padding: 0 30px;
    display: flex;
    justify-content: center;
    gap: 36px;
    overflow-x: auto;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 6px rgba(60, 45, 30, 0.04);
}

.site-nav a {
    color: var(--text-muted);
    text-decoration: none;
    padding: 18px 2px;
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
    white-space: nowrap;
    font-weight: 400;
}

.site-nav a:hover { color: var(--sage-dark); }

.site-nav a.active {
    color: var(--sage-dark);
    border-bottom-color: var(--sage);
}

/* ─── Page Hero (sub-pages) ──────────────────────── */
.page-hero {
    background: linear-gradient(135deg, var(--sage-soft) 0%, var(--bg-soft) 100%);
    padding: 80px 30px 70px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.page-hero h1 {
    font-size: 3rem;
    color: var(--text);
    margin-bottom: 18px;
    font-weight: 400;
    letter-spacing: 1px;
}

.page-hero .page-quote {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.4rem;
    color: var(--text-soft);
    font-style: italic;
    max-width: 680px;
    margin: 0 auto 12px;
    line-height: 1.5;
}

.page-hero .page-quote-author {
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

/* ─── Content Blocks ─────────────────────────────── */
.content-block {
    max-width: 880px;
    margin: 60px auto;
    padding: 0 30px;
}

.content-block h2 {
    font-size: 2rem;
    color: var(--text);
    margin-bottom: 18px;
    text-align: center;
    font-weight: 500;
}

.content-block .lede {
    font-size: 1.1rem;
    line-height: 1.95;
    color: var(--text-soft);
    text-align: center;
    max-width: 720px;
    margin: 0 auto 30px;
}

.content-block h3 {
    font-size: 1.35rem;
    color: var(--terracotta-dark);
    margin: 30px 0 12px;
    font-weight: 500;
}

.content-block p {
    font-size: 1.02rem;
    line-height: 1.9;
    color: var(--text-soft);
    margin-bottom: 16px;
}

.content-block ul {
    list-style: none;
    padding: 0;
    margin: 18px 0;
}

.content-block ul li {
    padding: 8px 0 8px 26px;
    position: relative;
    color: var(--text-soft);
    line-height: 1.7;
    font-size: 1rem;
}

.content-block ul li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--sage);
    border-radius: 50%;
    position: absolute;
    left: 4px;
    top: 18px;
}

/* ─── Topic Card Grid ────────────────────────────── */
.topic-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 30px;
}

.topic-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px 28px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.topic-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.topic-card .icon {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.topic-card h3 {
    color: var(--text);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
}

.topic-card p {
    color: var(--text-soft);
    line-height: 1.75;
    font-size: 0.98rem;
}

/* ─── Action Card (this week) ────────────────────── */
.action-card {
    max-width: 720px;
    margin: 60px auto;
    padding: 38px 40px;
    background: linear-gradient(135deg, var(--sage-soft) 0%, var(--bg-soft) 100%);
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--border);
}

.action-card .label {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 10px;
}

.action-card h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.7rem;
    color: var(--text);
    margin-bottom: 14px;
    font-weight: 500;
}

.action-card p {
    color: var(--text-soft);
    line-height: 1.8;
    font-size: 1rem;
}

/* ─── Responsive ────────────────────────────────── */
@media (max-width: 900px) {
    .duo-grid { grid-template-columns: 1fr; }
    .activities-grid { grid-template-columns: repeat(3, 1fr); }
    .crisis-grid { grid-template-columns: repeat(2, 1fr); }
    .topic-grid { grid-template-columns: 1fr; }
    .then-now { grid-template-columns: 1fr; }
    .then-now img { height: 280px; }
}

@media (max-width: 768px) {
    .top-banner {
        grid-template-columns: 1fr;
        gap: 12px;
        text-align: center;
        padding: 18px 20px;
    }
    .logo { justify-self: center; }
    .banner-button { justify-self: center; }
    .banner-title h1 { font-size: 1.6rem; letter-spacing: 3px; }

    .steps-tabs { grid-template-columns: 1fr; }
    .step-panel { padding: 28px 24px; }

    .hero { height: 380px; }
    .quote { font-size: 1.7rem; }

    .activities-grid { grid-template-columns: repeat(2, 1fr); }
    .crisis-grid { grid-template-columns: 1fr; }

    .site-nav { gap: 22px; padding: 0 18px; justify-content: flex-start; }
    .page-hero { padding: 50px 22px 45px; }
    .page-hero h1 { font-size: 2.2rem; }
    .page-hero .page-quote { font-size: 1.15rem; }

    .container-section { margin: 40px 15px; padding: 35px 24px; }
    .duo-grid { margin: 40px 0; }
}
