/* ═══════════════════════════════════════════════════════════════════
   VoieLux — Shared stylesheet for all category pages
   Loaded by index.html, yachts.html, jets.html, watches.html, cars.html
   ═══════════════════════════════════════════════════════════════════ */

:root {
  --bg: #0B0B0D;
  --surface: #141418;
  --surface-2: #1E1E24;
  --accent: #F5E9C8;
  --text: #FFFFFF;
  --text-mid: #C9C9D1;
  --text-low: #8A8A92;
  --text-whisper: #6F6F77;
  --serif: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
  --sans: 'Inter', system-ui, -apple-system, 'Helvetica Neue', sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

a { color: inherit; text-decoration: none; }

/* ─────────── TOP NAV ─────────── */
nav.top {
  position: fixed;
  top: 0; left: 0; right: 0;
  padding: 20px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(11, 11, 13, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 20;
  border-bottom: 1px solid rgba(245, 233, 200, 0.06);
}

nav.top .brand {
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

nav.top .links {
  display: flex;
  gap: 28px;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-mid);
}

nav.top .links a {
  transition: color 0.2s var(--ease);
  position: relative;
  padding: 4px 0;
}

nav.top .links a:hover { color: var(--accent); }

nav.top .links a.active {
  color: var(--accent);
}

nav.top .links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -3px;
  height: 1px;
  background: var(--accent);
  opacity: 0.7;
}

nav.top .nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--accent);
  font-size: 10.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
  margin-right: 6px;
}
nav.top .nav-cta:hover {
  background: var(--accent);
  color: var(--bg);
  transform: translateY(-1px);
}
nav.top .nav-cta::after { display: none; }
nav.top .nav-cta-phone {
  font-variant-numeric: tabular-nums;
  letter-spacing: 1.4px;
  opacity: 0.9;
  font-weight: 500;
}

@media (max-width: 900px) {
  nav.top .nav-cta-phone { display: none; }
  nav.top .nav-cta { gap: 0; }
}
@media (max-width: 768px) {
  nav.top { padding: 14px 18px; }
  nav.top .brand { font-size: 12px; letter-spacing: 3px; }
  nav.top .links { gap: 14px; font-size: 9px; letter-spacing: 1.8px; }
  nav.top .nav-cta {
    padding: 5px 11px;
    font-size: 9px;
    letter-spacing: 1.6px;
    margin-right: 2px;
  }
}
@media (max-width: 480px) {
  nav.top .nav-cta { padding: 5px 9px; font-size: 8.5px; letter-spacing: 1.4px; }
}

/* ─────────── HERO ─────────── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Shorter hero on mobile — prevents aggressive vertical crop on horizontal images like supercars */
@media (max-width: 720px) {
  .hero {
    height: 78vh;
    height: 78dvh;
    min-height: 540px;
  }
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #080a10;  /* cinematic fallback while image loads */
  opacity: 0;
  transform: scale(1.05);
  will-change: opacity, transform;
  /* fill-mode removed — animation rules handle opacity transitions; default opacity 0 keeps later slides hidden until their delay fires */
}

/* First slide visible immediately on page load — belt + suspenders with animation */
.hero-slides .hero-slide:nth-child(1) {
  opacity: 1;
}

/* ─── Per-slide background positioning (fine-tune cropping per image) ─── */
.slide-jet       { background-position: center 40%; }
.slide-yacht     { background-position: center 55%; }
.slide-supercar  { background-position: 40% center; }
.slide-watch     { background-position: center center; }
.slide-penthouse { background-position: center 60%; }
.slide-tropical  { background-position: center 55%; }
.slide-lifestyle { background-position: center 60%; }

@media (max-width: 720px) {
  /* Portrait mobile — re-center for dramatic crops */
  .slide-jet       { background-position: 55% 45%; }
  .slide-yacht     { background-position: center 55%; }
  .slide-supercar  { background-position: 32% center; }  /* keep full car in frame */
  .slide-watch     { background-position: 55% center; }
  .slide-penthouse { background-position: center 55%; }
  .slide-tropical  { background-position: center 55%; }
  .slide-lifestyle { background-position: center 55%; }
}

/* 1-slide hero */
.hero-slides.single .hero-slide {
  opacity: 1;
  animation: kenBurns 20s ease-in-out infinite alternate;
}

