/* ============================================================
   Georgia Rent Car Premium — main stylesheet
   ============================================================ */

:root {
  --bg: #242937;
  --bg-elev: #1d2230;
  --card: #2e3445;
  --card-2: #384057;
  --border: #3d4559;
  --border-2: #4e586f;
  --text: #ffffff;
  --muted: #b4bccc;
  --muted-2: #8590a6;
  --orange: #ff8a2e;
  --orange-2: #ffa052;
  --blue: #4f8cff;
  --blue-2: #6b9fff;
  --blue-dim: rgba(79, 140, 255, .2);
  --green: #3fe08a;
  --radius: 12px;
  --radius-sm: 8px;
  --nav-h: 64px;
  --container: 1400px;
  --shadow: 0 12px 32px rgba(0, 0, 0, .4);
  --font: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color-scheme: dark;
}

html[data-theme="light"] {
  --bg: #f4f5f8;
  --bg-elev: #ffffff;
  --card: #ffffff;
  --card-2: #f2f3f7;
  --border: #e3e6ee;
  --border-2: #d3d7e2;
  --text: #0e1117;
  --muted: #5b6270;
  --muted-2: #8a919e;
  --shadow: 0 10px 30px rgba(20, 30, 60, .10);
  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.45;
  font-size: 14px;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; padding: 0; }
input, select { font: inherit; }
h1, h2, h3, h4 { margin: 0; letter-spacing: -.01em; }
p { margin: 0; }
svg { display: block; }
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 10px;
  font-weight: 600; font-size: 13px; line-height: 1;
  transition: background .2s, transform .15s, box-shadow .2s, color .2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-orange { background: var(--orange); color: #fff; box-shadow: 0 6px 18px rgba(255, 138, 46, .35); }
.btn-orange:hover { background: var(--orange-2); }
.btn-blue { background: var(--blue); color: #fff; box-shadow: 0 6px 16px rgba(79, 140, 255, .28); }
.btn-blue:hover { background: var(--blue-2); }
.btn-ghost { background: var(--card); border: 1px solid var(--border); color: var(--text); }
.btn-ghost:hover { border-color: var(--border-2); background: var(--card-2); }
.btn-sm { padding: 8px 14px; font-size: 12px; border-radius: 8px; }
.btn-block { width: 100%; justify-content: center; padding: 13px; font-size: 14px; }

/* ---------- Pills / badges ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 13px; border-radius: 999px;
  background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .14);
  font-size: 12.5px; font-weight: 500; color: var(--text); white-space: nowrap;
  transition: background .2s, border-color .2s;
}
.pill:hover { background: rgba(255, 255, 255, .14); border-color: rgba(255, 255, 255, .24); }
html[data-theme="light"] .pill { background: rgba(0, 0, 0, .05); border-color: rgba(0, 0, 0, .08); }
html[data-theme="light"] .pill:hover { background: rgba(0, 0, 0, .09); }
.badge {
  display: inline-block; padding: 4px 11px; border-radius: 6px;
  background: var(--blue); color: #fff; font-size: 11.5px; font-weight: 600; line-height: 1.3;
}
.label {
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
}
.label-orange { color: var(--orange); }
.label-blue { color: var(--blue); }

/* ---------- Navbar ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50; height: var(--nav-h);
  display: flex; align-items: center;
  background: linear-gradient(to bottom, rgba(20, 24, 33, .85), rgba(20, 24, 33, 0));
  transition: background .3s, backdrop-filter .3s, border-color .3s;
}
.nav.scrolled, .nav.solid {
  background: rgba(36, 41, 55, .86);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
html[data-theme="light"] .nav { background: linear-gradient(to bottom, rgba(0, 0, 0, .55), rgba(0, 0, 0, 0)); }
html[data-theme="light"] .nav.scrolled, html[data-theme="light"] .nav.solid { background: rgba(255, 255, 255, .85); }
html[data-theme="light"] .nav:not(.scrolled):not(.solid) { --text: #fff; color: #fff; }
.nav .container { display: flex; align-items: center; gap: 16px; }
.nav-logo { display: flex; align-items: center; margin-right: 12px; flex: none; }
.nav-logo img { height: 44px; width: auto; border-radius: 4px; }
.nav-tools { margin-left: auto; display: flex; align-items: center; gap: 8px; min-width: 0; }
.nav-tools .pill { height: 34px; }
.nav-tools .pill.active { background: var(--blue-dim); border-color: var(--blue); color: var(--blue); }
.icon-btn {
  width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; flex: none;
  color: var(--text); background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .14);
  transition: background .2s, border-color .2s, color .2s;
}
.icon-btn:hover { background: rgba(255, 255, 255, .14); border-color: rgba(255, 255, 255, .24); }
html[data-theme="light"] .icon-btn { background: rgba(0, 0, 0, .05); border-color: rgba(0, 0, 0, .08); }
html[data-theme="light"] .icon-btn:hover { background: rgba(0, 0, 0, .09); }
.icon-btn.active, .icon-btn.active:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.icon-btn svg { width: 16px; height: 16px; }
.nav-burger { display: none; }

/* Mobile drawer (slides in from the right) */
.nav-backdrop {
  position: fixed; inset: 0; z-index: 70; background: rgba(0, 0, 0, .55); backdrop-filter: blur(2px);
  opacity: 0; pointer-events: none; transition: opacity .35s ease;
}
.nav-backdrop.open { opacity: 1; pointer-events: auto; }
.nav-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 71; width: min(320px, 85vw);
  display: flex; flex-direction: column; background: var(--bg-elev); border-left: 1px solid var(--border);
  box-shadow: -16px 0 40px rgba(0, 0, 0, .45);
  transform: translateX(100%); visibility: hidden;
  transition: transform .38s cubic-bezier(.32, .72, 0, 1), visibility 0s linear .38s;
}
.nav-drawer.open { transform: translateX(0); visibility: visible; transition-delay: 0s; }
.nav-drawer-head { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); padding: 0 16px 0 20px; border-bottom: 1px solid var(--border); }
.nav-drawer-head img { height: 40px; width: auto; border-radius: 4px; }
.nav-drawer-links { display: flex; flex-direction: column; padding: 12px; gap: 4px; }
.nav-drawer-links a {
  display: flex; align-items: center; gap: 14px; padding: 14px 12px; border-radius: var(--radius-sm);
  font-size: 16px; font-weight: 600; color: var(--text);
  opacity: 0; transform: translateX(24px); transition: background .2s, opacity .35s ease, transform .4s cubic-bezier(.32, .72, 0, 1);
}
.nav-drawer-links a span { flex: 1; }
.nav-drawer-links a svg { width: 18px; height: 18px; color: var(--orange); flex: none; }
.nav-drawer-links a svg:last-child { width: 16px; height: 16px; color: var(--muted-2); }
.nav-drawer-links a:hover, .nav-drawer-links a:active { background: var(--card); }
.nav-drawer.open .nav-drawer-links a { opacity: 1; transform: none; }
.nav-drawer.open .nav-drawer-links a:nth-child(1) { transition-delay: .1s; }
.nav-drawer.open .nav-drawer-links a:nth-child(2) { transition-delay: .16s; }
.nav-drawer.open .nav-drawer-links a:nth-child(3) { transition-delay: .22s; }
.nav-drawer.open .nav-drawer-links a:nth-child(4) { transition-delay: .28s; }
.nav-drawer-foot { margin-top: auto; padding: 16px; border-top: 1px solid var(--border); }
.nav-drawer-foot .btn svg { width: 16px; height: 16px; }
body.drawer-open { overflow: hidden; }
@media (prefers-reduced-motion: reduce) {
  .nav-drawer, .nav-backdrop, .nav-drawer-links a { transition: none; }
}
@media (min-width: 901px) { .nav-drawer, .nav-backdrop { display: none; } }

