/* field, website UI kit styles. Pairs with ../../colors_and_type.css */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--field-cream);
  color: var(--field-midnight);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; }
button { font-family: inherit; }

.serif { font-family: var(--serif); font-feature-settings: var(--liga); }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 40px; }
.eyebrow { font-size: 12px; text-transform: uppercase; letter-spacing: 0.24em; font-weight: 500; color: var(--field-olive); }
.gold-rule { width: 56px; height: 1.5px; background: var(--field-gold); border: 0; }

/* ---------------- NAV ---------------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 40px;
  transition: background var(--dur) var(--ease), padding var(--dur) var(--ease), border-color var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(247, 248, 245, 0.86);
  backdrop-filter: blur(10px);
  padding: 14px 40px;
  border-bottom: 1px solid rgba(195, 204, 203, 0.28);
}
.nav__brand { font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 500; color: var(--teal); text-decoration: none; transition: color var(--dur-fast) var(--ease); }
.nav__brand:hover { color: var(--oxblood); }
.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a { color: var(--field-midnight); text-decoration: none; font-size: 14px; letter-spacing: 0.01em; transition: color var(--dur-fast) var(--ease); }
.nav__links a:hover { color: var(--field-gold); }

/* ---------------- BUTTONS (kit) ---------------- */
.btn {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.16em; font-weight: 500;
  padding: 0.95em 2.1em; border-radius: var(--radius-pill); border: 1px solid transparent;
  cursor: pointer; display: inline-flex; align-items: center; gap: 0.6em;
  transition: transform var(--dur-fast) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--teal); color: var(--ground); }
.btn--primary:hover { background: var(--oxblood); color: var(--ground); }
.btn--ghost { background: transparent; color: var(--teal); border-color: var(--teal); }
.btn--ghost:hover { background: var(--teal); color: var(--ground); }
.btn--on-dark { background: var(--dry-grass); color: var(--graphite); }
.btn--on-dark:hover { background: var(--ground); color: var(--graphite); }
.btn--ghost-dark { background: transparent; color: var(--ground); border-color: var(--teal); }
.btn--ghost-dark:hover { background: var(--teal); color: var(--ground); }

/* ---------------- HERO ---------------- */
/* Atmospheric backdrop: fogged high-desert horizon at dawn, with a soft
   radial light bloom near top-center (per Dan's stage). */
