/* =========================================================================
   Flamors Media — flamors.com
   Multi-page site · light-primary with dark mode · type-led modern agency
   ========================================================================= */

/* ------------------------------- TOKENS ------------------------------- */
:root {
  /* Flamors brand: emerald-teal accent, deep navy ink, pale teal tint */
  --bg:        #F5F7F4;
  --surface:   #FFFFFF;
  --surface-2: #E7F3EE;
  --ink:       #1A1A2E;
  --ink-2:     #4E5063;
  --ink-3:     #82859A;
  --line:      #E0E4DF;
  --line-2:    #C6CEC8;
  --blue:      #0E9C74;
  --blue-press:#0B7C5C;
  --blue-tint: #E1F4EC;
  --blue-ink:  #06392B;
  --ok:        #0E9C74;
  --err:       #C1352A;

  --f-display: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
  --f-ui:      "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;
  --f-mono:    "IBM Plex Mono", ui-monospace, Menlo, monospace;

  --fs-eyebrow: .72rem;
  --fs-body:    1.05rem;
  --fs-lead:    clamp(1.15rem, 1rem + .7vw, 1.42rem);
  --fs-h3:      clamp(1.35rem, 1.05rem + 1.3vw, 1.95rem);
  --fs-h2:      clamp(1.95rem, 1.35rem + 2.6vw, 3.3rem);
  --fs-h1:      clamp(2.5rem, 1.6rem + 4.4vw, 5rem);

  --wrap: 1180px;
  --pad:  clamp(3.75rem, 8vw, 7.5rem);
  --r:    3px;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg:        #14141F;
    --surface:   #1D1D2C;
    --surface-2: #202F2A;
    --ink:       #ECEEF2;
    --ink-2:     #A4A7B8;
    --ink-3:     #777B8C;
    --line:      #2E2E42;
    --line-2:    #3E3E56;
    --blue:      #2FC5A2;
    --blue-press:#4CD8BB;
    --blue-tint: #15352C;
    --blue-ink:  #CFF5EA;
  }
}
:root[data-theme="dark"] {
  --bg:        #14141F;
  --surface:   #1D1D2C;
  --surface-2: #202F2A;
  --ink:       #ECEEF2;
  --ink-2:     #A4A7B8;
  --ink-3:     #777B8C;
  --line:      #2E2E42;
  --line-2:    #3E3E56;
  --blue:      #2FC5A2;
  --blue-press:#4CD8BB;
  --blue-tint: #15352C;
  --blue-ink:  #CFF5EA;
}

/* ------------------------------- BASE ------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: var(--f-ui); font-size: var(--fs-body); line-height: 1.6;
  -webkit-font-smoothing: antialiased; font-optical-sizing: auto;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 700; line-height: 1.03; margin: 0; letter-spacing: -.02em; text-wrap: balance; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--blue); color: #fff; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 2px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
}

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1.15rem, 4.5vw, 2.25rem); }
.skip { position: absolute; left: -9999px; background: var(--ink); color: var(--bg); padding: .6rem 1rem; z-index: 200; font-family: var(--f-ui); font-weight: 600; }
.skip:focus { left: .6rem; top: .6rem; }

/* --------------------------- SHARED ATOMS --------------------------- */
.eyebrow {
  font-family: var(--f-mono); font-size: var(--fs-eyebrow); font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase; color: var(--blue);
  display: inline-flex; align-items: center; gap: .55rem;
}
.eyebrow::before { content: "\2192"; }

.lead { font-size: var(--fs-lead); color: var(--ink-2); line-height: 1.45; text-wrap: pretty; }

/* blue marker highlight on key words */
.hl {
  background-image: linear-gradient(
    color-mix(in srgb, var(--blue) 22%, transparent),
    color-mix(in srgb, var(--blue) 22%, transparent));
  background-repeat: no-repeat;
  background-position: 0 82%;
  background-size: 100% 0.42em;
  padding: 0 .08em;
}
.js .hl { background-size: 0% 0.42em; transition: background-size .7s cubic-bezier(.2,.7,.2,1); }
.js .hl.on { background-size: 100% 0.42em; }
@media (prefers-reduced-motion: reduce) { .js .hl { background-size: 100% 0.42em; } }

