
/* ═══════════════════════════════════════════════════════════════════════
   LONG-FORM EDITORIAL · TEMPLATE C PROTOTYPE FOR CONTENT ALCHEMY PILLAR
   Magazine feature aesthetic. Drop caps, multi-column, sidebar callouts,
   editorial typography. Same brand DNA as Templates A and B.
   ═══════════════════════════════════════════════════════════════════════ */

*{margin:0;padding:0;box-sizing:border-box}
:root{
  --k:#060606;
  --k2:#0a0a0a;
  --y:#F5FF00;
  --w:#F5F0E8;
  --bone:#F5F0E8;
  --mu:rgba(245,240,232,0.55);
  --mu2:rgba(245,240,232,0.62);
  --mu3:rgba(245,240,232,0.50);
  --bd:rgba(245,255,0,0.15);
  --bd2:rgba(245,240,232,0.1)
}

html{scroll-behavior:smooth}
body{
  background:var(--k);
  color:var(--w);
  font-family:'DM Sans',sans-serif;
  line-height:1.6;
  overflow-x:hidden;overflow-x:clip;
}

h1,h2,h3,h4{font-family:'Cormorant Garamond',serif;font-weight:700;letter-spacing:-0.015em}
a{color:inherit;text-decoration:none}

/* ─── NAV ──────────────────────────────────────────────────────────── */
nav{
  position:fixed;
  top:0;left:0;right:0;
  padding:1.5rem 3rem;
  display:flex;
  justify-content:space-between;
  align-items:center;
  z-index:100;
  background:rgba(6,6,6,0.85);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--bd2);
}
.logo{
  font-family:'Cormorant Garamond',serif;
  font-size:1rem;
  font-weight:700;
  letter-spacing:0.4em;
  text-transform:uppercase;
  color:var(--y);
}
.nav-links{
  display:flex;
  gap:2.2rem;
  list-style:none;
  font-size:0.65rem;
  letter-spacing:0.25em;
  text-transform:uppercase;
}
.nav-links a{color:var(--mu);transition:color 0.3s}
.nav-links a:hover{color:var(--y)}
.nav-cta{
  padding:0.6rem 1.4rem;
  border:1px solid var(--y);
  color:var(--y);
  font-size:0.6rem;
  letter-spacing:0.25em;
  text-transform:uppercase;
  cursor:pointer;
  transition:all 0.35s;
}
.nav-cta:hover{background:var(--y);color:var(--k)}

/* ─── BREADCRUMB ──────────────────────────────────────────────────── */
/* V10 — the breadcrumb used to be a fixed, transparent strip: page text
   scrolled straight through it. It is now a solid band that sticks just
   below the sticky nav; content passes underneath it, out of sight. */
