/* ==========================================================================
   HAZOORILAL — Maison of Diamonds
   Core stylesheet
   --------------------------------------------------------------------------
   01. Tokens & variables
   02. Reset & base
   03. Typography
   04. Layout primitives
   05. Buttons, links & micro-details
   06. Cursor, loader, page transition
   07. Navigation & mega menu
   08. Hero systems
   09. Editorial sections
   10. Cards, galleries, timeline
   11. Forms
   12. Footer
   13. Reveal / animation states
   14. Responsive
   ========================================================================== */

/* ==========================================================================
   01. TOKENS
   ========================================================================== */
:root {
  /* Surfaces */
  --black: #080808;
  --charcoal: #121212;
  --ink: #0c0c0c;
  --graphite: #1a1a1a;
  --ivory: #faf8f4;
  --cream: #f2ece3;
  --champagne: #e6d8be;

  /* Metals */
  --gold: #c9a96a;
  --gold-deep: #a8823f;
  --gold-light: #e4cf9f;
  --rose-gold: #cfa08e;
  --diamond: #eef2f5;

  /* Text */
  --text-on-dark: rgba(250, 248, 244, 0.92);
  --text-on-dark-soft: rgba(250, 248, 244, 0.56);
  --text-on-light: #191714;
  --text-on-light-soft: rgba(25, 23, 20, 0.6);

  /* Hairlines */
  --line-dark: rgba(250, 248, 244, 0.14);
  --line-gold: rgba(201, 169, 106, 0.34);
  --line-light: rgba(25, 23, 20, 0.14);

  /* Type */
  --font-display: "Bodoni Moda", "Didot", "Times New Roman", serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Jost", "Helvetica Neue", Arial, sans-serif;

  /* Rhythm */
  --gutter: clamp(1.5rem, 5vw, 6.5rem);
  --section: clamp(6rem, 14vh, 12rem);
  --maxw: 1680px;

  /* Motion — slow, confident, never bouncy */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.65, 0, 0.35, 1);
  --dur: 0.9s;
  --dur-slow: 1.4s;
}

/* ==========================================================================
   02. RESET & BASE
   ========================================================================== */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: auto; /* Lenis handles smoothing */
}

body {
  margin: 0;
  background: var(--black);
  color: var(--text-on-dark);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.is-loading { overflow: hidden; height: 100vh; }

img, video {
  display: block;
  max-width: 100%;
  height: auto;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; margin: 0; padding: 0; }
figure, blockquote { margin: 0; }

::selection { background: var(--gold); color: var(--black); }

:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: var(--black);
  padding: 0.75rem 1.25rem;
  z-index: 999;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* Film grain — barely-there texture over the whole site */
.grain {
  position: fixed;
  inset: -120%;
  z-index: 3;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 8s steps(6) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  16% { transform: translate(-3%, 2%); }
  33% { transform: translate(2%, -3%); }
  50% { transform: translate(-2%, -2%); }
  66% { transform: translate(3%, 1%); }
  83% { transform: translate(1%, 3%); }
}

/* ==========================================================================
   03. TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: balance;
}

.display-xl { font-size: clamp(3.4rem, 11vw, 11rem); line-height: 0.92; }
.display-l  { font-size: clamp(2.8rem, 7vw, 6.4rem); line-height: 0.98; }
.display-m  { font-size: clamp(2.2rem, 4.6vw, 4.2rem); line-height: 1.04; }
.display-s  { font-size: clamp(1.6rem, 2.6vw, 2.4rem); line-height: 1.18; }

.italic { font-style: italic; font-family: var(--font-serif); font-weight: 300; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.42em;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 2rem;
}
.eyebrow::before {
  content: "";
  width: 2.6rem;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.eyebrow--center { justify-content: center; }
.eyebrow--plain::before { display: none; }

.lede {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 1.6vw, 1.55rem);
  line-height: 1.6;
  font-weight: 300;
  color: var(--text-on-dark);
  letter-spacing: 0.005em;
}

.body {
  font-size: 0.92rem;
  line-height: 1.95;
  letter-spacing: 0.035em;
  color: var(--text-on-dark-soft);
  font-weight: 300;
  max-width: 46ch;
}
.body + .body { margin-top: 1.4rem; }

.caption {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  color: var(--text-on-dark-soft);
}

.quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.7rem, 3.4vw, 3.1rem);
  line-height: 1.34;
  letter-spacing: -0.01em;
}

/* Gold reads deeper on ivory than it does on black */
.section--light .eyebrow,
.section--cream .eyebrow,
.section--light .field label,
.section--cream .field label,
.section--light .collection-card__no,
.section--cream .collection-card__no,
.section--light .tl-item__year,
.section--cream .tl-item__year { color: var(--gold-deep); }

/* Light sections invert the palette */
.section--light {
  background: var(--ivory);
  color: var(--text-on-light);
}
.section--light .body,
.section--light .caption { color: var(--text-on-light-soft); }
.section--light .lede,
.section--cream .lede { color: var(--text-on-light); }
.section--cream { background: var(--cream); color: var(--text-on-light); }
.section--cream .body, .section--cream .caption { color: var(--text-on-light-soft); }
.section--charcoal { background: var(--charcoal); }

/* ==========================================================================
   04. LAYOUT
   ========================================================================== */
.section {
  position: relative;
  padding: var(--section) 0;
}
.section--tight { padding: clamp(4rem, 8vh, 7rem) 0; }
.section--flush { padding: 0; }

.shell {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.shell--narrow { max-width: 1180px; }
.shell--slim { max-width: 860px; }

.grid { display: grid; gap: clamp(2rem, 4vw, 5rem); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--12 { grid-template-columns: repeat(12, 1fr); }

.rule {
  height: 1px;
  width: 100%;
  background: var(--line-dark);
  transform-origin: left center;
}
.section--light .rule,
.section--cream .rule { background: var(--line-light); }

.stack-sm > * + * { margin-top: 1rem; }
.stack > * + * { margin-top: 2rem; }
.stack-lg > * + * { margin-top: 3.5rem; }

/* Media frames — every image is masked and revealed */
.frame {
  position: relative;
  overflow: hidden;
  background: var(--graphite);
}
.frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 1.6s var(--ease);
}
.frame--tall { aspect-ratio: 3 / 4; }
.frame--portrait { aspect-ratio: 4 / 5; }
.frame--square { aspect-ratio: 1 / 1; }
.frame--wide { aspect-ratio: 16 / 10; }
.frame--cinema { aspect-ratio: 21 / 9; }
.frame--panorama { aspect-ratio: 2 / 1; }

a:hover .frame img,
.frame--zoom:hover img { transform: scale(1); }

.frame__caption {
  position: absolute;
  left: 1.5rem;
  bottom: 1.25rem;
  z-index: 2;
  font-size: 0.6rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(250, 248, 244, 0.78);
  mix-blend-mode: difference;
}

/* Scrim for type set over full-bleed photography */
.plate-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(8, 8, 8, 0.42), rgba(8, 8, 8, 0.62) 55%, rgba(8, 8, 8, 0.78));
}

