/* Ebanks Auto Sales — original design system */
:root {
  --paper: #fafaf7;
  --soft: #f1efe8;
  --hairline: #e6e4dd;
  --ink: #1a1a1a;
  --ink-soft: #2e2e2c;
  --muted: #6b6b68;
  --faint: #a5a49e;
  --accent: #c8321e;   /* warm red */
  --accent-deep: #9d2716;
  --success: #2f6b3a;
  --danger: #b3321e;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-pill: 8px;

  --shadow-1: 0 1px 2px rgba(20,20,20,.04);
  --shadow-2: rgba(0,0,0,.02) 0 0 0 1px, rgba(0,0,0,.04) 0 2px 6px 0, rgba(0,0,0,.08) 0 10px 24px -6px;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
}
[data-theme="dark"] {
  --paper: #111110;
  --soft: #1b1b19;
  --hairline: #2a2a27;
  --ink: #f3f1ea;
  --ink-soft: #d9d7d0;
  --muted: #9a9894;
  --faint: #65645f;
  --accent: #e84a33;
  --accent-deep: #c8321e;
  --shadow-2: rgba(0,0,0,.3) 0 0 0 1px, rgba(0,0,0,.5) 0 10px 30px -8px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html, body { overflow-x: hidden; }
body {
  font-family: var(--font);
  font-weight: 450;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; }

/* Display */
.display { font-family: var(--font-display); font-weight: 600; letter-spacing: 0.005em; line-height: 0.98; }
.eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.muted { color: var(--muted); }
.hairline { border: 1px solid var(--hairline); }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--hairline);
}
.nav-inner {
  max-width: 1440px; margin: 0 auto;
  padding: 18px 32px;
  display: flex; align-items: center; gap: 32px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: -0.02em; font-size: 18px; }
.brand-logo { height: 44px; width: auto; display: block; }
.brand-logo-footer { height: 56px; filter: brightness(0) invert(1); opacity: 0.95; }
.brand-mark {
  width: 28px; height: 28px; border-radius: 7px;
  background: var(--ink); color: var(--paper);
  display: grid; place-items: center;
  font-size: 14px; font-weight: 700;
}
.nav-links { display: flex; gap: 28px; font-size: 14px; font-weight: 500; }
.nav-link { color: var(--ink-soft); padding: 6px 0; position: relative; cursor: pointer; }
.nav-link.active { color: var(--ink); }
.nav-link.active::after { content: ''; position: absolute; left: 0; right: 0; bottom: -20px; height: 2px; background: var(--ink); }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 16px; }
.phone-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: var(--radius-pill);
  border: 1px solid var(--hairline); font-size: 14px; font-weight: 500;
}

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-weight: 500; transition: transform .12s ease, background .15s ease, border-color .15s ease; }
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--accent); color: #fff; padding: 14px 22px; border-radius: 8px; font-size: 15px; }
.btn-primary:hover { background: var(--accent-deep); }
.btn-ghost { padding: 12px 18px; border-radius: 8px; border: 1px solid var(--hairline); color: var(--ink); background: var(--paper); font-size: 14px; }
.btn-ghost:hover { border-color: var(--ink); }
.btn-solid-ink { background: var(--accent); color: #fff; padding: 14px 22px; border-radius: 8px; font-size: 15px; }
.btn-solid-ink:hover { background: var(--accent-deep); }
.icon-btn {
  width: 38px; height: 38px; border-radius: 8px;
  background: rgba(255,255,255,.92); color: var(--ink);
  display: inline-grid; place-items: center;
  box-shadow: 0 0 0 1px rgba(0,0,0,.06), 0 2px 6px rgba(0,0,0,.08);
  transition: transform .12s ease;
}
.icon-btn:active { transform: scale(0.92); }

/* Layout */
.container { max-width: 1440px; margin: 0 auto; padding: 0 32px; }
.section { padding: 72px 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; margin-bottom: 32px; gap: 24px; }

/* Vehicle card */
.v-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px 24px; }
@media (max-width: 1200px) { .v-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px) { .v-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .v-grid { grid-template-columns: 1fr; } }