.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--f-ui); font-weight: 600; font-size: .95rem; letter-spacing: .005em;
  padding: .82rem 1.45rem; border-radius: var(--r); cursor: pointer;
  background: var(--blue); color: #fff; border: 1.5px solid var(--blue);
  transition: background .16s, border-color .16s, color .16s, transform .16s;
}
.btn:hover { background: var(--ink); border-color: var(--ink); color: var(--bg); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { background: var(--ink); border-color: var(--ink); color: var(--bg); }
.btn svg { width: 1.05em; height: 1.05em; }

.arrow-link { display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; color: var(--blue); }
.arrow-link::after { content: "\2192"; transition: transform .16s; }
.arrow-link:hover::after { transform: translateX(4px); }

/* reveal on scroll */
.js .reveal { opacity: 0; transform: translateY(16px); }
.js .reveal.in { opacity: 1; transform: none; transition: opacity .6s ease, transform .6s ease; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; } }

/* ------------------------------ HEADER ------------------------------ */
.topline {
  background: #1A1A2E; color: #EDEEF2;
  font-family: var(--f-mono); font-size: .7rem; font-weight: 500; letter-spacing: .24em;
  text-align: center; padding: .5rem 1rem;
}

header.site { position: sticky; top: 0; z-index: 60; background: color-mix(in srgb, var(--bg) 90%, transparent); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding-block: .9rem; }
.brand { display: inline-flex; align-items: center; gap: .5rem; }
.brand__mono { font-family: var(--f-display); font-weight: 800; font-size: 1.55rem; letter-spacing: -.07em; line-height: 1; color: var(--ink); }
.brand__mono .t { color: var(--blue); }
.brand__word { display: flex; flex-direction: column; line-height: 1.05; }
.brand__word .n { font-family: var(--f-display); font-weight: 700; font-size: .82rem; letter-spacing: .01em; color: var(--ink); }
.brand__word .t { font-family: var(--f-display); font-weight: 700; font-size: .56rem; letter-spacing: .24em; color: var(--blue); }
.nav__links { display: flex; align-items: center; gap: 1.5rem; font-size: .92rem; font-weight: 500; }
.nav__links a { color: var(--ink-2); padding-block: .3rem; position: relative; transition: color .15s; }
.nav__links a:hover { color: var(--ink); }
.nav__links a[aria-current="page"] { color: var(--ink); }
.nav__links a[aria-current="page"]::after { content: ""; position: absolute; left: 0; right: 0; bottom: -.15rem; height: 2px; background: var(--blue); }
.nav__actions { display: flex; align-items: center; gap: .6rem; }
.ib { width: 2.25rem; height: 2.25rem; border: 1px solid var(--line-2); background: transparent; color: var(--ink); display: grid; place-items: center; cursor: pointer; border-radius: var(--r); }
.ib:hover { border-color: var(--blue); color: var(--blue); }
.ib svg { width: 1.1rem; height: 1.1rem; }
.nav__burger { display: none; }
@media (max-width: 940px) {
  .nav__links {
    display: none; position: absolute; inset: 100% 0 auto 0; background: var(--bg);
    border-bottom: 1px solid var(--line); flex-direction: column; align-items: flex-start;
    gap: 1rem; padding: 1.25rem clamp(1.15rem,4.5vw,2.25rem) 1.6rem; font-size: 1rem;
  }
  .nav__links.open { display: flex; }
  .nav__links a[aria-current="page"]::after { display: none; }
  .nav__burger { display: grid; }
}

/* ---------------------------- PAGE HEAD ---------------------------- */
.pagehead { padding-block: clamp(2.75rem, 6vw, 5rem) clamp(2rem, 4vw, 3.25rem); border-bottom: 1px solid var(--line); }
.pagehead h1 { font-size: var(--fs-h1); margin: 1.1rem 0 1.25rem; max-width: 16ch; }
.pagehead .lead { max-width: 44ch; }
.pagehead--wide h1 { max-width: 20ch; }

/* ------------------------------ HOME HERO ------------------------------ */
.hero { padding-block: clamp(2.5rem, 6vw, 5rem) var(--pad); }
.hero h1 { font-size: var(--fs-h1); margin: 1.4rem 0 1.6rem; }
.hero .lead { max-width: 40ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2.25rem; }
.hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (max-width: 940px) { .hero__grid { grid-template-columns: 1fr; } }

