/* St. Methodius Theological Seminary — one page. Tokens first, then layout, then motion. */
:root {
  --navy: #183048;
  --navy-deep: #10233A;
  --navy-ink-2: rgba(255, 255, 255, .74);   /* secondary text on navy: tinted from the foreground */
  --ink: #14202E;
  --text: #3A4756;
  --paper: #FFFFFF;
  --tint: #EEF2F7;
  --tint-2: #DEE6F0;
  --gold: #C0A880;
  --gold-deep: #A88E62;
  --r-card: 24px;
  --r-pill: 999px;
  --shadow-card: 0 18px 40px -22px rgba(24, 48, 72, .35);
  --shadow-lift: 0 26px 48px -20px rgba(24, 48, 72, .45);
  --e-display: cubic-bezier(.16, 1, .3, 1);
  --e-body: cubic-bezier(.25, .46, .45, .94);
  --e-ui: cubic-bezier(.4, 0, .2, 1);
  --wrap: 1188px;
  --gutter: 24px;
  --font-display: "Alegreya", Georgia, "Times New Roman", serif;
  --font-body: "Alegreya Sans", "Segoe UI", Arial, sans-serif;
  --font-caps: "Alegreya SC", "Alegreya", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.6;
  font-feature-settings: "kern", "liga";
  text-rendering: optimizeLegibility;
}
::selection { background: var(--navy); color: #fff; }
.sec--navy ::selection, .foot ::selection, .hero__panel ::selection { background: var(--gold); color: var(--navy); }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 6px; }
img { display: block; max-width: 100%; height: auto; }
h1, h2, h3 { font-family: var(--font-display); margin: 0; font-weight: 800; letter-spacing: -.012em; text-wrap: balance; }
h2 { font-size: clamp(34px, 3.4vw, 46px); line-height: 1.04; }
h3 { font-size: 26px; line-height: 1.15; font-weight: 700; }
p { margin: 0; }
a { color: inherit; }
em { font-style: italic; }
.wrap { width: min(var(--wrap), 100% - 2 * var(--gutter)); margin-inline: auto; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--navy); color: #fff; padding: 10px 16px; border-radius: var(--r-pill); z-index: 100; }
.skip:focus { left: 16px; }

/* icons: one stroke, one weight */
.i { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex: none; }

/* ---------- grain on navy fields: light entropy, not a flat fill ---------- */
.grain {
  position: absolute; inset: 0; pointer-events: none; opacity: .09; mix-blend-mode: screen;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .9 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
}

/* ---------- pills, state chips, text links ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 10px;
  min-height: 52px; padding: 12px 26px; border-radius: var(--r-pill);
  font-weight: 700; font-size: 17px; line-height: 1.2; text-decoration: none;
  transition: background-color .22s var(--e-ui), color .22s var(--e-ui), box-shadow .3s var(--e-ui), translate .3s var(--e-ui);
}
.pill--navy { background: var(--navy); color: #fff; }
.pill--navy:hover { background: var(--navy-deep); translate: 0 -1px; box-shadow: 0 12px 24px -12px rgba(24, 48, 72, .6); }
.pill--white { background: #fff; color: var(--navy); }
.pill--white:hover { background: var(--tint); translate: 0 -1px; box-shadow: 0 12px 24px -12px rgba(0, 0, 0, .5); }
.state {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px; border-radius: var(--r-pill);
  font-size: 15px; font-weight: 700; line-height: 1.3;
  background: var(--tint-2); color: var(--navy);
}
.state--onnavy { background: rgba(255, 255, 255, .12); color: #fff; }
.state__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 0 rgba(192, 168, 128, .6); animation: pulse 2.4s var(--e-body) infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(192, 168, 128, .55); } 70% { box-shadow: 0 0 0 10px rgba(192, 168, 128, 0); } 100% { box-shadow: 0 0 0 0 rgba(192, 168, 128, 0); } }
.textlink { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; text-decoration: none; text-underline-offset: 6px; }
.textlink .i { transition: translate .3s var(--e-display); }
.textlink:hover { text-decoration: underline; }
.textlink:hover .i { translate: 4px 0; }
.textlink--onnavy { color: #fff; }

/* ---------- header ---------- */
.top { position: sticky; top: 0; z-index: 50; background: rgba(255, 255, 255, .92); backdrop-filter: saturate(1.4) blur(10px); -webkit-backdrop-filter: saturate(1.4) blur(10px); transition: box-shadow .35s var(--e-ui); }
.top.is-stuck { box-shadow: 0 10px 30px -18px rgba(24, 48, 72, .35); }
.top__progress { position: absolute; left: 0; right: 0; top: 0; height: 3px; background: transparent; }
.top__progress span { display: block; height: 100%; width: 100%; background: var(--navy); transform-origin: left; transform: scaleX(0); transition: transform .12s linear; }
.top__row { display: flex; align-items: center; gap: 28px; min-height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--navy); }
.brand__mark { width: 30px; height: auto; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--font-caps); font-weight: 700; font-size: 21px; letter-spacing: .02em; }
.brand__sub { font-family: var(--font-caps); font-size: 11.5px; letter-spacing: .18em; margin-top: 4px; opacity: .85; }
.brand--onnavy { color: #fff; }
.top__nav { display: flex; gap: 26px; margin-left: auto; }
.top__nav a { font-size: 16px; font-weight: 700; text-decoration: none; color: var(--text); position: relative; padding: 6px 0; }
.top__nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--navy); scale: 0 1; transform-origin: left; transition: scale .3s var(--e-display); }
.top__nav a:hover::after, .top__nav a.is-active::after { scale: 1 1; }
.top__nav a.is-active { color: var(--navy); }
.top__cta { min-height: 44px; padding: 8px 20px; font-size: 16px; }

