/* ============================================================
   VERSION 2  ::  DE ZOEKOPDRACHT
   Light, editorial, catalogue. The sentence is the interface.
   Every token namespaced --v2-*.
   ============================================================ */

#version-v2 {
  --v2-paper:    #F6F3ED;
  --v2-paper-2:  #EEEAE0;
  --v2-paper-3:  #E5E0D3;
  --v2-ink:      #14130F;
  --v2-ink-2:    #3B3830;
  --v2-ink-3:    #63604F;
  --v2-rule:     #D8D1C1;
  --v2-rule-2:   #E7E1D3;
  --v2-gold:     #7F5C0E;
  --v2-gold-2:   #C79A2E;
  --v2-gold-bg:  #F2E9CF;

  --v2-serif: "Fraunces", Georgia, "Times New Roman", serif;
  --v2-sans:  "Inter", system-ui, -apple-system, sans-serif;
  --v2-mono:  "JetBrains Mono", ui-monospace, Menlo, monospace;

  --v2-gut: clamp(20px, 4vw, 60px);
  --v2-max: 1320px;

  background: var(--v2-paper);
  color: var(--v2-ink);
  font-family: var(--v2-sans);
  -webkit-font-smoothing: antialiased;
}

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

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

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

.v2-h2 {
  font-family: var(--v2-serif);
  font-size: clamp(1.85rem, 3.4vw, 3.1rem);
  line-height: 1.03;
  letter-spacing: -.025em;
  font-weight: 600;
  font-variation-settings: "SOFT" 0, "WONK" 0, "opsz" 90;
  text-wrap: balance;
}
.v2-h3 {
  font-family: var(--v2-serif);
  font-size: clamp(1.3rem, 2.1vw, 1.85rem);
  line-height: 1.1;
  letter-spacing: -.02em;
  font-weight: 500;
  font-variation-settings: "opsz" 40;
}

.v2-body {
  margin-top: 18px;
  font-size: 15.5px;
  line-height: 1.68;
  color: var(--v2-ink-2);
  max-width: 56ch;
}

.v2-eyebrow {
  font-family: var(--v2-mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--v2-gold);
  font-weight: 500;
}

.v2-shead {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--v2-ink);
  margin-bottom: clamp(28px, 4vw, 48px);
}
.v2-shead .v2-eyebrow { flex-basis: 100%; margin-bottom: 8px; }
.v2-shead__note {
  font-family: var(--v2-mono);
  font-size: 11.5px;
  letter-spacing: .04em;
  color: var(--v2-ink-3);
}

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

.v2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--v2-sans);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .01em;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
  white-space: nowrap;
}
.v2-btn--lg { padding: 15px 28px; font-size: 14.5px; }
.v2-btn--ink { background: var(--v2-ink); color: var(--v2-paper); }
.v2-btn--ink:hover { background: var(--v2-gold); transform: translateY(-1px); }
.v2-btn--line { border-color: var(--v2-rule); color: var(--v2-ink); }
.v2-btn--line:hover { border-color: var(--v2-ink); background: var(--v2-paper-2); transform: translateY(-1px); }

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

.v2-nav {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(246,243,237,.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--v2-rule-2);
}
.v2-nav__in {
  max-width: var(--v2-max);
  margin: 0 auto;
  padding: 14px var(--v2-gut);
  display: flex;
  align-items: center;
  gap: 26px;
}
.v2-nav__brand img { width: 132px; }
.v2-nav__links { display: flex; gap: 26px; margin-left: auto; }
.v2-nav__links a {
  color: var(--v2-ink-2);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  padding-block: 3px;
  border-bottom: 1px solid transparent;
}
.v2-nav__links a:hover { color: var(--v2-ink); border-bottom-color: var(--v2-gold); }
.v2-nav__end { display: flex; align-items: center; gap: 16px; }
.v2-nav__tel {
  font-family: var(--v2-mono);
  font-size: 13px;
  color: var(--v2-ink);
  text-decoration: none;
  font-weight: 500;
}
.v2-nav__tel:hover { color: var(--v2-gold); }

