/* =========================================================
   D-JI HAIR EVOLUTION Toulouse
   warm earth editorial · broadsheet · film-grain background
   ========================================================= */

:root {
  --bg: #f5efe4;
  --bg-2: #efe6d6;
  --ink: #2b1e14;
  --ink-soft: #5c4a3a;
  --ink-faint: #8a7663;
  --accent: #c25a37;
  --accent-ink: #8f3d20;
  --secondary: #6a7a4a;
  --rule: rgba(43, 30, 20, 0.16);
  --rule-strong: rgba(43, 30, 20, 0.32);
  --card: rgba(255, 252, 246, 0.62);
  --grain-opacity: 0.055;
  --shadow: 0 1px 0 rgba(43, 30, 20, 0.06), 0 18px 40px -28px rgba(43, 30, 20, 0.45);

  --serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --measure: 68ch;
  --gutter: clamp(1.1rem, 4vw, 3.5rem);
}

html[data-theme="dark"] {
  --bg: #1c130c;
  --bg-2: #241a11;
  --ink: #f2e7d8;
  --ink-soft: #cbb8a2;
  --ink-faint: #9c8873;
  --accent: #e0855f;
  --accent-ink: #f0a684;
  --secondary: #9aab72;
  --rule: rgba(242, 231, 216, 0.16);
  --rule-strong: rgba(242, 231, 216, 0.3);
  --card: rgba(255, 250, 242, 0.05);
  --grain-opacity: 0.075;
  --shadow: 0 1px 0 rgba(0, 0, 0, 0.3), 0 18px 40px -28px rgba(0, 0, 0, 0.8);
}

@media (prefers-color-scheme: dark) {
  html:not([data-theme="light"]) {
    --bg: #1c130c;
    --bg-2: #241a11;
    --ink: #f2e7d8;
    --ink-soft: #cbb8a2;
    --ink-faint: #9c8873;
    --accent: #e0855f;
    --accent-ink: #f0a684;
    --secondary: #9aab72;
    --rule: rgba(242, 231, 216, 0.16);
    --rule-strong: rgba(242, 231, 216, 0.3);
    --card: rgba(255, 250, 242, 0.05);
    --grain-opacity: 0.075;
    --shadow: 0 1px 0 rgba(0, 0, 0, 0.3), 0 18px 40px -28px rgba(0, 0, 0, 0.8);
  }
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background-color: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  font-optical-sizing: auto;
  text-wrap: pretty;
  overflow-x: hidden;
}

/* --- animated film-grain noise field --------------------- */
body::before {
  content: "";
  position: fixed;
  inset: -10%;
  z-index: 0;
  pointer-events: none;
  opacity: var(--grain-opacity);
  filter: url(#grain);
  background-image: radial-gradient(circle at 50% 50%, #000 0%, #000 100%);
  mix-blend-mode: multiply;
  will-change: filter;
}
html[data-theme="dark"] body::before { mix-blend-mode: screen; }
@media (prefers-color-scheme: dark) {
  html:not([data-theme="light"]) body::before { mix-blend-mode: screen; }
}

.grain-source { position: absolute; width: 0; height: 0; }

/* soft paper wash so the grain reads as film, not dirt */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 80% at 12% 0%, rgba(194, 90, 55, 0.07), transparent 60%),
    radial-gradient(100% 70% at 92% 12%, rgba(106, 122, 74, 0.07), transparent 62%);
}

main, header, footer { position: relative; z-index: 1; }

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

a { color: var(--accent-ink); text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--accent); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.visually-hidden,
.skip {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.skip:focus {
  position: fixed;
  top: 0.6rem; left: 0.6rem;
  width: auto; height: auto;
  clip: auto;
  margin: 0;
  padding: 0.6rem 1rem;
  background: var(--ink);
  color: var(--bg);
  z-index: 50;
  font-size: 0.85rem;
}

/* =========================================================
   TOP BAR
   ========================================================= */
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px) saturate(1.1);
  border-bottom: 1px solid var(--rule);
}

