/* ============================================================
   Soulos Unique Cars — Design system
   Premium navy + gold. Greek-first. WordPress-ready vanilla CSS.
   ============================================================ */

:root {
  /* Palette — μαύρο/σκούρο γκρι (αντικατέστησε navy 2026-05-23) */
  --ink:          #000000;
  --bg:           #000000;
  --surface:      #141414;
  --surface-2:    #1C1C1C;
  --surface-3:    #262626;
  --gold:         #C9A66B;
  --gold-bright:  #D9B57A;
  --gold-deep:    #A6843F;
  --ivory:        #F5F1EA;
  --ivory-muted:  rgba(245, 241, 234, 0.66);
  --ivory-faint:  rgba(245, 241, 234, 0.38);
  --hair:         rgba(201, 166, 107, 0.22);
  --hair-soft:    rgba(201, 166, 107, 0.12);
  --hair-ivory:   rgba(245, 241, 234, 0.08);

  /* Type */
  --font-sans:    "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-serif:   "Playfair Display", "Cormorant Garamond", Georgia, serif;

  /* Sizing */
  --container:    1280px;
  --gutter:       clamp(20px, 4vw, 48px);
  --radius-sm:    6px;
  --radius:       10px;
  --radius-lg:    16px;

  /* Motion */
  --ease:         cubic-bezier(.2, .7, .2, 1);
}

/* Reset ------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ivory);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
input, select, textarea { font: inherit; color: inherit; }

/* Type ------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
  text-wrap: balance;
  margin: 0;
}
h1 { font-size: clamp(40px, 6.2vw, 76px); }
h2 { font-size: clamp(28px, 3.6vw, 44px); }
h3 { font-size: clamp(20px, 2vw, 24px); }
p  { margin: 0; text-wrap: pretty; }

.serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--gold-bright);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: currentColor;
  opacity: 0.7;
}

/* Layout primitives ---------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(64px, 9vw, 128px);
  position: relative;
}
.section--tight { padding-block: clamp(48px, 6vw, 80px); }

.section + .section { border-top: 1px solid var(--hair-soft); }

.lede {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--ivory-muted);
  max-width: 56ch;
}

/* Buttons ---------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease),
              color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

.btn--gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn--gold:hover { background: var(--gold-bright); border-color: var(--gold-bright); }

.btn--ghost {
  background: transparent;
  color: var(--ivory);
  border-color: var(--hair);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-bright); }

.btn--link {
  padding: 0;
  border-radius: 0;
  background: none;
  color: var(--gold-bright);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.btn--link .arrow { transition: transform .25s var(--ease); }
.btn--link:hover .arrow { transform: translateX(4px); }

/* Header ----------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(to bottom, rgba(0, 0, 0,0.92), rgba(0, 0, 0,0.78));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hair-soft);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 18px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand__mark {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ink);
  border: 1px solid var(--hair);
  display: grid; place-items: center;
  overflow: hidden;
}
.brand__mark img { width: 100%; height: 100%; object-fit: cover; }
.brand__text {
  display: flex; flex-direction: column;
  line-height: 1.05;
}
.brand__name {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.brand__tag {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13px;
  color: var(--gold);
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ivory-muted);
  transition: color .2s var(--ease);
  position: relative;
}
.nav a:hover { color: var(--ivory); }
.nav a.is-active { color: var(--ivory); }
.nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 1px; background: var(--gold);
}

.header__phone {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  border: 1px solid var(--hair);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.header__phone:hover { border-color: var(--gold); color: var(--gold-bright); }
.header__phone svg { width: 14px; height: 14px; color: var(--gold); }

@media (max-width: 900px) {
  .nav { display: none; }
}

/* Hero ------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(72px, 12vw, 140px) clamp(120px, 14vw, 160px);
  background: var(--ink);
  isolation: isolate;
}
.hero::before {
  /* Radial gold glow */
  content: "";
  position: absolute;
  inset: -10% -10% auto auto;
  width: 70vw; height: 70vw;
  background: radial-gradient(closest-side,
    rgba(201, 166, 107, 0.18),
    rgba(201, 166, 107, 0.06) 40%,
    transparent 70%);
  z-index: -1;
  filter: blur(20px);
}
.hero::after {
  /* Hairline grid */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--hair-ivory) 1px, transparent 1px),
    linear-gradient(to bottom, var(--hair-ivory) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  opacity: 0.5;
  z-index: -1;
}

.hero__inner {
  display: grid;
  gap: 56px;
  align-items: end;
}

.hero__copy {
  max-width: 880px;
}
.hero h1 {
  margin-top: 24px;
  margin-bottom: 24px;
}
.hero h1 .serif { display: block; }
.hero__lede { max-width: 52ch; }

.hero__meta {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--hair-soft);
}
.hero__meta-item {
  display: flex; flex-direction: column;
  gap: 4px;
}
.hero__meta-item strong {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 28px;
  color: var(--gold-bright);
}
.hero__meta-item span {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory-faint);
}

/* Search widget ---------------------------------------------- */
.search {
  position: relative;
  margin-top: -64px;
  z-index: 5;
}
.search__card {
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(201, 166, 107, 0.05) inset;
}
.search__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
.search__title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ivory);
}
.search__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: -0.01em;
  font-size: 16px;
  color: var(--gold);
}
.search__count {
  font-size: 12px;
  color: var(--ivory-muted);
  letter-spacing: 0.05em;
}
.search__count strong { color: var(--gold-bright); font-weight: 600; }

.search__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 12px;
  align-items: stretch;
}

.field {
  display: flex; flex-direction: column;
  gap: 6px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid var(--hair-soft);
  border-radius: var(--radius);
  padding: 12px 16px;
  transition: border-color .2s var(--ease);
}
.field:focus-within { border-color: var(--gold); }
.field label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory-faint);
}
.field select,
.field input {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--ivory);
  outline: none;
}
.field select { padding-right: 22px; cursor: pointer; }
.field option { color: #111; }
.field--select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gold) 50%),
    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position:
    right 16px center,
    right 11px center;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
.search__submit {
  align-self: stretch;
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
  padding-inline: 28px;
  background: var(--gold);
  color: var(--ink);
  border: 0;
  border-radius: var(--radius);
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 14px;
  transition: background .2s var(--ease);
}
.search__submit:hover { background: var(--gold-bright); }
.search__submit svg { width: 14px; height: 14px; }

@media (max-width: 820px) {
  .search { margin-top: -32px; }
  .search__grid { grid-template-columns: 1fr 1fr; }
  .search__submit { grid-column: 1 / -1; padding-block: 14px; }
}
@media (max-width: 520px) {
  .search__grid { grid-template-columns: 1fr; }
}