.v2-burger {
  display: none;
  width: 38px; height: 32px;
  background: transparent;
  border: 1px solid var(--v2-rule);
  border-radius: 999px;
  cursor: pointer;
  padding: 0;
  position: relative;
}
.v2-burger span:not(.sr-only) {
  position: absolute;
  left: 11px; right: 11px;
  height: 1.5px;
  background: var(--v2-ink);
  transition: transform .3s ease;
}
.v2-burger span:not(.sr-only):nth-child(1) { top: 12px; }
.v2-burger span:not(.sr-only):nth-child(2) { top: 18px; }
.v2-burger[aria-expanded="true"] span:not(.sr-only):nth-child(1) { transform: translateY(3px) rotate(45deg); }
.v2-burger[aria-expanded="true"] span:not(.sr-only):nth-child(2) { transform: translateY(-3px) rotate(-45deg); }

.v2-drawer {
  display: flex;
  flex-direction: column;
  padding: 4px var(--v2-gut) 22px;
  background: var(--v2-paper);
  border-bottom: 1px solid var(--v2-rule);
}
.v2-drawer[hidden] { display: none; }
.v2-drawer a {
  color: var(--v2-ink);
  text-decoration: none;
  font-family: var(--v2-serif);
  font-size: 20px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--v2-rule-2);
}
.v2-drawer .v2-btn { margin-top: 16px; border-bottom: 0; justify-content: center; font-family: var(--v2-sans); font-size: 13.5px; }

/* ============================================================
   1. HERO  ::  the sentence
   ============================================================ */

.v2-hero {
  position: relative;
  padding-block: clamp(48px, 7vw, 96px) clamp(52px, 7vw, 92px);
  border-bottom: 1px solid var(--v2-ink);
  overflow: hidden;
}

.v2-sentence {
  margin-top: 22px;
  font-family: var(--v2-serif);
  font-size: clamp(2.05rem, 5.4vw, 4.6rem);
  line-height: 1.16;
  letter-spacing: -.03em;
  font-weight: 400;
  font-variation-settings: "opsz" 120;
  max-width: 20ch;
  text-wrap: pretty;
}

.v2-slot { position: relative; display: inline-block; max-width: 100%; }
.v2-select {
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  font-style: italic;
  font-weight: 600;
  color: var(--v2-gold);
  background: transparent;
  border: 0;
  border-bottom: 2px solid var(--v2-gold);
  padding: 0 .85em .04em .06em;
  margin: 0;
  cursor: pointer;
  max-width: 100%;
  border-radius: 0;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.v2-select:hover { background: var(--v2-gold-bg); }
.v2-slot::after {
  content: "";
  position: absolute;
  right: .22em;
  top: 58%;
  width: .32em; height: .32em;
  border-right: 2px solid var(--v2-gold);
  border-bottom: 2px solid var(--v2-gold);
  transform: translateY(-60%) rotate(45deg);
  pointer-events: none;
}
.v2-select option {
  font-family: var(--v2-sans);
  font-size: 15px;
  font-style: normal;
  color: var(--v2-ink);
  background: var(--v2-paper);
}

/* off screen ruler: lets JS size each slot to the chosen word */
.v2-meas {
  position: absolute;
  visibility: hidden;
  white-space: pre;
  pointer-events: none;
  top: -9999px; left: -9999px;
}

.v2-readout {
  margin-top: clamp(28px, 4vw, 46px);
  padding-top: 20px;
  border-top: 1px solid var(--v2-rule);
  max-width: 680px;
}
.v2-readout__main {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.5;
  color: var(--v2-ink);
}
.v2-readout__main b {
  font-family: var(--v2-mono);
  font-weight: 500;
  background: var(--v2-gold-bg);
  padding: 1px 7px;
  border-radius: 3px;
}
.v2-readout__sub {
  margin-top: 8px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--v2-ink-3);
}
.v2-readout__sub b { font-family: var(--v2-mono); font-weight: 500; color: var(--v2-ink); }

