:root {
  --navy: #123a63;
  --navy-2: #1c568f;
  --navy-soft: #33689f;
  --red: #e30613;
  --red-2: #ff3a48;
  --red-dark: #b8040f;
  --orange: var(--red);
  --orange-2: var(--red-2);
  --orange-dark: var(--red-dark);
  --amber: #9cc2ea;
  --cream: #f6f7f9;
  --cream-2: #eceff3;
  --ink: #2b333d;
  --muted: #717b87;
  --line: #e3e7ec;
  --white: #ffffff;

  --grad-warm: linear-gradient(135deg, #e30613 0%, #ff3a48 100%);
  --grad-navy: linear-gradient(135deg, #0f3157 0%, #1c568f 100%);

  --shadow-sm: 0 2px 10px rgba(24, 39, 61, 0.05);
  --shadow-md: 0 12px 34px rgba(24, 39, 61, 0.09);
  --shadow-lg: 0 24px 60px rgba(24, 39, 61, 0.12);

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 26px;
  --container: 1180px;
  --transition: .28s cubic-bezier(.4, 0, .2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Poppins", "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
  font-weight: 300;
  color: var(--ink);
  background: var(--white);
  line-height: 1.75;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { line-height: 1.22; color: var(--navy); font-weight: 600; letter-spacing: -.01em; }
strong, b { font-weight: 600; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 22px; }

.section { padding: 92px 0; }
.section--tight { padding: 64px 0; }
.text-center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--red-dark);
  background: rgba(227, 6, 19, .08);
  padding: 7px 16px; border-radius: 999px; margin-bottom: 18px;
}
.section-title { font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 600; margin-bottom: 14px; }
.section-lead { color: var(--muted); font-size: 1.05rem; font-weight: 300; max-width: 640px; }
.section-head.text-center .section-lead { margin: 0 auto; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 500; font-size: .98rem; padding: 13px 26px;
  border-radius: 999px; border: 1.5px solid transparent; cursor: pointer;
  transition: var(--transition); white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--grad-warm); color: #fff; box-shadow: 0 10px 24px rgba(227, 6, 19, .26); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(227, 6, 19, .34); }
.btn--ghost { background: rgba(255, 255, 255, .12); color: #fff; border-color: rgba(255, 255, 255, .5); }
.btn--ghost:hover { background: #fff; color: var(--navy); border-color: #fff; }
.btn--outline { background: transparent; color: var(--navy); border-color: var(--line); }
.btn--outline:hover { border-color: var(--red); color: var(--red-dark); transform: translateY(-3px); }
.btn--lg { padding: 15px 34px; font-size: 1.04rem; }
.btn--block { width: 100%; }
.btn--wa { background: linear-gradient(135deg, #25d366 0%, #128c7e 100%); color: #fff; box-shadow: 0 10px 24px rgba(37, 211, 102, .26); }
.btn--wa:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(37, 211, 102, .34); }
.btn--wa svg { width: 20px; height: 20px; }

.topbar { background: var(--navy); color: rgba(255, 255, 255, .8); font-size: .86rem; font-weight: 300; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 14px; min-height: 42px; flex-wrap: wrap; }
.topbar a { color: rgba(255, 255, 255, .8); transition: color .2s; }
.topbar a:hover { color: var(--amber); }
.topbar-info { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar-info span { display: inline-flex; align-items: center; gap: 7px; }
.topbar-social { display: flex; gap: 14px; align-items: center; }
.topbar-social svg { width: 16px; height: 16px; }

.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s, background .3s;
}
.header.scrolled { box-shadow: var(--shadow-sm); background: rgba(255, 255, 255, .95); }
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 78px; }

.brand { display: flex; align-items: center; gap: 13px; }
.brand__logo { width: 50px; height: 50px; flex: none; object-fit: contain; }
.brand__text { display: flex; flex-direction: column; line-height: 1.14; }
.brand__text b { font-size: 1.02rem; color: var(--navy); font-weight: 600; letter-spacing: -.01em; }
.brand__text span { font-size: .72rem; color: var(--muted); font-weight: 300; letter-spacing: .02em; }

.nav-menu { display: flex; align-items: center; gap: 6px; }
.nav-menu a {
  font-weight: 400; font-size: .96rem; color: var(--navy); padding: 8px 6px; margin: 0 8px;
  transition: color .25s; position: relative;
}
.nav-menu a::after {
  content: ""; position: absolute; left: 6px; right: 6px; bottom: 0; height: 2px;
  background: var(--grad-warm); border-radius: 2px;
  transform: scaleX(0); transform-origin: center; transition: transform .3s cubic-bezier(.4, 0, .2, 1);
}
.nav-menu a:hover, .nav-menu a.active { color: var(--red-dark); }
.nav-menu a:hover::after, .nav-menu a.active::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 12px; }

.nav-toggle { display: none; width: 46px; height: 46px; border: none; background: transparent; cursor: pointer; border-radius: 10px; position: relative; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 12px; width: 22px; height: 2.2px;
  background: var(--navy); border-radius: 2px; transition: var(--transition);
}
.nav-toggle span { top: 22px; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.open span::after { top: 0; transform: rotate(-45deg); }

.hero { position: relative; background: var(--grad-navy); color: #fff; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(720px 420px at 88% -8%, rgba(227, 6, 19, .26), transparent 60%),
    radial-gradient(620px 420px at 5% 110%, rgba(156, 194, 234, .16), transparent 60%);
}
.hero .container { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: center; padding-top: 78px; padding-bottom: 88px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 9px; font-size: .8rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase; color: var(--amber);
  background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .16);
  padding: 8px 16px; border-radius: 999px; margin-bottom: 22px;
}
.hero h1 { color: #fff; font-size: clamp(2.1rem, 4.6vw, 3.4rem); font-weight: 600; line-height: 1.1; margin-bottom: 20px; }
.hero h1 .accent { color: var(--amber); font-weight: 600; }
.hero p { color: rgba(255, 255, 255, .82); font-size: 1.1rem; font-weight: 300; max-width: 520px; margin-bottom: 32px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__art { position: relative; }
.hero__art svg, .hero__art img { width: 100%; height: auto; filter: drop-shadow(0 30px 50px rgba(0, 0, 0, .32)); }
.hero-wave { display: block; width: 100%; height: auto; margin-top: -1px; color: var(--white); }

.stats { margin-top: -46px; position: relative; z-index: 5; }
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  background: #fff; border-radius: var(--radius-lg); padding: 34px 26px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--line);
}
.stat { text-align: center; padding: 8px; }
.stat__icon { width: 54px; height: 54px; margin: 0 auto 12px; border-radius: 15px; display: grid; place-items: center; background: rgba(227, 6, 19, .08); color: var(--red-dark); }
.stat__icon svg { width: 26px; height: 26px; }
.stat__num { font-size: 2.1rem; font-weight: 600; color: var(--navy); line-height: 1; }
.stat__num .plus { color: var(--red); }
.stat__label { font-size: .92rem; font-weight: 300; color: var(--muted); margin-top: 6px; }

.grid { display: grid; gap: 26px; }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 26px; transition: var(--transition); position: relative; overflow: hidden; }
.card::after { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%; background: var(--grad-warm); transform: scaleX(0); transform-origin: left; transition: transform .35s; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card:hover::after { transform: scaleX(1); }
.card__icon { width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center; background: linear-gradient(135deg, rgba(227, 6, 19, .1), rgba(156, 194, 234, .18)); color: var(--red-dark); margin-bottom: 20px; }
.card__icon svg { width: 29px; height: 29px; }
.card h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .97rem; font-weight: 300; }
.grid--4 .card__icon { font-size: 1.5rem; font-weight: 600; background: var(--grad-warm); color: #fff; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split__art { position: relative; }
.split__art svg, .split__art img { width: 100%; height: auto; border-radius: var(--radius-lg); }
.value-list { display: grid; gap: 18px; margin-top: 26px; }
.value-item { display: flex; gap: 16px; align-items: flex-start; }
.value-item__mark { flex: none; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--grad-warm); color: #fff; }
.value-item__mark svg { width: 22px; height: 22px; }
.value-item h4 { font-size: 1.06rem; font-weight: 600; margin-bottom: 3px; }
.value-item p { color: var(--muted); font-size: .95rem; font-weight: 300; margin: 0; }

.cta { background: var(--grad-warm); color: #fff; border-radius: var(--radius-lg); padding: 54px 48px; text-align: center; position: relative; overflow: hidden; box-shadow: var(--shadow-lg); }
.cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(500px 300px at 100% 0, rgba(255, 255, 255, .2), transparent 60%); }
.cta > * { position: relative; }
.cta h2 { color: #fff; font-size: clamp(1.6rem, 3.4vw, 2.3rem); font-weight: 600; margin-bottom: 12px; }
.cta p { color: rgba(255, 255, 255, .94); font-weight: 300; max-width: 560px; margin: 0 auto 26px; font-size: 1.06rem; }
.cta .btn--ghost { border-color: rgba(255, 255, 255, .7); }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.page-hero { background: var(--grad-navy); color: #fff; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 300px at 90% 0, rgba(227, 6, 19, .24), transparent 60%); }
.page-hero .container { position: relative; padding: 64px 22px 72px; text-align: center; }
.page-hero h1 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.7rem); font-weight: 600; margin-bottom: 12px; }
.breadcrumb { display: inline-flex; gap: 8px; align-items: center; color: rgba(255, 255, 255, .72); font-size: .92rem; font-weight: 300; }
.breadcrumb a:hover { color: var(--amber); }

.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 40px; align-items: start; }
.info-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }
.info-row { display: flex; gap: 15px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--line); }
.info-row:last-child { border-bottom: none; }
.info-row__icon { flex: none; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: rgba(227, 6, 19, .08); color: var(--red-dark); }
.info-row__icon svg { width: 22px; height: 22px; }
.info-row h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: 3px; font-weight: 600; }
.info-row p, .info-row a { color: var(--ink); font-weight: 400; font-size: 1.01rem; }
.info-row a:hover { color: var(--red-dark); }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 500; font-size: .92rem; margin-bottom: 7px; color: var(--navy); }
.field input, .field textarea { width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); font: inherit; font-weight: 300; font-size: .98rem; background: var(--cream); transition: var(--transition); color: var(--ink); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--red); background: #fff; box-shadow: 0 0 0 4px rgba(227, 6, 19, .1); }
.field textarea { resize: vertical; min-height: 130px; }
.form-success { display: none; margin-top: 16px; padding: 14px 18px; border-radius: var(--radius-sm); background: rgba(37, 150, 90, .1); color: #1c6b3f; font-weight: 500; font-size: .95rem; }
.form-success.show { display: block; }

.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); margin-top: 40px; }
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }
.map-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 20px; }
.map-actions .btn svg { width: 18px; height: 18px; }

