:root {
  /* Surface */
  --bg: #0a0a0a;
  --bg-2: #141414;
  --bg-deep: #060606;

  /* Ink */
  --ivory: #f5f1ea;
  --ivory-dim: #d9d2c4;
  --rule: #2a2522;

  /* Accent */
  --tangerine: #e85a2b;
  --tangerine-soft: #f07a4e;

  /* Trade */
  --trade-ink: #1a1612;
  --trade-sub: #4a4139;

  /* Type */
  --display: 'Fraunces', 'Cormorant Garamond', serif;
  --meta: 'Inter Tight', system-ui, sans-serif;

  /* Animation knobs */
  --parallax: 1;
  --photo-density: 1;
}

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

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ivory);
  font-family: var(--meta);
  -webkit-font-smoothing: antialiased;
}
html {
  scroll-behavior: smooth;
}
body {
  overflow-x: clip;
}

img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
}

/* Typography helpers */
.display {
  font-family: var(--display);
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'wght' 350;
  font-weight: 350;
  letter-spacing: -0.02em;
  line-height: 0.95;
}
.eyebrow {
  font-family: var(--meta);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  font-weight: 500;
}
.tangerine {
  color: var(--tangerine);
}
em.italic {
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'wght' 320;
}

/* Focus */
:focus-visible {
  outline: 2px solid var(--tangerine);
  outline-offset: 3px;
}

/* Grain overlay helper used by hero + cards + mottos */
.grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: calc(0.12 * var(--photo-density));
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.8 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* Shared photo base — color by default */
.photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.55) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.55));
  pointer-events: none;
}

/* Hero is the only B&W photo in the build */
.hero-kinetic .photo {
  filter: grayscale(1) contrast(calc(1 + var(--photo-density) * 0.15))
    brightness(calc(0.85 + var(--photo-density) * 0.05));
}

/* Reveal on enter (Task 15 wires the observer) */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
[data-reveal].in-view {
  opacity: 1;
  transform: none;
}
[data-reveal-stagger] > * {
  transition-delay: calc(var(--i, 0) * 80ms);
}

/* ——— Navigation ——— */
nav.top {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  color: var(--ivory);
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(232, 90, 43, 0.22);
  transition:
    background 0.4s ease,
    border-color 0.4s ease,
    padding 0.3s ease;
}
nav.top.scrolled {
  background: rgba(10, 10, 10, 0.92);
  border-bottom-color: rgba(232, 90, 43, 0.4);
  padding: 10px 40px;
}
nav.top .brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
nav.top .brand .logo-img {
  height: 32px;
  width: auto;
  transition: height 0.3s ease;
}
nav.top.scrolled .brand .logo-img {
  height: 26px;
}
nav.top ul {
  display: flex;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
}
nav.top ul a {
  position: relative;
  padding: 6px 0;
  color: var(--ivory);
  opacity: 0.82;
  transition:
    opacity 0.2s,
    color 0.2s;
}
nav.top ul a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--tangerine);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
}
nav.top ul a:hover {
  opacity: 1;
  color: var(--tangerine);
}
nav.top ul a:hover::after {
  transform: scaleX(1);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
  color: var(--ivory);
}
.menu-toggle span {
  display: block;
  position: absolute;
  left: 10px;
  right: 10px;
  height: 1.5px;
  background: currentColor;
  transition:
    transform 0.3s ease,
    top 0.3s ease,
    opacity 0.2s ease;
}
.menu-toggle span:nth-child(1) {
  top: 16px;
}
.menu-toggle span:nth-child(2) {
  top: 22px;
}
.menu-toggle span:nth-child(3) {
  top: 28px;
}
nav.top.menu-open .menu-toggle span:nth-child(1) {
  top: 22px;
  transform: rotate(45deg);
}
nav.top.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}
nav.top.menu-open .menu-toggle span:nth-child(3) {
  top: 22px;
  transform: rotate(-45deg);
}