.v-card { cursor: pointer; display: flex; flex-direction: column; gap: 10px; }
.v-photo-wrap {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
  background: var(--soft);
  position: relative;
}
.v-photo { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.v-card:hover .v-photo { transform: scale(1.03); }
.v-tag {
  position: absolute; top: 12px; left: 12px;
  background: rgba(255,255,255,.95); color: var(--ink);
  font-size: 11px; font-weight: 600; padding: 5px 10px;
  border-radius: 4px;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.v-tag.accent { background: var(--accent); color: #fff; }
.v-fav {
  position: absolute; top: 12px; right: 12px;
}
.v-title-row { display: flex; justify-content: space-between; gap: 12px; align-items: baseline; }
.v-title { font-size: 16px; font-weight: 600; color: var(--ink); letter-spacing: -0.01em; }
.v-price {
  font-family: var(--font-display); font-size: 17px; font-weight: 600; letter-spacing: 0.04em;
  color: var(--ink); white-space: nowrap;
  border: 1.5px solid var(--ink); border-radius: 5px; padding: 1px 8px 2px;
}
.v-sub { font-size: 14px; color: var(--muted); font-weight: 500; }
.v-specs { font-size: 13px; color: var(--muted); display: flex; gap: 10px; flex-wrap: wrap; }
.v-specs span { display: inline-flex; align-items: center; gap: 4px; }
.v-specs .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--faint); }

/* Data-heavy variant */
.v-card.data .v-photo-wrap { aspect-ratio: 3 / 2; border-radius: 8px; }
.v-card.data .v-meta-grid {
  border: 1px solid var(--hairline); border-radius: 12px; padding: 14px; margin-top: 4px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 16px;
}
.v-card.data .kv { display: flex; flex-direction: column; gap: 2px; }
.v-card.data .k { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.v-card.data .v { font-size: 14px; font-weight: 500; color: var(--ink); }

/* Hero */
.hero { position: relative; height: 86vh; min-height: 640px; max-height: 820px; overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media video, .hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-video { opacity: 0; transition: opacity .7s ease; }
.hero-video.ready { opacity: 1; }
.hero-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 55%, rgba(0,0,0,.55) 100%); }
.hero-content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding: 48px 32px; max-width: 1440px; margin: 0 auto; color: #fff; }
.hero-eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; opacity: .9; }
.hero-title { font-family: var(--font-display); font-size: clamp(52px, 7vw, 96px); font-weight: 700; text-transform: uppercase; letter-spacing: 0.01em; line-height: 0.92; margin: 16px 0 20px; max-width: 900px; }
.hero-glow { display: flex; flex-wrap: wrap; gap: 0 0.3em; }
.hero-glow .glow-word {
  display: inline-block;
  color: #fff;
  animation: wordGlow 3.5s ease-in-out infinite;
}
@keyframes wordGlow {
  0%, 100% { text-shadow: 0 0 0px rgba(255,200,180,0), 0 2px 10px rgba(0,0,0,.4); color: #fff; }
  25%      { text-shadow: 0 0 22px rgba(255,100,60,.85), 0 0 44px rgba(200,50,30,.55), 0 2px 10px rgba(0,0,0,.4); color: #ffe9e0; }
  50%, 100% { text-shadow: 0 0 0px rgba(255,200,180,0), 0 2px 10px rgba(0,0,0,.4); color: #fff; }
}
.hero-sub { font-size: 18px; font-weight: 500; opacity: .92; max-width: 520px; }

/* Hero variant: split */
.hero-split { background: var(--paper); color: var(--ink); height: auto; min-height: unset; max-height: unset; padding: 80px 0; }
.hero-split .split-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: center; max-width: 1440px; margin: 0 auto; padding: 0 32px; }
.hero-split .split-title { font-family: var(--font-display); font-size: clamp(44px, 5.5vw, 80px); font-weight: 600; letter-spacing: 0.005em; line-height: 0.95; }
.hero-split .split-photo { aspect-ratio: 4/3; border-radius: 12px; overflow: hidden; }
.hero-split .split-photo img { width: 100%; height: 100%; object-fit: cover; }

/* Hero variant: minimal */
.hero-minimal { height: auto; min-height: unset; max-height: unset; padding: 56px 0 24px; background: var(--paper); color: var(--ink); }
.hero-minimal .hm-inner { max-width: 1440px; margin: 0 auto; padding: 0 32px; }
.hero-minimal .hm-title { font-family: var(--font-display); font-size: clamp(40px, 4.5vw, 66px); font-weight: 600; letter-spacing: 0.005em; line-height: 0.95; max-width: 900px; }
.hero-minimal .hm-sub { color: var(--muted); margin-top: 12px; max-width: 560px; }

/* Search bar on hero */
.search-bar {
  background: rgba(255,255,255,.98);
  color: var(--ink);
  border-radius: 10px;
  padding: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  align-items: center;
  gap: 0;
  max-width: 920px;
  box-shadow: var(--shadow-2);
  margin-top: 32px;
}
.search-seg { padding: 10px 22px; display: flex; flex-direction: column; gap: 2px; border-right: 1px solid var(--hairline); cursor: pointer; }
.search-seg:last-of-type { border-right: none; }
.search-seg label { font-size: 11px; font-weight: 600; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; }
.search-seg select, .search-seg input {
  border: none; outline: none; background: none; color: var(--ink);
  font-size: 14px; font-weight: 500; padding: 0; appearance: none;
  -webkit-appearance: none;
}
.search-submit {
  height: 48px; padding: 0 24px; border-radius: 8px;
  background: var(--accent); color: #fff;
  display: inline-flex; align-items: center; gap: 8px; margin-left: 8px;
  font-size: 15px; font-weight: 600;
}
.search-submit:hover { background: var(--accent-deep); }

/* Inline hero search light variant */
.hero-minimal .search-bar { background: var(--paper); border: 1px solid var(--hairline); }

/* Strip of stats under hero */
.trust-strip { border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); background: var(--paper); }
.trust-inner { max-width: 1440px; margin: 0 auto; padding: 28px 32px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: nowrap; }
.trust-item { display: flex; align-items: center; gap: 12px; min-width: 0; }
.trust-num { font-size: clamp(20px, 2.2vw, 28px); font-weight: 700; letter-spacing: -0.02em; color: var(--ink); white-space: nowrap; }
.trust-lbl { font-size: clamp(11px, 1vw, 13px); color: var(--muted); max-width: 180px; }
.trust-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--hairline); }

