/* ============================================================
   VERSION 1  ::  DE STANDPLAATS
   Dark, cinematic. One frame, one mark on the forecourt,
   the cars roll through it. Every token namespaced --v1-*.
   ============================================================ */

#version-v1 {
  --v1-ink:        #0B0B0C;
  --v1-ink-2:      #101013;
  --v1-surface:    #17171B;
  --v1-surface-2:  #1E1E23;
  --v1-line:       rgba(242,239,233,.14);
  --v1-line-soft:  rgba(242,239,233,.07);
  --v1-cream:      #F2EFE9;
  --v1-muted:      #9C978E;
  --v1-muted-2:    #8B867D;
  --v1-gold:       #C69E3C;
  --v1-gold-lift:  #E2C173;
  --v1-clay:       #B4562E;

  --v1-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --v1-serif:   "Instrument Serif", Georgia, serif;

  --v1-gut: clamp(20px, 4.2vw, 64px);
  --v1-max: 1460px;

  background: var(--v1-ink);
  color: var(--v1-cream);
  font-family: var(--v1-display);
  font-variation-settings: "wdth" 100;
  -webkit-font-smoothing: antialiased;
}

#version-v1 :focus-visible {
  outline: 2px solid var(--v1-gold);
  outline-offset: 3px;
  border-radius: 2px;
}

.v1-wrap {
  width: 100%;
  max-width: var(--v1-max);
  margin: 0 auto;
  padding-inline: var(--v1-gut);
}

/* ---------- shared type ---------- */

.v1-h1 {
  font-size: clamp(2.7rem, 6.4vw, 6.1rem);
  line-height: .93;
  letter-spacing: -.035em;
  font-weight: 800;
  font-variation-settings: "wdth" 108;
  text-wrap: balance;
}
.v1-h1 .v1-line { display: block; }
.v1-h1 em {
  font-family: var(--v1-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--v1-gold);
  letter-spacing: -.01em;
  font-variation-settings: normal;
}

.v1-h2 {
  font-size: clamp(1.9rem, 3.7vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -.03em;
  font-weight: 700;
  font-variation-settings: "wdth" 104;
  text-wrap: balance;
}
.v1-h2--light { color: var(--v1-cream); }

.v1-lead {
  margin-top: 22px;
  max-width: 46ch;
  font-size: clamp(1rem, 1.15vw, 1.14rem);
  line-height: 1.62;
  color: var(--v1-muted);
  font-weight: 400;
}
.v1-lead--light { color: rgba(242,239,233,.8); }

.v1-eyebrow {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--v1-gold);
  font-weight: 600;
}
.v1-eyebrow--light { color: var(--v1-gold-lift); }

.v1-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(242,239,233,.72);
  font-weight: 500;
}
.v1-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--v1-gold);
  box-shadow: 0 0 0 4px rgba(198,158,60,.18);
}

.v1-arrow { display: inline-block; transition: transform .3s cubic-bezier(.2,.7,.3,1); }
a:hover > .v1-arrow, a:hover .v1-arrow { transform: translateX(5px); }

.v1-shead { max-width: 620px; margin-bottom: clamp(34px, 5vw, 64px); }
.v1-shead .v1-h2 { margin-top: 14px; }

/* ---------- buttons ---------- */

.v1-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: 2px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .04em;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background .22s ease, color .22s ease, border-color .22s ease, transform .22s ease;
  white-space: nowrap;
}
.v1-btn--lg { padding: 16px 30px; font-size: 14.5px; }

.v1-btn--gold {
  background: var(--v1-gold);
  color: #14100A;
}
.v1-btn--gold:hover { background: var(--v1-gold-lift); transform: translateY(-2px); }

.v1-btn--ghost {
  border-color: var(--v1-line);
  color: var(--v1-cream);
  background: transparent;
}
.v1-btn--ghost:hover { border-color: var(--v1-gold); color: var(--v1-gold-lift); transform: translateY(-2px); }

/* ============================================================
   NAV
   ============================================================ */