.breadcrumb{
  position:sticky;
  top:5.15rem;
  padding:0.55rem 3rem;
  margin:0 0 -0.5rem;
  background:var(--k,#060606);
  width:100%;
  z-index:50;
  font-size:0.55rem;
  letter-spacing:0.32em;
  text-transform:uppercase;
  color:var(--mu2);
  display:flex;
  gap:0.6rem;
  align-items:center;
}
.breadcrumb a{color:var(--mu2);transition:color 0.3s}
.breadcrumb a:hover{color:var(--y)}
.breadcrumb .here{color:var(--y)}
.breadcrumb .sep{color:var(--mu3);font-size:0.5rem}

/* ─── MASTHEAD STRIP (issue-style metadata) ──────────────────────── */
/* ─── SECTION 01 · EDITORIAL COVER HERO ─────────────────────────── */
.s-cover{
  padding:8.5rem 3rem 6rem;
  display:grid;
  grid-template-columns:5fr 7fr;
  gap:4rem;
  align-items:end;
  border-bottom:1px solid var(--bd2);
}
.cover-text{padding-bottom:1rem}
.cover-eye{
  font-family:'Cormorant Garamond',serif;
  font-style:italic;
  font-size:1rem;
  color:var(--y);
  margin-bottom:1.5rem;
  font-weight:400;
}
.cover-h1{
  font-size:clamp(2.6rem,5.4vw,5.6rem);
  font-weight:600;
  line-height:0.92;
  margin-bottom:2rem;
  letter-spacing:-0.03em;
}
.cover-h1 em{
  font-style:italic;
  font-weight:400;
  color:var(--y);
}
.cover-deck{
  font-family:'Cormorant Garamond',serif;
  font-style:italic;
  font-weight:300;
  font-size:1.4rem;
  line-height:1.45;
  color:var(--mu);
  max-width:580px;
  margin-bottom:2.5rem;
  border-left:2px solid var(--y);
  padding-left:1.5rem;
}
.cover-byline{
  display:flex;
  gap:2rem;
  flex-wrap:wrap;
  padding-top:2rem;
  border-top:1px solid var(--bd2);
}
.byline-pair{
  display:flex;
  flex-direction:column;
  gap:0.3rem;
}
.byline-label{
  font-size:0.5rem;
  letter-spacing:0.32em;
  text-transform:uppercase;
  color:var(--mu2);
  font-weight:500;
}
.byline-value{
  font-family:'Cormorant Garamond',serif;
  font-style:italic;
  font-size:0.95rem;
  color:var(--w);
}

.cover-photo{
  position:relative;
  aspect-ratio:16/9;
  background:var(--k2);
  border:1px dashed rgba(245,255,0,0.18);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:2rem;
  text-align:center;
  overflow:hidden;
}
.photo-bg{
  position:absolute;
  inset:0;
  background-position:center;
  background-size:cover;
  z-index:1;
}
.photo-prompt{
  position:relative;
  z-index:2;
  max-width:340px;
}
.photo-prompt-icon{
  font-size:1.4rem;
  color:var(--y);
  margin-bottom:1.2rem;
  opacity:0.7;
}
.photo-prompt-label{
  font-size:0.55rem;
  letter-spacing:0.42em;
  text-transform:uppercase;
  color:var(--y);
  font-weight:500;
  margin-bottom:1rem;
}
.photo-prompt-text{
  font-family:'Cormorant Garamond',serif;
  font-style:italic;
  font-size:0.85rem;
  line-height:1.65;
  color:rgba(245,240,232,0.6);
}
.photo-meta{
  position:absolute;
  bottom:1rem;
  left:1rem;
  font-size:0.5rem;
  letter-spacing:0.3em;
  text-transform:uppercase;
  color:var(--mu2);
  font-weight:500;
  z-index:3;
}
.cover-photo-caption{
  margin-top:0.8rem;
  font-family:'Cormorant Garamond',serif;
  font-style:italic;
  font-size:0.75rem;
  color:var(--mu2);
  text-align:right;
  line-height:1.4;
}

/* ─── SECTION 02 · DROP CAP OPENING ──────────────────────────────── */
.s-opening{
  padding:7rem 3rem;
  max-width:880px;
  margin:0 auto;
}
.opening-section-mark{
  font-family:'Cormorant Garamond',serif;
  font-style:italic;
  font-size:0.85rem;
  letter-spacing:0.3em;
  text-transform:uppercase;
  color:var(--y);
  font-weight:500;
  margin-bottom:1.5rem;
  padding-bottom:1rem;
  border-bottom:1px solid var(--bd);
  display:flex;
  justify-content:space-between;
  align-items:baseline;
}
.opening-section-mark .roman{
  font-family:'Cormorant Garamond',serif;
  font-style:italic;
  color:var(--mu2);
  font-size:0.75rem;
  letter-spacing:0.2em;
}
.opening-prose{
  font-size:1.15rem;
  line-height:1.8;
  color:var(--w);
  font-weight:300;
}
.opening-prose p{margin-bottom:1.6rem}
.opening-prose p:first-child::first-letter{
  font-family:'Cormorant Garamond',serif;
  font-weight:600;
  font-size:6rem;
  line-height:0.85;
  float:left;
  padding:0.6rem 0.8rem 0 0;
  color:var(--y);
  margin-top:0.2rem;
}
.opening-prose strong{color:var(--y);font-weight:500}
.opening-prose em{font-style:italic;color:var(--w);font-weight:400}

/* ─── SECTION 03 · THREE-COLUMN "IN THIS FEATURE" ──────────────── */
.s-coverage{
  padding:6rem 3rem;
  border-top:1px solid var(--bd2);
  border-bottom:1px solid var(--bd2);
  background:#080808;
}
.coverage-header{
  max-width:900px;
  margin:0 auto 4rem;
  text-align:center;
}
.coverage-eye{
  font-family:'Cormorant Garamond',serif;
  font-style:italic;
  font-size:0.85rem;
  letter-spacing:0.3em;
  text-transform:uppercase;
  color:var(--y);
  margin-bottom:1.2rem;
}
.coverage-h{
  font-size:clamp(1.8rem,3.2vw,2.6rem);
  font-weight:600;
  line-height:1.05;
  letter-spacing:-0.02em;
}
.coverage-h em{
  font-style:italic;
  color:var(--y);
  font-weight:400;
}
.coverage-grid{
  max-width:1300px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:3rem;
}
.coverage-item{
  padding:0 1rem;
  border-top:2px solid var(--y);
  padding-top:1.5rem;
}
.coverage-num{
  font-family:'Cormorant Garamond',serif;
  font-style:italic;
  font-size:1rem;
  color:var(--y);
  margin-bottom:0.6rem;
  font-weight:500;
}
.coverage-title{
  font-size:1.4rem;
  font-weight:600;
  line-height:1.15;
  margin-bottom:1rem;
  letter-spacing:-0.015em;
}
.coverage-prose{
  font-size:0.9rem;
  line-height:1.7;
  color:var(--mu);
  font-weight:300;
}

/* ─── SECTION 04 · LONG-FORM MIDDLE ──────────────────────────────── */
.s-middle{
  padding:7rem 3rem;
}
.middle-inner{
  max-width:880px;
  margin:0 auto;
}
.middle-section-mark{
  font-family:'Cormorant Garamond',serif;
  font-style:italic;
  font-size:0.85rem;
  letter-spacing:0.3em;
  text-transform:uppercase;
  color:var(--y);
  font-weight:500;
  margin-bottom:1.5rem;
  padding-bottom:1rem;
  border-bottom:1px solid var(--bd);
  display:flex;
  justify-content:space-between;
  align-items:baseline;
}
.middle-section-mark .roman{
  font-family:'Cormorant Garamond',serif;
  font-style:italic;
  color:var(--mu2);
  font-size:0.75rem;
  letter-spacing:0.2em;
}
.middle-h{
  font-size:clamp(1.8rem,3.4vw,2.6rem);
  font-weight:600;
  line-height:1.1;
  margin-bottom:2.5rem;
  letter-spacing:-0.02em;
}
.middle-h em{
  font-style:italic;
  color:var(--y);
  font-weight:400;
}
.middle-prose{
  font-size:1.05rem;
  line-height:1.85;
  color:var(--w);
  font-weight:300;
}
.middle-prose p{margin-bottom:1.4rem}
.middle-prose strong{color:var(--y);font-weight:500}
.middle-prose em{font-style:italic;color:var(--w);font-weight:400}

/* Sidebar callouts inside long-form prose */
.callout{
  margin:3rem 0;
  padding:2rem;
  background:rgba(245,255,0,0.04);
  border-left:3px solid var(--y);
  position:relative;
}
.callout-label{
  font-size:0.55rem;
  letter-spacing:0.4em;
  text-transform:uppercase;
  color:var(--y);
  font-weight:500;
  margin-bottom:1rem;
  display:flex;
  align-items:center;
  gap:0.6rem;
}
.callout-label::before{
  content:'§';
  font-size:1.1rem;
  font-style:italic;
  font-family:'Cormorant Garamond',serif;
}
.callout-content{
  font-family:'Cormorant Garamond',serif;
  font-style:italic;
  font-size:1.15rem;
  line-height:1.55;
  color:var(--w);
  font-weight:400;
}
.callout-content em{font-style:italic;color:var(--y)}

/* Stat-in-margin callout — different style */
.stat-margin{
  margin:3rem 0;
  display:grid;
  grid-template-columns:auto 1fr;
  gap:2.5rem;
  align-items:start;
  padding:2rem 0;
  border-top:1px solid var(--bd2);
  border-bottom:1px solid var(--bd2);
}
.stat-margin-n{
  font-family:'Cormorant Garamond',serif;
  font-weight:600;
  font-size:4rem;
  color:var(--y);
  line-height:0.9;
  letter-spacing:-0.02em;
  min-width:160px;
}
.stat-margin-text{
  padding-top:0.6rem;
}
.stat-margin-text-label{
  font-size:0.55rem;
  letter-spacing:0.32em;
  text-transform:uppercase;
  color:var(--mu2);
  font-weight:500;
  margin-bottom:0.6rem;
}
.stat-margin-text-prose{
  font-family:'Cormorant Garamond',serif;
  font-style:italic;
  font-size:1.1rem;
  line-height:1.55;
  color:var(--w);
  font-weight:400;
}

/* Numbered editorial list — magazine sidebar treatment */
.editorial-list{
  margin:3rem 0;
  padding:2rem;
  border:1px solid var(--bd2);
  background:#080808;
}
.editorial-list-eye{
  font-size:0.55rem;
  letter-spacing:0.4em;
  text-transform:uppercase;
  color:var(--y);
  font-weight:500;
  margin-bottom:0.5rem;
}
.editorial-list-h{
  font-size:1.4rem;
  font-weight:600;
  line-height:1.15;
  margin-bottom:1.5rem;
  letter-spacing:-0.015em;
}
.editorial-list-h em{font-style:italic;color:var(--y);font-weight:400}
.editorial-list-items{
  display:grid;
  grid-template-columns:1fr;
  gap:1.2rem;
}
.editorial-list-item{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:1.5rem;
  align-items:baseline;
}
.editorial-list-num{
  font-family:'Cormorant Garamond',serif;
  font-style:italic;
  font-size:1.4rem;
  color:var(--y);
  font-weight:400;
  min-width:40px;
}
.editorial-list-text{
  font-size:0.95rem;
  line-height:1.65;
  color:var(--mu);
  font-weight:300;
}
.editorial-list-text strong{color:var(--w);font-weight:500}

/* Full-width pull quote — magazine spread style */
.pull-quote{
  margin:5rem -3rem;
  padding:5rem 3rem;
  text-align:center;
  border-top:1px solid var(--bd);
  border-bottom:1px solid var(--bd);
  position:relative;
}
.pull-quote::before{
  content:'"';
  position:absolute;
  top:1rem;
  left:50%;
  transform:translateX(-50%);
  font-family:'Cormorant Garamond',serif;
  font-style:italic;
  font-size:5rem;
  color:var(--y);
  opacity:0.3;
  line-height:1;
}
.pull-quote-text{
  font-family:'Cormorant Garamond',serif;
  font-style:italic;
  font-weight:400;
  font-size:clamp(1.6rem,3vw,2.4rem);
  line-height:1.35;
  color:var(--w);
  max-width:900px;
  margin:0 auto;
}
.pull-quote-text em{color:var(--y);font-style:italic;font-weight:500}

/* ─── SECTION 05 · CASE AS INSET FEATURE ─────────────────────────── */
.s-case{
  padding:8rem 3rem;
  background:linear-gradient(180deg,#080808 0%,var(--k) 100%);
  border-top:1px solid var(--bd2);
}
.case-inner{
  max-width:1200px;
  margin:0 auto;
}
.case-marker{
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  padding-bottom:1.5rem;
  border-bottom:2px solid var(--y);
  margin-bottom:3rem;
}
.case-marker-label{
  font-size:0.6rem;
  letter-spacing:0.5em;
  text-transform:uppercase;
  color:var(--y);
  font-weight:500;
}
.case-marker-meta{
  font-family:'Cormorant Garamond',serif;
  font-style:italic;
  color:var(--mu2);
  font-size:0.8rem;
  letter-spacing:0.2em;
  text-transform:uppercase;
}
.case-grid{
  display:grid;
  grid-template-columns:5fr 7fr;
  gap:4rem;
  align-items:start;
}
.case-photo{
  aspect-ratio:4/5;
  background:var(--k2);
  border:1px dashed rgba(245,255,0,0.18);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:2rem;
  text-align:center;
  overflow:hidden;
  position:relative;
}
.case-photo-caption{
  margin-top:0.8rem;
  font-family:'Cormorant Garamond',serif;
  font-style:italic;
  font-size:0.78rem;
  color:var(--mu2);
  line-height:1.4;
  text-align:left;
}
.case-text{padding:0}
.case-eye{
  font-family:'Cormorant Garamond',serif;
  font-style:italic;
  font-size:1rem;
  color:var(--y);
  margin-bottom:1.2rem;
}
.case-h{
  font-size:clamp(1.8rem,3.2vw,2.6rem);
  font-weight:600;
  line-height:1.1;
  margin-bottom:1.8rem;
  letter-spacing:-0.02em;
}
.case-h em{
  font-style:italic;
  color:var(--y);
  font-weight:400;
}
.case-prose{
  font-size:1rem;
  line-height:1.8;
  color:var(--w);
  font-weight:300;
}
.case-prose p{margin-bottom:1.4rem}
.case-prose strong{color:var(--y);font-weight:500}
.case-prose em{font-style:italic;color:var(--w);font-weight:400}
.case-pull{
  font-family:'Cormorant Garamond',serif;
  font-style:italic;
  font-size:1.4rem;
  line-height:1.4;
  color:var(--y);
  padding:1.5rem 0;
  margin:2rem 0;
  border-top:1px solid var(--bd);
  border-bottom:1px solid var(--bd);
  font-weight:400;
}
.case-stats{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:1.5rem;
  margin-top:2.5rem;
  padding-top:2rem;
  border-top:1px solid var(--bd2);
}
.case-stat-n{
  font-family:'Cormorant Garamond',serif;
  font-size:2.4rem;
  font-weight:600;
  color:var(--y);
  line-height:1;
  letter-spacing:-0.02em;
  margin-bottom:0.4rem;
}
.case-stat-l{
  font-size:0.55rem;
  letter-spacing:0.28em;
  text-transform:uppercase;
  color:var(--mu2);
  font-weight:500;
  line-height:1.4;
}
.case-link{
  display:inline-flex;
  align-items:center;
  gap:0.6rem;
  margin-top:2rem;
  font-size:0.6rem;
  letter-spacing:0.3em;
  text-transform:uppercase;
  color:var(--y);
  border-bottom:1px solid var(--bd);
  padding-bottom:0.5rem;
  transition:gap 0.3s;
}
.case-link:hover{gap:1rem}

/* ─── SECTION 06 · TESTIMONIAL AS EDITORIAL BLOCKQUOTE ───────────── */
.s-testimonial{
  padding:8rem 3rem;
  border-top:1px solid var(--bd2);
}
.testimonial-inner{
  max-width:980px;
  margin:0 auto;
}
.testimonial-eye{
  font-family:'Cormorant Garamond',serif;
  font-style:italic;
  font-size:0.85rem;
  letter-spacing:0.3em;
  text-transform:uppercase;
  color:var(--y);
  font-weight:500;
  margin-bottom:2rem;
  padding-bottom:1rem;
  border-bottom:1px solid var(--bd);
  display:flex;
  justify-content:space-between;
  align-items:baseline;
}
.testimonial-eye .roman{
  font-family:'Cormorant Garamond',serif;
  font-style:italic;
  color:var(--mu2);
  font-size:0.75rem;
  letter-spacing:0.2em;
}
.testimonial-blockquote{
  font-family:'Cormorant Garamond',serif;
  font-style:italic;
  font-weight:400;
  font-size:clamp(1.5rem,2.6vw,2rem);
  line-height:1.45;
  color:var(--w);
  margin-bottom:2.5rem;
  padding-left:2rem;
  border-left:3px solid var(--y);
}
.testimonial-blockquote em{color:var(--y);font-style:italic;font-weight:500}
.testimonial-attribution{
  padding-left:2rem;
  display:flex;
  flex-direction:column;
  gap:0.3rem;
}
.testimonial-dash{
  font-family:'Cormorant Garamond',serif;
  font-style:italic;
  font-size:1.4rem;
  color:var(--y);
  margin-bottom:0.5rem;
  line-height:1;
}
.testimonial-name{
  font-family:'Cormorant Garamond',serif;
  font-size:1.1rem;
  color:var(--w);
  font-weight:500;
}
.testimonial-role{
  font-size:0.6rem;
  letter-spacing:0.3em;
  text-transform:uppercase;
  color:var(--mu2);
  font-weight:500;
}

/* ─── SECTION 07 · PRICING AS CLOSING NOTE ──────────────────────── */
.s-pricing{
  padding:7rem 3rem;
  border-top:1px solid var(--bd2);
  border-bottom:1px solid var(--bd2);
  background:#080808;
}
.pricing-inner{
  max-width:880px;
  margin:0 auto;
}
.pricing-marker{
  font-family:'Cormorant Garamond',serif;
  font-style:italic;
  font-size:0.85rem;
  letter-spacing:0.3em;
  text-transform:uppercase;
  color:var(--y);
  font-weight:500;
  margin-bottom:1.5rem;
  padding-bottom:1rem;
  border-bottom:1px solid var(--bd);
  display:flex;
  justify-content:space-between;
  align-items:baseline;
}
.pricing-marker .roman{
  font-family:'Cormorant Garamond',serif;
  font-style:italic;
  color:var(--mu2);
  font-size:0.75rem;
  letter-spacing:0.2em;
}
.pricing-h{
  font-size:clamp(1.8rem,3vw,2.4rem);
  font-weight:600;
  line-height:1.1;
  margin-bottom:2.5rem;
  letter-spacing:-0.02em;
}
.pricing-h em{
  font-style:italic;
  color:var(--y);
  font-weight:400;
}
.pricing-prose{
  font-size:1rem;
  line-height:1.85;
  color:var(--w);
  font-weight:300;
}
.pricing-prose p{margin-bottom:1.4rem}
.pricing-prose strong{color:var(--y);font-weight:500}
.pricing-prose em{font-style:italic;color:var(--w);font-weight:400}

/* ─── SECTION 08 · RELATED READING ──────────────────────────────── */
.s-related{
  padding:7rem 3rem;
  max-width:1300px;
  margin:0 auto;
}
.related-marker{
  font-family:'Cormorant Garamond',serif;
  font-style:italic;
  font-size:0.85rem;
  letter-spacing:0.3em;
  text-transform:uppercase;
  color:var(--y);
  font-weight:500;
  margin-bottom:1.5rem;
  padding-bottom:1rem;
  border-bottom:1px solid var(--bd);
  display:flex;
  justify-content:space-between;
  align-items:baseline;
}
.related-marker .roman{
  font-family:'Cormorant Garamond',serif;
  font-style:italic;
  color:var(--mu2);
  font-size:0.75rem;
  letter-spacing:0.2em;
}
.related-h{
  font-size:clamp(1.8rem,3vw,2.4rem);
  font-weight:600;
  line-height:1.1;
  margin-bottom:4rem;
  letter-spacing:-0.02em;
}
.related-h em{
  font-style:italic;
  color:var(--y);
  font-weight:400;
}
.related-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0;
}
.related-item{
  padding:2.5rem 0;
  border-top:1px solid var(--bd2);
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:2rem;
  align-items:start;
  cursor:pointer;
  transition:padding-left 0.3s;
}
.related-item:nth-child(even){padding-left:2.5rem}
.related-item:nth-last-child(-n+2){border-bottom:1px solid var(--bd2)}
.related-item:hover{padding-left:1rem}
.related-item:nth-child(even):hover{padding-left:3.5rem}
.related-num{
  font-family:'Cormorant Garamond',serif;
  font-style:italic;
  font-size:1.2rem;
  color:var(--y);
  font-weight:400;
  padding-top:0.3rem;
}
.related-content{display:flex;flex-direction:column;gap:0.5rem}
.related-name{
  font-family:'Cormorant Garamond',serif;
  font-size:1.4rem;
  font-weight:600;
  color:var(--w);
  line-height:1.1;
}
.related-desc{
  font-family:'Cormorant Garamond',serif;
  font-style:italic;
  font-size:0.9rem;
  color:var(--mu);
  line-height:1.55;
  font-weight:300;
}
.related-arr{
  font-size:0.55rem;
  letter-spacing:0.3em;
  text-transform:uppercase;
  color:var(--y);
  font-weight:500;
  padding-top:0.6rem;
  transition:transform 0.3s;
}
.related-item:hover .related-arr{transform:translateX(8px)}

/* ─── CLOSING / CTA ─────────────────────────────────────────────── */
.s-cta{
  padding:9rem 3rem;
  text-align:center;
  background:radial-gradient(ellipse at center,rgba(245,255,0,0.04),transparent 70%);
}
.cta-marker{
  font-family:'Cormorant Garamond',serif;
  font-style:italic;
  font-size:0.85rem;
  letter-spacing:0.3em;
  text-transform:uppercase;
  color:var(--y);
  font-weight:500;
  margin-bottom:2rem;
}
.cta-h{
  font-size:clamp(2.4rem,5vw,4.2rem);
  font-weight:600;
  line-height:1;
  margin-bottom:2rem;
  letter-spacing:-0.025em;
  max-width:900px;
  margin-left:auto;
  margin-right:auto;
}
.cta-h em{
  font-style:italic;
  color:var(--y);
  font-weight:400;
}
.cta-body{
  font-size:1rem;
  line-height:1.75;
  color:var(--mu);
  font-weight:300;
  max-width:580px;
  margin:0 auto 3rem;
}
.cta-btn{
  display:inline-block;
  padding:1.2rem 3rem;
  background:var(--y);
  color:var(--k);
  font-size:0.65rem;
  letter-spacing:0.3em;
  text-transform:uppercase;
  font-weight:500;
  border-radius:999px;
  transition:transform 0.3s;
}
.cta-btn:hover{transform:translateY(-2px)}

/* ─── FOOTER ──────────────────────────────────────────────────────── */
footer{
  padding:4rem 3rem 3rem;
  border-top:1px solid var(--bd2);
}
.footer-inner{
  max-width:1500px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:1.5rem;
  font-size:0.55rem;
  letter-spacing:0.3em;
  text-transform:uppercase;
  color:var(--mu2);
}
.footer-inner > :nth-child(1){justify-self:start}
.footer-inner > :nth-child(2){justify-self:center}
.footer-inner > :nth-child(3){justify-self:end;text-align:right}
.footer-inner a{color:var(--mu2);transition:color 0.3s}
.footer-inner a:hover{color:var(--y)}
.footer-inner .l{color:var(--y);font-weight:500}

/* ─── RESPONSIVE ──────────────────────────────────────────────────── */
@media (max-width:900px){.logo{letter-spacing:0.2em}.burger{flex-shrink:0}
  nav{padding:1rem 1.5rem}
  .nav-links{display:none}
  .breadcrumb{padding:0.5rem 1.5rem;top:4.6rem}
  .s-cover{
    grid-template-columns:1fr;
    padding:3rem 1.5rem 4rem;
    gap:3rem;
  }
  .s-opening{padding:4rem 1.5rem}
  .opening-prose p:first-child::first-letter{font-size:4rem}
  .s-coverage{padding:4rem 1.5rem}
  .coverage-grid{grid-template-columns:1fr;gap:2.5rem}
  .s-middle{padding:4rem 1.5rem}
  .pull-quote{margin:3rem -1.5rem;padding:3rem 1.5rem}
  .editorial-list-item{grid-template-columns:1fr;gap:0.5rem}
  .stat-margin{grid-template-columns:1fr;gap:1rem}
  .stat-margin-n{font-size:3rem}
  .s-case{padding:5rem 1.5rem}
  .case-grid{grid-template-columns:1fr;gap:2.5rem}
  .case-stats{grid-template-columns:1fr 1fr 1fr;gap:1rem}
  .s-testimonial{padding:5rem 1.5rem}
  .s-pricing{padding:5rem 1.5rem}
  .s-related{padding:5rem 1.5rem}
  .related-grid{grid-template-columns:1fr}
  .related-item:nth-child(even){padding-left:0}
  .related-item:nth-child(even):hover{padding-left:1rem}
  .s-cta{padding:6rem 1.5rem}
  .footer-inner{grid-template-columns:1fr;justify-items:start;gap:1rem}
  .footer-inner > :nth-child(2){justify-self:start}
  .footer-inner > :nth-child(3){justify-self:start;text-align:left}
}

/* ─── DROPDOWN NAV (added) ──────────────────────────── */
.nav-item{position:relative}
.nav-item > a{display:block;padding:0.4rem 0}
.nav-item.has-dd:hover > a{color:var(--y)}
.dd{position:absolute;top:100%;left:50%;transform:translateX(-50%);background:var(--k);border:1px solid var(--bd);width:780px;padding:1.5rem;display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem 1.5rem;opacity:0;visibility:hidden;transition:opacity 0.3s,visibility 0.3s;margin-top:0.5rem;box-shadow:0 20px 60px rgba(0,0,0,0.5);z-index:200}
.nav-item:hover .dd,.nav-item:focus-within .dd{opacity:1;visibility:visible}
.dd h4,.dd .dd-h{font-family:'Cormorant Garamond',serif;font-size:0.85rem;font-weight:600;color:var(--y);margin-bottom:0.7rem;padding-bottom:0.4rem;border-bottom:1px solid var(--bd);letter-spacing:0.02em;text-transform:none}
.dd ul{list-style:none}
.dd a{color:var(--mu);text-decoration:none;display:block;transition:color 0.25s,padding 0.25s;font-size:0.65rem;letter-spacing:0.05em;text-transform:none}
.dd li{font-size:0.65rem;color:var(--mu);padding:0.25rem 0;letter-spacing:0.05em;font-family:'DM Sans',sans-serif;line-height:1.4;text-transform:none}
.dd li a:hover{color:var(--y);padding-left:0.4rem}
.dd li.dd-all{margin-top:0.5rem;padding-top:0.5rem;border-top:1px solid var(--bd)}
.dd li.dd-all a{color:var(--y);font-weight:500}
.dd li.dd-all a:hover{padding-left:0.4rem}
@media (max-width:900px){.dd{display:none !important}}

/* ═══════════════ MOBILE HAMBURGER MENU ═══════════════ */
.burger{display:none;position:relative;width:30px;height:20px;background:none;border:none;cursor:pointer;z-index:1002;padding:0;pointer-events:auto}
.burger span{position:absolute;left:0;width:100%;height:2px;background:var(--y);border-radius:2px;transition:transform .4s cubic-bezier(.16,1,.3,1),opacity .25s}
.burger span:nth-child(1){top:calc(50% - 9px);transform:translateY(-50%)}
.burger span:nth-child(2){top:50%;transform:translateY(-50%)}
.burger span:nth-child(3){bottom:auto;top:calc(50% + 9px);transform:translateY(-50%)}
body.menu-open .burger span:nth-child(1){top:50%;transform:translateY(-50%) rotate(45deg)}
body.menu-open .burger span:nth-child(2){opacity:0}
body.menu-open .burger span:nth-child(3){bottom:auto;top:50%;transform:translateY(-50%) rotate(-45deg)}
.mobile-menu{position:fixed;inset:0;z-index:1001;background:#060606;display:flex;flex-direction:column;padding:5.5rem 1.8rem 2rem;opacity:0;visibility:hidden;transform:translateX(6%);transition:opacity .4s ease,transform .55s cubic-bezier(.16,1,.3,1),visibility .4s;overflow-y:auto;-webkit-overflow-scrolling:touch}
body.menu-open .mobile-menu{opacity:1;visibility:visible;transform:none}
.mm-aura{position:absolute;inset:0;z-index:0;pointer-events:none;background:radial-gradient(58% 46% at 82% 14%,rgba(245,255,0,.13),transparent 70%),radial-gradient(50% 40% at 6% 92%,rgba(245,255,0,.08),transparent 72%)}
.mm-inner{position:relative;z-index:1;display:flex;flex-direction:column;flex:1}
.mm-item{opacity:0;transform:translateY(24px);transition:opacity .5s ease,transform .55s cubic-bezier(.16,1,.3,1)}
body.menu-open .mm-item{opacity:1;transform:none}
body.menu-open .mm-item:nth-child(1){transition-delay:.10s}
body.menu-open .mm-item:nth-child(2){transition-delay:.16s}
body.menu-open .mm-item:nth-child(3){transition-delay:.22s}
body.menu-open .mm-item:nth-child(4){transition-delay:.28s}
body.menu-open .mm-item:nth-child(5){transition-delay:.34s}
.mm-link{font-family:'Cormorant Garamond',serif;font-size:2.3rem;font-weight:600;color:var(--w);padding:.55rem 0;letter-spacing:-.02em;display:flex;align-items:center;justify-content:space-between;width:100%;border:none;border-bottom:1px solid rgba(245,240,232,.08);background:none;text-align:left;cursor:pointer;line-height:1.05}
.mm-link:active,.mm-link:hover{color:var(--y)}
.mm-chevron{font-family:'DM Sans',sans-serif;font-size:1.6rem;font-weight:300;color:var(--y);transition:transform .4s cubic-bezier(.16,1,.3,1);line-height:1}
.mm-acc.open .mm-chevron{transform:rotate(45deg)}
.mm-sub{display:grid;grid-template-columns:1fr 1fr;gap:0 1.4rem;max-height:0;overflow:hidden;transition:max-height .5s cubic-bezier(.16,1,.3,1)}
.mm-acc.open .mm-sub{max-height:520px}
.mm-sub a{font-family:'DM Sans',sans-serif;font-size:.82rem;font-weight:300;color:var(--mu);padding:.62rem 0;letter-spacing:.01em;border-bottom:1px solid rgba(245,240,232,.05)}
.mm-sub a:active,.mm-sub a:hover{color:var(--y)}
.mm-sub a.mm-all{grid-column:1 / -1;color:var(--y);letter-spacing:.04em}
.mm-foot{position:relative;z-index:1;padding-top:1.6rem;display:flex;flex-direction:column;gap:1.1rem}
.mm-cta{background:var(--y);color:var(--k);text-align:center;padding:1.1rem;font-size:.66rem;letter-spacing:.3em;text-transform:uppercase;font-weight:600;border-radius:999px}
.mm-meta{display:flex;justify-content:space-between;font-size:.55rem;letter-spacing:.2em;text-transform:uppercase;color:var(--mu2)}
.mm-meta a{color:var(--mu2)}
@media (max-width:900px){
  .burger{display:block}
  .nav-cta{display:none !important}
}
@media (min-width:901px){ .mobile-menu{display:none !important} }

/* ── V2 accessibility layer ───────────────────────────── */
.skip-link{position:absolute;left:-9999px;top:0;z-index:9999;background:var(--y,#F5FF00);color:#060606;padding:.75rem 1.25rem;font:600 .9rem/1 'DM Sans',system-ui,sans-serif;text-decoration:none;border-radius:0 0 4px 0}
.skip-link:focus{left:0}
:focus-visible{outline:2px solid var(--y,#F5FF00);outline-offset:3px}
a:focus-visible,button:focus-visible,[role="button"]:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible,summary:focus-visible{outline:2px solid var(--y,#F5FF00);outline-offset:3px}
@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{animation-duration:.001ms !important;animation-iteration-count:1 !important;transition-duration:.001ms !important;scroll-behavior:auto !important}
  .marq-track,.marq2-track,.ticker-track{animation:none !important;transform:none !important}
  video{display:none}
}

/* ── V4 · image slots ───────────────────────────────────────────
   The production prompt and the filename caption are SIBLINGS of the
   element that carries the background image, not descendants — which is
   why the V3 descendant-only rule hid nothing. Both relationships are
   covered here, and the loader also marks the parent. */
.has-img .photo-prompt,.has-img .media-slot-prompt,.has-img .photo-meta,.has-img .media-slot-meta,
.has-img .hero-ph,.has-img .ai-ph,.has-img .imgph-brief,.has-img .imgph,
.has-img ~ .photo-prompt,.has-img ~ .media-slot-prompt,.has-img ~ .photo-meta,.has-img ~ .media-slot-meta,
.has-img ~ .hero-ph,.has-img ~ .ai-ph,.has-img ~ .imgph-brief,.has-img ~ .imgph,
.hasimg .photo-prompt,.hasimg .photo-meta,.hasimg ~ .photo-prompt,.hasimg ~ .photo-meta{display:none !important}
.has-img{background-size:cover;background-position:center}

/* Target size (V4) — the burger was 30x20 CSS px; WCAG 2.2 target minimum is
   24x24. Padding enlarges the hit area without changing the drawn icon. */
@media (max-width:900px){#burgerBtn{min-width:44px;min-height:44px;display:inline-flex;align-items:center;justify-content:center}}

/* background-attachment:fixed is expensive and behaves badly on iOS —
   disabled below the desktop breakpoint. */
@media (max-width: 900px){
  [style*="background-attachment"],.s-hero-photo,.hero-bg,.parallax{background-attachment:scroll !important}
}

.mm-close{position:absolute;top:1.1rem;right:1.4rem;z-index:3;width:48px;height:48px;
  display:flex;align-items:center;justify-content:center;background:none;border:0;
  color:var(--y,#F5FF00);font-size:2rem;line-height:1;cursor:pointer;padding:0}
.mm-close:focus-visible{outline:2px solid var(--y,#F5FF00);outline-offset:3px}
@media(min-width:901px){.mm-close{display:none}}

/* ── V6 · mobile menu stacking (site-wide) ─────────────────────
   .chrome-top is position:fixed with z-index:50 and creates a stacking
   context, so the burger's z-index:1002 was trapped under the menu
   overlay (1001). In V5 the lift rule was appended only to the home
   stylesheet; every other page still hid the burger-X. Site-wide now. */
body.menu-open .chrome-top{z-index:1002}
body.menu-open .burger{pointer-events:auto}
body.menu-open .chrome-top > *:not(.burger){opacity:0;pointer-events:none;transition:opacity .2s}

/* ── V6 · no-JavaScript fallbacks ──────────────────────────────
   Without JS: FAQ answers must be readable, all three contact panels
   must be in normal flow, and the mobile menu must exist as a plain
   list instead of an unopenable overlay. */
html:not(.js) .faq-i .faq-a{visibility:visible;max-height:none !important;opacity:1;display:block}
html:not(.js) .faq-i .faq-toggle{display:none}
html:not(.js) [role="tabpanel"]{display:block !important;position:static;opacity:1;visibility:visible}
html:not(.js) .tabs{display:none}
@media (max-width:900px){
  html:not(.js) .burger{display:none}
  html:not(.js) .mobile-menu{position:static;opacity:1;visibility:visible;transform:none;height:auto;padding:1rem 1.8rem;display:block}
  html:not(.js) .mobile-menu .mm-sub{max-height:none;overflow:visible}
  html:not(.js) .mobile-menu .mm-sub a{visibility:visible}
  html:not(.js) .mm-close{display:none}
}

/* V6 — the 780px mega menu could overflow the viewport just above the
   900px breakpoint and get clipped by body overflow-x:hidden. */
.nav-item .dd{max-width:calc(100vw - 2rem)}

/* ── V6.1 · no-JS menu: the children too ───────────────────────
   V6 made the .mobile-menu container static without JS, but .mm-item
   still started at opacity:0 waiting for body.menu-open — which cannot
   exist without JavaScript. 2,280 primary links were invisible yet
   focusable. The reset below is what was missing. */
html:not(.js) .mm-item{opacity:1 !important;transform:none !important}

html:not(.js) #mNav,html:not(.js) .m-nav{display:none !important}

/* ── V7 · no-JS Services: honest semantics ─────────────────────
   In V6.1 the toggle stayed a focusable <button aria-expanded="false">
   while the submenu was visibly open — a dead control announcing a
   false state. Without JS the button is now hidden entirely and a
   plain text label takes its place; with JS the label is hidden. */
.mm-static{display:none}
html:not(.js) .mm-toggle{display:none !important}
html:not(.js) .mm-static{display:block}
.dd .dd-h{margin:0}

/* ── V7.2 · global motion control (WCAG 2.2.2) ─────────────────
   Auto-moving, auto-updating content that runs longer than five seconds
   needs a user-facing pause, independent of OS-level reduced-motion. */
.motion-toggle{position:fixed;bottom:1rem;left:1rem;z-index:900;background:#060606;color:var(--y,#F5FF00);
  border:1px solid var(--y,#F5FF00);padding:0.45rem 0.9rem;font-size:0.72rem;letter-spacing:0.14em;
  text-transform:uppercase;cursor:pointer}
.motion-toggle:focus-visible{outline:2px solid var(--y,#F5FF00);outline-offset:3px}
html.motion-paused .marq-track,html.motion-paused .caps-row{animation-play-state:paused !important}
html.motion-paused *{scroll-behavior:auto !important}
@media print{.motion-toggle{display:none}}
.s-case-eye{font-size:0.6rem;letter-spacing:0.28em;text-transform:uppercase;color:var(--y,#F5FF00);opacity:0.75;margin:0 0 0.8rem}

/* ── V8 · language switcher in the chrome ──────────────────────
   EN·FR must be instantly visible to every visitor, not buried in
   the footer. Footer links stay; these are the loud ones. */
.lang-switch{display:flex;align-items:center;gap:0.4rem;margin-left:0.9rem;flex-shrink:0}
.lang-switch .ls-cur{color:#060606;background:var(--y,#F5FF00);padding:0.3rem 0.6rem;
  font-size:0.68rem;font-weight:700;letter-spacing:0.16em}
.lang-switch .ls-fr{color:var(--y,#F5FF00);border:1px solid var(--y,#F5FF00);
  padding:calc(0.3rem - 1px) 0.6rem;font-size:0.68rem;font-weight:700;
  letter-spacing:0.16em;text-decoration:none;transition:background .15s,color .15s}
.lang-switch .ls-fr:hover,.lang-switch .ls-fr:focus-visible{background:var(--y,#F5FF00);color:#060606}
.lang-switch .ls-fr:focus-visible{outline:2px solid var(--y,#F5FF00);outline-offset:2px}
@media (max-width:900px){
  .lang-switch{margin-left:auto;margin-right:0.8rem}
  .lang-switch .ls-cur,.lang-switch .ls-fr{font-size:0.62rem;padding:0.26rem 0.5rem}
  .lang-switch .ls-fr{padding:calc(0.26rem - 1px) 0.5rem}
}

/* ── V25 · cover della disciplina ──────────────────────────────
   The cover slot was a square in the narrower column: landscape
   mock-ups lost their sides to the crop. Equal columns and a 4:3
   frame let a 16:9 photograph read as intended. */

/* ── V26 · cover: la fotografia comanda ────────────────────────
   The photograph now takes the wider column, keeps its native 16:9
   and bleeds to the page edge. The headline ceiling drops a notch so
   the longest word still fits the narrower text column. */
.s-cover .cover-photo{margin-right:-3rem}
@media (max-width:900px){.s-cover .cover-photo{margin-right:0}}

/* ── V27 · la fessura sotto la barra ───────────────────────────
   The fixed navigation bar ends at 5.31rem; the breadcrumb was
   sticking at 5.4rem, leaving a ~2px slit through which the page
   scrolled in view. It now tucks slightly under the bar. */

/* ── V28 · via il cartiglio ────────────────────────────────────
   The masthead strip (discipline, engagement, scale, reading time,
   pillar) is gone from the discipline pages; its rules go with it. */

/* ── V29 · respiro restituito alla cover ───────────────────────
   With the masthead strip gone, the cover's eyebrow line slid under
   the sticky breadcrumb while scrolling. The section reclaims the
   vertical room the strip used to occupy. */

/* ── V30 · tetto di composizione ───────────────────────────────
   Below 1800px nothing changes at all: laptops and ordinary monitors
   keep their existing gutters. Past that width the side padding grows
   so the CONTENT settles into a 1700px column, while backgrounds —
   hero, bands, navigation bar, footer — still run edge to edge.
   The threshold is chosen so the gutter at the switch (50px) matches
   the natural one (48px): no visible jump. */
@media (min-width:1800px){
  nav,
  .breadcrumb,
  main > section,
  main > header,
  main > div,
  footer,
  .hero,
  .band,
  .cta-block{
    padding-left:calc((100vw - 1700px) / 2)  !important;
    padding-right:calc((100vw - 1700px) / 2) !important;
  }
  .s-cover .cover-photo{margin-right:calc((100vw - 1700px) / -2)}
}

/* ── V31 · equilibrio della cover sugli schermi larghi ─────────
   Inside the 1700px shell the 5/7 split made the photograph swallow
   the page. Past the shell threshold the columns even out, so the
   headline and the picture carry the same weight. */
@media (min-width:1800px){
  .s-cover{grid-template-columns:6fr 5fr}
  .s-cover .cover-photo{margin-right:calc((100vw - 1700px) / -2)}
}

/* ── V32 · la cover rientra nel tetto ──────────────────────────
   V30 told the cover photograph to bleed by half the gutter so it
   would touch the page edge. On a wide screen that gutter is huge,
   so the picture shot past the shell and dwarfed the page. Inside
   the shell it now stays put: no bleed, even columns. */
@media (min-width:1800px){
  .s-cover .cover-photo{margin-right:0 !important}
  .s-cover{grid-template-columns:6fr 5fr !important}
}

/* V38 · global motion pause */
html.motion-paused *,html.motion-paused *::before,html.motion-paused *::after{animation-play-state:paused !important}

/* V38 · hero chips off in production (V37-016) */
.hero-ph{display:none !important}

/* ── V44 · consent banner (PECR/ICO) ────────────────────────────
   Refusal is one click, same weight as acceptance. Sits above the
   motion toggle, never traps focus, disappears on choice. */
#rvz-cc{position:fixed;left:0;right:0;bottom:0;z-index:2000;background:rgba(6,6,6,.97);border-top:1px solid var(--bd,#2a2a24);transform:translateY(102%);transition:transform .26s ease;padding:1.15rem 1.3rem;backdrop-filter:blur(6px)}
#rvz-cc.on{transform:none}
#rvz-cc .cc-in{max-width:1100px;margin:0 auto;display:flex;gap:1.4rem;align-items:center;flex-wrap:wrap}
#rvz-cc .cc-t{font-family:'Cormorant Garamond',serif;font-size:1.12rem;color:var(--w,#f2efe8);margin:0 0 .2rem;flex:1 1 100%}
#rvz-cc .cc-b{font-size:.8rem;line-height:1.6;color:var(--mu,#a8a49a);margin:0;flex:1 1 380px}
#rvz-cc .cc-b a{color:var(--y,#e8ff00)}
#rvz-cc .cc-r{display:flex;gap:.7rem;flex:0 0 auto}
#rvz-cc button{font-family:inherit;font-size:.66rem;letter-spacing:.2em;text-transform:uppercase;padding:.78rem 1.25rem;cursor:pointer;border:1px solid var(--bd,#2a2a24);background:transparent;color:var(--w,#f2efe8);min-height:44px}
#rvz-cc .cc-yes{background:var(--y,#e8ff00);color:#060606;border-color:var(--y,#e8ff00);font-weight:600}
#rvz-cc button:focus-visible{outline:2px solid var(--y,#e8ff00);outline-offset:2px}
@media (max-width:640px){#rvz-cc .cc-r{flex:1 1 100%}#rvz-cc button{flex:1}}
/* ── V44 · leggibilità: nessun testo funzionale sotto 11px ─────── */
.crumb,.hero-eye,.case-eye,.cs-eye,.split-eye,.stat-l,.cs-stat-l,.off-tz,.off-tag,.struct-tag,.mi,.stag,.s-case-eye,.case-marker-meta{font-size:0.7rem !important;letter-spacing:.24em}
