/* ==========================================================================
   /construction-and-collaboration/ — service page (locked design)
   Mirrors REFERENCES/construction-and-collaboration/index.html. Tokens are
   bridged from the codebase's tokens.css to the reference's shorter aliases
   so blocks lift directly.
   ========================================================================== */

:root {
  --gold-grad: var(--gold-gradient);
  --warm: var(--bg-warm);
  --hero: var(--bg-hero);
  --serif: var(--font-display);
  --sans: var(--font-body);
  --ease: var(--ease-soft);
  --cinema: var(--ease-cinema);
  --max: var(--max-w);
  --gold: var(--gold-primary);
  --ivory-fade: rgba(244, 237, 224, 0.35);
}

/* Local <em> default for the page — gold gradient. Scoped to .cnc-page so
   we don't trample the global header/footer typography. */
.cnc-page em {
  font-style: italic;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* —— FADE-UP ENTRANCE BASE ——
   Default: visible. JS adds `js-on` to <html> which then hides + animates in.
   If JS fails to load, content is still readable. */
.fadeup { transition: opacity .9s var(--ease), transform .9s var(--ease); }
.js-on .fadeup { opacity: 0; transform: translateY(28px); }
.js-on .fadeup.is-in { opacity: 1; transform: translateY(0); }
.fadeup--d1 { transition-delay: .08s; }
.fadeup--d2 { transition-delay: .18s; }
.fadeup--d3 { transition-delay: .28s; }

/* ========== HERO — SPLIT with ken-burns ========== */
.cnc-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  border-bottom: 1px solid var(--gold-faint);
}

.cnc-hero__visual {
  position: relative;
  background: var(--hero);
  overflow: hidden;
  min-height: 520px;
}
.cnc-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.82) saturate(.95);
  animation: kenburns 22s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}
.cnc-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
              rgba(13, 13, 13, .35) 0%,
              rgba(13, 13, 13, 0) 50%,
              rgba(13, 13, 13, .55) 100%);
}
.cnc-hero__visual-tag {
  position: absolute;
  left: 24px;
  bottom: 24px;
  font-size: 10px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold-mid);
  background: rgba(13, 13, 13, .6);
  padding: 8px 14px;
  border: 1px solid var(--gold-faint);
  backdrop-filter: blur(8px);
}

.cnc-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px, 8vw, 120px) clamp(28px, 5vw, 90px);
  background: var(--warm);
  position: relative;
}
.cnc-hero__eye {
  font-size: 11px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.cnc-hero__eye::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--gold-line);
}
.cnc-hero__title {
  font-family: var(--serif);
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: .98;
  letter-spacing: -.015em;
  font-weight: 400;
  margin-bottom: 36px;
  max-width: 560px;
}
.cnc-hero__title em { font-style: italic; }
.cnc-hero__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
  color: var(--ivory-dim);
  margin-bottom: 48px;
  max-width: 520px;
}
.cnc-hero__stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--gold-faint);
}
.cnc-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cnc-hero__stat-num {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 40px);
  font-style: italic;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  font-feature-settings: "tnum";
}
.cnc-hero__stat-lab {
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ivory-fade);
}
.cnc-hero__scroll {
  position: absolute;
  bottom: 30px;
  left: clamp(28px, 5vw, 90px);
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ivory-fade);
  display: flex;
  align-items: center;
  gap: 14px;
}
.cnc-hero__scroll::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--gold-faint);
  animation: scrollNudge 2.6s ease-in-out infinite;
}
@keyframes scrollNudge {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(8px); }
}

@media (max-width: 880px) {
  .cnc-hero { grid-template-columns: 1fr; min-height: auto; }
  .cnc-hero__visual { aspect-ratio: 4/5; }
  .cnc-hero__scroll { display: none; }
  /* Tighten the copy block on mobile — the original clamp(60–120px) top
     padding leaves a big dead gap between the image and the eyebrow. */
  .cnc-hero__copy { padding: 36px 22px 48px; }
  .cnc-hero__eye { margin-bottom: 18px; }
  .cnc-hero__title { margin-bottom: 22px; font-size: clamp(34px, 8vw, 48px); }
  .cnc-hero__sub { margin-bottom: 32px; }
  .cnc-hero__stats { gap: 28px; padding-top: 24px; }
}