/* Dropdowns */
.dd { position: relative; }
.dd-menu {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 220px; z-index: 60;
  background: var(--card); border: 1px solid var(--border); border-radius: 12px;
  padding: 8px; box-shadow: var(--shadow);
  opacity: 0; transform: translateY(-6px); pointer-events: none; transition: opacity .18s, transform .18s;
}
.dd.right .dd-menu { left: auto; right: 0; }
.dd.open .dd-menu { opacity: 1; transform: translateY(0); pointer-events: auto; }
.dd-item {
  display: flex; align-items: center; gap: 10px; width: 100%; text-align: left;
  padding: 9px 10px; border-radius: 8px; font-size: 13px; color: var(--text);
}
.dd-item:hover { background: var(--card-2); }
.dd-item.active { color: var(--blue); font-weight: 600; }
.dd-item input { accent-color: var(--blue); }
.dd-title { padding: 6px 10px 8px; font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; font-weight: 600; }
.dd-actions { display: flex; gap: 8px; padding: 6px 4px 2px; }
.dd-actions .btn { flex: 1; justify-content: center; }

/* Price range panel */
.dd-price { min-width: 320px; padding: 10px 12px 12px; }
.price-fields { display: flex; align-items: flex-end; gap: 10px; padding: 2px 4px 14px; }
.price-field { flex: 1; display: grid; gap: 6px; font-size: 10.5px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; cursor: text; }
.price-field > div {
  display: flex; align-items: center; gap: 4px; height: 40px; padding: 0 12px;
  background: var(--card-2); border: 1px solid var(--border); border-radius: 10px;
  transition: border-color .2s, box-shadow .2s;
}
.price-field > div:focus-within { border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-dim); }
.price-field input {
  width: 100%; min-width: 0; background: none; border: 0; outline: 0; padding: 0;
  color: var(--text); font-size: 15px; font-weight: 700; letter-spacing: -.01em; -moz-appearance: textfield; appearance: textfield;
}
.price-field input::-webkit-outer-spin-button, .price-field input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.price-field b { color: var(--muted); font-size: 13px; font-weight: 600; }
.price-dash { flex: none; width: 10px; height: 2px; margin-bottom: 19px; border-radius: 2px; background: var(--border-2); }
.range2 { position: relative; height: 26px; margin: 0 9px; }
.range2-track { position: absolute; left: 0; right: 0; top: 50%; height: 4px; transform: translateY(-50%); border-radius: 2px; background: var(--border); }
.range2-fill { position: absolute; top: 0; bottom: 0; border-radius: 2px; background: var(--blue); }
.range2 input[type="range"] {
  position: absolute; inset: 0; width: 100%; height: 26px; margin: 0; padding: 0;
  background: none; -webkit-appearance: none; appearance: none; pointer-events: none; outline: none;
}
#pMin { z-index: 2; } #pMax { z-index: 3; }
.range2 input::-webkit-slider-runnable-track { height: 26px; background: transparent; }
.range2 input::-moz-range-track { height: 26px; background: transparent; }
.range2 input::-webkit-slider-thumb {
  -webkit-appearance: none; pointer-events: auto; width: 18px; height: 18px; margin-top: 4px; border-radius: 50%;
  background: var(--card); border: 3px solid var(--blue); box-shadow: 0 2px 8px rgba(0, 0, 0, .35); cursor: grab;
  transition: transform .15s, box-shadow .15s;
}
.range2 input::-moz-range-thumb {
  pointer-events: auto; width: 12px; height: 12px; border-radius: 50%;
  background: var(--card); border: 3px solid var(--blue); box-shadow: 0 2px 8px rgba(0, 0, 0, .35); cursor: grab;
}
.range2 input:hover::-webkit-slider-thumb, .range2 input:active::-webkit-slider-thumb { transform: scale(1.15); box-shadow: 0 0 0 5px var(--blue-dim); }
.range2 input:active::-webkit-slider-thumb { cursor: grabbing; }
.range2 input:focus-visible::-webkit-slider-thumb { box-shadow: 0 0 0 5px var(--blue-dim); }
.range2-ticks { display: flex; justify-content: space-between; padding: 4px 2px 12px; font-size: 10.5px; color: var(--muted-2); }
.price-presets { display: flex; flex-wrap: wrap; gap: 6px; padding: 0 2px 10px; }
.preset {
  padding: 6px 11px; border-radius: 999px; font-size: 11.5px; font-weight: 600;
  background: var(--card-2); border: 1px solid var(--border); color: var(--muted);
  transition: background .2s, border-color .2s, color .2s;
}
.preset:hover { color: var(--text); border-color: var(--border-2); }
.preset.active { background: var(--blue-dim); border-color: var(--blue); color: var(--blue); }
.chev { width: 12px; height: 12px; opacity: .7; }