/* 5-slide rotating hero */
.hero-slides.rotate-5 .hero-slide {
  animation: heroRotate5 40s var(--ease) infinite;
}
.hero-slides.rotate-5 .hero-slide:nth-child(1) { animation-delay:  0s; }
.hero-slides.rotate-5 .hero-slide:nth-child(2) { animation-delay:  8s; }
.hero-slides.rotate-5 .hero-slide:nth-child(3) { animation-delay: 16s; }
.hero-slides.rotate-5 .hero-slide:nth-child(4) { animation-delay: 24s; }
.hero-slides.rotate-5 .hero-slide:nth-child(5) { animation-delay: 32s; }

/* 6-slide rotating hero — faster cycle + pronounced push-in */
.hero-slides.rotate-6 .hero-slide {
  animation: heroRotate6 30s var(--ease) infinite;
}
.hero-slides.rotate-6 .hero-slide:nth-child(1) { animation-delay:  0s; }
.hero-slides.rotate-6 .hero-slide:nth-child(2) { animation-delay:  5s; }
.hero-slides.rotate-6 .hero-slide:nth-child(3) { animation-delay: 10s; }
.hero-slides.rotate-6 .hero-slide:nth-child(4) { animation-delay: 15s; }
.hero-slides.rotate-6 .hero-slide:nth-child(5) { animation-delay: 20s; }
.hero-slides.rotate-6 .hero-slide:nth-child(6) { animation-delay: 25s; }

/* 7-slide rotating hero — jet-interior → moonlit yacht → sunseeker → supercar → watch → penthouse → tropical */
.hero-slides.rotate-7 .hero-slide {
  animation: heroRotate7 35s linear infinite;
}
.hero-slides.rotate-7 .hero-slide:nth-child(1) { animation-delay:  0s; }
.hero-slides.rotate-7 .hero-slide:nth-child(2) { animation-delay:  5s; }
.hero-slides.rotate-7 .hero-slide:nth-child(3) { animation-delay: 10s; }
.hero-slides.rotate-7 .hero-slide:nth-child(4) { animation-delay: 15s; }
.hero-slides.rotate-7 .hero-slide:nth-child(5) { animation-delay: 20s; }
.hero-slides.rotate-7 .hero-slide:nth-child(6) { animation-delay: 25s; }
.hero-slides.rotate-7 .hero-slide:nth-child(7) { animation-delay: 30s; }

/* 3-slide rotating hero (for category pages) */
.hero-slides.rotate-3 .hero-slide {
  animation: heroRotate3 24s var(--ease) infinite;
}
.hero-slides.rotate-3 .hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slides.rotate-3 .hero-slide:nth-child(2) { animation-delay: 8s; }
.hero-slides.rotate-3 .hero-slide:nth-child(3) { animation-delay: 16s; }

/* 4-slide rotating hero (yachts.html with exterior + interior mix) */
.hero-slides.rotate-4 .hero-slide {
  animation: heroRotate4 24s var(--ease) infinite;
}
.hero-slides.rotate-4 .hero-slide:nth-child(1) { animation-delay:  0s; }
.hero-slides.rotate-4 .hero-slide:nth-child(2) { animation-delay:  6s; }
.hero-slides.rotate-4 .hero-slide:nth-child(3) { animation-delay: 12s; }
.hero-slides.rotate-4 .hero-slide:nth-child(4) { animation-delay: 18s; }

@keyframes heroRotate4 {
  0%, 25%    { opacity: 1; transform: scale(1.06); }
  28%, 98%   { opacity: 0; transform: scale(1.12); }
  100%       { opacity: 0; transform: scale(1.06); }
}

@keyframes heroRotate5 {
  0%, 20%   { opacity: 1; transform: scale(1.08); }
  22%, 98%  { opacity: 0; transform: scale(1.12); }
  100%      { opacity: 0; transform: scale(1.08); }
}

/* 6-slide cycle with slow cinematic push-in (scale 1.04 → 1.20 over visible window) */
@keyframes heroRotate6 {
  0%       { opacity: 1; transform: scale(1.04); }
  16.67%   { opacity: 1; transform: scale(1.20); }  /* end of visible — fully pushed in */
  19%      { opacity: 0; transform: scale(1.22); }
  98%      { opacity: 0; transform: scale(1.22); }
  100%     { opacity: 0; transform: scale(1.04); }  /* reset to tight for next cycle */
}