/* Section heading ------------------------------------------- */
.s-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--hair-soft);
}
.s-head__title { max-width: 22ch; }
.s-head__title h2 .serif { display: inline; }
.s-head__aside {
  text-align: right;
  display: flex; flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.s-head__aside p { color: var(--ivory-muted); max-width: 32ch; }
@media (max-width: 720px) {
  .s-head { grid-template-columns: 1fr; }
  .s-head__aside { text-align: left; align-items: flex-start; }
}

/* Vehicle grid + card --------------------------------------- */
.vehicles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 1024px) { .vehicles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .vehicles { grid-template-columns: 1fr; } }

.car {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--hair-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .35s var(--ease), transform .35s var(--ease);
  display: flex; flex-direction: column;
}
.car:hover { border-color: var(--gold); transform: translateY(-3px); }

.car__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--ink);
}
.car__media img,
.car__media .placeholder {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.car:hover .car__media img { transform: scale(1.04); }

/* Soft vignette so amateur photos read consistently */
.car__media::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 55%, rgba(0, 0, 0,0.55) 100%),
    linear-gradient(to top, rgba(0, 0, 0,0.85) 0%, transparent 35%);
  z-index: 1;
}
.car__media::after {
  /* inner hairline */
  content: "";
  position: absolute; inset: 12px;
  border: 1px solid rgba(245, 241, 234, 0.08);
  border-radius: 6px;
  pointer-events: none;
  z-index: 2;
}

.car__badge {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 3;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 10px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid var(--hair);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold-bright);
}
.car__badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,166,107,0.18);
}

.car__price-stamp {
  position: absolute;
  bottom: 18px; left: 18px;
  z-index: 3;
}
.car__price-stamp .amount {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.01em;
  color: var(--ivory);
  line-height: 1;
}
.car__price-stamp .negot {
  display: inline-block;
  margin-top: 6px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13px;
  color: var(--gold-bright);
}

.car__body {
  padding: 22px 22px 24px;
  display: flex; flex-direction: column;
  flex: 1;
  gap: 14px;
}
.car__head {
  display: flex; align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.car__brand {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.car__model {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-top: 2px;
}
.car__year {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ivory-muted);
}
.car__specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 14px 0 4px;
  border-top: 1px solid var(--hair-soft);
}
.spec {
  display: flex; flex-direction: column;
  gap: 2px;
}
.spec .k {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ivory-faint);
}
.spec .v {
  font-size: 14px;
  font-weight: 600;
  color: var(--ivory);
}

.car__cta {
  margin-top: auto;
  padding-top: 16px;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--hair-soft);
}
.car__cta .more {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-bright);
  display: inline-flex; align-items: center; gap: 8px;
}
.car__cta .more .arrow { transition: transform .25s var(--ease); }
.car:hover .car__cta .more .arrow { transform: translateX(4px); }
.car__cta .fuel {
  font-size: 12px;
  color: var(--ivory-muted);
}

/* Image placeholder for cars without photos */
.placeholder {
  display: grid; place-items: center;
  background:
    repeating-linear-gradient(135deg,
      rgba(201,166,107,0.06) 0 14px,
      transparent 14px 28px),
    linear-gradient(180deg, var(--surface-2), var(--ink));
}
.placeholder span {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 12px;
  color: var(--ivory-faint);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Brands strip ---------------------------------------------- */
.brands {
  background: var(--ink);
  border-top: 1px solid var(--hair-soft);
  border-bottom: 1px solid var(--hair-soft);
}
.brands__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-block: 32px;
  overflow-x: auto;
  scrollbar-width: none;
}
.brands__inner::-webkit-scrollbar { display: none; }
.brands__label {
  flex-shrink: 0;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory-faint);
  padding-right: 24px;
  border-right: 1px solid var(--hair-soft);
}
.brands__list {
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 52px);
  flex-wrap: nowrap;
}
.brands__list .b {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--ivory-muted);
  white-space: nowrap;
  transition: color .25s var(--ease);
  letter-spacing: 0.01em;
}
.brands__list .b:hover { color: var(--gold-bright); }

/* Why us ---------------------------------------------------- */
.why {
  background:
    radial-gradient(ellipse at top right, rgba(201,166,107,0.08), transparent 50%),
    var(--bg);
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hair-soft);
  border: 1px solid var(--hair-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 900px) { .why__grid { grid-template-columns: 1fr; } }

.usp {
  padding: 44px 36px;
  background: var(--surface);
  display: flex; flex-direction: column;
  gap: 16px;
  transition: background .35s var(--ease);
}
.usp:hover { background: var(--surface-2); }

.usp__icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-bright);
}
.usp__icon svg { width: 22px; height: 22px; }

.usp__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
}
.usp h3 { font-size: 22px; }
.usp p {
  color: var(--ivory-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* Editorial split (curation note) --------------------------- */
.split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }

.split__media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--hair-soft);
}
.split__media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.split__media::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0,0.5), transparent 50%);
}
.split__media::after {
  content: "";
  position: absolute; inset: 14px;
  border: 1px solid rgba(245,241,234,0.1);
  border-radius: 8px;
}
.split__caption {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  z-index: 2;
  display: flex; justify-content: space-between; align-items: end;
  gap: 16px;
}
.split__caption .lhs {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  color: var(--ivory);
  line-height: 1.2;
}
.split__caption .rhs {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  text-align: right;
}

.split__copy h2 .serif { display: block; }
.split__copy p {
  color: var(--ivory-muted);
  font-size: 16px;
  line-height: 1.7;
  margin-top: 24px;
  max-width: 48ch;
}
.split__points {
  list-style: none;
  margin: 32px 0 36px;
  padding: 0;
  display: grid;
  gap: 14px;
}
.split__points li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 16px;
  align-items: baseline;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--hair-soft);
  font-size: 15px;
}
.split__points li:last-child { border-bottom: 0; }
.split__points .n {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold);
}

/* Blog ------------------------------------------------------ */
.blog {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .blog { grid-template-columns: 1fr; } }