.v2-bands {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--v2-rule-2);
  border: 1px solid var(--v2-rule-2);
  max-width: 760px;
}
.v2-band {
  background: var(--v2-paper);
  padding: 14px 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  transition: background .25s ease;
}
.v2-band.is-on { background: var(--v2-gold-bg); }
.v2-band__bar {
  display: block;
  height: 3px;
  width: var(--w);
  background: var(--v2-ink);
  opacity: .3;
  transition: opacity .25s ease;
}
.v2-band.is-on .v2-band__bar { background: var(--v2-gold); opacity: 1; }
.v2-band__t {
  font-family: var(--v2-mono);
  font-size: 10.5px;
  letter-spacing: .02em;
  color: var(--v2-ink-3);
  line-height: 1.35;
}
.v2-band b {
  font-family: var(--v2-mono);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -.02em;
}

.v2-hero__cta { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 10px; }

.v2-hero__plate {
  position: absolute;
  right: var(--v2-gut);
  top: clamp(48px, 7vw, 96px);
  width: min(300px, 26vw);
}
.v2-hero__plate img {
  width: 100%;
  border: 1px solid var(--v2-rule);
  filter: grayscale(.16) contrast(1.02);
}
.v2-hero__plate figcaption {
  margin-top: 9px;
  font-family: var(--v2-mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--v2-ink-3);
}

/* ============================================================
   2. CATALOGUS  ::  filter driven grid
   ============================================================ */

.v2-cat { padding-block: clamp(52px, 7vw, 92px); }

.v2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--v2-rule-2);
  border: 1px solid var(--v2-rule-2);
}

.v2-card {
  background: var(--v2-paper);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  padding: 14px 14px 18px;
  transition: background .22s ease;
}
.v2-card:hover { background: var(--v2-paper-2); }
.v2-card__no {
  font-family: var(--v2-mono);
  font-size: 10px;
  letter-spacing: .14em;
  color: var(--v2-ink-3);
}
.v2-card__fig {
  margin-top: 10px;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--v2-paper-3);
}
.v2-card__fig img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.7,.3,1);
}
.v2-card:hover .v2-card__fig img { transform: scale(1.035); }

.v2-card__name {
  margin-top: 14px;
  font-family: var(--v2-serif);
  font-size: 1.28rem;
  line-height: 1.12;
  letter-spacing: -.02em;
  font-weight: 600;
  font-variation-settings: "opsz" 30;
}
.v2-card__trim {
  margin-top: 6px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--v2-ink-3);
  min-height: 3em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.v2-card__specs {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--v2-rule-2);
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  font-family: var(--v2-mono);
  font-size: 10.5px;
  letter-spacing: .02em;
  color: var(--v2-ink-3);
}
.v2-card__foot {
  margin-top: auto;
  padding-top: 14px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.v2-card__price {
  font-family: var(--v2-mono);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -.03em;
}
.v2-card__lease { font-size: 11px; color: var(--v2-ink-3); }
.v2-card__go {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 500;
  color: var(--v2-gold);
  display: inline-flex;
  gap: 6px;
  align-items: center;
}
.v2-card__go i { font-style: normal; transition: transform .3s cubic-bezier(.2,.7,.3,1); }
.v2-card:hover .v2-card__go i { transform: translateX(4px); }

.v2-card.is-out { display: none; }

.v2-empty {
  margin-top: 26px;
  padding: 26px;
  border: 1px dashed var(--v2-rule);
  font-size: 15px;
  color: var(--v2-ink-2);
  text-align: center;
}
.v2-empty a { color: var(--v2-gold); }
.v2-empty[hidden] { display: none; }

/* ============================================================
   3. MERKEN  ::  horizontal rail
   ============================================================ */

.v2-marks {
  padding-block: clamp(44px, 6vw, 76px);
  border-block: 1px solid var(--v2-rule);
  background: var(--v2-paper-2);
  overflow: hidden;
}
.v2-marks .v2-h3 { margin-bottom: 26px; }
.v2-marks__viewport { position: relative; }
.v2-marks__viewport::before,
.v2-marks__viewport::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: clamp(30px, 8vw, 120px);
  z-index: 2;
  pointer-events: none;
}
.v2-marks__viewport::before { left: 0; background: linear-gradient(90deg, var(--v2-paper-2), transparent); }
.v2-marks__viewport::after  { right: 0; background: linear-gradient(270deg, var(--v2-paper-2), transparent); }

