/* Fair Play Films: shared stylesheet */

:root{
  --ink:#0b1b26;
  --surface:#122837;
  --surface-2:#17323f;
  --border:#2a4552;
  --paper:#eef2f0;
  --paper-dim:#b9c6c9;
  --muted:#93a4aa;
  --brass:#f0b429;
  --brass-bright:#ffcf5c;
  --oxblood:#0f3d57;
  --oxblood-bright:#175878;
  --max:1180px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important; }
}

body{
  margin:0;
  background:var(--ink);
  color:var(--paper);
  font-family:"Source Serif 4", Georgia, "Times New Roman", serif;
  font-size:17px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}

img{ max-width:100%; display:block; }

h1,h2,h3{
  font-family:"Big Shoulders Display", "Arial Narrow", sans-serif;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:0.01em;
  line-height:0.96;
  margin:0;
  text-wrap:balance;
  color:var(--paper);
}

.eyebrow{
  font-family:"IBM Plex Mono", ui-monospace, monospace;
  font-size:0.72rem;
  letter-spacing:0.16em;
  text-transform:uppercase;
  color:var(--brass-bright);
}

/* min-width:0 lets .wrap shrink inside the flex heroes; without it a long
   heading sets a min-content floor and pushes the page wider than the screen. */
.wrap{ max-width:var(--max); margin:0 auto; padding:0 28px; min-width:0; width:100%; }
/* Wider gutters on phones so body copy isn't running up against the glass.
   Desktop keeps 28px — the centred max-width already supplies the margin there. */
@media (max-width:700px){
  .wrap{ padding:0 clamp(30px, 10vw, 44px); }
}
section{ position:relative; }
a{ color:inherit; }

.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:"IBM Plex Mono", monospace;
  font-size:0.82rem;
  letter-spacing:0.08em;
  text-transform:uppercase;
  text-decoration:none;
  padding:13px 22px;
  border:1px solid var(--brass);
  color:var(--paper);
  background:transparent;
  transition:background .2s ease, color .2s ease, transform .2s ease;
  cursor:pointer;
}
.btn:hover{ background:var(--brass); color:var(--ink); transform:translateY(-1px); }
.btn.solid{ background:var(--oxblood); border-color:var(--oxblood); }
.btn.solid:hover{ background:var(--oxblood-bright); border-color:var(--oxblood-bright); color:var(--paper); }
.btn:focus-visible{ outline:2px solid var(--brass-bright); outline-offset:3px; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, summary:focus-visible{ outline:2px solid var(--brass-bright); outline-offset:2px; }

.reveal{ opacity:0; transform:translateY(18px); transition:opacity .7s ease, transform .7s ease; }
.reveal.in{ opacity:1; transform:none; }

/* ---------- nav ---------- */
header.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(11,27,38,0.88);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--border);
}
.navbar{ display:flex; align-items:center; justify-content:space-between; padding:14px 28px; max-width:var(--max); margin:0 auto; gap:20px; }
.wordmark{ display:flex; align-items:center; gap:12px; text-decoration:none; flex-shrink:0; }
.wordmark img{ height:52px; width:auto; border-radius:4px; }
.wordmark span{ font-family:"Big Shoulders Display",sans-serif; font-weight:800; letter-spacing:0.02em; font-size:1.4rem; line-height:1; text-transform:uppercase; color:var(--paper); white-space:nowrap; }
@media (max-width:520px){ .wordmark span{ font-size:1.1rem; } .wordmark img{ height:42px; } }
nav ul{ list-style:none; display:flex; gap:24px; margin:0; padding:0; flex-wrap:wrap; }
nav a{ font-family:"IBM Plex Mono",monospace; font-size:0.76rem; letter-spacing:0.1em; text-transform:uppercase; text-decoration:none; color:var(--muted); padding-bottom:3px; border-bottom:1px solid transparent; }
nav a:hover{ color:var(--brass-bright); border-color:var(--brass); }
nav a[aria-current="page"]{ color:var(--brass-bright); border-color:var(--brass); }
@media (max-width:820px){ nav ul{ gap:14px 18px; } }