.hero {
  min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 140px 40px 80px; position: relative;
  background:
    radial-gradient(120% 80% at 50% 12%, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0) 45%),
    linear-gradient(180deg, var(--horizon) 0%, var(--fog) 42%, var(--ground) 78%, var(--ground) 100%);
}
.hero__mark { width: clamp(240px, 42vw, 460px); height: auto; margin-bottom: 18px; }
/* Wide-tracked Italiana sub-lockup under the wordmark (Dan's "Vitality"). */
.hero__lockup { font-family: var(--italiana); font-size: clamp(20px, 4.4vw, 34px); letter-spacing: 0.52em; text-indent: 0.52em; text-transform: uppercase; color: var(--teal); margin: 0; }
.hero__rule { width: 64px; height: 1px; background: var(--line); margin: 36px auto 30px; }
.hero__h1 { font-family: var(--serif); font-feature-settings: var(--liga); font-style: italic; font-weight: 500; font-size: clamp(1.9rem, 1.3rem + 2.6vw, 2.9rem); line-height: 1.25; letter-spacing: 0; color: var(--graphite); margin: 0; text-wrap: balance; }
.hero__sub { font-family: var(--sans); font-weight: 300; font-size: clamp(15px, 1.6vw, 17px); line-height: 1.6; color: var(--body-secondary); max-width: 560px; margin: 26px auto 0; letter-spacing: 0.01em; }
.hero__cta { margin-top: 42px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.trust { margin-top: 46px; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0; font-size: 13px; color: var(--field-olive); }
.trust span { display: inline-flex; align-items: center; gap: 9px; }
.trust .sep { color: var(--field-gold); padding: 0 16px; }
.trust svg { width: 17px; height: 17px; stroke: var(--field-olive); stroke-width: 1.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.scrollcue { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--field-olive); display: flex; flex-direction: column; align-items: center; gap: 10px; opacity: 0.7; }
.scrollcue .line { width: 1px; height: 38px; background: var(--field-olive); animation: cuepulse 2.6s var(--ease) infinite; transform-origin: top; }
@keyframes cuepulse { 0%,100% { transform: scaleY(0.5); opacity: 0.4; } 50% { transform: scaleY(1); opacity: 1; } }

/* ---------------- SECTION ---------------- */
.section { padding: clamp(5rem, 3rem + 8vw, 9rem) 0; }
.section__head { text-align: center; max-width: 50ch; margin: 0 auto 64px; display: flex; flex-direction: column; align-items: center; gap: 22px; }
.section__title { font-family: var(--serif); font-feature-settings: var(--liga); font-weight: 400; font-size: clamp(2.1rem, 1.5rem + 2.4vw, 3.2rem); line-height: 1.08; margin: 0; letter-spacing: -0.005em; }
.section__lead { font-family: var(--serif); font-feature-settings: var(--liga); font-size: 1.3rem; line-height: 1.45; color: var(--field-olive); margin: 0; }

/* band variants */
.band--forest { background: var(--field-forest); color: var(--field-cream); }
.band--forest .section__title { color: var(--field-cream); }
.band--midnight { background: var(--field-midnight); color: var(--field-cream); }

/* ---------------- HOW IT WORKS ---------------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.step { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 18px; padding: 0 14px; }
.step__no { font-family: var(--serif); font-size: 15px; letter-spacing: 0.3em; color: var(--field-gold); }
.step__icon svg { width: 34px; height: 34px; stroke: var(--field-midnight); stroke-width: 1.4; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.step__title { font-family: var(--serif); font-feature-settings: var(--liga); font-size: 1.6rem; margin: 0; }
.step__body { font-size: 15px; color: var(--field-olive); max-width: 30ch; margin: 0; line-height: 1.6; }

/* ---------------- PROGRAMS ---------------- */
.programs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
/* Odd count (5 programs): center the lone card on the last row (desktop only). */
@media (min-width: 861px) { .programs > .program:last-child:nth-child(odd) { grid-column: 1 / -1; justify-self: center; width: calc(50% - 11px); } }
.program {
  background: var(--field-cream); border: 1px solid rgba(195, 204, 203, 0.32); border-radius: 8px;
  padding: 34px 34px 30px; display: flex; flex-direction: column; gap: 14px;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  cursor: pointer;
}
.program:hover { transform: translateY(-3px); border-color: var(--field-gold); box-shadow: 0 14px 40px rgba(42, 47, 49, 0.07); }
.program__eyebrow { font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--field-gold); font-weight: 600; }
.program__name { font-family: var(--serif); font-feature-settings: var(--liga); font-size: 2rem; margin: 0; line-height: 1; }
.program__desc { font-size: 15px; color: var(--field-olive); margin: 0; line-height: 1.55; flex: 1; }
.program__foot { display: flex; align-items: center; gap: 10px; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--field-midnight); margin-top: 6px; }
.program__foot svg { width: 15px; height: 15px; stroke: currentColor; stroke-width: 1.6; fill: none; transition: transform var(--dur) var(--ease); }
.program:hover .program__foot svg { transform: translateX(4px); }

/* ---------------- MANIFESTO (editorial) ---------------- */
.manifesto { background: var(--field-cream); }
.manifesto .wrap { max-width: 880px; text-align: center; }
.manifesto__quote { font-family: var(--serif); font-feature-settings: var(--liga); font-weight: 400; font-size: clamp(1.7rem, 1.2rem + 2vw, 2.6rem); line-height: 1.3; color: var(--field-olive); margin: 0; text-wrap: balance; }
.manifesto__quote em { font-style: italic; color: var(--field-midnight); }
.three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; margin-top: 64px; text-align: left; }
.three__col { display: flex; flex-direction: column; gap: 12px; padding-top: 22px; border-top: 1px solid rgba(195, 204, 203, 0.3); }
.three__k { font-family: var(--serif); font-size: 1.35rem; color: var(--field-midnight); }
.three__v { font-size: 14px; color: var(--field-olive); line-height: 1.6; margin: 0; }

/* ---------------- CLOSING CTA ---------------- */
.closing { background: var(--field-midnight); color: var(--field-cream); text-align: center; padding: clamp(6rem, 4rem + 8vw, 10rem) 0; }
.closing__mark { height: 92px; margin: 0 auto 30px; }
.closing__line { font-family: var(--serif); font-feature-settings: var(--liga); font-style: italic; font-size: clamp(1.4rem, 1rem + 1.4vw, 2rem); color: var(--dry-grass); margin: 0 0 36px; }

