/* ==========================================================================
   DURO Hospitality — site styles
   Fonts: Lionel Classic (display serif, from durohospitality.com), Futura Medium
   ========================================================================== */

@font-face {
  font-family: "Lionel";
  src: url("../assets/fonts/lionel-classic.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Futura";
  src: url("../assets/fonts/futura-medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}

:root {
  --ink: #0c0b0a;
  --ink-2: #171513;
  --bone: #efe8dc;
  --bone-2: #e4dccd;
  --red: #a51934;
  --green: #18451f;
  --tan: #a0826d;
  --grey: #929292;
  --line: rgba(239, 232, 220, 0.14);
  --serif: "Lionel", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Futura", "Futura PT", "Jost", "Helvetica Neue", Arial, sans-serif;
  --gutter: clamp(20px, 4vw, 64px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: auto; -webkit-text-size-adjust: 100%; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; margin: 0; line-height: 1; letter-spacing: -0.01em; }
p { margin: 0; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- utilities ---------- */
.line { display: block; overflow: hidden; }
.line > span { display: block; }
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--tan);
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: currentColor;
  vertical-align: middle;
  margin-right: 12px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.5s var(--ease);
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bone);
  transform: translateY(101%);
  transition: transform 0.5s var(--ease);
  z-index: -1;
}
.btn:hover { color: var(--ink); }
.btn:hover::after { transform: translateY(0); }
.btn--solid { background: var(--bone); color: var(--ink); border-color: var(--bone); }
.btn--solid::after { background: var(--red); }
.btn--solid:hover { color: var(--bone); border-color: var(--red); }
.btn--red { background: var(--red); border-color: var(--red); color: var(--bone); }
.btn--red::after { background: var(--bone); }
.btn--red:hover { color: var(--ink); }
.btn .arrow { width: 14px; height: 14px; transition: transform 0.4s var(--ease); }
.btn:hover .arrow { transform: translate(3px, -3px); }
.link {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
}
.link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform-origin: right;
  transition: transform 0.5s var(--ease);
}
.link:hover::after { transform: scaleX(0); transform-origin: left; }
.wrap { padding-left: var(--gutter); padding-right: var(--gutter); }
.section { position: relative; }

/* ---------- loader ---------- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--ink);
  display: grid;
  place-items: center;
  color: var(--bone);
}
.loader__word {
  font-family: var(--serif);
  font-size: clamp(64px, 14vw, 220px);
  line-height: 1;
  display: flex;
  overflow: hidden;
}
.loader__word span { display: inline-block; transform: translateY(110%); }
.loader__count {
  position: absolute;
  bottom: var(--gutter);
  right: var(--gutter);
  font-size: 11px;
  letter-spacing: 0.3em;
}

/* ---------- cursor ---------- */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--bone);
  pointer-events: none;
  z-index: 999;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--ease), height 0.35s var(--ease), opacity 0.3s;
}
.cursor.is-hover { width: 64px; height: 64px; }
.cursor.is-hidden { opacity: 0; }
@media (hover: none) { .cursor { display: none; } }