.post {
  display: flex; flex-direction: column;
  gap: 16px;
  padding: 0;
  background: transparent;
  border-bottom: 1px solid var(--hair-soft);
  padding-bottom: 28px;
  transition: border-color .25s var(--ease);
}
.post:hover { border-color: var(--gold); }
.post__media {
  aspect-ratio: 5 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--surface);
}
.post__media .placeholder { position: absolute; inset: 0; }
.post__meta {
  display: flex; align-items: center; gap: 12px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.post__meta .sep { width: 16px; height: 1px; background: var(--hair); }
.post__meta .read { color: var(--ivory-faint); }
.post h3 {
  font-size: 20px;
  line-height: 1.25;
}
.post p {
  color: var(--ivory-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* CTA ------------------------------------------------------- */
.cta {
  position: relative;
  background:
    linear-gradient(180deg, rgba(0, 0, 0,0.4), rgba(0, 0, 0,0.8)),
    radial-gradient(ellipse at 80% 20%, rgba(201,166,107,0.22), transparent 50%),
    var(--ink);
  border-top: 1px solid var(--hair);
  overflow: hidden;
}
.cta__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
@media (max-width: 900px) { .cta__grid { grid-template-columns: 1fr; } }

.cta__copy h2 { font-size: clamp(32px, 4.5vw, 56px); }
.cta__copy h2 .serif { display: block; }
.cta__copy p {
  margin-top: 24px;
  color: var(--ivory-muted);
  font-size: 16px;
  max-width: 44ch;
}
.cta__actions {
  margin-top: 32px;
  display: flex; gap: 14px; flex-wrap: wrap;
}

.cta__card {
  background: rgba(0, 0, 0,0.55);
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex; flex-direction: column;
  gap: 22px;
}
.cta__card .row {
  display: flex; align-items: center; gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--hair-soft);
}
.cta__card .row:last-child { border-bottom: 0; padding-bottom: 0; }
.cta__card .ic {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid var(--hair);
  border-radius: 50%;
  color: var(--gold);
  flex-shrink: 0;
}
.cta__card .ic svg { width: 16px; height: 16px; }
.cta__card .lbl {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory-faint);
}
.cta__card .val {
  font-size: 17px;
  font-weight: 600;
  color: var(--ivory);
  letter-spacing: 0.01em;
}

/* Footer ---------------------------------------------------- */
.site-footer {
  background: var(--ink);
  border-top: 1px solid var(--hair);
  padding-block: 64px 32px;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--hair-soft);
}
@media (max-width: 900px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 520px) {
  .site-footer__grid { grid-template-columns: 1fr; }
}
.site-footer h4 {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 600;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.site-footer a { color: var(--ivory-muted); font-size: 14px; }
.site-footer a:hover { color: var(--ivory); }
.site-footer__lede {
  color: var(--ivory-muted);
  font-size: 14px;
  margin-top: 20px;
  max-width: 38ch;
}
.site-footer__bottom {
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  font-size: 12px;
  color: var(--ivory-faint);
  letter-spacing: 0.06em;
}
.site-footer__bottom .serif { font-size: 14px; }

/* ============================================================
   v2 modules — tabbed search, body strip, finance, listing
   ============================================================ */

/* Search tabs ---------------------------------------------- */
.search__tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  padding: 4px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid var(--hair-soft);
  border-radius: 999px;
  width: fit-content;
}
.search__tab {
  border: 0;
  background: transparent;
  color: var(--ivory-muted);
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.search__tab:hover { color: var(--ivory); }
.search__tab[aria-selected="true"] {
  background: var(--gold);
  color: var(--ink);
}
.search__panel { display: none; }
.search__panel.is-active { display: block; }

.search__split {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 12px;
}
@media (max-width: 820px) { .search__split { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .search__split { grid-template-columns: 1fr; } }

/* Budget chip selector inside search */
.budget-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.budget-chips button {
  border: 1px solid var(--hair-soft);
  background: rgba(0, 0, 0, 0.55);
  color: var(--ivory-muted);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  transition: all .2s var(--ease);
}
.budget-chips button:hover { color: var(--ivory); border-color: var(--hair); }
.budget-chips button[aria-pressed="true"] {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

/* Range slider (visual) ---------------------------------- */
.range {
  display: grid; gap: 8px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid var(--hair-soft);
  border-radius: var(--radius);
  padding: 14px 16px;
}
.range__head {
  display: flex; justify-content: space-between; align-items: baseline;
}
.range__label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory-faint);
}
.range__value {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15px;
  color: var(--gold-bright);
}
.range__track {
  position: relative;
  height: 4px;
  background: var(--hair-soft);
  border-radius: 999px;
  margin: 14px 0 8px;
}
.range__fill {
  position: absolute;
  top: 0; bottom: 0;
  background: var(--gold);
  border-radius: 999px;
}
.range__handle {
  position: absolute;
  top: 50%; transform: translate(-50%, -50%);
  width: 16px; height: 16px;
  background: var(--ivory);
  border: 3px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
  cursor: grab;
}
.range__handle:active { cursor: grabbing; }
.range__handle:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 3px; }
.range__bounds {
  display: flex; justify-content: space-between;
  font-size: 11px;
  color: var(--ivory-faint);
  letter-spacing: 0.04em;
}

/* Body-type strip ------------------------------------------ */
.bodies {
  border-top: 1px solid var(--hair-soft);
  border-bottom: 1px solid var(--hair-soft);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201,166,107,0.06), transparent 50%),
    var(--bg);
}
.bodies__head {
  display: flex; align-items: end; justify-content: space-between;
  gap: 24px; padding-block: 48px 24px;
  border-bottom: 1px solid var(--hair-soft);
}
.bodies__head h2 { font-size: clamp(24px, 2.6vw, 32px); max-width: 18ch; }
.bodies__head p { color: var(--ivory-muted); max-width: 36ch; text-align: right; }
@media (max-width: 720px) {
  .bodies__head { flex-direction: column; align-items: stretch; }
  .bodies__head p { text-align: left; }
}

.bodies__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}
@media (max-width: 1024px) { .bodies__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px)  { .bodies__grid { grid-template-columns: repeat(2, 1fr); } }

.body-tile {
  display: flex; flex-direction: column;
  align-items: center; gap: 12px;
  padding: 36px 20px;
  border-right: 1px solid var(--hair-soft);
  transition: background .25s var(--ease);
  text-align: center;
}
.body-tile:last-child { border-right: 0; }
.body-tile:hover { background: rgba(201,166,107,0.04); }
@media (max-width: 1024px) {
  .body-tile:nth-child(3n) { border-right: 0; }
  .body-tile { border-bottom: 1px solid var(--hair-soft); }
  .body-tile:nth-last-child(-n+3) { border-bottom: 0; }
}
@media (max-width: 520px) {
  .body-tile:nth-child(3n) { border-right: 1px solid var(--hair-soft); }
  .body-tile:nth-child(2n) { border-right: 0; }
}

.body-tile__icon {
  width: 72px; height: 44px;
  display: grid; place-items: center;
  color: var(--gold-bright);
  transition: transform .35s var(--ease), color .35s var(--ease);
}
.body-tile:hover .body-tile__icon { transform: translateY(-2px); color: var(--gold); }
.body-tile__icon svg { width: 100%; height: 100%; stroke-width: 1.4; fill: none; stroke: currentColor; }
.body-tile__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ivory);
  letter-spacing: 0.02em;
}
.body-tile__count {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13px;
  color: var(--gold);
}
.body-tile.is-disabled { opacity: 0.4; }
.body-tile.is-disabled .body-tile__count { color: var(--ivory-faint); }

/* Finance calculator -------------------------------------- */
.finance {
  background:
    linear-gradient(135deg, var(--ink) 0%, var(--surface) 100%);
}
.finance__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
@media (max-width: 900px) { .finance__grid { grid-template-columns: 1fr; } }