/* Gold hairline that draws itself in */
.hairline {
  display: block;
  height: 1px;
  background: var(--line-gold);
  transform: scaleX(0);
  transform-origin: left;
}

/* ==========================================================================
   05. BUTTONS & LINKS
   ========================================================================== */
.btn {
  --btn-color: var(--ivory);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.15rem 0 1.05rem;
  font-size: 0.68rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.36em;
  color: var(--btn-color);
  overflow: hidden;
}
.btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  opacity: 0.4;
  transform-origin: right;
  transition: transform 0.9s var(--ease), opacity 0.9s var(--ease);
}
.btn:hover::after { transform: scaleX(0); }
.btn .btn__arrow {
  width: 26px;
  height: 6px;
  transition: transform 0.9s var(--ease);
}
.btn:hover .btn__arrow { transform: translateX(9px); }
.btn--gold { --btn-color: var(--gold); }
.btn--dark { --btn-color: var(--text-on-light); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.35rem 3.2rem;
  border: 1px solid var(--line-gold);
  color: var(--gold-light);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  position: relative;
  overflow: hidden;
  transition: color 0.8s var(--ease), border-color 0.8s var(--ease);
}
.btn-outline span { position: relative; z-index: 2; }
.btn-outline::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.8s var(--ease);
}
.btn-outline:hover { color: var(--black); border-color: var(--gold); }
.btn-outline:hover::before { transform: scaleY(1); }

/* Understated underline link */
.ulink {
  position: relative;
  display: inline-block;
  padding-bottom: 3px;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
}
.ulink::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.7s var(--ease);
}
.ulink:hover::after { transform: scaleX(1); transform-origin: left; }

/* Diamond glyph divider */
.glyph {
  display: block;
  margin: 0 auto;
  width: 12px;
  height: 12px;
  border: 1px solid var(--line-gold);
  transform: rotate(45deg);
}

/* ==========================================================================
   06. CURSOR, LOADER, PAGE TRANSITION
   ========================================================================== */
