/* =========================================================================
   Today Media — site styles (hand-written, no build step)
   Dark theme inspired by bethany.com. Brand accent (#c49977) derived from logo.
   ========================================================================= */

:root {
    --bg:            #0c0c0f;
    --bg-alt:        #121217;
    --panel:         #16161c;
    --text:          #f4f4f6;
    --muted:         #9a9aa6;
    --line:          rgba(255, 255, 255, 0.12);

    --accent:        #c49977;   /* logo tan — on dark surfaces            */
    --accent-strong: #d8b08a;   /* hover                                   */
    --accent-ink:    #9a5f2e;   /* readable accent on white surfaces       */

    --card-bg:       #ffffff;
    --card-text:     #15151a;
    --card-muted:    #5c5c66;

    --font-head: 'Poppins', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;

    --header-h: 84px;
    --radius:   18px;
}

/* ---- reset / base ------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
h1, h2, h3, h4, p { margin: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; }
button { font: inherit; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

section[id], #main { scroll-margin-top: calc(var(--header-h) + 12px); }

.skip-link {
    position: absolute; left: -9999px; top: 0; z-index: 1000;
    background: var(--accent); color: #1b1206; padding: 10px 16px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---- buttons ------------------------------------------------------------ */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-head); font-weight: 600; font-size: 0.95rem; line-height: 1;
    padding: 13px 26px; border-radius: 999px; border: 1px solid transparent;
    cursor: pointer; transition: background .2s, color .2s, border-color .2s, transform .2s;
    white-space: nowrap;
}
.btn--primary { background: var(--accent); color: #1b1206; }
.btn--primary:hover { background: var(--accent-strong); transform: translateY(-1px); }
.btn--ghost { background: transparent; border-color: rgba(255, 255, 255, 0.4); color: #fff; }
.btn--ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.08); }
.btn--light { background: #fff; color: #15151a; }
.btn--light:hover { background: #efe9e2; transform: translateY(-1px); }
.btn--dark { background: #17171c; color: #fff; }
.btn--dark:hover { background: #2a2a32; transform: translateY(-1px); }

/* =========================================================================
   Header + navigation
   ========================================================================= */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    height: var(--header-h);
    display: flex; align-items: center;
    background: rgba(10, 10, 13, 0.88);
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
    transition: background .25s, border-color .25s;
}
.site-header.is-scrolled {
    background: rgba(10, 10, 13, 0.97);
}
/* thin line the nav pills sit on */
.site-header__line {
    position: absolute; left: 0; right: 0; top: 50%;
    height: 1px; background: var(--line);
}
.site-header__inner {
    position: relative;
    display: flex; align-items: center; justify-content: space-between; gap: 20px;
    width: 100%;
}

.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand__logo { height: 40px; width: auto; filter: brightness(0) invert(1); }

.nav { display: flex; margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: 8px; list-style: none; }
.nav__item { position: relative; }

.nav__link {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: var(--font-head); font-weight: 500; font-size: 0.9rem;
    color: var(--text);
    padding: 9px 16px; border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.85);
    background: rgba(12, 12, 16, 0.45);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    transition: border-color .2s, background .2s, color .2s;
    cursor: pointer;
}
.nav__link:hover { border-color: var(--accent); color: #fff; }
.nav__caret { transition: transform .2s; }

.nav__item.is-cta .nav__link {
    background: var(--accent); color: #1b1206; border-color: var(--accent); font-weight: 600;
}
.nav__item.is-cta .nav__link:hover { background: var(--accent-strong); border-color: var(--accent-strong); }

/* dropdown */
.nav__dropdown {
    position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(8px);
    min-width: 230px;
    background: rgba(12, 12, 16, 0.8);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 16px;
    padding: 10px; box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4);
    opacity: 0; visibility: hidden; transition: opacity .2s, transform .2s; z-index: 50;
}
.nav__dropdown::before { /* hover bridge */
    content: ''; position: absolute; left: 0; right: 0; top: -14px; height: 14px;
}
.nav__dropdown--wide { min-width: 460px; }
.nav__sublist { display: grid; gap: 2px; list-style: none; }
.nav__dropdown--wide .nav__sublist { grid-template-columns: 1fr 1fr; gap: 2px 10px; }
.nav__sublink {
    display: block; padding: 10px 14px; border-radius: 10px;
    color: var(--muted); font-size: 0.92rem; transition: background .15s, color .15s;
}
.nav__sublink:hover { background: rgba(255, 255, 255, 0.06); color: #fff; }

@media (min-width: 992px) {
    .nav__item.has-children:hover .nav__dropdown,
    .nav__item.has-children:focus-within .nav__dropdown {
        opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
    }
}

/* actions: language + burger */
.site-header__actions { display: flex; align-items: center; gap: 16px; flex-shrink: 0; position: relative; z-index: 96; }
.lang { display: flex; align-items: center; gap: 6px; font-family: var(--font-head); font-size: 0.85rem; }
.lang__link { color: rgba(255, 255, 255, 0.78); font-weight: 600; transition: color .2s; }
.lang__link:hover { color: #fff; }
.lang__link.is-active { color: var(--accent); }
.lang__sep { color: var(--line); }

.nav-toggle {
    display: none; width: 44px; height: 44px; border: none; background: transparent;
    flex-direction: column; justify-content: center; gap: 5px; cursor: pointer; padding: 0;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 0 auto; transition: transform .25s, opacity .2s; }

/* =========================================================================
   Hero
   ========================================================================= */
.hero {
    position: relative; min-height: 92vh; display: flex; align-items: flex-end;
    padding-bottom: 96px; background-size: cover; background-position: center; color: #fff;
}
.hero .container { width: 100%; }
.hero__overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(90deg, rgba(8, 8, 11, 0.8) 0%, rgba(8, 8, 11, 0.4) 45%, rgba(8, 8, 11, 0.12) 100%),
        linear-gradient(180deg, rgba(8, 8, 11, 0) 38%, rgba(8, 8, 11, 0.85) 100%);
}
.hero__inner { position: relative; max-width: 640px; padding-left: 34px; }
.hero__inner::before {
    content: ''; position: absolute; left: 0; top: 6px; bottom: 6px; width: 2px;
    background: rgba(255, 255, 255, 0.88);
}
.hero__eyebrow {
    text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.8rem;
    color: var(--accent); font-weight: 600; font-family: var(--font-head); margin-bottom: 16px;
}
.hero__title {
    font-family: var(--font-head); font-weight: 800;
    font-size: clamp(2.6rem, 6vw, 4.6rem); line-height: 1.0; letter-spacing: -0.01em; margin-bottom: 20px;
}
.hero__subtitle {
    font-size: clamp(1.02rem, 2vw, 1.22rem); color: rgba(255, 255, 255, 0.85);
    max-width: 520px; margin-bottom: 30px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* =========================================================================
   Generic section
   ========================================================================= */
.section { padding: 92px 0; }
.section--alt { background: var(--bg-alt); }
.section__head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section__title {
    font-family: var(--font-head); font-weight: 700;
    font-size: clamp(1.9rem, 4vw, 2.8rem); line-height: 1.1; letter-spacing: -0.01em;
}
.section__title--left { text-align: left; }
.section__subtitle { color: var(--muted); font-size: 1.08rem; margin-top: 14px; }
.section__cta { text-align: center; margin-top: 46px; }

/* ---- project cards (photo overlay, bethany-style) ----------------------- */
.pcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pcard {
    position: relative; display: block; overflow: hidden; isolation: isolate;
    border-radius: 16px; aspect-ratio: 5 / 6; min-height: 360px; color: #fff;
    transition: transform .25s, box-shadow .25s;
}
.pcard:hover { transform: translateY(-5px); box-shadow: 0 22px 48px rgba(0, 0, 0, 0.5); }
.pcard__img {
    position: absolute; inset: 0; z-index: 0;
    background-size: cover; background-position: center; transition: transform .6s ease;
}
.pcard:hover .pcard__img { transform: scale(1.06); }
.pcard__overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, rgba(10,10,12,0.35) 0%, rgba(10,10,12,0) 32%, rgba(10,10,12,0.55) 66%, rgba(8,8,10,0.93) 100%);
}
.pcard__pattern {
    position: absolute; inset: 0; z-index: 1; opacity: 0.5; mix-blend-mode: soft-light;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='34' height='34'%3E%3Cpath d='M17 13v8M13 17h8' stroke='%23ffffff' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 34px 34px;
}
.pcard__badge {
    position: absolute; top: 16px; left: 16px; z-index: 3;
    background: rgba(255, 255, 255, 0.92); color: #15151a;
    font-family: var(--font-head); font-weight: 600; font-size: 0.72rem; letter-spacing: 0.04em;
    text-transform: uppercase; padding: 6px 12px; border-radius: 999px;
}
.pcard__arrow {
    position: absolute; top: 14px; right: 14px; z-index: 3;
    width: 40px; height: 40px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255, 255, 255, 0.16); color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25); backdrop-filter: blur(6px);
    transition: background .2s, color .2s, border-color .2s;
}
.pcard:hover .pcard__arrow { background: var(--accent); color: #1b1206; border-color: var(--accent); }
.pcard__body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; padding: 24px; }
.pcard__title { font-family: var(--font-head); font-weight: 700; font-size: 1.6rem; line-height: 1.08; }
.pcard__subtitle { display: block; margin-top: 6px; color: rgba(255, 255, 255, 0.82); font-size: 0.98rem; }