/* 7-slide cycle — subtle constant push, no pause, fade overlaps continued motion. Linear timing on the parent animation keeps the rate steady across the visible window. */
@keyframes heroRotate7 {
  0%       { opacity: 1; transform: scale(1.02); }
  13%      { opacity: 1; transform: scale(1.08); }  /* visible push, constant rate */
  16.5%    { opacity: 0; transform: scale(1.10); }  /* fade out while still drifting */
  98%      { opacity: 0; transform: scale(1.10); }
  100%     { opacity: 0; transform: scale(1.02); }  /* reset off-screen */
}

@keyframes heroRotate3 {
  0%, 33%   { opacity: 1; transform: scale(1.06); }
  36%, 98%  { opacity: 0; transform: scale(1.11); }
  100%      { opacity: 0; transform: scale(1.06); }
}
@keyframes kenBurns {
  from { transform: scale(1.05); }
  to   { transform: scale(1.14); }
}

/* ─── Moonlit / cinematic tone for specific yacht + jet slides ─── */
/* Darkens + cools daytime source imagery into a moonlit-feeling palette */
.slide-yacht-moonlit,
.slide-jet-moonlit {
  filter: brightness(0.72) saturate(0.88) contrast(1.08) hue-rotate(190deg);
}

/* Darkening overlay — slightly deeper at top and via a centered vignette so hero copy holds against bright frames without masking the imagery */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(11,11,13,0.65) 0%, rgba(11,11,13,0.42) 45%, rgba(11,11,13,0.88) 100%),
    radial-gradient(ellipse 70% 55% at 50% 42%, rgba(11,11,13,0.35) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 940px;
}

.wordmark {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(40px, 9vw, 84px);
  letter-spacing: clamp(7px, 1.4vw, 16px);
  color: var(--accent);
  margin-bottom: clamp(24px, 5vh, 48px);
  text-shadow:
    0 1px 2px rgba(0,0,0,0.55),
    0 2px 18px rgba(0,0,0,0.55),
    0 4px 48px rgba(0,0,0,0.45);
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--text-low);
  margin-bottom: 18px;
}

.slogan {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(30px, 6vw, 64px);
  line-height: 1.1;
  color: #fafaf6;
  margin-bottom: clamp(20px, 3vh, 32px);
  text-shadow:
    0 1px 2px rgba(0,0,0,0.7),
    0 2px 14px rgba(0,0,0,0.6),
    0 4px 36px rgba(0,0,0,0.5);
}

.sub {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.65;
  color: #e8e6dd;
  max-width: 620px;
  margin: 0 auto clamp(36px, 5vh, 56px);
  text-shadow:
    0 1px 2px rgba(0,0,0,0.75),
    0 2px 10px rgba(0,0,0,0.55);
}

.cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.cta-label {
  font-size: 12px;
  letter-spacing: 3.4px;
  text-transform: uppercase;
  color: var(--text-low);
}

.cta-phone {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(38px, 5.6vw, 62px);
  line-height: 1.05;
  color: var(--accent);
  transition: opacity 0.2s var(--ease);
  text-shadow: 0 2px 22px rgba(0,0,0,0.45);
  white-space: nowrap;
  /* Enlarged 2026-04-23 per founder — phone is the primary CTA for the concierge desk */
}
.cta-phone:hover { opacity: 0.8; }

.cta-note {
  font-size: 13px;
  color: var(--text-low);
  margin-top: 4px;
}

/* Mobile: dial back the top of the clamp and tighten spacing so the number stays on one line cleanly */
@media (max-width: 480px) {
  .cta-phone { font-size: clamp(32px, 9vw, 40px); letter-spacing: 0.5px; }
  .cta-label { font-size: 10px; letter-spacing: 2.8px; }
  .cta-note  { font-size: 12px; }
  .cta-block { gap: 8px; }
}

/* Hero copy bump on mobile — audience skews 30–70, so floor sizes up and brighten the sub */
@media (max-width: 720px) {
  .wordmark { font-size: clamp(42px, 11vw, 64px); letter-spacing: clamp(6px, 2.5vw, 10px); }
  .slogan   { font-size: clamp(32px, 7.5vw, 46px); line-height: 1.15; }
  .sub      { font-size: clamp(17px, 4.6vw, 19px); line-height: 1.55; color: #f0ede3; }
}

.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-whisper);
  z-index: 3;
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.6; }
  50%      { transform: translate(-50%, 6px); opacity: 1; }
}