.donate-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); height: 100%; }
.donate-card__bank { display: flex; align-items: center; gap: 13px; margin-bottom: 8px; padding-bottom: 18px; border-bottom: 1px solid var(--line); justify-content: flex-start; }
.donate-card__bank img, .donate-card__bank svg { height: 40px; width: auto; flex: none; }
.donate-card__bank b { font-size: 1.12rem; font-weight: 600; color: var(--navy); }
.donate-card__bank span.sub { display: block; font-size: .78rem; font-weight: 300; color: var(--muted); }

.copy-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 11px 13px; margin-top: 12px; }
.copy-row .cr-main { display: flex; align-items: center; gap: 9px; min-width: 0; }
.copy-row .cr-badge { font-size: .7rem; font-weight: 600; color: var(--red-dark); background: rgba(227, 6, 19, .09); padding: 3px 8px; border-radius: 6px; flex: none; }
.copy-row .cr-val { font-family: "Consolas", ui-monospace, monospace; font-size: .93rem; font-weight: 500; letter-spacing: .02em; color: var(--ink); overflow-wrap: anywhere; }
.copy-row.is-title .cr-val { font-family: inherit; font-weight: 500; font-size: .92rem; }
.copy-row button { flex: none; border: none; background: var(--grad-warm); color: #fff; font: inherit; font-weight: 500; font-size: .8rem; padding: 8px 13px; border-radius: 7px; cursor: pointer; transition: var(--transition); }
.copy-row button:hover { transform: translateY(-2px); }
.donate-meta { color: var(--muted); font-size: .9rem; font-weight: 300; margin-top: 14px; }

.donate-stack { display: grid; grid-template-columns: 1fr; gap: 22px; max-width: 780px; margin-left: auto; margin-right: auto; }
.bank-logo { height: 40px; width: auto; max-width: 80%; }

.iban-table { width: 100%; border-collapse: collapse; margin-top: 4px; }
.iban-table th { text-align: left; font-size: .72rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); font-weight: 600; padding: 9px 10px; border-bottom: 1px solid var(--line); }
.iban-table th:last-child { width: 1%; }
.iban-table td { padding: 11px 10px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.iban-table tr:last-child td { border-bottom: none; }
.iban-table .cur { font-weight: 600; color: var(--red-dark); white-space: nowrap; font-size: .95rem; }
.iban-table .ibancell { font-family: "Consolas", ui-monospace, monospace; font-size: 1rem; letter-spacing: .03em; color: var(--ink); white-space: nowrap; }
.iban-table td.act { text-align: right; white-space: nowrap; }
.iban-table button { border: none; background: var(--grad-warm); color: #fff; font: inherit; font-weight: 500; font-size: .8rem; padding: 8px 14px; border-radius: 7px; cursor: pointer; transition: var(--transition); }
.iban-table button:hover { transform: translateY(-2px); }

.footer { background: var(--navy); color: rgba(255, 255, 255, .72); padding: 66px 0 26px; font-weight: 300; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer h4 { color: #fff; font-size: 1.01rem; font-weight: 600; margin-bottom: 18px; }
.footer .brand__text b { color: #fff; }
.footer p { font-size: .94rem; margin-top: 16px; max-width: 280px; }
.footer-links { display: grid; gap: 11px; }
.footer-links a { color: rgba(255, 255, 255, .72); font-size: .95rem; transition: color .2s; }
.footer-links a:hover { color: var(--amber); padding-left: 4px; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: .94rem; }
.footer-contact svg { width: 18px; height: 18px; color: var(--red-2); flex: none; margin-top: 3px; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: rgba(255, 255, 255, .08); transition: var(--transition); }
.footer-social a:hover { background: var(--red); transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; color: #fff; }
.footer-sponsor { display: flex; align-items: center; justify-content: center; gap: 13px; flex-wrap: wrap; margin-top: 44px; padding-top: 26px; border-top: 1px solid rgba(255, 255, 255, .1); }
.footer-sponsor span { font-size: .88rem; font-weight: 300; color: rgba(255, 255, 255, .6); letter-spacing: .02em; }
.footer-sponsor a { display: inline-flex; align-items: center; }
.footer-sponsor img { height: 20px; width: auto; opacity: .9; transition: opacity .25s, transform .25s; }
.footer-sponsor a:hover img { opacity: 1; transform: translateY(-2px); }
.footer-bottom { margin-top: 24px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .1); display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: .87rem; color: rgba(255, 255, 255, .55); }

.fab-donate { position: fixed; right: 18px; bottom: 18px; z-index: 90; display: none; background: var(--grad-warm); color: #fff; font-weight: 500; padding: 13px 20px; border-radius: 999px; box-shadow: 0 12px 26px rgba(227, 6, 19, .38); align-items: center; gap: 8px; }
.fab-donate svg { width: 18px; height: 18px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .2, 1); }
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; padding-top: 54px; padding-bottom: 70px; }
  .hero__art { max-width: 440px; order: -1; margin: 0 auto; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .topbar-info { display: none; }
  .topbar .container { justify-content: center; }
  .nav { min-height: 64px; }
  .nav-menu {
    position: fixed; top: 64px; left: 0; right: 0; background: var(--white);
    flex-direction: column; align-items: stretch; gap: 2px; padding: 10px 22px 20px;
    border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
    opacity: 0; visibility: hidden; transform: translateY(-12px); z-index: 95;
    transition: opacity .28s ease, transform .28s ease, visibility .28s;
  }
  .nav-menu.open { opacity: 1; visibility: visible; transform: none; }
  .nav-menu a { padding: 14px 16px; font-size: 1.05rem; margin: 0; border-bottom: 1px solid var(--line); }
  .nav-menu a:last-of-type { border-bottom: none; }
  .nav-menu a::after { left: 0; right: auto; top: 50%; bottom: auto; width: 3px; height: 0; transform: translateY(-50%); border-radius: 0 3px 3px 0; transition: height .25s ease; }
  .nav-menu a:hover::after, .nav-menu a.active::after { height: 22px; transform: translateY(-50%); }
  .nav-toggle { display: block; }
  .nav-actions .btn { display: none; }
  .fab-donate { display: inline-flex; }
  .cta { padding: 42px 24px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .donate-card { padding: 20px 14px; }
}

@media (max-width: 560px) {
  .iban-table thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .iban-table, .iban-table tbody, .iban-table tr, .iban-table td { display: block; width: 100%; }
  .iban-table tr { background: var(--cream); border: 1px solid var(--line); border-radius: 10px; padding: 12px 13px; margin-bottom: 10px; }
  .iban-table tr:last-child { margin-bottom: 0; }
  .iban-table td { border: none; padding: 2px 0; }
  .iban-table .cur { font-size: .78rem; }
  .iban-table .ibancell { font-size: clamp(.7rem, 3.4vw, 1rem); white-space: nowrap; margin: 3px 0 5px; }
  .iban-table td.act { text-align: left; }
  .iban-table button { width: 100%; padding: 10px; }
  .copy-row.is-title { flex-direction: column; align-items: stretch; gap: 10px; }
  .copy-row.is-title .cr-main { flex-wrap: wrap; row-gap: 6px; }
  .copy-row.is-title button { width: 100%; padding: 10px; }
}

@media (max-width: 640px) {
  .footer { text-align: center; }
  .footer__grid { grid-template-columns: 1fr; gap: 0; }
  .footer__grid > div { border-top: 1px solid rgba(255, 255, 255, .1); padding: 4px 0; }
  .footer__grid > div:first-child { border-top: none; padding: 0 0 24px; }
  .footer .brand { justify-content: center; }
  .footer p { margin-left: auto; margin-right: auto; }
  .footer-social { justify-content: center; }
  .footer__grid > div > h4 { cursor: pointer; margin: 0; padding: 17px 30px 17px 4px; display: flex; align-items: center; justify-content: center; position: relative; user-select: none; }
  .footer__grid > div > h4::after { content: ""; position: absolute; right: 6px; top: 50%; width: 8px; height: 8px; border-right: 2px solid rgba(255, 255, 255, .55); border-bottom: 2px solid rgba(255, 255, 255, .55); transform: translateY(-70%) rotate(45deg); transition: transform .3s; }
  .footer__grid > div.open > h4::after { transform: translateY(-30%) rotate(-135deg); }
  .footer-links, .footer-contact { max-height: 0; overflow: hidden; opacity: 0; transition: max-height .35s ease, opacity .3s ease, padding .35s ease; }
  .footer__grid > div.open .footer-links, .footer__grid > div.open .footer-contact { max-height: 360px; opacity: 1; padding-bottom: 18px; }
  .footer-links { justify-items: center; }
  .footer-links a:hover { padding-left: 0; color: var(--amber); }
  .footer-contact { max-width: 280px; margin: 0 auto; text-align: left; }
  .footer-contact li { justify-content: flex-start; text-align: left; }
  .footer-sponsor { flex-direction: column; gap: 10px; }
  .footer-bottom { justify-content: center; text-align: center; }
}

@media (max-width: 460px) {
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .grid--4, .grid--3 { grid-template-columns: 1fr; }
  .brand__text b { font-size: .92rem; }
  .brand__text span { font-size: .66rem; }
}