.finance__copy h2 .serif { display: block; }
.finance__copy p {
  color: var(--ivory-muted);
  margin-top: 20px;
  max-width: 44ch;
}
.finance__copy ul {
  list-style: none; padding: 0; margin: 28px 0 0;
  display: grid; gap: 12px;
}
.finance__copy li {
  display: flex; align-items: baseline; gap: 12px;
  font-size: 14px;
  color: var(--ivory-muted);
}
.finance__copy li::before {
  content: "·";
  color: var(--gold);
  font-size: 24px;
  line-height: 0;
}

.calc {
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: grid; gap: 22px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
}
.calc__title {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--hair-soft);
}
.calc__title h3 {
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.calc__title em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold);
  font-size: 14px;
}
.calc__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 520px) { .calc__row { grid-template-columns: 1fr; } }

.calc .field { background: rgba(0, 0, 0, 0.6); }
.calc__output {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 22px 24px;
  background: linear-gradient(135deg, rgba(201,166,107,0.14), rgba(201,166,107,0.04));
  border: 1px solid var(--gold);
  border-radius: var(--radius);
}
.calc__output .lbl {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.calc__output .val {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--ivory);
  letter-spacing: -0.02em;
  line-height: 1;
}
.calc__output .per {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ivory-muted);
}
.calc__disclaimer {
  font-size: 11px;
  color: var(--ivory-faint);
  line-height: 1.6;
  text-align: center;
  letter-spacing: 0.02em;
}

/* ============================================================
   Listing page
   ============================================================ */

.page-head {
  background: var(--ink);
  padding-block: clamp(72px, 9vw, 112px) clamp(40px, 5vw, 64px);
  border-bottom: 1px solid var(--hair-soft);
  position: relative;
  overflow: hidden;
}
.page-head::before {
  content: "";
  position: absolute;
  inset: -10% auto auto -10%;
  width: 50vw; height: 50vw;
  background: radial-gradient(closest-side, rgba(201,166,107,0.14), transparent 70%);
  z-index: 0;
}
.page-head__inner { position: relative; z-index: 1; }

.breadcrumb {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory-faint);
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb .sep { color: var(--hair); }

.page-head h1 {
  font-size: clamp(36px, 5.2vw, 60px);
}
.page-head h1 .serif { font-size: 0.9em; }
.page-head__lede {
  margin-top: 16px;
  max-width: 56ch;
  color: var(--ivory-muted);
}

/* Toolbar */
.toolbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding-block: 22px;
  border-bottom: 1px solid var(--hair-soft);
  background: rgba(0, 0, 0, 0.4);
  flex-wrap: wrap;
}
.toolbar__lhs {
  display: flex; align-items: center; gap: 16px;
}
.toolbar__count {
  font-size: 14px;
  color: var(--ivory-muted);
}
.toolbar__count strong {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--gold-bright);
  font-size: 22px;
  margin-right: 6px;
}
.toolbar__rhs {
  display: flex; align-items: center; gap: 12px;
}
.toolbar .field {
  padding: 8px 14px;
  background: rgba(0, 0, 0,0.6);
}
.toolbar .field--inline {
  display: flex; flex-direction: row; align-items: center; gap: 10px;
}
.toolbar .field--inline label { font-size: 10px; }

.view-toggle {
  display: flex;
  background: rgba(0, 0, 0,0.6);
  border: 1px solid var(--hair-soft);
  border-radius: var(--radius);
  padding: 3px;
}
.view-toggle button {
  background: transparent;
  border: 0;
  padding: 7px 12px;
  color: var(--ivory-muted);
  border-radius: 6px;
  display: grid; place-items: center;
}
.view-toggle button[aria-pressed="true"] {
  background: var(--gold);
  color: var(--ink);
}
.view-toggle svg { width: 16px; height: 16px; }

.mobile-filter-btn {
  display: none;
  align-items: center; gap: 8px;
  background: var(--gold);
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 999px;
  border: 0;
  font-weight: 600;
  font-size: 13px;
}
.mobile-filter-btn svg { width: 14px; height: 14px; }

/* Active filter chips */
.active-filters {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  padding-block: 20px;
  border-bottom: 1px solid var(--hair-soft);
}
.active-filters__label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory-faint);
  margin-right: 4px;
}
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: rgba(201, 166, 107, 0.1);
  border: 1px solid var(--hair);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ivory);
}
.chip__x {
  display: grid; place-items: center;
  width: 16px; height: 16px;
  background: transparent;
  border: 0;
  color: var(--gold-bright);
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
}
.chip__x:hover { color: var(--ivory); }
.active-filters .clear-all {
  margin-left: auto;
  background: none; border: 0;
  color: var(--gold-bright);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 6px 10px;
}
.active-filters .clear-all:hover { color: var(--ivory); }

/* Listing layout */
.listing-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  padding-block: 40px 80px;
  align-items: start;
}
@media (max-width: 1024px) {
  .listing-layout { grid-template-columns: 1fr; }
  .filters { display: none; }
  .filters.is-open {
    display: block;
    position: fixed; inset: 0;
    z-index: 100;
    background: var(--ink);
    padding: 24px;
    overflow-y: auto;
  }
  .mobile-filter-btn { display: inline-flex; }
}

/* Filters sidebar */
.filters {
  position: sticky;
  top: 92px;
  max-height: calc(100vh - 112px);
  overflow-y: auto;
  padding-right: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--hair) transparent;
}
.filters::-webkit-scrollbar { width: 4px; }
.filters::-webkit-scrollbar-thumb { background: var(--hair); border-radius: 2px; }

.filters__head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--hair-soft);
  margin-bottom: 8px;
}
.filters__head h2 {
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}
.filters__close {
  background: none; border: 0;
  color: var(--ivory-muted);
  font-size: 20px;
  display: none;
}

.filter-group {
  padding-block: 20px;
  border-bottom: 1px solid var(--hair-soft);
}
.filter-group:last-child { border-bottom: 0; }
.filter-group > summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer;
  padding: 4px 0;
}
.filter-group > summary::-webkit-details-marker { display: none; }
.filter-group__title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ivory);
}
.filter-group__caret {
  width: 14px; height: 14px;
  color: var(--gold);
  transition: transform .2s var(--ease);
}
.filter-group[open] .filter-group__caret { transform: rotate(180deg); }
.filter-group__body {
  padding-top: 16px;
  display: grid; gap: 10px;
}

/* Checkbox row */
.check {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px;
  cursor: pointer;
  color: var(--ivory-muted);
  padding: 4px 0;
  transition: color .15s var(--ease);
}
.check:hover { color: var(--ivory); }
.check input {
  appearance: none;
  width: 16px; height: 16px;
  flex-shrink: 0;
  border: 1px solid var(--hair);
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.6);
  display: grid; place-items: center;
  position: relative;
  cursor: pointer;
  transition: all .15s var(--ease);
}
.check input:checked {
  background: var(--gold);
  border-color: var(--gold);
}
.check input:checked::after {
  content: "";
  width: 8px; height: 4px;
  border-left: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: translateY(-1px) rotate(-45deg);
}
.check__count {
  margin-left: auto;
  font-size: 12px;
  color: var(--ivory-faint);
  font-variant-numeric: tabular-nums;
}
.check input:checked ~ .check__lbl { color: var(--ivory); }