.v1-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 500;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
  border-bottom: 1px solid transparent;
}
.v1-nav.is-stuck {
  background: rgba(11,11,12,.86);
  border-bottom-color: var(--v1-line-soft);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.v1-nav__in {
  max-width: var(--v1-max);
  margin: 0 auto;
  padding: 18px var(--v1-gut);
  display: flex;
  align-items: center;
  gap: 28px;
}

.v1-nav__brand { flex: none; display: block; }
.v1-nav__brand img { width: 148px; height: auto; }

.v1-nav__links {
  display: flex;
  gap: 30px;
  margin-left: auto;
}
.v1-nav__links a {
  color: rgba(242,239,233,.76);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .02em;
  position: relative;
  padding-block: 4px;
}
.v1-nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1px;
  background: var(--v1-gold);
  transition: right .35s cubic-bezier(.2,.7,.3,1);
}
.v1-nav__links a:hover { color: var(--v1-cream); }
.v1-nav__links a:hover::after { right: 0; }

.v1-nav__end { display: flex; align-items: center; gap: 18px; }
.v1-nav__tel {
  color: var(--v1-cream);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .03em;
}
.v1-nav__tel:hover { color: var(--v1-gold-lift); }

.v1-burger {
  display: none;
  width: 40px; height: 34px;
  background: transparent;
  border: 1px solid var(--v1-line);
  border-radius: 2px;
  cursor: pointer;
  padding: 0;
  position: relative;
}
.v1-burger span:not(.sr-only) {
  position: absolute;
  left: 11px; right: 11px;
  height: 1.5px;
  background: var(--v1-cream);
  transition: transform .3s ease, opacity .3s ease;
}
.v1-burger span:not(.sr-only):nth-child(1) { top: 13px; }
.v1-burger span:not(.sr-only):nth-child(2) { top: 19px; }
.v1-burger[aria-expanded="true"] span:not(.sr-only):nth-child(1) { transform: translateY(3px) rotate(45deg); }
.v1-burger[aria-expanded="true"] span:not(.sr-only):nth-child(2) { transform: translateY(-3px) rotate(-45deg); }

.v1-drawer {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px var(--v1-gut) 24px;
  background: rgba(11,11,12,.97);
  border-bottom: 1px solid var(--v1-line-soft);
}
.v1-drawer[hidden] { display: none; }
.v1-drawer a {
  color: var(--v1-cream);
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -.01em;
  padding: 13px 0;
  border-bottom: 1px solid var(--v1-line-soft);
}
.v1-drawer .v1-btn { margin-top: 16px; border-bottom: 0; justify-content: center; }

/* ============================================================
   1. HERO  ::  fixed stage, swapping subject
   ============================================================ */

.v1-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 1fr auto;
  column-gap: 24px;
  align-items: end;
  padding: 132px var(--v1-gut) 0;
  max-width: calc(var(--v1-max) + var(--v1-gut) * 2);
  margin: 0 auto;
  isolation: isolate;
  overflow: hidden;
}

.v1-hero__stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.v1-stage__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 58% 62%;
  opacity: 0;
  transform: scale(1.06);
  will-change: opacity, transform, clip-path;
}
.v1-stage__img.is-front { opacity: 1; }

.v1-stage__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,
      rgba(11,11,12,.94) 0%,
      rgba(11,11,12,.85) 24%,
      rgba(11,11,12,.44) 48%,
      rgba(11,11,12,.06) 68%,
      rgba(11,11,12,.34) 100%),
    linear-gradient(to top,
      rgba(11,11,12,.90) 0%,
      rgba(11,11,12,.05) 40%,
      rgba(11,11,12,.46) 100%);
}

