/* ============================================================
   1894 Holdings Inc — Design System
   Palette: Navy / White / Soft Gray / Gold accent
   Type: Inter (modern sans-serif)
   ============================================================ */

:root {
  /* Brand colors */
  --navy-900: #07182E;
  --navy-800: #0B2545;
  --navy-700: #13315C;
  --navy-600: #1C4173;
  --gold-500: #C8A24B;
  --gold-400: #D9BC72;
  --gold-100: #F5ECD6;

  --gray-50:  #F7F9FB;
  --gray-100: #F0F3F7;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;

  --white: #FFFFFF;

  /* Semantic */
  --bg: var(--white);
  --bg-alt: var(--gray-50);
  --text: #1B2A41;
  --text-soft: var(--gray-600);
  --heading: var(--navy-800);
  --accent: var(--gold-500);
  --border: var(--gray-200);

  /* Layout */
  --maxw: 1180px;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(11,37,69,.06), 0 2px 8px rgba(11,37,69,.05);
  --shadow-md: 0 8px 30px rgba(11,37,69,.10);
  --shadow-lg: 0 20px 50px rgba(11,37,69,.16);
  --ease: cubic-bezier(.2,.7,.2,1);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--navy-700); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--gold-500); }
ul { padding-left: 1.1rem; }

h1, h2, h3, h4 { color: var(--heading); line-height: 1.18; font-weight: 700; letter-spacing: -.01em; }
h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p { color: var(--text-soft); }