/* Pagination ----------------------------------------------- */
.pagination {
  display: flex; align-items: center; justify-content: center;
  gap: 6px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--hair-soft);
}
.pagination a, .pagination span {
  min-width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid var(--hair-soft);
  border-radius: 999px;
  font-size: 14px;
  color: var(--ivory-muted);
  font-weight: 500;
  transition: all .15s var(--ease);
  padding: 0 14px;
}
.pagination a:hover { border-color: var(--gold); color: var(--ivory); }
.pagination .is-active {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  font-weight: 700;
}
.pagination .ellipsis { border: 0; }
.pagination .nav-arrow { gap: 8px; }

/* ============================================================
   Single vehicle + Contact page modules
   ============================================================ */

/* Gallery + info rail ------------------------------------- */
.vehicle-top {
  padding-block: 32px 64px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
@media (max-width: 1024px) { .vehicle-top { grid-template-columns: 1fr; } }

.gallery__main {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--surface);
  border: 1px solid var(--hair-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.gallery__main img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.gallery__main::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 60%, rgba(0, 0, 0,0.35) 100%);
  z-index: 1;
  pointer-events: none;
}
.gallery__main::after {
  content: "";
  position: absolute; inset: 14px;
  border: 1px solid rgba(245, 241, 234, 0.08);
  border-radius: 8px;
  z-index: 2;
  pointer-events: none;
}
.gallery__nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--hair);
  border-radius: 50%;
  color: var(--ivory);
  cursor: pointer;
  z-index: 3;
  transition: background .2s var(--ease);
}
.gallery__nav:hover { background: var(--gold); color: var(--ink); }
.gallery__nav--prev { left: 18px; }
.gallery__nav--next { right: 18px; }
.gallery__nav svg { width: 18px; height: 18px; }

.gallery__counter {
  position: absolute;
  bottom: 20px; right: 20px;
  z-index: 3;
  padding: 6px 14px;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid var(--hair);
  border-radius: 999px;
  font-size: 12px;
  color: var(--ivory);
  font-variant-numeric: tabular-nums;
}
.gallery__counter strong {
  color: var(--gold-bright);
  font-weight: 700;
}

.gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-top: 12px;
}
.gallery__thumb {
  aspect-ratio: 1;
  background: var(--surface);
  border: 1px solid var(--hair-soft);
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: border-color .2s var(--ease);
}
.gallery__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.gallery__thumb .placeholder { position: absolute; inset: 0; }
.gallery__thumb .placeholder span { font-size: 9px; }
.gallery__thumb:hover { border-color: var(--gold); }
.gallery__thumb.is-active { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold) inset; }

/* Info rail ------------------------------------------------- */
.info-rail {
  position: sticky;
  top: 96px;
  display: flex; flex-direction: column;
  gap: 20px;
}
@media (max-width: 1024px) { .info-rail { position: static; } }

.info-rail__header {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--hair-soft);
}
.info-rail__brand {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.info-rail__title {
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 700;
  margin: 8px 0 12px;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.info-rail__sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ivory-muted);
}

.price-block {
  background: linear-gradient(135deg, rgba(201, 166, 107, 0.14), rgba(201, 166, 107, 0.03));
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.price-block__row {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 12px;
}
.price-block__label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.price-block__amount {
  font-family: var(--font-sans);
  font-size: clamp(40px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ivory);
  line-height: 1;
  margin-top: 8px;
}
.price-block__negot {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 12px;
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--hair);
  border-radius: 999px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13px;
  color: var(--gold-bright);
}
.price-block__negot .dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(201, 166, 107, 0.2);
}
.price-block__monthly {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(201, 166, 107, 0.2);
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 13px;
  color: var(--ivory-muted);
}
.price-block__monthly strong {
  color: var(--ivory);
  font-size: 16px;
  font-weight: 600;
}

.cta-stack {
  display: grid; gap: 10px;
}
.cta-stack .btn {
  width: 100%;
  padding-block: 16px;
  font-size: 14px;
}

.quick-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--hair-soft);
  border: 1px solid var(--hair-soft);
  border-radius: var(--radius);
  overflow: hidden;
}
.quick-spec {
  background: var(--surface);
  padding: 16px 18px;
  display: flex; flex-direction: column;
  gap: 4px;
}
.quick-spec__k {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory-faint);
}
.quick-spec__v {
  font-size: 16px;
  font-weight: 600;
  color: var(--ivory);
}
.quick-spec__v.is-accent {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold-bright);
  font-weight: 400;
  font-size: 18px;
}

.share {
  display: flex; align-items: center; gap: 12px;
  font-size: 12px;
  color: var(--ivory-muted);
  letter-spacing: 0.06em;
}
.share__btns {
  display: flex; gap: 8px;
}
.share__btn {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border: 1px solid var(--hair);
  border-radius: 50%;
  background: transparent;
  color: var(--ivory-muted);
  cursor: pointer;
  transition: all .2s var(--ease);
}
.share__btn:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}
.share__btn svg { width: 14px; height: 14px; }

/* Tabbed content ------------------------------------------- */
.v-tabs {
  border-top: 1px solid var(--hair-soft);
  border-bottom: 1px solid var(--hair-soft);
  margin-block: 32px;
}
.v-tabs__nav {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.v-tabs__nav::-webkit-scrollbar { display: none; }
.v-tabs__btn {
  background: none;
  border: 0;
  padding: 22px 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory-muted);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color .2s var(--ease), border-color .2s var(--ease);
  cursor: pointer;
}
.v-tabs__btn:hover { color: var(--ivory); }
.v-tabs__btn[aria-selected="true"] {
  color: var(--gold-bright);
  border-color: var(--gold);
}
.v-tabs__panel {
  display: none;
  padding-block: 40px 16px;
}
.v-tabs__panel.is-active { display: block; }

/* Specs table */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  background: var(--hair-soft);
  border: 1px solid var(--hair-soft);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (max-width: 720px) { .specs-grid { grid-template-columns: 1fr; } }
.spec-row {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px 24px;
  background: var(--surface);
}
.spec-row__icon {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  color: var(--gold);
  border: 1px solid var(--hair);
  border-radius: 50%;
}
.spec-row__icon svg { width: 13px; height: 13px; }
.spec-row__k {
  font-size: 13px;
  color: var(--ivory-muted);
}
.spec-row__v {
  font-size: 15px;
  font-weight: 600;
  color: var(--ivory);
  text-align: right;
  font-variant-numeric: tabular-nums;
}

/* Description / text content */
.prose {
  max-width: 68ch;
  font-size: 16px;
  line-height: 1.8;
  color: var(--ivory-muted);
}
.prose p { margin-bottom: 18px; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--ivory); font-weight: 600; }
.prose h3 {
  font-size: 20px;
  color: var(--ivory);
  margin: 28px 0 14px;
  font-weight: 700;
}

