/* ---------- Tomini Classics — design tokens ---------- */
:root {
  /* dark gallery */
  --noir: #0F1112;
  --ink:  #1A1D1F;
  --line2:#2A2E31;
  --line3:#3a3f43;

  /* light editorial */
  --paper:#F6F4EF;
  --stone:#E8E3D9;
  --ink2: #16181A;
  --muted:#6f6a5e;
  --line: #DDD7CB;

  /* accent */
  --accent:#D3303E;
  --accent-deep:#A82231;
  --brass:#B08D57;
  --brass-light:#C9A773;

  /* type */
  --display: "Cormorant Garamond", "Cormorant", "Times New Roman", serif;
  --body:    "Inter", "Helvetica Neue", system-ui, sans-serif;
  --mono:    "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;

  --radius: 2px;
  --shadow-hi: 0 30px 60px -20px rgba(0,0,0,.45);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink2);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.65;
}

img { display: block; max-width: 100%; }
button { font-family: inherit; }
a { color: inherit; text-decoration: none; }

/* ---------- typography ---------- */
.display { font-family: var(--display); font-weight: 400; letter-spacing: -0.01em; line-height: 1.05; }
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.mono { font-family: var(--mono); }
.italic-serif { font-family: var(--display); font-style: italic; font-weight: 400; }

h1.display { font-size: clamp(48px, 7.5vw, 112px); }
h2.display { font-size: clamp(36px, 5vw, 72px); }
h3.display { font-size: clamp(24px, 2.5vw, 36px); }

/* ---------- shells ---------- */
.shell { max-width: 1440px; margin: 0 auto; padding: 0 40px; }
.shell-narrow { max-width: 1080px; margin: 0 auto; padding: 0 40px; }
.section { padding: 120px 0; }
.section-tight { padding: 80px 0; }

@media (max-width: 720px) {
  .shell, .shell-narrow { padding: 0 20px; }
  .section { padding: 72px 0; }
}

.noir { background: var(--noir); color: var(--paper); }
.noir .muted { color: #8a8a87; }
.noir hr { border-color: var(--line2); }
.muted { color: var(--muted); }

hr { border: none; border-top: 1px solid var(--line); margin: 0; }
.noir hr { border-top-color: var(--line2); }
.hairline { height:1px; background: var(--line); width: 100%; }
.noir .hairline { background: var(--line2); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  cursor: pointer;
  background: transparent;
  color: inherit;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}
.btn:hover { background: currentColor; }
.btn:hover > * { color: var(--noir); }
.btn .label { display: inline-block; }
.noir .btn:hover > .label { color: var(--noir); }
.btn-solid {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.btn-solid:hover { background: var(--accent-deep); border-color: var(--accent-deep); }
.btn-solid:hover > * { color: #fff; }
.btn-ghost { border-color: rgba(255,255,255,0.35); }
.btn-light { border-color: rgba(0,0,0,0.25); }

.btn-link {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
}
.btn-link::after {
  content:"";
  position: absolute;
  left:0; right: 0; bottom: -4px;
  height: 1px;
  background: currentColor;
  transform-origin: left;
  transition: transform 0.3s ease;
}
.btn-link:hover::after { transform: scaleX(0.7); }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(15, 17, 18, 0);
  color: #fff;
  transition: background 0.3s ease, padding 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled, .nav.opaque {
  background: rgba(15, 17, 18, 0.92);
  backdrop-filter: blur(14px);
  padding: 14px 40px;
  border-bottom-color: var(--line2);
}
.nav.light { color: var(--ink2); }
.nav.light.scrolled, .nav.light.opaque {
  background: rgba(246, 244, 239, 0.96);
  border-bottom-color: var(--line);
}
.nav .logo { display: flex; align-items: center; gap: 14px; cursor: pointer; }
.nav .logo img { height: 38px; width: auto; }
.nav .links { display: flex; gap: 28px; align-items: center; }
.nav .links a {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 0.2s;
  position: relative;
  padding: 4px 0;
}
.nav .links a:hover, .nav .links a.active { opacity: 1; }
.nav .links a.active::after {
  content:""; position:absolute; left:0; right:0; bottom:-2px; height: 1px;
  background: var(--accent);
}
.nav .right { display: flex; align-items: center; gap: 16px; }
.lang {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  opacity: 0.6;
}
.lang span { padding: 2px 4px; cursor: pointer; }
.lang span.active { opacity: 1; color: var(--accent); }
.lang span:not(.active):hover { opacity: 0.95; }
@media (max-width: 1100px) {
  .nav .links { display: none; }
}
@media (max-width: 720px) {
  .nav, .nav.scrolled { padding: 14px 20px; }
  .nav .right .btn { padding: 10px 14px; font-size: 10px; }
  .lang { display: none; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  width: 100%;
  overflow: hidden;
  background: var(--noir);
  color: #fff;
}
.hero .bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.6) contrast(1.05);
  transform: scale(1.04);
}
.hero .scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,17,18,.55) 0%, rgba(15,17,18,.15) 30%, rgba(15,17,18,.85) 100%);
}
.hero .content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 40px 80px;
  max-width: 1440px;
  margin: 0 auto;
}
.hero .content .eyebrow { color: var(--brass-light); }
.hero h1.display { max-width: 16ch; margin: 20px 0 32px; }
.hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