.cursor,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  pointer-events: none;
  border-radius: 50%;
  mix-blend-mode: difference;
  opacity: 0;
}
.cursor {
  width: 5px;
  height: 5px;
  background: var(--ivory);
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(250, 248, 244, 0.5);
  transform: translate(-50%, -50%);
  transition: width 0.6s var(--ease), height 0.6s var(--ease),
              border-color 0.6s var(--ease), background 0.6s var(--ease);
  display: grid;
  place-items: center;
}
.cursor-ring span {
  font-size: 0.5rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.cursor-ring.is-media {
  width: 96px;
  height: 96px;
  border-color: transparent;
  background: rgba(250, 248, 244, 0.92);
  color: var(--black);
  mix-blend-mode: normal;
}
.cursor-ring.is-media span { opacity: 1; }
.cursor-ring.is-link { width: 62px; height: 62px; }
.cursor-ring.is-arrow {
  width: 84px;
  height: 84px;
  border-color: rgba(250, 248, 244, 0.75);
  background: rgba(250, 248, 244, 0.06);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.cursor-ring.is-arrow span {
  opacity: 1;
  font-family: var(--font-sans);
  font-size: 1.1rem;
  letter-spacing: 0;
}

/* While the gallery holds the wheel, the whole hero uses the arrow cursor */
.hero--gallery, .hero--gallery * { cursor: none; }

/* Loader */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--black);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.loader__inner { text-align: center; }
.loader__mark {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 5vw, 3.6rem);
  letter-spacing: 0.5em;
  text-indent: 0.5em;
  color: var(--ivory);
}
.loader__mark span {
  display: inline-block;
  opacity: 0;
  transform: translateY(60%);
}
.loader__sub {
  margin-top: 1.6rem;
  font-size: 0.58rem;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
}
.loader__bar {
  margin: 3rem auto 0;
  width: min(280px, 50vw);
  height: 1px;
  background: rgba(250, 248, 244, 0.14);
  position: relative;
  overflow: hidden;
}
.loader__bar i {
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
}
.loader__count {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(2rem, 6vh, 4rem);
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 5rem);
  color: rgba(250, 248, 244, 0.14);
}

/* Page transition curtain */
.curtain {
  position: fixed;
  inset: 0;
  z-index: 9990;
  background: var(--black);
  transform: scaleY(0);
  transform-origin: bottom;
  pointer-events: none;
}

/* ==========================================================================
   07. NAVIGATION
   ========================================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 900;
  padding: clamp(1.2rem, 2.4vw, 2.2rem) 0;
  transition: background 0.9s var(--ease), padding 0.9s var(--ease),
              transform 0.9s var(--ease), border-color 0.9s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8, 8, 8, 0.62), rgba(8, 8, 8, 0));
  opacity: 1;
  transition: opacity 0.9s var(--ease);
  pointer-events: none;
}
.nav.is-solid {
  background: rgba(8, 8, 8, 0.86);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  padding: clamp(0.9rem, 1.4vw, 1.2rem) 0;
  border-bottom-color: var(--line-dark);
}
.nav.is-solid::before { opacity: 0; }
.nav.is-hidden { transform: translateY(-104%); }

/* Pages that open on an ivory ground invert the transparent navigation */
body.nav-light .nav:not(.is-solid)::before { opacity: 0; }
body.nav-light .nav:not(.is-solid) .nav__link { color: rgba(25, 23, 20, 0.72); }
body.nav-light .nav:not(.is-solid) .nav__link:hover,
body.nav-light .nav:not(.is-solid) .nav__link.is-current { color: var(--gold-deep); }
body.nav-light .nav:not(.is-solid) .nav__link::after { background: var(--gold-deep); }
body.nav-light .nav:not(.is-solid) .nav__brand b { color: var(--text-on-light); }
body.nav-light .nav:not(.is-solid) .nav__brand small { color: var(--gold-deep); }
body.nav-light .nav:not(.is-solid) .burger i { background: var(--text-on-light); }

.nav__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}

.nav__brand {
  justify-self: center;
  order: 2;
  text-align: center;
  line-height: 1;
}
.nav__brand b {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.1rem, 1.6vw, 1.5rem);
  letter-spacing: 0.44em;
  text-indent: 0.44em;
  color: var(--ivory);
}
.nav__brand small {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.44rem;
  letter-spacing: 0.5em;
  text-indent: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.2vw, 2.6rem);
  order: 1;
}
.nav__utils {
  order: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2vw, 2.4rem);
}

.nav__link {
  position: relative;
  font-size: 0.62rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: rgba(250, 248, 244, 0.82);
  padding: 0.4rem 0;
  white-space: nowrap;
  transition: color 0.6s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.7s var(--ease);
}
.nav__link:hover,
.nav__link.is-current { color: var(--gold-light); }
.nav__link:hover::after,
.nav__link.is-current::after { transform: scaleX(1); transform-origin: left; }

.nav__icon { display: inline-flex; color: rgba(250, 248, 244, 0.8); transition: color .6s var(--ease); }
.nav__icon:hover { color: var(--gold); }

/* Burger */
.burger {
  display: none;
  width: 30px;
  height: 14px;
  position: relative;
}
.burger i {
  position: absolute;
  left: 0;
  height: 1px;
  width: 100%;
  background: var(--ivory);
  transition: transform 0.7s var(--ease), opacity 0.5s var(--ease);
}
.burger i:first-child { top: 0; }
.burger i:last-child { bottom: 0; width: 65%; }
.burger.is-open i:first-child { transform: translateY(6px) rotate(45deg); }
.burger.is-open i:last-child { width: 100%; transform: translateY(-7px) rotate(-45deg); }