.scorecard { border: 1px solid var(--line-2); background: var(--surface); border-radius: var(--r); overflow: hidden; }
.scorecard__hd { display: flex; align-items: center; justify-content: space-between; padding: .7rem .95rem; border-bottom: 1px solid var(--line); font-family: var(--f-mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }
.scorecard__hd .dot { width: .5rem; height: .5rem; border-radius: 999px; background: var(--blue); display: inline-block; margin-right: .4rem; animation: pulse 2s ease-out infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--blue) 55%, transparent); } 70%,100% { box-shadow: 0 0 0 7px transparent; } }
.scorecard__row { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; padding: 1rem .95rem; border-bottom: 1px solid var(--line); }
.scorecard__row:last-child { border-bottom: 0; }
.scorecard__row b { font-family: var(--f-display); font-weight: 700; font-size: 1.9rem; letter-spacing: -.03em; font-variant-numeric: tabular-nums; }
.scorecard__row b.pos { color: var(--blue); }
.scorecard__row span { font-size: .82rem; color: var(--ink-2); text-align: right; max-width: 16ch; }

/* ------------------------------ SECTIONS ------------------------------ */
.section { padding-block: var(--pad); border-top: 1px solid var(--line); }
.section--plain { border-top: 0; }
.section__head { display: flex; flex-direction: column; gap: 1rem; max-width: 46rem; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section__head h2 { font-size: var(--fs-h2); }
.section__head .lead { font-size: var(--fs-lead); }

/* logo marquee */
.logos { border-block: 1px solid var(--line); background: var(--surface); overflow: hidden; }
.logos__lab { text-align: center; font-family: var(--f-mono); font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-3); padding-top: 1.2rem; }
.marq { display: flex; overflow: hidden; padding-block: 1rem 1.4rem; -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.marq__track { display: flex; align-items: center; gap: .9rem; padding-left: .9rem; flex-shrink: 0; }
.marq__track.go { animation: slide 60s linear infinite; }
.marq:hover .marq__track, .marq:focus-within .marq__track { animation-play-state: paused; }
@keyframes slide { to { transform: translateX(-50%); } }
.chip {
  flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center;
  height: 52px; min-width: 128px; padding: 0 1.15rem;
  background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--r);
}
.chip img { max-height: 28px; width: auto; max-width: 118px; object-fit: contain; filter: grayscale(1); opacity: .7; transition: filter .2s, opacity .2s; }
.chip:hover img { filter: none; opacity: 1; }
.chip .logo-fallback { font-family: var(--f-display); font-weight: 700; font-size: 1rem; white-space: nowrap; color: var(--ink); letter-spacing: -.02em; }

/* client wall */
.wall { display: grid; grid-template-columns: repeat(auto-fill, minmax(158px, 1fr)); border: 1px solid var(--line-2); border-right: 0; border-bottom: 0; border-radius: var(--r); overflow: hidden; background: var(--surface); }
.wall__cell { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); min-height: 96px; display: grid; place-items: center; padding: 1.1rem; }
.wall__cell img { max-height: 36px; width: auto; max-width: 100%; object-fit: contain; filter: grayscale(1); opacity: .68; transition: filter .2s, opacity .2s; }
.wall__cell:hover img { filter: none; opacity: 1; }
.wall__cell .logo-fallback { font-family: var(--f-ui); font-weight: 700; font-size: .8rem; text-align: center; color: var(--ink-2); }

/* card grid (services / work) */
.grid { display: grid; gap: 1rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid--2, .grid--3 { grid-template-columns: 1fr; } }

.card {
  border: 1px solid var(--line-2); border-radius: var(--r); background: var(--surface);
  padding: 1.5rem; display: flex; flex-direction: column; gap: .7rem;
  transition: transform .18s, border-color .18s;
}
a.card:hover { transform: translateY(-3px); border-color: var(--blue); }
.card__tag { font-family: var(--f-mono); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); }
.card h3 { font-size: var(--fs-h3); }
.card p { color: var(--ink-2); font-size: .95rem; }
.card .arrow-link { margin-top: auto; padding-top: .4rem; font-size: .9rem; }
.card ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: .35rem; font-size: .88rem; color: var(--ink-2); }
.card li { display: flex; gap: .5rem; }
.card li::before { content: ""; width: 5px; height: 5px; margin-top: .55em; background: var(--blue); flex-shrink: 0; }