/* ---------- Hero ---------- */
.hero { position: relative; height: 660px; overflow: hidden; background: #000; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease; will-change: opacity;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 55%;
  transform: scale(1.06); transition: transform 8s linear;
}
.hero-slide.active img { transform: scale(1); }
.hero-video .hero-slide video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-video .hero-text .back { display: inline-flex; margin-bottom: 22px; color: rgba(255, 255, 255, .75); }
.hero-video .hero-text .back:hover { color: #fff; }
.hero-slide::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(18, 21, 30, .84) 0%, rgba(18, 21, 30, .48) 40%, rgba(18, 21, 30, .16) 70%, rgba(18, 21, 30, .1) 100%),
    linear-gradient(to top, var(--bg) 0%, rgba(36, 41, 55, .4) 30%, rgba(36, 41, 55, 0) 60%),
    linear-gradient(to bottom, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, 0) 30%);
}
html[data-theme="light"] .hero-slide::after {
  background:
    linear-gradient(to right, rgba(5, 7, 11, .78) 0%, rgba(5, 7, 11, .4) 40%, rgba(5, 7, 11, .12) 70%, rgba(5, 7, 11, .08) 100%),
    linear-gradient(to top, var(--bg) 0%, rgba(244, 245, 248, 0) 22%),
    linear-gradient(to bottom, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, 0) 30%);
}
.hero-content {
  position: absolute; inset: 0; z-index: 2; display: flex; align-items: center; color: #fff;
}
.hero-text { max-width: 560px; padding-bottom: 20px; }
.hero-text .label { color: rgba(255, 255, 255, .28); margin-bottom: 20px; display: block; }
.hero-title { font-size: 52px; font-weight: 700; line-height: 1.05; letter-spacing: -.02em; }
.hero-title span { display: block; color: #b8bcc6; }
.hero-sub { margin: 20px 0 22px; font-size: 15px; color: #d6d9e0; }
.hero-content > * { animation: fadeUp .8s ease both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.hero-dots {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 3;
  display: flex; gap: 6px;
}
.hero-dots button {
  width: 14px; height: 3px; border-radius: 2px; background: rgba(255, 255, 255, .35); transition: width .3s, background .3s;
}
.hero-dots button.active { width: 26px; background: #fff; }

/* ---------- Category tabs ---------- */
.cats-wrap {
  position: sticky; top: 0; z-index: 40;
  background: var(--bg); border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s;
}
.cats-wrap.stuck {
  top: var(--nav-h);
  background: rgba(36, 41, 55, .9); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}
html[data-theme="light"] .cats-wrap.stuck { background: rgba(244, 245, 248, .9); }
.cats { display: flex; justify-content: center; gap: 14px; padding: 12px 0; }
.cat {
  --ease: cubic-bezier(.4, 0, .2, 1);
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  min-width: 118px; padding: 13px 12px 15px; border-radius: 12px;
  font-size: 12.5px; font-weight: 500; color: var(--muted);
  position: relative; overflow: hidden;
  transition:
    background .45s var(--ease), color .35s var(--ease), min-width .45s var(--ease),
    padding .45s var(--ease), box-shadow .45s var(--ease), transform .35s var(--ease);
}
.cat svg { width: 22px; height: 22px; transition: transform .45s cubic-bezier(.34, 1.56, .64, 1); }
.cat span { transition: transform .35s var(--ease), letter-spacing .35s var(--ease); }
.cat::before {
  /* soft glow that grows in on hover */
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(60% 80% at 50% 100%, rgba(255, 138, 46, .3), transparent 70%);
  opacity: 0; transform: translateY(40%); transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.cat::after {
  /* animated underline */
  content: ""; position: absolute; bottom: 7px; left: 50%;
  width: 18px; height: 2px; border-radius: 2px; background: currentColor;
  transform: translateX(-50%) scaleX(0); transform-origin: center; opacity: 0;
  transition: transform .45s cubic-bezier(.34, 1.4, .64, 1), opacity .3s var(--ease), width .35s var(--ease), background .35s var(--ease);
}
.cat:hover { color: var(--text); background: rgba(255, 255, 255, .08); transform: translateY(-2px); }
.cat:hover::before { opacity: 1; transform: translateY(0); }
.cat:hover svg { transform: translateY(-2px) scale(1.12); }
.cat:hover::after { transform: translateX(-50%) scaleX(1); opacity: 1; }
.cat:active { transform: translateY(0) scale(.97); }
.cat.active {
  background: var(--orange); color: #fff; font-weight: 600;
  box-shadow: 0 6px 18px rgba(255, 138, 46, .36), 0 0 0 0 rgba(255, 138, 46, .5);
  animation: catPop .6s var(--ease);
}
.cat.active:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(255, 138, 46, .5); }
.cat.active::before { opacity: 0; }
.cat.active svg { transform: none; }
.cat.active:hover svg { transform: translateY(-1px) rotate(-6deg) scale(1.08); }
.cat.active::after { transform: translateX(-50%) scaleX(1); opacity: 1; background: #fff; animation: lineShine 2.4s ease-in-out infinite; }
.cat.active:hover::after { width: 30px; animation-duration: 1.2s; }
@keyframes catPop {
  0% { box-shadow: 0 6px 18px rgba(255, 138, 46, .36), 0 0 0 0 rgba(255, 138, 46, .55); }
  100% { box-shadow: 0 6px 18px rgba(255, 138, 46, .36), 0 0 0 14px rgba(255, 138, 46, 0); }
}
@keyframes lineShine {
  0%, 100% { opacity: 1; filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0)); }
  50% { opacity: .55; filter: drop-shadow(0 0 4px rgba(255, 255, 255, .9)); }
}
@media (prefers-reduced-motion: reduce) {
  .cat, .cat svg, .cat::after, .cat::before { transition: none; animation: none; }
}

/* ---------- Section headers ---------- */
.section { padding: 48px 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 20px; }
.section-head h2 { font-size: 24px; font-weight: 700; margin-top: 6px; }
.section-head .count { font-size: 12px; color: var(--muted); }

/* ---------- Vehicle cards ---------- */
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.card {
  background: var(--card); border: 1px solid var(--border); border-radius: 14px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-4px); border-color: var(--border-2); box-shadow: var(--shadow), 0 0 0 1px rgba(79, 140, 255, .25); }
.grid.animate .card { animation: cardIn .55s cubic-bezier(.2, .7, .2, 1) both; animation-delay: calc(var(--i, 0) * 45ms); }
@keyframes cardIn { from { opacity: 0; transform: translateY(14px) scale(.98); } to { opacity: 1; transform: none; } }
.card-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: #000; }
.card-media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity .35s;
}
.card-media img.active { opacity: 1; }
.card-media .badge { position: absolute; top: 12px; left: 12px; z-index: 2; }
.fav {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(20, 24, 33, .6); border: 1px solid rgba(255, 255, 255, .35); color: #fff;
  transition: background .2s, transform .15s;
}
.fav:hover { background: rgba(0, 0, 0, .7); }
.fav svg { width: 13px; height: 13px; }
.fav.on { color: var(--orange); border-color: var(--orange); }
.fav.on svg { fill: currentColor; }
.card-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(0, 0, 0, .55); color: #fff; opacity: 0; transition: opacity .2s, background .2s;
}
.card-arrow svg { width: 12px; height: 12px; }
.card-arrow.prev { left: 8px; }
.card-arrow.next { right: 8px; }
.card-media:hover .card-arrow { opacity: 1; }
.card-arrow:hover { background: rgba(0, 0, 0, .8); }
.card-dots {
  position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; gap: 3px;
}
.card-dots i { width: 4px; height: 4px; border-radius: 50%; background: rgba(255, 255, 255, .45); transition: width .2s, background .2s; }
.card-dots i.active { width: 10px; border-radius: 2px; background: #fff; }
.card-body { padding: 18px 18px 18px; display: flex; flex-direction: column; flex: 1; }
.card-brand { font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.card-model { font-size: 17.5px; font-weight: 700; margin-top: 3px; }
.specs { display: flex; flex-wrap: wrap; gap: 5px 12px; margin-top: 12px; font-size: 12px; color: var(--muted); }
.spec { display: inline-flex; align-items: center; gap: 4px; }
.spec svg { width: 12px; height: 12px; color: var(--blue); opacity: .9; }
.card-foot { margin-top: auto; padding-top: 14px; display: flex; align-items: flex-end; justify-content: space-between; }
.from { font-size: 11px; color: var(--muted); }
.price { font-size: 22px; font-weight: 800; line-height: 1.1; letter-spacing: -.02em; }
.price small { font-size: 12px; font-weight: 500; color: var(--muted); }
.price-3 { font-size: 11.5px; color: var(--green); margin-top: 3px; }
.empty { grid-column: 1 / -1; text-align: center; color: var(--muted); padding: 60px 0; }

/* ---------- Services ---------- */
.services { padding: 70px 0 60px; }
.services .center { text-align: center; margin-bottom: 36px; }
.why-title { display: inline-flex; align-items: center; gap: 14px; font-size: 32px; font-weight: 800; letter-spacing: -.02em; }
.why-title .flag { width: 40px; height: 40px; flex: none; border-radius: 50%; overflow: hidden; box-shadow: 0 4px 14px rgba(0, 0, 0, .3); }
.why-title .flag svg { width: 100%; height: 100%; }
.why-sub { margin-top: 8px; color: var(--muted); font-size: 15px; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1100px; margin: 0 auto; }
.why { text-align: center; padding: 32px 22px; background: var(--card); border: 1px solid var(--border); border-radius: 14px; transition: transform .2s, border-color .2s; }
.why:hover { transform: translateY(-3px); border-color: var(--blue); }
.why svg { width: 44px; height: 44px; margin: 0 auto 16px; color: var(--orange); }
.why h3 { font-size: 18px; font-weight: 700; }
.why p { margin-top: 6px; color: var(--muted); font-size: 13px; line-height: 1.6; }
.book-cta { margin-top: 44px; }
.book-cta h3 { font-size: 18px; font-weight: 700; display: inline-block; padding-bottom: 6px; border-bottom: 2px solid var(--blue); }
.book-cta h3 span { color: var(--blue); }
.book-cta .btn { margin-top: 14px; }

/* ---------- FAQ ---------- */
.faq { padding: 30px 0 60px; }
.faq-box {
  max-width: 600px; margin: 0 auto; background: var(--card); border: 1px solid var(--border); border-radius: 12px; overflow: hidden;
}
.faq-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; font-size: 15px; font-weight: 700; width: 100%; text-align: left; }
.faq-head .plus { width: 22px; height: 22px; border-radius: 50%; border: 1px solid var(--border-2); display: grid; place-items: center; color: var(--muted); transition: transform .25s; }
.faq-head .plus svg { width: 11px; height: 11px; }
.faq-box.open .faq-head .plus { transform: rotate(45deg); }
.faq-list { display: none; border-top: 1px solid var(--border); }
.faq-box.open .faq-list { display: block; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 0; }
.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 12px; width: 100%; text-align: left; padding: 14px 20px; font-size: 13px; font-weight: 600; }
.faq-q svg { width: 12px; height: 12px; color: var(--muted); flex: none; transition: transform .25s; }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 20px 16px; font-size: 13px; color: var(--muted); line-height: 1.6; }
.faq-item.open .faq-a { display: block; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border); padding: 44px 0 26px; background: var(--bg-elev); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px; }
.footer-logo img { height: 44px; width: auto; border-radius: 4px; }
.footer p { color: var(--muted); font-size: 12.5px; margin-top: 12px; max-width: 320px; line-height: 1.6; }
.footer h4 { font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 12px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; font-size: 13px; }
.footer ul a:hover { color: var(--blue); }
.footer-bottom { margin-top: 36px; padding-top: 18px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; font-size: 12px; color: var(--muted-2); }
.footer-links { display: flex; align-items: center; gap: 16px; }
.footer-links a:hover { color: var(--blue); }
.footer-login { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 999px; border: 1px solid var(--border); color: var(--text); font-weight: 600; transition: border-color .2s, color .2s; }
.footer-login:hover { border-color: var(--blue); }
.footer-login svg { width: 13px; height: 13px; }