/* ========== PROPOSITION ========== */
.prop {
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}
.prop__eye {
  font-size: 11px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.prop__eye::before,
.prop__eye::after {
  content: "";
  flex: 0 0 50px;
  height: 1px;
  background: var(--gold-line);
}
.prop__title {
  font-family: var(--serif);
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.04;
  letter-spacing: -.01em;
  font-weight: 400;
  margin-bottom: 28px;
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}
.prop__title em { font-style: italic; }
.prop__body {
  font-family: var(--serif);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.7;
  color: var(--ivory-dim);
  max-width: 680px;
  margin: 0 auto;
}

/* ========== PROMISES ========== */
.promises {
  padding: 0 var(--gutter) clamp(80px, 10vw, 140px);
}
.promises__inner {
  max-width: var(--max);
  margin: 0 auto;
  border-top: 1px solid var(--gold-faint);
  border-bottom: 1px solid var(--gold-faint);
}
.promises__head {
  padding: clamp(40px, 5vw, 80px) 0;
  text-align: center;
  border-bottom: 1px solid var(--gold-faint);
}
.promises__eye {
  font-size: 11px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 20px;
}
.promises__title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.06;
  letter-spacing: -.005em;
  font-weight: 400;
  max-width: 680px;
  margin: 0 auto;
}
.promises__title em { font-style: italic; }

.promises__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.promise {
  padding: clamp(40px, 5vw, 72px) clamp(28px, 3vw, 48px);
  border-right: 1px solid var(--gold-faint);
  position: relative;
  overflow: hidden;
}
.promise:last-child { border-right: 0; }
.promise::after {
  content: "";
  position: absolute;
  inset: auto -2px -2px -2px;
  height: 2px;
  background: var(--gold-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .65s var(--cinema);
}
.promise.is-in::after { transform: scaleX(1); }
.promise__num {
  font-family: var(--serif);
  font-size: 48px;
  font-style: italic;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 24px;
}
.promise__title {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.14;
  font-weight: 400;
  margin-bottom: 16px;
}
.promise__title em { font-style: italic; }
.promise__body {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.72;
  color: var(--ivory-dim);
}

@media (max-width: 880px) {
  .promises__grid { grid-template-columns: 1fr; }
  .promise { border-right: 0; border-bottom: 1px solid var(--gold-faint); }
  .promise:last-child { border-bottom: 0; }
}

/* ========== SECTION BREAK — full-bleed parallax photo ========== */
.brk {
  position: relative;
  height: 60vh;
  min-height: 380px;
  overflow: hidden;
  border-top: 1px solid var(--gold-faint);
  border-bottom: 1px solid var(--gold-faint);
}
.brk__img {
  position: absolute;
  inset: -10% 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
  filter: brightness(.55) saturate(.9);
  will-change: transform;
}
.brk__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
              rgba(13, 13, 13, .6) 0%,
              rgba(13, 13, 13, 0) 30%,
              rgba(13, 13, 13, 0) 70%,
              rgba(13, 13, 13, .85) 100%);
}
.brk__caption {
  position: absolute;
  left: var(--gutter);
  bottom: var(--gutter);
  max-width: 680px;
}
.brk__cap-eye {
  font-size: 11px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 16px;
}
.brk__cap-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.1;
  color: var(--ivory);
}

/* ========== HORIZONTAL PINNED PROCESS — Lenis-driven film strip ========== */
.hpin { position: relative; }
.hpin__head {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(80px, 10vw, 140px) var(--gutter) clamp(40px, 6vw, 80px);
}
.hpin__eye {
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hpin__eye::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold-line);
}
.hpin__title {
  font-family: var(--serif);
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.04;
  letter-spacing: -.01em;
  font-weight: 400;
  margin-bottom: 20px;
  max-width: 760px;
}
.hpin__title em { font-style: italic; }
.hpin__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ivory-dim);
  max-width: 560px;
}