.v2-marks__track {
  display: flex;
  gap: 0;
  width: max-content;
  will-change: transform;
}
.v2-mark {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 0 30px;
  border-left: 1px solid var(--v2-rule);
}
.v2-mark__n {
  font-family: var(--v2-serif);
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -.03em;
  font-variation-settings: "opsz" 60;
}
.v2-mark__t {
  font-family: var(--v2-mono);
  font-size: 11.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--v2-ink-3);
  white-space: nowrap;
}

/* ============================================================
   4. WERKPLAATS  ::  accordion
   ============================================================ */

.v2-work { padding-block: clamp(52px, 7vw, 96px); }
.v2-work__in {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}
.v2-work__intro .v2-h2 { margin-top: 12px; }
.v2-work__fig { margin-top: 28px; }
.v2-work__fig img { width: 100%; border: 1px solid var(--v2-rule); }
.v2-work__fig figcaption {
  margin-top: 9px;
  font-family: var(--v2-mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--v2-ink-3);
}

.v2-acc { border-top: 1px solid var(--v2-ink); }
.v2-acc__item { border-bottom: 1px solid var(--v2-rule); }
.v2-acc__item h3 { margin: 0; }
.v2-acc__btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 4px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
}
.v2-acc__no {
  font-family: var(--v2-mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  color: var(--v2-ink-3);
  flex: none;
}
.v2-acc__t {
  flex: 1;
  font-family: var(--v2-serif);
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  font-weight: 500;
  letter-spacing: -.02em;
  font-variation-settings: "opsz" 40;
  transition: color .2s ease;
}
.v2-acc__btn:hover .v2-acc__t { color: var(--v2-gold); }
.v2-acc__ic {
  flex: none;
  width: 15px; height: 15px;
  position: relative;
}
.v2-acc__ic::before, .v2-acc__ic::after {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 15px; height: 1.5px;
  background: var(--v2-ink);
  transition: transform .32s cubic-bezier(.2,.7,.3,1);
}
.v2-acc__ic::after { transform: rotate(90deg); }
.v2-acc__btn[aria-expanded="true"] .v2-acc__ic::after { transform: rotate(0deg); }

.v2-acc__panel { padding: 0 4px 22px 42px; }
.v2-acc__panel[hidden] { display: none; }
.v2-acc__panel p { font-size: 14.5px; line-height: 1.65; color: var(--v2-ink-2); max-width: 54ch; }
.v2-acc__panel a {
  display: inline-block;
  margin-top: 12px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--v2-gold);
  text-decoration: none;
  border-bottom: 1px solid var(--v2-gold);
  padding-bottom: 2px;
}

/* ============================================================
   5. WERKWIJZE  ::  numbered ladder
   ============================================================ */

.v2-steps {
  padding-block: clamp(52px, 7vw, 96px);
  background: var(--v2-paper-2);
  border-block: 1px solid var(--v2-rule);
}
.v2-ladder { border-top: 1px solid var(--v2-rule); }
.v2-ladder li {
  display: grid;
  grid-template-columns: 92px minmax(0, 22ch) 1fr auto;
  align-items: baseline;
  gap: 12px 30px;
  padding: 26px 4px;
  border-bottom: 1px solid var(--v2-rule);
  transition: background .22s ease;
}
.v2-ladder li:hover { background: rgba(255,255,255,.5); }
.v2-ladder__n {
  font-family: var(--v2-mono);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--v2-gold);
}
.v2-ladder h3 {
  font-family: var(--v2-serif);
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1.14;
  font-variation-settings: "opsz" 40;
}
.v2-ladder p { font-size: 14.5px; line-height: 1.6; color: var(--v2-ink-2); max-width: 46ch; }
.v2-ladder a {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--v2-ink);
  text-decoration: none;
  border-bottom: 1px solid var(--v2-rule);
  padding-bottom: 2px;
  white-space: nowrap;
}
.v2-ladder a:hover { color: var(--v2-gold); border-bottom-color: var(--v2-gold-2); }

