/* ---------------------------------------------------------------------------
   SITE FOOTER — the quiet legal close.

   Extracted verbatim from src/blueprint.css so the landing film, /faq and
   /about all render one footer from one source. It was moved, not rewritten:
   nothing here changed except its file. The `.no-flex-gap` fallbacks that pair
   with it stay in src/legacy.css, and every page that links this sheet must
   also link that one and run the flex-gap probe, or Chromium 79 runs the
   footer columns together.
--------------------------------------------------------------------------- */

/* ---- site footer: the quiet legal close after the full-screen Bento ---- */
.site-footer {
  --rule-red: clamp(76px, 12vw, 180px);
  position: relative;
  z-index: 30;
  padding: clamp(40px, 5vw, 72px) clamp(20px, 4.5vw, 68px) 28px;
  color: #f5f5f7;
  background:
    linear-gradient(180deg, rgba(255,255,255,.022), transparent 30%),
    #060607;
  /* No border-top: the rule below IS the top edge. A border plus a separate
     red bar at top:-1px meant two stacked lines of different heights, the red
     one overhanging the box by a pixel and stopping dead against the hairline. */
  border-top: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
}
/* ONE continuous rule across the whole top edge: solid red for the first
   stretch, then a long blend into the hairline. The red no longer meets the
   black at a hard vertical chop, and nothing glows into the surface. */
.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg,
    #ff2233 0,
    #ff2233 var(--rule-red),
    rgba(255,255,255,.10) calc(var(--rule-red) + 150px),
    rgba(255,255,255,.10) 100%);
}
.site-footer-inner,
.site-footer-meta {
  width: min(100%, 1440px);
  margin-inline: auto;
}
.site-footer-inner {
  display: flex;
  align-items: flex-start;   /* the columns are taller than the lockup */
  justify-content: space-between;
  gap: 34px;
}
.site-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: inherit;
  text-decoration: none;
}
/* The real monogram, not a stand-in shape: the same geometry the film stamps
   and the Bento etches into its chip, so the mark is identical everywhere it
   appears. `currentColor` keeps it themeable from one property. */
.site-footer-mark {
  height: clamp(34px, 3.3vw, 46px);
  aspect-ratio: 433 / 487;         /* the mark's own viewBox ratio — never squash it */
  flex: 0 0 auto;
}
/* Struck into the surface: the face falls grey-to-black and a single light lip
   sits one step below it, so the light reads as coming from above. Static —
   no glow, no hover, no brand colour. */
.site-footer-mark .mk-face { fill: url(#ftMarkFace); }
.site-footer-mark .mk-lip  { fill: rgba(255,255,255,.085); }
.site-footer-name {
  display: grid;
  gap: 8px;
}
/* Anton, as the rest of the site does its display type. Line-height stays
   >=1.1: Anton's caps slice at the baseline when it is set tighter. */
.site-footer-name strong {
  font-family: 'Anton', 'Helvetica Neue', Impact, sans-serif;
  font-weight: 400;
  font-size: clamp(25px, 2.4vw, 35px);
  line-height: 1.1;
  letter-spacing: .015em;
  text-transform: uppercase;
}
/* the same micro-label voice as the scroll cue and the film's drafting chrome */
.site-footer-name small {
  color: rgba(245,245,247,.42);
  font: 600 9px/1 ui-monospace, Menlo, monospace;
  letter-spacing: .22em;
  text-transform: uppercase;
}
/* Company, Contact and Legal as three labelled columns. The addresses stay
   lowercase — an email is read, not shouted — while their headings keep the
   uppercase mono voice of the rest of the footer.
   Wrapping matters from the third column on: three columns plus two 34px gaps
   overrun a 320px phone, and the row would otherwise push the page sideways
   rather than fold. Desktop has room for all three and never wraps. */
.site-footer-cols {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(34px, 6vw, 96px);
  row-gap: 30px;
}
.site-footer-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.site-footer-heading {
  margin-bottom: 9px;
  color: rgba(245,245,247,.5);
  font: 700 9.5px/1 ui-monospace, Menlo, monospace;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.site-footer-group a {
  position: relative;
  /* 24px minimum hit box (WCAG 2.2 target size); .72 lifts the 10px mono links
     from ~3.4:1 to ~6:1 on the near-black footer. */
  padding: 7px 0; min-height: 24px; display: inline-flex; align-items: center;
  color: rgba(245,245,247,.72);
  font: 700 10px/1 ui-monospace, Menlo, monospace;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .2s ease;
}
.site-footer-group a.is-mail {
  letter-spacing: .06em;
  text-transform: none;      /* addresses are typed, not shouted */
  font-weight: 600;
}
.site-footer-group a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 3px;
  height: 1px;
  background: #ff2233;
  transition: right .2s ease;
}
.site-footer-group a:hover,
.site-footer-group a:focus-visible {
  color: #fff;
}
.site-footer-group a:hover::after,
.site-footer-group a:focus-visible::after {
  right: 0;
}
.site-footer-group a:focus-visible {
  outline: 2px solid rgba(255,34,51,.7);
  outline-offset: 5px;
  border-radius: 2px;
}
.site-footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: clamp(30px, 4vw, 48px);
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.09);
  color: rgba(245,245,247,.3);
  font: 600 9px/1.5 ui-monospace, Menlo, monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
}

@media (max-width: 620px) {
  .site-footer {
    padding: 34px 20px 24px;
  }
  .site-footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
  }
  .site-footer-cols {
    width: 100%;
    gap: 30px;
  }
  .site-footer-group a {
    font-size: 9px;
    letter-spacing: .14em;
  }
  .site-footer-group a.is-mail { font-size: 10px; letter-spacing: .03em; }
  .site-footer-heading { margin-bottom: 7px; font-size: 9.5px; }
  .site-footer-mark { height: 38px; }
  .site-footer-name strong { font-size: 27px; }
  .site-footer-name small { font-size: 9px; letter-spacing: .18em; }
  .site-footer-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    margin-top: 26px;
  }
}