/* ——— Footer ——— */
footer {
  background: var(--bg-deep);
  padding: 100px 8vw 40px;
  border-top: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
footer .f-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--rule);
  position: relative;
  z-index: 1;
}
footer .brand-lockup {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 420px;
}
footer .brand-lockup .logo-img {
  height: auto;
  width: 280px;
}
footer .brand-lockup p {
  font-size: 13px;
  color: var(--ivory-dim);
  line-height: 1.7;
  margin: 0;
}
footer h5 {
  margin: 0 0 20px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  font-weight: 500;
}
footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer ul a {
  font-size: 14px;
  color: var(--ivory);
  transition: color 0.2s;
}
footer ul a:hover {
  color: var(--tangerine);
}
footer .f-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  font-size: 11px;
  color: var(--ivory-dim);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.footer-peacock {
  position: absolute;
  right: -60px;
  top: 20px;
  color: var(--ivory-dim);
  opacity: 0.25;
  pointer-events: none;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
}
.hero .scroll-hint {
  position: absolute;
  right: 40px;
  bottom: 32px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
}
.hero .scroll-hint .line {
  width: 1px;
  height: 28px;
  background: var(--tangerine);
  animation: scrollHint 2.4s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollHint {
  0% {
    transform: scaleY(0);
  }
  50% {
    transform: scaleY(1);
  }
  100% {
    transform: scaleY(0) translateY(28px);
  }
}

.hero-kinetic .photo {
  animation: kenburnsSlow 40s ease-out infinite alternate;
}
.hero-kinetic .photo::after {
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.4), rgba(10, 10, 10, 0.9));
}
@keyframes kenburnsSlow {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.22);
  }
}