/* Vehicle features list */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hair-soft);
  border: 1px solid var(--hair-soft);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 28px;
}
@media (max-width: 720px) { .features { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .features { grid-template-columns: 1fr; } }
.feature {
  background: var(--surface);
  padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
  font-size: 14px;
  color: var(--ivory-muted);
}
.feature::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.feature.is-missing { color: var(--ivory-faint); }
.feature.is-missing::before { background: rgba(245,241,234,0.2); }

/* Offer form (single vehicle) */
.offer-section {
  background:
    radial-gradient(ellipse at top right, rgba(201, 166, 107, 0.08), transparent 50%),
    var(--ink);
  border-top: 1px solid var(--hair);
}
.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
@media (max-width: 900px) { .offer-grid { grid-template-columns: 1fr; } }

.offer-copy h2 .serif { display: block; }
.offer-copy p {
  margin-top: 20px;
  color: var(--ivory-muted);
  max-width: 44ch;
}
.offer-copy__contacts {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--hair-soft);
  display: grid; gap: 16px;
}
.offer-copy__contacts a {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px;
  color: var(--ivory);
  transition: color .2s var(--ease);
}
.offer-copy__contacts a:hover { color: var(--gold-bright); }
.offer-copy__contacts svg {
  width: 14px; height: 14px;
  color: var(--gold);
  flex-shrink: 0;
}

/* Form ----------------------------------------------------- */
.form {
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: grid; gap: 16px;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 520px) { .form__row { grid-template-columns: 1fr; } }

.input {
  display: flex; flex-direction: column;
  gap: 6px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--hair-soft);
  border-radius: var(--radius);
  padding: 12px 16px;
  transition: border-color .2s var(--ease);
}
.input:focus-within { border-color: var(--gold); }
.input > span {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory-faint);
}
.input input,
.input textarea,
.input select {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--ivory);
  outline: none;
  resize: vertical;
  font-family: inherit;
}
.input textarea { min-height: 110px; line-height: 1.5; }

.form .check {
  font-size: 13px;
  padding-top: 4px;
}
.form__actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 8px;
}
.form__actions .btn { flex: 1; min-width: 160px; padding-block: 16px; }
.form__note {
  font-size: 11px;
  color: var(--ivory-faint);
  line-height: 1.6;
}

/* Similar vehicles */
.similar { padding-bottom: 80px; }
.similar h2 .serif { display: inline; }

/* ============================================================
   Contact page
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
  padding-block: 56px 80px;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info {
  display: grid; gap: 20px;
}

.info-card {
  background: var(--surface);
  border: 1px solid var(--hair-soft);
  border-radius: var(--radius-lg);
  padding: 28px 30px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  align-items: start;
  transition: border-color .25s var(--ease);
}
.info-card:hover { border-color: var(--gold); }
.info-card__icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-bright);
}
.info-card__icon svg { width: 18px; height: 18px; }
.info-card__label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.info-card__value {
  font-size: 18px;
  font-weight: 600;
  color: var(--ivory);
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.info-card__value a:hover { color: var(--gold-bright); }
.info-card__note {
  margin-top: 6px;
  font-size: 13px;
  color: var(--ivory-muted);
}

.hours-table {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}
.hours-row {
  display: flex; justify-content: space-between; gap: 16px;
  font-size: 13px;
  color: var(--ivory-muted);
}
.hours-row.is-closed { color: var(--ivory-faint); }
.hours-row strong {
  color: var(--ivory);
  font-weight: 500;
}

/* Map placeholder */
.map {
  margin-top: 12px;
  aspect-ratio: 16 / 9;
  background:
    repeating-linear-gradient(135deg,
      rgba(201, 166, 107, 0.04) 0 14px,
      transparent 14px 28px),
    radial-gradient(ellipse at center, var(--surface-2), var(--ink));
  border: 1px solid var(--hair-soft);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  display: grid; place-items: center;
}
.map::before {
  /* fake roads */
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(45deg, transparent 49.6%, rgba(201,166,107,0.15) 49.7%, rgba(201,166,107,0.15) 50.3%, transparent 50.4%),
    linear-gradient(135deg, transparent 49.6%, rgba(245,241,234,0.05) 49.7%, rgba(245,241,234,0.05) 50.3%, transparent 50.4%),
    linear-gradient(0deg, transparent 49.6%, rgba(245,241,234,0.05) 49.7%, rgba(245,241,234,0.05) 50.3%, transparent 50.4%);
  background-size: 200px 200px, 140px 140px, 120px 120px;
}
.map__pin {
  position: relative;
  z-index: 2;
  display: grid; place-items: center;
  width: 52px; height: 52px;
  background: var(--gold);
  border: 2px solid var(--ivory);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.map__pin::after {
  content: "";
  position: absolute;
  bottom: -16px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 14px; height: 4px;
  background: rgba(0, 0, 0,0.6);
  border-radius: 50%;
  filter: blur(2px);
}
.map__pin svg {
  width: 22px; height: 22px;
  color: var(--ink);
  transform: rotate(45deg);
}
.map__label {
  position: absolute;
  bottom: 20px; left: 20px;
  z-index: 2;
  padding: 10px 16px;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--hair);
  border-radius: 999px;
  font-size: 12px;
  color: var(--ivory);
  letter-spacing: 0.04em;
}
.map__label .serif { color: var(--gold-bright); font-size: 14px; margin-right: 4px; }

/* Socials inline list */
.socials {
  display: flex; gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.socials a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--hair-soft);
  border-radius: 999px;
  font-size: 13px;
  color: var(--ivory-muted);
  transition: all .2s var(--ease);
}
.socials a:hover { border-color: var(--gold); color: var(--gold-bright); }
.socials a svg { width: 14px; height: 14px; }

/* ============================================================
   Additional page modules — services, blog post, timeline,
   team, compare, 404, legal
   ============================================================ */

/* Services: process steps + service cards ----------------- */
.service-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--hair-soft);
  border: 1px solid var(--hair-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 720px) { .service-cards { grid-template-columns: 1fr; } }

.service-card {
  background: var(--surface);
  padding: 36px 32px;
  display: flex; flex-direction: column;
  gap: 16px;
  position: relative;
  transition: background .35s var(--ease);
}
.service-card:hover { background: var(--surface-2); }
.service-card__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 64px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.4;
  position: absolute;
  top: 24px; right: 28px;
}
.service-card__icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-bright);
}
.service-card__icon svg { width: 22px; height: 22px; }
.service-card h3 {
  font-size: 22px;
  letter-spacing: -0.01em;
}
.service-card p {
  color: var(--ivory-muted);
  font-size: 15px;
  line-height: 1.65;
  max-width: 42ch;
}
.service-card__list {
  list-style: none;
  padding: 0; margin: 8px 0 0;
  display: grid; gap: 8px;
}
.service-card__list li {
  font-size: 13px;
  color: var(--ivory-muted);
  padding-left: 18px;
  position: relative;
}
.service-card__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 1px;
  background: var(--gold);
}