/* the fixed frame, drawn on the stage: this is the standplaats */
.v1-stage__brackets {
  position: absolute;
  inset: clamp(18px, 2.4vw, 34px);
  pointer-events: none;
}
@media (min-width: 981px) {
  .v1-stage__brackets { top: 104px; }   /* clear the fixed nav */
}
.v1-stage__brackets i {
  position: absolute;
  width: 26px; height: 26px;
  border: 0 solid var(--v1-gold);
  opacity: .75;
}
.v1-stage__brackets i:nth-child(1) { top: 0; left: 0; border-top-width: 1px; border-left-width: 1px; }
.v1-stage__brackets i:nth-child(2) { top: 0; right: 0; border-top-width: 1px; border-right-width: 1px; }
.v1-stage__brackets i:nth-child(3) { bottom: 0; left: 0; border-bottom-width: 1px; border-left-width: 1px; }
.v1-stage__brackets i:nth-child(4) { bottom: 0; right: 0; border-bottom-width: 1px; border-right-width: 1px; }

/* location stamp: sits over the bright glass facade, so it carries
   its own backing plate rather than relying on the photo behind it */
.v1-stage__mark {
  position: absolute;
  top: 122px;
  right: var(--v1-gut);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px 8px 12px;
  background: rgba(11,11,12,.64);
  border: 1px solid rgba(242,239,233,.13);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.v1-stage__markline {
  width: 34px; height: 1px;
  background: var(--v1-gold);
}
.v1-stage__marktext {
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #F2EFE9;
  font-weight: 500;
}

.v1-hero__copy {
  grid-column: 1 / span 7;
  grid-row: 1;
  align-self: center;
  position: relative;
  z-index: 3;
  padding-bottom: 40px;
}
.v1-hero__copy .v1-h1 { margin-top: 20px; }
.v1-hero__cta {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.v1-hero__panel {
  grid-column: 9 / span 4;
  grid-row: 1;
  align-self: end;
  position: relative;
  z-index: 3;
  padding-bottom: 40px;
}

/* the spec plate */
.v1-plate {
  background: rgba(16,16,19,.72);
  -webkit-backdrop-filter: blur(16px) saturate(1.1);
  backdrop-filter: blur(16px) saturate(1.1);
  border: 1px solid var(--v1-line);
  border-top: 2px solid var(--v1-gold);
  padding: 24px 24px 22px;
}
.v1-plate__idx {
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--v1-gold);
  font-weight: 600;
}
.v1-plate__of { color: var(--v1-muted-2); }
.v1-plate__name {
  margin-top: 10px;
  font-size: clamp(1.5rem, 2vw, 1.9rem);
  line-height: 1.04;
  letter-spacing: -.03em;
  font-weight: 700;
}
.v1-plate__trim {
  margin-top: 8px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--v1-muted);
  min-height: 2.6em;
}
.v1-plate__specs {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 14px;
  padding-top: 18px;
  border-top: 1px solid var(--v1-line-soft);
}
.v1-plate__specs dt {
  font-size: 9.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--v1-muted-2);
}
.v1-plate__specs dd {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -.01em;
}
.v1-plate__price {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--v1-line-soft);
}
.v1-plate__eur {
  font-size: clamp(1.55rem, 2.1vw, 2rem);
  font-weight: 800;
  letter-spacing: -.035em;
  color: var(--v1-gold-lift);
}
.v1-plate__lease {
  margin-top: 4px;
  font-size: 12px;
  color: var(--v1-muted);
}
.v1-plate__link {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 600;
  color: var(--v1-cream);
  text-decoration: none;
  border-bottom: 1px solid var(--v1-gold);
  padding-bottom: 3px;
}
.v1-plate__link:hover { color: var(--v1-gold-lift); }

/* the rail */
.v1-rail {
  grid-column: 1 / -1;
  grid-row: 2;
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  gap: 20px;
  min-width: 0;
  padding-block: 22px 26px;
  padding-right: 132px;   /* keep the chips clear of the fixed version switch */
  border-top: 1px solid var(--v1-line-soft);
}
.v1-rail__nav { display: flex; gap: 8px; flex: none; padding-bottom: 2px; }
.v1-rail__arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--v1-line);
  background: rgba(16,16,19,.5);
  color: var(--v1-cream);
  cursor: pointer;
  font-size: 15px;
  line-height: 1;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.v1-rail__arrow:hover { border-color: var(--v1-gold); color: var(--v1-gold-lift); }