/* Mega menu */
.mega {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: calc(clamp(1.2rem, 2.4vw, 2.2rem) + 5.5rem) 0 4rem;
  background: rgba(8, 8, 8, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line-dark);
  z-index: 880;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-14px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease), visibility 0.8s;
}
.mega.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.mega__grid {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 1.6fr;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: start;
}
.mega__col h6 {
  font-family: var(--font-sans);
  font-size: 0.56rem;
  font-weight: 300;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.8rem;
}
.mega__list li + li { margin-top: 0.15rem; }
.mega__list a {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.7vw, 1.6rem);
  letter-spacing: 0.01em;
  color: rgba(250, 248, 244, 0.72);
  padding: 0.35rem 0;
  transition: color 0.6s var(--ease), transform 0.8s var(--ease);
}
.mega__list a:hover { color: var(--ivory); transform: translateX(12px); }
.mega__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.mega__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.1s var(--ease), transform 1.6s var(--ease);
}
.mega__media img.is-active { opacity: 1; transform: scale(1); }
.mega__media figcaption {
  position: absolute;
  left: 1.6rem;
  bottom: 1.4rem;
  font-size: 0.58rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--ivory);
}

/* Fullscreen mobile / overlay menu */
.menu {
  position: fixed;
  inset: 0;
  z-index: 890;
  background: var(--black);
  padding: 6.5rem var(--gutter) 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  clip-path: inset(0 0 100% 0);
  visibility: hidden;
  transition: clip-path 1.1s var(--ease), visibility 1.1s;
  overflow-y: auto;
}
.menu.is-open { clip-path: inset(0 0 0 0); visibility: visible; }
.menu__list a {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.32rem, 3.4vw, 2.2rem);
  line-height: 1.62;
  color: var(--text-on-dark);
  opacity: 0;
  transform: translateY(28px);
}
.menu.is-open .menu__list a { opacity: 1; transform: none; transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.menu__foot {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.4rem;
  color: var(--text-on-dark-soft);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

/* ==========================================================================
   08. HERO SYSTEMS
   ========================================================================== */
.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  display: grid;
  place-items: center;
  text-align: center;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  will-change: opacity;
}
.hero__slide.is-active { opacity: 1; }
.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.14);
  will-change: transform;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(120% 80% at 50% 40%, rgba(8, 8, 8, 0.15) 0%, rgba(8, 8, 8, 0.72) 68%, rgba(8, 8, 8, 0.9) 100%),
    linear-gradient(to bottom, rgba(8, 8, 8, 0.6), rgba(8, 8, 8, 0.18) 40%, rgba(8, 8, 8, 0.86));
}

/* ---- Gallery hero: the photograph is the whole statement ---- */
.hero--gallery { display: block; }
.hero--gallery .hero__scrim {
  background: linear-gradient(to bottom,
    rgba(8, 8, 8, 0.5) 0%, rgba(8, 8, 8, 0.12) 22%,
    rgba(8, 8, 8, 0) 55%, rgba(8, 8, 8, 0.42) 100%);
}

/* Full-height hit zones — invisible on pointer devices, where the cursor
   itself becomes the arrow; visible as discreet buttons on touch. */
.hero__zone {
  position: absolute;
  top: 0;
  z-index: 4;
  width: 50%;
  height: 100%;
  display: grid;
  place-items: center;
  cursor: none;
}
.hero__zone--prev { left: 0; justify-items: start; padding-left: var(--gutter); }
.hero__zone--next { right: 0; justify-items: end; padding-right: var(--gutter); }
.hero__zone span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(250, 248, 244, 0.4);
  border-radius: 50%;
  color: var(--ivory);
  font-size: 1rem;
  opacity: 0;
  transition: opacity 0.6s var(--ease);
}