/* ---------- 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);
  transition: background 0.5s, padding 0.5s var(--ease), transform 0.6s var(--ease);
}
.nav.is-scrolled {
  padding: 14px var(--gutter);
  background: rgba(12, 11, 10, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.nav.is-hidden { transform: translateY(-100%); }
.nav__logo {
  font-family: var(--serif);
  font-size: 30px;
  letter-spacing: 0.02em;
  line-height: 1;
  opacity: 0;
  transition: opacity 0.4s;
}
.nav.is-scrolled .nav__logo, .nav.show-logo .nav__logo { opacity: 1; }
.nav__links { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav__links a {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease);
}
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__right { display: flex; align-items: center; gap: 18px; }
.nav__burger {
  display: none;
  width: 40px; height: 40px;
  position: relative;
}
.nav__burger span {
  position: absolute;
  left: 8px; right: 8px;
  height: 1px;
  background: currentColor;
  transition: transform 0.4s var(--ease), top 0.4s var(--ease), opacity 0.3s;
}
.nav__burger span:nth-child(1) { top: 14px; }
.nav__burger span:nth-child(2) { top: 20px; }
.nav__burger span:nth-child(3) { top: 26px; }
.nav__burger.is-open span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

.menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--ink);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  padding: 110px var(--gutter) var(--gutter);
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.8s var(--ease);
}
.menu.is-open { clip-path: inset(0 0 0 0); }
.menu__primary { list-style: none; margin: 0; padding: 0; }
.menu__primary a {
  font-family: var(--serif);
  font-size: clamp(40px, 7vw, 96px);
  line-height: 1.05;
  display: inline-block;
  transition: color 0.4s, transform 0.5s var(--ease);
}
.menu__primary a:hover { color: var(--tan); transform: translateX(14px); }
.menu__secondary { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-content: end; }
.menu__secondary h4 { font-family: var(--sans); font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--tan); margin-bottom: 14px; }
.menu__secondary ul { list-style: none; margin: 0; padding: 0; }
.menu__secondary li { margin-bottom: 8px; font-size: 14px; }
.menu__secondary li a:hover { color: var(--tan); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  background: var(--ink);
}
.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  will-change: clip-path;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.18);
  will-change: transform;
  filter: brightness(0.72);
}
.hero__grain {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,11,10,0.35) 0%, rgba(12,11,10,0) 30%, rgba(12,11,10,0) 60%, rgba(12,11,10,0.85) 100%);
  pointer-events: none;
}
.hero__word {
  position: absolute;
  left: 50%;
  bottom: 9vh;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: clamp(120px, 27vw, 480px);
  line-height: 0.8;
  letter-spacing: 0.04em;
  color: var(--bone);
  display: flex;
  white-space: nowrap;
  will-change: transform, opacity;
  mix-blend-mode: normal;
}
.hero__word span { display: inline-block; transform: translateY(110%); }
.hero__tag {
  position: absolute;
  top: 30%;
  left: var(--gutter);
  transform: translateY(-50%);
  max-width: 420px;
}
.hero__tag h1 {
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.1;
  margin-top: 18px;
}
.hero__tag p { margin-top: 18px; max-width: 34ch; color: var(--bone-2); opacity: 0.85; }
.hero__meta {
  position: absolute;
  top: 30%;
  right: var(--gutter);
  transform: translateY(-50%);
  text-align: right;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  line-height: 2;
  color: var(--bone-2);
}
.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.7;
}
.hero__scroll i {
  width: 1px; height: 44px;
  background: currentColor;
  display: block;
  transform-origin: top;
  animation: scrollLine 1.8s var(--ease) infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- manifesto ---------- */
.manifesto {
  background: var(--bone);
  color: var(--ink);
  padding: clamp(120px, 18vh, 220px) var(--gutter);
}
.manifesto__inner { max-width: 1200px; margin: 0 auto; }
.manifesto .eyebrow { color: var(--red); }
.manifesto__lead {
  font-family: var(--serif);
  font-size: clamp(32px, 4.6vw, 74px);
  line-height: 1.08;
  margin-top: 36px;
}
.manifesto__lead .w, .manifesto__body .w { display: inline-block; opacity: 0.14; will-change: opacity; }
.manifesto__body {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
}
.manifesto__body p {
  grid-column: 5 / 13;
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.55;
  margin-bottom: 28px;
}
.manifesto__body p:nth-child(even) { grid-column: 3 / 11; }
.manifesto__stats {
  margin-top: 96px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(12,11,10,0.15);
}
.manifesto__stats div { padding: 28px 0; border-right: 1px solid rgba(12,11,10,0.15); padding-right: 20px; }
.manifesto__stats div:last-child { border-right: 0; }
.manifesto__stats b { font-family: var(--serif); font-weight: 400; font-size: clamp(40px, 5vw, 80px); line-height: 1; display: block; }
.manifesto__stats span { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--grey); }