/* ─────────── 4-TILE CATEGORY GRID (home page) ─────────── */
.categories {
  background: var(--bg);
  padding: clamp(28px, 4.5vh, 64px) 24px;
}
.categories-inner { max-width: 1280px; margin: 0 auto; }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: clamp(16px, 2.5vh, 36px);
}

/* 5/6-tile home portal — progressive breakpoints (shared behavior) */
.cat-grid.five-col { grid-template-columns: repeat(5, 1fr); }
.cat-grid.six-col  { grid-template-columns: repeat(3, 1fr); }  /* 6 tiles = two rows of 3, balanced */
@media (max-width: 1100px) {
  .cat-grid.five-col { grid-template-columns: repeat(3, 1fr); }
  .cat-grid.six-col  { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile: single column, landscape-oriented tile — thin horizontal bands.
   Type is sized for a 30–70 audience; shadows + strong left gradient carry legibility against bright imagery. */
@media (max-width: 720px)  {
  .cat-grid.five-col,
  .cat-grid.six-col { grid-template-columns: 1fr; gap: 12px; }
  .cat-grid.five-col .cat-card,
  .cat-grid.six-col .cat-card {
    aspect-ratio: 16 / 7;
    border-radius: 12px;
    padding: 22px 24px;
  }
  .cat-grid.five-col .cat-card-label,
  .cat-grid.six-col .cat-card-label {
    margin-bottom: 10px;
    font-size: 11px;
    letter-spacing: 2.8px;
    color: #f3e6c2;
    opacity: 1;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8), 0 2px 10px rgba(0,0,0,0.55);
  }
  .cat-grid.five-col .cat-card-title,
  .cat-grid.six-col .cat-card-title {
    font-size: 30px;
    margin-bottom: 4px;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.85), 0 3px 14px rgba(0,0,0,0.55);
  }
  .cat-grid.five-col .cat-card-sub,
  .cat-grid.six-col .cat-card-sub {
    font-size: 15px;
    color: #ece9df;
    line-height: 1.45;
    text-shadow: 0 1px 3px rgba(0,0,0,0.85), 0 2px 10px rgba(0,0,0,0.5);
  }
  /* Denser left gradient so copy always sits on a dark column regardless of the photo */
  .cat-grid.five-col .cat-card::before,
  .cat-grid.six-col .cat-card::before {
    background: linear-gradient(90deg, rgba(11,11,13,0.88) 0%, rgba(11,11,13,0.55) 40%, rgba(11,11,13,0.15) 75%, rgba(11,11,13,0.05) 100%);
  }
}

.cat-card {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 26px;
  cursor: pointer;
  opacity: 0;
  animation: cardSlideUp 0.9s var(--ease) forwards;
}

/* Image layer — lives on ::after so we can GPU-transform it independently */
.cat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  background-color: #0f1118;
  z-index: 0;
  transform: scale(1);
  transform-origin: center center;
  /* default (mouse-out) — fast snap back */
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

/* Hover — subtle slow zoom. Linear timing, modest scale, long duration so the motion reads as drift rather than animation. Gated behind hover-capable pointer so mobile doesn't stick on tap. */
@media (hover: hover) and (pointer: fine) {
  .cat-card:hover::after {
    transform: scale(1.08);
    transition: transform 6s linear;
  }
}

@keyframes cardSlideUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Staggered reveal — first card in at 0.2s, each +0.12s */
.cat-grid .cat-card:nth-child(1) { animation-delay: 0.15s; }
.cat-grid .cat-card:nth-child(2) { animation-delay: 0.28s; }
.cat-grid .cat-card:nth-child(3) { animation-delay: 0.41s; }
.cat-grid .cat-card:nth-child(4) { animation-delay: 0.54s; }
.cat-grid .cat-card:nth-child(5) { animation-delay: 0.67s; }
.cat-grid .cat-card:nth-child(6) { animation-delay: 0.80s; }

.cat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,11,13,0.1) 0%, rgba(11,11,13,0.4) 50%, rgba(11,11,13,0.9) 100%);
  z-index: 0;
}

.cat-card-label, .cat-card-title, .cat-card-sub {
  position: relative;
  z-index: 1;
}