/* ============================================================
   6. OVER ONS  ::  diptych
   ============================================================ */

.v2-about { padding-block: clamp(52px, 7vw, 96px); }
.v2-about__in {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
}
.v2-about__fig img { width: 100%; border: 1px solid var(--v2-rule); }
.v2-about__fig figcaption {
  margin-top: 10px;
  font-family: var(--v2-mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--v2-ink-3);
}
.v2-about__copy .v2-h2 { margin-top: 12px; }

.v2-facts {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--v2-rule-2);
  border: 1px solid var(--v2-rule-2);
  margin-bottom: 28px;
}
.v2-facts > div { background: var(--v2-paper); padding: 13px 14px; }
.v2-facts dt {
  font-family: var(--v2-mono);
  font-size: 9.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--v2-ink-3);
}
.v2-facts dd { margin-top: 5px; font-size: 14.5px; font-weight: 500; }

/* ============================================================
   7. REVIEWS  ::  offset cards
   ============================================================ */

.v2-revs {
  padding-block: clamp(52px, 7vw, 96px);
  background: var(--v2-paper-2);
  border-block: 1px solid var(--v2-rule);
}
.v2-revs__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}
.v2-rev {
  background: var(--v2-paper);
  border: 1px solid var(--v2-rule);
  padding: 26px 26px 24px;
}
.v2-rev--a { grid-column: 1 / span 5; }
.v2-rev--b { grid-column: 6 / span 5; margin-top: 46px; }
.v2-rev--score {
  grid-column: 11 / span 2;
  background: var(--v2-ink);
  color: var(--v2-paper);
  border-color: var(--v2-ink);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-top: 92px;
}
.v2-rev__stars { color: var(--v2-gold); font-size: 14px; letter-spacing: .16em; }
.v2-rev p:not(.v2-rev__stars):not(.v2-rev__big):not(.v2-rev__scorelabel):not(.v2-rev__count) {
  margin-top: 14px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--v2-ink-2);
}
.v2-rev footer {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--v2-rule-2);
  font-family: var(--v2-mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--v2-ink-3);
}
.v2-rev__big {
  font-family: var(--v2-serif);
  font-size: clamp(2.6rem, 4.4vw, 3.6rem);
  line-height: .92;
  letter-spacing: -.04em;
  font-weight: 600;
  color: var(--v2-gold-2);
}
.v2-rev__scorelabel { margin-top: 8px; font-size: 13px; color: rgba(246,243,237,.86); }
.v2-rev__count {
  margin-top: 4px;
  font-family: var(--v2-mono);
  font-size: 10.5px;
  letter-spacing: .1em;
  color: rgba(246,243,237,.56);
}
.v2-rev--score a {
  margin-top: 18px;
  font-size: 12.5px;
  color: var(--v2-gold-2);
  text-decoration: none;
  border-bottom: 1px solid rgba(199,154,46,.5);
  padding-bottom: 2px;
  align-self: flex-start;
}

/* ============================================================
   8. CONTACT  ::  data panel
   ============================================================ */

.v2-contact { padding-block: clamp(52px, 7vw, 96px); }
.v2-panel {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 1px;
  background: var(--v2-rule-2);
  border: 1px solid var(--v2-rule-2);
}
.v2-panel__col { background: var(--v2-paper); padding: 24px 24px 26px; }
.v2-panel__col h3 {
  font-family: var(--v2-mono);
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--v2-gold);
  padding-bottom: 14px;
  margin-bottom: 6px;
  border-bottom: 1px solid var(--v2-rule-2);
}
.v2-hours tr { border-bottom: 1px solid var(--v2-rule-2); }
.v2-hours th, .v2-hours td {
  padding: 8px 0;
  font-size: 13px;
  font-weight: 400;
  text-align: left;
  color: var(--v2-ink-3);
}
.v2-hours td { text-align: right; color: var(--v2-ink); font-family: var(--v2-mono); font-size: 12px; }