/* big outlined stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem 1rem; }
@media (max-width: 820px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat__n {
  font-family: var(--f-display); font-weight: 800; font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 1; letter-spacing: -.04em; color: transparent;
  -webkit-text-stroke: 1.6px var(--ink); font-variant-numeric: tabular-nums;
}
@supports not (-webkit-text-stroke: 1px black) { .stat__n { color: var(--ink); } }
.stat__l { font-size: .85rem; color: var(--ink-2); margin-top: .4rem; max-width: 18ch; }

/* numbered process list */
.steps { border-top: 1px solid var(--line-2); }
.step { display: grid; grid-template-columns: 4.5rem 1fr; gap: 1.25rem; padding: 1.5rem 0; border-bottom: 1px solid var(--line); }
@media (max-width: 560px) { .step { grid-template-columns: 1fr; gap: .4rem; } }
.step__n { font-family: var(--f-display); font-weight: 800; font-size: 1.9rem; color: transparent; -webkit-text-stroke: 1.4px var(--blue); line-height: 1; }
@supports not (-webkit-text-stroke: 1px black) { .step__n { color: var(--blue); } }
.step h3 { font-size: var(--fs-h3); margin-bottom: .35rem; }
.step p { color: var(--ink-2); font-size: .96rem; max-width: 46rem; }

/* pull quote / testimonial */
.quote { border-left: 3px solid var(--blue); padding-left: 1.5rem; max-width: 44rem; }
.quote p { font-family: var(--f-display); font-weight: 500; font-size: clamp(1.4rem, 1.1rem + 1.6vw, 2.15rem); line-height: 1.22; letter-spacing: -.02em; }
.quote cite { display: block; margin-top: 1rem; font-family: var(--f-mono); font-size: .74rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3); font-style: normal; }

/* definition-style rows (standards, why) */
.rows { border-top: 1px solid var(--line-2); }
.row2 { display: grid; grid-template-columns: 1fr 1.6fr; gap: 1rem 2.5rem; padding: 1.6rem 0; border-bottom: 1px solid var(--line); }
@media (max-width: 700px) { .row2 { grid-template-columns: 1fr; gap: .5rem; } }
.row2 h3 { font-size: var(--fs-h3); }
.row2 p { color: var(--ink-2); }
.row2 .eyebrow { color: var(--ink-3); }
.row2 .eyebrow::before { content: ""; }

/* pricing */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; align-items: start; }
@media (max-width: 860px) { .tiers { grid-template-columns: 1fr; max-width: 27rem; } }
.tier { border: 1px solid var(--line-2); border-radius: var(--r); background: var(--surface); padding: 1.7rem; display: flex; flex-direction: column; gap: 1rem; }
.tier--feat { border-color: var(--blue); box-shadow: 0 14px 40px -22px color-mix(in srgb, var(--blue) 55%, transparent); position: relative; }
.tier--feat::after { content: "Most chosen"; position: absolute; top: -.72rem; left: 1.7rem; font-family: var(--f-mono); font-size: .6rem; letter-spacing: .1em; text-transform: uppercase; background: var(--blue); color: #fff; padding: .18rem .55rem; border-radius: 2px; }
.tier__name { font-family: var(--f-mono); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); }
.tier__price { font-family: var(--f-display); font-weight: 800; font-size: 2.4rem; letter-spacing: -.03em; }
.tier__price small { display: block; font-family: var(--f-ui); font-weight: 500; font-size: .72rem; letter-spacing: .02em; color: var(--ink-3); text-transform: uppercase; margin-top: .2rem; }
.tier ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .55rem; font-size: .9rem; }
.tier li { display: flex; gap: .55rem; }
.tier li::before { content: "\2192"; color: var(--blue); flex-shrink: 0; }
.tier .btn { margin-top: auto; justify-content: center; }
.notes { font-family: var(--f-mono); font-size: .76rem; color: var(--ink-3); line-height: 1.7; max-width: 48rem; margin-top: 1.5rem; }