.hero__counter {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: clamp(1.6rem, 4vh, 2.6rem);
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  color: rgba(250, 248, 244, 0.86);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.hero__counter i { font-style: normal; opacity: 0.5; }
.hero__counter .hero__total { opacity: 0.55; }

/* Hairline progress across the foot of the frame */
.hero__progress {
  position: absolute;
  z-index: 4;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(250, 248, 244, 0.16);
}
.hero__progress i {
  display: block;
  height: 100%;
  width: 20%;
  background: var(--gold);
  transform-origin: left;
  transition: width 1s var(--ease);
}

/* Opening statement now carries the type the hero used to hold */
.statement { text-align: center; }
.statement__brand {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.9rem, 5.4vw, 4.6rem);
  letter-spacing: 0.3em;
  text-indent: 0.3em;
  line-height: 1;
  margin: 0 0 2rem;
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 var(--gutter);
  max-width: 1100px;
  will-change: transform;
}
.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 7.4vw, 7rem);
  letter-spacing: 0.32em;
  text-indent: 0.32em;
  line-height: 1;
  margin: 0 0 2.2rem;
}
.hero__title { margin-bottom: 2rem; }
.hero__meta {
  position: absolute;
  z-index: 2;
  bottom: clamp(1.6rem, 4vh, 3rem);
  width: 100%;
  padding: 0 var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  font-size: 0.56rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--text-on-dark-soft);
}
.hero__dots { display: flex; gap: 0.9rem; align-items: center; }
.hero__dot {
  width: 34px;
  height: 1px;
  background: rgba(250, 248, 244, 0.28);
  position: relative;
  overflow: hidden;
}
.hero__dot i {
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
}
.hero__dot.is-active i { animation: dotFill 6s linear forwards; }
@keyframes dotFill { to { transform: scaleX(1); } }

.scroll-cue {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}
.scroll-cue__line {
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, rgba(201, 169, 106, 0.9), rgba(201, 169, 106, 0));
  position: relative;
  overflow: hidden;
}
.scroll-cue__line::after {
  content: "";
  position: absolute;
  top: -60%;
  left: 0;
  width: 100%;
  height: 60%;
  background: var(--ivory);
  animation: cue 2.8s var(--ease-soft) infinite;
}
@keyframes cue {
  0% { top: -60%; }
  70%, 100% { top: 110%; }
}

/* Interior page hero */
.page-hero {
  position: relative;
  min-height: clamp(70vh, 78vh, 88vh);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 10rem 0 clamp(3rem, 7vh, 6rem);
}
.page-hero__bg { position: absolute; inset: 0; z-index: 0; }
.page-hero__bg img { width: 100%; height: 110%; object-fit: cover; }
.page-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8, 8, 8, 0.78), rgba(8, 8, 8, 0.42) 42%, rgba(8, 8, 8, 0.94));
}
.page-hero__inner { position: relative; z-index: 2; width: 100%; }
.page-hero__index {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  color: var(--gold);
}
.page-hero--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  padding: 0;
  min-height: 100svh;
}
.page-hero--split .page-hero__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 9rem var(--gutter) 5rem;
}
.page-hero--split .page-hero__figure { position: relative; overflow: hidden; }
.page-hero--split .page-hero__figure img { width: 100%; height: 100%; object-fit: cover; }

.breadcrumb {
  font-size: 0.56rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--text-on-dark-soft);
  margin-bottom: 2rem;
}
.breadcrumb a:hover { color: var(--gold); }

/* Vertical marginalia */
.vertical-note {
  position: absolute;
  right: calc(var(--gutter) * 0.4);
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  font-size: 0.54rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--text-on-dark-soft);
  z-index: 3;
}

/* ==========================================================================
   09. EDITORIAL SECTIONS
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(2rem, 4vw, 5rem);
  align-items: center;
}
.split__media--left { grid-column: 1 / span 6; }
.split__media--right { grid-column: 7 / span 6; }
.split__text--right { grid-column: 8 / span 4; }
.split__text--left { grid-column: 2 / span 4; }

.offset-media { position: relative; }
.offset-media__sub {
  position: absolute;
  width: 44%;
  right: -8%;
  bottom: -7%;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55);
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line-dark);
  padding: 1.6rem 0;
  white-space: nowrap;
}
.marquee__track { display: inline-flex; gap: 3.5rem; will-change: transform; }
.marquee__track span {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 2rem);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(250, 248, 244, 0.42);
  display: inline-flex;
  align-items: center;
  gap: 3.5rem;
}
.marquee__track span::after {
  content: "";
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

.stat {
  border-top: 1px solid var(--line-dark);
  padding-top: 1.6rem;
}
.stat b {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1;
  color: var(--ivory);
}
.section--light .stat,
.section--cream .stat { border-color: var(--line-light); }
.section--light .stat b,
.section--cream .stat b { color: var(--text-on-light); }
.stat > span {
  display: block;
  margin-top: 0.9rem;
  font-size: 0.58rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--text-on-dark-soft);
}
.section--light .stat > span,
.section--cream .stat > span { color: var(--text-on-light-soft); }

/* Film / craft panel */
.film {
  position: relative;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
  display: grid;
  place-items: center;
  text-align: center;
}
.film__layer {
  position: absolute;
  inset: 0;
  opacity: 0;
}
.film__layer img { width: 100%; height: 100%; object-fit: cover; }
.film__layer.is-active { opacity: 1; }
.film::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8, 8, 8, 0.66), rgba(8, 8, 8, 0.5), rgba(8, 8, 8, 0.86));
}
.film__content { position: relative; z-index: 3; padding: 0 var(--gutter); }

/* ==========================================================================
   10. CARDS, GALLERIES, TIMELINE
   ========================================================================== */