/* ---------------- FOOTER ---------------- */
.footer { background: var(--field-cream); color: var(--field-midnight); padding: 72px 0 40px; border-top: 1px solid rgba(195, 204, 203, 0.3); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer__mark { height: 26px; margin-bottom: 18px; }
.footer__tag { font-family: var(--serif); font-size: 1.05rem; color: var(--field-olive); max-width: 26ch; line-height: 1.5; margin: 0; }
.footer__col h4 { font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--field-olive); font-weight: 600; margin: 0 0 16px; }
.footer__col a { display: block; color: var(--field-midnight); text-decoration: none; font-size: 14px; margin-bottom: 11px; transition: color var(--dur-fast) var(--ease); }
.footer__col a:hover { color: var(--field-gold); }
.footer__legal { margin-top: 56px; padding-top: 26px; border-top: 1px solid rgba(195, 204, 203, 0.3); font-size: 12px; line-height: 1.7; color: var(--field-olive); }
.footer__legal .sep { color: var(--field-gold); padding: 0 8px; }
.footer__legal a { color: var(--field-olive); text-decoration: none; }
.footer__legal a:hover { color: var(--field-gold); }

/* ---------------- INTAKE MODAL ---------------- */
.overlay { position: fixed; inset: 0; z-index: 100; background: rgba(42, 47, 49, 0.55); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; pointer-events: none; transition: opacity var(--dur) var(--ease); }
.overlay.open { opacity: 1; pointer-events: auto; }
.modal { background: var(--field-cream); border-radius: 12px; width: min(560px, 100%); max-height: 92vh; overflow: auto; padding: 44px 48px 40px; position: relative; box-shadow: 0 30px 80px rgba(42, 47, 49, 0.3); transform: translateY(14px); transition: transform var(--dur) var(--ease); }
.overlay.open .modal { transform: translateY(0); }
.modal__close { position: absolute; top: 20px; right: 22px; background: none; border: 0; cursor: pointer; color: var(--field-olive); width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; border-radius: 999px; transition: background var(--dur-fast) var(--ease); }
.modal__close:hover { background: rgba(195, 204, 203, 0.12); }
.modal__close svg { width: 20px; height: 20px; stroke: currentColor; stroke-width: 1.6; fill: none; }
.modal__mark { height: 26px; margin-bottom: 24px; }
.modal__steps { display: flex; gap: 7px; margin-bottom: 26px; }
.modal__steps i { height: 3px; flex: 1; background: rgba(195, 204, 203, 0.25); border-radius: 2px; transition: background var(--dur) var(--ease); }
.modal__steps i.on { background: var(--field-gold); }
.modal__eyebrow { font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--field-olive); font-weight: 600; }
.modal__title { font-family: var(--serif); font-feature-settings: var(--liga); font-size: 2rem; margin: 8px 0 6px; line-height: 1.1; }
.modal__desc { font-size: 14.5px; color: var(--field-olive); margin: 0 0 26px; line-height: 1.55; }
.field-row { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.field-row label { font-size: 12px; letter-spacing: 0.03em; color: var(--field-olive); font-weight: 500; }
.field-row input { font-family: var(--sans); font-size: 15px; padding: 13px 15px; border: 1px solid rgba(195, 204, 203, 0.4); border-radius: 8px; background: var(--fog); color: var(--field-midnight); }
.field-row input:focus { outline: 2px solid var(--field-gold); outline-offset: 1px; border-color: var(--field-midnight); }
.goals { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 26px; }
.goal { border: 1px solid rgba(195, 204, 203, 0.4); border-radius: 8px; padding: 14px 16px; cursor: pointer; font-size: 14px; display: flex; align-items: center; gap: 10px; transition: all var(--dur-fast) var(--ease); background: var(--fog); }
.goal:hover { border-color: var(--field-gold); }
.goal.sel { border-color: var(--field-midnight); background: var(--field-midnight); color: var(--field-cream); }
.goal .dot { width: 8px; height: 8px; border-radius: 999px; border: 1px solid currentColor; flex-shrink: 0; }
.goal.sel .dot { background: var(--field-gold); border-color: var(--field-gold); }
.modal__actions { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
.modal__back { background: none; border: 0; color: var(--field-olive); cursor: pointer; font-size: 13px; letter-spacing: 0.04em; }
.modal__back:hover { color: var(--field-midnight); }
.modal__fine { font-size: 11.5px; color: var(--field-olive); line-height: 1.5; margin: 22px 0 0; }
/* ---------------- OUTCOME-FIRST INTAKE (wireframe) ---------------- */
.outcomes { display: grid; grid-template-columns: 1fr; gap: 10px; margin-bottom: 26px; }

.stack { border: 1px solid rgba(195, 204, 203, 0.4); border-radius: 8px; background: var(--fog); padding: 24px 26px 20px; margin-bottom: 18px; }
.stack__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.stack__tag { font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--field-gold); font-weight: 600; }
.stack__name { font-family: var(--serif); font-feature-settings: var(--liga); font-size: 1.8rem; font-weight: 400; margin: 4px 0 0; line-height: 1; }
.stack__price { font-family: var(--serif); font-size: 1.7rem; color: var(--field-midnight); white-space: nowrap; }
.stack__price span { font-family: var(--sans); font-size: 12px; color: var(--field-olive); letter-spacing: 0.04em; }
.stack__blurb { font-size: 13.5px; color: var(--field-olive); line-height: 1.55; margin: 10px 0 18px; }
.stack__products { display: flex; flex-direction: column; gap: 12px; }
.stack-item { display: flex; align-items: center; gap: 14px; }
.stack-item__thumb { width: 54px; height: 54px; flex-shrink: 0; border-radius: 6px; background: var(--horizon); color: var(--muted-note); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; display: flex; align-items: center; justify-content: center; }
.stack-item__name { font-size: 14px; font-weight: 500; color: var(--field-midnight); }
.stack-item__desc { font-size: 12.5px; color: var(--field-olive); line-height: 1.45; }
.stack__formats { margin-top: 18px; padding-top: 14px; border-top: 1px solid rgba(195, 204, 203, 0.25); font-size: 12px; letter-spacing: 0.06em; color: var(--field-olive); }

.picker { margin-bottom: 22px; }
.picker__label { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--field-olive); font-weight: 600; margin-bottom: 8px; }
.picker__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.picker__chip { font-family: var(--sans); font-size: 12.5px; padding: 7px 14px; border-radius: 999px; border: 1px solid rgba(195, 204, 203, 0.4); background: var(--fog); color: var(--field-midnight); cursor: pointer; transition: all var(--dur-fast) var(--ease); }
.picker__chip:hover { border-color: var(--field-gold); }
.picker__chip.on { background: var(--field-midnight); color: var(--field-cream); border-color: var(--field-midnight); }