/* faq */
.faq { max-width: 48rem; border-top: 1px solid var(--line-2); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; padding: 1.15rem 0; display: flex; justify-content: space-between; gap: 1rem; align-items: baseline; font-family: var(--f-display); font-weight: 600; font-size: 1.1rem; letter-spacing: -.01em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--f-mono); color: var(--blue); flex-shrink: 0; }
.faq details[open] summary::after { content: "\2013"; }
.faq details p { padding-bottom: 1.2rem; color: var(--ink-2); font-size: .96rem; max-width: 44rem; }

/* legal / company block */
.legal { border: 1px solid var(--line-2); border-radius: var(--r); background: var(--surface-2); padding: clamp(1.5rem, 4vw, 2.5rem); }
.legal dl { margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem 2rem; }
@media (max-width: 620px) { .legal dl { grid-template-columns: 1fr; } }
.legal dt { font-family: var(--f-mono); font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); margin-bottom: .25rem; }
.legal dd { margin: 0; font-size: .95rem; }
.legal dd a { color: var(--blue); }

/* contact form */
.contact-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(1.5rem, 5vw, 4rem); align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
form.brief { display: grid; gap: .9rem; }
form.brief .row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
@media (max-width: 480px) { form.brief .row { grid-template-columns: 1fr; } }
form.brief label { display: block; font-family: var(--f-mono); font-size: .6rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); margin-bottom: .3rem; }
form.brief input, form.brief textarea {
  width: 100%; font-family: var(--f-ui); font-size: .98rem; color: var(--ink);
  background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--r);
  padding: .7rem .8rem;
}
form.brief input:focus, form.brief textarea:focus { outline: 2px solid var(--blue); outline-offset: 0; border-color: var(--blue); }
form.brief textarea { min-height: 130px; resize: vertical; }
form.brief .hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
form.brief button { justify-content: center; margin-top: .3rem; }
.form-status { font-family: var(--f-mono); font-size: .82rem; min-height: 1.3em; }
.form-status.ok { color: var(--ok); }
.form-status.err { color: var(--err); }
.contact-aside { font-size: .95rem; display: flex; flex-direction: column; gap: 1.3rem; }
.contact-aside h3 { font-size: 1.15rem; margin-bottom: .35rem; }
.contact-aside a { color: var(--blue); }
.contact-aside p { color: var(--ink-2); }

/* CTA band */
.cta {
  background: var(--blue); color: #fff; border-radius: var(--r);
  padding: clamp(2.25rem, 6vw, 4rem); text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 1.2rem;
}
.cta h2 { font-size: var(--fs-h2); max-width: 20ch; color: #fff; }
.cta p { max-width: 44ch; color: color-mix(in srgb, #fff 82%, var(--blue)); }
.cta .btn { background: #fff; color: var(--blue); border-color: #fff; }
.cta .btn:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ------------------------------ FOOTER ------------------------------ */
footer.site { border-top: 1px solid var(--line); padding-block: clamp(2.5rem, 5vw, 4rem) 2rem; margin-top: var(--pad); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 2rem; }
@media (max-width: 820px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .foot-grid { grid-template-columns: 1fr; } }
.foot-grid h4 { font-family: var(--f-mono); font-size: .62rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); margin-bottom: .9rem; }
.foot-col a, .foot-col p { display: block; font-size: .9rem; color: var(--ink-2); margin-bottom: .5rem; }
.foot-col a:hover { color: var(--blue); }
.foot-col a.foot-brand { display: inline-flex; margin-bottom: 1rem; }
.foot-brand .brand__mono { font-size: 1.85rem; }
.foot-brand .brand__word .n { font-size: .92rem; }
.foot-brand .brand__word .t { font-size: .62rem; }
.foot-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .8rem; margin-top: 2.5rem; padding-top: 1.4rem; border-top: 1px solid var(--line); font-family: var(--f-mono); font-size: .7rem; color: var(--ink-3); }

/* utilities */
.mt-gap { margin-top: clamp(2rem, 4vw, 3rem); }
.center { text-align: center; }
.divider { border: 0; border-top: 1px solid var(--line); margin-block: var(--pad); }