/* ---------- diptych (sticky media + scrolling text) ---------- */
.diptych {
  background: var(--ink);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.diptych__media {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.diptych__media figure {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.9s var(--ease);
}
.diptych__media figure.is-active { opacity: 1; }
.diptych__media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); transition: transform 1.6s var(--ease); }
.diptych__media figure.is-active img { transform: scale(1); }
.diptych__media figcaption {
  position: absolute;
  left: var(--gutter);
  bottom: var(--gutter);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.diptych__counter {
  position: absolute;
  top: var(--gutter);
  left: var(--gutter);
  font-family: var(--serif);
  font-size: 28px;
  z-index: 2;
}
.diptych__text { padding: 12vh var(--gutter); }
.diptych__intro { min-height: 40vh; display: flex; flex-direction: column; justify-content: center; }
.diptych__intro h2 { font-size: clamp(38px, 4.4vw, 70px); line-height: 1.05; margin-top: 24px; max-width: 12ch; }
.diptych__panel { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; max-width: 560px; }
.diptych__panel h3 { font-size: clamp(48px, 6vw, 110px); line-height: 0.95; color: var(--bone); }
.diptych__panel h3 em { font-style: italic; color: var(--tan); }
.diptych__panel p { margin-top: 28px; font-size: 17px; line-height: 1.65; color: var(--bone-2); }
.diptych__panel .link { margin-top: 28px; display: inline-block; }

/* ---------- concepts stepper (pinned, masked image reveals) ---------- */
.stepper { position: relative; background: var(--ink); }
.stepper__pin { position: relative; height: 100vh; overflow: hidden; }
.stepper__bg { position: absolute; inset: 0; }
.stepper__bg figure {
  position: absolute;
  inset: 0;
  margin: 0;
  clip-path: inset(100% 0 0 0);
  will-change: clip-path;
}
.stepper__bg figure:first-child { clip-path: inset(0 0 0 0); }
.stepper__bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.62); transform: scale(1.1); will-change: transform; }
.stepper__ui { position: absolute; inset: 0; pointer-events: none; }
.stepper__ui > * { pointer-events: auto; }
.stepper__head {
  position: absolute;
  top: 100px;
  left: var(--gutter);
  right: var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.stepper__count { font-family: var(--serif); font-size: clamp(40px, 5vw, 72px); line-height: 1; }
.stepper__count small { font-size: 0.4em; color: var(--tan); letter-spacing: 0.1em; }
.stepper__slides { position: absolute; left: var(--gutter); right: var(--gutter); bottom: clamp(60px, 10vh, 120px); }
.stepper__slide {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: end;
  opacity: 0;
  visibility: hidden;
}
.stepper__slide.is-active { opacity: 1; visibility: visible; }
.stepper__slide h3 {
  font-size: clamp(56px, 9.5vw, 170px);
  line-height: 0.88;
  overflow: hidden;
}
.stepper__slide h3 .line { display: block; overflow: hidden; }
.stepper__slide h3 .line span { display: block; }
.stepper__slide .meta { font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--tan); margin-bottom: 18px; }
.stepper__slide .meta i { font-style: normal; opacity: 0.5; margin: 0 8px; }
.stepper__slide p { font-size: clamp(15px, 1.3vw, 19px); line-height: 1.6; max-width: 46ch; color: var(--bone-2); }
.stepper__slide .actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.stepper__list {
  position: absolute;
  right: var(--gutter);
  top: 50%;
  transform: translateY(-50%);
  list-style: none;
  margin: 0; padding: 0;
  text-align: right;
}
.stepper__list li { margin: 6px 0; }
.stepper__list button {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.4;
  transition: opacity 0.3s, color 0.3s;
  padding: 2px 0;
}
.stepper__list button:hover, .stepper__list li.is-active button { opacity: 1; }
.stepper__list li.is-active button { color: var(--tan); }
.stepper__progress {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: rgba(239,232,220,0.15);
}
.stepper__progress i { display: block; height: 100%; width: 100%; background: var(--bone); transform: scaleX(0); transform-origin: left; }