.cat-card-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  opacity: 0.9;
}
.cat-card-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(22px, 2.5vw, 30px);
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.15;
}
.cat-card-sub {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.5;
}

@media (max-width: 960px) { .cat-grid:not(.five-col) { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .cat-grid:not(.five-col) { grid-template-columns: 1fr; gap: 14px; } }
@media (max-width: 520px) { .cat-card { aspect-ratio: 4 / 5; } }

/* ─────────── PILLARS ─────────── */
.pillars-section {
  background: var(--bg);
  padding: clamp(60px, 10vh, 110px) 24px;
  text-align: center;
}
.pillars-row {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 5vw, 72px);
  flex-wrap: wrap;
  max-width: 980px;
  margin: 0 auto;
}
.pillar {
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-mid);
  position: relative;
  padding-left: 20px;
}
.pillar::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.85;
}

/* ─────────── HOW / 3-STEP ─────────── */
.how {
  background: var(--surface);
  padding: clamp(80px, 14vh, 160px) 24px;
}
.how-inner { max-width: 1200px; margin: 0 auto; }

.section-eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-low);
  text-align: center;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(32px, 5vw, 52px);
  color: var(--text);
  text-align: center;
  margin-bottom: clamp(22px, 3.5vh, 44px);
  line-height: 1.15;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 5vw, 64px);
}
.step { text-align: center; }
.step-num {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 64px;
  color: var(--accent);
  opacity: 0.55;
  line-height: 1;
  margin-bottom: 24px;
}
.step h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(22px, 2.8vw, 28px);
  color: var(--text);
  margin-bottom: 16px;
}
.step p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-mid);
  max-width: 320px;
  margin: 0 auto;
}
@media (max-width: 768px) { .steps { grid-template-columns: 1fr; gap: 56px; } }

/* ─────────── OWNERS / CONSIGNORS ─────────── */
.owners {
  position: relative;
  background: var(--bg);
  padding: clamp(100px, 16vh, 180px) 24px;
  text-align: center;
  overflow: hidden;
}
.owners::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(245, 233, 200, 0.04) 0%, transparent 70%);
  z-index: 0;
}
.owners-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.owners h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(28px, 4.5vw, 44px);
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 20px;
}
.owners p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-mid);
  margin-bottom: 36px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.owners .phone-big {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(22px, 3vw, 30px);
  color: var(--accent);
  letter-spacing: 0.5px;
  transition: opacity 0.2s var(--ease);
}
.owners .phone-big:hover { opacity: 0.8; }

/* ─────────── FOOTER ─────────── */
footer {
  background: var(--bg);
  padding: 40px 24px 32px;
  text-align: center;
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--text-whisper);
  border-top: 1px solid rgba(245, 233, 200, 0.06);
}
footer .dot { margin: 0 10px; opacity: 0.35; }
footer a { transition: color 0.2s var(--ease); }
footer a:hover { color: var(--accent); }
footer .credits {
  margin-top: 14px;
  font-size: 9px;
  letter-spacing: 1.2px;
  opacity: 0.45;
  text-transform: none;
}
footer .credits a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }

/* ─────────── SECONDARY CTA (links to /inquire.html from hero) ─────────── */
.cta-secondary {
  display: inline-block;
  margin-top: 18px;
  padding: 11px 22px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(245, 233, 200, 0.3);
  border-radius: 999px;
  background: rgba(245, 233, 200, 0.02);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: all 0.25s var(--ease);
  cursor: pointer;
}
.cta-secondary:hover {
  background: rgba(245, 233, 200, 0.08);
  border-color: rgba(245, 233, 200, 0.55);
  transform: translateY(-1px);
}
@media (max-width: 720px) {
  .cta-secondary { font-size: 11px; padding: 10px 18px; letter-spacing: 1.6px; }
}