/* ---------- Vehicle page ---------- */
.subbar {
  position: sticky; top: var(--nav-h); z-index: 40;
  background: var(--bg-elev); border-bottom: 1px solid var(--border);
}
.subbar .container { display: flex; align-items: center; justify-content: space-between; height: 46px; }
.subbar .meta { font-size: 12px; color: var(--muted); }
.subbar .right { display: flex; align-items: center; gap: 12px; }
.subbar .p { text-align: right; line-height: 1.1; }
.subbar .p b { font-size: 15px; display: block; }
.subbar .p span { font-size: 10px; color: var(--muted); }
.page { padding: 20px 0 60px; }
.back { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--muted); margin-bottom: 18px; }
.back:hover { color: var(--text); }
.back svg { width: 12px; height: 12px; }
.detail { display: grid; grid-template-columns: 1fr 330px; gap: 24px; align-items: start; }
.detail-head { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 14px; }
.detail-head .brand { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.detail-head h1 { font-size: 30px; font-weight: 800; letter-spacing: -.02em; display: flex; align-items: center; gap: 12px; }
.detail-head h1 .badge { font-size: 10px; }
.actions { display: flex; gap: 14px; font-size: 12px; color: var(--muted); margin-top: 8px; }
.actions button { display: inline-flex; align-items: center; gap: 5px; }
.actions button:hover { color: var(--text); }
.actions svg { width: 13px; height: 13px; }
.actions .on { color: var(--orange); }
.actions .on svg { fill: currentColor; }
.gallery { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: 1fr 1fr; gap: 6px; height: 400px; border-radius: 12px; overflow: hidden; position: relative; }
.gallery img { width: 100%; height: 100%; object-fit: cover; cursor: pointer; transition: transform .4s; }
.gallery a:hover img { transform: scale(1.03); }
.gallery a { overflow: hidden; display: block; }
.gallery .main { grid-row: 1 / 3; }
.gallery.n1 { grid-template-columns: 1fr; }
.gallery.n2 a:not(.main) { grid-row: 1 / 3; }
.show-all { position: absolute; left: 12px; bottom: 12px; background: #fff; color: #111; font-weight: 600; font-size: 12px; padding: 8px 14px; border-radius: 8px; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 16px; }
.stat { background: var(--card); border: 1px solid var(--border); border-radius: 10px; padding: 14px; text-align: center; }
.stat svg { width: 18px; height: 18px; color: var(--blue); margin: 0 auto 6px; }
.stat .k { font-size: 11px; color: var(--muted); }
.stat .v { font-size: 13px; font-weight: 700; margin-top: 3px; }
.detail h3 { font-size: 15px; font-weight: 700; margin: 26px 0 12px; }
.details-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.detail-item { display: flex; align-items: center; gap: 10px; background: var(--card); border: 1px solid var(--border); border-radius: 10px; padding: 12px; }
.detail-item svg { width: 15px; height: 15px; color: var(--muted); flex: none; }
.detail-item .k { font-size: 11px; color: var(--muted); }
.detail-item .v { font-size: 13px; font-weight: 700; }
.desc { color: var(--muted); line-height: 1.7; font-size: 13px; }
.included { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.included li { list-style: none; display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text); }
.included svg { width: 14px; height: 14px; color: var(--green); }
.included ul { margin: 0; padding: 0; display: contents; }
.config { position: sticky; top: calc(var(--nav-h) + 62px); background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 18px; }
.config h3 { font-size: 15px; margin: 0 0 14px; }
.config .row { padding: 10px 0; }
.config .row + .row { border-top: 1px solid var(--border); }
.config .k { font-size: 12px; font-weight: 600; }
.config .k small { color: var(--muted); font-weight: 400; margin-left: 4px; }
.config .v { font-size: 13px; font-weight: 600; margin-top: 4px; }
.config .big { font-size: 20px; font-weight: 800; margin-top: 4px; }
.config .n { font-size: 11px; color: var(--muted); margin-top: 3px; }
.config .price-row { display: flex; justify-content: space-between; align-items: flex-start; }
.config .price-row .big { margin-top: 0; }
.config .p3 { font-size: 11px; color: var(--green); text-align: right; }
.config .btn { margin-top: 14px; }
.config .k svg { width: 12px; height: 12px; display: inline; vertical-align: -2px; margin-right: 4px; color: var(--muted); }


/* ---------- Blog ---------- */
.chip { padding: 8px 16px; border-radius: 999px; border: 1px solid var(--border-2); color: var(--muted); font-size: 12.5px; font-weight: 600; transition: background .3s, color .3s, border-color .3s, transform .2s; }
.chip:hover { color: var(--text); border-color: var(--text); transform: translateY(-1px); }
.chip.active { background: var(--orange); border-color: var(--orange); color: #fff; box-shadow: 0 6px 16px rgba(255, 138, 46, .35); }
.blog-hero { padding: 28px 0 16px; }
.blog-hero .back, .post-hero .back { display: flex; width: max-content; margin-bottom: 22px; }
.post-hero .back { margin-bottom: 18px; }
.blog-hero h1 { font-size: 40px; font-weight: 800; letter-spacing: -.02em; margin-top: 8px; }
.blog-hero p { color: var(--muted); font-size: 15px; margin-top: 10px; max-width: 560px; }
.blog-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-grid.animate .post-card { animation: cardIn .55s cubic-bezier(.2, .7, .2, 1) both; animation-delay: calc(var(--i, 0) * 60ms); }
.post-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; transition: transform .3s, border-color .3s, box-shadow .3s; }
.post-card:hover { transform: translateY(-4px); border-color: var(--border-2); box-shadow: var(--shadow); }
.post-media { position: relative; display: block; aspect-ratio: 16 / 9; overflow: hidden; background: #000; }
.post-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2, .7, .2, 1); }
.post-card:hover .post-media img { transform: scale(1.05); }
.post-media .badge { position: absolute; top: 12px; left: 12px; }
.post-body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; gap: 8px; }
.post-meta { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--muted); }
.post-meta i { width: 3px; height: 3px; border-radius: 50%; background: var(--muted-2); }
.post-meta.light { color: rgba(255, 255, 255, .8); }
.post-meta.light i { background: rgba(255, 255, 255, .5); }
.post-body h3 { font-size: 18px; font-weight: 700; line-height: 1.3; }
.post-body h3 a:hover { color: var(--orange); }
.post-body p { color: var(--muted); font-size: 13.5px; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.post-more { margin-top: auto; padding-top: 8px; display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--blue); }
.post-more svg { width: 14px; height: 14px; transition: transform .25s; }
.post-more:hover svg { transform: translateX(4px); }

