/* ═══════════════════════════════════════════════════════════════
   JAYDEN GILL
   One stylesheet. Mobile first.

   Type is a single family — Archivo variable — used across its
   width axis. Expanded and heavy for names and numbers, normal
   width for reading. No second or third font.

   Colour is a dark room with his kit blue in it. Red appears only
   where the opposing corner does.
   ═══════════════════════════════════════════════════════════ */

*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}

/* ══════════ TYPE — self-hosted, no third-party request ══════════
   Archivo variable (wght 400–900, wdth 100–125%). Served from our
   own origin so first paint never waits on fonts.googleapis.com.
   unicode-range means latin-ext only downloads if a page needs it. */
@font-face{
  font-family:'Archivo';
  font-style:normal;
  font-weight:400 900;
  font-stretch:100% 125%;
  font-display:swap;
  src:url(/assets/fonts/archivo-latin-var.woff2) format('woff2');
  unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
@font-face{
  font-family:'Archivo';
  font-style:normal;
  font-weight:400 900;
  font-stretch:100% 125%;
  font-display:swap;
  src:url(/assets/fonts/archivo-latin-ext-var.woff2) format('woff2');
  unicode-range:U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}

:root{
  --bg:#080D12;
  --bg-2:#0E161E;
  --bg-3:#16212B;
  --line:rgba(242,245,247,.14);
  --line-2:rgba(242,245,247,.08);

  --fg:#F2F5F7;
  --fg-2:#B6C3CD;   /* 9.9:1 on --bg */
  --fg-3:#8B9BA8;   /* 6.3:1 on --bg */

  --blue:#0B96DC;
  --blue-l:#4FBDF0;
  --red:#E0563B;

  --gut:clamp(18px,5vw,64px);
  --sp:clamp(52px,9vw,112px);

  --f:'Archivo',system-ui,-apple-system,'Segoe UI',sans-serif;

  /* Motion. Deceleration curves only — no bounce or elastic, this is a
     fighter's site and the movement should read as confident, not cute. */
  --e-out:cubic-bezier(.22,1,.36,1);
  --e-exp:cubic-bezier(.16,1,.3,1);
}

/* ══════════ MOTION ══════════
   The `anim` class is set on <html> by a one-line script in each head,
   and ONLY when the visitor has not asked for reduced motion. Nothing
   here can hide content on its own: with no JS, or with reduced motion,
   the class is absent and every element renders in its natural state. */
@keyframes riseIn{from{opacity:0;transform:translateY(22px)}to{opacity:1;transform:none}}
@keyframes settle{from{transform:scale(1.06)}to{transform:scale(1)}}

.anim .hero-img img{animation:settle 2.2s var(--e-exp) both}
.anim .hero .kicker{animation:riseIn .7s .05s var(--e-out) both}
.anim .hero-name{animation:riseIn .8s .14s var(--e-out) both}
.anim .hero-facts{animation:riseIn .8s .26s var(--e-out) both}

/* Scroll reveals. site.js tags the elements and adds .in as they arrive. */
.anim [data-reveal]{opacity:0;transform:translateY(18px);
  transition:opacity .65s var(--e-out),transform .65s var(--e-out)}
.anim [data-reveal].in{opacity:1;transform:none}

html{-webkit-text-size-adjust:100%;scroll-behavior:smooth}
body{
  background:var(--bg);color:var(--fg);
  font-family:var(--f);font-size:18px;line-height:1.55;font-weight:400;
  font-variation-settings:'wdth' 100;
  /* Keep this as `hidden`, not `clip`. Because <html> is overflow:visible,
     the BODY's overflow is what propagates to the viewport — and `clip`
     there stops the page scrolling at all. `hidden` propagates as
     hidden-x / auto-y, which is the sideways-scroll guard we want. */
  -webkit-font-smoothing:antialiased;overflow-x:hidden;
}
img,video{display:block;max-width:100%;height:auto}
a{color:inherit;text-decoration:none}
:focus-visible{outline:3px solid var(--blue-l);outline-offset:3px}
::selection{background:var(--blue);color:#04222F}

.skip{position:absolute;top:-200px;left:12px;background:var(--blue);color:#04222F;padding:14px 22px;font-weight:700;z-index:999}
.skip:focus{top:12px}
.sr{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap}

/* ══════════ TYPE SCALE ══════════
   Expanded + heavy for anything that is a name, a number or a
   headline. Nothing on this site is set smaller than 14px. */
.xl,.lg,.md,.sm-cap{font-variation-settings:'wdth' 125;text-transform:uppercase;font-weight:800;line-height:.92;letter-spacing:-.01em}
.xl{font-size:clamp(46px,13vw,124px);line-height:.86;font-weight:900}
.lg{font-size:clamp(32px,7.5vw,64px)}
.md{font-size:clamp(23px,4.6vw,34px)}
.sm-cap{font-size:clamp(15px,3.4vw,17px);letter-spacing:.02em;line-height:1.1}

.kicker{font-variation-settings:'wdth' 112;font-weight:700;font-size:14px;letter-spacing:.1em;
  text-transform:uppercase;color:var(--blue-l)}
.eyebrow{font-weight:600;font-size:15px;color:var(--fg-3)}

p{max-width:32em;color:var(--fg-2);font-size:clamp(17px,4.2vw,19px);line-height:1.6}
p + p{margin-top:.8em}
.big-p{font-size:clamp(19px,5vw,24px);line-height:1.45;color:var(--fg);max-width:24em;font-weight:400}

/* ══════════ LAYOUT ══════════ */
.wrap{max-width:1180px;margin:0 auto;padding-left:var(--gut);padding-right:var(--gut)}
section{padding:var(--sp) 0}
.rule{border:0;border-top:1px solid var(--line);margin:0}
.sec-top{display:flex;align-items:baseline;justify-content:space-between;gap:8px 16px;flex-wrap:wrap;
  padding-bottom:20px;margin-bottom:clamp(26px,5vw,40px);border-bottom:1px solid var(--line)}
.sec-top a{color:var(--blue-l);font-weight:600;font-size:16px;display:inline-flex;align-items:center;min-height:44px}
.sec-top a:hover{text-decoration:underline}
/* .sec-top already draws a rule underneath it, and the lists below open
   with a 2px rule of their own — stacked, they read as a mistake. Drop
   the list's rule when it sits directly under a heading block. */
.sec-top + .reach,.sec-top + .bouts,.sec-top + .plainlist,.sec-top + .tape{border-top:0}

/* ══════════ LAYOUT SHIFT RESERVATIONS ══════════
   The header, tally and contact rows are built by site.js, so they are
   zero-height in the HTML and shove the page down if the script is slow
   to arrive. These hold their space up front. Only blocks with a FIXED
   structure are reserved — the header is always one bar, the tally is
   always four cells, Direct is always four rows — so editing data.js
   can't put these out of step. Measured, not estimated.
   The next-fight block and the sponsor grid are deliberately NOT
   reserved: their height follows data.js, so any number hard-coded here
   would rot the first time the fight card or the sponsor list changes.
   The one slow part of the next-fight block, the poster, holds its own
   space via aspect-ratio on .next-poster instead. */
header[data-header]{display:block;min-height:71px}
.tally:empty{min-height:209px}
.reach:empty{min-height:289px}
@media(min-width:700px){.tally:empty{min-height:160px}}
@media(min-width:900px){header[data-header]{min-height:72px}.reach:empty{min-height:262px}}

/* ══════════ HEADER + MENU ══════════ */
.hdr{position:sticky;top:0;z-index:120;background:rgba(8,13,18,.92);backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);border-bottom:1px solid var(--line-2)}
.hdr-in{max-width:1180px;margin:0 auto;padding:12px var(--gut);display:flex;align-items:center;justify-content:space-between;gap:14px}
.brand{display:flex;align-items:center;gap:11px;min-height:44px}
.brand .jg{width:38px;height:26px;color:var(--blue);flex:0 0 auto}
.brand span{font-variation-settings:'wdth' 118;font-weight:800;font-size:19px;letter-spacing:.02em;text-transform:uppercase}
.hdr-nav{display:none}
.menu-btn{display:flex;align-items:center;gap:9px;background:none;border:1px solid var(--line);
  color:var(--fg);font-family:var(--f);font-weight:700;font-size:15px;padding:11px 16px;min-height:46px;cursor:pointer}
.menu-btn i{display:block;width:18px;height:11px;position:relative}
.menu-btn i::before,.menu-btn i::after{content:'';position:absolute;left:0;right:0;height:2px;background:currentColor;transition:transform .25s}
.menu-btn i::before{top:0}.menu-btn i::after{bottom:0}

.drawer{position:fixed;inset:0;z-index:200;background:var(--bg);display:flex;flex-direction:column;
  transform:translateY(-100%);transition:transform .34s cubic-bezier(.22,1,.36,1);visibility:hidden}
.drawer[data-open]{transform:none;visibility:visible}
.drawer-top{display:flex;align-items:center;justify-content:space-between;gap:14px;
  padding:12px var(--gut);border-bottom:1px solid var(--line-2);min-height:63px}
.drawer-close{background:none;border:1px solid var(--line);color:var(--fg);font-family:var(--f);
  font-weight:700;font-size:15px;padding:11px 18px;min-height:46px;cursor:pointer}
.drawer-links{flex:1;overflow-y:auto;padding:8px var(--gut) 24px;-webkit-overflow-scrolling:touch}
.drawer-links a{display:flex;align-items:center;justify-content:space-between;gap:14px;
  padding:20px 0;border-bottom:1px solid var(--line-2);
  font-variation-settings:'wdth' 125;font-weight:800;text-transform:uppercase;
  font-size:clamp(28px,8vw,42px);line-height:1;min-height:64px}
.drawer-links a[aria-current]{color:var(--blue-l)}
.drawer-links a em{font-variation-settings:'wdth' 100;font-style:normal;font-weight:600;
  font-size:15px;text-transform:none;color:var(--fg-3);text-align:right;max-width:11em;line-height:1.3}
.drawer-foot{padding:20px var(--gut) calc(20px + env(safe-area-inset-bottom));border-top:1px solid var(--line-2);
  display:flex;gap:10px;flex-wrap:wrap}

@media(min-width:900px){
  .menu-btn{display:none}
  .hdr-nav{display:flex;gap:clamp(14px,2vw,28px);align-items:center}
  .hdr-nav a{font-weight:600;font-size:16px;color:var(--fg-2);padding:10px 0;border-bottom:2px solid transparent}
  .hdr-nav a:hover{color:var(--fg)}
  .hdr-nav a[aria-current]{color:var(--fg);border-bottom-color:var(--blue)}
  .hdr-nav .cta{background:var(--blue);color:#04222F;font-weight:700;padding:11px 18px;border:0}
  .hdr-nav .cta:hover{background:var(--blue-l)}
}

/* ══════════ BUTTONS ══════════ */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:10px;
  font-family:var(--f);font-weight:700;font-size:16px;padding:15px 26px;min-height:54px;
  border:1px solid var(--fg);color:var(--fg);background:none;cursor:pointer;text-align:center}
.btn:hover{background:var(--fg);color:var(--bg)}
.btn-blue{background:var(--blue);border-color:var(--blue);color:#04222F}
.btn-blue:hover{background:var(--blue-l);border-color:var(--blue-l);color:#04222F}
.btns{display:flex;gap:12px;flex-wrap:wrap;margin-top:clamp(22px,4vw,30px)}
@media(max-width:600px){.btn{width:100%}}

/* ══════════ HERO ══════════ */
.hero{position:relative;min-height:min(88svh,760px);display:flex;align-items:flex-end;overflow:hidden;background:var(--bg-2)}
.hero-img{position:absolute;inset:0}
.hero-img img{width:100%;height:100%;object-fit:cover;object-position:center 30%}
.hero-veil{position:absolute;inset:0;background:
  linear-gradient(to top,var(--bg) 4%,rgba(8,13,18,.82) 34%,rgba(8,13,18,.2) 74%,rgba(8,13,18,.1) 100%),
  linear-gradient(to right,rgba(8,13,18,.72) 0%,rgba(8,13,18,.25) 46%,rgba(8,13,18,0) 78%)}
.hero-in{position:relative;z-index:3;width:100%;max-width:1180px;margin:0 auto;
  padding:0 var(--gut) clamp(30px,6vw,58px)}
.hero-name{display:block}
.hero-name b{display:block;font-weight:inherit}
.hero-name .l2{color:var(--blue)}
.hero-facts{display:flex;flex-wrap:wrap;gap:0;margin-top:clamp(18px,4vw,26px);
  border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.hero-facts div{flex:1 1 0;min-width:0;padding:13px 12px 13px 0}
.hero-facts dt{font-size:14px;color:var(--fg-3);font-weight:500;margin-bottom:2px}
.hero-facts dd{font-variation-settings:'wdth' 112;font-weight:800;text-transform:uppercase;
  font-size:clamp(16px,4.4vw,20px);letter-spacing:-.01em;white-space:nowrap}
/* Desktop shows the full width of the photograph, so there is no
   horizontal crop to pan — Jayden is on the LEFT of the frame and the
   type was sitting straight on top of him (and on the photographer's
   watermark). Above 900px the copy moves to a right-hand column and the
   side veil flips, leaving his face and the punch in clear space. */
@media(min-width:900px){
  .hero-img img{object-position:center 18%}
  .hero-in{display:grid;grid-template-columns:1fr minmax(0,min(660px,56%))}
  .hero-in > *{grid-column:2}
  /* Sized to the column rather than the viewport. "JAYDEN" measures
     5.284em at wdth 125 / wght 900, so the cap and the column width are
     set together to keep it on one line — it was breaking as "JAYD / EN".
     overflow-wrap:normal stops the global safety net hyphenating the name
     if it ever does run long. */
  .hero-name{font-size:clamp(46px,8.4vw,106px);overflow-wrap:normal}
  .hero-veil{background:
    linear-gradient(to top,var(--bg) 4%,rgba(8,13,18,.8) 30%,rgba(8,13,18,.18) 70%,rgba(8,13,18,.08) 100%),
    linear-gradient(to left,rgba(8,13,18,.88) 0%,rgba(8,13,18,.5) 34%,rgba(8,13,18,0) 66%)}
}

/* ══════════ NEXT FIGHT ══════════ */
.next{background:var(--bg-2);border-top:3px solid var(--blue)}
.next-grid{display:grid;gap:clamp(24px,5vw,52px);align-items:center}
@media(min-width:860px){.next-grid{grid-template-columns:.95fr 1.05fr}}
/* Holds the poster's space before it decodes, so the block doesn't
   collapse to a black rectangle and then jump. */
.next-poster{border:1px solid var(--line);background:#000;aspect-ratio:700/869}
.next-poster img{width:100%;height:100%;object-fit:cover}
.countdown{font-variation-settings:'wdth' 118;font-weight:800;text-transform:uppercase;
  letter-spacing:.02em;font-size:clamp(15px,3.6vw,17px);color:var(--blue-l);
  margin-top:8px;display:inline-flex;align-items:center;gap:9px}
.countdown::before{content:'';width:7px;height:7px;border-radius:50%;background:var(--blue);flex:0 0 auto}
.next-vs{margin-top:6px}
.next-vs .a{color:var(--fg)}
.next-vs .b{color:var(--blue)}
/* the "v" is a joiner, not part of either name — keep it quiet */
.next-vs .v{color:var(--fg-3)}
.next-meta{margin-top:clamp(20px,4vw,26px);display:grid;gap:0}
.next-meta div{display:flex;justify-content:space-between;gap:6px 16px;flex-wrap:wrap;padding:13px 0;border-bottom:1px solid var(--line-2)}
.next-meta dt{color:var(--fg-3);font-size:16px;font-weight:500}
.next-meta dd{font-weight:700;font-size:16px;text-align:right;margin-left:auto;min-width:0}

/* ══════════ RECORD STRIP ══════════ */
.tally{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:var(--line-2);border-block:1px solid var(--line)}
.tally.four{grid-template-columns:repeat(2,1fr)}
@media(min-width:700px){.tally.four{grid-template-columns:repeat(4,1fr)}}
.tally div{background:var(--bg);padding:clamp(20px,5vw,32px) 8px;text-align:center}
.tally b{display:block;font-variation-settings:'wdth' 125;font-weight:900;
  font-size:clamp(42px,11vw,78px);line-height:.85}
.tally .w b{color:var(--blue)}
.tally .l b{color:var(--red)}
.tally span{display:block;font-size:15px;color:var(--fg-3);margin-top:8px;font-weight:500;line-height:1.3;padding:0 6px}

/* ══════════ RECORD TABLE ══════════ */
.bouts{border-top:2px solid var(--fg)}
.bout{display:grid;gap:4px 20px;padding:clamp(18px,4vw,24px) 0;border-bottom:1px solid var(--line-2)}
.bout-head{display:flex;align-items:baseline;justify-content:space-between;gap:12px;flex-wrap:wrap}
.bout-opp{font-variation-settings:'wdth' 112;font-weight:800;text-transform:uppercase;
  font-size:clamp(19px,4.8vw,26px);line-height:1.05;min-width:0;overflow-wrap:anywhere}
.res{font-variation-settings:'wdth' 125;font-weight:900;font-size:16px;padding:5px 12px;color:#04222F;flex:0 0 auto}
.res.w{background:var(--blue)}
.res.l{background:var(--red);color:#2B0A03}
.res.d{background:var(--fg-3)}
.bout-line{color:var(--fg-3);font-size:16px;font-weight:500}
.bout-note{color:var(--fg-2);font-size:16px;max-width:44em}
.bout-tags{display:flex;gap:8px;flex-wrap:wrap;margin-top:4px}
.tag{font-size:14.5px;font-weight:600;padding:4px 10px;border:1px solid var(--line);color:var(--fg-3)}
.tag.a{border-color:var(--blue);color:var(--blue-l)}

/* ══════════ TAPE ══════════ */
.tape{border-top:2px solid var(--fg)}
.tape div{display:flex;justify-content:space-between;align-items:baseline;gap:14px;flex-wrap:wrap;
  padding:14px 0;border-bottom:1px solid var(--line-2)}
.tape dt{color:var(--fg-3);font-size:16px;font-weight:500;flex:0 0 auto}
.tape dd{font-variation-settings:'wdth' 112;font-weight:700;text-transform:uppercase;
  font-size:clamp(16px,4.2vw,18px);text-align:right;min-width:0;overflow-wrap:anywhere;margin-left:auto}
.tape dd small{display:block;font-variation-settings:'wdth' 100;font-weight:400;font-size:14.5px;
  text-transform:none;color:var(--fg-3);margin-top:2px}

/* ══════════ PHOTO BLOCKS ══════════ */
.shot{position:relative;background:var(--bg-2)}
.shot img{width:100%;height:auto}
.shot figcaption{padding:12px 0 0;color:var(--fg-3);font-size:15px;font-weight:500}
.duo{display:grid;gap:clamp(16px,3vw,26px)}
@media(min-width:760px){.duo{grid-template-columns:1fr 1fr;align-items:start}}
.duo > figure{margin:0}
.duo > figure img,.duo > figure video{width:100%;aspect-ratio:4/5;object-fit:cover}
.band{position:relative;background:var(--bg-2)}
.band img{width:100%;height:clamp(260px,52vw,520px);object-fit:cover;object-position:center 15%}

/* ══════════ SPONSORS ══════════ */
.backers{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1px;background:var(--line-2);
  border:1px solid var(--line-2)}
@media(min-width:760px){.backers{grid-template-columns:repeat(4,minmax(0,1fr))}}
/* Centred on a phone. Bottom-aligning a name inside a 140px box works
   in a four-across desktop row, but stacked 2x2 on mobile it left a
   dead void above every sponsor and the section read as unfinished. */
.backers a{background:var(--bg);padding:clamp(20px,4vw,38px) 18px;display:flex;flex-direction:column;
  gap:7px;justify-content:center;min-height:clamp(104px,26vw,190px);transition:background .2s,color .2s}
@media(min-width:760px){.backers a{justify-content:flex-end;gap:9px}}
.backers a{min-width:0}
.backers a:hover{background:var(--bg-3)}
.backers a:hover .nm{color:var(--blue-l)}
.backers .nm{font-variation-settings:'wdth' 112;font-weight:800;text-transform:uppercase;
  font-size:clamp(17px,4.2vw,26px);line-height:1.04;letter-spacing:-.005em;overflow-wrap:anywhere;min-width:0}
.backers .rl{font-size:14.5px;color:var(--fg-3);font-weight:500}

/* ══════════ QUOTE ══════════ */
.quote{border-left:3px solid var(--blue);padding-left:clamp(16px,4vw,24px)}
.quote p{font-size:clamp(19px,4.8vw,26px);line-height:1.36;color:var(--fg);max-width:19em;font-weight:500}
.quote cite{display:block;margin-top:14px;font-style:normal;font-size:15px;color:var(--fg-3);font-weight:500;max-width:34em}
.quote cite a{color:var(--fg-2);text-decoration:underline;text-underline-offset:3px;padding:4px 0;display:inline-block}

/* ══════════ SESSIONS / LIST ══════════ */
.plainlist{border-top:2px solid var(--fg)}
.plainlist li{list-style:none;display:flex;justify-content:space-between;align-items:baseline;gap:6px 16px;flex-wrap:wrap;
  padding:16px 0;border-bottom:1px solid var(--line-2);font-size:17px;font-weight:500;color:var(--fg-2)}
.plainlist li b{font-variation-settings:'wdth' 112;font-weight:700;text-transform:uppercase;
  font-size:17px;color:var(--fg);flex:1 1 auto;min-width:0}
.plainlist li span{color:var(--fg-3);font-size:15.5px;text-align:right;flex:1 1 auto;min-width:0}
/* On a phone the label/value pair only sometimes fits on one line, so the
   right-aligned values zig-zagged — some inline, some dropped to their own
   line. Stack them left-aligned instead; it reads as a list, not a table. */
@media(max-width:600px){
  .plainlist li{flex-direction:column;align-items:flex-start;gap:3px}
  .plainlist li span{text-align:left}
}

.price-row{display:flex;align-items:baseline;gap:6px 14px;flex-wrap:wrap;margin-top:clamp(20px,4vw,26px)}
.price-fig{font-variation-settings:'wdth' 112;font-weight:900;font-size:clamp(38px,10.5vw,72px);
  line-height:.9;color:var(--blue);flex:1 1 100%;min-width:0}
.price-unit{font-size:18px;color:var(--fg-3);font-weight:500}

/* ══════════ FORM ══════════ */
form{max-width:640px}
.field{margin-bottom:18px}
label{display:block;font-size:16px;font-weight:600;color:var(--fg-2);margin-bottom:7px}
input,select,textarea{width:100%;background:var(--bg-2);border:1px solid var(--line);color:var(--fg);
  padding:15px 15px;font-family:var(--f);font-size:17px;border-radius:0;min-height:54px}
input:focus,select:focus,textarea:focus{outline:none;border-color:var(--blue)}
textarea{min-height:130px;resize:vertical}
.honeypot{position:absolute!important;left:-9999px}
.small-note{font-size:15px;color:var(--fg-3);margin-top:14px;max-width:34em}

/* ══════════ CONTACT LIST ══════════ */
.reach{border-top:2px solid var(--fg)}
.reach a{display:flex;align-items:center;justify-content:space-between;gap:8px 16px;flex-wrap:wrap;
  padding:18px 0;border-bottom:1px solid var(--line-2);min-height:64px}
.reach a:hover .rv{color:var(--blue-l)}
.reach .rk{color:var(--fg-3);font-size:16px;font-weight:500}
/* NOT uppercased. These values are an email address and an @handle —
   "JAYDEN@JAYDENGILL.COM" reads wrong and runs the full width of a
   phone. The weight and width axis carry the emphasis instead. */
.reach .rv{font-variation-settings:'wdth' 108;font-weight:700;
  font-size:clamp(15.5px,4vw,18px);text-align:right;margin-left:auto;min-width:0;overflow-wrap:anywhere}

/* ══════════ FOOTER ══════════ */
.foot{border-top:1px solid var(--line);padding:clamp(36px,7vw,56px) 0 calc(clamp(30px,6vw,44px) + env(safe-area-inset-bottom))}
.foot-grid{display:grid;gap:clamp(26px,5vw,40px)}
@media(min-width:760px){.foot-grid{grid-template-columns:1.4fr 1fr 1fr}}
.foot h4{font-size:15px;color:var(--fg-3);font-weight:600;margin-bottom:12px}
.foot ul{list-style:none}
/* 10px vertical padding, not 7 — these were landing at 40px tall, just
   under the 44px minimum touch target. */
.foot li a{display:inline-flex;align-items:center;min-height:44px;padding:10px 0;
  font-size:17px;font-weight:500;color:var(--fg-2)}
.foot li a:hover{color:var(--fg)}
.foot-base{margin-top:clamp(28px,5vw,40px);padding-top:20px;border-top:1px solid var(--line-2);
  display:flex;justify-content:space-between;gap:14px;flex-wrap:wrap;color:var(--fg-3);font-size:15px}
.foot-base a{color:var(--fg-2);text-decoration:underline;text-underline-offset:3px}

/* ══════════ MICRO-INTERACTIONS ══════════ */

/* Header tightens and solidifies once you leave the hero. */
.hdr{transition:background .3s var(--e-out),border-color .3s var(--e-out)}
.hdr-in{transition:padding .3s var(--e-out)}
.hdr.scrolled{background:rgba(8,13,18,.98);border-bottom-color:var(--line)}
@media(min-width:900px){.hdr.scrolled .hdr-in{padding-top:7px;padding-bottom:7px}}

/* Photographs lean in slightly on hover. The figure clips the overflow. */
.strip figure{overflow:hidden}
.strip img{transition:transform .7s var(--e-out)}
.strip figure:hover img{transform:scale(1.045)}
.strip figure.poster:hover img{transform:none}   /* artwork stays put */
.strip figcaption{transition:transform .4s var(--e-out)}

/* Bout rows acknowledge the pointer without shouting. */
.bout{transition:background .25s var(--e-out),padding-left .25s var(--e-out);
  padding-left:0;margin-inline:calc(var(--gut) * -0.4);padding-inline:calc(var(--gut) * 0.4)}
.bout:hover{background:var(--bg-2)}
.res{transition:transform .25s var(--e-out)}
.bout:hover .res{transform:scale(1.06)}

/* Sponsor cells lift a touch. */
.backers a{transition:background .25s var(--e-out),transform .25s var(--e-out)}
.backers a:hover{transform:translateY(-3px)}

/* Buttons take the press. */
.btn{transition:background .2s var(--e-out),color .2s var(--e-out),
  border-color .2s var(--e-out),transform .12s var(--e-out)}
.btn:active{transform:translateY(1px)}

/* Contact rows nudge their value across. */
.reach .rv{transition:transform .25s var(--e-out),color .25s var(--e-out)}
.reach a:hover .rv{transform:translateX(-4px)}

/* Section links slide their arrow. */
.sec-top a{transition:color .2s var(--e-out)}

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

/* safety net — nothing may push the page sideways */
.wrap,section,main{max-width:100%}
.xl,.lg,.md{overflow-wrap:anywhere}

/* ══════════ SPLIT — stops desktop hugging the left ══════════ */
.split{display:grid;gap:clamp(24px,4vw,56px);align-items:center}
@media(min-width:900px){.split{grid-template-columns:1fr 1fr}}
.split figure{margin:0}
/* Controlled height rather than a forced ratio: portrait sources were
   either cropped to a meaningless band or dwarfing the copy beside them. */
.split figure img{width:100%;height:clamp(260px,32vw,440px);object-fit:cover}
.ar-wide img{object-position:center 40%}
.ar-tall img{object-position:center 32%}
@media(min-width:900px){.split-start{align-items:start}}

/* ══════════ PHOTO STRIP ══════════ */
.strip{display:grid;gap:2px;grid-template-columns:1fr 1fr}
@media(min-width:760px){.strip{grid-template-columns:repeat(4,1fr)}}
.strip figure{position:relative;background:var(--bg-2);margin:0}
/* Anchored to the top, not the centre. These are people standing up, and
   the sources are not all 3:4 — backstage-600 is 600x1018 (0.59) going
   into a 0.75 box, so a centred crop took ~10% off the top, which is
   exactly where the heads were. Sources already at 3:4 are unaffected. */
.strip img{width:100%;aspect-ratio:3/4;object-fit:cover;object-position:center top}
/* A poster is artwork, not a photograph — letterbox it rather than slicing
   25% off the sides and losing the names and the date. */
.strip figure.poster img{object-fit:contain;background:#000}
/* For group shots wider than 3:4, pull the crop to Jayden's side. */
.strip figure.pos-left img{object-position:24% top}
.strip figcaption{position:absolute;left:0;right:0;bottom:0;padding:40px 12px 12px;
  font-size:14.5px;font-weight:600;color:var(--fg);line-height:1.3;
  background:linear-gradient(to top,rgba(8,13,18,.96) 0%,rgba(8,13,18,.86) 42%,rgba(8,13,18,0) 100%)}

/* ══════════ VIDEO + PHOTO PAIR ══════════ */
.clip{display:grid;gap:clamp(16px,3vw,26px);align-items:start}
@media(min-width:760px){.clip{grid-template-columns:.62fr 1.38fr}}
.clip figure{margin:0}
.clip video{width:100%;background:var(--bg-2);display:block;aspect-ratio:9/16;object-fit:cover}
@media(min-width:760px){.clip video{aspect-ratio:auto;height:clamp(420px,46vw,620px)}
  .clip > figure:last-child img{height:clamp(420px,46vw,620px);object-fit:cover;width:100%}}
.credit{font-size:14px;color:var(--fg-3);margin-top:10px}

/* ══════════ CUT-OUT FIGURE ══════════ */
.cut{position:relative;display:grid;place-items:end center;background:
  linear-gradient(160deg,var(--bg-3),var(--bg-2));overflow:hidden;min-height:340px}
/* Needs to out-specify `.duo > figure img` (0,1,2), which was forcing
   aspect-ratio:4/5 + object-fit:cover onto the cut-out and slicing the
   top and bottom off the figure. A cut-out is shown whole or not at all. */
.cut img,.duo > figure.cut img{max-height:520px;width:auto;height:auto;
  aspect-ratio:auto;object-fit:contain;position:relative;z-index:2}
.cut::before{content:'';position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);
  width:min(78%,340px);aspect-ratio:1;border-radius:50%;background:var(--blue);opacity:.16;z-index:1}

/* ══════════ CONTACT SPLIT ══════════ */
.contact-grid{display:grid;gap:clamp(28px,5vw,64px);align-items:start}
@media(min-width:900px){.contact-grid{grid-template-columns:1fr 1fr}}
.contact-grid form{max-width:none}