/* ---------- Accessibility ---------- */
:focus-visible { outline: 3px solid var(--gold-500); outline-offset: 2px; border-radius: 4px; }
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--navy-800); color: #fff; padding: .8rem 1.2rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(56px, 8vw, 104px) 0; }
.section--alt { background: var(--bg-alt); }
.section--navy { background: var(--navy-800); }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }
.section--navy p { color: #C7D3E3; }

.eyebrow {
  display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold-500); margin-bottom: 14px;
}
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.lead { font-size: 1.15rem; color: var(--text-soft); }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-weight: 600; font-size: .98rem; padding: 14px 26px; border-radius: 999px;
  border: 1.5px solid transparent; cursor: pointer; transition: all .22s var(--ease);
  white-space: nowrap;
}
.btn--primary { background: var(--gold-500); color: var(--navy-900); }
.btn--primary:hover { background: var(--gold-400); color: var(--navy-900); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--navy { background: var(--navy-800); color: #fff; }
.btn--navy:hover { background: var(--navy-700); color:#fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--navy-800); border-color: var(--gray-300); }
.btn--ghost:hover { border-color: var(--navy-800); color: var(--navy-800); background: var(--gray-50); }
.btn--light { background: #fff; color: var(--navy-800); }
.btn--light:hover { background: var(--gold-100); color: var(--navy-900); transform: translateY(-2px); }
.btn--outline-light { background: transparent; color:#fff; border-color: rgba(255,255,255,.45); }
.btn--outline-light:hover { border-color:#fff; background: rgba(255,255,255,.08); color:#fff; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92); backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.nav__logo img, .nav__logo svg { height: 42px; width: auto; display: block; }
.nav__links { display: flex; align-items: center; gap: 26px; list-style: none; padding: 0; margin: 0; }
.nav__links a { font-weight: 500; font-size: .95rem; color: var(--navy-700); white-space: nowrap; }
.nav__links a.active { color: var(--gold-500); }
.nav__links a:hover { color: var(--gold-500); }
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--navy-800); margin: 5px 0; transition: .25s var(--ease); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(200,162,75,.18), transparent 60%),
    linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
  color: #fff;
  padding: clamp(70px, 11vw, 128px) 0 clamp(60px, 9vw, 110px);
}
.hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.hero h1 { color: #fff; max-width: 16ch; }
.hero__sub { color: #C7D3E3; font-size: 1.18rem; margin: 22px 0 32px; max-width: 56ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.badge {
  display: inline-flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 600;
  color: #DCE5F0; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  padding: 8px 14px; border-radius: 999px;
}
.badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-500); }

.hero__card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius); padding: 30px; backdrop-filter: blur(6px);
}
.hero__card h3 { color: #fff; font-size: 1.05rem; margin-bottom: 18px; }
.hero__stat { display: flex; align-items: baseline; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.hero__stat:last-child { border-bottom: 0; }
.hero__stat b { color: var(--gold-400); font-size: 1.7rem; font-weight: 800; }
.hero__stat span { color: #C7D3E3; font-size: .92rem; }
/* Hero photo */
.hero__media { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4 / 5; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__media figcaption {
  position: absolute; left: 16px; right: 16px; bottom: 16px; margin: 0;
  background: rgba(11,37,69,.78); color: #fff; padding: 12px 16px; border-radius: 12px;
  font-size: .9rem; line-height: 1.4; border: 1px solid rgba(255,255,255,.14);
}
.hero__media figcaption strong { color: var(--gold-400); }
/* Full-width feature image band */
.feature-img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: var(--radius); }
.info-table { width: 100%; border-collapse: collapse; margin-top: 8px; }
.info-table th, .info-table td { text-align: left; padding: 12px 0; border-bottom: 1px solid var(--line, #e6eaf0); font-size: .98rem; vertical-align: top; }
.info-table th { color: var(--navy-500, #5a6b82); font-weight: 600; width: 42%; }
.info-table td { color: var(--navy-900); font-weight: 600; }

/* ---------- Cards ---------- */
.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card__icon {
  width: 50px; height: 50px; border-radius: 12px; display: grid; place-items: center;
  background: var(--navy-800); color: var(--gold-400); margin-bottom: 18px; font-size: 1.4rem;
}
.card h3 { margin-bottom: 10px; }
.card p { font-size: .98rem; }

/* ---------- Stat / metric cards ---------- */
.stat {
  text-align: center; padding: 32px 20px; border-radius: var(--radius);
  background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.stat__num { font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 800; color: var(--navy-800); line-height: 1; letter-spacing: -.02em; }
.stat__num .sym { color: var(--gold-500); }
.stat__label { margin-top: 10px; font-size: .95rem; color: var(--text-soft); font-weight: 500; }
.section--navy .stat { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.14); }
.section--navy .stat__num { color: #fff; }
.section--navy .stat__label { color: #C7D3E3; }

/* ---------- Project cards ---------- */
.project {
  display: grid; grid-template-columns: 1fr; background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.project:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.project__media {
  min-height: 190px; background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
  position: relative; display: grid; place-items: center; color: rgba(255,255,255,.9);
}
.project__media .tag {
  position: absolute; top: 16px; left: 16px; z-index: 2; background: var(--gold-500); color: var(--navy-900);
  font-size: .74rem; font-weight: 700; padding: 5px 12px; border-radius: 999px; letter-spacing: .03em;
}
.project__media .glyph { font-size: 2.4rem; opacity: .85; }
.project__img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1;
  transition: transform .5s var(--ease);
}
.project:hover .project__img { transform: scale(1.05); }
.project__media::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(7,24,46,.18) 0%, rgba(7,24,46,0) 38%, rgba(7,24,46,.34) 100%);
}
.project__body { padding: 26px; }
.project__loc { font-size: .82rem; font-weight: 600; color: var(--gold-500); letter-spacing: .05em; text-transform: uppercase; }
.project__body h3 { margin: 8px 0 12px; }
.project__meta { list-style: none; padding: 0; margin: 16px 0 0; border-top: 1px solid var(--border); }
.project__meta li { display: flex; gap: 12px; padding: 10px 0; font-size: .92rem; border-bottom: 1px solid var(--border); }
.project__meta li:last-child { border-bottom: 0; }
.project__meta strong { color: var(--navy-800); min-width: 120px; flex-shrink: 0; }

/* ---------- Feature / split rows ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split__visual {
  border-radius: var(--radius); min-height: 360px; box-shadow: var(--shadow-md);
  background: linear-gradient(150deg, var(--navy-800), var(--navy-600));
  display: grid; place-items: center; color: rgba(255,255,255,.92); position: relative; overflow: hidden;
}
.split__visual::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 34px 34px;
}
.split__visual .vlabel { position: relative; z-index: 2; text-align: center; padding: 20px; }
.split__visual .vlabel .big { font-size: 2.6rem; font-weight: 800; color: var(--gold-400); }
.split__visual img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
.split__visual.has-photo::after {
  z-index: 1;
  background-image: linear-gradient(160deg, rgba(7,24,46,.84) 0%, rgba(7,24,46,.46) 50%, rgba(11,37,69,.80) 100%);
  background-size: auto;
}

/* ---------- Steps / how NMTC works ---------- */
.steps { counter-reset: step; display: grid; gap: 20px; }
.step { display: grid; grid-template-columns: 56px 1fr; gap: 20px; align-items: start;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); }
.step__num {
  counter-increment: step; width: 48px; height: 48px; border-radius: 12px; background: var(--gold-100);
  color: var(--navy-800); font-weight: 800; display: grid; place-items: center; font-size: 1.2rem;
}
.step__num::before { content: counter(step); }
.step h3 { font-size: 1.1rem; margin-bottom: 6px; }

/* ---------- Timeline ---------- */
.timeline { position: relative; margin-left: 8px; padding-left: 34px; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 6px; bottom: 6px; width: 2px; background: var(--gray-200); }
.timeline__item { position: relative; padding-bottom: 34px; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before {
  content: ""; position: absolute; left: -34px; top: 4px; width: 16px; height: 16px;
  border-radius: 50%; background: #fff; border: 3px solid var(--gold-500);
}
.timeline__year { font-weight: 800; color: var(--gold-500); font-size: .95rem; letter-spacing: .04em; }
.timeline__item h3 { font-size: 1.15rem; margin: 4px 0 6px; }

/* ---------- Partner logos / list ---------- */
.partner {
  display: flex; gap: 18px; align-items: flex-start; background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); height: 100%;
}
.partner__mark {
  width: 56px; height: 56px; border-radius: 12px; flex-shrink: 0; display: grid; place-items: center;
  font-weight: 800; color: #fff; background: var(--navy-800); font-size: .9rem; letter-spacing: .03em;
}
.partner__mark.gold { background: var(--gold-500); color: var(--navy-900); }
.partner h3 { font-size: 1.1rem; margin-bottom: 6px; }
.partner p { font-size: .94rem; }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.pill { font-size: .82rem; font-weight: 600; color: var(--navy-700); background: var(--gray-100); border: 1px solid var(--border); padding: 6px 14px; border-radius: 999px; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(800px 300px at 90% 0%, rgba(200,162,75,.22), transparent 60%),
    linear-gradient(140deg, var(--navy-900), var(--navy-700));
  color: #fff; border-radius: 22px; padding: clamp(40px, 6vw, 64px); text-align: center;
}
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band p { color: #C7D3E3; max-width: 60ch; margin: 0 auto 28px; }
.cta-band .hero__cta { justify-content: center; }

/* ---------- Forms ---------- */
.form { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; display: flex; flex-direction: column; }
.field label { font-weight: 600; font-size: .9rem; color: var(--navy-800); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 1rem; color: var(--text); padding: 13px 15px;
  border: 1.5px solid var(--gray-300); border-radius: var(--radius-sm); background: #fff; transition: border .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold-500); box-shadow: 0 0 0 3px rgba(200,162,75,.18);
}
.field textarea { resize: vertical; min-height: 130px; }
.form__note { font-size: .85rem; color: var(--gray-500); margin-top: 4px; }
.form__success { display:none; background: var(--gold-100); border:1px solid var(--gold-400); color: var(--navy-800); padding:14px 18px; border-radius:var(--radius-sm); margin-bottom: 18px; font-weight:600; }

/* ---------- Newsletter ---------- */
.newsletter { display: flex; gap: 12px; max-width: 480px; }
.newsletter input { flex: 1; padding: 14px 16px; border-radius: 999px; border: 1.5px solid var(--gray-300); font-size: 1rem; font-family: inherit; }
.newsletter input:focus { outline: none; border-color: var(--gold-500); box-shadow: 0 0 0 3px rgba(200,162,75,.18); }

/* ---------- Contact info blocks ---------- */
.info-block { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--border); }
.info-block:last-child { border-bottom: 0; }
.info-block .ic { width: 44px; height: 44px; border-radius: 11px; background: var(--gold-100); color: var(--navy-800); display: grid; place-items: center; flex-shrink: 0; font-size: 1.1rem; }
.info-block h4 { color: var(--navy-800); font-size: 1rem; margin-bottom: 2px; }
.info-block p, .info-block a { font-size: .96rem; color: var(--text-soft); }

/* ---------- Transparency / download ---------- */
.doc {
  display: flex; align-items: center; gap: 18px; background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px 24px; box-shadow: var(--shadow-sm); transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.doc:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.doc__ic { width: 48px; height: 48px; border-radius: 11px; background: var(--navy-800); color: var(--gold-400); display: grid; place-items: center; font-weight: 700; flex-shrink: 0; }
.doc__body { flex: 1; }
.doc__body h4 { color: var(--navy-800); font-size: 1.02rem; }
.doc__body span { font-size: .85rem; color: var(--gray-500); }

/* ---------- Breadcrumb / page hero ---------- */
.page-hero {
  background: linear-gradient(150deg, var(--navy-900), var(--navy-700));
  color: #fff; padding: clamp(56px, 8vw, 92px) 0 clamp(48px, 6vw, 72px);
}
.page-hero h1 { color: #fff; max-width: 20ch; }
.page-hero p { color: #C7D3E3; font-size: 1.15rem; max-width: 60ch; margin-top: 16px; }
.crumb { font-size: .85rem; color: var(--gold-400); font-weight: 600; letter-spacing: .04em; margin-bottom: 18px; }
.crumb a { color: #C7D3E3; }
.crumb a:hover { color: #fff; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-900); color: #C7D3E3; padding: 64px 0 28px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer h4 { color: #fff; font-size: .95rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 16px; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 10px; }
.footer a { color: #C7D3E3; font-size: .95rem; }
.footer a:hover { color: var(--gold-400); }
.footer__about p { font-size: .95rem; color: #9FB0C5; margin: 16px 0; max-width: 36ch; }
.footer__logo { height: 40px; width: auto; display: block; }
.footer__legal {
  margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-wrap: wrap; gap: 12px 22px; justify-content: flex-start; align-items: center;
  font-size: .85rem; color: #8597AE;
}
.footer__legal-text { display: flex; flex-direction: row; flex-wrap: wrap; align-items: center; }
.footer__legal-text > span + span::before { content: "·"; margin: 0 10px; color: rgba(255,255,255,.4); }
.footer__legal .ein { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); padding: 6px 14px; border-radius: 999px; white-space: nowrap; }

/* ---------- Policy / legal pages ---------- */
.policy-list { list-style: none; display: grid; gap: 14px; margin-top: 10px; }
.policy-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--navy-700); }
.policy-list li svg { flex-shrink: 0; margin-top: 3px; }
.policy-list li strong { color: var(--navy-900); }
.policy-note { font-size: .9rem; color: var(--navy-500, #5a6b82); }

/* ---------- Animations ---------- */
/* Fail-safe: content is fully visible by default. It only starts hidden
   when JS is active (html.js) and reveals on scroll — so if JS is blocked,
   slow, or unsupported, nothing is ever invisible. */
.reveal { transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal { opacity: 0; transform: translateY(24px); }
.js .reveal.in, .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
}
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 760px) {
  .nav__links, .nav__cta .btn--ghost { display: none; }
  .nav__toggle { display: block; }
  .nav.open .nav__links {
    display: flex; flex-direction: column; gap: 18px; position: absolute; top: 76px; left: 0; right: 0;
    background: #fff; padding: 24px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md);
  }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .newsletter { flex-direction: column; }
  .newsletter .btn { justify-content: center; }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
  body { font-size: 16px; }
}