.hero-kinetic .words {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 8vw;
  gap: 8px;
  z-index: 2;
  /* Fade-out driven by scroll-fx.js (Task 15) */
  opacity: var(--hero-exit, 1);
  transform: translateY(calc((1 - var(--hero-exit, 1)) * -60px));
}
.hero-kinetic .word {
  display: block;
  font-family: var(--display);
  font-size: clamp(48px, 9vw, 150px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  font-variation-settings: 'opsz' 144, 'SOFT' 20, 'wght' 280;
  color: #fff;
  opacity: 0;
  transform: translateY(40px);
  animation: wordIn 1.1s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.hero-kinetic .w1 {
  animation-delay: 0.2s;
}
.hero-kinetic .w2 {
  animation-delay: 0.7s;
  padding-left: 6vw;
}
.hero-kinetic .w3 {
  animation-delay: 1.15s;
  padding-left: 14vw;
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 80, 'wght' 280;
}
.hero-kinetic .w4 {
  animation-delay: 1.55s;
  padding-left: 2vw;
}
.hero-kinetic .w5 {
  animation-delay: 1.95s;
  padding-left: 18vw;
  color: var(--tangerine);
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 80, 'wght' 280;
}
.hero-kinetic .w5 em {
  color: inherit;
  font-style: inherit;
}
@keyframes wordIn {
  0% {
    opacity: 0;
    transform: translateY(50px);
    filter: blur(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* ——— Brand Intro ——— */
.brand-intro {
  position: relative;
  padding: 160px clamp(40px, 11.8vw, 170px) 120px;
  overflow: hidden;
}
.brand-intro .intro-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.brand-intro .lede {
  font-family: var(--display);
  font-size: clamp(28px, 2.8vw, 44px);
  line-height: 1.2;
  font-weight: 300;
  letter-spacing: -0.01em;
  margin: 0 0 28px;
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'wght' 320;
  text-wrap: pretty;
  color: var(--ivory);
}
.brand-intro .lede .accent {
  color: var(--tangerine);
  font-style: italic;
}
.brand-intro .sub {
  margin: 0;
  color: var(--ivory-dim);
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.7;
  font-family: var(--meta);
  font-weight: 300;
  max-width: 100%;
}
.brand-intro-peacocks {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
}
.brand-intro-peacocks .peacock {
  position: absolute;
  bottom: 0;
  fill: var(--ivory);
  height: auto;
}
.brand-intro-peacocks .peacock.left {
  left: 0;
  width: 156px;
}
.brand-intro-peacocks .peacock.right {
  right: 0;
  width: 104px;
}

/* ——— Motto vertical scroll (drift parallax) ——— */
.motto-scroll {
  position: relative;
}
.motto-chapter {
  position: relative;
  height: 65vh;
  min-height: 640px;
  overflow: hidden;
}
.motto-chapter .photo-lock {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
/* Three-plane theatrical parallax: photo drifts up, dim scrim drifts opposite,
   content rises into focus at center and falls away as the chapter leaves.
   Driven by a single --p scalar (0 entering bottom → 1 leaving top) set by
   scroll-fx.js. Default 0.5 so SSR / pre-JS / reduced-motion lands on the
   centered, fully-visible state. */
.motto-chapter .photo-lock .photo {
  position: absolute;
  inset: -22% 0;
  background-size: cover;
  background-position: center;
  /* ±17vh drift, scale 1.00→1.09 peaking at center */
  transform:
    translateY(calc((var(--p, 0.5) - 0.5) * -34vh))
    scale(calc(1.0 + (1 - 2 * abs(var(--p, 0.5) - 0.5)) * 0.09));
  transform-origin: center;
  will-change: transform;
}
.motto-chapter .dim {
  position: absolute;
  inset: -12vh 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.70),
    rgba(10, 10, 10, 0.80)
  );
  pointer-events: none;
  /* counter-drift ±10vh — moves opposite to the photo */
  transform: translateY(calc((var(--p, 0.5) - 0.5) * 20vh));
  will-change: transform;
}
.motto-chapter.motto-03 .dim {
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.80),
    rgba(10, 10, 10, 0.90)
  );
}
.motto-chapter .chapter-mark {
  position: absolute;
  top: 40px;
  left: 8vw;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
}
.motto-chapter .chapter-mark .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--tangerine);
}
.motto-chapter .content {
  position: relative;
  z-index: 2;
  /* Asymmetric framing matches the .pen — 8vw from the left, no right padding,
     content frame width clamped to ~72vw with a 1040px ceiling. */
  margin-left: 8vw;
  padding-top: 16vh;
  width: clamp(680px, 72vw, 1040px);
  max-width: calc(100% - 8vw);
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
  /* Plane 3: rises into focus at center, leaves upward.
     translateY: +25vh entering bottom → 0 at center → -25vh leaving top.
     Opacity 0.4 at edges → 1 at center. */
  transform: translateY(calc((0.5 - var(--p, 0.5)) * 50vh));
  opacity: calc(0.4 + 0.6 * (1 - 2 * abs(var(--p, 0.5) - 0.5)));
  will-change: transform, opacity;
}
.motto-chapter .wordstack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.motto-chapter .wordstack .eyebrow-small {
  font-family: var(--meta);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: var(--tangerine);
}
.motto-chapter .wordstack .word-big {
  font-family: var(--display);
  font-variation-settings: 'opsz' 144, 'SOFT' 15, 'wght' 280;
  font-size: clamp(80px, 16vw, 220px);
  line-height: 0.82;
  letter-spacing: -0.05em;
  color: var(--tangerine);
}
.motto-chapter .rule {
  width: 80px;
  height: 1px;
  background: var(--tangerine);
}
.motto-chapter .copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.motto-chapter .copy .q {
  font-family: var(--display);
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.35;
  font-weight: 300;
  font-variation-settings: 'opsz' 144, 'SOFT' 40, 'wght' 330;
  margin: 0;
  text-wrap: pretty;
  color: var(--ivory);
}
.motto-chapter .copy .q em {
  font-style: italic;
  color: var(--tangerine);
}


/* ——— Defined by Detail ——— */
.detail-section {
  position: relative;
  padding: 130px 115px 120px;
}

.detail-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 80px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--rule);
}
.detail-header .eyebrow {
  margin-bottom: 16px;
}
.detail-header h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(48px, 5.8vw, 84px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'wght' 300;
  color: var(--ivory);
  white-space: nowrap;
}
.detail-header h2 em {
  color: var(--tangerine);
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 80, 'wght' 300;
}
.detail-header .right p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ivory-dim);
  max-width: 44ch;
  margin: 0 0 0 auto;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 60px;
}