/* Process steps -------------------------------------------- */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
@media (max-width: 1024px) { .process { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px)  { .process { grid-template-columns: 1fr; } }

.process__step {
  padding: 32px 28px;
  border-right: 1px solid var(--hair-soft);
  position: relative;
}
.process__step:last-child { border-right: 0; }
@media (max-width: 1024px) {
  .process__step:nth-child(2n) { border-right: 0; }
  .process__step:nth-child(-n+2) { border-bottom: 1px solid var(--hair-soft); }
}
@media (max-width: 520px) {
  .process__step { border-right: 0; border-bottom: 1px solid var(--hair-soft) !important; }
  .process__step:last-child { border-bottom: 0 !important; }
}
.process__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.process__step h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.process__step p {
  color: var(--ivory-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* Pricing/included strip ----------------------------------- */
.priced-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 28px 32px;
  background: var(--surface);
  border: 1px solid var(--hair-soft);
  border-radius: var(--radius-lg);
}
.priced-row + .priced-row { margin-top: 12px; }
.priced-row h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
}
.priced-row p { color: var(--ivory-muted); font-size: 14px; max-width: 60ch; }
.priced-row__price {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 24px;
  color: var(--gold-bright);
  white-space: nowrap;
}

/* Blog list ------------------------------------------------- */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 28px;
}
@media (max-width: 1024px) { .posts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .posts-grid { grid-template-columns: 1fr; } }

.post-featured {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 36px;
  background: var(--surface);
  border: 1px solid var(--hair-soft);
  border-radius: var(--radius-lg);
  margin-bottom: 48px;
  transition: border-color .25s var(--ease);
}
.post-featured:hover { border-color: var(--gold); }
@media (max-width: 900px) { .post-featured { grid-template-columns: 1fr; padding: 24px; } }
.post-featured__media {
  aspect-ratio: 5 / 3;
  background: var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.post-featured__media .placeholder { position: absolute; inset: 0; }
.post-featured__cat {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.post-featured h2 {
  font-size: clamp(24px, 2.8vw, 34px);
  margin-bottom: 16px;
}
.post-featured p {
  color: var(--ivory-muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.post-featured__meta {
  display: flex; align-items: center; gap: 16px;
  font-size: 12px;
  color: var(--ivory-faint);
  letter-spacing: 0.05em;
}
.post-featured__meta strong { color: var(--ivory); font-weight: 500; }

/* Blog category chips */
.cat-chips {
  display: flex; flex-wrap: wrap; gap: 10px;
  padding-block: 24px;
  border-bottom: 1px solid var(--hair-soft);
  margin-bottom: 48px;
}
.cat-chips button, .cat-chips a {
  border: 1px solid var(--hair-soft);
  background: rgba(0, 0, 0, 0.55);
  color: var(--ivory-muted);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s var(--ease);
}
.cat-chips button:hover, .cat-chips a:hover { color: var(--ivory); border-color: var(--hair); }
.cat-chips .is-active {
  background: var(--gold); color: var(--ink); border-color: var(--gold);
}

/* Single blog post ---------------------------------------- */
.post-hero {
  padding-block: clamp(56px, 7vw, 88px) clamp(24px, 3vw, 40px);
  text-align: center;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.post-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(201,166,107,0.15), transparent 60%);
}
.post-hero__inner {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}
.post-hero h1 {
  font-size: clamp(32px, 4.8vw, 56px);
  margin-block: 24px 32px;
}
.post-hero__meta {
  display: flex; justify-content: center; align-items: center;
  gap: 20px;
  font-size: 13px;
  color: var(--ivory-muted);
  flex-wrap: wrap;
}
.post-hero__meta .sep { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; }
.post-hero__author { color: var(--gold-bright); font-weight: 500; }

.post-feature-image {
  aspect-ratio: 16 / 9;
  max-width: 1080px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--hair-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.post-feature-image .placeholder { position: absolute; inset: 0; }
.post-feature-image img { width: 100%; height: 100%; object-fit: cover; }

.post-body {
  max-width: 720px;
  margin: 0 auto;
  padding-block: 64px;
}
.post-body .prose h2 {
  font-size: 28px;
  color: var(--ivory);
  margin: 40px 0 16px;
  letter-spacing: -0.01em;
}
.post-body .prose blockquote {
  margin: 32px 0;
  padding: 24px 28px;
  border-left: 2px solid var(--gold);
  background: rgba(201, 166, 107, 0.05);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--ivory);
}

/* About / Timeline ---------------------------------------- */
.timeline {
  position: relative;
  padding-left: 28px;
  margin-top: 32px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 5px; top: 6px; bottom: 6px;
  width: 1px;
  background: var(--hair-soft);
}
.timeline__item {
  position: relative;
  padding-bottom: 32px;
}
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before {
  content: "";
  position: absolute;
  left: -28px; top: 6px;
  width: 11px; height: 11px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: var(--ink);
}
.timeline__year {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 6px;
}
.timeline__item h4 {
  font-size: 18px;
  margin-bottom: 8px;
}
.timeline__item p {
  color: var(--ivory-muted);
  font-size: 14px;
  line-height: 1.6;
  max-width: 56ch;
}

/* Team grid (placeholder portraits) ----------------------- */
.team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .team { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .team { grid-template-columns: 1fr; } }

.member {
  display: flex; flex-direction: column;
  gap: 12px;
}
.member__photo {
  aspect-ratio: 4 / 5;
  background:
    repeating-linear-gradient(135deg, rgba(201,166,107,0.05) 0 14px, transparent 14px 28px),
    linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--hair-soft);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  display: grid; place-items: center;
}
.member__photo::after {
  content: "";
  position: absolute; inset: 14px;
  border: 1px solid rgba(245, 241, 234, 0.08);
  border-radius: 4px;
}
.member__monogram {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 64px;
  color: var(--gold);
  opacity: 0.6;
  letter-spacing: -0.02em;
}
.member__name {
  font-size: 17px;
  font-weight: 600;
  margin-top: 4px;
}
.member__role {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Compare table ------------------------------------------- */
.compare {
  display: grid;
  grid-template-columns: 200px repeat(3, 1fr);
  gap: 1px;
  background: var(--hair-soft);
  border: 1px solid var(--hair-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 900px) {
  .compare { grid-template-columns: 120px repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .compare { grid-template-columns: 110px 1fr 1fr; }
  .compare > .compare__col:nth-child(4n) { display: none; }
}

.compare__col {
  background: var(--surface);
  padding: 16px 18px;
  display: flex;
  align-items: center;
}
.compare__col.is-header {
  background: var(--ink);
  flex-direction: column;
  align-items: stretch;
  padding: 0;
}
.compare__photo {
  aspect-ratio: 4 / 3;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.compare__photo img { width: 100%; height: 100%; object-fit: cover; }
.compare__photo .placeholder { position: absolute; inset: 0; }
.compare__title {
  padding: 14px 18px 16px;
}
.compare__brand {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.compare__model {
  font-size: 17px;
  font-weight: 700;
  margin-top: 4px;
}
.compare__price {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--gold-bright);
  margin-top: 4px;
}
.compare__col.is-label {
  background: var(--ink);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory-faint);
}
.compare__col.is-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--ivory);
  font-variant-numeric: tabular-nums;
}
.compare__col.is-best {
  color: var(--gold-bright);
  font-weight: 600;
}
.compare__check {
  color: var(--gold);
}
.compare__missing {
  color: var(--ivory-faint);
}
.compare__remove {
  margin: 8px 18px 16px;
  background: transparent;
  border: 1px solid var(--hair);
  color: var(--ivory-muted);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  align-self: flex-start;
}
.compare__remove:hover { border-color: var(--gold); color: var(--gold-bright); }
.compare__add {
  background: rgba(0, 0, 0, 0.5);
  display: grid; place-items: center;
  cursor: pointer;
  padding: 32px;
  text-align: center;
}
.compare__add svg { width: 32px; height: 32px; color: var(--gold); margin-bottom: 12px; }
.compare__add span {
  font-size: 13px;
  color: var(--ivory-muted);
  letter-spacing: 0.04em;
}

/* 404 page ------------------------------------------------- */
.errorpage {
  min-height: calc(100vh - 80px);
  display: grid; place-items: center;
  padding-block: 80px;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.errorpage::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,166,107,0.16), transparent 60%);
}
.errorpage__inner {
  position: relative;
  text-align: center;
  max-width: 640px;
}
.errorpage__number {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(160px, 22vw, 280px);
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.05em;
}
.errorpage h1 {
  font-size: clamp(28px, 4vw, 44px);
  margin-block: 12px 16px;
}
.errorpage p {
  color: var(--ivory-muted);
  font-size: 16px;
  max-width: 44ch;
  margin: 0 auto 36px;
}
.errorpage__actions {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}

/* Legal page ---------------------------------------------- */
.legal-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  padding-block: 56px 96px;
}
@media (max-width: 900px) { .legal-layout { grid-template-columns: 1fr; gap: 32px; } }