/* ---------- collection grid + marquee ---------- */
.collection { background: var(--bone); color: var(--ink); padding-bottom: clamp(80px, 12vh, 160px); overflow: hidden; }
.marquee {
  padding: clamp(40px, 8vh, 96px) 0 0;
  white-space: nowrap;
  overflow: hidden;
  font-family: var(--serif);
  font-size: clamp(80px, 14vw, 220px);
  line-height: 0.95;
  color: var(--ink);
}
.marquee__track { display: inline-flex; will-change: transform; }
.marquee__track span { padding-right: 0.35em; }
.marquee__track em { font-style: italic; color: var(--red); }
.marquee--outline .marquee__track span { -webkit-text-stroke: 1px var(--ink); color: transparent; }
.collection__head { display: flex; justify-content: space-between; align-items: end; padding: 40px var(--gutter) 60px; gap: 40px; flex-wrap: wrap; }
.collection__head p { max-width: 52ch; font-size: 17px; line-height: 1.6; }
.collection__head .eyebrow { color: var(--red); display: block; margin-bottom: 14px; }
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 0 var(--gutter);
}
.grid__col { display: flex; flex-direction: column; gap: 32px; will-change: transform; }
.grid__col:nth-child(2) { padding-top: 120px; }
.grid__col:nth-child(3) { padding-top: 40px; }
.card { position: relative; display: block; }
.card__media { display: block; position: relative; overflow: hidden; aspect-ratio: 4 / 5; background: var(--ink); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.03); transition: transform 1.2s var(--ease); }
.card:hover .card__media img { transform: scale(1.1); }
.card__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,11,10,0) 50%, rgba(12,11,10,0.55) 100%);
  opacity: 0;
  transition: opacity 0.6s;
}
.card:hover .card__media::after { opacity: 1; }
.card__badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--red);
  color: var(--bone);
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 7px 10px;
  border-radius: 999px;
}
.card__body { padding-top: 16px; display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.card__body h3 { font-size: clamp(26px, 2.4vw, 38px); }
.card__body span { font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--grey); white-space: nowrap; }
.card__type { font-size: 12px; letter-spacing: 0.06em; color: var(--grey); margin-top: 4px; }
.card__links { display: flex; gap: 18px; margin-top: 12px; }
.card__links a { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; border-bottom: 1px solid rgba(12,11,10,0.3); padding-bottom: 3px; transition: border-color 0.3s, color 0.3s; }
.card__links a:hover { color: var(--red); border-color: var(--red); }
.card--soon .card__media { background: var(--ink); display: grid; place-items: center; aspect-ratio: 4 / 3; }
.card--soon .card__media img { opacity: 0.4; position: absolute; inset: 0; }
.card--soon .card__media h3 { position: relative; color: var(--bone); font-size: clamp(30px, 3vw, 48px); text-align: center; line-height: 1.05; padding: 20px; }
.card--soon .card__media h3 small { display: block; font-family: var(--sans); font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; margin-top: 12px; color: var(--tan); }

/* ---------- michelin ---------- */
.michelin { background: var(--red); color: var(--bone); padding: clamp(100px, 16vh, 200px) var(--gutter); overflow: hidden; position: relative; }
.michelin__inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
.michelin__badges { display: flex; gap: 20px; justify-content: center; }
.michelin__badges img { width: clamp(120px, 14vw, 200px); will-change: transform; }
.michelin h2 { font-size: clamp(36px, 4.4vw, 68px); line-height: 1.02; }
.michelin p { margin-top: 26px; font-size: 17px; line-height: 1.6; max-width: 52ch; opacity: 0.92; }
.michelin__links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.michelin .btn { border-color: rgba(239,232,220,0.5); }
.michelin .btn::after { background: var(--bone); }
.michelin__ghost {
  position: absolute;
  left: 0; right: 0; bottom: -0.2em;
  font-family: var(--serif);
  font-size: clamp(120px, 22vw, 380px);
  line-height: 1;
  white-space: nowrap;
  color: rgba(239,232,220,0.07);
  pointer-events: none;
}

/* ---------- services (horizontal pinned) ---------- */
.services { background: var(--ink); }
.services__pin { height: 100vh; overflow: hidden; display: flex; align-items: center; }
.services__track { display: flex; height: 100%; will-change: transform; }
.services__panel {
  flex: 0 0 auto;
  width: min(46vw, 560px);
  height: 100%;
  padding: 110px clamp(28px, 3vw, 44px) 60px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(28px, 5vh, 56px);
}
.services__panel--intro { width: min(60vw, 700px); padding-left: var(--gutter); }
.services__panel--intro h2 { font-size: clamp(32px, 3.8vw, 60px); line-height: 1; white-space: nowrap; }
.services__panel--intro p { margin-top: 0; max-width: 42ch; font-size: 16px; line-height: 1.6; color: var(--bone-2); }
.services__num { font-family: var(--serif); font-size: clamp(48px, 6vw, 96px); line-height: 1; color: var(--tan); opacity: 0.55; }
.services__panel h3 { font-size: clamp(30px, 3.4vw, 54px); line-height: 1; white-space: nowrap; }
.services__panel p { margin-top: 20px; max-width: 40ch; font-size: 15px; line-height: 1.65; color: var(--bone-2); }
.services__panel--end { width: min(48vw, 600px); justify-content: center; align-items: flex-start; border-right: 0; padding-left: clamp(40px, 5vw, 80px); }
.services__panel--end h3 { font-size: clamp(30px, 3.6vw, 60px); white-space: normal; }
.services__panel--end .btn { margin-top: 32px; }
.services__hint {
  position: absolute;
  bottom: 28px;
  right: var(--gutter);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.6;
}