.check-row { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--field-midnight); margin-bottom: 12px; cursor: pointer; line-height: 1.4; }
.check-row input { margin-top: 2px; accent-color: var(--field-olive); width: 16px; height: 16px; flex-shrink: 0; cursor: pointer; }

.notice { border: 1px solid rgba(195, 204, 203, 0.35); border-left: 3px solid var(--field-gold); border-radius: 6px; background: var(--fog); padding: 12px 16px; font-size: 13px; color: var(--field-olive); line-height: 1.5; margin: 4px 0 14px; }

.confirm__next { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 4px; font-size: 12px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--field-olive); margin: 0 0 26px; }
.confirm__next .sep { color: var(--field-gold); padding: 0 6px; }

/* ---------------- CONSULTANT (two-path, Build 5) ---------------- */
.modal--wide { width: min(760px, 100%); }
.choices { display: flex; flex-direction: column; gap: 12px; margin: 4px 0 8px; }
.choice { text-align: left; background: #FBF8F0; border: 1px solid rgba(74, 90, 58, 0.4); border-radius: 10px; padding: 18px 20px; cursor: pointer; display: flex; flex-direction: column; gap: 5px; transition: all var(--dur-fast) var(--ease); font-family: var(--sans); }
.choice:hover { border-color: var(--field-gold); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(27, 36, 56, 0.06); }
.choice__k { font-family: var(--serif); font-feature-settings: var(--liga); font-size: 1.35rem; color: var(--field-midnight); line-height: 1.1; }
.choice__v { font-size: 13.5px; color: var(--field-olive); line-height: 1.5; }

.stack__addons { margin-top: 16px; padding-top: 14px; border-top: 1px dashed rgba(74, 90, 58, 0.35); display: flex; flex-direction: column; gap: 12px; }
.stack__addons-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--field-olive); font-weight: 600; }