.commitment {
  padding: 40px 48px 40px 0;
  border-bottom: 1px solid var(--rule);
}
.commitment:nth-child(2n) {
  padding-left: 48px;
  padding-right: 0;
  border-left: 1px solid var(--rule);
}
.commitment:nth-last-child(-n + 2) {
  border-bottom: none;
}
.commitment .num {
  display: block;
  font-family: var(--meta);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--tangerine);
  font-weight: 500;
  margin-bottom: 18px;
}
.commitment h3 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variation-settings: 'opsz' 144, 'SOFT' 40, 'wght' 330;
  color: var(--ivory);
  text-wrap: balance;
}
.commitment h3 em {
  font-style: italic;
  color: var(--tangerine);
  font-variation-settings: 'opsz' 144, 'SOFT' 80, 'wght' 330;
}
.commitment p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ivory-dim);
  max-width: 50ch;
}

/* ——— Carousel sections ——— */
.carousel-section {
  padding: 60px 0 60px;
}
.carousel-section .carousel-head {
  padding: 0 115px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  border-bottom: 1px solid var(--rule);
}
.carousel-section .carousel-head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(48px, 6.5vw, 108px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'wght' 300;
  color: var(--ivory);
}
.carousel-section .carousel-head h2 em {
  color: var(--tangerine);
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 80, 'wght' 300;
}
.carousel-section .head-left .eyebrow {
  margin-bottom: 16px;
}
.carousel-section .head-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  padding-bottom: 20px;
}
.carousel-section .head-right .link {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory);
  border-bottom: 1px solid var(--tangerine);
  padding-bottom: 4px;
  transition: color 0.2s;
}
.carousel-section .head-right .link:hover {
  color: var(--tangerine);
}

.carousel {
  display: flex;
  gap: 24px;
  padding: 60px 115px 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 115px;
  cursor: grab;
  scrollbar-width: none;
}
.carousel::-webkit-scrollbar {
  display: none;
}
.carousel.dragging {
  cursor: grabbing;
}

/* ——— Card ——— */
.card {
  flex: 0 0 clamp(300px, 28vw, 440px);
  scroll-snap-align: start;
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-2);
  user-select: none;
}
.card .photo {
  transition: transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.card:hover .photo {
  transform: scale(1.06);
}
.card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.85) 100%);
  pointer-events: none;
}
.card .badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--ivory);
  opacity: 0.85;
  font-variation-settings: 'opsz' 72, 'SOFT' 80, 'wght' 340;
}
.card .num {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 2;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--ivory-dim);
}
.card .info {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px;
  z-index: 2;
  color: var(--ivory);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card .info .kind {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--tangerine);
  font-weight: 500;
}
.card .info h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.05;
  font-variation-settings: 'opsz' 144, 'SOFT' 40, 'wght' 340;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.card .info h3 em {
  font-style: italic;
  color: var(--tangerine);
}
.card .info .where {
  font-size: 12px;
  color: var(--ivory-dim);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ——— Trade ——— */
.trade {
  background: var(--ivory);
  color: var(--trade-ink);
  padding: 130px 115px;
  position: relative;
}
.trade .trade-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.trade .eyebrow {
  color: var(--tangerine);
  margin-bottom: 36px;
}
.trade h2 {
  margin: 0 0 40px;
  font-family: var(--display);
  font-size: clamp(48px, 6.5vw, 104px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'wght' 300;
  text-wrap: balance;
  color: var(--trade-ink);
}
.trade h2 em {
  font-style: italic;
  color: var(--tangerine);
  font-variation-settings: 'opsz' 144, 'SOFT' 80, 'wght' 300;
}
.trade .lede {
  font-family: var(--display);
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 1.45;
  font-variation-settings: 'opsz' 144, 'SOFT' 40, 'wght' 330;
  margin: 0 0 40px;
  color: #2b241e;
  max-width: 52ch;
}
.trade .ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.trade .pill-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: #0a0a0a;
  color: var(--ivory);
  padding: 18px 28px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
}
.trade .pill-cta .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--tangerine);
}
.trade .pill-cta.ghost {
  background: transparent;
  color: #0a0a0a;
  border: 1px solid #0a0a0a;
}