@media (max-width: 720px) {
  .hero .content { padding: 0 20px 60px; }
}

.scroll-hint {
  position: absolute;
  bottom: 28px;
  right: 40px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
  display: flex; align-items: center; gap: 10px;
}
.scroll-hint .bar {
  width: 1px; height: 32px; background: rgba(255,255,255,0.6);
  animation: drop 2.4s ease-in-out infinite;
  transform-origin: top;
}
@keyframes drop {
  0% { transform: scaleY(0); }
  50% { transform: scaleY(1); }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- vehicle card ---------- */
.v-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 32px;
}
@media (max-width: 1100px) { .v-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .v-grid { grid-template-columns: 1fr; } }

.v-card { cursor: pointer; display: block; }
.v-card .img-wrap {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--ink);
  position: relative;
}
.v-card .img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(.2,.6,.2,1);
}
.v-card:hover .img-wrap img { transform: scale(1.04); }
.v-card .meta {
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.v-card .meta .name {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.005em;
}
.v-card .meta .price {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0.75;
}
.v-card .submeta {
  display: flex;
  gap: 16px;
  margin-top: 6px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  opacity: 0.6;
  text-transform: uppercase;
}
.v-card .submeta span + span::before {
  content: "·";
  margin-right: 16px;
  opacity: 0.6;
}

/* status badge */
.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 10px;
  background: rgba(15,17,18,0.85);
  color: #fff;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
}
.badge.available { background: rgba(246,244,239,0.95); color: var(--ink2); }
.badge.sold { background: var(--accent); color:#fff; }
.badge.reserved { background: var(--brass); color: var(--noir); }
.badge.new { background: #fff; color: var(--noir); border-color:#fff; }

/* ---------- editorial blocks ---------- */
.editorial-two {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) { .editorial-two { grid-template-columns: 1fr; gap: 40px; } }

.value-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line2);
  border-bottom: 1px solid var(--line2);
}
.value-list > div {
  padding: 36px 30px;
  border-right: 1px solid var(--line2);
}
.value-list > div:last-child { border-right: none; }
.value-list h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 28px;
  margin: 12px 0 8px;
}
.value-list p { color: #b8b6b1; margin: 0; }
.value-list .n {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.18em; opacity: 0.5;
}
@media (max-width: 900px) {
  .value-list { grid-template-columns: 1fr; }
  .value-list > div { border-right: none; border-bottom: 1px solid var(--line2); }
  .value-list > div:last-child { border-bottom: none; }
}

/* ---------- filter bar ---------- */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}
.noir .filter-bar { border-color: var(--line2); }
.filter-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-right: 8px;
}
.chip {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 12px;
  border: 1px solid transparent;
  cursor: pointer;
  background: transparent;
  color: inherit;
  transition: border-color 0.15s, color 0.15s;
}
.chip:hover { border-color: var(--ink2); }
.noir .chip:hover { border-color: var(--paper); }
.chip.active {
  border-color: var(--accent);
  color: var(--accent);
}
.filter-bar .spacer { flex: 1; }
.results-count {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  opacity: 0.55;
  text-transform: uppercase;
}