.v1-rail__track {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  min-width: 0;
  max-width: 100%;
  padding-right: 24px;
  scroll-snap-type: x proximity;
  /* the track runs past its own edge, so it dissolves instead of cutting */
  -webkit-mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 78px), rgba(0,0,0,0) 100%);
  mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 78px), rgba(0,0,0,0) 100%);
}
.v1-rail__track::-webkit-scrollbar { display: none; }

.v1-chip {
  flex: none;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 150px;
  padding: 11px 14px 12px;
  background: transparent;
  border: 0;
  border-top: 2px solid var(--v1-line-soft);
  cursor: pointer;
  text-align: left;
  transition: border-color .28s ease, background .28s ease;
}
.v1-chip__n {
  font-size: 9.5px;
  letter-spacing: .18em;
  color: var(--v1-muted-2);
  font-weight: 600;
}
.v1-chip__t {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -.01em;
  color: rgba(242,239,233,.62);
  transition: color .28s ease;
  white-space: nowrap;
}
.v1-chip__p {
  font-size: 11.5px;
  color: var(--v1-muted-2);
  transition: color .28s ease;
}
.v1-chip:hover { background: rgba(242,239,233,.04); }
.v1-chip:hover .v1-chip__t { color: var(--v1-cream); }
.v1-chip[aria-selected="true"] { border-top-color: var(--v1-gold); }
.v1-chip[aria-selected="true"] .v1-chip__t { color: var(--v1-cream); }
.v1-chip[aria-selected="true"] .v1-chip__p { color: var(--v1-gold); }

/* ============================================================
   2. SLAB  ::  data band
   ============================================================ */

.v1-slab {
  background: var(--v1-ink-2);
  border-block: 1px solid var(--v1-line-soft);
  padding-block: clamp(48px, 6vw, 80px);
}
.v1-slab__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.v1-fig { display: flex; flex-direction: column; gap: 10px; }
.v1-fig__n {
  font-size: clamp(2.4rem, 4.4vw, 4rem);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: .9;
  font-variation-settings: "wdth" 110;
  color: var(--v1-cream);
}
.v1-fig:nth-child(4) .v1-fig__n { color: var(--v1-gold); }
.v1-fig__l {
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--v1-muted);
  max-width: 22ch;
}

/* ============================================================
   3. INDEX  ::  editorial list, hover preview
   ============================================================ */

.v1-index { padding-block: clamp(72px, 10vw, 140px); }

.v1-index__body {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: start;
}

.v1-index__list { border-top: 1px solid var(--v1-line-soft); }