/* ─────────── INQUIRY FORM (/inquire.html) ─────────── */
.inquire {
  min-height: 100vh;
  min-height: 100dvh;
  padding: 140px 24px 80px;
  background: var(--bg);
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.inquire-shell {
  width: 100%;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.inquire-progress {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-low);
}
.inquire-progress-bar {
  flex: 1;
  height: 2px;
  background: rgba(245, 233, 200, 0.08);
  border-radius: 999px;
  overflow: hidden;
}
.inquire-progress-bar span {
  display: block;
  height: 100%;
  background: var(--accent);
  border-radius: 999px;
  width: 0;
  transition: width 0.4s var(--ease);
}
.inquire-progress-text { white-space: nowrap; color: var(--text-whisper); }

.inquire-step, .inquire-done {
  animation: inquireFade 0.35s var(--ease);
}
@keyframes inquireFade {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.inquire-eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  opacity: 0.85;
}
.inquire-question {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(30px, 5.5vw, 52px);
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 16px;
}
.inquire-sub {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-mid);
  margin-bottom: 36px;
  max-width: 560px;
}

.inquire-choices {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  margin-bottom: 8px;
}
.inquire-chip {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  padding: 14px 22px;
  color: var(--text-mid);
  background: rgba(245, 233, 200, 0.03);
  border: 1px solid rgba(245, 233, 200, 0.14);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  letter-spacing: 0.2px;
}
.inquire-chip:hover {
  color: var(--text);
  border-color: rgba(245, 233, 200, 0.38);
  background: rgba(245, 233, 200, 0.06);
}
.inquire-chip.selected {
  color: var(--bg);
  background: var(--accent);
  border-color: var(--accent);
  font-weight: 500;
}

.inquire-input-wrap { margin-top: 28px; }
.inquire-input {
  width: 100%;
  padding: 16px 18px;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--text);
  background: rgba(245, 233, 200, 0.02);
  border: 1px solid rgba(245, 233, 200, 0.18);
  border-radius: 10px;
  outline: none;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.inquire-input:focus {
  border-color: rgba(245, 233, 200, 0.55);
  background: rgba(245, 233, 200, 0.05);
}
.inquire-input::placeholder { color: var(--text-whisper); }

.inquire-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
}
.inquire-field { display: flex; flex-direction: column; gap: 8px; }
.inquire-field-full { grid-column: 1 / -1; }
.inquire-field-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-low);
}
.inquire-field-optional { color: var(--text-whisper); text-transform: none; letter-spacing: 0; }
@media (max-width: 600px) {
  .inquire-contact-grid { grid-template-columns: 1fr; gap: 14px; }
}

.inquire-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  gap: 12px;
}
.inquire-back {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-low);
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px 4px;
  transition: color 0.2s var(--ease);
}
.inquire-back:hover { color: var(--text); }
.inquire-next {
  margin-left: auto;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  border: none;
  border-radius: 999px;
  padding: 14px 32px;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.inquire-next:hover:not(:disabled) { transform: translateY(-1px); box-shadow: 0 10px 30px rgba(245, 233, 200, 0.15); }
.inquire-next:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  background: rgba(245, 233, 200, 0.2);
  color: var(--text-whisper);
}

.inquire-done {
  padding: 48px 0;
  text-align: left;
}
.inquire-done-estimate {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 3.2vw, 32px);
  color: var(--accent);
  margin: 8px 0 28px;
}
.inquire-done-body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-mid);
  max-width: 580px;
  margin-bottom: 36px;
}
.inquire-done-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 40px;
  padding: 20px 22px;
  background: rgba(245, 233, 200, 0.03);
  border: 1px solid rgba(245, 233, 200, 0.1);
  border-radius: 12px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--text-low);
}
.inquire-meta-line span { color: var(--accent); font-weight: 500; }

.inquire-done-cta { margin-top: 20px; }

/* ───────── INQUIRY — options cards on done panel ───────── */
.inquire-options-section {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(245, 233, 200, 0.08);
}
.inquire-options-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-low);
  margin-bottom: 18px;
}
.inquire-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}
.inquire-option-card {
  background: var(--surface);
  border: 1px solid rgba(245, 233, 200, 0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.inquire-option-card:hover {
  transform: translateY(-2px);
  border-color: rgba(245, 233, 200, 0.25);
}
.inquire-option-img {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-color: #0f1118;
}
.inquire-option-body { padding: 16px 18px 20px; }
.inquire-option-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  color: var(--text);
  margin-bottom: 4px;
}
.inquire-option-spec {
  font-size: 12px;
  color: var(--text-low);
  margin-bottom: 12px;
  letter-spacing: 0.1px;
}
.inquire-option-price {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--accent);
}
.inquire-options-note {
  margin-top: 18px;
  font-size: 12px;
  color: var(--text-whisper);
  line-height: 1.55;
  max-width: 540px;
}
.cta-phone-link {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(18px, 2.4vw, 24px);
  color: var(--accent);
  transition: opacity 0.2s var(--ease);
}
.cta-phone-link:hover { opacity: 0.8; }