/* tall scroll-host that drives the horizontal travel */
.hpin__pin-host {
  position: relative;
  height: 700vh;
  background: var(--warm);
}
.hpin__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-top: 1px solid var(--gold-faint);
  border-bottom: 1px solid var(--gold-faint);
}
.hpin__viewport {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hpin__track {
  display: flex;
  flex-direction: row;
  height: 100%;
  width: max-content;
  will-change: transform;
}
.hpin__slide {
  flex: 0 0 100vw;
  height: 100%;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(40px, 5vw, 90px);
  align-items: center;
  padding: clamp(60px, 8vh, 90px) clamp(40px, 6vw, 100px);
}

/* slide visuals — polaroid collage */
.slide__vis {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 78vh;
}
.slide__main {
  position: absolute;
  top: 0;
  left: 0;
  width: 82%;
  height: 78%;
  object-fit: cover;
  border: 1px solid var(--gold-faint);
  box-shadow: 0 30px 60px rgba(0, 0, 0, .5);
}
.slide__thumb {
  position: absolute;
  width: 38%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border: 3px solid var(--ivory);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .55);
  background: var(--warm);
}
.slide__thumb--1 { bottom: 4%; right: 4%;  transform: rotate(3.5deg); }
.slide__thumb--2 { top: 6%;    right: 14%; transform: rotate(-4deg); width: 32%; }
.slide__tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-mid);
  background: rgba(13, 13, 13, .6);
  padding: 7px 11px;
  border: 1px solid var(--gold-faint);
  backdrop-filter: blur(8px);
  z-index: 5;
}

/* slide copy */
.slide__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 520px;
}
.slide__num {
  font-family: var(--serif);
  font-size: clamp(56px, 7vw, 108px);
  font-style: italic;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  letter-spacing: -.02em;
  margin-bottom: 18px;
}
.slide__step {
  font-size: 10px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--ivory-fade);
  margin-bottom: 10px;
}
.slide__title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.06;
  font-weight: 400;
  margin-bottom: 22px;
}
.slide__title em { font-style: italic; }
.slide__body {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.78;
  color: var(--ivory);
}

/* progress + counter UI inside the pinned viewport */
.hpin__ui {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px clamp(40px, 5vw, 80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 10;
}
.hpin__counter {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--gold-mid);
  font-feature-settings: "tnum";
  letter-spacing: .04em;
}
.hpin__counter span { color: var(--ivory-fade); margin: 0 6px; }
.hpin__bar {
  flex: 1;
  height: 1px;
  background: rgba(244, 237, 224, .18);
  position: relative;
  max-width: 560px;
  margin: 0 32px;
}
.hpin__bar-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--gold-grad);
  transition: width .15s linear;
}
.hpin__hint {
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ivory-fade);
}

/* MOBILE — fallback to vertical stack */
@media (max-width: 880px) {
  .hpin__pin-host { height: auto; background: transparent; }
  .hpin__sticky { position: relative; height: auto; display: block; border: 0; }
  .hpin__viewport { height: auto; overflow: hidden; }
  .hpin__track { flex-direction: column; width: 100%; transform: none !important; }
  .hpin__slide {
    flex: none !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto;
    min-height: auto;
    padding: 48px 20px;
    grid-template-columns: 1fr;
    gap: 28px;
    border-bottom: 1px solid var(--gold-faint);
  }
  .hpin__slide:last-child { border-bottom: 0; }
  .slide__vis { aspect-ratio: 4/3; max-height: none; }
  .slide__copy { padding: 0; }
  .hpin__ui { display: none; }
}

/* ========== MATERIALS MARQUEE ========== */
.mats {
  border-top: 1px solid var(--gold-faint);
  background: var(--warm);
  padding: clamp(80px, 10vw, 140px) 0;
  overflow: hidden;
}
.mats__head {
  max-width: var(--max);
  margin: 0 auto clamp(40px, 5vw, 72px);
  padding: 0 var(--gutter);
  text-align: center;
}
.mats__eye {
  font-size: 11px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 18px;
}
.mats__title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.06;
  letter-spacing: -.005em;
  font-weight: 400;
  max-width: 680px;
  margin: 0 auto;
}
.mats__title em { font-style: italic; }

.marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.marquee__track {
  display: flex;
  gap: 18px;
  animation: marqueeScroll 60s linear infinite;
  width: max-content;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.mat { flex: 0 0 auto; width: clamp(220px, 28vw, 320px); }
.mat__img {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #1a1612;
  border: 1px solid var(--gold-faint);
  margin-bottom: 14px;
}
.mat__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.85) saturate(.95);
  transition: filter .5s var(--ease), transform 1.2s var(--cinema);
}
.mat:hover .mat__img img {
  filter: brightness(1) saturate(1.05);
  transform: scale(1.05);
}
.mat__brand {
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 6px;
}
.mat__name {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.16;
  margin-bottom: 6px;
}
.mat__name em { font-style: italic; }
.mat__use {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--ivory-fade);
  line-height: 1.5;
}

/* ========== PORTFOLIO ========== */
.port {
  border-top: 1px solid var(--gold-faint);
  padding: clamp(80px, 10vw, 140px) var(--gutter);
}
.port__inner { max-width: var(--max); margin: 0 auto; }
.port__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: clamp(40px, 5vw, 72px);
  gap: 32px;
  flex-wrap: wrap;
}
.port__head-l { max-width: 560px; }
.port__eye {
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.port__eye::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold-line);
}
.port__title {
  font-family: var(--serif);
  font-size: clamp(30px, 3.8vw, 46px);
  line-height: 1.04;
  letter-spacing: -.01em;
  font-weight: 400;
}
.port__title em { font-style: italic; }
.port__link {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  border-bottom: 1px solid var(--gold-faint);
  padding-bottom: 4px;
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.port__link:hover { color: var(--gold); border-color: var(--gold); }

.port__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
}
.pcard { display: block; cursor: pointer; }
.pcard__img {
  aspect-ratio: 4/5;
  background: #1a1612;
  overflow: hidden;
  margin-bottom: 18px;
  border: 1px solid transparent;
  transition: border-color .35s var(--ease);
}
.pcard__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.85);
  transition: filter .5s var(--ease), transform 1.2s var(--cinema);
}
.pcard:hover .pcard__img { border-color: var(--gold-faint); }
.pcard:hover .pcard__img img {
  filter: brightness(1) saturate(1.04);
  transform: scale(1.04);
}
.pcard__loc {
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 8px;
}
.pcard__name {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.16;
  margin-bottom: 6px;
}
.pcard__name em { font-style: italic; }
.pcard__meta {
  font-size: 13px;
  color: var(--ivory-fade);
  font-style: italic;
  font-family: var(--serif);
}

@media (max-width: 880px) {
  .port__grid { grid-template-columns: 1fr 1fr; gap: 14px; }
}
@media (max-width: 560px) {
  .port__grid { grid-template-columns: 1fr; }
}

/* ========== TRUST ========== */
.trust-cnc {
  padding: clamp(80px, 10vw, 140px) var(--gutter);
}
.trust-cnc__inner { max-width: var(--max); margin: 0 auto; }
.trust-cnc__head { text-align: center; margin-bottom: clamp(48px, 6vw, 80px); }
.trust-cnc__eye {
  font-size: 11px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 20px;
}
.trust-cnc__title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.06;
  letter-spacing: -.005em;
  font-weight: 400;
  max-width: 720px;
  margin: 0 auto;
}
.trust-cnc__title em { font-style: italic; }

.numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--gold-faint);
  border-bottom: 1px solid var(--gold-faint);
  margin-bottom: clamp(48px, 6vw, 80px);
}
.number {
  padding: clamp(36px, 4vw, 56px) 24px;
  text-align: center;
  border-right: 1px solid var(--gold-faint);
}
.number:last-child { border-right: 0; }
.number__big {
  font-family: var(--serif);
  font-size: clamp(40px, 5.2vw, 72px);
  font-style: italic;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -.01em;
  font-feature-settings: "tnum";
}
.number__lab {
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ivory-fade);
}