.v1-row {
  border-bottom: 1px solid var(--v1-line-soft);
  position: relative;
}
.v1-row__a {
  display: grid;
  grid-template-columns: 44px minmax(0,1fr) 108px 96px 118px 128px;
  align-items: baseline;
  gap: 18px;
  padding: 20px 4px;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: padding-left .35s cubic-bezier(.2,.7,.3,1);
}
.v1-row__a::before {
  content: "";
  position: absolute;
  left: -14px; top: 0; bottom: 0;
  width: 2px;
  background: var(--v1-gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .38s cubic-bezier(.2,.7,.3,1);
}
.v1-row.is-on .v1-row__a { padding-left: 14px; }
.v1-row.is-on .v1-row__a::before { transform: scaleY(1); }

.v1-row__n {
  font-size: 10.5px;
  letter-spacing: .14em;
  color: var(--v1-muted-2);
  font-weight: 600;
}
.v1-row__name {
  font-size: clamp(1.05rem, 1.7vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -.025em;
  transition: color .3s ease;
}
.v1-row.is-on .v1-row__name { color: var(--v1-gold-lift); }
.v1-row__trim {
  display: block;
  margin-top: 5px;
  font-size: 11.5px;
  font-weight: 400;
  color: var(--v1-muted-2);
  letter-spacing: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.v1-row__meta {
  font-size: 12.5px;
  color: var(--v1-muted);
  white-space: nowrap;
}
.v1-row__price {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.02em;
  text-align: right;
  white-space: nowrap;
}

.v1-index__preview {
  position: sticky;
  top: 120px;
}
.v1-index__pv-frame {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--v1-surface);
  border: 1px solid var(--v1-line-soft);
}
.v1-index__pv-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.v1-index__pv-cap {
  margin-top: 14px;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--v1-muted-2);
}
.v1-index__more { margin-top: 44px; }

/* ============================================================
   4. BAND  ::  full bleed workshop
   ============================================================ */

.v1-band {
  position: relative;
  isolation: isolate;
  padding-block: clamp(90px, 13vw, 180px);
  overflow: hidden;
}
.v1-band__bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 42%;
  z-index: -2;
}
.v1-band__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(105deg, rgba(11,11,12,.95) 0%, rgba(11,11,12,.88) 38%, rgba(11,11,12,.66) 72%, rgba(11,11,12,.74) 100%);
}
.v1-band__in {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.v1-band__copy .v1-h2 { margin-top: 16px; }
.v1-band__copy .v1-btn { margin-top: 32px; }

.v1-band__list {
  border-top: 1px solid rgba(242,239,233,.22);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
.v1-band__list li { border-bottom: 1px solid rgba(242,239,233,.13); }
.v1-band__list a {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 14px 6px;
  color: rgba(242,239,233,.88);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.015em;
  transition: color .22s ease, padding-left .28s ease;
}
.v1-band__list a span {
  font-size: 10px;
  letter-spacing: .16em;
  color: var(--v1-gold);
  font-weight: 600;
}
.v1-band__list a:hover { color: var(--v1-gold-lift); padding-left: 12px; }

/* ============================================================
   5. FAMILY  ::  cut out portrait
   ============================================================ */

.v1-family {
  background: var(--v1-ink-2);
  padding-block: clamp(72px, 9vw, 128px);
  overflow: hidden;
}
.v1-family__in {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
}
.v1-family__copy .v1-h2 { margin-top: 16px; }

.v1-team {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1px;
  background: var(--v1-line-soft);
  border: 1px solid var(--v1-line-soft);
}
.v1-team li {
  background: var(--v1-ink-2);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.v1-team b { font-size: 13.5px; font-weight: 700; letter-spacing: -.01em; }
.v1-team span { font-size: 11px; color: var(--v1-muted-2); }

.v1-family__fig { position: relative; }
.v1-family__fig::before {
  content: "";
  position: absolute;
  left: 6%; right: 6%; bottom: 46px; top: 12%;
  background: linear-gradient(180deg, rgba(180,86,46,.16), rgba(198,158,60,.06));
  border: 1px solid var(--v1-line-soft);
}
.v1-family__fig img {
  position: relative;
  width: 100%;
  filter: drop-shadow(0 40px 60px rgba(0,0,0,.55));
  -webkit-mask-image: linear-gradient(to bottom, #000 82%, rgba(0,0,0,0) 99%);
  mask-image: linear-gradient(to bottom, #000 82%, rgba(0,0,0,0) 99%);
}
.v1-family__fig figcaption {
  margin-top: 18px;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--v1-muted-2);
  text-align: center;
}

/* ============================================================
   6. STICKY  ::  sticky head, scrolling list
   ============================================================ */

.v1-sticky { padding-block: clamp(72px, 10vw, 140px); }
.v1-sticky__in {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.v1-sticky__head { position: sticky; top: 132px; }
.v1-sticky__head .v1-h2 { margin-top: 16px; }
.v1-sticky__plate {
  margin-top: 40px;
  max-width: 330px;
  border: 1px solid var(--v1-line-soft);
  padding: 10px 10px 0;
}
.v1-sticky__plate img { width: 100%; filter: saturate(.86) contrast(1.03); }
.v1-sticky__plate figcaption {
  padding: 12px 2px 12px;
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--v1-muted-2);
}

.v1-sticky__list { border-top: 1px solid var(--v1-line-soft); }
.v1-sticky__list li {
  padding: 30px 0 32px;
  border-bottom: 1px solid var(--v1-line-soft);
}
.v1-sticky__n {
  font-size: 10.5px;
  letter-spacing: .18em;
  color: var(--v1-gold);
  font-weight: 600;
}
.v1-sticky__list h3 {
  margin-top: 10px;
  font-size: clamp(1.15rem, 1.7vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -.025em;
}
.v1-sticky__list li > p:not(.v1-sticky__n) {
  margin-top: 9px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--v1-muted);
  max-width: 48ch;
}
.v1-sticky__list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--v1-cream);
  text-decoration: none;
  border-bottom: 1px solid var(--v1-line);
  padding-bottom: 3px;
}
.v1-sticky__list a:hover { color: var(--v1-gold-lift); border-bottom-color: var(--v1-gold); }

/* ============================================================
   7. QUOTE  ::  single spotlight
   ============================================================ */

.v1-quote {
  background: var(--v1-ink-2);
  border-block: 1px solid var(--v1-line-soft);
  padding-block: clamp(72px, 10vw, 136px);
  text-align: center;
}
.v1-quote__score {
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--v1-muted);
}
.v1-quote__score span {
  color: var(--v1-gold);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .04em;
}
.v1-quote__q { max-width: 1040px; margin: 30px auto 0; }
.v1-quote__text {
  font-family: var(--v1-serif);
  font-style: italic;
  font-size: clamp(1.6rem, 3.6vw, 3.1rem);
  line-height: 1.16;
  letter-spacing: -.02em;
  max-width: min(17em, 100%);
  margin-inline: auto;
  color: var(--v1-cream);
  text-wrap: balance;
}
.v1-quote__by {
  margin-top: 28px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--v1-muted-2);
}
.v1-quote__more { margin-top: 34px; }
.v1-quote__more a {
  font-size: 13px;
  font-weight: 600;
  color: var(--v1-cream);
  text-decoration: none;
  border-bottom: 1px solid var(--v1-gold);
  padding-bottom: 3px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

/* ============================================================
   8. VISIT  ::  diptych
   ============================================================ */

.v1-visit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 82vh;
}
.v1-visit__media { position: relative; overflow: hidden; }
.v1-visit__media img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.v1-visit__info {
  padding: clamp(48px, 6vw, 92px) var(--v1-gut);
  background: var(--v1-ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 760px;
}
.v1-visit__info .v1-h2 { margin-top: 14px; }

.v1-visit__cols {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.v1-visit__cols h3 {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--v1-gold);
  font-weight: 600;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--v1-line-soft);
}
.v1-hours tr { border-bottom: 1px solid var(--v1-line-soft); }
.v1-hours th, .v1-hours td {
  padding: 9px 0;
  font-size: 12.5px;
  font-weight: 400;
  text-align: left;
  color: var(--v1-muted);
}
.v1-hours td { text-align: right; color: var(--v1-cream); font-weight: 600; }