/* ─────────── QUOTE PREVIEW PAGE (/quote.html) ─────────── */
.quote {
  min-height: 100vh;
  min-height: 100dvh;
  padding: 140px 24px 80px;
  background: var(--bg);
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.quote-shell {
  width: 100%;
  max-width: 760px;
}
.quote-loading, .quote-invalid {
  padding: 60px 0;
  text-align: center;
}
.quote-invalid-cta { margin-top: 28px; }

/* ─── Quote preview hero strip (category-specific slideshow) ─── */
.quote-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 14px;
  margin-bottom: 36px;
  background: #080a10;
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.35);
}
.quote-hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.03);
  will-change: opacity, transform;
}
/* First slide visible immediately, regardless of animation state */
.quote-hero .quote-hero-slide:first-child { opacity: 1; }

/* Watches / contain-mode — dial shots don't get cropped */
.quote-hero-contain .quote-hero-slide {
  background-size: contain;
  background-color: #0B0B0D;
}

/* Single slide (art): slow ken-burns */
.quote-hero-slides-1 .quote-hero-slide {
  opacity: 1;
  animation: quoteHeroKenBurns 20s ease-in-out infinite alternate;
}
/* 2-slide rotation */
.quote-hero-slides-2 .quote-hero-slide {
  animation: quoteHeroRotate2 16s ease-in-out infinite;
}
.quote-hero-slides-2 .quote-hero-slide:nth-child(1) { animation-delay: 0s; }
.quote-hero-slides-2 .quote-hero-slide:nth-child(2) { animation-delay: 8s; }

/* 3-slide rotation */
.quote-hero-slides-3 .quote-hero-slide {
  animation: quoteHeroRotate3 21s ease-in-out infinite;
}
.quote-hero-slides-3 .quote-hero-slide:nth-child(1) { animation-delay:  0s; }
.quote-hero-slides-3 .quote-hero-slide:nth-child(2) { animation-delay:  7s; }
.quote-hero-slides-3 .quote-hero-slide:nth-child(3) { animation-delay: 14s; }

/* 4-slide rotation */
.quote-hero-slides-4 .quote-hero-slide {
  animation: quoteHeroRotate4 28s ease-in-out infinite;
}
.quote-hero-slides-4 .quote-hero-slide:nth-child(1) { animation-delay:  0s; }
.quote-hero-slides-4 .quote-hero-slide:nth-child(2) { animation-delay:  7s; }
.quote-hero-slides-4 .quote-hero-slide:nth-child(3) { animation-delay: 14s; }
.quote-hero-slides-4 .quote-hero-slide:nth-child(4) { animation-delay: 21s; }

@keyframes quoteHeroRotate2 {
  0%, 45%   { opacity: 1; transform: scale(1.03); }
  50%, 95%  { opacity: 0; transform: scale(1.08); }
  100%      { opacity: 0; transform: scale(1.03); }
}
@keyframes quoteHeroRotate3 {
  0%, 30%   { opacity: 1; transform: scale(1.03); }
  34%, 95%  { opacity: 0; transform: scale(1.08); }
  100%      { opacity: 0; transform: scale(1.03); }
}
@keyframes quoteHeroRotate4 {
  0%, 22%   { opacity: 1; transform: scale(1.03); }
  25%, 95%  { opacity: 0; transform: scale(1.08); }
  100%      { opacity: 0; transform: scale(1.03); }
}
@keyframes quoteHeroKenBurns {
  from { transform: scale(1.04); }
  to   { transform: scale(1.12); }
}

@media (max-width: 720px) {
  .quote-hero {
    border-radius: 10px;
    margin-bottom: 28px;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.3);
  }
}

.quote-eyebrow {
  font-size: 11px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  opacity: 0.9;
}
.quote-headline {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(34px, 6vw, 56px);
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 12px;
}
.quote-sub {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-mid);
  margin-bottom: 40px;
}

.quote-card {
  background: var(--surface);
  border: 1px solid rgba(245, 233, 200, 0.06);
  border-radius: 18px;
  padding: 32px;
  margin-bottom: 20px;
}
.quote-card-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-low);
  margin-bottom: 16px;
}