/* ---------- vehicle detail ---------- */
.vd-hero {
  position: relative;
  height: 78vh;
  min-height: 540px;
  background: var(--noir);
  overflow: hidden;
}
.vd-hero img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.92);
}
.vd-hero .crumb {
  position: absolute; top: 100px; left: 40px;
  z-index: 5;
  color: #fff;
}
.vd-hero .crumb a { opacity: 0.7; }
.vd-hero .crumb a:hover { opacity: 1; }
.vd-hero .crumb .sep { margin: 0 10px; opacity: 0.5; }

.vd-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  padding: 80px 0;
}
@media (max-width: 1100px) {
  .vd-layout { grid-template-columns: 1fr; gap: 48px; }
}

.vd-title { margin-bottom: 28px; }
.vd-title h1 { margin: 8px 0 16px; font-size: clamp(40px, 5vw, 64px); }
.vd-title .deck {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--muted);
  max-width: 60ch;
}

.specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  margin: 32px 0;
}
.specs .row {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.specs .row .k {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.55;
}
.specs .row .v {
  font-family: var(--body);
  font-size: 14px;
  font-weight: 400;
  text-align: right;
}
.specs .row.alone { grid-column: 1 / -1; }
@media (min-width: 700px) {
  .specs .row:nth-child(odd) { padding-right: 32px; }
  .specs .row:nth-child(even) { padding-left: 32px; border-left: 1px solid var(--line); }
}

.provenance {
  font-family: var(--display);
  font-size: 19px;
  line-height: 1.6;
  font-weight: 400;
  color: var(--ink2);
}
.provenance p + p { margin-top: 1.25em; }
.provenance .dropcap::first-letter {
  font-family: var(--display);
  font-size: 5.5em;
  float: left;
  line-height: 0.9;
  margin: 0.08em 0.1em 0 0;
  font-weight: 400;
  color: var(--accent);
}

/* sticky enquire panel */
.enquire-panel {
  position: sticky;
  top: 100px;
  border: 1px solid var(--line);
  padding: 28px;
  background: var(--paper);
  align-self: start;
}
.enquire-panel .price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 16px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.enquire-panel .price-row .p {
  font-family: var(--display);
  font-size: 36px;
}
.enquire-panel .price-row .poa-note {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.55;
}
.enquire-panel .actions { display: flex; flex-direction: column; gap: 8px; }
.enquire-panel .actions .btn { justify-content: center; width: 100%; }
.enquire-panel .secondary { font-size: 12px; color: var(--muted); margin-top: 16px; line-height: 1.5; }
.enquire-panel .contact-line {
  margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em;
  display: flex; flex-direction: column; gap: 8px;
}
.enquire-panel .contact-line a { opacity: 0.85; }
.enquire-panel .contact-line a:hover { color: var(--accent); }

/* ---------- gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4px;
  margin-top: 60px;
}
.gallery .g-item {
  cursor: zoom-in;
  background: var(--ink);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.gallery .g-item:first-child { grid-row: span 2; aspect-ratio: 1/1; }
.gallery .g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.gallery .g-item:hover img { transform: scale(1.03); }
@media (max-width: 700px) {
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery .g-item:first-child { grid-row: auto; }
}

/* lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(10,11,12,0.96);
  z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
}
.lightbox .lb-img {
  max-width: 90%;
  max-height: 90%;
}
.lightbox .lb-close, .lightbox .lb-prev, .lightbox .lb-next {
  position: absolute;
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 48px; height: 48px;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.lightbox .lb-close { top: 24px; right: 24px; }
.lightbox .lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-counter {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em;
}

/* ---------- footer ---------- */
.footer {
  background: var(--noir);
  color: var(--paper);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line2);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h5 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.55;
  margin: 0 0 18px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a {
  font-size: 14px;
  opacity: 0.85;
  cursor: pointer;
}
.footer ul a:hover { color: var(--accent); }
.footer .legal {
  display: flex;
  justify-content: space-between;
  padding-top: 28px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.6;
}
.footer .newsletter input {
  flex: 1;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line2);
  color: var(--paper);
  padding: 10px 0;
  font-family: var(--body);
  font-size: 14px;
  outline: none;
}
.footer .newsletter input:focus { border-color: var(--accent); }
.footer .newsletter { display: flex; gap: 12px; align-items: center; }
.footer .newsletter button {
  background: none; border: none; color: var(--paper); cursor: pointer;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  border-bottom: 1px solid currentColor; padding-bottom: 4px;
}