.v2-clist li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--v2-rule-2);
}
.v2-clist span {
  font-family: var(--v2-mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--v2-ink-3);
}
.v2-clist a, .v2-clist b {
  font-size: 15px;
  font-weight: 500;
  color: var(--v2-ink);
  text-decoration: none;
  text-align: right;
}
.v2-clist a:hover { color: var(--v2-gold); }
.v2-panel__cta { margin-top: 22px; }

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

.v2-foot {
  border-top: 1px solid var(--v2-ink);
  padding-block: clamp(44px, 5vw, 68px) 108px;
}
.v2-foot__in {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 34px;
}
.v2-foot__brand img { width: 168px; }
.v2-foot__brand p {
  margin-top: 16px;
  font-family: var(--v2-mono);
  font-size: 11.5px;
  line-height: 1.7;
  color: var(--v2-ink-3);
}
.v2-foot__col { display: flex; flex-direction: column; gap: 9px; }
.v2-foot__col h2 {
  font-family: var(--v2-mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--v2-gold);
  font-weight: 500;
  margin-bottom: 4px;
}
.v2-foot__col a {
  font-size: 13.5px;
  color: var(--v2-ink-2);
  text-decoration: none;
}
.v2-foot__col a:hover { color: var(--v2-gold); }
.v2-foot__legal {
  grid-column: 1 / -1;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--v2-rule-2);
  font-family: var(--v2-mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--v2-ink-3);
}

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

@media (max-width: 1080px) {
  .v2-hero__plate { display: none; }
  .v2-sentence { max-width: none; }
  .v2-grid { grid-template-columns: repeat(2, 1fr); }
  .v2-work__in { grid-template-columns: 1fr; }
  .v2-revs__grid { grid-template-columns: 1fr 1fr; }
  .v2-rev--a { grid-column: 1 / span 1; }
  .v2-rev--b { grid-column: 2 / span 1; margin-top: 0; }
  .v2-rev--score { grid-column: 1 / -1; margin-top: 0; flex-direction: row; align-items: baseline; flex-wrap: wrap; gap: 14px 22px; }
  .v2-rev--score .v2-rev__scorelabel, .v2-rev--score .v2-rev__count { margin-top: 0; }
  .v2-rev--score a { margin-top: 0; margin-left: auto; }
  .v2-panel { grid-template-columns: 1fr 1fr; }
  .v2-panel__col--contact { grid-column: 1 / -1; }
  .v2-foot__in { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .v2-nav__links, .v2-nav__tel { display: none; }
  .v2-burger { display: block; }
  .v2-nav__end { margin-left: auto; }
  .v2-nav__end .v2-btn--ink { display: none; }

  .v2-bands { grid-template-columns: 1fr 1fr; }
  .v2-about__in { grid-template-columns: 1fr; }
  .v2-about__fig { max-width: 520px; }
  .v2-ladder li { grid-template-columns: 60px 1fr; gap: 8px 18px; }
  .v2-ladder h3 { grid-column: 2; }
  .v2-ladder p { grid-column: 2; }
  .v2-ladder a { grid-column: 2; justify-self: start; }
}

@media (max-width: 620px) {
  .v2-grid { grid-template-columns: 1fr; }
  .v2-revs__grid { grid-template-columns: 1fr; }
  .v2-rev--b { grid-column: 1; }
  .v2-panel { grid-template-columns: 1fr; }
  .v2-facts { grid-template-columns: 1fr; }
  .v2-foot__in { grid-template-columns: 1fr; gap: 26px; }
  .v2-sentence { font-size: clamp(1.75rem, 8.4vw, 2.4rem); line-height: 1.22; }
  .v2-shead { display: block; }
  .v2-shead__note { margin-top: 8px; }
  .v2-rev--score { flex-direction: column; align-items: flex-start; }
  .v2-rev--score a { margin-left: 0; margin-top: 14px; }
}

@media (max-width: 380px) {
  .v2-bands { grid-template-columns: 1fr; }
}