/* ---------- team ---------- */
.team { background: var(--bone-2); color: var(--ink); overflow: hidden; }
.team__intro { padding: clamp(100px, 16vh, 200px) var(--gutter) 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; }
.team__intro h2 { font-size: clamp(44px, 6vw, 110px); line-height: 0.95; }
.team__intro .eyebrow { color: var(--red); display: block; margin-bottom: 18px; }
.team__intro p { font-size: 17px; line-height: 1.65; max-width: 52ch; }
.team__intro p + p { margin-top: 18px; }
.team__pin { height: 100vh; display: flex; align-items: center; overflow: hidden; position: relative; }
.team__track { display: flex; gap: clamp(20px, 3vw, 48px); padding: 0 var(--gutter); will-change: transform; }
.member {
  flex: 0 0 auto;
  width: clamp(260px, 26vw, 380px);
  text-align: left;
  cursor: pointer;
}
.member__media { aspect-ratio: 3 / 4; overflow: hidden; background: var(--ink); position: relative; }
.member__media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05); transform: scale(1.02); transition: filter 0.8s var(--ease), transform 1.2s var(--ease); }
.member:hover .member__media img { filter: grayscale(0); transform: scale(1.08); }
.member__media::after {
  content: "Read bio";
  position: absolute;
  right: 14px; bottom: 14px;
  font-size: 9px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--bone);
  background: rgba(12,11,10,0.7);
  padding: 8px 12px;
  border-radius: 999px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s, transform 0.4s var(--ease);
}
.member:hover .member__media::after { opacity: 1; transform: translateY(0); }
.member h3 { font-size: clamp(26px, 2.4vw, 36px); margin-top: 18px; }
.member span { display: block; font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--grey); margin-top: 6px; }
.member__idx { font-family: var(--serif); font-size: 14px; color: var(--grey); margin-bottom: 10px; display: block; }

/* ---------- press ---------- */
.press { background: var(--ink); padding: clamp(100px, 16vh, 200px) 0; position: relative; overflow: hidden; }
.press__head { padding: 0 var(--gutter) 50px; display: flex; justify-content: space-between; align-items: end; gap: 40px; flex-wrap: wrap; }
.press__head h2 { font-size: clamp(44px, 6vw, 110px); line-height: 0.95; }
.press__head p { max-width: 50ch; font-size: 16px; line-height: 1.6; color: var(--bone-2); }
.press__list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.press__row {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 22px var(--gutter);
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: color 0.4s;
}
.press__row::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--bone);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.5s var(--ease);
  z-index: 0;
}
.press__row:hover::before { transform: scaleY(1); transform-origin: top; }
.press__row:hover { color: var(--ink); }
.press__row > * { position: relative; z-index: 1; }
.press__row .date { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--tan); }
.press__row h3 { font-family: var(--serif); font-size: clamp(20px, 2vw, 30px); line-height: 1.15; }
.press__row .outlet { font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; white-space: nowrap; }
.press__hover {
  position: fixed;
  width: 260px; aspect-ratio: 4/3;
  pointer-events: none;
  z-index: 50;
  opacity: 0;
  overflow: hidden;
  transform: translate(-50%, -50%) rotate(-3deg);
}
.press__hover img { width: 100%; height: 100%; object-fit: cover; }
.press__concepts { padding: 60px var(--gutter) 0; display: flex; flex-wrap: wrap; gap: 10px 26px; }
.press__concepts a { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--grey); transition: color 0.3s; }
.press__concepts a:hover { color: var(--bone); }

