/* ============================================================
   WINE EXCHANGE — Helvetica × Black × Colour
   ============================================================ */

:root {
  --bg: #ffffff;
  --bg-elev: #f6f6f6;
  --bg-card: #f0f0f0;
  --bg-soft: #e6e6e6;
  --fg: #000000;
  --fg-mute: rgba(0,0,0,0.6);
  --fg-dim: rgba(0,0,0,0.38);
  --line: rgba(0,0,0,0.12);

  /* Monochrome scale (kept named so per-tile classes still resolve) */
  --c-1: #1a1a1a;
  --c-2: #2e2e2e;
  --c-3: #444444;
  --c-4: #595959;
  --c-5: #707070;
  --c-6: #8a8a8a;
  --c-7: #a3a3a3;
  --c-8: #bdbdbd;
  --c-9: #d6d6d6;

  --radius: 28px;
  --radius-lg: 36px;
  --radius-sm: 14px;

  --sans: Helvetica, "Helvetica Neue", Arial, sans-serif;

  --gutter: clamp(16px, 2.4vw, 32px);
  --max: 1680px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

::selection { background: var(--fg); color: var(--bg); }

img, svg { display: block; max-width: 100%; }

/* Grain overlay — kept, subtle on white */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: var(--grain, 0.04);
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0   0 0 0 0 0   0 0 0 0 0   0 0 0 0.7 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
body[data-palette="black"] .grain {
  mix-blend-mode: screen;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.05   0 0 0 0 0.05   0 0 0 0 0.05   0 0 0 0.7 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ============================================================
   TYPOGRAPHY (Helvetica only)
   ============================================================ */
.eyebrow {
  font-size: 13px;
  letter-spacing: -0.005em;
  color: var(--fg-mute);
}
.label-num {
  font-size: 13px;
  letter-spacing: -0.01em;
  color: var(--fg-mute);
}
.mono { font-family: var(--sans); font-size: 13px; letter-spacing: -0.005em; }

/* ============================================================
   LAYOUT
   ============================================================ */
.frame {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.divider { height: 1px; background: var(--line); width: 100%; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--gutter);
  color: var(--fg);
  background: transparent;
}
.nav .mark {
  font-size: 22px;
  letter-spacing: -0.03em;
  font-weight: 400;
  color: var(--fg);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav .mark .mark-icon {
  height: 30px;
  width: auto;
  display: block;
}
.nav .mark .mark-word {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 23px;
  letter-spacing: -0.045em;
  line-height: 1;
  color: var(--fg);
  white-space: nowrap;
}
body[data-palette="black"] .nav .mark .mark-icon,
body[data-palette="oxblood"] .nav .mark .mark-icon { filter: invert(1); }
.nav .mark::before { content: none; }
.nav .links {
  display: flex;
  gap: 28px;
}
.nav .links a {
  font-size: 15px;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--fg);
  opacity: 0.7;
  transition: opacity .2s;
  position: relative;
}
.nav .links a:hover { opacity: 1; }
.nav .links a.is-active { opacity: 1; }
.nav .links a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 1px;
  background: var(--fg);
}
.nav .clock { display: none; }

/* Sticky-header Apply button */
.nav-apply {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--bg);
  background: var(--fg);
  border: 1px solid var(--fg);
  padding: 9px 18px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background .2s, color .2s, opacity .2s;
}
.nav-apply:hover { opacity: 0.82; }

/* Right-side nav group + language switcher */
.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.lang-switch {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
}
.lang-toggle {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: none;
  border: 1px solid color-mix(in srgb, var(--fg) 28%, transparent);
  border-radius: 999px;
  padding: 7px 12px;
  font-family: inherit;
  font-size: 13px;
  letter-spacing: 0.03em;
  color: var(--fg);
  cursor: pointer;
  line-height: 1;
  transition: border-color .2s, background .2s;
}
.lang-toggle:hover { border-color: color-mix(in srgb, var(--fg) 55%, transparent); }
.lang-toggle__chev {
  width: 7px; height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-1px) rotate(45deg);
  transition: transform .2s;
  opacity: 0.7;
}
.lang-switch.is-open .lang-toggle__chev { transform: translateY(1px) rotate(225deg); }
.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  margin: 0;
  padding: 6px;
  list-style: none;
  min-width: 92px;
  background: #F5D547;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 12px;
  box-shadow: 0 12px 30px -12px rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity .16s ease, transform .16s ease;
  z-index: 120;
}
.lang-switch.is-open .lang-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.lang-option {
  appearance: none;
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  border-radius: 8px;
  padding: 8px 12px;
  font-family: inherit;
  font-size: 13px;
  letter-spacing: 0.03em;
  color: #1a1a1a;
  opacity: 0.7;
  cursor: pointer;
  transition: background .15s, opacity .15s;
}
.lang-option:hover { background: rgba(0,0,0,0.1); opacity: 1; }
.lang-option.is-active { opacity: 1; font-weight: 600; }

@media (max-width: 720px) {
  .nav .links { gap: 16px; }
  .nav .links a { font-size: 14px; }
}

/* ============================================================
   NEWS STRIP (top of hero — story cards)
   ============================================================ */
.news-strip {
  position: relative;
  padding: 0 var(--gutter);
  margin-top: 78px;
}
.news-strip-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.news-card {
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  padding: 10px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  color: var(--fg);
  transition: background .25s;
  cursor: pointer;
}
.news-card:hover { background: var(--bg-soft); }
.news-card .news-thumb {
  width: 64px; height: 64px;
  border-radius: 10px;
  background: var(--c-green);
  position: relative;
  overflow: hidden;
  flex: none;
}
.news-card .news-thumb::after {
  content: attr(data-glyph);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: rgba(0,0,0,0.75);
}
.news-card .news-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.news-card .news-kicker {
  font-size: 11px;
  color: var(--fg-mute);
  letter-spacing: -0.005em;
}
.news-card .news-title {
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--fg);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--fg-mute);
  cursor: pointer;
  user-select: none;
}
.news-arrow.left  { left: 4px; }
.news-arrow.right { right: 4px; }
.news-arrow:hover { color: var(--fg); }

@media (max-width: 1100px) {
  .news-strip-track { grid-template-columns: repeat(3, 1fr); }
  .news-card:nth-child(n+4) { display: none; }
}
@media (max-width: 720px) {
  .news-strip-track { grid-template-columns: repeat(2, 1fr); }
  .news-card:nth-child(n+3) { display: none; }
}