.topbar__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0.7rem var(--gutter);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--ink);
  margin-right: auto;
}
.brand__mark {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--accent);
  font-variation-settings: "wght" 900, "opsz" 40;
}
.brand__name {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand__name em {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.nav {
  display: flex;
  gap: 1.15rem;
  flex-wrap: wrap;
}
.nav a {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-soft);
  padding: 0.55rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.nav a:hover { color: var(--ink); border-bottom-color: var(--accent); }

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 44px;
  padding: 0 0.75rem;
  background: transparent;
  border: 1px solid var(--rule-strong);
  border-radius: 999px;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.theme-toggle:hover { color: var(--ink); border-color: var(--accent); }
.theme-toggle__icon {
  width: 0.7rem; height: 0.7rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: inset -3px -2px 0 0 var(--bg);
}

.call {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  text-decoration: none;
  color: var(--ink);
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--rule-strong);
  border-radius: 999px;
  min-height: 44px;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.call:hover { background: var(--card); border-color: var(--accent); }
.call__label {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  line-height: 1.2;
}
.call__number {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.2;
  font-variation-settings: "wght" 600;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(2.5rem, 7vw, 5.5rem) var(--gutter) clamp(1.5rem, 4vw, 3rem);
}

.hero__kicker {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0 0 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.hero__kicker::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--rule);
}

.hero__title {
  position: relative;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 10.5vw, 7.5rem);
  line-height: 0.94;
  letter-spacing: -0.035em;
  font-variation-settings: "wght" 200, "opsz" 144, "SOFT" 0;
  text-wrap: balance;
  cursor: default;
}
.hero__title em {
  font-style: italic;
  color: var(--accent);
  font-variation-settings: "wght" inherit, "opsz" 144;
}
.hero__title .default,
.hero__title .alt {
  display: block;
  transition: opacity 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.hero__title .alt {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}
.hero__title:hover .default,
.hero__title:focus-within .default { opacity: 0; }
.hero__title:hover .alt,
.hero__title:focus-within .alt { opacity: 1; }

/* kinetic weight shift on scroll */
@keyframes weigh {
  from { font-variation-settings: "wght" 200, "opsz" 144; }
  to   { font-variation-settings: "wght" 900, "opsz" 144; }
}
@supports (animation-timeline: scroll()) {
  .hero__title {
    animation: weigh linear both;
    animation-timeline: scroll(root);
    animation-range: 0 30vh;
  }
}

.hero__meta {
  margin-top: clamp(1.8rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
  border-top: 1px solid var(--rule);
  padding-top: 1.6rem;
}
@media (min-width: 800px) {
  .hero__meta {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    gap: 3rem;
  }
}

.hero__lede {
  margin: 0;
  max-width: var(--measure);
  font-size: 1.1rem;
  color: var(--ink-soft);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.7rem 1.35rem;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.18s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn--solid {
  background: var(--accent);
  color: #fff8f2;
  border-color: var(--accent);
}
.btn--solid:hover { background: var(--accent-ink); border-color: var(--accent-ink); color: #fff8f2; }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule-strong);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent-ink); }
.btn--small { min-height: 44px; font-size: 0.76rem; padding: 0.55rem 1rem; }
.btn:active { transform: translateY(1px); }

.hero__note {
  margin: 0;
  font-size: 0.82rem;
  color: var(--ink-faint);
}

.hero__figure {
  margin: clamp(2rem, 5vw, 3.5rem) 0 0;
}
.hero__figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: var(--shadow);
}
.hero__figure figcaption,
.wide-figure figcaption,
.gallery figcaption {
  margin-top: 0.7rem;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: var(--ink-faint);
  max-width: 60ch;
}

/* =========================================================
   BROADSHEET ARTICLE — three-column newspaper
   ========================================================= */
.broadsheet {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) var(--gutter) clamp(2rem, 5vw, 3.5rem);
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 4.2vw, 2.7rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-variation-settings: "wght" 500, "opsz" 96;
  margin: 0 0 1.1rem;
  padding-top: 1.6rem;
  border-top: 2px solid var(--ink);
  column-span: all;
  text-wrap: balance;
}
.section-title:first-child { padding-top: 0; border-top: 0; }

.broadsheet > p {
  margin: 0 0 1.05rem;
  max-width: var(--measure);
}
.broadsheet > p.lead {
  font-size: 1.16rem;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-variation-settings: "wght" 400, "opsz" 40;
  line-height: 1.55;
}
.broadsheet > p.lead::first-letter {
  float: left;
  font-family: var(--serif);
  font-size: 3.4rem;
  line-height: 0.82;
  padding: 0.12em 0.12em 0 0;
  color: var(--accent);
  font-variation-settings: "wght" 700, "opsz" 144;
}

/* the three-column flow on wide screens */
@media (min-width: 1000px) {
  .broadsheet {
    column-count: 3;
    column-gap: 3rem;
    column-rule: 1px solid var(--rule);
  }
  .broadsheet > p { max-width: none; }
  .broadsheet > .services,
  .broadsheet > .quotes,
  .broadsheet > .info-grid,
  .broadsheet > .faq,
  .broadsheet > .wide-figure,
  .broadsheet > .fineprint {
    column-span: all;
  }
}

.fineprint {
  font-size: 0.82rem;
  color: var(--ink-faint);
  border-left: 2px solid var(--rule-strong);
  padding-left: 0.9rem;
  margin-top: 1.4rem;
}

/* =========================================================
   SERVICES
   ========================================================= */
.services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.2rem;
  margin: 1.6rem 0 0;
}
@media (min-width: 700px) { .services { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1080px) { .services { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 2rem; } }

.svc h3 {
  font-family: var(--serif);
  font-size: 1.22rem;
  font-variation-settings: "wght" 600, "opsz" 60;
  letter-spacing: -0.01em;
  margin: 0 0 0.9rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--rule-strong);
  color: var(--ink);
}
.svc ul { list-style: none; margin: 0; padding: 0; }
.svc li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0 0.8rem;
  padding: 0.7rem 0;
  border-bottom: 1px dotted var(--rule);
}
.svc li:last-child { border-bottom: 0; }
.svc__name {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
}
.svc__price {
  font-family: var(--serif);
  font-variation-settings: "wght" 600, "opsz" 40;
  font-size: 0.95rem;
  color: var(--accent-ink);
  white-space: nowrap;
}
.svc__desc {
  grid-column: 1 / -1;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--ink-faint);
  margin-top: 0.2rem;
}