/* ---------- stacking cards ---------- */
.stack { background: var(--bone); color: var(--ink); padding: clamp(100px, 16vh, 200px) var(--gutter) 10vh; }
.stack__head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 60px; gap: 30px; flex-wrap: wrap; }
.stack__head h2 { font-size: clamp(44px, 6vw, 110px); line-height: 0.95; }
.stack__head .eyebrow { color: var(--red); display: block; margin-bottom: 16px; }
.stack__cards { position: relative; }
.scard {
  position: sticky;
  top: 90px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
  background: var(--ink);
  color: var(--bone);
  margin-bottom: 40px;
  overflow: hidden;
  transform-origin: top center;
  will-change: transform;
}
.scard:nth-child(2) { background: var(--green); }
.scard:nth-child(3) { background: var(--red); }
.scard:nth-child(4) { background: var(--ink-2); }
.scard__text { padding: clamp(40px, 6vw, 80px); display: flex; flex-direction: column; justify-content: space-between; }
.scard__text h3 { font-size: clamp(40px, 5vw, 84px); line-height: 0.98; margin-top: 20px; }
.scard__text p { margin-top: 24px; max-width: 46ch; font-size: 17px; line-height: 1.6; color: var(--bone-2); }
.scard__text .eyebrow { color: var(--tan); }
.scard__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 40px; }
.scard__media { overflow: hidden; }
.scard__media img { width: 100%; height: 100%; object-fit: cover; }
.scard__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.scard__grid img { aspect-ratio: 1; }