/* ---------- modal / forms ---------- */
.modal-shade {
  position: fixed; inset: 0;
  background: rgba(10,11,12,0.7);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(6px);
  animation: fade 0.2s ease;
}
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: var(--paper);
  color: var(--ink2);
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 48px;
  animation: rise 0.35s cubic-bezier(.2,.7,.2,1);
}
@keyframes rise { from { transform: translateY(20px); opacity: 0;} to { transform: none; opacity:1; } }
.modal .close {
  position: absolute; top: 20px; right: 20px;
  width: 36px; height: 36px;
  background: none; border: none; cursor: pointer;
  font-family: var(--mono); font-size: 16px;
}
.modal h2 { margin: 0 0 6px; font-size: 32px; }
.modal .modal-deck { font-family: var(--display); font-style: italic; color: var(--muted); margin-bottom: 28px; font-size: 17px; }
.modal form { display: grid; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  opacity: 0.65;
}
.field input, .field select, .field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 8px 0;
  font-family: var(--body);
  font-size: 15px;
  color: var(--ink2);
  outline: none;
  transition: border-color 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 88px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .two-col { grid-template-columns: 1fr; } .modal { padding: 32px 24px; } }

.tab-row {
  display: flex; gap: 0;
  border: 1px solid var(--line);
  margin-bottom: 24px;
}
.tab-row button {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  border-right: 1px solid var(--line);
  opacity: 0.6;
}
.tab-row button:last-child { border-right: none; }
.tab-row button.active { background: var(--ink2); color: var(--paper); opacity: 1; }

.success {
  text-align: center;
  padding: 24px 0;
}
.success .check {
  display: inline-flex; width: 60px; height: 60px; border-radius: 50%;
  background: var(--accent); color: #fff; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 28px;
}

/* ---------- press strip ---------- */
.press-strip {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.press-strip .press-mark {
  font-family: var(--display);
  font-style: italic;
  font-size: 24px;
  opacity: 0.55;
}
.press-strip .press-mark.serif-cap { font-style: normal; font-weight: 500; letter-spacing: 0.05em; }
.press-strip .press-mark.mono {
  font-family: var(--mono); font-style: normal;
  font-size: 14px; letter-spacing: 0.16em; text-transform: uppercase;
}

/* ---------- faq accordion ---------- */
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .toggle {
  font-family: var(--mono); font-size: 14px; opacity: 0.6;
}
.faq-item[open] summary .toggle { color: var(--accent); }
.faq-item .answer {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 70ch;
}

/* ---------- WhatsApp FAB ---------- */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 40;
  background: var(--ink2);
  color: var(--paper);
  border: 1px solid var(--line2);
  padding: 14px 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-hi);
}
.whatsapp-fab .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--brass-light);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 0.5; }
  50% { opacity: 1; }
}
.whatsapp-fab:hover { background: var(--accent); border-color: var(--accent); }

/* ---------- misc ---------- */
.fade-in { animation: fadeIn 0.6s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px);} to { opacity:1; transform:none;} }

.page { min-height: 100vh; }

/* horizontal line break */
.rule {
  width: 60px; height: 2px;
  background: var(--accent);
  margin: 0 0 18px;
}
.rule.center { margin: 0 auto 24px; }

.lang-toggle { padding: 4px 8px; cursor: pointer; }
