/* ==========================================================================
   Self-hosted variable fonts. Subset to Latin, axes preserved so the design
   can drive weight and optical size through font-variation-settings.
   Paths are relative to this file, so they work at any page depth.
   ========================================================================== */
@font-face{
  font-family:"Fraunces";
  src:url("../fonts/Fraunces.woff2") format("woff2-variations"),
      url("../fonts/Fraunces.woff2") format("woff2");
  font-weight:100 900; font-style:normal; font-display:swap;
}
@font-face{
  font-family:"Inter Tight";
  src:url("../fonts/InterTight.woff2") format("woff2-variations"),
      url("../fonts/InterTight.woff2") format("woff2");
  font-weight:100 900; font-style:normal; font-display:swap;
}
@font-face{
  font-family:"JetBrains Mono";
  src:url("../fonts/JetBrainsMono.woff2") format("woff2-variations"),
      url("../fonts/JetBrainsMono.woff2") format("woff2");
  font-weight:100 800; font-style:normal; font-display:swap;
}

/* ==========================================================================
   Beer.TV / acquisition site
   Palette: screen-lit blue-black, amber pour, foam, copper, phosphor cyan
            The background is the room lit only by a television. The pour
            is the one warm thing in it, which is also the whole pitch.
   Type:    Fraunces (display) / Inter Tight (body) / JetBrains Mono (data)
   ========================================================================== */

:root{
  /* colour */
  --stout:      #0B0F16;   /* bottle-glass black-green  */
  --porter:     #141A24;   /* raised dark surface       */
  --edge:       #26303F;   /* hairline on dark          */
  --edge-soft:  #1C2431;

  --amber:      #F5AE3C;   /* the pour                  */
  --amber-hot:  #FFC661;
  --amber-deep: #C9861B;
  --copper:     #C2603A;   /* kettle                    */
  --rust:       #8C4A16;   /* link colour on light      */
  --signal:        #67C7DE;   /* live signal, used rarely  */

  --foam:       #F7F4EC;   /* head of foam              */
  --wheat:      #EFEAE0;   /* malt paper                */
  --wheat-2:    #E2DBCC;
  --ink:        #14161C;
  --ink-mid:    #4E5462;
  --ink-soft:   #6C7280;

  /* type */
  --display: "Fraunces", "Lora", Georgia, serif;
  --body:    "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --mono:    "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* scale */
  --step--1: clamp(.78rem, .76rem + .1vw, .84rem);
  --step-0:  clamp(1rem, .97rem + .16vw, 1.09rem);
  --step-1:  clamp(1.16rem, 1.09rem + .34vw, 1.4rem);
  --step-2:  clamp(1.38rem, 1.24rem + .68vw, 1.85rem);
  --step-3:  clamp(1.68rem, 1.4rem + 1.35vw, 2.6rem);
  --step-4:  clamp(2.05rem, 1.55rem + 2.4vw, 3.7rem);
  --step-5:  clamp(2.6rem, 1.6rem + 4.7vw, 5.6rem);

  --gutter: clamp(1.15rem, .7rem + 2.2vw, 2.5rem);
  --band-y: clamp(3.5rem, 2rem + 7vw, 7.5rem);
  --wrap: 1180px;
  --measure: 68ch;

  --r-s: 4px;
  --r-m: 10px;
  --r-l: 18px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- reset ---------- */
*,*::before,*::after{ box-sizing:border-box; }
html{
  -webkit-text-size-adjust:100%;
  text-size-adjust:100%;
  scroll-behavior:smooth;
  scroll-padding-top:76px;
}
body{
  margin:0;
  background:var(--stout);
  color:var(--foam);
  font-family:var(--body);
  font-size:var(--step-0);
  line-height:1.62;
  font-synthesis-weight:none;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;
  -webkit-tap-highlight-color:rgba(245,174,60,.22);
}
img,svg,video{ max-width:100%; height:auto; display:block; }
h1,h2,h3,h4,p,ul,ol,figure,blockquote{ margin:0; }
ul,ol{ padding:0; list-style:none; }
a{ color:inherit; }
button,input,select,textarea{ font:inherit; color:inherit; }

/* ---------- utility ---------- */
.wrap{ width:100%; max-width:var(--wrap); margin-inline:auto; padding-inline:var(--gutter); }
.wrap--tight{ max-width:860px; }
.measure{ max-width:var(--measure); }
.skip{
  position:absolute; left:-9999px; top:0; z-index:200;
  background:var(--amber); color:var(--stout); padding:.85rem 1.2rem;
  font-family:var(--mono); font-size:.8rem; border-radius:0 0 var(--r-m) 0;
}
.skip:focus{ left:0; }
:where(a,button,input,select,textarea,summary):focus-visible{
  outline:2.5px solid var(--amber-hot);
  outline-offset:3px;
  border-radius:var(--r-s);
}

/* ---------- bands ---------- */
.band{ padding-block:var(--band-y); position:relative; }
.band--dark{ background:var(--stout); color:var(--foam); }
.band--porter{ background:var(--porter); color:var(--foam); }
.band--light{ background:var(--wheat); color:var(--ink); }
.band--foam{ background:var(--foam); color:var(--ink); }

/* eyebrow: encodes the section's role, not decoration */
.eyebrow{
  font-family:var(--mono);
  font-size:.71rem;
  font-weight:600;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--amber);
  display:flex; align-items:center; gap:.7rem;
  margin-bottom:1.5rem;
}
.eyebrow::after{
  content:""; flex:1; height:1px;
  background:linear-gradient(90deg,var(--amber),transparent);
  opacity:.45;
}
.band--light .eyebrow, .band--foam .eyebrow{ color:var(--rust); }
.band--light .eyebrow::after, .band--foam .eyebrow::after{
  background:linear-gradient(90deg,var(--rust),transparent);
}