/* ---------- contact / footer ---------- */
.contact { background: var(--ink); padding: clamp(80px, 12vh, 140px) var(--gutter) 40px; position: relative; overflow: hidden; }
.contact__big {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  max-width: 14ch;
}
.contact__big .line { display: block; overflow: hidden; }
.contact__big .line span { display: block; }
.contact__big em { font-style: italic; color: var(--tan); }
.contact__grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 50px; margin-top: 56px; padding-top: 44px; border-top: 1px solid var(--line); }
.contact__grid h4 { font-family: var(--sans); font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--tan); margin-bottom: 16px; }
.contact__grid p { font-size: 15px; line-height: 1.7; }
.contact__grid ul { list-style: none; margin: 0; padding: 0; }
.contact__grid li { margin-bottom: 8px; }
.contact__grid li a:hover { color: var(--tan); }
.contact__big-link { font-family: var(--serif); font-size: clamp(22px, 2.2vw, 34px); display: inline-block; border-bottom: 1px solid var(--line); padding-bottom: 6px; transition: color 0.3s, border-color 0.3s; }
.contact__big-link:hover { color: var(--tan); border-color: var(--tan); }
.newsletter { margin-top: 20px; }
.newsletter form { display: flex; border-bottom: 1px solid var(--bone); margin-top: 14px; }
.newsletter input {
  flex: 1;
  background: none;
  border: 0;
  color: var(--bone);
  font: inherit;
  padding: 12px 0;
  outline: none;
}
.newsletter input::placeholder { color: var(--grey); }
.newsletter button { font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; padding: 0 0 0 16px; }
.newsletter button:hover { color: var(--tan); }
.footer { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 28px 40px; margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--line); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--grey); }
.footer a:hover { color: var(--bone); }
.footer__logos { grid-column: 1 / -1; order: -1; display: flex; gap: clamp(20px, 2.4vw, 36px); flex-wrap: wrap; align-items: center; justify-content: center; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.footer__logos a { display: block; line-height: 0; opacity: 0.55; transition: opacity 0.3s; }
.footer__logos a:hover { opacity: 1; }
.footer__logos img { height: 22px; width: auto; filter: brightness(0) invert(1); }

/* ---------- modals ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: var(--gutter);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s, visibility 0s 0.5s;
}
.modal.is-open { visibility: visible; opacity: 1; transition: opacity 0.5s; }
.modal__bg { position: absolute; inset: 0; background: rgba(12,11,10,0.86); backdrop-filter: blur(6px); }
.modal__box {
  position: relative;
  background: var(--bone);
  color: var(--ink);
  width: min(920px, 100%);
  max-height: 88vh;
  overflow: auto;
  padding: clamp(28px, 5vw, 60px);
  transform: translateY(30px);
  transition: transform 0.6s var(--ease);
}
.modal.is-open .modal__box { transform: translateY(0); }
.modal__close { position: absolute; top: 18px; right: 18px; font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; padding: 10px; }
.modal__close:hover { color: var(--red); }
.modal h2 { font-size: clamp(34px, 4vw, 60px); line-height: 1; }
.modal .eyebrow { color: var(--red); display: block; margin-bottom: 14px; }
.reserve__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 10px; margin-top: 30px; }
.reserve__item {
  display: flex; flex-direction: column; gap: 6px;
  padding: 18px;
  border: 1px solid rgba(12,11,10,0.18);
  text-align: left;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.reserve__item:hover { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.reserve__item b { font-family: var(--serif); font-weight: 400; font-size: 22px; line-height: 1.05; }
.reserve__item span { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; opacity: 0.7; }
.bio { display: grid; grid-template-columns: 240px 1fr; gap: 40px; }
.bio img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.bio p { margin-top: 16px; font-size: 15px; line-height: 1.65; }
.bio__facts { margin-top: 28px; padding-top: 20px; border-top: 1px solid rgba(12,11,10,0.15); display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.bio__facts h4 { font-family: var(--sans); font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--red); margin-bottom: 8px; }
.bio__facts p { margin: 0; font-family: var(--serif); font-size: 20px; line-height: 1.25; }

/* michelin announcement popup */
.modal--michelin { z-index: 300; }
.modal--michelin .modal__box { background: var(--red); color: var(--bone); width: min(680px, 100%); text-align: center; padding: clamp(36px, 6vw, 64px) clamp(24px, 5vw, 56px); }
.modal--michelin .modal__close { color: var(--bone); font-size: 18px; letter-spacing: 0; }
.modal--michelin .modal__close:hover { color: var(--bone); opacity: 0.6; }
.mpop__badges { display: flex; justify-content: center; gap: clamp(24px, 6vw, 72px); }
.mpop__badges img { width: clamp(120px, 26vw, 200px); }
.mpop__text { margin-top: 28px; font-size: clamp(15px, 1.4vw, 19px); line-height: 1.55; }
.mpop__links { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-top: 30px; }
.mpop__links a { display: block; width: min(420px, 100%); background: var(--bone); color: var(--red); font-family: var(--sans); font-size: 15px; letter-spacing: 0.08em; text-transform: uppercase; padding: 16px 20px; transition: background 0.3s, color 0.3s; }
.mpop__links a:hover { background: var(--ink); color: var(--bone); }

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .nav__links { display: none; }
  .nav__burger { display: block; }
  .diptych { grid-template-columns: 1fr; }
  .diptych__media { height: 55vh; position: sticky; top: 0; z-index: 1; }
  .diptych__panel { min-height: 70vh; }
  .manifesto__body p, .manifesto__body p:nth-child(even) { grid-column: 1 / 13; }
  .manifesto__stats { grid-template-columns: 1fr 1fr; }
  .manifesto__stats div:nth-child(2) { border-right: 0; }
  .grid { grid-template-columns: 1fr 1fr; }
  .grid__col:nth-child(3) { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; padding-top: 0; }
  .grid__col:nth-child(3) .card { flex: 1 1 45%; }
  .michelin__inner { grid-template-columns: 1fr; }
  .team__intro { grid-template-columns: 1fr; }
  .scard { grid-template-columns: 1fr; min-height: auto; }
  .scard__media { order: -1; max-height: 40vh; }
  .contact__grid { grid-template-columns: 1fr 1fr; }
  .stepper__slide { grid-template-columns: 1fr; }
  .stepper__list { display: none; }
  .bio { grid-template-columns: 1fr; }
  .bio img { max-width: 220px; }
  .menu { grid-template-columns: 1fr; }
  .menu__secondary { align-content: start; margin-top: 40px; }
}
@media (max-width: 640px) {
  :root { --gutter: 20px; }
  .hero__meta { display: none; }
  .hero__tag { top: auto; bottom: 34vh; transform: none; max-width: 90%; }
  .hero__word { bottom: 6vh; font-size: 34vw; }
  .grid { grid-template-columns: 1fr; }
  .grid__col:nth-child(2) { padding-top: 0; }
  .grid__col:nth-child(3) .card { flex-basis: 100%; }
  .manifesto__stats { grid-template-columns: 1fr 1fr; }
  .press__row { grid-template-columns: 1fr; gap: 8px; }
  .contact__grid { grid-template-columns: 1fr; }
  .stepper__slide h3 { font-size: 15vw; }
  .services__panel, .services__panel--intro, .services__panel--end { width: 88vw; padding-top: 110px; }
  .services__panel--intro h2 { font-size: 9.5vw; }
  .services__panel h3 { font-size: 8.5vw; }
  .bio__facts { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__scroll i { animation: none; }
  .cursor { display: none; }
}