/* =========================================================
   QUOTES
   ========================================================= */
.quotes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
  margin: 1.4rem 0 0;
}
@media (min-width: 760px) { .quotes { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1120px) { .quotes { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.quotes blockquote {
  margin: 0;
  padding: 1.3rem 1.2rem;
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.quotes blockquote p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.55;
  font-variation-settings: "wght" 400, "opsz" 40;
  color: var(--ink);
}
.quotes cite {
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: auto;
}

/* =========================================================
   INFO GRID
   ========================================================= */
.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 1.4rem 0 0;
}
@media (min-width: 860px) { .info-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2.4rem; } }

.info h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-variation-settings: "wght" 600, "opsz" 60;
  margin: 0 0 0.9rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--rule-strong);
}
.info p { margin: 0 0 0.8rem; font-size: 0.95rem; }
.info address {
  font-style: normal;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 0.9rem;
}
.info__note { font-size: 0.84rem; color: var(--ink-faint); line-height: 1.6; }

.hours {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.hours th, .hours td {
  text-align: left;
  padding: 0.5rem 0;
  border-bottom: 1px dotted var(--rule);
  font-weight: 400;
}
.hours th { color: var(--ink); }
.hours td { text-align: right; color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.hours tr.closed td { color: var(--accent-ink); }
.hours tr.closed th { color: var(--ink-faint); }

.phone-big {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-variation-settings: "wght" 600, "opsz" 72;
  letter-spacing: -0.01em;
  margin: 0.4rem 0 0.9rem;
}
.phone-big a { text-decoration: none; color: var(--accent-ink); }
.phone-big a:hover { color: var(--accent); text-decoration: underline; }

/* =========================================================
   WIDE FIGURE + GALLERY
   ========================================================= */
.wide-figure { margin: 2.4rem 0 0; }
.wide-figure img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: var(--shadow);
}

.gallery {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 3rem) var(--gutter) clamp(2rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
}
@media (min-width: 640px) { .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1080px) { .gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.gallery figure { margin: 0; }
.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 2px;
  filter: saturate(0.94) contrast(1.02);
  transition: filter 0.4s ease, transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.gallery figure:hover img { filter: saturate(1.05) contrast(1.04); transform: translateY(-3px); }

/* =========================================================
   FAQ
   ========================================================= */
.faq { margin: 1.2rem 0 0; }
.faq details {
  border-bottom: 1px solid var(--rule);
  padding: 0.35rem 0;
}
.faq summary {
  cursor: pointer;
  padding: 0.85rem 0;
  font-family: var(--serif);
  font-size: 1.02rem;
  font-variation-settings: "wght" 500, "opsz" 40;
  color: var(--ink);
  list-style: none;
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before {
  content: "+";
  color: var(--accent);
  font-family: var(--sans);
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.25s ease;
}
.faq details[open] summary::before { content: "–"; }
.faq summary:hover { color: var(--accent-ink); }
.faq details p {
  margin: 0 0 1rem 1.7rem;
  font-size: 0.94rem;
  color: var(--ink-soft);
  max-width: var(--measure);
}

/* =========================================================
   CLOSING
   ========================================================= */
.closing {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.5rem) var(--gutter);
  border-top: 2px solid var(--ink);
  text-align: center;
}
.closing__line {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 4.4vw, 2.6rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-variation-settings: "wght" 400, "opsz" 96;
  font-style: italic;
  margin: 0 0 1rem;
  text-wrap: balance;
}
.closing__sub {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--ink-faint);
  margin: 0;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  border-top: 1px solid var(--rule);
  background: color-mix(in srgb, var(--bg-2) 70%, transparent);
}
.site-footer__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3rem) var(--gutter) 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
}
@media (min-width: 760px) { .site-footer__inner { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.site-footer__col p { margin: 0 0 0.5rem; font-size: 0.88rem; color: var(--ink-soft); line-height: 1.65; }
.site-footer__brand {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-variation-settings: "wght" 600, "opsz" 40;
  color: var(--ink) !important;
}
.site-footer__label {
  font-size: 0.68rem !important;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint) !important;
  margin-bottom: 0.7rem !important;
}
.site-footer__col a { color: var(--ink-soft); text-decoration: none; }
.site-footer__col a:hover { color: var(--accent-ink); text-decoration: underline; }

.site-footer__bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--gutter) 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  align-items: flex-start;
}

.claim-banner {
  display: inline-block;
  font-size: 0.76rem;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: 2px;
  padding: 0.45rem 0.8rem;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.claim-banner:hover { border-color: var(--accent); color: var(--accent-ink); }

.attribution {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
}
.attribution a { color: var(--ink-faint); text-decoration: none; }
.attribution a:hover { color: var(--accent-ink); text-decoration: underline; }

/* =========================================================
   MOTION PREFERENCES
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .hero__title { font-variation-settings: "wght" 600, "opsz" 144; }
  .gallery figure:hover img { transform: none; }
}

/* =========================================================
   SMALL SCREENS
   ========================================================= */
@media (max-width: 720px) {
  .topbar__inner { gap: 0.6rem; }
  .nav { order: 3; width: 100%; gap: 0.9rem; overflow-x: auto; }
  .nav a { font-size: 0.74rem; white-space: nowrap; }
  .call__label { display: none; }
  .brand__name { font-size: 0.9rem; }
  .hero__title { font-size: clamp(2.3rem, 13vw, 3.6rem); }
  .broadsheet > p.lead::first-letter { font-size: 2.8rem; }
}