.collection-card { position: relative; display: block; }
.collection-card .frame { aspect-ratio: 3 / 4; }
.collection-card__body {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-dark);
  margin-top: 1.6rem;
}
.section--light .collection-card__body,
.section--cream .collection-card__body { border-color: var(--line-light); }
.collection-card h3 {
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  transition: color 0.7s var(--ease);
}
.collection-card:hover h3 { color: var(--gold-light); }
.collection-card__no {
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  color: var(--gold);
}
.collection-card__hover {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  z-index: 3;
  opacity: 0;
  transition: opacity 0.8s var(--ease), transform 0.9s var(--ease);
  font-size: 0.58rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ivory);
  border: 1px solid rgba(250, 248, 244, 0.5);
  border-radius: 50%;
  width: 108px;
  height: 108px;
  display: grid;
  place-items: center;
  backdrop-filter: blur(4px);
}
.collection-card:hover .collection-card__hover { opacity: 1; transform: translate(-50%, -50%) scale(1); }

/* Editorial index rows (collections listing) */
.index-row {
  position: relative;
  display: grid;
  grid-template-columns: 0.7fr 2.6fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: clamp(1.6rem, 3vw, 2.6rem) 0;
  border-top: 1px solid var(--line-dark);
}
.index-row:last-child { border-bottom: 1px solid var(--line-dark); }
.section--light .index-row,
.section--cream .index-row,
.section--light .index-row:last-child,
.section--cream .index-row:last-child { border-color: var(--line-light); }
.index-row h3 {
  font-size: clamp(1.7rem, 4vw, 3.4rem);
  transition: transform 0.9s var(--ease), color 0.7s var(--ease);
}
.index-row:hover h3 { transform: translateX(clamp(8px, 1.6vw, 26px)); color: var(--gold-light); }
.index-row__peek {
  position: fixed;
  width: 300px;
  height: 380px;
  z-index: 5;
  pointer-events: none;
  opacity: 0;
  overflow: hidden;
  transform: translate(-50%, -50%);
}
.index-row__peek img { width: 100%; height: 100%; object-fit: cover; }

/* Masonry-ish editorial gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1.4rem, 3vw, 3.4rem);
  align-items: end;
}
.g-1 { grid-column: 1 / span 5; }
.g-2 { grid-column: 7 / span 4; margin-bottom: clamp(3rem, 10vw, 9rem); }
.g-3 { grid-column: 2 / span 4; }
.g-4 { grid-column: 7 / span 6; }
.g-5 { grid-column: 1 / span 6; }
.g-6 { grid-column: 8 / span 4; }
.g-wide { grid-column: 1 / span 12; }

.piece__meta {
  margin-top: 1.4rem;
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-on-dark-soft);
}
.section--light .piece__meta,
.section--cream .piece__meta { color: var(--text-on-light-soft); }
.piece h3 { font-size: clamp(1.2rem, 1.8vw, 1.7rem); margin-top: 1rem; }

/* Horizontal pinned rail */
.rail {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  display: flex;
  align-items: center;
}
.rail__track { display: flex; gap: clamp(1.5rem, 3vw, 3rem); will-change: transform; }
.rail__item { flex: 0 0 clamp(260px, 28vw, 460px); }
.rail__item .frame { aspect-ratio: 3 / 4; }

/* Timeline */
.timeline { position: relative; }
.timeline__spine {
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  background: var(--line-dark);
}
.timeline__spine i {
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
}
.tl-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 7rem);
  align-items: center;
  padding: clamp(3rem, 8vh, 6rem) 0;
}
.tl-item:nth-child(even) .tl-item__text { order: 2; }
.tl-item__year {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  line-height: 1;
  color: var(--gold);
}
.tl-item__dot {
  position: absolute;
  left: 50%;
  width: 9px;
  height: 9px;
  border: 1px solid var(--gold);
  background: var(--black);
  transform: translateX(-50%) rotate(45deg);
}

/* Journal cards */
.article-card .frame { aspect-ratio: 4 / 3; }
.article-card h3 {
  font-size: clamp(1.25rem, 1.7vw, 1.6rem);
  margin: 1.4rem 0 0.8rem;
  transition: color 0.7s var(--ease);
}
.article-card:hover h3 { color: var(--gold-light); }
.article-card .caption { display: block; }

/* Press / quote list */
.press-item {
  display: grid;
  grid-template-columns: 0.8fr 2.4fr 0.8fr;
  gap: 2rem;
  padding: clamp(2rem, 4vw, 3.4rem) 0;
  border-top: 1px solid var(--line-dark);
  align-items: start;
}
.press-item:last-child { border-bottom: 1px solid var(--line-dark); }
.section--light .press-item,
.section--cream .press-item { border-color: var(--line-light); }