/* Mobile menu button: hidden on desktop, shown below 820px */
.nav-toggle{
  display:none; background:none; border:1px solid var(--border); border-radius:4px;
  width:44px; height:44px; padding:0; cursor:pointer; color:var(--paper);
  align-items:center; justify-content:center; flex-shrink:0;
}
.nav-toggle:hover{ border-color:var(--brass); color:var(--brass-bright); }
.nav-toggle span{ display:block; width:20px; height:2px; background:currentColor; position:relative; transition:background .18s; }
.nav-toggle span::before, .nav-toggle span::after{
  content:""; position:absolute; left:0; width:20px; height:2px; background:currentColor;
  transition:transform .18s ease, top .18s ease;
}
.nav-toggle span::before{ top:-6px; }
.nav-toggle span::after{ top:6px; }
.nav-toggle[aria-expanded="true"] span{ background:transparent; }
.nav-toggle[aria-expanded="true"] span::before{ top:0; transform:rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after{ top:0; transform:rotate(-45deg); }

@media (max-width:820px){
  .navbar{ padding:10px 20px; flex-wrap:wrap; }
  .nav-toggle{ display:flex; }
  .site-header nav{
    flex-basis:100%; order:3;
    max-height:0; overflow:hidden;
    transition:max-height .26s ease;
  }
  .site-header nav[data-open="true"]{ max-height:420px; }
  nav ul{ flex-direction:column; gap:0; padding:6px 0 10px; }
  nav ul li{ border-top:1px solid var(--border); }
  nav ul li a{ display:block; padding:13px 2px; font-size:0.82rem; border-bottom:0; }
  nav a[aria-current="page"]{ border-bottom:0; }
}

/* ---------- hero (home) ---------- */
.hero{
  min-height:88vh;
  display:flex;
  align-items:flex-end;
  background:
    linear-gradient(180deg, rgba(11,27,38,0.55) 0%, rgba(11,27,38,0.55) 40%, rgba(11,27,38,0.97) 96%),
    url('images/pxl_20220617_002133877-l3wn9Kqf0iTzmcHq.jpg');
  background-size:cover;
  background-position:center 30%;
}
.hero-inner{ padding:120px 28px 40px; max-width:var(--max); margin:0 auto; width:100%; }
@media (max-width:640px){
  .hero{ min-height:min(72vh, 520px); }
  .hero-inner{ padding:70px clamp(30px, 10vw, 44px) 34px; }
}
.hero h1{ font-size:clamp(3rem, 9vw, 6.4rem); }
.hero .tag{ font-family:"Source Serif 4", serif; font-style:italic; font-weight:500; color:var(--brass-bright); font-size:clamp(1.2rem,2.4vw,1.65rem); margin-top:10px; }
.hero p.lede{ max-width:56ch; color:var(--paper-dim); margin-top:22px; font-size:1.08rem; }

.why-exist .article{ padding-top:14px; }

/* ---------- page header (subpages) ---------- */
.page-hero{
  padding:150px 0 70px;
  /* Photo banners set --page-hero-min so their height scales with width and
     holds a steady ~3.4:1 crop. Text-only heroes leave it unset and simply
     size to their content. */
  min-height:var(--page-hero-min, auto);
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  background:
    var(--page-hero-veil, linear-gradient(180deg, rgba(11,27,38,0.68) 0%, rgba(11,27,38,0.94) 100%)),
    var(--page-hero-img, none);
  background-size:cover;
  background-position:var(--page-hero-pos, center);
  border-bottom:1px solid var(--border);
}
.page-hero h1{ font-size:clamp(2.4rem,6vw,4.2rem); }
.page-hero p{ color:var(--paper-dim); max-width:60ch; margin-top:16px; font-size:1.05rem; }

/* ---------- ledger / stats ---------- */
.ledger{ background:var(--oxblood); padding:52px 0 46px; border-top:1px solid var(--brass); border-bottom:1px solid var(--brass); }
.ledger-photos{ display:grid; grid-template-columns:1fr 1.9fr; gap:16px; align-items:start; }
.ledger-photos figure{ margin:0; }
.ledger-photos img{ width:100%; height:auto; display:block; border:1px solid var(--brass); }
.ledger-caption{ font-family:"IBM Plex Mono",monospace; font-size:0.78rem; color:var(--paper-dim); margin:10px 0 0; }
@media (max-width:700px){ .ledger-photos{ grid-template-columns:1fr; } }
.ledger .kicker{ color:var(--paper); opacity:0.9; max-width:64ch; font-family:"Source Serif 4",serif; font-size:1.05rem; margin:0 0 30px; }
.stat-grid{ display:grid; grid-template-columns:repeat(6,1fr); gap:0; border-top:1px solid rgba(238,242,240,0.28); }
.stat-grid.cols-3{ grid-template-columns:repeat(3,1fr); }
.stat{ padding:20px 14px 6px; border-right:1px solid rgba(238,242,240,0.28); }
.stat:last-child{ border-right:none; }
.stat .n{ font-family:"IBM Plex Mono",monospace; font-variant-numeric:tabular-nums; font-size:clamp(1.5rem,3vw,2.1rem); font-weight:600; color:var(--paper); }
.stat .l{ font-family:"IBM Plex Mono",monospace; font-size:0.68rem; letter-spacing:0.06em; text-transform:uppercase; color:var(--paper); opacity:0.82; margin-top:4px; }
@media (max-width:900px){ .stat-grid{ grid-template-columns:repeat(3,1fr); } .stat{ border-bottom:1px solid rgba(238,242,240,0.28); } }
@media (max-width:520px){ .stat-grid{ grid-template-columns:repeat(2,1fr); } }

/* ---------- section heads ---------- */
.section-head{ padding:78px 0 0; }
.section-head.tight{ padding-top:0; }
.section-head h2{ font-size:clamp(2rem,4.4vw,3.1rem); }
.section-head .eyebrow{ display:block; margin-bottom:12px; }

/* ---------- long-form article (about) ---------- */
/* Vertical only — a `padding` shorthand here would wipe out .wrap's
   horizontal padding and push text to the screen edge on mobile. */
.article{ padding-top:36px; padding-bottom:40px; }
.article .lead{ font-family:"Source Serif 4",serif; font-style:italic; font-weight:500; font-size:clamp(1.15rem,2.2vw,1.4rem); color:var(--brass-bright); max-width:62ch; margin:0 0 26px; }
.article p{ color:var(--paper-dim); max-width:68ch; margin:0 0 18px; }
.article h3{ text-transform:none; font-size:1.7rem; margin:44px 0 16px; color:var(--paper); }
.article ol.strategy{ margin:0 0 18px; padding-left:0; list-style:none; counter-reset:step; display:grid; gap:10px; max-width:68ch; }
.article ol.strategy li{ counter-increment:step; position:relative; padding-left:38px; color:var(--paper-dim); }
.article ol.strategy li::before{ content:counter(step); position:absolute; left:0; top:1px; font-family:"IBM Plex Mono",monospace; font-size:0.78rem; color:var(--brass); border:1px solid var(--border); width:24px; height:24px; display:flex; align-items:center; justify-content:center; }
.article ul.principles{ list-style:none; padding:0; margin:0 0 18px; max-width:68ch; display:grid; gap:16px; }
.article ul.principles li{ color:var(--paper-dim); padding-left:22px; position:relative; }
.article ul.principles li::before{ content:"\2022"; position:absolute; left:0; color:var(--brass); }
.article ul.principles li strong{ display:block; color:var(--paper); font-family:"Big Shoulders Display",sans-serif; font-weight:700; text-transform:none; font-size:1.1rem; margin-bottom:2px; }
.pull{ border-left:2px solid var(--brass); padding-left:22px; margin:34px 0; font-family:"Source Serif 4",serif; font-style:italic; color:var(--brass-bright); font-size:1.2rem; max-width:56ch; }
.figure-inline{ margin:34px 0; max-width:520px; }
.figure-inline img{ width:100%; border:1px solid var(--border); }
.figure-inline figcaption{ font-family:"IBM Plex Mono",monospace; font-size:0.7rem; color:var(--muted); margin-top:8px; }

.laurels-figure{ margin:0; }
.laurels-figure img{ width:100%; border:1px solid var(--border); background:#fff; }

.press-clip{ margin:28px 0 10px; max-width:640px; }
.press-clip img{ width:100%; border:1px solid var(--border); background:#fff; }

.figure-wide{ margin:28px 0 10px; max-width:900px; }
.figure-wide img{ width:100%; border:1px solid var(--border); }

/* ---------- diversity stat row ---------- */
.diversity{ display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--border); border:1px solid var(--border); margin:30px 0 10px; max-width:760px; }
.diversity div{ background:var(--surface); padding:22px 18px; }
.diversity .n{ font-family:"IBM Plex Mono",monospace; font-variant-numeric:tabular-nums; font-size:2rem; color:var(--brass-bright); font-weight:600; }
.diversity .l{ font-family:"IBM Plex Mono",monospace; font-size:0.7rem; color:var(--muted); text-transform:uppercase; letter-spacing:0.04em; margin-top:6px; }
@media (max-width:600px){ .diversity{ grid-template-columns:1fr; } }
.diversity-sm{ max-width:460px; }
.diversity-sm div{ padding:14px 12px; }
.diversity-sm .n{ font-size:1.3rem; }
.diversity-sm .l{ font-size:0.6rem; }

/* ---------- mission (home) ---------- */
.mission{ padding:36px 0 84px; display:grid; grid-template-columns:1.1fr 0.9fr; gap:60px; align-items:start; }
.mission blockquote{ margin:0 0 22px; font-family:"Source Serif 4",serif; font-style:italic; font-weight:500; font-size:clamp(1.3rem,2.6vw,1.7rem); color:var(--brass-bright); border-left:2px solid var(--brass); padding-left:22px; }
.mission p{ color:var(--paper-dim); max-width:60ch; }
.mission .photo img{ width:100%; height:100%; object-fit:cover; aspect-ratio:4/5; border:1px solid var(--border); }
.mission .photo figcaption{ font-family:"IBM Plex Mono",monospace; font-size:0.7rem; color:var(--muted); margin-top:8px; }
@media (max-width:860px){ .mission{ grid-template-columns:1fr; } .mission .photo{ order:-1; max-width:360px; } }

/* ---------- pillars ---------- */
.pillars{ padding:0 0 90px; display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--border); border:1px solid var(--border); }
.pillar{ background:var(--surface); padding:34px 28px 30px; }
.pillar .num{ font-family:"IBM Plex Mono",monospace; color:var(--brass); font-size:0.78rem; letter-spacing:0.1em; }
.pillar h3{ font-size:1.6rem; margin-top:10px; }
.pillar p{ color:var(--muted); font-size:0.96rem; margin-top:10px; }
@media (max-width:760px){ .pillars{ grid-template-columns:1fr; } }

/* ---------- gallery ---------- */
.gallery-section{ padding-bottom:90px; }
.gallery{ column-count:4; column-gap:10px; }
.gallery a{ display:block; break-inside:avoid; margin-bottom:10px; overflow:hidden; }
.gallery img{ width:100%; height:auto; display:block; filter:saturate(0.92) contrast(1.03); transition:filter .25s ease, transform .25s ease; }
.gallery a:hover img{ filter:none; transform:scale(1.03); }
@media (max-width:900px){ .gallery{ column-count:3; } }
@media (max-width:600px){ .gallery{ column-count:2; } }

/* ---------- team ---------- */
.team{ padding-bottom:96px; }
.callsheet{ border-top:1px solid var(--border); }
.member{ display:grid; grid-template-columns:200px 1fr; gap:26px; padding:26px 0; border-bottom:1px solid var(--border); align-items:start; }
.member .photo{ width:200px; }
.member .photo img{ width:100%; height:auto; object-fit:contain; border-radius:4px; border:1px solid var(--border); filter:grayscale(0.15); }
.member .social{ display:flex; flex-wrap:wrap; gap:8px; margin-top:12px; }
.member .social a{ width:32px; height:32px; display:flex; align-items:center; justify-content:center; border:1px solid var(--border); border-radius:4px; color:var(--muted); font-family:"IBM Plex Mono",monospace; font-size:0.6rem; letter-spacing:0.02em; text-decoration:none; transition:color .15s, border-color .15s; }
.member .social a:hover{ color:var(--brass-bright); border-color:var(--brass); }
.member .social svg{ width:16px; height:16px; fill:none; stroke:currentColor; stroke-width:1.8; }
.member .role{ font-family:"IBM Plex Mono",monospace; font-size:0.72rem; letter-spacing:0.1em; text-transform:uppercase; color:var(--brass); }
.member h3{ font-size:1.6rem; text-transform:none; margin-top:4px; font-family:"Big Shoulders Display",sans-serif; font-weight:700; }
.member p{ color:var(--muted); font-size:0.94rem; margin-top:8px; max-width:70ch; }
@media (max-width:600px){ .member{ grid-template-columns:1fr; } .member .photo{ width:150px; margin:0 auto; } }

/* ---------- slate ---------- */
.slate{ padding-bottom:40px; }
.tag-row{ display:flex; gap:8px; flex-wrap:wrap; margin-bottom:14px; }
.tag{ font-family:"IBM Plex Mono",monospace; font-size:0.66rem; letter-spacing:0.08em; text-transform:uppercase; border:1px solid var(--border); padding:3px 8px; color:var(--muted); }
.tag.status{ border-color:var(--brass); color:var(--brass-bright); }

.feature{ display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:center; padding:52px 0; border-bottom:1px solid var(--border); }
.feature:first-child{ padding-top:0; }
.feature .art img{ width:100%; height:auto; display:block; border:1px solid var(--border); border-radius:4px; }
.feature .art.portrait img{ max-width:320px; margin:0 auto; }
.feature.flip .art{ order:2; }
.feature h3{ font-size:2rem; text-transform:none; font-family:"Big Shoulders Display",sans-serif; font-weight:700; margin-bottom:6px; }
.feature p{ color:var(--muted); font-size:0.96rem; margin-top:12px; max-width:60ch; }
.feature .embed{ margin-top:22px; position:relative; padding-top:56.25%; height:0; overflow:hidden; border:1px solid var(--border); border-radius:4px; background:var(--surface); }
.feature .embed iframe{ position:absolute; top:0; left:0; width:100%; height:100%; border:0; }
.feature .deck-link{ display:inline-flex; align-items:center; gap:6px; font-family:"IBM Plex Mono",monospace; text-transform:uppercase; letter-spacing:.08em; font-size:.76rem; color:var(--brass-bright); text-decoration:underline; text-underline-offset:3px; }
.feature .deck-thumb{ display:block; margin-top:10px; border:1px solid var(--border); border-radius:4px; overflow:hidden; }
.feature .deck-thumb img{ width:100%; height:auto; display:block; border:0; border-radius:0; transition:opacity .15s; }
.feature .deck-thumb:hover img{ opacity:0.85; }
@media (max-width:760px){ .feature{ grid-template-columns:1fr; gap:22px; } .feature.flip .art{ order:0; } }

/* ---------- timeline ---------- */
.timeline-section{ padding-bottom:96px; }
.timeline{ display:grid; gap:36px; }
.tl-item{ position:relative; display:grid; grid-template-columns:220px 1fr; gap:26px; align-items:center; padding-bottom:36px; border-bottom:1px solid var(--border); }
.tl-item:last-child{ border-bottom:none; padding-bottom:0; }
.tl-img{ width:100%; aspect-ratio:16/9; object-fit:cover; border:1px solid var(--border); }
.tl-date{ font-family:"IBM Plex Mono",monospace; font-size:0.76rem; letter-spacing:0.08em; text-transform:uppercase; color:var(--brass-bright); }
.tl-item p{ margin-top:6px; color:var(--paper-dim); max-width:64ch; }
.tl-link{ display:inline-block; margin-top:10px; font-family:"IBM Plex Mono",monospace; font-size:0.78rem; color:var(--brass-bright); text-decoration:underline; }
@media (max-width:640px){ .tl-item{ grid-template-columns:1fr; } }

/* ---------- faqs ---------- */
.faq-list{ border-top:1px solid var(--border); max-width:820px; }
.faq-item{ border-bottom:1px solid var(--border); padding:6px 0; }
.faq-item summary{ cursor:pointer; list-style:none; display:flex; justify-content:space-between; align-items:center; gap:20px; padding:20px 2px; font-family:"Big Shoulders Display",sans-serif; font-weight:700; font-size:1.25rem; text-transform:none; color:var(--paper); }
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary .plus{ font-family:"IBM Plex Mono",monospace; color:var(--brass); flex-shrink:0; transition:transform .2s ease; }
.faq-item[open] summary .plus{ transform:rotate(45deg); }
.faq-item .a{ color:var(--paper-dim); padding:0 2px 22px; max-width:66ch; }
.faq-item .a p{ margin:0 0 12px; }
.faq-item .a a{ color:var(--brass-bright); text-decoration:underline; text-underline-offset:3px; }
.faq-item .a a:hover{ color:var(--brass); }
.faq-item .a ul{ margin:0 0 12px; padding-left:0; list-style:none; }
.faq-item .a ul li{ position:relative; padding-left:20px; margin:0 0 8px; }
.faq-item .a ul li::before{ content:"\2022"; position:absolute; left:2px; color:var(--brass); }

/* ---------- contact ---------- */
.seeks{ display:grid; grid-template-columns:repeat(2,1fr); gap:1px; background:var(--border); border:1px solid var(--border); margin:34px 0 60px; }
.seeks div{ background:var(--surface); padding:22px 24px; }
.seeks .l{ font-family:"IBM Plex Mono",monospace; font-size:0.7rem; letter-spacing:0.08em; text-transform:uppercase; color:var(--brass); margin-bottom:8px; }
.seeks p{ color:var(--paper-dim); font-size:0.94rem; margin:0; }
@media (max-width:700px){ .seeks{ grid-template-columns:1fr; } }

/* ---------- collective mention on contact ---------- */
.inline-note{ border:1px solid var(--border); background:var(--surface); padding:18px 22px; font-size:0.94rem; color:var(--paper-dim); max-width:640px; margin:0 0 40px; }
.inline-note a{ color:var(--brass-bright); text-decoration:underline; }

/* ---------- footer ---------- */
.join-form{ display:flex; gap:10px; margin-top:10px; flex-wrap:wrap; }
.join-form input[type="email"]{
  background:transparent; border:1px solid var(--border); color:var(--paper);
  font-family:"IBM Plex Mono",monospace; font-size:0.82rem; padding:10px 14px; min-width:200px; flex:1;
}
.join-form input::placeholder{ color:var(--muted); }

footer{ padding:34px 0 22px; border-top:1px solid var(--border); }
.foot-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:36px; }
.foot-grid h4{ font-family:"IBM Plex Mono",monospace; font-size:0.72rem; letter-spacing:0.1em; text-transform:uppercase; color:var(--brass); margin:0 0 14px; }
.foot-grid ul{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:8px; font-size:0.92rem; color:var(--muted); }
.foot-grid a{ text-decoration:none; color:var(--muted); }
.foot-grid a:hover{ color:var(--brass-bright); }
.foot-brand p{ color:var(--muted); font-size:0.9rem; margin-top:12px; max-width:36ch; }
.foot-signup{ margin-top:16px; max-width:340px; }
.foot-signup .eyebrow{ display:block; margin-bottom:2px; }
.foot-social{ display:flex; gap:10px; margin-top:18px; }
.foot-social a{ width:34px; height:34px; display:flex; align-items:center; justify-content:center; border:1px solid var(--border); border-radius:4px; color:var(--muted); font-family:"IBM Plex Mono",monospace; font-size:0.6rem; text-decoration:none; transition:color .15s, border-color .15s; }
.foot-social a:hover{ color:var(--brass-bright); border-color:var(--brass); }
.foot-social svg{ width:17px; height:17px; fill:none; stroke:currentColor; stroke-width:1.8; }
.foot-bottom{ margin-top:26px; padding-top:16px; border-top:1px solid var(--border); display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; font-family:"IBM Plex Mono",monospace; font-size:0.72rem; color:var(--muted); }
@media (max-width:760px){ .foot-grid{ grid-template-columns:1fr 1fr; } }

.banner{
  background:var(--brass); color:var(--ink); font-family:"IBM Plex Mono",monospace;
  font-size:0.78rem; letter-spacing:0.04em; text-align:center; padding:10px 16px;
}
.banner b{ font-weight:600; }