/* ---------- hero ---------- */
.hero { position: relative; display: grid; grid-template-columns: minmax(0, 62fr) minmax(0, 38fr); align-items: stretch; min-height: 640px; margin-top: 8px; }
.hero__panel { position: relative; background: var(--navy); color: #fff; border-radius: 0 40px 40px 0; overflow: hidden; }
.hero__inner {
  position: relative; z-index: 1;
  padding: 88px 190px 96px calc((100vw - var(--wrap)) / 2);
  min-height: 100%;
  display: flex; flex-direction: column; justify-content: center; gap: 28px;
}
.hero__title { font-size: clamp(46px, 4.6vw, 66px); line-height: .94; letter-spacing: -.024em; }
.mask { display: block; clip-path: inset(-.2em -100vw 0 -100vw); }
.line { display: block; }
.hero__lead { font-size: 21px; line-height: 1.55; max-width: 27em; color: var(--navy-ink-2); }
.hero__actions { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; margin-top: 6px; }
.hero__art { position: relative; }
.hero__shield {
  position: absolute; top: 50%; left: -128px; translate: 0 -50%;
  width: 372px; filter: drop-shadow(0 34px 34px rgba(24, 48, 72, .38)) drop-shadow(0 6px 10px rgba(24, 48, 72, .18));
  will-change: transform;
}
.hero__shield img { width: 100%; height: auto; }

/* ---------- sections ---------- */
.sec { padding: 104px 0; }
.sec--tint { background: var(--tint); }
.sec--navy { position: relative; background: var(--navy); color: #fff; overflow: hidden; }
.sec--navy .wrap { position: relative; z-index: 1; }
.sec__head { max-width: 760px; margin-bottom: 44px; }
.sec__lead { color: var(--text); font-size: 21px; line-height: 1.55; margin-top: 16px; max-width: 34em; }

/* cards: tint or white, radius 24, no borders */
.card { position: relative; background: #fff; border-radius: var(--r-card); padding: 36px 40px; box-shadow: var(--shadow-card); transition: box-shadow .4s var(--e-ui), translate .4s var(--e-display); }
.card:hover { box-shadow: var(--shadow-lift); translate: 0 -3px; }
.card--tint { background: var(--tint); box-shadow: none; }
.card--tint:hover { box-shadow: none; translate: none; }
.card__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 14px; }
.card p { color: var(--text); }
.card h3 + p, .card__top + p { margin-top: 0; }

.how { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 32px; align-items: start; }
.how__side { display: grid; gap: 32px; }
.card--seal { display: grid; grid-template-columns: 132px 1fr; gap: 24px; align-items: center; }
.card--seal .seal { width: 132px; filter: drop-shadow(0 10px 14px rgba(24, 48, 72, .25)); }
.card--seal h3 { font-size: 24px; }

/* syllabus accordion */
.syllabus { margin-top: 24px; display: grid; gap: 10px; }
.module { background: var(--tint); border-radius: var(--r-card); overflow: hidden; }
.module__btn { all: unset; display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: 16px; width: 100%; box-sizing: border-box; padding: 18px 22px; cursor: pointer; font: inherit; color: var(--ink); }
.module__btn:hover { background: var(--tint-2); }
.module__btn:focus-visible { outline-offset: -3px; }
.module__n { font-family: var(--font-caps); font-weight: 700; letter-spacing: .04em; color: var(--navy); font-size: 17px; }
.module__t { font-weight: 700; font-size: 19px; }
.module__meta { font-size: 15px; color: var(--text); }
.chev { transition: rotate .35s var(--e-display); color: var(--navy); }
.module__btn[aria-expanded="true"] .chev { rotate: 180deg; }
.module__body { display: grid; grid-template-rows: 1fr; transition: grid-template-rows .45s var(--e-display); }
.module__body[hidden] { display: grid; grid-template-rows: 0fr; }
.module__body > * { overflow: hidden; min-height: 0; }
.lessons { list-style: none; margin: 0; padding: 4px 22px 18px 22px; display: grid; gap: 6px; }
.lessons li { display: flex; align-items: center; gap: 14px; font-size: 18px; color: var(--text); padding: 6px 0; }
.lesson__n { width: 30px; height: 30px; border-radius: 50%; background: #fff; color: var(--navy); font-weight: 700; font-size: 15px; display: inline-grid; place-items: center; flex: none; }

/* pace meter */
.meter { margin-top: 22px; }
.meter__bar { height: 12px; border-radius: var(--r-pill); background: #fff; overflow: hidden; }
.meter__bar span { display: block; height: 100%; width: 100%; border-radius: var(--r-pill); background: var(--navy); transform-origin: left; transform: scaleX(0); transition: transform .25s var(--e-body); }
.meter__row { display: flex; justify-content: space-between; margin-top: 10px; font-size: 16px; color: var(--text); }
.meter__row span:first-child { font-family: var(--font-display); font-weight: 800; font-size: 28px; color: var(--navy); font-variant-numeric: tabular-nums; line-height: 1; }

/* ---------- specimen lesson ---------- */
.lesson__head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 40px; align-items: end; margin-bottom: 56px; }
.lesson__head h2 { margin-top: 18px; }
.lesson__lead { color: var(--navy-ink-2); font-size: 21px; line-height: 1.55; }
.letters { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.letter {
  display: grid; grid-template-columns: 112px 1fr 44px; gap: 28px; align-items: center;
  padding: 22px 28px 22px 22px; border-radius: var(--r-card);
  background: rgba(255, 255, 255, .06);
  transition: background-color .5s var(--e-ui), translate .6s var(--e-display), box-shadow .6s var(--e-ui);
}
.letter__glyph { font-family: var(--font-display); font-weight: 800; font-size: 84px; line-height: 1; color: rgba(255, 255, 255, .28); text-align: center; transition: color .6s var(--e-ui), translate .6s var(--e-display), scale .6s var(--e-display); }
.letter h3 { display: flex; align-items: baseline; gap: 14px; font-size: 27px; color: #fff; }
.letter__gloss { font-family: var(--font-body); font-weight: 400; font-size: 18px; color: var(--navy-ink-2); font-style: italic; }
.letter p { color: var(--navy-ink-2); font-size: 19px; max-width: 42em; }
.tick { width: 30px; height: 30px; border-radius: 50%; display: inline-grid; place-items: center; flex: none; border: 2px solid rgba(255, 255, 255, .35); color: transparent; transition: background-color .4s var(--e-ui), border-color .4s var(--e-ui), color .3s var(--e-ui) .15s, scale .5s var(--e-display); }
.tick svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 20; stroke-dashoffset: 20; transition: stroke-dashoffset .45s var(--e-display) .1s; }
.letter.is-done { background: rgba(255, 255, 255, .11); translate: 6px 0; }
.letter.is-done .letter__glyph { color: var(--gold); translate: 0 -4px; scale: 1.06; }
.letter.is-done .tick { background: var(--gold); border-color: var(--gold); color: var(--navy); scale: 1.08; }
.letter.is-done .tick svg { stroke-dashoffset: 0; }
.lesson__done { display: grid; grid-template-columns: 64px 1fr; gap: 24px; align-items: center; margin-top: 40px; padding: 30px 32px; border-radius: var(--r-card); background: rgba(255, 255, 255, .08); opacity: .35; translate: 0 12px; transition: opacity .6s var(--e-body), translate .7s var(--e-display), background-color .6s var(--e-ui); }
.lesson__done h3 { color: #fff; }
.lesson__done p { color: var(--navy-ink-2); }
.tick--big { width: 56px; height: 56px; }
.tick--big svg { width: 30px; height: 30px; }
.lesson__done.is-done { opacity: 1; translate: 0; background: rgba(255, 255, 255, .13); }
.lesson__done.is-done .tick { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.lesson__done.is-done .tick svg { stroke-dashoffset: 0; }

/* ---------- areas ---------- */
.areas { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 48px; align-items: start; }
.chips { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 12px; }
.chip { display: inline-flex; align-items: center; gap: 12px; padding: 12px 8px 12px 22px; border-radius: var(--r-pill); background: var(--tint); font-weight: 700; font-size: 18px; color: var(--navy); transition: background-color .3s var(--e-ui), translate .35s var(--e-display); }
.chip:hover { background: var(--tint-2); translate: 0 -2px; }
.chip b { font-weight: 700; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; background: #fff; color: var(--text); padding: 5px 11px; border-radius: var(--r-pill); }

/* ---------- patron ---------- */
.patron { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 56px; align-items: center; }
.patron__text p { color: var(--text); margin-top: 20px; max-width: 36em; }
.patron__text h2 .dates { display: block; font-family: var(--font-body); font-weight: 400; font-size: 20px; letter-spacing: 0; color: var(--text); margin-top: 10px; }
.motto { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.motto span { font-family: var(--font-caps); font-weight: 700; font-size: 22px; letter-spacing: .08em; color: var(--navy); padding: 10px 22px; border-radius: var(--r-pill); background: #fff; }
.motto__gloss { font-size: 17px !important; margin-top: 14px !important; }
.patron__art { margin: 0; display: grid; place-items: center; }
.patron__art img { width: min(100%, 420px); filter: drop-shadow(0 30px 40px rgba(24, 48, 72, .28)); }

/* ---------- status ---------- */
.status { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); gap: 48px; align-items: start; }
.status__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.status__grid .card { padding: 30px 32px; }
.status__grid h3 { font-size: 24px; margin-bottom: 14px; }
.facts { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.facts li { display: flex; gap: 14px; align-items: flex-start; color: var(--ink); font-size: 18px; line-height: 1.45; }
.facts .tick { width: 26px; height: 26px; margin-top: 2px; border-color: var(--tint-2); background: #fff; }
.facts .tick svg { width: 15px; height: 15px; }
.tick--done { background: var(--gold) !important; border-color: var(--gold) !important; color: var(--navy) !important; }
.tick--done svg { stroke-dashoffset: 0 !important; }
.tick--empty { border-style: dashed !important; border-color: #b9c4d1 !important; }
.status__cta { grid-column: 2; display: flex; gap: 28px; align-items: center; justify-content: space-between; margin-top: 8px; padding: 30px 36px; border-radius: var(--r-card); background: var(--navy); color: #fff; }
.status__cta p { color: var(--navy-ink-2); max-width: 30em; }

/* ---------- footer ---------- */
.foot { position: relative; background: var(--navy-deep); color: #fff; padding: 56px 0 44px; overflow: hidden; }
.foot__row { position: relative; z-index: 1; display: grid; grid-template-columns: auto 1fr auto; gap: 32px; align-items: center; }
.foot__note { color: var(--navy-ink-2); font-size: 17px; }
.foot__note a { color: #fff; text-underline-offset: 5px; }
.foot__sign { font-family: var(--font-caps); font-size: 14px; letter-spacing: .12em; color: var(--gold); }

/* ---------- motion: intro cascade (hero), reveals (below) ---------- */
.js .hero .state, .js .hero__lead, .js .hero__actions { opacity: 0; translate: 0 18px; transition: opacity .8s var(--e-body), translate 1s var(--e-display); }
.js .hero .line { translate: 0 110%; transition: translate 1.1s var(--e-display); }
.js .hero__shield { opacity: 0; translate: 0 calc(-50% + 40px); scale: .96; transition: opacity .9s var(--e-body) .25s, translate 1.3s var(--e-display) .2s, scale 1.3s var(--e-display) .2s; }
.js.is-ready .hero .state { opacity: 1; translate: 0 0; }
.js.is-ready .hero .line { translate: 0 0; }
.js.is-ready .hero .mask:nth-child(2) .line { transition-delay: .12s; }
.js.is-ready .hero__lead { opacity: 1; translate: 0 0; transition-delay: .35s; }
.js.is-ready .hero__actions { opacity: 1; translate: 0 0; transition-delay: .5s; }
.js.is-ready .hero__shield { opacity: 1; translate: 0 -50%; scale: 1; }

.js .reveal { opacity: 0; transition: opacity .9s var(--e-body), translate 1s var(--e-display), rotate 1s var(--e-display); }
.js .reveal[data-reveal="up"] { translate: 0 28px; }
.js .reveal[data-reveal="left"] { translate: -28px 0; }
.js .reveal[data-reveal="tilt"] { translate: 0 22px; rotate: -1.2deg; }
.js .reveal.is-in { opacity: 1; translate: 0 0; rotate: 0deg; }
.js .reveal.is-in:nth-child(2) { transition-delay: .12s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .hero .state, .js .hero__lead, .js .hero__actions, .js .hero .line, .js .hero__shield, .js .reveal { opacity: 1; translate: 0 0; scale: 1; rotate: 0deg; transition: none; }
  .js .hero__shield { translate: 0 -50%; }
  .state__dot { animation: none; }
  .letter, .letter__glyph, .tick, .lesson__done, .card, .chip, .pill { transition: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 1240px) {
  .hero__inner { padding-left: 40px; padding-right: 150px; }
  .hero__title { font-size: 52px; }
}
@media (max-width: 1024px) {
  .hero { grid-template-columns: minmax(0, 58fr) minmax(0, 42fr); min-height: 560px; }
  .hero__shield { width: 300px; left: -100px; }
  .hero__inner { padding: 64px 72px 72px 32px; }
  .hero__title { font-size: 46px; }
  .how, .areas, .patron, .status { grid-template-columns: 1fr; }
  .status__cta { grid-column: auto; }
  .lesson__head { grid-template-columns: 1fr; gap: 20px; }
  .top__nav { display: none; }
}
@media (max-width: 720px) {
  :root { --gutter: 16px; }
  body { font-size: 18px; }
  .sec { padding: 64px 0; }
  .sec__lead, .hero__lead, .lesson__lead { font-size: 18px; }
  h2 { font-size: 32px; }
  h3 { font-size: 22px; }
  .top__row { min-height: 64px; gap: 12px; }
  .brand__name { font-size: 18px; }
  .brand__sub { font-size: 10px; letter-spacing: .14em; }
  .top__cta { margin-left: auto; padding: 8px 16px; }
  .hero { grid-template-columns: 1fr; margin-top: 0; min-height: 0; }
  .hero__panel { border-radius: 0 0 32px 32px; }
  .hero__inner { max-width: none; padding: 40px var(--gutter) 44px; gap: 20px; }
  .hero__title { font-size: clamp(40px, 11vw, 52px); }
  .hero__actions { gap: 16px; }
  .hero__art { height: 280px; margin-top: -24px; }
  .hero__shield { position: absolute; left: 50%; top: 50%; translate: -50% -50%; width: 172px; filter: drop-shadow(0 18px 20px rgba(24, 48, 72, .35)); }
  .js .hero__shield { translate: -50% calc(-50% + 30px); }
  .js.is-ready .hero__shield { translate: -50% -50%; }
  .card { padding: 26px 22px; }
  .card__top { flex-direction: column; }
  .card--seal { grid-template-columns: 1fr; justify-items: start; }
  .module__btn { grid-template-columns: auto 1fr auto; grid-template-areas: "n meta chev" "t t t"; padding: 16px 18px; row-gap: 6px; }
  .module__n { grid-area: n; }
  .module__t { grid-area: t; font-size: 18px; }
  .module__meta { grid-area: meta; }
  .chev { grid-area: chev; }
  .lessons { padding: 0 18px 16px; }
  .lessons li { font-size: 16px; }
  .letter { grid-template-columns: 56px 1fr 34px; grid-template-areas: "g h t" "p p p"; gap: 12px 16px; padding: 18px 16px; align-items: center; }
  .letter__body { display: contents; }
  .letter__glyph { grid-area: g; font-size: 52px; }
  .letter h3 { grid-area: h; font-size: 22px; flex-wrap: wrap; gap: 8px; }
  .letter .tick { grid-area: t; }
  .letter p { grid-area: p; font-size: 17px; }
  .letter.is-done { translate: 0 0; }
  .lesson__done { grid-template-columns: 48px 1fr; padding: 22px 20px; gap: 16px; }
  .status__grid { grid-template-columns: 1fr; }
  .status__cta { flex-direction: column; align-items: flex-start; padding: 26px 22px; }
  .status__cta .pill { max-width: 100%; font-size: 16px; word-break: break-all; }
  .motto span { font-size: 18px; padding: 8px 16px; }
  .foot__row { grid-template-columns: 1fr; gap: 18px; }
}