/* Accordion */
.acc__item { border-top: 1px solid var(--line-dark); }
.acc__item:last-child { border-bottom: 1px solid var(--line-dark); }
.section--light .acc__item,
.section--cream .acc__item { border-color: var(--line-light); }
.acc__head {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: clamp(1.4rem, 2.6vw, 2.2rem) 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.6rem);
}
.acc__sign { position: relative; width: 14px; height: 14px; flex: none; }
.acc__sign::before,
.acc__sign::after {
  content: "";
  position: absolute;
  background: var(--gold);
  transition: transform 0.8s var(--ease);
}
.acc__sign::before { left: 0; top: 50%; width: 100%; height: 1px; }
.acc__sign::after { top: 0; left: 50%; height: 100%; width: 1px; }
.acc__item.is-open .acc__sign::after { transform: scaleY(0); }
.acc__panel { height: 0; overflow: hidden; }
.acc__panel > div { padding-bottom: 2.2rem; }

/* Boutique cards */
.boutique {
  border-top: 1px solid var(--line-dark);
  padding-top: 1.8rem;
}
.section--light .boutique,
.section--cream .boutique { border-color: var(--line-light); }
.boutique h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.map-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line-dark);
  filter: grayscale(1) contrast(1.05) brightness(0.86);
  transition: filter 1.2s var(--ease);
}
.map-frame:hover { filter: grayscale(0.6) contrast(1) brightness(1); }
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ==========================================================================
   11. FORMS
   ========================================================================== */
.field { position: relative; margin-bottom: 2.4rem; }
.field label {
  display: block;
  font-size: 0.56rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  padding: 0.7rem 0;
  color: var(--ivory);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  border-radius: 0;
  transition: border-color 0.7s var(--ease);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus,
.field select:focus,
.field textarea:focus { outline: none; border-bottom-color: var(--gold); }
.field select option { background: var(--charcoal); color: var(--ivory); }
.section--light .field input,
.section--light .field select,
.section--light .field textarea,
.section--cream .field input,
.section--cream .field select,
.section--cream .field textarea { color: var(--text-on-light); border-bottom-color: var(--line-light); }

.form-note {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  color: var(--text-on-dark-soft);
}
.form-status {
  margin-top: 1.4rem;
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.form-status.is-visible { opacity: 1; transform: none; }

/* Newsletter inline field */
.subscribe { display: flex; align-items: center; gap: 1.5rem; border-bottom: 1px solid var(--line-dark); }
.subscribe input {
  flex: 1;
  background: none;
  border: 0;
  padding: 1rem 0;
  color: var(--ivory);
  font-family: var(--font-sans);
  font-weight: 300;
  letter-spacing: 0.06em;
}
.subscribe input:focus { outline: none; }
.subscribe button { color: var(--gold); font-size: 0.6rem; letter-spacing: 0.34em; text-transform: uppercase; }

/* ==========================================================================
   12. FOOTER
   ========================================================================== */
.footer {
  position: relative;
  background: var(--black);
  border-top: 1px solid var(--line-dark);
  padding: clamp(4rem, 9vh, 8rem) 0 2.5rem;
  overflow: hidden;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: clamp(2rem, 4vw, 5rem);
}
.footer h6 {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.56rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.8rem;
}
.footer__list li + li { margin-top: 0.8rem; }
.footer__list a {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--text-on-dark-soft);
  transition: color 0.6s var(--ease);
}
.footer__list a:hover { color: var(--gold-light); }
.footer__mark {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 12vw, 12rem);
  line-height: 0.85;
  letter-spacing: 0.06em;
  color: rgba(250, 248, 244, 0.06);
  text-align: center;
  margin-top: clamp(3rem, 8vh, 6rem);
  user-select: none;
}
.footer__base {
  margin-top: 2.4rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line-dark);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem 2rem;
  font-size: 0.58rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(250, 248, 244, 0.38);
}
.socials { display: flex; gap: 1.6rem; }
.socials a { color: rgba(250, 248, 244, 0.55); transition: color 0.6s var(--ease), transform 0.6s var(--ease); }
.socials a:hover { color: var(--gold); transform: translateY(-2px); }

/* ==========================================================================
   13. REVEAL STATES (JS adds .is-in when in view; CSS is the fallback)
   ========================================================================== */
.reveal-mask { clip-path: inset(0 0 100% 0); }
.line-wrap { display: block; overflow: hidden; }
.line-wrap > span { display: block; }

/* Word masks — inserted by main.js, markup-preserving */
.w {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.18em;
  margin-bottom: -0.12em;
}
.w > i { display: inline-block; font-style: inherit; will-change: transform; }

/* Parallax images need extra bleed so no edge is ever exposed */
.frame img[data-parallax] {
  position: absolute;
  left: 0;
  top: -14%;
  width: 100%;
  height: 128%;
}

.no-js .reveal-mask,
.no-js [data-reveal] { clip-path: none; opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .grain { display: none; }
}