.quote-estimate {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 6.5vw, 56px);
  line-height: 1;
  color: var(--accent);
  margin-bottom: 8px;
}
.quote-estimate-unit {
  font-size: 14px;
  color: var(--text-low);
  margin-bottom: 16px;
  font-style: italic;
}
.quote-estimate-note {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-whisper);
  max-width: 520px;
}

.quote-details { display: flex; flex-direction: column; gap: 0; }
.quote-detail-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(245, 233, 200, 0.05);
  font-size: 14px;
}
.quote-detail-row:last-child { border-bottom: none; }
.quote-detail-label { color: var(--text-low); font-weight: 500; }
.quote-detail-value { color: var(--text); text-align: right; max-width: 65%; }

.quote-note-card { }
.quote-note {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-mid);
  max-width: 620px;
}

.quote-addons-intro {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-low);
  margin-bottom: 18px;
  max-width: 560px;
}
.quote-addons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.quote-addon-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  background: rgba(245, 233, 200, 0.02);
  border: 1px solid rgba(245, 233, 200, 0.08);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.quote-addon-row:hover {
  border-color: rgba(245, 233, 200, 0.22);
  background: rgba(245, 233, 200, 0.05);
}
.quote-addon-check {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border: 1.5px solid rgba(245, 233, 200, 0.35);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.15s var(--ease);
  position: relative;
}
.quote-addon-check:checked {
  background: var(--accent);
  border-color: var(--accent);
}
.quote-addon-check:checked::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid var(--bg);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.quote-addon-body { flex: 1; }
.quote-addon-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 4px;
}
.quote-addon-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-low);
  margin-bottom: 6px;
}
.quote-addon-price {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--accent);
  font-style: italic;
}

.quote-lock-card { border-color: rgba(245, 233, 200, 0.18); }
.quote-lock-sub {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-mid);
  margin-bottom: 22px;
  max-width: 560px;
}
.quote-lock-btn {
  width: 100%;
  padding: 18px 28px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.quote-lock-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(245, 233, 200, 0.18);
}
.quote-lock-btn:disabled {
  opacity: 0.55;
  cursor: progress;
}
.quote-lock-note {
  font-size: 12px;
  color: var(--text-whisper);
  margin-top: 14px;
  text-align: center;
}

.quote-expiry {
  margin-top: 28px;
  font-size: 12px;
  color: var(--text-whisper);
  text-align: center;
  letter-spacing: 0.3px;
}

@media (max-width: 600px) {
  .quote { padding: 110px 18px 60px; }
  .quote-card { padding: 24px 20px; border-radius: 14px; }
  .quote-lock-btn { padding: 16px 20px; letter-spacing: 1.5px; }
}

/* ─────────── MOBILE — nav wrapping fix for 6-item menu ─────────── */
@media (max-width: 560px) {
  nav.top { padding: 12px 14px; }
  nav.top .links {
    gap: 10px;
    font-size: 8.5px;
    letter-spacing: 1.4px;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    max-width: calc(100vw - 110px);
  }
  nav.top .links::-webkit-scrollbar { display: none; }
  nav.top .links a { flex: 0 0 auto; }
}

/* ─────────── A11Y MOTION ─────────── */
@media (prefers-reduced-motion: reduce) {
  .hero-slide, .scroll-hint { animation: none; opacity: 1; transform: none; }
  .hero-slides .hero-slide:not(:first-child) { display: none; }
  .inquire-step, .inquire-done { animation: none; }
}

/* ───────── INQUIRY FORM — date picker step ───────── */
.inquire-dates-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 12px;
}
@media (max-width: 600px) {
  .inquire-dates-grid { grid-template-columns: 1fr; gap: 14px; }
}
.inquire-date-input {
  font-family: var(--sans);
  color-scheme: dark;
}
.inquire-date-input::-webkit-calendar-picker-indicator {
  filter: invert(0.9) sepia(0.4);
  opacity: 0.7;
  cursor: pointer;
}
.inquire-date-input:disabled { opacity: 0.4; cursor: not-allowed; }
.inquire-dates-flex { margin-top: 18px; }
.inquire-chip-alt { background: transparent; border-style: dashed; }
.inquire-chip-alt.selected { background: var(--accent); border-style: solid; }