/* ---------- headings ---------- */
h1,h2,h3,.display{
  font-family:var(--display);
  font-variation-settings:"SOFT" 0,"WONK" 1,"opsz" 96,"wght" 700;
  font-weight:700;
  line-height:1.03;
  letter-spacing:-.022em;
  text-wrap:balance;
}
h2{ font-size:var(--step-4); margin-bottom:1.1rem; }
h3{
  font-size:var(--step-2);
  font-variation-settings:"SOFT" 0,"WONK" 1,"opsz" 32,"wght" 650;
  line-height:1.14;
  letter-spacing:-.012em;
}
.lede{
  font-size:var(--step-1);
  line-height:1.5;
  color:rgba(247,244,236,.8);
  max-width:60ch;
}
.band--light .lede,.band--foam .lede{ color:var(--ink-mid); }
.band p + p{ margin-top:1.05em; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.masthead{
  position:sticky; top:0; z-index:90;
  background:rgba(13,23,16,.82);
  backdrop-filter:saturate(1.5) blur(14px);
  -webkit-backdrop-filter:saturate(1.5) blur(14px);
  border-bottom:1px solid var(--edge-soft);
}
.masthead__in{
  display:flex; align-items:center; justify-content:space-between;
  gap:1rem; min-height:60px;
}
.logo{
  font-family:var(--display);
  font-variation-settings:"SOFT" 0,"WONK" 1,"opsz" 24,"wght" 800;
  font-size:1.32rem; letter-spacing:-.03em;
  text-decoration:none; color:var(--foam);
  display:inline-flex; align-items:baseline; gap:.06em;
}
.logo span{ color:var(--amber); }
.masthead nav{ display:none; gap:1.6rem; }
.masthead nav a{
  font-family:var(--mono); font-size:.74rem; letter-spacing:.09em;
  text-transform:uppercase; text-decoration:none;
  color:rgba(247,244,236,.6); transition:color .2s var(--ease);
}
.masthead nav a:hover{ color:var(--amber); }
.masthead .btn{ padding:.6rem 1.05rem; font-size:.76rem; min-height:44px; }
@media (max-width:1099px){
  html[data-dock="1"] .masthead .btn{
    opacity:0; visibility:hidden; transform:translateY(-6px);
    transition:opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  }
}
@media (min-width:900px){
  .masthead nav{ display:flex; }
  .masthead__in{ min-height:72px; }
  html{ scroll-padding-top:92px; }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.55rem;
  min-height:52px; padding:.95rem 1.7rem;
  font-family:var(--mono); font-size:.82rem; font-weight:600;
  letter-spacing:.06em; text-transform:uppercase; text-decoration:none;
  border:none; border-radius:var(--r-m); cursor:pointer;
  position:relative; overflow:hidden; isolation:isolate;
  transition:transform .18s var(--ease), box-shadow .25s var(--ease);
}
.btn--pour{
  background:var(--amber); color:#0B0F16;
  box-shadow:0 1px 0 rgba(255,255,255,.35) inset, 0 10px 26px -12px rgba(245,174,60,.85);
}
/* the pour: hover fills the button from the bottom, like a glass */
.btn--pour::before{
  content:""; position:absolute; inset:auto 0 0 0; height:0; z-index:-1;
  background:var(--amber-hot);
  transition:height .34s var(--ease);
}
.btn--pour:hover::before,.btn--pour:focus-visible::before{ height:100%; }
.btn--pour:hover{ transform:translateY(-2px); }
.btn--ghost{
  background:transparent; color:var(--foam);
  box-shadow:inset 0 0 0 1.5px rgba(247,244,236,.28);
}
.btn--ghost:hover{ box-shadow:inset 0 0 0 1.5px var(--amber); color:var(--amber); }
.band--light .btn--ghost,.band--foam .btn--ghost{
  color:var(--ink); box-shadow:inset 0 0 0 1.5px rgba(20,22,28,.22);
}
.band--light .btn--ghost:hover,.band--foam .btn--ghost:hover{
  color:var(--rust); box-shadow:inset 0 0 0 1.5px var(--rust);
}
.btn--wide{ width:100%; }
.btn--lg{ min-height:60px; font-size:.88rem; padding-inline:2.2rem; }

/* inline CTA rail placed between sections */
.cta-rail{
  display:flex; flex-direction:column; gap:.8rem;
  margin-top:2.6rem;
}
.cta-rail__note{
  font-family:var(--mono); font-size:.72rem; letter-spacing:.06em;
  color:rgba(247,244,236,.5); text-align:center;
}
.band--light .cta-rail__note,.band--foam .cta-rail__note{ color:var(--ink-soft); }
@media (min-width:620px){
  .cta-rail{ flex-direction:row; align-items:center; flex-wrap:wrap; gap:1rem; }
  .cta-rail .btn{ width:auto; }
  .cta-rail__note{ text-align:left; }
}

/* ==========================================================================
   SIGNATURE: the pour gauge (scroll progress as a filling glass)
   ========================================================================== */
.gauge{
  position:fixed; z-index:80; pointer-events:none;
  left:0; right:0; top:0; height:3px;
  background:rgba(247,244,236,.09);
}
.gauge__fill{
  height:100%; width:0%;
  background:linear-gradient(90deg,var(--amber-deep),var(--amber-hot));
  box-shadow:0 0 12px rgba(245,174,60,.6);
  transition:width .08s linear;
}
.gauge__head{ display:none; }
@media (min-width:1100px){
  .gauge{
    left:auto; right:16px; top:50%; transform:translateY(-50%);
    width:5px; height:min(320px,42vh); border-radius:999px;
    background:rgba(247,244,236,.08);
    display:flex; flex-direction:column; justify-content:flex-end;
    overflow:visible;
  }
  .gauge__fill{
    width:100%; height:0%; border-radius:999px;
    background:linear-gradient(180deg,var(--amber-hot),var(--amber-deep));
    transition:height .12s linear; position:relative;
  }
  .gauge__fill::after{
    content:""; position:absolute; left:-2.5px; right:-2.5px; top:-5px; height:8px;
    border-radius:999px; background:var(--foam); opacity:.92;
    box-shadow:0 0 10px rgba(247,244,236,.5);
  }
  .gauge__head{
    display:block; position:absolute; right:14px; bottom:-30px;
    font-family:var(--mono); font-size:.6rem; letter-spacing:.16em;
    color:rgba(247,244,236,.4); writing-mode:vertical-rl;
  }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero{
  position:relative; overflow:hidden;
  background:
    radial-gradient(120% 85% at 50% 118%, rgba(245,174,60,.30) 0%, rgba(245,174,60,.06) 42%, transparent 68%),
    radial-gradient(85% 60% at 78% -8%, rgba(103,199,222,.09) 0%, transparent 60%),
    var(--stout);
  padding-block:clamp(3.2rem,1.5rem + 9vw,7rem) 0;
}
/* faint vertical seams: bar-glass refraction, not decoration for its own sake */
.hero::before{
  content:""; position:absolute; inset:0; pointer-events:none; opacity:.5;
  background:repeating-linear-gradient(90deg,transparent 0 88px,rgba(247,244,236,.035) 88px 89px);
  mask-image:linear-gradient(180deg,transparent,#000 30%,#000 70%,transparent);
  -webkit-mask-image:linear-gradient(180deg,transparent,#000 30%,#000 70%,transparent);
}
.hero__in{ position:relative; z-index:2; }
.hero__tag{
  display:inline-flex; align-items:center; gap:.6rem;
  font-family:var(--mono); font-size:.68rem; font-weight:600;
  letter-spacing:.2em; text-transform:uppercase;
  color:var(--amber);
  border:1px solid rgba(245,174,60,.35);
  background:rgba(245,174,60,.07);
  padding:.5rem .95rem; border-radius:999px;
  margin-bottom:1.6rem;
}
.dot{
  width:7px; height:7px; border-radius:50%;
  background:var(--signal); box-shadow:0 0 0 0 rgba(103,199,222,.65);
  animation:pulse 2.4s infinite;
}
@keyframes pulse{
  70%{ box-shadow:0 0 0 9px rgba(103,199,222,0); }
  100%{ box-shadow:0 0 0 0 rgba(103,199,222,0); }
}
.hero h1{
  font-size:var(--step-5);
  font-variation-settings:"SOFT" 0,"WONK" 1,"opsz" 144,"wght" 800;
  letter-spacing:-.038em; line-height:.95;
  margin-bottom:1.4rem;
}
.hero h1 em{
  font-style:normal; color:var(--amber);
  font-variation-settings:"SOFT" 0,"WONK" 1,"opsz" 144,"wght" 800;
}
/* below 480px the figure needs to be allowed to wrap or it overflows */
@media (min-width:480px){ .hero h1 em{ white-space:nowrap; } }
.hero__sub{
  font-size:var(--step-1); line-height:1.5;
  color:rgba(247,244,236,.78); max-width:56ch; margin-bottom:2.2rem;
}
.hero .cta-rail{ margin-top:0; margin-bottom:2.8rem; }

/* hero fact strip */
.facts{
  display:grid; grid-template-columns:repeat(2,1fr);
  border-top:1px solid var(--edge);
  margin-top:.5rem;
}
.facts li{
  padding:1.15rem .2rem 1.35rem;
  border-bottom:1px solid var(--edge);
}
.facts li:nth-child(odd){ padding-right:1rem; border-right:1px solid var(--edge); }
.facts li:nth-child(even){ padding-left:1rem; }
.facts b{
  display:block; font-family:var(--display);
  font-variation-settings:"SOFT" 0,"WONK" 0,"opsz" 48,"wght" 700;
  font-size:clamp(1.5rem,1rem + 2.3vw,2.35rem);
  line-height:1; letter-spacing:-.03em; color:var(--amber);
  margin-bottom:.42rem;
}
.facts span{
  font-family:var(--mono); font-size:.66rem; line-height:1.45;
  letter-spacing:.09em; text-transform:uppercase;
  color:rgba(247,244,236,.52); display:block;
}
@media (min-width:760px){
  .facts{ grid-template-columns:repeat(4,1fr); }
  .facts li{ padding:1.4rem 1.3rem 1.6rem; border-right:1px solid var(--edge); }
  .facts li:first-child{ padding-left:0; }
  .facts li:last-child{ border-right:none; }
  .facts li:nth-child(odd),.facts li:nth-child(even){ padding-left:1.3rem; padding-right:1.3rem; }
  .facts li:first-child{ padding-left:0; }
}

/* the head of foam: hero -> next band transition */
.foamline{ display:block; width:100%; height:clamp(26px,4vw,46px); margin-top:2.5rem; }

/* ==========================================================================
   EVIDENCE
   ========================================================================== */
.eyestat{
  display:grid; gap:0;
  border:1px solid rgba(20,22,28,.14);
  border-radius:var(--r-l); overflow:hidden;
  background:var(--foam);
  margin-top:2.4rem;
}
.eyestat > div{
  padding:1.6rem 1.4rem;
  border-bottom:1px solid rgba(20,22,28,.12);
}
.eyestat > div:last-child{ border-bottom:none; }
.eyestat b{
  display:block; font-family:var(--display);
  font-variation-settings:"SOFT" 0,"WONK" 0,"opsz" 60,"wght" 750;
  font-size:clamp(1.85rem,1.2rem + 3vw,3rem); line-height:.98;
  letter-spacing:-.035em; color:var(--rust); margin-bottom:.5rem;
}
.eyestat p{ font-size:.94rem; color:var(--ink-mid); line-height:1.5; }
.eyestat cite{
  display:block; margin-top:.7rem;
  font-family:var(--mono); font-size:.66rem; letter-spacing:.06em;
  font-style:normal; color:var(--ink-soft);
}
.eyestat cite a{ color:var(--rust); text-underline-offset:2px; }
@media (min-width:820px){
  .eyestat{ grid-template-columns:repeat(3,1fr); }
  .eyestat > div{ border-bottom:none; border-right:1px solid rgba(20,22,28,.12); }
  .eyestat > div:last-child{ border-right:none; }
}

/* ==========================================================================
   ASSET SPEC TABLE
   ========================================================================== */
.spec{ margin-top:2.4rem; border-top:1px solid var(--edge); }
.spec__row{
  display:grid; grid-template-columns:1fr;
  gap:.25rem; padding:1.15rem 0;
  border-bottom:1px solid var(--edge);
}
.spec__row dt{
  font-family:var(--mono); font-size:.68rem; letter-spacing:.15em;
  text-transform:uppercase; color:rgba(247,244,236,.45);
}
.spec__row dd{ margin:0; font-size:1.02rem; color:var(--foam); }
.spec__row dd small{
  display:block; font-size:.83rem; color:rgba(247,244,236,.55); margin-top:.2rem;
}
@media (min-width:700px){
  .spec__row{ grid-template-columns:220px 1fr; gap:1.5rem; align-items:baseline; }
}

/* ==========================================================================
   VISION
   ========================================================================== */
.vision-grid{ display:grid; gap:1.1rem; margin-top:2.6rem; }
.vision-card{
  background:var(--porter);
  border:1px solid var(--edge);
  border-radius:var(--r-l);
  padding:1.7rem 1.5rem;
  position:relative; overflow:hidden;
  transition:border-color .25s var(--ease), transform .25s var(--ease);
}
.vision-card::before{
  content:""; position:absolute; left:0; top:0; bottom:0; width:3px;
  background:linear-gradient(180deg,var(--amber),transparent);
  opacity:.7;
}
.vision-card:hover{ border-color:rgba(245,174,60,.45); transform:translateY(-3px); }
.vision-card h3{ color:var(--foam); margin-bottom:.6rem; }
.vision-card p{ color:rgba(247,244,236,.68); font-size:.96rem; }
.vision-card__k{
  font-family:var(--mono); font-size:.66rem; letter-spacing:.16em;
  text-transform:uppercase; color:var(--amber); display:block; margin-bottom:.75rem;
}
@media (min-width:760px){ .vision-grid{ grid-template-columns:repeat(2,1fr); } }
@media (min-width:1060px){ .vision-grid{ grid-template-columns:repeat(3,1fr); } }

/* ==========================================================================
   BUYER TYPES
   ========================================================================== */
.buyers{ margin-top:2.6rem; border-top:1px solid rgba(20,22,28,.16); }
.buyer{
  padding:1.6rem 0;
  border-bottom:1px solid rgba(20,22,28,.16);
  display:grid; gap:.55rem;
}
.buyer__n{
  font-family:var(--mono); font-size:.7rem; letter-spacing:.14em;
  color:var(--rust); font-weight:600;
}
.buyer h3{ font-size:var(--step-1); color:var(--ink); }
.buyer p{ color:var(--ink-mid); font-size:.97rem; }
.buyer__why{
  font-family:var(--mono); font-size:.73rem; line-height:1.6;
  color:var(--ink-soft); padding-top:.5rem;
  border-top:1px dashed rgba(20,22,28,.2);
}
.buyer__why b{ color:var(--rust); font-weight:600; }
@media (min-width:860px){
  .buyer{ grid-template-columns:150px 1fr 260px; gap:2rem; align-items:start; }
  .buyer__why{ border-top:none; border-left:1px dashed rgba(20,22,28,.22); padding:0 0 0 1.5rem; }
}

/* ==========================================================================
   JOURNAL PREVIEW + INDEX
   ========================================================================== */
.jgrid{ display:grid; gap:1rem; margin-top:2.6rem; }
.jcard{
  display:flex; flex-direction:column; gap:.7rem;
  padding:1.5rem 1.4rem;
  background:var(--porter); border:1px solid var(--edge);
  border-radius:var(--r-l); text-decoration:none;
  transition:border-color .25s var(--ease), transform .25s var(--ease), background .25s var(--ease);
}
.jcard:hover{ border-color:rgba(245,174,60,.5); transform:translateY(-3px); background:#1A2230; }
.jcard__meta{
  font-family:var(--mono); font-size:.65rem; letter-spacing:.13em;
  text-transform:uppercase; color:var(--amber);
  display:flex; gap:.6rem; flex-wrap:wrap; align-items:center;
}
.jcard__meta time{ color:rgba(247,244,236,.42); }
.jcard h3{ font-size:var(--step-1); color:var(--foam); }
.jcard p{ font-size:.93rem; color:rgba(247,244,236,.62); line-height:1.55; }
.jcard__go{
  margin-top:auto; padding-top:.5rem;
  font-family:var(--mono); font-size:.7rem; letter-spacing:.1em;
  color:var(--amber); text-transform:uppercase;
}
@media (min-width:720px){ .jgrid{ grid-template-columns:repeat(2,1fr); } }
@media (min-width:1080px){ .jgrid{ grid-template-columns:repeat(3,1fr); } }

/* ==========================================================================
   PROCESS STRIP  (a real sequence, so numbering carries information)
   ========================================================================== */
.process{
  margin-top:2.6rem; display:grid; gap:0;
  border:1px solid var(--edge); border-radius:var(--r-l); overflow:hidden;
}
.process__step{
  padding:1.5rem 1.4rem;
  border-bottom:1px solid var(--edge);
  background:var(--porter);
  position:relative;
}
.process__step:last-child{ border-bottom:none; }
.process__step b{
  font-family:var(--mono); font-size:.68rem; letter-spacing:.16em;
  color:var(--amber); display:block; margin-bottom:.6rem;
}
.process__step h3{ font-size:1.05rem; margin-bottom:.35rem; color:var(--foam);
  font-variation-settings:"SOFT" 0,"WONK" 0,"opsz" 24,"wght" 650; }
.process__step p{ font-size:.9rem; color:rgba(247,244,236,.6); }
@media (min-width:880px){
  .process{ grid-template-columns:repeat(4,1fr); }
  .process__step{ border-bottom:none; border-right:1px solid var(--edge); }
  .process__step:last-child{ border-right:none; }
}

/* ==========================================================================
   DEFENSIVE / COST OF DOING NOTHING
   ========================================================================== */
.band--defensive{
  background:
    radial-gradient(90% 70% at 15% 0%, rgba(194,96,58,.18) 0%, transparent 60%),
    var(--stout);
  border-top:1px solid var(--edge);
}
.risks{ display:grid; gap:1rem; margin-top:2.6rem; }
.risk{
  padding:1.5rem 1.4rem 1.5rem 1.6rem;
  border:1px solid rgba(194,96,58,.3);
  border-radius:var(--r-l);
  background:rgba(194,96,58,.06);
}
.risk h3{
  font-size:1.1rem; color:var(--foam); margin-bottom:.5rem;
  font-variation-settings:"SOFT" 0,"WONK" 0,"opsz" 24,"wght" 650;
}
.risk p{ font-size:.94rem; color:rgba(247,244,236,.68); }
.risk__tag{
  font-family:var(--mono); font-size:.64rem; letter-spacing:.15em;
  text-transform:uppercase; color:var(--copper);
  display:block; margin-bottom:.65rem;
}
@media (min-width:800px){ .risks{ grid-template-columns:repeat(2,1fr); } }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq{ margin-top:2.4rem; border-top:1px solid rgba(20,22,28,.16); }
.faq details{ border-bottom:1px solid rgba(20,22,28,.16); }
.faq summary{
  cursor:pointer; list-style:none;
  padding:1.25rem 2.5rem 1.25rem 0;
  font-family:var(--display);
  font-variation-settings:"SOFT" 0,"WONK" 0,"opsz" 24,"wght" 650;
  font-size:1.08rem; line-height:1.32; letter-spacing:-.01em;
  position:relative; min-height:56px; display:flex; align-items:center;
  color:var(--ink);
}
.faq summary::-webkit-details-marker{ display:none; }
.faq summary::after{
  content:"+"; position:absolute; right:.2rem; top:50%; transform:translateY(-50%);
  font-family:var(--mono); font-size:1.4rem; font-weight:400; color:var(--rust);
  transition:transform .25s var(--ease);
}
.faq details[open] summary::after{ content:"\2212"; }
.faq details p{
  padding:0 0 1.35rem; color:var(--ink-mid); font-size:.98rem; max-width:64ch;
}
.faq details p + p{ margin-top:.9rem; }

/* ==========================================================================
   OFFER FORM
   ========================================================================== */
.band--offer{
  background:
    radial-gradient(100% 70% at 50% 110%, rgba(245,174,60,.22) 0%, transparent 62%),
    var(--porter);
  border-top:1px solid var(--edge);
}
.offer-card{
  background:var(--stout);
  border:1px solid var(--edge);
  border-radius:var(--r-l);
  padding:clamp(1.35rem,.8rem + 2.4vw,2.6rem);
  margin-top:2.4rem;
  box-shadow:0 40px 80px -50px rgba(0,0,0,.9);
}
.field{ margin-bottom:1.15rem; }
.field label{
  display:block; margin-bottom:.5rem;
  font-family:var(--mono); font-size:.7rem; font-weight:600;
  letter-spacing:.13em; text-transform:uppercase; color:rgba(247,244,236,.62);
}
.field .req{ color:var(--amber); }
.field input,.field select,.field textarea{
  width:100%;
  /* 16px minimum stops iOS Safari zooming the page on focus */
  font-size:16px; line-height:1.5;
  padding:.9rem 1rem; min-height:52px;
  background:var(--porter);
  border:1.5px solid var(--edge);
  border-radius:var(--r-m);
  color:var(--foam);
  transition:border-color .2s var(--ease), background .2s var(--ease);
  -webkit-appearance:none; appearance:none;
}
.field textarea{ min-height:118px; resize:vertical; }
.field select{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 9'%3E%3Cpath fill='none' stroke='%23F2A93B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M1.5 1.75L7 7.25l5.5-5.5'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 1.05rem center;
  background-size:13px;
  padding-right:2.6rem;
}
.field input::placeholder,.field textarea::placeholder{ color:rgba(247,244,236,.3); }
.field input:focus,.field select:focus,.field textarea:focus{
  border-color:var(--amber); background:#0F1620; outline:none;
}
.field__hint{
  margin-top:.45rem; font-size:.8rem; color:rgba(247,244,236,.42); line-height:1.45;
}
.field-row{ display:grid; gap:0; }
@media (min-width:640px){
  .field-row{ grid-template-columns:1fr 1fr; gap:1.15rem; }
  .field-row .field{ margin-bottom:1.15rem; }
}
.consent{
  display:flex; gap:.85rem; align-items:flex-start;
  margin:.4rem 0 1.5rem;
}
.consent input[type=checkbox]{
  width:22px; height:22px; min-height:22px; flex:0 0 22px;
  margin-top:.15rem; accent-color:var(--amber);
  -webkit-appearance:auto; appearance:auto; padding:0; border-radius:4px;
}
.consent label{
  font-family:var(--body); font-size:.86rem; line-height:1.5;
  letter-spacing:0; text-transform:none; font-weight:400;
  color:rgba(247,244,236,.6); margin:0;
}
.consent a{ color:var(--amber); }
.form-status{
  margin-top:1.1rem; padding:.95rem 1.1rem; border-radius:var(--r-m);
  font-size:.9rem; line-height:1.5; display:none;
}
.form-status[data-state="ok"]{
  display:block; background:rgba(103,199,222,.12);
  border:1px solid rgba(103,199,222,.4); color:#A8DCEA;
}
.form-status[data-state="err"]{
  display:block; background:rgba(194,96,58,.12);
  border:1px solid rgba(194,96,58,.45); color:#F0B79B;
}
.honey{ position:absolute; left:-9999px; width:1px; height:1px; opacity:0; }

/* ==========================================================================
   CLOSING
   ========================================================================== */
.band--closing{
  background:
    radial-gradient(120% 90% at 50% 130%, rgba(245,174,60,.26) 0%, transparent 65%),
    var(--stout);
  text-align:center;
}
.band--closing .eyebrow{ justify-content:center; }
.band--closing .eyebrow::after{ display:none; }
.band--closing .eyebrow::before{
  content:""; flex:1; height:1px; max-width:80px;
  background:linear-gradient(270deg,var(--amber),transparent); opacity:.5;
}
.closing-h{
  font-family:var(--display);
  font-variation-settings:"SOFT" 0,"WONK" 1,"opsz" 144,"wght" 800;
  font-size:var(--step-4); line-height:1; letter-spacing:-.035em;
  margin-bottom:1.2rem;
}
.closing-h em{ font-style:normal; color:var(--amber); }
.band--closing .lede{ margin-inline:auto; }
.band--closing .cta-rail{ justify-content:center; }
.band--closing .cta-rail__note{ text-align:center; width:100%; }

/* ==========================================================================
   STICKY MOBILE CTA
   ========================================================================== */
.dock{
  position:fixed; z-index:95; left:0; right:0; bottom:0;
  padding:.7rem var(--gutter) calc(.7rem + env(safe-area-inset-bottom));
  background:rgba(13,23,16,.94);
  backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px);
  border-top:1px solid var(--edge);
  display:flex; align-items:center; gap:.9rem;
  transform:translateY(115%);
  transition:transform .32s var(--ease);
}
.dock[data-show="1"]{ transform:translateY(0); }
.dock__txt{ flex:1; min-width:0; }
.dock__txt b{
  display:block; font-family:var(--mono); font-size:.68rem;
  letter-spacing:.12em; text-transform:uppercase; color:var(--amber);
}
.dock__txt span{
  display:block; font-size:.8rem; color:rgba(247,244,236,.55);
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}
.dock .btn{ min-height:48px; padding:.7rem 1.25rem; font-size:.76rem; flex:0 0 auto; }
body{ padding-bottom:0; }
@media (min-width:1100px){ .dock{ display:none; } }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.foot{
  background:#080B11; border-top:1px solid var(--edge);
  padding-block:3rem 6.5rem; font-size:.88rem;
}
@media (min-width:1100px){ .foot{ padding-bottom:3rem; } }
.foot__top{ display:grid; gap:2rem; margin-bottom:2.4rem; }
.foot__brand .logo{ margin-bottom:.8rem; }
.foot__brand p{ color:rgba(247,244,236,.45); max-width:38ch; font-size:.88rem; }
.foot__col h4{
  font-family:var(--mono); font-size:.68rem; letter-spacing:.15em;
  text-transform:uppercase; color:var(--amber); margin-bottom:.9rem; font-weight:600;
}
.foot__col li{ margin-bottom:.6rem; }
.foot__col a{
  color:rgba(247,244,236,.6); text-decoration:none;
  transition:color .2s var(--ease);
}
.foot__col a:hover{ color:var(--amber); }
.foot__bot{
  border-top:1px solid var(--edge); padding-top:1.6rem;
  display:flex; flex-direction:column; gap:.8rem;
  font-family:var(--mono); font-size:.68rem; letter-spacing:.05em;
  color:rgba(247,244,236,.35); line-height:1.7;
}
@media (min-width:760px){
  .foot__top{ grid-template-columns:1.6fr 1fr 1fr 1fr; gap:2.5rem; }
  .foot__bot{ flex-direction:row; justify-content:space-between; align-items:center; }
}
.foot__note{ max-width:62ch; }

/* ==========================================================================
   ARTICLE / LEGAL PAGES
   ========================================================================== */
.page-head{
  background:
    radial-gradient(95% 80% at 20% 120%, rgba(245,174,60,.2) 0%, transparent 62%),
    var(--stout);
  padding-block:clamp(2.6rem,1.4rem + 5vw,5rem) clamp(2rem,1.2rem + 3vw,3.2rem);
  border-bottom:1px solid var(--edge);
}
.crumbs{
  font-family:var(--mono); font-size:.68rem; letter-spacing:.1em;
  text-transform:uppercase; color:rgba(247,244,236,.4); margin-bottom:1.4rem;
}
.crumbs a{ color:var(--amber); text-decoration:none; }
.crumbs a:hover{ text-decoration:underline; }
.page-head h1{
  font-size:var(--step-4); margin-bottom:1.1rem;
  font-variation-settings:"SOFT" 0,"WONK" 1,"opsz" 96,"wght" 750;
}
.byline{
  display:flex; flex-wrap:wrap; gap:.5rem 1.2rem;
  margin-top:1.6rem; padding-top:1.3rem;
  border-top:1px solid var(--edge);
  font-family:var(--mono); font-size:.68rem; letter-spacing:.08em;
  text-transform:uppercase; color:rgba(247,244,236,.45);
}
.byline b{ color:var(--amber); font-weight:600; }

.prose{
  background:var(--foam); color:var(--ink);
  padding-block:clamp(2.4rem,1.5rem + 4vw,4.2rem);
}
.prose .wrap{ max-width:760px; }
.prose h2{
  font-size:var(--step-3); margin:2.6rem 0 .9rem;
  font-variation-settings:"SOFT" 0,"WONK" 1,"opsz" 60,"wght" 700;
  letter-spacing:-.02em; color:var(--ink);
}
.prose h2:first-child{ margin-top:0; }
.prose h3{
  font-size:var(--step-1); margin:1.9rem 0 .6rem; color:var(--ink);
  font-variation-settings:"SOFT" 0,"WONK" 0,"opsz" 28,"wght" 650;
}
.prose p{ margin-bottom:1.05rem; color:#22252E; }
.prose a{ color:var(--rust); text-underline-offset:2.5px; text-decoration-thickness:1px; }
.prose a:hover{ color:var(--copper); }
.prose ul,.prose ol{ margin:0 0 1.3rem; padding-left:1.35rem; }
.prose ul li{ list-style:none; position:relative; margin-bottom:.65rem; color:#22252E; }
.prose ul li::before{
  content:""; position:absolute; left:-1.15rem; top:.62em;
  width:6px; height:6px; border-radius:50%; background:var(--amber-deep);
}
.prose ol{ list-style:decimal; }
.prose ol li{ margin-bottom:.65rem; color:#22252E; padding-left:.2rem; }
.prose ol li::marker{ font-family:var(--mono); font-size:.85em; color:var(--rust); }
.prose strong{ font-weight:650; color:var(--ink); }
.prose hr{ border:none; border-top:1px solid rgba(20,22,28,.16); margin:2.6rem 0; }

/* key stat pull-out inside articles */
.pull{
  margin:2rem 0; padding:1.5rem 1.5rem 1.4rem;
  background:var(--stout); color:var(--foam);
  border-radius:var(--r-l); border-left:4px solid var(--amber);
}
.pull b{
  display:block; font-family:var(--display);
  font-variation-settings:"SOFT" 0,"WONK" 0,"opsz" 60,"wght" 750;
  font-size:clamp(1.7rem,1.1rem + 2.6vw,2.5rem); line-height:1;
  letter-spacing:-.03em; color:var(--amber); margin-bottom:.55rem;
}
.pull p{ margin:0; font-size:.95rem; color:rgba(247,244,236,.72); }
.pull cite{
  display:block; margin-top:.7rem; font-style:normal;
  font-family:var(--mono); font-size:.66rem; letter-spacing:.06em;
  color:rgba(247,244,236,.45);
}
.pull cite a{ color:var(--amber); }

/* data table */
.dtable{ margin:1.8rem 0; overflow-x:auto; -webkit-overflow-scrolling:touch; }
.dtable table{ width:100%; border-collapse:collapse; min-width:420px; font-size:.9rem; }
.dtable th,.dtable td{
  text-align:left; padding:.8rem .9rem;
  border-bottom:1px solid rgba(20,22,28,.14);
}
.dtable th{
  font-family:var(--mono); font-size:.66rem; letter-spacing:.11em;
  text-transform:uppercase; color:var(--rust);
  border-bottom:1.5px solid rgba(20,22,28,.24);
}
.dtable td{ color:#22252E; }
.dtable tbody tr:nth-child(even){ background:rgba(20,22,28,.03); }
.dtable caption{
  caption-side:bottom; text-align:left; padding-top:.8rem;
  font-family:var(--mono); font-size:.66rem; color:var(--ink-soft); line-height:1.6;
}

/* methodology / EEAT box */
.method{
  margin:2.4rem 0; padding:1.5rem 1.4rem;
  background:var(--wheat); border:1px solid rgba(20,22,28,.14);
  border-radius:var(--r-l);
}
.method h3{ font-size:1.02rem; margin:0 0 .7rem; }
.method p{ font-size:.88rem; color:var(--ink-mid); margin-bottom:.7rem; }
.method p:last-child{ margin-bottom:0; }

/* sources */
.sources{ margin-top:2.6rem; padding-top:1.8rem; border-top:1px solid rgba(20,22,28,.16); }
.sources h2{ font-size:var(--step-1); margin:0 0 1rem; }
.sources ol{ padding-left:1.3rem; }
.sources li{ font-size:.85rem; color:var(--ink-mid); margin-bottom:.6rem; line-height:1.55; }

/* read-next internal links */
.readnext{ margin-top:2.6rem; padding-top:1.8rem; border-top:1px solid rgba(20,22,28,.16); }
.readnext h2{ font-size:var(--step-1); margin:0 0 1.1rem; }
.readnext ul{ padding:0; display:grid; gap:.7rem; }
.readnext li{ list-style:none; margin:0; }
.readnext li::before{ display:none; }
.readnext a{
  display:block; padding:1rem 1.1rem;
  background:var(--wheat); border:1px solid rgba(20,22,28,.14);
  border-radius:var(--r-m); text-decoration:none; color:var(--ink);
  transition:border-color .2s var(--ease), background .2s var(--ease);
}
.readnext a:hover{ border-color:var(--rust); background:var(--wheat-2); }
.readnext a b{
  display:block; font-family:var(--display); font-size:1.02rem; line-height:1.25;
  font-variation-settings:"SOFT" 0,"WONK" 0,"opsz" 24,"wght" 650;
  margin-bottom:.25rem;
}
.readnext a span{ font-size:.85rem; color:var(--ink-mid); }
@media (min-width:700px){ .readnext ul{ grid-template-columns:1fr 1fr; } }

/* mid-article offer nudge */
.nudge{
  margin:2.6rem 0; padding:1.6rem 1.5rem;
  background:var(--stout); border-radius:var(--r-l);
  border:1px solid var(--edge); text-align:center;
}
.nudge b{
  display:block; font-family:var(--display); color:var(--foam);
  font-variation-settings:"SOFT" 0,"WONK" 1,"opsz" 48,"wght" 700;
  font-size:var(--step-2); line-height:1.1; letter-spacing:-.02em; margin-bottom:.6rem;
}
.nudge p{ color:rgba(247,244,236,.62); font-size:.92rem; margin-bottom:1.3rem; max-width:46ch; margin-inline:auto; }
.nudge .btn{ width:100%; }
@media (min-width:560px){ .nudge .btn{ width:auto; } }

/* 404 */
.oops{
  min-height:calc(100svh - 60px);
  display:flex; align-items:center;
  background:
    radial-gradient(110% 80% at 50% 115%, rgba(245,174,60,.24) 0%, transparent 64%),
    var(--stout);
  padding-block:4rem;
  text-align:center;
}
.oops__code{
  font-family:var(--display);
  font-variation-settings:"SOFT" 0,"WONK" 1,"opsz" 144,"wght" 800;
  font-size:clamp(4.5rem,3rem + 12vw,10rem); line-height:.85;
  letter-spacing:-.05em; color:var(--amber); margin-bottom:1.2rem;
}
.oops h1{ font-size:var(--step-3); margin-bottom:1rem; }
.oops p{ color:rgba(247,244,236,.65); max-width:46ch; margin-inline:auto; margin-bottom:2rem; }
.oops .cta-rail{ justify-content:center; }

/* legal */
.legal h2{ font-size:var(--step-2); }
.legal .updated{
  font-family:var(--mono); font-size:.72rem; letter-spacing:.08em;
  color:var(--ink-soft); margin-bottom:2rem; text-transform:uppercase;
}

/* ---------- motion preference ---------- */
@media (prefers-reduced-motion:reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{
    animation-duration:.001ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.001ms !important;
  }
  .dock{ transform:translateY(0); }
}

/* ---------- print ---------- */
@media print{
  .masthead,.dock,.gauge,.cta-rail{ display:none !important; }
  body{ background:#fff; color:#000; }
}

/* ==========================================================================
   OFFER SECTION, Fussball.TV pattern
   No form processor. The button composes an email in the visitor's own client.
   ========================================================================== */
.offer-direct{
  font-family:var(--mono); font-size:.72rem; letter-spacing:.1em;
  text-transform:uppercase; color:rgba(247,244,236,.5);
  margin:-.4rem 0 1.1rem;
}
.offer-direct a{ color:var(--amber); text-decoration:none; }
.offer-direct a:hover{ text-decoration:underline; }
.band--offer .lede em{ font-style:normal; color:var(--foam); font-weight:600; }

/* three assurances above the form */
.assure{ margin:1.8rem 0 0; display:grid; gap:.6rem; }
.assure li{
  position:relative; padding-left:1.75rem;
  font-size:.92rem; color:rgba(247,244,236,.72); line-height:1.5;
}
.assure li::before{
  content:""; position:absolute; left:0; top:.34em;
  width:15px; height:9px; border-left:2px solid var(--signal);
  border-bottom:2px solid var(--signal); transform:rotate(-45deg);
}
@media (min-width:760px){ .assure{ grid-template-columns:repeat(3,1fr); gap:1.2rem; } }

/* inline validation */
.field__err{
  display:none; margin-top:.45rem;
  font-size:.83rem; line-height:1.45; color:#F0B79B;
}
.field[data-invalid="1"] .field__err{ display:block; }
.field[data-invalid="1"] input,
.field[data-invalid="1"] select,
.field[data-invalid="1"] textarea{ border-color:var(--copper); }
.field__hint + input,
.field__hint + select,
.field__hint + textarea,
.field__hint + .sum{ margin-top:.15rem; }
.field label + .field__hint{ margin-top:-.28rem; margin-bottom:.55rem; }

/* maths check */
.sum{ display:flex; align-items:center; gap:.9rem; flex-wrap:wrap; }
.sum__q{
  font-family:var(--mono); font-size:.9rem; color:var(--foam);
  background:var(--porter); border:1.5px solid var(--edge);
  border-radius:var(--r-m); padding:.85rem 1rem; min-height:52px;
  display:flex; align-items:center; white-space:nowrap;
}
.sum input{ flex:1; min-width:110px; }

.offer-alt{
  margin-top:1rem; text-align:center;
  font-family:var(--mono); font-size:.75rem; letter-spacing:.05em;
  color:rgba(247,244,236,.45);
}
.offer-alt a{ color:var(--amber); }

/* what we won't do */
.wont{ margin-top:2.4rem; }
.wont h3{
  font-size:1.05rem; margin-bottom:1rem; color:var(--foam);
  font-variation-settings:"SOFT" 0,"WONK" 0,"opsz" 24,"wght" 650;
}
.wont ul{ display:grid; gap:.7rem; }
.wont li{
  position:relative; padding-left:1.75rem;
  font-size:.92rem; line-height:1.5; color:rgba(247,244,236,.62);
}
.wont li.no::before{
  content:"\00D7"; position:absolute; left:.15rem; top:-.06em;
  font-family:var(--mono); font-size:1.05rem; color:var(--copper);
}
.wont li.yes{ color:var(--foam); }
.wont li.yes::before{
  content:""; position:absolute; left:0; top:.34em;
  width:15px; height:9px; border-left:2px solid var(--signal);
  border-bottom:2px solid var(--signal); transform:rotate(-45deg);
}

.offer-legal{
  margin-top:2rem; padding-top:1.4rem;
  border-top:1px solid var(--edge);
  font-size:.82rem; line-height:1.6; color:rgba(247,244,236,.42);
}
.offer-legal a{ color:var(--amber); }

/* footer column labels: styled like headings, but not headings, because they
   label navigation rather than document sections */
.foot__h{
  font-family:var(--mono); font-size:.68rem; letter-spacing:.15em;
  text-transform:uppercase; color:var(--amber);
  margin:0 0 .9rem; font-weight:600;
}

/* journal card title, same look as the old h3 */
.jcard__t{
  font-size:var(--step-1); color:var(--foam); margin:0;
  font-variation-settings:"SOFT" 0,"WONK" 1,"opsz" 32,"wght" 650;
  line-height:1.14; letter-spacing:-.012em;
}

/* privacy policy legal-basis table, previously inline styles */
.legal-table{ width:100%; border-collapse:collapse; margin:1.4rem 0; font-size:.92rem; }
.legal-table th{
  text-align:left; padding:.7rem .6rem;
  border-bottom:1.5px solid rgba(20,22,28,.22);
  font-family:var(--mono); font-size:.66rem; letter-spacing:.1em;
  text-transform:uppercase; color:var(--rust);
}
.legal-table td{
  text-align:left; padding:.7rem .6rem;
  border-bottom:1px solid rgba(20,22,28,.14);
}

/* closing nudge: slightly warmer than the mid-article one, because the reader
   who reaches it has read the whole argument */
.nudge--close{
  border-color:rgba(245,174,60,.32);
  background:
    radial-gradient(120% 100% at 50% 120%, rgba(245,174,60,.14) 0%, transparent 70%),
    var(--stout);
}

/* ==========================================================================
   MOBILE REFINEMENTS
   Two real findings from a device audit: the logo was a 34px tap target, and
   several metadata styles fell to 10.6px on phones. Inline links inside prose
   are intentionally left alone; WCAG 2.5.8 exempts them, and padding them out
   would wreck the line rhythm of the articles.
   ========================================================================== */

/* logo is a standalone nav control, so it needs a real target */
.logo{
  display:inline-flex; align-items:center;
  min-height:44px; padding-block:.25rem;
}

@media (max-width:820px){
  /* metadata was bottoming out around 10.6px, which is below comfortable
     reading size on a phone or tablet even for uppercase mono */
  .facts span{ font-size:.72rem; letter-spacing:.07em; }
  .foot__bot{ font-size:.75rem; }
  .foot__note{ font-size:.75rem; }
  .cta-rail__note{ font-size:.78rem; }
  .legal .updated{ font-size:.78rem; }
  .jcard__meta{ font-size:.7rem; }
  .byline{ font-size:.72rem; }
  .eyestat cite{ font-size:.72rem; }
  .pull cite{ font-size:.72rem; }
  .dtable caption{ font-size:.72rem; }
  .sources li{ font-size:.88rem; }

  /* breadcrumbs sit alone above the headline, so give them a little height */
  .crumbs{ font-size:.74rem; }
  .crumbs a{ display:inline-block; padding-block:.3rem; }

  /* the offer email line is a primary action on this page */
  .offer-direct{ font-size:.78rem; }
  .offer-direct a{ display:inline-block; padding-block:.3rem; }
}

/* very small phones: stop the fact strip labels from stacking three deep */
@media (max-width:360px){
  .facts b{ font-size:1.35rem; }
  .facts span{ font-size:.68rem; }
  .btn{ padding-inline:1.25rem; font-size:.78rem; }
}

/* landscape phones: the hero should not need three swipes to get past */
@media (max-height:520px) and (orientation:landscape){
  .hero{ padding-block:2rem 0; }
  .hero h1{ font-size:clamp(1.8rem,4.5vw,2.6rem); }
  .hero__sub{ font-size:1rem; margin-bottom:1.4rem; }
  .band{ padding-block:2.6rem; }
}

/* ==========================================================================
   IMAGERY
   The site previously had no <img> at all, which meant nothing for Google
   Images to index and identical link previews for all six articles.
   ========================================================================== */
.lead{
  margin:0 0 2.2rem;
  border-radius:var(--r-l); overflow:hidden;
  border:1px solid rgba(20,22,28,.14);
  background:var(--stout);
}
.lead img{ width:100%; height:auto; display:block; }

.jcard__img{
  /* max-width:none overrides the global img reset, which was capping this
     at 100% and leaving a sliver of card showing on the right */
  width:calc(100% + 2.8rem); max-width:none; height:auto; display:block;
  margin:-1.5rem -1.4rem .35rem;
  border-radius:var(--r-l) var(--r-l) 0 0;
  border-bottom:1px solid var(--edge);
}