/* ==========================================================================
   14. RESPONSIVE
   ========================================================================== */
@media (max-width: 1180px) {
  .mega__grid { grid-template-columns: 1fr 1fr; }
  .mega__media { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; row-gap: 3rem; }
}

@media (hover: none) {
  .hero__zone span { opacity: 0.85; }
  .hero--gallery, .hero--gallery * { cursor: auto; }
}

@media (max-width: 1024px) {
  .nav__links { display: none; }
  .burger { display: block; }
  .nav__inner { grid-template-columns: auto 1fr auto; }
  .nav__brand { justify-self: center; }
  .nav__utils .nav__link { display: none; }

  .split__media--left,
  .split__media--right,
  .split__text--left,
  .split__text--right { grid-column: 1 / -1; }

  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .page-hero--split { grid-template-columns: 1fr; min-height: auto; }
  .page-hero--split .page-hero__figure { aspect-ratio: 4 / 3; }
  .index-row { grid-template-columns: 0.6fr 2fr; }
  .index-row__desc { display: none; }
  .press-item { grid-template-columns: 1fr; gap: 1rem; }
  .g-1, .g-2, .g-3, .g-4, .g-5, .g-6 { grid-column: 1 / -1; margin-bottom: 0; }
  .tl-item { grid-template-columns: 1fr; gap: 1.6rem; }
  .tl-item:nth-child(even) .tl-item__text { order: 0; }
  .timeline__spine { left: 0; }
  .tl-item__dot { left: 0; }
  .timeline { padding-left: 1.8rem; }
  .offset-media__sub { position: static; width: 100%; margin-top: 1.4rem; box-shadow: none; }
  .vertical-note { display: none; }
}

@media (max-width: 899px) {
  .rail {
    min-height: auto;
    display: block;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .rail__item { scroll-snap-align: center; }
}

@media (max-width: 720px) {
  /* Type that reads as elegant on a desktop is simply large on a phone */
  :root {
    --text-on-dark-soft: rgba(250, 248, 244, 0.74);
    --text-on-light-soft: rgba(25, 23, 20, 0.74);
    --section: clamp(4rem, 9vh, 6rem);
  }
  body { font-size: 15px; line-height: 1.7; }

  .display-xl { font-size: clamp(2.6rem, 13vw, 3.6rem); }
  .display-l  { font-size: clamp(2.1rem, 10vw, 2.9rem); }
  .display-m  { font-size: clamp(1.75rem, 8vw, 2.3rem); }
  .display-s  { font-size: clamp(1.25rem, 5.6vw, 1.55rem); }
  .quote      { font-size: clamp(1.25rem, 6vw, 1.7rem); line-height: 1.42; }
  .lede       { font-size: 1.02rem; line-height: 1.62; }
  .body       { font-size: 0.94rem; line-height: 1.8; max-width: none; }

  .eyebrow {
    font-size: 0.6rem;
    letter-spacing: 0.28em;
    margin-bottom: 1.4rem;
  }
  .eyebrow::before { width: 1.6rem; }
  .caption { font-size: 0.6rem; letter-spacing: 0.2em; }
  .btn, .btn-outline, .ulink { font-size: 0.64rem; letter-spacing: 0.24em; }
  .btn-outline { padding: 1.1rem 2rem; }

  .statement__brand { font-size: clamp(1.5rem, 8vw, 2.2rem); letter-spacing: 0.24em; text-indent: 0.24em; }
  .hero__counter { font-size: 0.74rem; }
  .tl-item__year { font-size: clamp(2rem, 10vw, 2.8rem); }
  .footer__mark { font-size: clamp(2rem, 15vw, 3.4rem); }
  .footer__base { font-size: 0.55rem; letter-spacing: 0.16em; }
  .acc__head { font-size: 1.02rem; }
  .index-row h3 { font-size: clamp(1.5rem, 8vw, 2.1rem); }
  .frame__caption { font-size: 0.55rem; letter-spacing: 0.22em; }
  .nav__brand small { font-size: 0.4rem; letter-spacing: 0.34em; text-indent: 0.34em; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .hero__meta { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
  .hero__meta .hero__dots { order: -1; }
  .nav__brand b { letter-spacing: 0.3em; text-indent: 0.3em; font-size: 1rem; }
  .cursor, .cursor-ring { display: none; }
  .footer__grid { grid-template-columns: 1fr; }
  .index-row { grid-template-columns: 1fr; gap: 0.6rem; }
  .section { padding: clamp(4.5rem, 10vh, 7rem) 0; }
}

/* Ultra-wide */
@media (min-width: 2100px) {
  :root { --maxw: 1920px; }
  body { font-size: 18px; }
}

/* Foldables / very narrow */
@media (max-width: 380px) {
  :root { --gutter: 1.15rem; }
  .display-xl { font-size: 3rem; }
}