/* =========================================================================
   Trust line — outlined icon cards + light "need help" card
   ========================================================================= */
.give-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.give-card {
    border: 1px solid var(--line); border-radius: 16px; padding: 38px 22px;
    display: flex; flex-direction: column; align-items: center; gap: 18px; text-align: center;
    transition: border-color .2s, transform .2s;
}
.give-card:hover { border-color: rgba(255, 255, 255, 0.3); transform: translateY(-3px); }
.give-card__icon {
    width: 60px; height: 60px; border-radius: 50%; background: #fff; color: #15151a;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.give-card__icon svg { width: 28px; height: 28px; }
.give-card__title { font-family: var(--font-head); font-weight: 600; font-size: 1.08rem; line-height: 1.3; }

.help-card {
    margin-top: 32px; background: #f4f4f2; color: #16161a; border-radius: 22px;
    padding: 36px 42px; display: flex; align-items: center; justify-content: space-between;
    gap: 30px; flex-wrap: wrap;
}
.help-card__logo { height: 26px; width: auto; margin-bottom: 14px; }
.help-card__title { font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; }
.help-card__text { color: #4a4a52; margin-top: 8px; max-width: 580px; line-height: 1.55; }

/* =========================================================================
   Testimonials
   ========================================================================= */
.testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.testimonial { background: var(--panel); border: 1px solid var(--line); border-radius: 18px; padding: 32px; position: relative; }
.testimonial::before {
    content: '"'; position: absolute; top: 8px; right: 22px;
    font-family: var(--font-head); font-size: 5rem; line-height: 1; color: rgba(196, 153, 119, 0.22);
}
.testimonial__quote { font-size: 1.08rem; line-height: 1.6; color: #ececf0; margin-bottom: 22px; position: relative; }
.testimonial__author { display: flex; flex-direction: column; gap: 2px; }
.testimonial__name { font-family: var(--font-head); font-weight: 600; }
.testimonial__role { color: var(--muted); font-size: 0.9rem; }

/* =========================================================================
   About
   ========================================================================= */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about__media img { width: 100%; border-radius: 22px; object-fit: cover; aspect-ratio: 4 / 3; }
.about__body .section__title { margin-bottom: 10px; }
.about__body p { color: var(--muted); line-height: 1.75; margin: 14px 0; }
.about__body .btn { margin-top: 16px; }

/* =========================================================================
   Join CTA band
   ========================================================================= */
.join { background: var(--accent); color: #1b1206; padding: 78px 0; }
.join__inner { text-align: center; max-width: 680px; margin: 0 auto; }
.join__title { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.9rem, 4vw, 2.8rem); }
.join__text { font-size: 1.15rem; margin: 16px 0 30px; color: #36260f; }
.join .btn--light { border: 1px solid rgba(0, 0, 0, 0.08); }

/* =========================================================================
   Questions block
   ========================================================================= */
.questions {
    background: var(--panel); border: 1px solid var(--line); border-radius: 22px;
    padding: 42px 46px; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
}
.questions__title { font-family: var(--font-head); font-weight: 700; font-size: 1.6rem; }
.questions__text { color: var(--muted); margin-top: 8px; max-width: 520px; }

/* =========================================================================
   Footer
   ========================================================================= */
.site-footer { background: #08080a; border-top: 1px solid var(--line); padding-top: 64px; }
.site-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 52px; }
.site-footer__brand .brand__logo { height: 46px; margin-bottom: 18px; }
.site-footer__tagline { color: var(--muted); max-width: 280px; line-height: 1.6; margin-bottom: 22px; }
.socials { display: flex; gap: 12px; }
.socials__link {
    width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line);
    display: flex; align-items: center; justify-content: center; transition: border-color .2s, background .2s;
}
.socials__link img { filter: brightness(0) invert(1); opacity: 0.85; }
.socials__link:hover { border-color: var(--accent); background: rgba(196, 153, 119, 0.12); }
.site-footer__title { font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; margin-bottom: 18px; color: #fff; }
.site-footer__col ul { list-style: none; display: grid; gap: 11px; }
.site-footer__col a { color: var(--muted); font-size: 0.96rem; transition: color .2s; }
.site-footer__col a:hover { color: #fff; }
.site-footer__contacts li { color: var(--muted); font-size: 0.96rem; margin-bottom: 11px; }
.site-footer__contacts a:hover { color: #fff; }
.site-footer__bottom { border-top: 1px solid var(--line); padding: 22px 0; color: var(--muted); font-size: 0.88rem; text-align: center; }

/* =========================================================================
   Inner pages — header band, beliefs, values, deeper, discover
   ========================================================================= */
.page-header {
    position: relative; text-align: center; background: var(--bg-alt);
    padding: calc(var(--header-h) + 64px) 0 56px;
}
.page-header--image { background-size: cover; background-position: center; }
.page-header__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,8,11,0.7), rgba(8,8,11,0.92)); }
.page-header__inner { position: relative; max-width: 760px; margin: 0 auto; }
.page-header__eyebrow { text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.8rem; color: var(--accent); font-weight: 600; font-family: var(--font-head); margin-bottom: 14px; }
.page-header__title { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.05; letter-spacing: -0.01em; }
.page-header__lead { color: var(--muted); font-size: 1.12rem; margin-top: 18px; line-height: 1.6; }

.container--narrow { max-width: 780px; }
.prose { color: rgba(255, 255, 255, 0.82); line-height: 1.85; font-size: 1.08rem; }
.prose + .prose { margin-top: 20px; }

/* checklist (project "what we offer") */
.checklist { max-width: 640px; margin: 0 auto; display: grid; gap: 14px; list-style: none; }
.checklist li {
    display: flex; gap: 12px; align-items: flex-start; font-size: 1.06rem; color: #fff;
    padding: 16px 20px; border: 1px solid var(--line); border-radius: 12px; background: var(--panel);
}
.checklist__check { color: var(--accent); font-weight: 700; flex-shrink: 0; }

/* beliefs — native <details> accordion */
.beliefs { display: grid; gap: 14px; max-width: 880px; margin: 0 auto; }
.belief { background: var(--panel); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.belief__summary {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 22px 26px; cursor: pointer; list-style: none;
    font-family: var(--font-head); font-weight: 600; font-size: 1.18rem;
}
.belief__summary::-webkit-details-marker { display: none; }
.belief__icon { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.belief__icon::before, .belief__icon::after { content: ''; position: absolute; background: var(--accent); border-radius: 2px; transition: transform .2s, opacity .2s; }
.belief__icon::before { top: 8px; left: 0; width: 18px; height: 2px; }
.belief__icon::after { left: 8px; top: 0; width: 2px; height: 18px; }
.belief[open] .belief__icon::after { transform: rotate(90deg); opacity: 0; }
.belief__text { padding: 0 26px 24px; color: var(--muted); line-height: 1.7; }

/* values cards */
.value-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value-card { background: var(--panel); border: 1px solid var(--line); border-radius: 16px; padding: 28px 24px; }
.value-card__title { font-family: var(--font-head); font-weight: 600; font-size: 1.2rem; margin-bottom: 10px; }
.value-card__text { color: var(--muted); line-height: 1.6; font-size: 0.98rem; }

/* "go deeper" cards */
.deeper-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 880px; margin: 0 auto; }
.deeper-card { border: 1px solid var(--line); border-radius: 18px; padding: 34px; text-align: center; }
.deeper-card__title { font-family: var(--font-head); font-weight: 700; font-size: 1.4rem; margin-bottom: 12px; }
.deeper-card__text { color: var(--muted); line-height: 1.6; margin-bottom: 22px; }

/* chips */
.chips { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.chip {
    display: inline-flex; align-items: center; padding: 11px 20px; border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.85); font-family: var(--font-head); font-weight: 500;
    font-size: 0.95rem; transition: background .2s, color .2s, border-color .2s;
}
.chip:hover { background: var(--accent); border-color: var(--accent); color: #1b1206; }

/* discover-more cross links */
.discover { background: var(--panel); border: 1px solid var(--line); border-radius: 18px; padding: 30px 34px; position: relative; }
.discover__bar { position: absolute; left: 0; top: 24px; bottom: 24px; width: 3px; background: var(--accent); border-radius: 2px; }
.discover__title { font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; margin: 0 0 18px 16px; }
.discover__links { display: flex; flex-wrap: wrap; gap: 12px; margin-left: 16px; }
.discover__links a {
    padding: 9px 18px; border-radius: 999px; border: 1px solid rgba(255, 255, 255, 0.2);
    font-family: var(--font-head); font-weight: 500; font-size: 0.92rem; color: var(--text);
    transition: border-color .2s, background .2s;
}
.discover__links a:hover { border-color: var(--accent); background: rgba(196, 153, 119, 0.12); }

/* =========================================================================
   Responsive — tablet / mobile navigation
   ========================================================================= */
@media (max-width: 991px) {
    .nav-toggle { display: inline-flex; }

    .nav {
        position: fixed; top: 0; right: 0; bottom: 0;
        width: min(360px, 86vw); height: 100vh;
        background: var(--bg-alt); border-left: 1px solid var(--line);
        transform: translateX(105%); transition: transform .3s ease;
        flex-direction: column; justify-content: flex-start;
        padding: calc(var(--header-h) + 12px) 22px 40px; overflow-y: auto; z-index: 95;
    }
    body.nav-open .nav { transform: translateX(0); }
    body.nav-open { overflow: hidden; }
    body.nav-open::before {
        content: ''; position: fixed; inset: 0; background: rgba(0, 0, 0, 0.55); z-index: 90;
    }

    .nav__list { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
    .nav__item { width: 100%; }
    .nav__link {
        width: 100%; justify-content: space-between; font-size: 1.05rem;
        padding: 15px 6px; border: none; border-bottom: 1px solid var(--line);
        background: transparent; border-radius: 0;
    }
    .nav__item.is-cta .nav__link { background: transparent; color: var(--accent); }

    .nav__dropdown {
        position: static; transform: none; opacity: 1; visibility: visible;
        box-shadow: none; border: none; background: transparent; padding: 4px 0 10px 10px;
        min-width: 0; display: none;
    }
    .nav__item.is-open > .nav__dropdown { display: block; }
    .nav__item.is-open > .nav__link .nav__caret { transform: rotate(180deg); }
    .nav__dropdown--wide .nav__sublist { grid-template-columns: 1fr; }
    .nav__sublink { padding: 10px 8px; }

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

@media (max-width: 860px) {
    .pcards { grid-template-columns: 1fr 1fr; }
    .give-cards { grid-template-columns: repeat(2, 1fr); }
    .value-cards { grid-template-columns: repeat(2, 1fr); }
    .deeper-cards { grid-template-columns: 1fr; }
    .about { grid-template-columns: 1fr; gap: 32px; }
    .about__media { order: -1; }
    .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 34px; }
    .site-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
    .container { padding: 0 18px; }
    .pcards { grid-template-columns: 1fr; }
    .give-cards { grid-template-columns: 1fr; }
    .value-cards { grid-template-columns: 1fr; }
    .help-card { padding: 28px 24px; }
    .section { padding: 64px 0; }
    .hero { padding-bottom: 72px; min-height: 86vh; }
    .hero__inner { padding-left: 22px; }
    .questions { padding: 30px 26px; }
    .site-footer__grid { grid-template-columns: 1fr; }
    .btn { width: 100%; justify-content: center; }
    .hero__actions { width: 100%; }
}