.v1-visit__contact {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 30px;
}
.v1-visit__contact li { display: flex; flex-direction: column; gap: 4px; }
.v1-visit__contact span {
  font-size: 9.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--v1-muted-2);
}
.v1-visit__contact a {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--v1-cream);
  text-decoration: none;
}
.v1-visit__contact a:hover { color: var(--v1-gold-lift); }

.v1-visit__cta { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 12px; }

/* ============================================================
   FOOTER
   ============================================================ */

.v1-foot {
  background: var(--v1-ink-2);
  border-top: 1px solid var(--v1-line-soft);
  padding-block: clamp(52px, 6vw, 84px) 108px;
  text-align: center;
}
.v1-foot__in { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.v1-foot__logo { width: 190px; opacity: .95; }
.v1-foot__addr { font-size: 12.5px; color: var(--v1-muted); letter-spacing: .04em; }
.v1-foot__nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 26px; margin-top: 6px; }
.v1-foot__nav a {
  color: rgba(242,239,233,.72);
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 500;
}
.v1-foot__nav a:hover { color: var(--v1-gold-lift); }
.v1-foot__legal {
  margin-top: 12px;
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--v1-muted-2);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1180px) {
  .v1-hero__copy { grid-column: 1 / span 8; }
  .v1-hero__panel { grid-column: 8 / span 5; }
  .v1-index__body { grid-template-columns: 1fr 300px; gap: 40px; }
  .v1-row__a { grid-template-columns: 36px minmax(0,1fr) 96px 108px; }
  .v1-row__meta--trans, .v1-row__meta--fuel { display: none; }
}