.prodrow { display: flex; align-items: center; gap: 14px; }
.prodrow.sel { }
.prodrow__thumb { width: 48px; height: 48px; flex-shrink: 0; border-radius: 6px; background: #D9D6CC; color: #8C8A82; font-size: 9px; letter-spacing: 0.06em; text-transform: uppercase; display: flex; align-items: center; justify-content: center; }
.prodrow__body { flex: 1; min-width: 0; }
.prodrow__name { font-size: 14px; font-weight: 500; color: var(--field-midnight); line-height: 1.3; }
.prodrow__sub { font-size: 12px; color: var(--field-olive); line-height: 1.4; margin: 1px 0 4px; }
.badge { display: inline-block; font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; padding: 2px 8px; border-radius: 999px; border: 1px solid rgba(74, 90, 58, 0.4); color: var(--field-olive); }
.badge--inj { border-color: var(--field-gold); color: var(--field-midnight); background: #FBF8F0; }
.badge--free { border-color: rgba(74, 90, 58, 0.4); }
.prodrow__act { flex-shrink: 0; font-family: var(--sans); font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; padding: 8px 14px; border-radius: 999px; border: 1px solid var(--field-midnight); background: transparent; color: var(--field-midnight); cursor: pointer; transition: all var(--dur-fast) var(--ease); }
.prodrow__act:hover { background: var(--field-midnight); color: var(--field-cream); }
.prodrow__act.on { background: var(--field-midnight); color: var(--field-cream); }

.lib__filters { display: flex; gap: 10px; margin-bottom: 14px; }
.lib__sel { font-family: var(--sans); font-size: 13px; padding: 9px 12px; border-radius: 8px; border: 1px solid rgba(74, 90, 58, 0.4); background: #FBF8F0; color: var(--field-midnight); cursor: pointer; flex: 1; }
.lib__scroll { max-height: 46vh; overflow-y: auto; padding-right: 6px; margin: 0 -4px 4px; padding-left: 4px; }
.lib__group { margin-bottom: 20px; }
.lib__grouphead { font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--field-gold); font-weight: 600; padding-bottom: 8px; margin-bottom: 12px; border-bottom: 1px solid rgba(74, 90, 58, 0.2); }
.lib__group .prodrow { padding: 8px 0; }
.stackbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 12px; padding-top: 16px; border-top: 1px solid rgba(74, 90, 58, 0.25); flex-wrap: wrap; }
.stackbar__count { font-size: 13px; letter-spacing: 0.04em; color: var(--field-midnight); font-weight: 500; }

.confirm { text-align: center; padding: 14px 0 6px; }
.confirm__seal { width: 64px; height: 64px; border-radius: 999px; border: 1.5px solid var(--field-gold); display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; }
.confirm__seal svg { width: 30px; height: 30px; stroke: var(--field-gold); stroke-width: 1.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.confirm__title { font-family: var(--serif); font-feature-settings: var(--liga); font-size: 2.1rem; margin: 0 0 12px; }
.confirm__body { font-size: 15px; color: var(--field-olive); line-height: 1.6; max-width: 38ch; margin: 0 auto 28px; }

/* ---------------- BODY COPY CONTRAST ----------------
   Dan uses straw only for small eyebrows/labels; running body copy takes
   the secondary grey. field-olive stays straw for labels, so we override
   the paragraph-level selectors here to keep long copy legible. */
.section__lead,
.step__body,
.program__desc,
.manifesto__quote,
.three__v,
.modal__desc,
.stack__blurb,
.stack-item__desc,
.modal__fine,
.notice,
.confirm__body,
.footer__tag,
.footer__legal { color: var(--body-secondary); }

/* Footer policy links read as teal accents (Dan's footer link treatment). */
.footer__legal a { color: var(--teal); }
.footer__legal a:hover { color: var(--oxblood); }

@media (max-width: 860px) {
  .nav__links a:not(:last-child) { display: none; }
  .steps, .programs, .three, .footer__grid { grid-template-columns: 1fr; }
  .wrap { padding: 0 24px; }
}