@media (max-width: 780px) {
  .numbers { grid-template-columns: repeat(2, 1fr); }
  .number { border-right: 1px solid var(--gold-faint); border-bottom: 1px solid var(--gold-faint); }
  .number:nth-child(2n) { border-right: 0; }
  .number:nth-last-child(-n+2) { border-bottom: 0; }
}

.proof {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(28px, 3vw, 48px);
  align-items: start;
}
@media (max-width: 880px) {
  .proof { grid-template-columns: 1fr; }
}

.review-vid {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--gold-faint);
}
.review-vid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.62) saturate(.95);
  transition: filter .5s var(--ease);
}
.review-vid:hover img {
  filter: brightness(.78) saturate(1);
}
.review-vid__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: rgba(13, 13, 13, .5);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}
.review-vid__play::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11px 0 11px 18px;
  border-color: transparent transparent transparent var(--gold);
  margin-left: 5px;
}
.review-vid__cap {
  position: absolute;
  left: 18px;
  bottom: 18px;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ivory);
  background: rgba(13, 13, 13, .55);
  padding: 8px 12px;
  border: 1px solid var(--gold-faint);
  backdrop-filter: blur(8px);
}
.review-vid__cap em {
  font-family: var(--serif);
  font-style: italic;
  text-transform: none;
  letter-spacing: .04em;
  color: var(--gold-mid);
  margin-left: 8px;
  font-size: 13px;
}
.review-vid.is-playing img,
.review-vid.is-playing .review-vid__play,
.review-vid.is-playing .review-vid__cap {
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}

.quote {
  padding: clamp(28px, 3vw, 40px);
  border: 1px solid var(--gold-faint);
  background: rgba(244, 237, 224, .02);
  height: 100%;
}
.quote__mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 48px;
  color: var(--gold-mid);
  line-height: .6;
  margin-bottom: 18px;
}
.quote__body {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ivory);
  margin-bottom: 24px;
}
.quote__name {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-mid);
}
.quote__role {
  font-size: 13px;
  color: var(--ivory-fade);
  font-family: var(--serif);
  font-style: italic;
  margin-top: 4px;
}

/* ========== TWIN CTAS ========== */
.cta-twin {
  padding: clamp(80px, 12vw, 160px) var(--gutter);
  background: var(--warm);
  border-top: 1px solid var(--gold-faint);
}
.cta-twin__inner { max-width: var(--max); margin: 0 auto; }
.cta-twin__head { text-align: center; margin-bottom: clamp(48px, 6vw, 80px); }
.cta-twin__eye {
  font-size: 11px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 24px;
}
.cta-twin__title {
  font-family: var(--serif);
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.04;
  letter-spacing: -.01em;
  font-weight: 400;
  max-width: 720px;
  margin: 0 auto;
}
.cta-twin__title em { font-style: italic; }

.cta-twin__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2.5vw, 32px);
}
@media (max-width: 780px) {
  .cta-twin__grid { grid-template-columns: 1fr; }
}
.cta-card {
  display: flex;
  flex-direction: column;
  padding: clamp(40px, 5vw, 72px);
  border: 1px solid var(--gold-faint);
  background: rgba(13, 13, 13, .5);
  position: relative;
  overflow: hidden;
  transition: border-color .35s var(--ease), background .35s var(--ease);
}
.cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(255, 215, 0, .08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .55s var(--ease);
}
.cta-card:hover {
  border-color: var(--gold);
  background: rgba(13, 13, 13, .7);
}
.cta-card:hover::before { opacity: 1; }
.cta-card > * { position: relative; z-index: 1; }
.cta-card__lab {
  font-size: 10px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 24px;
}
.cta-card__title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.06;
  letter-spacing: -.01em;
  font-weight: 400;
  margin-bottom: 18px;
}
.cta-card__title em { font-style: italic; }
.cta-card__body {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ivory-dim);
  margin-bottom: 36px;
  flex: 1;
}
.cta-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ivory);
  padding: 18px 28px;
  border: 1px solid var(--gold);
  align-self: flex-start;
  transition: background .35s var(--ease), color .35s var(--ease);
}
.cta-card:hover .cta-card__btn {
  background: var(--gold);
  color: #0D0D0D;
}
.cta-card__btn-arrow {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
}