@media (max-width: 980px) {
  .v1-nav__links { display: none; }
  .v1-nav__tel { display: none; }
  .v1-nav__cta { display: none; }
  .v1-burger { display: block; }
  .v1-nav__end { margin-left: auto; }

  .v1-hero {
    display: flex;
    flex-direction: column;
    padding-top: 84px;
    min-height: 0;
  }
  .v1-hero__stage {
    position: relative;
    order: 1;
    width: calc(100% + var(--v1-gut) * 2);
    margin-inline: calc(var(--v1-gut) * -1);
    aspect-ratio: 3 / 2;
    inset: auto;
  }
  .v1-stage__img { object-position: 56% 62%; }
  .v1-stage__scrim {
    background: linear-gradient(to top, rgba(11,11,12,.92) 0%, rgba(11,11,12,0) 42%);
  }
  /* the plate overlaps the foot of the stage, so the stamp moves up top */
  .v1-stage__mark { top: 14px; bottom: auto; right: var(--v1-gut); padding: 6px 11px 6px 9px; }
  .v1-stage__marktext { font-size: 9.5px; letter-spacing: .16em; }
  .v1-hero__panel { order: 2; padding-bottom: 0; margin-top: -46px; }
  .v1-hero__copy { order: 3; padding-block: 40px 0; align-self: auto; }
  .v1-rail { order: 4; margin-top: 32px; }

  .v1-slab__grid { grid-template-columns: 1fr 1fr; gap: 30px 24px; }

  .v1-index__body { grid-template-columns: 1fr; }
  .v1-index__preview { display: none; }

  .v1-band__in { grid-template-columns: 1fr; }
  .v1-band__scrim { background: linear-gradient(to top, rgba(11,11,12,.96) 12%, rgba(11,11,12,.72) 100%); }

  .v1-family__in { grid-template-columns: 1fr; }
  .v1-family__fig { order: -1; max-width: 460px; margin-inline: auto; }

  .v1-sticky__in { grid-template-columns: 1fr; }
  .v1-sticky__head { position: static; }
  .v1-sticky__plate { display: none; }

  .v1-visit { grid-template-columns: 1fr; min-height: 0; }
  .v1-visit__media { aspect-ratio: 16 / 10; }
  .v1-visit__info { max-width: none; }
}

@media (max-width: 620px) {
  .v1-btn { white-space: normal; text-align: center; max-width: 100%; }

  .v1-rail { flex-direction: column; align-items: stretch; gap: 14px; padding-right: 0; padding-bottom: 66px; }
  .v1-rail__nav { order: 2; width: 100%; }
  .v1-rail__track { order: 1; width: 100%; padding-right: 0; }
  .v1-chip { min-width: 138px; }

  .v1-slab__grid { grid-template-columns: 1fr; gap: 26px; }
  .v1-fig { flex-direction: row; align-items: baseline; gap: 16px; }
  .v1-fig__n { font-size: 2.4rem; flex: none; min-width: 4.2em; }
  .v1-fig__l { max-width: none; }

  .v1-row__a { grid-template-columns: 30px minmax(0,1fr) 92px; gap: 12px; padding: 16px 2px; }
  .v1-row__meta { display: none; }
  .v1-row__trim { white-space: normal; }

  .v1-team { grid-template-columns: 1fr; }
  .v1-visit__cols { grid-template-columns: 1fr; }
  .v1-visit__contact { grid-template-columns: 1fr; }
  .v1-quote__text { max-width: none; }
  .v1-quote__q { max-width: none; }
}

@media (max-width: 380px) {
  .v1-chip { min-width: 124px; }
  .v1-plate { padding: 18px 16px; }
}