.filter-row {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 14px;
  padding: 96px var(--gutter) 0;
}
.filter-row--two {
  grid-template-columns: minmax(0, 240px) minmax(0, 240px) 1fr;
  padding-top: 100px;
}
.filter-pill {
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 15px;
  letter-spacing: -0.015em;
  cursor: pointer;
  transition: background .25s;
}
.filter-pill:hover { background: var(--bg-soft); }
.filter-pill .chev {
  width: 8px; height: 8px;
  border-right: 1.5px solid var(--fg);
  border-bottom: 1.5px solid var(--fg);
  transform: rotate(45deg) translate(-2px, -2px);
}
.filter-spacer { background: transparent; }
@media (max-width: 720px) {
  .filter-row, .filter-row--two { grid-template-columns: 1fr 1fr; }
  .filter-spacer { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 0 0 56px;
  background: var(--bg);
}

/* ============================================================
   PARALLAX HERO
   ============================================================ */
.hero--parallax {
  position: relative;
  z-index: 0;
  min-height: 100svh;
  padding: 0;
  overflow: visible;
  background: linear-gradient(180deg, #8ec9fb 0%, #6fbcf9 42%, #93d0fb 100%);
  display: block;
}
/* keep the gradient/scene from spilling sideways while letting the field drop below */
.px-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: visible;
}
.px-layer {
  position: absolute;
  height: auto;
  max-width: none;
  display: block;
  pointer-events: none;
}
/* The field: only animated layer — bigger so corners never show when it drifts */
.px-layer--vineyard {
  z-index: 2;
  left: 0;
  width: 100%;
  bottom: calc(-66% + 2.5cm);
  transform-origin: 50% 70%;
  will-change: transform;
  transform: translate3d(0, 0, 0) scale(1.08);
  opacity: 0;
  transition: opacity 1s ease;
}
/* The people: height-capped & centred so they stay a stable size in the lower
   zone on any aspect ratio (full-width would balloon on wide/short screens) */
.px-layer--figures {
  z-index: 4;
  left: 50%;
  width: auto;
  height: clamp(360px, 58svh, 720px);
  bottom: 0;
  opacity: 0;
  transform: translate3d(-50%, 60px, 0);
  transition: opacity 1.1s cubic-bezier(.2,.7,.2,1) .15s, transform 1.2s cubic-bezier(.2,.7,.2,1) .15s;
}
.hero--parallax.is-in .px-layer--vineyard { opacity: 1; }
.hero--parallax.is-in .px-layer--figures { opacity: 1; transform: translate3d(-50%, 0, 0); }

/* Soft bottom scrim so the hero copy stays legible over the figures/vineyard */
.px-scrim {
  position: absolute;
  z-index: 3;
  inset: auto 0 0 0;
  height: 38%;
  background: linear-gradient(180deg, rgba(13,40,30,0) 0%, rgba(13,40,30,0.18) 55%, rgba(8,28,20,0.62) 100%);
  pointer-events: none;
}

/* Headline + lede + CTA — centred block, pushed up, all in black */
.px-content {
  position: absolute;
  z-index: 5;
  left: 0;
  right: 0;
  top: clamp(96px, 13vh, 168px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 var(--gutter);
  gap: clamp(14px, 2.2vh, 28px);
  pointer-events: none;
}
.px-content .cta { pointer-events: auto; }
.px-credit {
  position: absolute;
  z-index: 6;
  left: var(--gutter);
  bottom: 20px;
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: #fff;
  background: #FF6B4D;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px solid #661C0C;
  border-radius: 999px;
  padding: 7px 14px;
  text-decoration: none;
  pointer-events: auto;
  transition: background .2s, opacity .2s;
}
.px-credit:hover { background: #661C0C; }
.px-headline {
  position: static;
  transform: none;
  margin: 0;
  text-align: center;
  white-space: nowrap;
  font-size: clamp(56px, min(12vw, 23vh), 210px);
  line-height: 0.88;
  color: #111;
}
.px-headline .roman,
.px-headline .dot { color: #111; }
.px-lede {
  margin: 0;
  max-width: 52ch;
  color: #111;
  font-size: clamp(16px, 1.5vw, 23px);
  line-height: 1.36;
  letter-spacing: -0.015em;
}
.px-content .px-cta {
  color: #fff;
  background: #111;
  border-color: #111;
}
.px-content .px-cta:hover {
  color: #111;
  background: transparent;
  border-color: #111;
}

/* Hero copy + CTA pinned to the bottom, over the scrim */
.hero-bottom--parallax {
  position: absolute;
  z-index: 6;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 var(--gutter) clamp(28px, 5vh, 56px);
  align-items: end;
}
.hero-bottom--parallax .hero-copy p {
  color: #fff;
  text-shadow: 0 1px 28px rgba(6,22,16,0.55), 0 1px 3px rgba(6,22,16,0.4);
}
.hero-bottom--parallax .cta {
  color: #14323f;
  background: #fff;
  border-color: #fff;
}
.hero-bottom--parallax .cta:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.hero-bottom--parallax .cta .arrow { background: currentColor; }

@media (prefers-reduced-motion: reduce) {
  .px-layer { transition: none !important; opacity: 1 !important; transform: none !important; }
}

.hero-headline-block {
  padding: 140px var(--gutter) 40px;
}

/* Big photo banner */
.hero-banner {
  position: relative;
  margin: 56px var(--gutter) 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 7;
  background: var(--bg-card);
}
.hero-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  display: block;
}
.hero-banner-slot {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-banner-tag {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: rgba(255,255,255,0.92);
  color: var(--fg);
  font-size: 13px;
  letter-spacing: -0.005em;
  padding: 8px 14px;
  border-radius: 999px;
  backdrop-filter: blur(3px);
  z-index: 3;
}
body[data-palette="black"] .hero-banner-tag { background: rgba(0,0,0,0.65); color: var(--fg); }

/* Tile image-slot (dead — Field Notes removed, kept harmless) */
.tile-slot {
  display: block;
  position: absolute !important;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-headline {
  font-size: clamp(72px, 24vw, 520px);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: -0.05em;
  color: var(--fg);
  white-space: nowrap;
}
.hero-headline .roman { color: var(--fg); }
.hero-headline .dot { color: var(--fg); }

.hero-bottom {
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(20px, 4vw, 80px);
  align-items: end;
}
.hero-bottom .cta { justify-self: end; }
.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 46ch;
}
.hero-copy .small { max-width: 40ch; }
.hero-bottom p {
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.32;
  letter-spacing: -0.015em;
  color: var(--fg);
  max-width: 32ch;
}
.hero-bottom .small {
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: -0.005em;
  color: var(--fg-mute);
}

/* CTA buttons */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border: 1px solid var(--fg);
  border-radius: 999px;
  color: var(--fg);
  font-family: var(--sans);
  font-size: 15px;
  letter-spacing: -0.015em;
  text-decoration: none;
  background: transparent;
  cursor: pointer;
  transition: background .25s, color .25s, border-color .25s;
  white-space: nowrap;
}
.cta:hover { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.cta .arrow {
  width: 22px; height: 1px;
  background: currentColor;
  position: relative;
}
.cta .arrow::after {
  content: "";
  position: absolute;
  right: 0; top: 50%;
  width: 7px; height: 7px;
  border-right: 1.5px solid currentColor;
  border-top: 1.5px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.cta--ink { color: var(--bg); background: var(--fg); border-color: var(--fg); }
.cta--ink:hover { background: transparent; color: var(--fg); border-color: var(--fg); }
.cta--wine { color: var(--fg); background: var(--bg); border-color: var(--fg); }
.cta--wine:hover { background: var(--fg); color: var(--bg); border-color: var(--fg); }

@media (max-width: 800px) {
  .hero-bottom { grid-template-columns: 1fr; gap: 24px; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 22px 0;
  background: var(--bg);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 56px;
  white-space: nowrap;
  animation: marq 48s linear infinite;
  font-size: clamp(28px, 4.5vw, 60px);
  letter-spacing: -0.03em;
  font-weight: 400;
  line-height: 1;
  color: var(--fg);
}
.marquee-track .star { color: var(--fg-mute); }
.marquee-track .marquee-icon {
  height: clamp(53px, 4.8vw, 84px);
  width: auto;
  display: inline-block;
  vertical-align: middle;
  align-self: center;
  flex: none;
  user-select: none;
  -webkit-user-drag: none;
}
body[data-palette="black"] .marquee-track .marquee-icon { filter: invert(1); }
body[data-palette="oxblood"] .marquee-track .marquee-icon { filter: invert(1); }
@keyframes marq {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   SECTION shells
   ============================================================ */
section.block {
  padding: clamp(80px, 12vh, 140px) 0;
  position: relative;
}
.section-head {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  margin-bottom: 64px;
  align-items: start;
}
.section-head .num { color: var(--fg-mute); }
/* Left-aligned heads (number stacked above title, flush left) */
#about .section-head,
#compare .section-head,
#team .section-head {
  grid-template-columns: 1fr;
  gap: 14px;
}
#about .section-head h2,
#compare .section-head h2,
#team .section-head h2 { max-width: none; }
.section-head h2 {
  font-size: clamp(38px, 5.2vw, 80px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.035em;
  max-width: 18ch;
  color: var(--fg);
}
@media (max-width: 720px) {
  .section-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 40px; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.about-lede {
  font-size: clamp(24px, 2.6vw, 40px);
  line-height: 1.16;
  letter-spacing: -0.025em;
  color: var(--fg);
}
.about-lede em { font-style: normal; color: var(--fg); border-bottom: 2px solid var(--fg); padding-bottom: 2px; }
.about-right { display: flex; flex-direction: column; gap: 22px; }
.about-right p {
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--fg-mute);
  max-width: 48ch;
}
.about-right p em { font-style: normal; color: var(--fg); font-weight: 500; }
.about-right p.mono { color: var(--fg-dim); }

.disciplines { margin-top: 64px; }
.disciplines-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.disc {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 90px;
  min-height: 220px;
  transition: background .3s;
}
.disc:hover { background: var(--bg-soft); }
.disc:nth-child(1) .name,
.disc:nth-child(2) .name,
.disc:nth-child(3) .name,
.disc:nth-child(4) .name { color: var(--fg); }
.disc .label-num { color: var(--fg-mute); }
.disc .name {
  font-size: clamp(28px, 2.4vw, 38px);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-top: auto;
}
.disciplines-foot {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  padding: 24px 6px 0;
  align-items: center;
}
.disciplines-foot-line {
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: -0.03em;
  line-height: 1;
  text-align: center;
}
.disciplines-foot-line em { font-style: normal; color: var(--fg); font-weight: 500; }
.disciplines-foot .label-num { color: var(--fg-mute); }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .disciplines-list { grid-template-columns: repeat(2, 1fr); }
  .disciplines-foot { grid-template-columns: 1fr; text-align: left; gap: 12px; }
  .disciplines-foot-line { text-align: left; }
}

/* ============================================================
   PROCESS CAROUSEL (horizontal scroll inside Initiative section)
   ============================================================ */
.process-carousel {
  margin-top: 96px;
  padding-top: 56px;
  border-top: 1px solid var(--line);
}
.process-carousel-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 28px;
}
.process-carousel-head .label-num { display: block; margin-bottom: 10px; }
.process-carousel-title {
  font-size: clamp(28px, 3.6vw, 56px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.035em;
  max-width: 16ch;
  color: var(--fg);
}
.carousel-controls {
  display: flex;
  gap: 8px;
  flex: none;
}
.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--bg);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .2s, color .2s, border-color .2s;
  color: var(--fg);
}
.carousel-btn:hover { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.carousel-btn .arrow-l, .carousel-btn .arrow-r {
  width: 9px; height: 9px;
  border-right: 1.5px solid currentColor;
  border-top: 1.5px solid currentColor;
}
.carousel-btn .arrow-r { transform: rotate(45deg) translate(-1px, 1px); }
.carousel-btn .arrow-l { transform: rotate(-135deg) translate(-1px, 1px); }

.process-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: var(--gutter);
  padding: 4px 4px 18px;
  margin: 0 -4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}
.process-track::-webkit-scrollbar { height: 0; width: 0; display: none; }
.process-track::-webkit-scrollbar-thumb { background: transparent; }
.process-track::-webkit-scrollbar-track { background: transparent; }

.process-card {
  flex: 0 0 clamp(280px, 32vw, 380px);
  scroll-snap-align: start;
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 28px 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 360px;
  transition: background .25s;
}
.process-card:hover { background: var(--bg-soft); }
.process-card .day {
  font-size: 13px;
  color: var(--fg-mute);
}
.process-card .title {
  font-size: clamp(30px, 2.6vw, 44px);
  letter-spacing: -0.035em;
  line-height: 0.98;
  color: var(--fg);
}
.process-card .desc {
  font-size: 15px;
  line-height: 1.42;
  letter-spacing: -0.005em;
  color: var(--fg-mute);
}
.process-card .meta {
  font-size: 13px;
  color: var(--fg-dim);
  margin-top: auto;
}
.process-card.is-weekend {
  background: var(--fg);
  color: var(--bg);
  flex: 0 0 clamp(360px, 42vw, 520px);
}
.process-card.is-weekend .day,
.process-card.is-weekend .desc,
.process-card.is-weekend .meta { color: rgba(255,255,255,0.72); }
body[data-palette="black"] .process-card.is-weekend .day,
body[data-palette="black"] .process-card.is-weekend .desc,
body[data-palette="black"] .process-card.is-weekend .meta { color: rgba(0,0,0,0.65); }
.process-card.is-weekend .title { color: var(--bg); font-size: clamp(40px, 4vw, 64px); }
.process-card.is-weekend:hover { background: var(--fg); }

.process-card--end {
  background: transparent;
  border: 1px dashed var(--line);
}
.process-card--end:hover { background: var(--bg-card); }

.process-rail-hint {
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: -0.005em;
  color: var(--fg-dim);
}

@media (max-width: 720px) {
  .process-carousel-head { flex-direction: column; align-items: flex-start; }
  .carousel-controls { align-self: flex-end; }
}

/* ============================================================
   PROCESS — colored day cards (legacy, kept harmless)
   ============================================================ */
.process { background: var(--bg); }
.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.process-row {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 28px 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 280px;
  cursor: default;
  transition: background .3s;
}
.process-row:hover { background: var(--bg-soft); }
.process-row .day {
  font-size: 13px;
  letter-spacing: -0.005em;
  color: var(--fg-mute);
}
.process-row .title {
  font-size: clamp(30px, 2.6vw, 44px);
  letter-spacing: -0.035em;
  line-height: 0.98;
  color: var(--fg);
}
.process-row:nth-child(1) .title,
.process-row:nth-child(2) .title,
.process-row:nth-child(3) .title,
.process-row:nth-child(4) .title,
.process-row:nth-child(5) .title { color: var(--fg); }
.process-row .desc {
  font-size: 15.5px;
  line-height: 1.42;
  letter-spacing: -0.01em;
  color: var(--fg-mute);
}
.process-row .meta {
  font-size: 13px;
  color: var(--fg-dim);
  letter-spacing: -0.005em;
  margin-top: auto;
}
.process-row.is-weekend {
  background: var(--fg);
  color: var(--bg);
  grid-column: span 3;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  min-height: 200px;
  padding: 36px 40px;
  gap: 40px;
}
.process-row.is-weekend .day,
.process-row.is-weekend .desc,
.process-row.is-weekend .meta { color: rgba(255,255,255,0.65); }
.process-row.is-weekend .title { color: var(--bg); font-size: clamp(48px, 6vw, 96px); flex: none; }
.process-row.is-weekend .desc { max-width: 40ch; }
.process-row.is-weekend:hover { background: var(--fg); }

@media (max-width: 900px) {
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .process-row.is-weekend { grid-column: span 2; flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .process-list { grid-template-columns: 1fr; }
  .process-row.is-weekend { grid-column: span 1; }
}

/* ============================================================
   PHILOSOPHY
   ============================================================ */
section.block.philosophy {
  padding: clamp(120px, 18vh, 200px) 0 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.philosophy-vineyard {
  display: block;
  width: 100%;
  height: auto;
  margin-top: max(0px, calc(clamp(48px, 7vh, 110px) - 4cm));
  pointer-events: none;
}
.philosophy blockquote {
  font-size: clamp(40px, 5.8vw, 96px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.04em;
  max-width: 22ch;
  margin: 0 auto;
  text-wrap: balance;
  color: var(--fg);
}
.philosophy blockquote em {
  font-style: normal;
  color: inherit;
  display: inline-block;
  position: relative;
}
/* ============================================================
   TEAM
   ============================================================ */
.team .team-grid {
  margin-top: 8px;
  text-align: left;
}
.team-copy {
  max-width: none;
  margin-left: 0;
}
.team-lede {
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.24;
  letter-spacing: -0.01em;
  font-weight: 400;
  color: var(--fg);
  text-wrap: pretty;
  margin: 0;
  text-align: left;
  max-width: none;
}
.team-link {
  font-weight: 600;
  color: inherit;
  text-decoration: none;
  border-bottom: 2px solid currentColor;
  padding-bottom: 1px;
  transition: opacity 0.2s ease;
}
.team-link:hover {
  opacity: 0.6;
}
.team-sub {
  margin-top: 18px;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.5;
  color: var(--fg-dim);
  text-wrap: pretty;
  max-width: 52ch;
}
.team-photo {
  margin: clamp(28px, 4vh, 44px) 0 0;
  position: relative;
}
.team-photo-mask {
  overflow: hidden;
  border-radius: 4px;
}
.team-photo img {
  display: block;
  width: 100%;
  height: auto;
}
.team-photo figcaption {
  margin-top: 14px;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg-dim);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
@media (max-width: 720px) {
  .team-photo img { height: auto; }
}
/* ============================================================
   PRIVACY BANNER
   ============================================================ */
.privacy-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9000;
  pointer-events: none;
}
.privacy-inner {
  pointer-events: auto;
  max-width: 720px;
  margin: 0 auto;
  background: #000;
  color: #fff;
  border-radius: 18px;
  padding: 16px 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  box-shadow: 0 24px 48px -24px rgba(0,0,0,0.45);
  font-size: 13.5px;
  line-height: 1.45;
  letter-spacing: -0.005em;
}
.privacy-copy { margin: 0; max-width: 60ch; }
.privacy-detail {
  grid-column: 1 / -1;
  margin: 6px 0 0;
  font-size: 12.5px;
  color: rgba(255,255,255,0.78);
}
.privacy-detail a { color: #fff; text-decoration: underline; }
.privacy-more {
  background: transparent;
  border: 0;
  padding: 0;
  margin-left: 6px;
  font: inherit;
  color: #fff;
  text-decoration: underline;
  cursor: pointer;
}
.privacy-more:hover { opacity: 0.7; }
.privacy-accept {
  background: #fff;
  color: #000;
  border: 0;
  padding: 9px 18px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 13px;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: opacity .2s;
  white-space: nowrap;
}
.privacy-accept:hover { opacity: 0.85; }

@media (max-width: 560px) {
  .privacy-inner {
    grid-template-columns: 1fr;
    border-radius: 14px;
    padding: 14px 16px;
  }
  .privacy-accept { justify-self: flex-start; }
}
@media (max-width: 720px) {
  :root { --gutter: 18px; }

  /* Nav — hide desktop links */
  .nav { padding: 14px var(--gutter); }
  .nav .mark .mark-icon { height: 22px; }
  .nav .mark .mark-word { font-size: 17px; }
  .nav .links { display: none; }
  .nav-right { gap: 12px; }
  .lang-toggle { font-size: 12px; padding: 6px 10px; }
  .nav-apply { font-size: 13px; padding: 8px 14px; }

  /* Hero */
  .hero { padding-bottom: 32px; }

  /* Parallax hero — mobile */
  .hero--parallax { min-height: 74svh; }
  .px-content {
    top: clamp(72px, 12vh, 120px);
    gap: 20px;
  }
  .px-headline { font-size: clamp(58px, 21vw, 140px); }
  .px-lede { font-size: 16px; max-width: 34ch; }
  .px-layer--vineyard { left: -35%; width: 170%; bottom: calc(-6% - 1cm); }
  .px-layer--figures { width: 150%; left: -25%; bottom: 0; height: auto; transform: translate3d(0,0,0); }
  .hero--parallax.is-in .px-layer--figures { transform: translate3d(0,0,0); }
  .px-scrim { height: 46%; }

  /* Marquee */
  .marquee { padding: 16px 0; }
  .marquee-track { gap: 32px; font-size: clamp(28px, 9vw, 44px); }
  .marquee-track .marquee-icon { height: clamp(28px, 8vw, 42px); }

  /* Section heads */
  section.block { padding: 64px 0; }
  .section-head { gap: 14px; margin-bottom: 36px; }
  .section-head h2 { font-size: clamp(36px, 9.5vw, 56px); }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-lede { font-size: clamp(22px, 6.5vw, 32px); }
  .about-right p { font-size: 15.5px; max-width: none; }
  .disciplines { margin-top: 40px; }
  .disciplines-list, .disciplines-list--4 {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .disc {
    padding: 18px 18px 22px;
    min-height: 150px;
    gap: 40px;
  }
  .disc .name { font-size: 24px; }
  .disciplines-foot {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 10px;
    padding: 16px 0 0;
  }
  .disciplines-foot-line { text-align: left; font-size: 22px; white-space: normal; }

  /* Process carousel */
  body:not([data-palette]) #about .process-carousel {
    margin-top: 56px;
    padding-top: 48px;
    padding-bottom: 56px;
  }
  .process-carousel-head { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 20px; }
  .process-carousel-title { font-size: clamp(26px, 7vw, 36px); max-width: none; }
  .carousel-controls { align-self: flex-end; }
  .process-card {
    flex: 0 0 78vw;
    min-height: 280px;
    padding: 22px 20px 24px;
  }
  .process-card .title { font-size: 30px; }
  .process-card.is-weekend {
    flex: 0 0 88vw;
  }
  .process-card.is-weekend .title { font-size: 36px; }

  /* Philosophy */
  /* Philosophy — desktop only */
  .philosophy { display: none; }

  /* Two paths */
  .two-paths .paths-grid { grid-template-columns: 1fr; gap: 12px; border: none; }
  .path {
    padding: 28px 22px 32px;
    min-height: 0;
    border-radius: 22px;
  }
  .path + .path { border-left: 0; border-top: 0; }
  .path h3 { font-size: clamp(34px, 10vw, 52px); }
  .path-lede { font-size: 17px; }
  .path-foot .cta { align-self: stretch; justify-content: center; }

  /* Footer */
  footer {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 40px var(--gutter) 28px;
  }
  footer .col.mark { grid-column: 1 / -1; }
  footer .col.mark img { height: 64px; }
  footer .and-link { font-size: 22px; }
  footer .and-logo { height: 18px; }
}

@media (max-width: 420px) {
  footer { grid-template-columns: 1fr; }
  footer .col.mark { grid-column: auto; }
  .marquee-track { font-size: 32px; gap: 24px; }
  .marquee-track .marquee-icon { height: 30px; }
}
.philosophy blockquote .philosophy-tail {
  display: inline-block;
  transform: translateY(-5mm);
}
.philosophy .attrib {
  margin-top: 40px;
  font-size: 14px;
  letter-spacing: -0.005em;
  color: var(--fg-mute);
}

/* ============================================================
   EMPTY DOSSIER — 3-col rounded tile grid
   ============================================================ */
.gallery { padding-bottom: clamp(80px, 12vh, 140px); }
.empty-dossier .empty-note {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: end;
  margin: -24px 0 48px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.empty-dossier .empty-note p {
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.16;
  letter-spacing: -0.025em;
  color: var(--fg);
  max-width: 34ch;
}
.empty-dossier .empty-note p.mono {
  font-size: 13px;
  letter-spacing: -0.005em;
  color: var(--fg-mute);
  text-align: right;
  align-self: end;
}
@media (max-width: 720px) {
  .empty-dossier .empty-note { grid-template-columns: 1fr; }
  .empty-dossier .empty-note p.mono { text-align: left; }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.tile-wrap { display: block; }
.tile {
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  border-radius: var(--radius);
  aspect-ratio: 1 / 1;
  cursor: pointer;
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
}
.tile img.tile-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.04);
  transition: transform .6s cubic-bezier(.2,.7,.2,1), filter .3s;
}
.tile-wrap:hover .tile img.tile-img { transform: scale(1.04); }
.tile-footer {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tile-footer .t-title {
  font-size: clamp(20px, 1.8vw, 28px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--fg);
}
.tile-footer .t-desc {
  font-size: 14.5px;
  line-height: 1.35;
  letter-spacing: -0.005em;
  color: var(--fg-mute);
  max-width: 32ch;
}
.tile .ph {
  position: absolute;
  inset: 0;
  background-color: var(--tile-color, var(--bg-card));
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.tile-wrap:hover .tile .ph { transform: scale(1.03); }
.tile .ph::after {
  content: attr(data-glyph);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(80px, 9vw, 140px);
  font-weight: 400;
  letter-spacing: -0.05em;
  color: rgba(0,0,0,0.32);
}
.tile .frame-num {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 12px;
  letter-spacing: -0.005em;
  color: rgba(255,255,255,0.85);
  z-index: 2;
  mix-blend-mode: difference;
}
.tile .corner-tag {
  position: absolute;
  bottom: 16px; left: 16px;
  background: rgba(255,255,255,0.92);
  color: var(--fg);
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  letter-spacing: -0.005em;
  z-index: 2;
  backdrop-filter: blur(2px);
}

/* All tile titles black (palette is monochrome now) */
.tile.c-1 + * .t-title,
.tile.c-2 + * .t-title,
.tile.c-3 + * .t-title,
.tile.c-4 + * .t-title,
.tile.c-5 + * .t-title,
.tile.c-6 + * .t-title,
.tile.c-7 + * .t-title,
.tile.c-8 + * .t-title,
.tile.c-9 + * .t-title { color: var(--fg); }

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

.gallery-caption {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  margin-top: 40px;
}
.gallery-caption span {
  font-size: 13px;
  color: var(--fg-mute);
  letter-spacing: -0.005em;
}
.gallery-caption span:nth-child(2) { text-align: center; }
.gallery-caption span:last-child { text-align: right; }

/* ============================================================
   COMPARISON — Wine Exchange vs Agency
   ============================================================ */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 110px);
  margin-top: 8px;
}
.compare-head {
  display: block;
  font-size: clamp(20px, 2.2vw, 34px);
  letter-spacing: -0.035em;
  line-height: 1;
  margin-bottom: 10px;
  color: var(--fg);
}
.compare-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.compare-col li {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid color-mix(in srgb, var(--fg) 20%, transparent);
  font-size: clamp(18px, 1.9vw, 28px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--fg);
}
.compare-col li:last-child {
  border-bottom: 1px solid color-mix(in srgb, var(--fg) 20%, transparent);
}
.compare-col .ctext { display: block; }

.cbadge {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex: none;
  position: relative;
}
.cbadge--yes { background: var(--fg); }
.cbadge--yes::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 8px;
  width: 7px;
  height: 13px;
  border-right: 2.5px solid var(--bg);
  border-bottom: 2.5px solid var(--bg);
  transform: rotate(45deg);
}
.cbadge--no { background: color-mix(in srgb, var(--fg) 13%, transparent); }
.cbadge--no::before,
.cbadge--no::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 13px;
  height: 2px;
  background: color-mix(in srgb, var(--fg) 45%, transparent);
}
.cbadge--no::before { transform: translate(-50%, -50%) rotate(45deg); }
.cbadge--no::after { transform: translate(-50%, -50%) rotate(-45deg); }

/* Right ("agency") column reads muted */
.compare-col--theirs .compare-head,
.compare-col--theirs li { color: color-mix(in srgb, var(--fg) 46%, transparent); }

@media (max-width: 720px) {
  .compare-grid { grid-template-columns: 1fr; gap: 36px; }
  .compare-col li { padding: 16px 0; gap: 14px; }
  .cbadge { width: 28px; height: 28px; }
  .cbadge--yes::after { left: 10px; top: 7px; width: 6px; height: 11px; }
}

/* ============================================================
   TWO PATHS — coloured cards
   ============================================================ */
.two-paths .section-head {
  grid-template-columns: 1fr;
  gap: 12px;
}
.two-paths .section-head h2 {
  text-align: left;
  max-width: none;
}
.two-paths .paths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.two-paths .paths-grid--solo {
  grid-template-columns: 1fr;
}
.two-paths .paths-grid--solo .path {
  min-height: 0;
  padding: clamp(36px, 5vw, 72px) clamp(28px, 5vw, 80px);
}
.two-paths .paths-grid--solo .path header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.two-paths .paths-grid--solo .path h3 {
  font-size: clamp(48px, 7vw, 120px);
  max-width: 14ch;
  text-align: left;
  justify-self: start;
}
.two-paths .paths-grid--solo .path-lede {
  max-width: 60ch;
  font-size: clamp(20px, 1.8vw, 30px);
}
.two-paths .paths-grid--solo .path-list {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding-top: 28px;
}
.two-paths .paths-grid--solo .path-list li {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  text-align: left;
  justify-items: start;
  grid-template-columns: 56px 1fr;
  align-items: baseline;
}
.two-paths .paths-grid--solo .path-list li:last-child {
  border-bottom: none;
}
.two-paths .paths-grid--solo .path-list li span {
  display: block;
  text-align: left;
}
.two-paths .paths-grid--solo .path-foot {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 24px 32px;
  padding-top: 36px;
}
.two-paths .paths-grid--solo .path-foot-line {
  font-size: clamp(22px, 2vw, 32px);
}
.two-paths .paths-grid--solo .path-foot .cta {
  margin-top: 0;
  align-self: end;
  padding: 16px 26px;
  font-size: 16px;
}

@media (max-width: 900px) {
  .two-paths .paths-grid--solo .path header { grid-template-columns: 1fr; }
  .two-paths .paths-grid--solo .path-list { grid-template-columns: 1fr 1fr; grid-column: auto; }
  .two-paths .paths-grid--solo .path-foot { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .two-paths .paths-grid--solo .path-list { grid-template-columns: 1fr; }
}
.path {
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 560px;
  position: relative;
}
.path--winery { background: var(--fg); color: var(--bg); }
.path--studio { background: var(--bg-card); color: var(--fg); border: 1px solid var(--line); }
.path header { display: flex; flex-direction: column; gap: 12px; }
.path-tag {
  font-size: 13px;
  letter-spacing: -0.005em;
  color: currentColor;
  opacity: 0.6;
}
.path h3 {
  font-size: clamp(40px, 4.5vw, 72px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: currentColor;
}
.path-lede {
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: currentColor;
  opacity: 0.92;
  max-width: 32ch;
  font-style: normal;
}
.path-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid currentColor;
  border-top-color: rgba(255,255,255,0.18);
}
.path--studio .path-list { border-top-color: var(--line); }
.path-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: baseline;
  font-size: 15px;
  line-height: 1.36;
  letter-spacing: -0.005em;
  color: currentColor;
  opacity: 0.85;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(255,255,255,0.18);
}
.path--studio .path-list li { border-bottom-color: var(--line); opacity: 0.78; }
.path-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.path-list li span {
  font-size: 12px;
  opacity: 0.55;
  letter-spacing: -0.005em;
}
.path-foot {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.path--studio .path-foot { border-top-color: var(--line); }
.path-foot-line {
  font-size: clamp(18px, 1.6vw, 24px);
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: currentColor;
  font-style: normal;
}
.path-foot .cta {
  margin-top: 14px;
  align-self: flex-start;
}
.path--winery .path-foot .cta { color: var(--fg); background: var(--bg); border-color: var(--bg); }
.path--winery .path-foot .cta:hover { background: transparent; color: var(--bg); border-color: var(--bg); }
.path--studio .path-foot .cta { color: var(--bg); background: var(--fg); border-color: var(--fg); }
.path--studio .path-foot .cta:hover { background: transparent; color: var(--fg); border-color: var(--fg); }
.path-foot .label-num { opacity: 0.55; font-size: 13px; }

@media (max-width: 900px) {
  .two-paths .paths-grid { grid-template-columns: 1fr; }
  .path { min-height: 0; }
}

/* ============================================================
   CTA Block
   ============================================================ */
.cta-block {
  background: var(--bg);
  color: var(--fg);
  padding: clamp(120px, 18vh, 200px) 0 clamp(80px, 12vh, 140px);
  position: relative;
  overflow: hidden;
}
.cta-block .frame { position: relative; z-index: 2; }
.cta-block h2 {
  font-size: clamp(56px, 11vw, 200px);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.045em;
  max-width: 12ch;
  margin-bottom: 56px;
}
.cta-block h2 .roman { color: var(--fg); }
.cta-block h2 .dot   { color: var(--fg); text-decoration: underline; text-decoration-thickness: 0.08em; text-underline-offset: -0.05em; }
.cta-block .row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.cta-block .row p {
  font-size: clamp(18px, 1.4vw, 24px);
  line-height: 1.28;
  letter-spacing: -0.02em;
  max-width: 32ch;
  color: var(--fg);
}
.cta-block .row .small {
  font-size: 14px;
  letter-spacing: -0.005em;
  color: var(--fg-mute);
  margin-top: 8px;
}
.cta-bg-stamp {
  position: absolute;
  bottom: -6vh; right: -2vw;
  font-size: clamp(180px, 28vw, 460px);
  line-height: 0.8;
  color: rgba(0,0,0,0.04);
  pointer-events: none;
  z-index: 1;
  letter-spacing: -0.05em;
  font-weight: 400;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--bg);
  color: var(--fg);
  padding: 56px var(--gutter) 32px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  letter-spacing: -0.005em;
}
footer .col h4 {
  font-weight: 400;
  color: var(--fg-mute);
  margin-bottom: 14px;
  font-size: 13px;
}
footer .col a, footer .col p {
  color: var(--fg);
  text-decoration: none;
  display: block;
  line-height: 1.8;
}
footer .col a:hover { color: var(--fg-mute); }
footer .col.mark {
  font-size: 34px;
  letter-spacing: -0.035em;
  color: var(--fg);
}
footer .col.mark img {
  height: 78px;
  width: auto;
  display: block;
  max-width: 100%;
}
footer .col.mark--icon img {
  height: 72px;
  width: 72px;
  display: block;
}
body:not([data-palette]) footer .col.mark img { filter: invert(1); }
footer .and-link {
  font-size: 28px;
  letter-spacing: -0.03em;
  color: var(--fg);
  line-height: 1.1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: opacity .25s;
}
footer .and-link:hover { opacity: 0.6; }
footer .and-link .arrow-inline {
  font-size: 18px;
  opacity: 0.55;
}
footer .and-logo {
  height: 22px;
  width: auto;
  display: block;
}
body[data-palette="black"] footer .and-logo { filter: invert(1); }

/* Big andstudio lockup at very bottom of footer */
footer .footer-andstudio-lockup {
  grid-column: 1 / -1;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  text-decoration: none;
  transition: opacity .25s;
}
footer .footer-andstudio-lockup:hover { opacity: 0.7; }
footer .footer-andstudio-eyebrow {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--fg-mute);
  text-transform: none;
}
footer .footer-andstudio-svg {
  height: clamp(40px, 6vw, 88px);
  width: auto;
  display: block;
}
body[data-palette="black"] footer .footer-andstudio-svg { filter: invert(1); }
body[data-palette="oxblood"] footer .footer-andstudio-svg { filter: invert(1); }

@media (max-width: 720px) {
  footer { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============================================================
   TITLE MASK REVEAL (headings only) — top → bottom, staggered
   ============================================================ */
.reveal-line {
  display: block;
  overflow: hidden;
  /* extend clip box so descenders (y, g, p) aren't cut */
  padding-bottom: 0.14em;
  margin-bottom: -0.14em;
}
.reveal-line__inner {
  display: block;
  transform: translateY(-115%);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
[data-reveal].is-in .reveal-line__inner {
  transform: translateY(0) !important;
}

/* Subtle parallax layer for titles (set via JS --py) */
[data-parallax] {
  transform: translateY(var(--py, 0));
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-line__inner { transition: none; transform: none; }
  [data-parallax] { transform: none; }
}

/* ============================================================
   ANIMATIONS DISABLED — keep ONLY the hero parallax
   (text reveals, scroll fades, section-head parallax, marquee scroll off)
   ============================================================ */
/* Scroll fade-ins → always visible, static */
.reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
/* Masked text line reveals → static, fully shown */
.reveal-line__inner { transform: none !important; transition: none !important; }
.reveal-line { overflow: visible !important; }
/* Section-head scroll parallax → no movement */
[data-parallax] { transform: none !important; }
/* Marquee → stop the scroll */
.marquee-track { animation: none !important; transform: none !important; }

/* ============================================================
   PALETTE VARIANTS (Tweaks)
   ============================================================ */
/* Per-section colour blocking (light palette only) */
body:not([data-palette]) section.hero:not(.hero--parallax) { background: #FFD83D; }
body:not([data-palette]) section.hero:not(.hero--parallax) .filter-pill { background: #E8B800; color: #000; }
body:not([data-palette]) section.hero:not(.hero--parallax) .filter-pill:hover { background: #C99E00; }
body:not([data-palette]) section.hero:not(.hero--parallax) .cta { color: #FFD83D; background: #6B5400; border-color: #6B5400; }
body:not([data-palette]) section.hero:not(.hero--parallax) .cta:hover { background: #4a3a00; border-color: #4a3a00; color: #FFD83D; }

/* Initiative (purple) section paints over the lower half of the field layer */
section#about { position: relative; z-index: 1; }

body:not([data-palette]) section.block#about {
  background: #E3C6F7;
  padding-bottom: 0;
}
body:not([data-palette]) #about .disc { background: #C9A0EC; }
body:not([data-palette]) #about .disc:hover { background: #B988E0; }
body:not([data-palette]) #about .process-card { background: #C9A0EC; }
body:not([data-palette]) #about .process-card:hover { background: #B988E0; }
body:not([data-palette]) #about .process-card.is-weekend { background: #4A1F73; color: #fff; }
body:not([data-palette]) #about .process-card.is-weekend .day,
body:not([data-palette]) #about .process-card.is-weekend .desc,
body:not([data-palette]) #about .process-card.is-weekend .meta { color: rgba(255,255,255,0.78); }
body:not([data-palette]) #about .process-card.is-weekend .title { color: #fff; }
body:not([data-palette]) #about .process-card--end { background: transparent; border-color: rgba(74,31,115,0.35); }
body:not([data-palette]) #about .process-carousel {
  border-top-color: rgba(74,31,115,0.3);
  background: #000;
  color: #fff;
  /* Full-bleed band: always reach the viewport edges, even past the 1680px frame */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: max(var(--gutter), calc(50vw - 840px + var(--gutter)));
  padding-right: max(var(--gutter), calc(50vw - 840px + var(--gutter)));
  margin-top: 96px;
  margin-bottom: 0;
  padding-top: 72px;
  padding-bottom: 96px;
  border-top: none;
}
body:not([data-palette]) #about .process-carousel .label-num { color: #fff; }
body:not([data-palette]) #about .process-carousel-title { color: #fff; }
body:not([data-palette]) #about .process-rail-hint { color: #fff; }
body:not([data-palette]) #about .process-card {
  background: #2a2a2a;
  color: #fff;
}
body:not([data-palette]) #about .process-card:hover { background: #3a3a3a; }
body:not([data-palette]) #about .process-card .day,
body:not([data-palette]) #about .process-card .title,
body:not([data-palette]) #about .process-card .desc,
body:not([data-palette]) #about .process-card .meta,
body:not([data-palette]) #about .process-card .desc * { color: #fff !important; }
body:not([data-palette]) #about .process-card.is-weekend,
body:not([data-palette]) #about .process-card.is-weekend .day,
body:not([data-palette]) #about .process-card.is-weekend .title,
body:not([data-palette]) #about .process-card.is-weekend .desc,
body:not([data-palette]) #about .process-card.is-weekend .meta,
body:not([data-palette]) #about .process-card.is-weekend .desc * { color: #000 !important; }
body:not([data-palette]) #about .process-card.is-weekend {
  background: #fff;
  color: #000;
}
body:not([data-palette]) #about .process-card.is-weekend .day,
body:not([data-palette]) #about .process-card.is-weekend .desc,
body:not([data-palette]) #about .process-card.is-weekend .meta { color: rgba(0,0,0,0.6); }
body:not([data-palette]) #about .process-card.is-weekend .title { color: #000; }
body:not([data-palette]) #about .process-card--end {
  background: transparent;
  border: 1px dashed rgba(255,255,255,0.3);
}
body:not([data-palette]) #about .process-card--end:hover { background: rgba(255,255,255,0.05); }
body:not([data-palette]) #about .carousel-btn {
  background: #2a2a2a;
  color: #fff;
  border-color: #2a2a2a;
}
body:not([data-palette]) #about .carousel-btn:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}
body:not([data-palette]) #about .process-track {
  scrollbar-width: none;
}
body:not([data-palette]) #about .process-track::-webkit-scrollbar-thumb {
  background: transparent;
}

body:not([data-palette]) section.block.philosophy { background: #F2994A; }
body:not([data-palette]) section.block.philosophy blockquote em { color: inherit; }

body:not([data-palette]) section.block.team { background: #F5D547; }
section.block.team { padding: clamp(56px, 8vh, 96px) 0; }
.team .section-head { margin-bottom: clamp(24px, 4vh, 44px); }

body:not([data-palette]) section.block.comparison { background: #FF6B4D; }

body:not([data-palette]) section.block.two-paths { background: #5C80E0; }
body:not([data-palette]) .two-paths .paths-grid { border-color: rgba(20,36,90,0.4); }
body:not([data-palette]) .two-paths .path--studio { background: #3D5BBA; color: #fff; border-color: transparent; }
body:not([data-palette]) .two-paths .path--studio .path-tag,
body:not([data-palette]) .two-paths .path--studio .path-list li,
body:not([data-palette]) .two-paths .path--studio .path-list li span,
body:not([data-palette]) .two-paths .path--studio .path-foot .label-num { color: rgba(255,255,255,0.78); }
body:not([data-palette]) .two-paths .path--studio .path-list { border-top-color: rgba(255,255,255,0.22); }
body:not([data-palette]) .two-paths .path--studio .path-list li { border-bottom-color: rgba(255,255,255,0.18); }
body:not([data-palette]) .two-paths .path--studio .path-foot { border-top-color: rgba(255,255,255,0.22); }
body:not([data-palette]) .two-paths .path--studio .path-foot .cta { color: #3D5BBA; background: #fff; border-color: #fff; }
body:not([data-palette]) .two-paths .path--studio .path-foot .cta:hover { background: transparent; color: #fff; border-color: #fff; }
body:not([data-palette]) .two-paths .path--winery { background: #14245A; color: #fff; }
body:not([data-palette]) .two-paths .path--winery .path-foot .cta { color: #14245A; background: #fff; border-color: #fff; }
body:not([data-palette]) .two-paths .path--winery .path-foot .cta:hover { background: transparent; color: #fff; border-color: #fff; }
body:not([data-palette]) .two-paths .path--winery .path-foot .label-num,
body:not([data-palette]) .two-paths .path--studio .path-foot .label-num { color: rgba(255,255,255,0.55); }

body:not([data-palette]) section.cta-block { background: #FF6B4D; color: #000; }
body:not([data-palette]) section.cta-block h2,
body:not([data-palette]) section.cta-block .row p { color: #000; }
body:not([data-palette]) section.cta-block .row .small { color: rgba(102,28,12,0.7); }
body:not([data-palette]) section.cta-block .row { border-top-color: rgba(102,28,12,0.35); }
body:not([data-palette]) section.cta-block .eyebrow { color: rgba(102,28,12,0.8) !important; }
body:not([data-palette]) section.cta-block .cta { color: #FF6B4D; background: #661C0C; border-color: #661C0C; }
body:not([data-palette]) section.cta-block .cta:hover { background: #3D0F06; border-color: #3D0F06; color: #FF6B4D; }

body:not([data-palette]) footer {
  background: #000;
  color: #fff;
  border-top-color: transparent;
}
body:not([data-palette]) footer .col h4 { color: rgba(255,255,255,0.55); }
body:not([data-palette]) footer .col a,
body:not([data-palette]) footer .col p { color: #fff; }
body:not([data-palette]) footer .col a:hover { color: rgba(255,255,255,0.6); }
body:not([data-palette]) footer .col.mark { color: #fff; }
body:not([data-palette]) footer .and-link { color: #fff; }
body:not([data-palette]) footer .and-logo { filter: invert(1); }

body[data-palette="black"] {
  --bg: #000000;
  --bg-elev: #0e0e0e;
  --bg-card: #141414;
  --bg-soft: #1a1a1a;
  --fg: #ffffff;
  --fg-mute: rgba(255,255,255,0.62);
  --fg-dim: rgba(255,255,255,0.38);
  --line: rgba(255,255,255,0.14);
}
body[data-palette="black"] .tile .frame-num { color: rgba(255,255,255,0.85); mix-blend-mode: difference; }
body[data-palette="black"] .tile .corner-tag { background: rgba(0,0,0,0.6); color: #fff; }
body[data-palette="black"] .path--studio { background: var(--bg-card); color: var(--fg); border-color: var(--line); }
body[data-palette="black"] .path--winery { background: var(--fg); color: var(--bg); }

body[data-palette="oxblood"] {
  --bg: #2a0f10;
  --bg-elev: #350e0f;
  --bg-card: #3a1416;
  --bg-soft: #461a1c;
  --fg: #f6e6dc;
  --fg-mute: rgba(246,230,220,0.62);
  --fg-dim: rgba(246,230,220,0.4);
  --line: rgba(246,230,220,0.14);
}