.blog-teaser .section-head { margin-bottom: 24px; }
.blog-teaser .section-head .btn { margin-bottom: 4px; }

.post-hero { position: relative; height: 460px; overflow: hidden; background: #000; color: #fff; display: flex; align-items: flex-end; margin-top: calc(-1 * var(--nav-h)); }
.post-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.post-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, var(--bg) 0%, rgba(36, 41, 55, .75) 30%, rgba(20, 24, 33, .2) 70%, rgba(20, 24, 33, .6) 100%); }
.post-hero-inner { position: relative; z-index: 2; padding-bottom: 36px; }
.post-hero .back { color: rgba(255, 255, 255, .75); }
.post-hero .back:hover { color: #fff; }
.post-hero .badge { display: inline-block; margin-bottom: 14px; }
.post-hero h1 { font-size: 40px; font-weight: 800; letter-spacing: -.02em; line-height: 1.1; max-width: 820px; }
.post-hero .post-meta { margin-top: 14px; }
.post-layout { display: grid; grid-template-columns: 1fr 340px; gap: 40px; padding: 36px 24px 70px; align-items: start; }
.post-content { max-width: 780px; font-size: 16px; line-height: 1.75; color: var(--text); }
.post-content .lead { font-size: 18px; color: var(--muted); margin-bottom: 20px; }
.post-content p { margin: 0 0 18px; color: #d7dce8; }
html[data-theme="light"] .post-content p { color: #2b3140; }
.post-content h2 { font-size: 22px; font-weight: 700; margin: 30px 0 12px; }
.post-content h3 { font-size: 18px; font-weight: 700; margin: 24px 0 10px; }
.post-content ul { padding-left: 22px; margin: 0 0 18px; color: #d7dce8; }
html[data-theme="light"] .post-content ul { color: #2b3140; }
.post-content li { margin-bottom: 8px; }
.post-content blockquote { margin: 24px 0; padding: 16px 20px; border-left: 3px solid var(--orange); background: var(--card); border-radius: 0 12px 12px 0; color: var(--text); font-weight: 500; }
.post-share { display: flex; align-items: center; justify-content: space-between; margin-top: 36px; padding-top: 20px; border-top: 1px solid var(--border); font-size: 13px; color: var(--muted); }
.post-side { position: sticky; top: calc(var(--nav-h) + 20px); display: grid; gap: 16px; }
.side-box { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 20px; }
.side-box h4 { font-size: 15px; font-weight: 700; margin-bottom: 10px; }
.side-box p { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }
.side-post { display: grid; grid-template-columns: 72px 1fr; gap: 12px; align-items: center; padding: 10px 0; border-top: 1px solid var(--border); }
.side-post:first-of-type { border-top: 0; padding-top: 0; }
.side-post img { width: 72px; height: 52px; object-fit: cover; border-radius: 8px; }
.side-title { font-size: 13px; font-weight: 600; line-height: 1.35; }
.side-post:hover .side-title { color: var(--orange); }
.side-meta { font-size: 11.5px; color: var(--muted); margin-top: 3px; }

/* ---------- Modals ---------- */
.modal { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 20px; background: rgba(0, 0, 0, .7); backdrop-filter: blur(6px); }
.modal.open { display: flex; }
.modal-box { background: var(--card); border: 1px solid var(--border); border-radius: 16px; width: 100%; max-width: 440px; padding: 22px; box-shadow: var(--shadow); animation: fadeUp .3s ease both; }
.modal-box h3 { font-size: 17px; margin-bottom: 4px; }
.modal-box .sub { color: var(--muted); font-size: 13px; margin-bottom: 16px; }
.modal-close { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border-radius: 50%; background: rgba(255, 255, 255, .1); color: #fff; display: grid; place-items: center; }
.modal-close svg { width: 14px; height: 14px; }
.field { display: grid; gap: 5px; margin-bottom: 12px; }
.field label { font-size: 12px; color: var(--muted); font-weight: 500; }
.field input, .field select {
  width: 100%; background: var(--bg-elev); border: 1px solid var(--border-2); color: var(--text);
  padding: 10px 12px; border-radius: 8px; font-size: 13px; outline: none; transition: border-color .2s;
}
.field input:focus, .field select:focus { border-color: var(--blue); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.summary { background: var(--bg-elev); border: 1px solid var(--border); border-radius: 10px; padding: 6px 12px; margin-bottom: 14px; font-size: 13px; }
.sum-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 7px 0; color: var(--muted); }
.sum-row + .sum-row { border-top: 1px solid var(--border); }
.sum-row > span:last-child { color: var(--text); font-weight: 600; }
.sum-row small { font-size: 11px; color: var(--muted-2); }
.sum-row .free { color: var(--green); }
.sum-row.total { padding-top: 9px; color: var(--text); font-weight: 600; }
.sum-row.total b { font-size: 17px; }
.success { text-align: center; padding: 20px 0 8px; }
.success svg { width: 44px; height: 44px; color: var(--green); margin: 0 auto 12px; }
.lightbox { position: fixed; inset: 0; z-index: 100; display: none; background: rgba(0, 0, 0, .92); align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 84vh; border-radius: 10px; object-fit: contain; }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; background: rgba(255, 255, 255, .1); color: #fff; display: grid; place-items: center; }
.lb-nav:hover { background: rgba(255, 255, 255, .2); }
.lb-nav svg { width: 18px; height: 18px; }
.lb-nav.prev { left: 24px; } .lb-nav.next { right: 24px; }
.lb-count { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); color: #ccc; font-size: 12px; }


/* ---------- Date picker ---------- */
.field-row.dates { position: relative; }
.date-btn {
  width: 100%; display: flex; align-items: center; gap: 8px; text-align: left;
  background: var(--bg-elev); border: 1px solid var(--border-2); color: var(--text);
  padding: 10px 12px; border-radius: 8px; font-size: 13px; font-weight: 500; transition: border-color .2s, box-shadow .2s;
}
.date-btn svg { width: 15px; height: 15px; color: var(--muted); flex: none; }
.date-btn:hover { border-color: var(--muted-2); }
.date-btn.active { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255, 138, 46, .2); }
.date-btn.active svg { color: var(--orange); }
.datepicker {
  position: absolute; top: calc(100% + 8px); left: 0; z-index: 5; width: 100%; min-width: 396px;
  background: var(--card); border: 1px solid var(--border-2); border-radius: 14px; padding: 12px;
  box-shadow: var(--shadow); animation: fadeUp .22s ease both;
}
.dp-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.dp-hint { font-size: 12px; font-weight: 600; color: var(--orange); }
.dp-nav { width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; color: var(--text); background: var(--card-2); transition: background .2s; }
.dp-nav:hover { background: var(--border-2); }
.dp-nav:disabled { opacity: .3; cursor: default; }
.dp-nav svg { width: 14px; height: 14px; }
.dp-months { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.dp-title { text-align: center; font-size: 13px; font-weight: 700; margin-bottom: 8px; }
.dp-week { display: grid; grid-template-columns: repeat(7, 1fr); font-size: 10.5px; color: var(--muted); text-align: center; margin-bottom: 4px; }
.dp-days { display: grid; grid-template-columns: repeat(7, 1fr); row-gap: 2px; }
.dp-days i { display: block; }
.dp-days button {
  height: 32px; font-size: 12.5px; font-weight: 500; color: var(--text); border-radius: 8px; position: relative;
  transition: background .15s, color .15s, transform .15s;
}
.dp-days button:hover:not(:disabled):not(.sel) { background: var(--card-2); transform: scale(1.06); }
.dp-days button.off { color: var(--muted-2); opacity: .45; cursor: default; }
.dp-days button.today::after { content: ""; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%); width: 4px; height: 4px; border-radius: 50%; background: var(--orange); }
.dp-days button.in { background: rgba(255, 138, 46, .18); border-radius: 0; color: var(--text); }
.dp-days button.sel { background: var(--orange); color: #fff; font-weight: 700; box-shadow: 0 4px 12px rgba(255, 138, 46, .4); }
.dp-days button.sel.today::after { background: #fff; }
.dp-days button.start.end { border-radius: 8px; }
.dp-days button.start:not(.end) { border-radius: 8px 0 0 8px; }
.dp-days button.end:not(.start) { border-radius: 0 8px 8px 0; }
.dp-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--border); font-size: 12px; color: var(--muted); }
@media (max-width: 600px) {
  .datepicker { min-width: 0; }
  .dp-months { grid-template-columns: 1fr; }
  .dp-months .dp-month:last-child { display: none; }
}

/* ---------- Toast ---------- */
.toast { position: fixed; bottom: 24px; left: 50%; transform: translate(-50%, 20px); background: var(--card); border: 1px solid var(--border-2); color: var(--text); padding: 10px 16px; border-radius: 10px; font-size: 13px; opacity: 0; transition: .3s; z-index: 120; pointer-events: none; box-shadow: var(--shadow); }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ---------- Splash (intro logo) ---------- */
.splash { position: fixed; inset: 0; z-index: 200; background: #000; display: grid; place-items: center; transition: opacity .6s; }
.splash.hide { opacity: 0; pointer-events: none; }
.splash img { height: 180px; max-width: min(90vw, 720px); object-fit: contain; animation: fadeUp 1s ease both; }
.splash .tag { margin-top: 24px; font-size: 16px; letter-spacing: .5em; color: #8a919e; text-transform: uppercase; text-align: center; animation: fadeUp 1.2s ease both; }

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
  .grid { grid-template-columns: repeat(3, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .post-layout { grid-template-columns: 1fr; }
  .post-side { position: static; }
  .post-hero { height: 380px; }
  .post-hero h1, .blog-hero h1 { font-size: 30px; }
  .nav-filter, .nav-blog, .nav-contact { display: none; }
  .nav-burger { display: grid; }
  .detail { grid-template-columns: 1fr; }
  .details-grid { grid-template-columns: repeat(2, 1fr); }
  .config { position: static; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .hero { height: 560px; }
  .hero-title { font-size: 42px; }
  .cats { overflow-x: auto; justify-content: flex-start; scrollbar-width: none; }
  .cats::-webkit-scrollbar { display: none; }
  .cat { min-width: 96px; flex: none; }
}
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
  .nav-contact .pill-text { display: none; }
  .nav-contact { width: 34px; padding: 0; justify-content: center; }
  .dd-price { min-width: min(320px, calc(100vw - 48px)); }
  .grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; grid-template-rows: 220px 120px 120px; height: auto; }
  .gallery .main { grid-row: auto; }
  .gallery.n1 { grid-template-rows: 260px; }
  .gallery.n2 { grid-template-rows: 220px 140px; }
  .gallery.n2 a:not(.main) { grid-row: auto; }
  .stats, .details-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-title { font-size: 24px; }
  .splash img { height: 120px; }
  .splash .tag { font-size: 12px; letter-spacing: .4em; }
  .hero-title { font-size: 36px; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 6px; }
  .detail-head { flex-direction: column; gap: 10px; }
  .field-row { grid-template-columns: 1fr; }
}