.trade .trade-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 32px;
}
.trade .trade-bullets li {
  border-top: 1px solid rgba(10, 10, 10, 0.15);
  padding-top: 20px;
}
.trade .trade-bullets li .n {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--tangerine);
  font-weight: 500;
}
.trade .trade-bullets li h4 {
  margin: 8px 0 10px;
  font-family: var(--display);
  font-size: 22px;
  font-variation-settings: 'opsz' 144, 'SOFT' 40, 'wght' 380;
  line-height: 1.15;
}
.trade .trade-bullets li p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--trade-sub);
}

/* ——— Partners ——— */
.partners {
  background: #f5f5f5;
  padding: 70px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
.partners .eyebrow {
  text-align: center;
}
.partners .partner-logos {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 1296px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.partners .partner-logos li {
  display: flex;
  align-items: center;
  justify-content: center;
}
.partners .partner-logos li img {
  max-height: 38px;
  width: auto;
  opacity: 0.78;
  filter: grayscale(1);
  transition: opacity 0.2s ease;
}
.partners .partner-logos li img:hover {
  opacity: 1;
}

/* ——— Reduced motion ——— */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
  .hero-kinetic .words {
    opacity: 1 !important;
    transform: none !important;
  }
  .motto-chapter .photo-lock .photo {
    transform: none !important;
  }
}

/* ——— Tablet ≤ 1100px ——— */
@media (max-width: 1100px) {
  nav.top {
    padding: 14px 28px;
  }
  nav.top.scrolled {
    padding: 10px 28px;
  }
  nav.top ul {
    gap: 24px;
    font-size: 11px;
  }

  .brand-intro {
    padding: 120px 6vw 90px;
  }
  .detail-section {
    padding: 130px 6vw 120px;
  }
  .detail-header {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .detail-header .right p {
    margin: 0;
  }
  .detail-grid {
    grid-template-columns: 1fr;
  }
  .commitment:nth-child(2n) {
    padding-left: 0;
    border-left: none;
  }
  .commitment {
    border-bottom: 1px solid var(--rule);
  }

  .motto-chapter .content {
    margin-left: 6vw;
    padding-top: 22vh;
    width: clamp(560px, 80vw, 880px);
    max-width: calc(100% - 6vw);
    gap: 32px;
  }
  .motto-chapter .wordstack {
    font-size: clamp(96px, 16vw, 220px);
  }

  .carousel-section .carousel-head {
    padding: 0 6vw 48px;
  }
  .carousel {
    padding: 60px 6vw 20px;
  }

  .trade {
    padding: 120px 6vw;
  }
  .trade .trade-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .trade .trade-bullets {
    grid-template-columns: 1fr 1fr;
  }

  footer {
    padding: 80px 6vw 40px;
  }
  footer .f-top {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
  }
  footer .brand-lockup {
    grid-column: 1 / -1;
  }
}

/* ——— Mobile ≤ 720px ——— */
@media (max-width: 720px) {
  :root {
    --parallax: 0;
  }

  nav.top {
    padding: 12px 20px;
  }
  nav.top.scrolled {
    padding: 10px 20px;
  }
  nav.top .brand .logo-img {
    height: 38px;
  }
  nav.top.scrolled .brand .logo-img {
    height: 24px;
  }
  nav.top ul {
    position: fixed;
    inset: 0;
    z-index: 1;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 28px;
    padding: 80px 28px 40px;
    background: #0a0a0a;
    min-height: 100dvh;
    overscroll-behavior: contain;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.3s ease,
      visibility 0s linear 0.3s;
  }
  nav.top.menu-open ul {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition:
      opacity 0.3s ease,
      visibility 0s linear 0s;
  }
  nav.top ul li {
    opacity: 0;
    transform: translateY(12px);
    transition:
      opacity 0.35s ease,
      transform 0.35s ease;
  }
  nav.top.menu-open ul li {
    opacity: 1;
    transform: translateY(0);
  }
  nav.top.menu-open ul li:nth-child(1) {
    transition-delay: 0.08s;
  }
  nav.top.menu-open ul li:nth-child(2) {
    transition-delay: 0.14s;
  }
  nav.top.menu-open ul li:nth-child(3) {
    transition-delay: 0.20s;
  }
  nav.top.menu-open ul li:nth-child(4) {
    transition-delay: 0.26s;
  }
  nav.top ul a {
    font-size: 22px;
    letter-spacing: 0.12em;
    font-family: var(--display);
    text-transform: none;
    font-variation-settings: 'opsz' 72, 'wght' 400;
  }
  .menu-toggle {
    display: block;
    position: relative;
    z-index: 3;
  }

  .hero {
    min-height: 560px;
  }
  .hero .scroll-hint {
    right: 20px;
    bottom: 22px;
    font-size: 10px;
    letter-spacing: 0.22em;
  }
  .hero-kinetic .words {
    padding: 0 6vw;
    gap: 4px;
  }
  .hero-kinetic .word {
    font-size: clamp(38px, 12vw, 74px);
    line-height: 1;
    letter-spacing: -0.03em;
  }
  .hero-kinetic .w2,
  .hero-kinetic .w3,
  .hero-kinetic .w4,
  .hero-kinetic .w5 {
    padding-left: 0;
  }

  .brand-intro {
    padding: 80px 6vw 60px;
  }
  .brand-intro .lede {
    font-size: clamp(20px, 5.6vw, 26px);
    line-height: 1.3;
  }
  .brand-intro .sub {
    font-size: 15px;
  }

  .detail-section {
    padding: 80px 6vw 80px;
  }
  .detail-header h2 {
    font-size: clamp(44px, 12vw, 64px);
    white-space: normal;
  }
  .commitment {
    padding: 28px 0;
  }
  .commitment h3 {
    font-size: clamp(26px, 7vw, 34px);
  }
  .commitment p {
    font-size: 14px;
  }

  /* Mobile motto: keep section pinned to viewport, kill desktop transforms */
  .motto-chapter {
    min-height: 65vh;
  }
  .motto-chapter .photo-lock .photo {
    inset: 0;
    transform: none;
  }
  .motto-chapter .dim {
    inset: 0;
    transform: none;
  }
  .motto-chapter .content {
    padding: 18vh 6vw 0;
    align-items: flex-start;
    transform: none;
    opacity: 1;
  }
  .motto-chapter .wordstack {
    font-size: clamp(88px, 22vw, 140px);
  }
  .motto-chapter .copy .q {
    font-size: clamp(18px, 4.6vw, 22px);
  }

  .carousel-section {
    padding: 80px 0 60px;
  }
  .carousel-section .carousel-head {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 6vw 32px;
  }
  .carousel-section .carousel-head h2 {
    font-size: clamp(40px, 11vw, 60px);
  }
  .carousel-section .head-right {
    align-items: flex-start;
  }
  .card {
    flex: 0 0 78vw;
  }
  .card .info {
    padding: 20px;
  }

  .trade {
    padding: 80px 6vw;
  }
  .trade h2 {
    font-size: clamp(40px, 11vw, 60px);
    margin-bottom: 28px;
  }
  .trade .lede {
    font-size: 17px;
    margin-bottom: 28px;
  }
  .trade .pill-cta {
    padding: 14px 22px;
    font-size: 11px;
  }
  .trade .trade-bullets {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  footer {
    padding: 60px 6vw 28px;
  }
  footer .f-top {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 40px;
  }
  footer .brand-lockup .logo-img {
    width: 140px;
  }
  footer .f-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* ——— Stub pages ——— */
.stub {
  min-height: 70vh;
  padding: 200px 8vw 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1100px;
}
.stub .eyebrow {
  margin-bottom: 16px;
}
.stub h1 {
  margin: 0 0 32px;
  font-family: var(--display);
  font-size: clamp(56px, 9vw, 140px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'wght' 300;
  color: var(--ivory);
}
.stub h1 em {
  color: var(--tangerine);
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 80, 'wght' 300;
}
.stub p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ivory-dim);
  max-width: 56ch;
  margin: 0;
}