.legal-toc {
  position: sticky;
  top: 96px;
  display: grid; gap: 8px;
  align-self: start;
  font-size: 13px;
}
.legal-toc h3 {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 600;
}
.legal-toc a {
  color: var(--ivory-muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--hair-soft);
  display: block;
}
.legal-toc a:hover { color: var(--ivory); }
.legal-toc a.is-active { color: var(--gold-bright); }

.legal-content {
  max-width: 70ch;
}
.legal-content section { margin-bottom: 56px; }
.legal-content h2 {
  font-size: 24px;
  margin-bottom: 16px;
  scroll-margin-top: 100px;
}
.legal-content h3 {
  font-size: 17px;
  margin: 24px 0 10px;
  color: var(--ivory);
}
.legal-content p {
  color: var(--ivory-muted);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 14px;
}
.legal-content ul {
  color: var(--ivory-muted);
  font-size: 15px;
  line-height: 1.75;
  padding-left: 22px;
  margin-bottom: 14px;
}
.legal-content li { margin-bottom: 6px; }

/* Accessibility & misc -------------------------------------- */
:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 2px; border-radius: 4px; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ============================================================
   Hero watermark + mobile hamburger menu
   ============================================================ */

/* Site header: λίγο πιο σκούρο gradient τώρα που η παλέτα είναι μαύρη */
.site-header {
  background: linear-gradient(to bottom, rgba(0,0,0,0.92), rgba(0,0,0,0.78));
}

/* Generic section watermark — top-right του hero/page-head, ίδια θέση σε όλες τις σελίδες */
.hero__title { display: block; }  /* no-op wrapper για backwards compat */

.section-watermark {
  position: absolute;
  top: 50%;
  right: calc(max(0px, (100% - 1280px) / 2) + var(--gutter));
  transform: translateY(-50%);
  object-fit: contain;
  filter: grayscale(1) brightness(2.4) contrast(1.1);
  pointer-events: none;
  user-select: none;
  z-index: 0;
  mix-blend-mode: screen;
}
.hero .section-watermark {
  width: clamp(300px, 42vw, 600px);
  height: clamp(300px, 42vw, 600px);
  opacity: 0.24;
}
.page-head .section-watermark {
  width: clamp(150px, 16vw, 240px);
  height: clamp(150px, 16vw, 240px);
  opacity: 0.14;
}
.page-head__inner h1,
.page-head__inner .page-head__lede {
  padding-right: clamp(170px, 18vw, 280px);
}
.hero__inner, .page-head__inner { position: relative; z-index: 1; }

@media (max-width: 900px) {
  .section-watermark {
    top: 16px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
  .hero .section-watermark { width: 180px; height: 180px; opacity: 0.22; }
  .page-head .section-watermark { width: 110px; height: 110px; opacity: 0.16; }
  .page-head__inner h1,
  .page-head__inner .page-head__lede {
    padding-right: 0;
    padding-top: 120px;
  }
}

/* Mobile menu toggle (hamburger) */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--hair);
  border-radius: 999px;
  color: var(--ivory);
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.nav-toggle:hover { border-color: var(--gold); color: var(--gold-bright); }
.nav-toggle svg { width: 18px; height: 18px; }
.nav-toggle .nav-toggle__close { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__open  { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__close { display: block; }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }

  /* Όταν είναι ανοιχτό το drawer, βγάζουμε το toggle εκτός του header stacking
     context ώστε το X να εμφανίζεται πάνω από το drawer (z-index: 60). */
  .nav-toggle[aria-expanded="true"] {
    position: fixed;
    top: 18px;
    right: 20px;
    z-index: 70;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  /* Όταν δεν είναι ανοιχτό, το nav κρύβεται (override του υπάρχοντος display:none) */
  .nav { display: none; }

  /* Drawer state */
  .nav.is-open {
    display: flex;
    position: fixed;
    top: 0; right: 0;
    width: min(82vw, 320px);
    height: 100vh;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 88px 24px 32px;
    background: rgba(0, 0, 0, 0.97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-left: 1px solid var(--hair-soft);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
    z-index: 60;
    overflow-y: auto;
  }
  .nav.is-open a {
    padding: 14px 4px;
    font-size: 16px;
    border-bottom: 1px solid var(--hair-soft);
    color: var(--ivory);
  }
  .nav.is-open a:last-child { border-bottom: 0; }

  /* Κρύψε το phone CTA στο κινητό για να μη γεμίζει το header */
  .header__phone span { display: none; }
  .header__phone { padding: 10px 12px; }
}

/* Backdrop όταν είναι ανοιχτό το mobile menu */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 55;
}
.nav-backdrop.is-open { display: block; }