/* Filters */
.filter-row { display: flex; align-items: center; gap: 12px; padding: 16px 0; border-bottom: 1px solid var(--hairline); flex-wrap: wrap; }
.chip {
  border: 1px solid var(--hairline); background: var(--paper); color: var(--ink-soft);
  padding: 8px 14px; border-radius: var(--radius-pill); font-size: 13px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 6px;
}
.chip:hover { border-color: var(--ink); }
.chip.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* Price range slider */
.price-slider { position: relative; flex: 1 1 260px; max-width: 420px; height: 22px; }
.ps-track {
  position: absolute; top: 50%; left: 0; right: 0; height: 4px;
  transform: translateY(-50%); background: var(--hairline); border-radius: 2px;
}
.ps-fill { position: absolute; top: 0; bottom: 0; background: var(--accent); border-radius: 2px; }
.price-slider input[type="range"] {
  position: absolute; top: 0; left: 0; width: 100%; height: 22px; margin: 0;
  -webkit-appearance: none; appearance: none; background: none; pointer-events: none;
}
.price-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; pointer-events: auto;
  width: 20px; height: 20px; border-radius: 6px;
  background: var(--paper); border: 2px solid var(--ink);
  box-shadow: var(--shadow-1); cursor: grab;
}
.price-slider input[type="range"]:active::-webkit-slider-thumb { cursor: grabbing; border-color: var(--accent); }
.price-slider input[type="range"]::-moz-range-thumb {
  pointer-events: auto; width: 16px; height: 16px; border-radius: 5px;
  background: var(--paper); border: 2px solid var(--ink);
  box-shadow: var(--shadow-1); cursor: grab;
}
.price-slider input[type="range"]:active::-moz-range-thumb { cursor: grabbing; border-color: var(--accent); }
.price-slider input[type="range"]::-moz-range-track { background: none; }
.price-slider input[type="range"]:focus-visible::-webkit-slider-thumb { outline: 2px solid var(--accent); outline-offset: 2px; }
.price-slider input[type="range"]:focus-visible::-moz-range-thumb { outline: 2px solid var(--accent); outline-offset: 2px; }
.ps-values {
  font-family: var(--font-display); font-size: 16px; font-weight: 600; letter-spacing: 0.04em;
  color: var(--ink); white-space: nowrap;
  border: 1.5px solid var(--ink); border-radius: 5px; padding: 1px 10px 2px;
}
.select-pill {
  border: 1px solid var(--hairline); background: var(--paper); color: var(--ink);
  padding: 8px 14px; border-radius: var(--radius-pill); font-size: 13px; font-weight: 500;
  cursor: pointer; appearance: none; -webkit-appearance: none; padding-right: 32px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path d='M3 4.5L6 7.5L9 4.5' stroke='%231a1a1a' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat; background-position: right 10px center;
}
[data-theme="dark"] .select-pill { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path d='M3 4.5L6 7.5L9 4.5' stroke='%23f3f1ea' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>"); }

/* Footer */
.footer { border-top: 1px solid var(--hairline); padding: 56px 0 32px; margin-top: 72px; background: var(--soft); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; max-width: 1440px; margin: 0 auto; padding: 0 32px; }
.footer-col h4 { font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin: 0 0 16px; }
.footer-col a { display: block; padding: 4px 0; font-size: 14px; color: var(--ink-soft); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { max-width: 1440px; margin: 32px auto 0; padding: 24px 32px 0; border-top: 1px solid var(--hairline); color: var(--muted); font-size: 12px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; }

/* Detail page gallery */
.detail-main-photo { border-radius: 12px; overflow: hidden; background: var(--soft); aspect-ratio: 16 / 10; }
.detail-main-photo img { width: 100%; height: 100%; object-fit: cover; }
.detail-thumbs { display: flex; gap: 8px; margin-top: 8px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: thin; }
.detail-thumb { flex: 0 0 auto; width: 104px; height: 78px; border-radius: 10px; overflow: hidden; background: var(--soft); border: 2px solid transparent; padding: 0; cursor: pointer; transition: border-color .12s ease; }
.detail-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.detail-thumb:hover { border-color: var(--hairline); }
.detail-thumb.active { border-color: var(--accent); }

.booking-panel {
  position: sticky; top: 100px;
  background: var(--paper); border: 1px solid var(--hairline);
  border-radius: 14px; padding: 24px;
  box-shadow: var(--shadow-2);
}
.booking-price {
  font-family: var(--font-display); font-size: 36px; font-weight: 700; letter-spacing: 0.02em;
  display: inline-block; border: 2px solid var(--ink); border-radius: 6px; padding: 2px 14px 4px;
}
.booking-sub { font-size: 14px; color: var(--muted); margin-bottom: 20px; }
.booking-row { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--hairline); border-radius: 10px; overflow: hidden; margin-bottom: 12px; }
.booking-row.single { grid-template-columns: 1fr; }
.booking-cell { padding: 12px 14px; border-right: 1px solid var(--hairline); }
.booking-cell:last-child { border-right: none; }
.booking-cell .k { font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.booking-cell .v { font-size: 14px; font-weight: 500; color: var(--ink); margin-top: 2px; }

/* Forms */
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 12px; font-weight: 600; letter-spacing: 0.04em; color: var(--muted); }
.field input, .field textarea, .field select {
  border: 1px solid var(--hairline); background: var(--paper); color: var(--ink);
  border-radius: 8px; padding: 12px 14px; font-size: 14px; font-weight: 500;
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 2px var(--ink); }
.field.error input, .field.error textarea, .field.error select { border-color: var(--danger); }
.field.error .err { font-size: 12px; color: var(--danger); }

/* Tweaks panel */
.tweaks {
  position: fixed; right: 24px; bottom: 24px; z-index: 100;
  width: 300px; background: var(--paper); border: 1px solid var(--hairline);
  border-radius: 14px; box-shadow: var(--shadow-2);
  padding: 18px; font-size: 13px;
  display: none;
}
.tweaks.open { display: block; }
.tweaks h3 { margin: 0 0 4px; font-size: 14px; font-weight: 600; letter-spacing: -0.01em; }
.tweaks .sub { font-size: 12px; color: var(--muted); margin-bottom: 14px; }
.tweaks .group { margin-bottom: 14px; }
.tweaks .group .lbl { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.tweaks .opts { display: flex; gap: 6px; flex-wrap: wrap; }
.tweaks .opt { padding: 6px 10px; border: 1px solid var(--hairline); border-radius: var(--radius-pill); font-size: 12px; cursor: pointer; }
.tweaks .opt.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.tweaks .sw { width: 26px; height: 26px; border-radius: 50%; border: 2px solid var(--hairline); cursor: pointer; }
.tweaks .sw.active { outline: 2px solid var(--ink); outline-offset: 2px; }

/* SPA pages */
.page { display: none; }
.page.active { display: block; }

/* About */
.about-hero { padding: 72px 0 48px; }
.about-hero h1 { font-size: clamp(40px, 5vw, 72px); font-weight: 700; letter-spacing: -0.035em; line-height: 1; max-width: 900px; }
.about-hero p { font-size: 18px; color: var(--muted); max-width: 620px; margin-top: 20px; line-height: 1.5; }
.about-photo { aspect-ratio: 16/9; border-radius: 12px; overflow: hidden; background: var(--soft); margin-bottom: 48px; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-body { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; }
.about-body h2 { font-size: 28px; font-weight: 600; letter-spacing: -0.02em; margin: 0 0 16px; }
.about-body p { font-size: 16px; line-height: 1.6; color: var(--ink-soft); margin: 0 0 16px; }

.team-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.team-card { text-align: left; }
.team-photo { aspect-ratio: 1/1; border-radius: 8px; overflow: hidden; background: var(--soft); margin-bottom: 12px; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-size: 16px; font-weight: 600; }
.team-role { font-size: 14px; color: var(--muted); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-card { background: var(--soft); border-radius: 12px; padding: 28px; }
.map-card { aspect-ratio: 4/3; border-radius: 12px; background: var(--soft); overflow: hidden; position: relative; }

/* Utils */
.row { display: flex; gap: 16px; }
.stack { display: flex; flex-direction: column; gap: 16px; }
.divider { height: 1px; background: var(--hairline); margin: 32px 0; }

/* Responsive helper grids (used by home / about / detail) */
.rgrid-2 { display: grid; grid-template-columns: 1fr 1fr; }
.rgrid-3 { display: grid; grid-template-columns: repeat(3, 1fr); }
.rgrid-4 { display: grid; grid-template-columns: repeat(4, 1fr); }

/* Detail page layout */
.detail-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 64px; align-items: start; }
.detail-specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px 24px; }
.detail-perks { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; }

/* Mobile nav */
.nav-toggle {
  display: none; width: 42px; height: 42px; border-radius: 10px;
  align-items: center; justify-content: center;
  border: 1px solid var(--hairline); background: var(--paper); color: var(--ink);
}
.nav-mobile { display: none; }

/* Responsive */
@media (max-width: 1100px) {
  .rgrid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-right { gap: 10px; }
  .nav-right .btn-solid-ink { display: none; }
  .nav-inner { gap: 12px; padding: 14px 20px; }
  .nav-mobile.open {
    display: flex; flex-direction: column;
    padding: 8px 20px 16px; border-top: 1px solid var(--hairline);
    background: color-mix(in srgb, var(--paper) 96%, transparent);
  }
  .nav-mobile .nav-link { padding: 14px 2px; font-size: 16px; border-bottom: 1px solid var(--hairline); color: var(--ink); }
  .nav-mobile .nav-link.active { font-weight: 600; }
  .nav-mobile .nav-link.active::after { display: none; }
  .nav-mobile .btn { margin-top: 14px; width: 100%; }
  .nav-mobile .phone-pill { margin-top: 14px; justify-content: center; }

  .search-bar { grid-template-columns: 1fr; border-radius: 10px; padding: 10px; gap: 2px; }
  .search-seg { border-right: none; border-bottom: 1px solid var(--hairline); padding: 12px 16px; }
  .search-seg:last-of-type { border-bottom: none; }
  .search-submit { width: 100%; height: 46px; border-radius: 10px; margin: 6px 0 0; }
  .detail-thumb { width: 84px; height: 62px; }
  .about-body, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .team-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-split .split-grid { grid-template-columns: 1fr; }

  .detail-layout { grid-template-columns: 1fr; gap: 32px; }
  .booking-panel { position: static; top: auto; }
  .rgrid-2 { grid-template-columns: 1fr; }
  .rgrid-3 { grid-template-columns: 1fr; }
  .trust-inner { flex-wrap: wrap; justify-content: flex-start; gap: 14px 20px; }
  .trust-dot { display: none; }
}
@media (max-width: 700px) {
  .container { padding: 0 20px; }
  .nav-inner { padding: 14px 16px; }
  .hero { height: auto; min-height: 520px; max-height: none; }
  .hero-content { padding: 40px 20px 36px; }
  .hero-sub { font-size: 16px; }
  .detail-specs { grid-template-columns: repeat(2, 1fr); }
  .detail-perks { grid-template-columns: 1fr; }
  .rgrid-4 { grid-template-columns: 1fr 1fr; }
  .trust-inner { padding: 20px 16px; }
  .brand-logo { height: 38px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .rgrid-4, .team-row, .footer-grid { grid-template-columns: 1fr; }
  .nav-right .phone-pill { display: none; }
  .v-grid { gap: 22px 16px; }
  .booking-panel { padding: 20px; }
  .booking-price { font-size: 28px; }
}
