:root {
  --bg: #0b0b0b;
  --surface: #141414;
  --surface-2: #1f2020;
  --line: rgba(255,255,255,.12);
  --text: #f4f1ea;
  --muted: #b8b4aa;
  --gold: #d4a017;
  --gold-2: #e5c167;
  --danger: #e76f51;
  --success: #38a169;
  --radius: 8px;
  --container: 1200px;
  --shadow: 0 18px 50px rgba(0,0,0,.35);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}
.maintenance-preview-bar {
  position: sticky;
  top: 0;
  z-index: 80;
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 9px 16px;
  background: #facc15;
  color: #16130a;
  font-size: 13px;
  font-weight: 850;
  text-align: center;
}
.maintenance-preview-bar a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.maintenance-preview-bar + .site-header {
  top: 38px;
}
.maintenance-body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.2), rgba(11,11,11,.94)),
    url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=2200&q=80") center/cover;
}
.maintenance-page {
  width: min(100%, 720px);
  display: grid;
  gap: 18px;
}
.maintenance-brand {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
.maintenance-brand img {
  width: auto;
  height: 48px;
}
.maintenance-page h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(38px, 8vw, 78px);
  line-height: .95;
}
.maintenance-page p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}
.maintenance-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.maintenance-contact a,
.maintenance-admin {
  width: fit-content;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 4px;
  padding: 10px 12px;
  background: rgba(255,255,255,.08);
  color: var(--text);
  font-weight: 800;
}
.maintenance-admin {
  color: #16130a;
  background: var(--gold);
  border-color: var(--gold);
}
@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip;
  }
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11,11,11,.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.topbar {
  display: flex;
  justify-content: center;
  background: var(--gold);
  color: #111;
  border-bottom: 1px solid rgba(0,0,0,.18);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.topbar-inner {
  width: min(100% - 32px, var(--container));
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-inline: auto;
}
.topbar-links,
.topbar-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.topbar-contact {
  justify-content: flex-end;
}
.topbar a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 28px;
  color: #111;
  white-space: nowrap;
}
.topbar a:hover {
  color: #000;
}
.topbar svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.topbar-social {
  width: 28px;
  justify-content: center;
  border: 1px solid rgba(0,0,0,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.18);
}
.topbar-social svg {
  width: 14px;
  height: 14px;
}
.nav-wrap {
  width: min(100% - 32px, var(--container));
  height: 72px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 28px;
  position: relative;
}
.brand {
  color: var(--gold-2);
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -.02em;
}
.brand-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  line-height: 0;
}
.brand-logo img {
  display: block;
  width: auto;
  height: 42px;
  max-width: 190px;
  object-fit: contain;
}
.footer-logo {
  margin-bottom: 14px;
}
.footer-logo img {
  height: 46px;
}
.main-nav {
  display: flex;
  gap: 22px;
  margin-left: auto;
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.main-nav a:hover { color: var(--gold-2); }
.mobile-nav-toggle,
.mobile-nav-cta {
  display: none;
}
.mobile-nav-toggle {
  align-items: center;
  gap: 8px;
  margin-left: auto;
  min-height: 42px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.04);
  color: var(--text);
  border-radius: 4px;
  padding: 8px 10px;
  cursor: pointer;
  flex: 0 0 auto;
}
.mobile-nav-icon {
  display: grid;
  gap: 4px;
  width: 20px;
}
.mobile-nav-icon span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.mobile-nav-toggle strong {
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.nav-cta {
  background: var(--gold);
  color: #16130a;
  padding: 12px 18px;
  border-radius: 4px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
}
.hero {
  min-height: 88vh;
  position: relative;
  display: grid;
  place-items: center;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.3), rgba(11,11,11,.92)), linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.12));
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), 980px);
  max-width: calc(100vw - 32px);
  margin-inline: auto;
  padding: 80px 0;
}
.eyebrow {
  color: var(--gold-2);
  margin: 0 0 12px;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
}
h1, h2, h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}
h1 {
  font-size: clamp(42px, 7vw, 84px);
  max-width: 100%;
  overflow-wrap: break-word;
}
h2 { font-size: clamp(30px, 4vw, 54px); }
h3 { font-size: 24px; }
.hero-subtitle, .lead {
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  max-width: 740px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px;
}
.button-primary { background: var(--gold); color: #18130a; }
.button-primary:hover { background: var(--gold-2); }
.button-ghost { border-color: rgba(255,255,255,.28); color: var(--text); background: rgba(255,255,255,.04); }
.button-ghost:hover { border-color: var(--gold-2); color: var(--gold-2); }
.button-dark { background: #151515; color: var(--gold-2); }
.button-small { min-height: 38px; padding: 10px 14px; font-size: 12px; }
.usp-row {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,.2);
  padding-top: 20px;
}
.usp-row span {
  color: var(--text);
  font-weight: 800;
  font-size: 14px;
}
.usp-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding-right: 10px;
  line-height: 1.25;
}
.usp-item span {
  min-width: 0;
}
.usp-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  padding: 7px;
  color: var(--gold-2);
  border: 1px solid rgba(229,193,103,.5);
  border-radius: 999px;
  background: rgba(229,193,103,.1);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.section { padding: 88px 0; }
.section-muted { background: var(--surface); }
.section-head { margin-bottom: 34px; }
.section-head.split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}
.section-head.centered { text-align: center; }
.section-head.compact { margin-bottom: 20px; }
.text-link { color: var(--gold-2); font-weight: 900; }
.category-strip {
  padding: 34px 0;
  background: #101010;
  border-block: 1px solid var(--line);
}
.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.category-card {
  padding: 13px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
}
.category-card.active, .category-card:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #18130a;
}
.car-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.car-card {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,0) 34%),
    linear-gradient(145deg, #181818, #101010 62%, #0a0a0a);
  border: 1px solid rgba(229,193,103,.18);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 18px 44px rgba(0,0,0,.28);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.car-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(229,193,103,.16), transparent 28%, transparent 70%, rgba(255,255,255,.06));
  opacity: .65;
  pointer-events: none;
}
.car-card:hover {
  transform: translateY(-5px);
  border-color: rgba(229,193,103,.62);
  box-shadow: 0 28px 70px rgba(0,0,0,.42);
}
.car-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #050505;
}
.car-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 48%, rgba(0,0,0,.74)),
    linear-gradient(90deg, rgba(0,0,0,.22), rgba(0,0,0,0) 42%);
  pointer-events: none;
}
.car-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.04);
  transition: transform .5s ease, filter .5s ease;
}
.car-card:hover .car-image img {
  transform: scale(1.055);
  filter: saturate(1.12) contrast(1.07);
}
.car-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 18px;
}
.car-body .eyebrow {
  margin-bottom: -8px;
  color: var(--gold-2);
}
.car-body h3 {
  font-size: clamp(24px, 2.5vw, 32px);
}
.car-body p {
  color: var(--muted);
  margin: 0;
}
.car-body > p:not(.eyebrow) {
  display: -webkit-box;
  min-height: 3em;
  overflow: hidden;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}
.spec-grid.large { grid-template-columns: repeat(4, 1fr); margin: 28px 0; }
.car-card .spec-grid {
  border-color: rgba(229,193,103,.16);
  background: rgba(229,193,103,.16);
  border-radius: 6px;
  overflow: hidden;
}
.spec-grid span {
  background: rgba(10,10,10,.82);
  padding: 14px;
  color: var(--text);
  font-weight: 900;
}
.car-card .spec-grid span {
  min-width: 0;
  padding: 13px 12px;
  font-size: 14px;
  line-height: 1.2;
}
.spec-grid small {
  display: block;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 4px;
}
.car-card .spec-grid small {
  color: rgba(229,193,103,.78);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 4px;
}
.card-bottom strong {
  color: var(--gold-2);
  font-size: 18px;
  line-height: 1.15;
}
.car-cta {
  min-width: 142px;
  box-shadow: 0 12px 26px rgba(212,160,23,.24);
}
.car-cta:hover {
  transform: translateY(-1px);
}
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}
.image-frame {
  border: 1px solid rgba(229,193,103,.28);
  padding: 10px;
  background: #080808;
}
.image-frame img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.stats strong {
  display: block;
  color: var(--gold-2);
  font-size: 34px;
  line-height: 1;
}
.stats span { color: var(--muted); text-transform: uppercase; font-size: 12px; font-weight: 800; }
.reason-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.reason-grid article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.reason-grid span {
  color: var(--gold-2);
  font-weight: 900;
}
.reason-grid p { color: var(--muted); }
.showroom { background: #171717; }
.info-list, .contact-list {
  display: grid;
  gap: 10px;
  color: var(--muted);
  margin: 24px 0;
}
.contact-list a { color: var(--gold-2); }
.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
}
.comparison-card {
  padding: 42px;
  background: var(--surface);
}
.comparison-card.primary {
  background: #0f0f0f;
  border-right: 1px solid var(--line);
}
.comparison-card li { margin-bottom: 12px; color: var(--muted); }
.gift-band {
  background: var(--gold);
  color: #15120a;
}
.gift-band .eyebrow, .gift-band .lead { color: #3d310d; }
.gift-card {
  background: #0d0d0d;
  color: var(--text);
  border: 3px solid rgba(255,255,255,.18);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 36px;
  transform: rotate(2deg);
}
.gift-card span, .gift-card small { color: var(--gold-2); text-transform: uppercase; font-weight: 900; }
.gift-card strong {
  display: block;
  font-size: clamp(34px, 5vw, 58px);
  margin: 50px 0;
}
.service-strip {
  padding: 34px 0;
  background: #090909;
  border-block: 1px solid var(--line);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-grid div {
  display: grid;
  gap: 4px;
  text-align: center;
}
.service-grid strong { color: var(--gold-2); }
.service-grid span { color: var(--muted); font-size: 14px; }
.form-card, .admin-panel, .auth-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
input, textarea, select {
  width: 100%;
  border: 1px solid rgba(255,255,255,.14);
  background: #080808;
  color: var(--text);
  border-radius: 4px;
  padding: 13px 14px;
}
textarea { resize: vertical; }
form { display: grid; gap: 16px; }
.notice {
  border-left: 3px solid var(--gold);
  padding: 16px;
  color: var(--muted);
  background: rgba(229,193,103,.08);
}
.price-tier-box {
  margin-top: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.price-tier-box h2 {
  font-size: 24px;
  padding: 18px;
  background: #101010;
}
.price-tier-box table {
  min-width: 0;
}
.price-tier-box th {
  color: var(--gold-2);
  background: #111;
  border-color: var(--line);
}
.price-tier-box td {
  color: var(--muted);
  border-color: var(--line);
}
.page-hero, .compact-hero {
  padding: 96px 0 56px;
  background: linear-gradient(180deg, #151515, #0b0b0b);
}
.page-hero p { max-width: 760px; color: var(--muted); font-size: 19px; }
.car-detail-hero {
  position: relative;
  min-height: 76vh;
  display: grid;
  align-items: end;
  overflow: hidden;
}
.car-detail-image {
  position: absolute;
  inset: 0;
}
.car-detail-image:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.18), rgba(11,11,11,.94));
}
.car-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.car-detail-content {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}
.car-hero-detail {
  position: relative;
  height: 70vh;
  min-height: 520px;
  overflow: hidden;
}
.car-hero-detail > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.car-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.2), rgba(18,20,20,.18) 42%, var(--bg) 100%);
}
.car-hero-inner {
  position: absolute;
  left: 50%;
  bottom: 54px;
  transform: translateX(-50%);
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: rgba(229,193,103,.78);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 12px;
}
.breadcrumb a:hover { color: var(--gold-2); }
.breadcrumb strong { color: #fff; }
.car-hero-inner h1 {
  color: #fff;
  max-width: 960px;
  text-transform: uppercase;
  letter-spacing: 0;
}
.car-detail-page {
  padding-top: 74px;
}
.car-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 8fr) minmax(320px, 4fr);
  gap: 24px;
  align-items: start;
}
.car-detail-main {
  display: grid;
  gap: 58px;
}
.car-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.car-gallery > div {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  background: #090909;
}
.car-gallery .gallery-main {
  grid-column: 1 / -1;
  aspect-ratio: 16/9;
}
.car-gallery > div:not(.gallery-main) {
  aspect-ratio: 1;
}
.car-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.car-gallery img:hover {
  transform: scale(1.05);
}
.car-copy,
.car-spec-section,
.car-feature-section {
  display: grid;
  gap: 20px;
}
.car-copy h2 {
  color: var(--gold-2);
  font-size: clamp(28px, 3vw, 40px);
}
.car-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
  max-width: 860px;
}
.car-spec-section h3,
.car-feature-section h3,
.rental-box h3 {
  border-left: 4px solid var(--gold);
  padding-left: 14px;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.car-spec-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.car-spec-grid span,
.rental-condition-grid span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.car-spec-grid strong,
.rental-condition-grid strong {
  display: block;
  color: #fff;
  font-size: 24px;
  line-height: 1.2;
}
.car-spec-grid div:nth-child(3) strong {
  color: var(--gold-2);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.feature-grid div {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #1a1c1c;
  border: 1px solid rgba(255,255,255,.1);
  padding: 16px;
  color: var(--text);
}
.feature-grid span {
  color: var(--gold-2);
  font-weight: 900;
}
.rental-box {
  background: linear-gradient(180deg, rgba(26,28,28,.98), rgba(12,15,15,.98));
  border: 1px solid rgba(229,193,103,.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
  padding: 28px;
  display: grid;
  gap: 22px;
}
.rental-condition-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.rental-box p {
  color: var(--muted);
  font-size: 13px;
  margin: 0;
}
.price-tier-table {
  overflow-x: auto;
  border: 1px solid rgba(229,193,103,.2);
  background: #111313;
  border-radius: 6px;
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
}
.price-tier-table table {
  min-width: 620px;
  width: 100%;
  border-collapse: collapse;
  background: #111313;
}
.price-tier-table thead,
.price-tier-table tbody,
.price-tier-table tr {
  background: transparent;
}
.price-tier-table th,
.price-tier-table td {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255,255,255,.09);
  text-align: left;
}
.price-tier-table th {
  color: rgba(229,193,103,.82);
  background: #181a1a;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.price-tier-table td {
  color: var(--text);
  background: #121515;
  font-size: 15px;
}
.price-tier-table tbody tr:nth-child(even) td {
  background: #151818;
}
.price-tier-table tbody tr:hover td {
  background: rgba(229,193,103,.045);
}
.price-tier-table td:first-child {
  color: #fff;
  font-weight: 800;
}
.price-tier-table td:nth-child(2) {
  color: var(--gold-2);
  font-weight: 900;
  white-space: nowrap;
}
.price-tier-table td:nth-child(3) {
  color: var(--muted);
}
.price-tier-table tr:last-child td {
  border-bottom: 0;
}
.booking-sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 24px;
}
.booking-widget {
  background: #282a2b;
  border: 1px solid rgba(255,255,255,.14);
  padding: 28px;
  box-shadow: 0 22px 70px rgba(0,0,0,.32);
}
.booking-price {
  display: grid;
  gap: 4px;
  margin-bottom: 22px;
}
.booking-price span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.booking-price strong {
  color: var(--gold-2);
  font-size: 32px;
  line-height: 1.15;
}
.booking-price small {
  color: var(--muted);
}
.booking-date-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(255,255,255,.18);
}
.booking-date-grid label {
  padding: 12px;
  background: #121414;
}
.booking-date-grid label:first-child {
  border-right: 1px solid rgba(255,255,255,.18);
}
.booking-widget .button {
  width: 100%;
}
.trust-list {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 22px;
  margin-top: 10px;
  display: grid;
  gap: 12px;
}
.trust-list span {
  color: var(--text);
  display: flex;
  gap: 10px;
  align-items: center;
}
.trust-list span:before {
  content: "✓";
  color: var(--gold-2);
  font-weight: 900;
}
.booking-contact-card {
  background: #1a1c1c;
  border: 1px solid rgba(255,255,255,.1);
  padding: 22px;
  text-align: center;
}
.booking-contact-card p {
  margin: 0 0 8px;
  color: var(--muted);
}
.booking-contact-card a {
  color: #fff;
  font-size: 20px;
  font-weight: 800;
}
.booking-contact-card a:hover {
  color: var(--gold-2);
}
.related-section {
  background: #0c0f0f;
  padding: 88px 0;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.prose {
  max-width: 900px;
  color: var(--muted);
  font-size: 18px;
}
.muted { color: var(--muted); }
.flash {
  width: min(100% - 32px, var(--container));
  margin: 16px auto;
  padding: 14px 16px;
  border-radius: 4px;
  font-weight: 800;
}
.flash-success { background: rgba(56,161,105,.18); color: #9ae6b4; border: 1px solid rgba(56,161,105,.4); }
.flash-error { background: rgba(231,111,81,.16); color: #feb2b2; border: 1px solid rgba(231,111,81,.45); }
.will-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity .65s ease,
    transform .65s cubic-bezier(.2,.8,.2,1),
    border-color .2s ease,
    background-color .2s ease;
  transition-delay: var(--reveal-delay, 0ms);
}
.will-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.hero.will-reveal {
  transform: none;
}
.hero.will-reveal .hero-content {
  opacity: 0;
  transform: translateY(18px);
  animation: heroEnter .8s cubic-bezier(.2,.8,.2,1) .12s forwards;
}
@keyframes heroEnter {
  to { opacity: 1; transform: translateY(0); }
}
.motion-reduced .will-reveal,
.motion-reduced .hero.will-reveal .hero-content {
  opacity: 1;
  transform: none;
  animation: none;
  transition: none;
}
.footer {
  background: #070707;
  border-top: 1px solid var(--line);
  padding: 56px 0 24px;
}
.footer-grid {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
}
.footer h3 { font-size: 16px; color: var(--gold-2); margin-bottom: 14px; }
.footer a, .footer p { display: block; color: var(--muted); margin: 0 0 10px; }
.footer .brand-logo {
  display: inline-flex;
  color: inherit;
}
.footer-bottom {
  width: min(100% - 32px, var(--container));
  margin: 36px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.cookie-consent {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
  padding: 16px 18px;
  background: rgba(18, 20, 20, .96);
  border: 1px solid rgba(229, 193, 103, .26);
  color: var(--text);
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
}
.cookie-consent[hidden] { display: none; }
.cookie-consent p {
  margin: 0;
  color: var(--muted);
}
.cookie-consent div {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cookie-consent button {
  border: 1px solid rgba(255,255,255,.16);
  background: transparent;
  color: var(--text);
  padding: 9px 12px;
  font-weight: 800;
  cursor: pointer;
}
.cookie-consent button:last-child {
  border-color: var(--gold);
  background: var(--gold);
  color: #111;
}
.floating-inquiry {
  position: fixed;
  left: 50%;
  bottom: 20px;
  z-index: 75;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  min-width: 250px;
  padding: 14px 22px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: var(--gold);
  color: #15100a;
  box-shadow: 0 18px 45px rgba(0,0,0,.38);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 13px;
}
.floating-inquiry:hover {
  background: var(--gold-2);
}

.auth-body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(17,24,39,.94), rgba(17,24,39,.98)),
    radial-gradient(circle at top right, rgba(212,160,23,.2), transparent 32%);
}
.auth-card {
  width: min(100%, 420px);
  background: #fff;
  color: #17202a;
  border: 1px solid #d9dee7;
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(0,0,0,.22);
}
.auth-card .brand { color: #a97800; }
.auth-logo img {
  height: 48px;
  max-width: 210px;
}
.auth-card h1 {
  color: #17202a;
  font-size: 28px;
  margin: 18px 0;
}
.auth-card label { color: #5c6875; }
.auth-card input {
  background: #fff;
  color: #17202a;
  border-color: #d9dee7;
  border-radius: 6px;
}
.auth-card .button-primary {
  background: #2454c6;
  color: #fff;
  border-radius: 6px;
}
.admin-body {
  --admin-bg: #f6f7f9;
  --admin-surface: #ffffff;
  --admin-surface-2: #eef1f5;
  --admin-text: #17202a;
  --admin-muted: #5c6875;
  --admin-line: #d9dee7;
  --admin-gold: #a97800;
  --admin-blue: #2454c6;
  --admin-sidebar: #111827;
  --admin-sidebar-muted: #9ca3af;
  display: grid;
  grid-template-columns: 248px minmax(0, 1fr);
  min-height: 100vh;
  background: var(--admin-bg);
  color: var(--admin-text);
  font-size: 14px;
}
.admin-sidebar {
  background: var(--admin-sidebar);
  border-right: 1px solid #0f172a;
  padding: 22px 16px;
  position: sticky;
  top: 0;
  height: 100vh;
  box-shadow: none;
}
.admin-brand-block {
  display: grid;
  gap: 2px;
  padding: 0 8px 18px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 18px;
}
.admin-brand-block .brand {
  font-size: 22px;
  color: #fff;
}
.admin-logo img {
  height: 38px;
  max-width: 170px;
}
.admin-brand-block span {
  color: var(--admin-sidebar-muted);
  font-size: 12px;
  font-weight: 700;
}
.admin-menu-close,
.admin-mobile-menu-toggle {
  display: none;
}
.admin-sidebar nav {
  display: grid;
  gap: 10px;
  margin-top: 0;
}
.admin-nav-group {
  display: grid;
  gap: 0;
  border: 1px solid transparent;
  border-radius: 8px;
}
.admin-nav-group > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #d1d5db;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: 10px 11px;
  border-radius: 7px;
  cursor: pointer;
  list-style: none;
}
.admin-nav-group > summary::-webkit-details-marker {
  display: none;
}
.admin-nav-group > summary:after {
  content: "+";
  color: #e5e7eb;
  font-size: 13px;
  line-height: 1;
}
.admin-nav-group[open] > summary:after {
  content: "-";
}
.admin-nav-group[open] {
  background: rgba(255,255,255,.045);
  border-color: rgba(255,255,255,.08);
  padding-bottom: 6px;
}
.admin-nav-group[open] > summary {
  color: #fff;
}
.admin-nav-group > summary:hover {
  background: rgba(255,255,255,.06);
  color: #fff;
}
.admin-nav-links {
  display: grid;
  gap: 2px;
  padding: 2px 6px 0;
}
.admin-sidebar nav a {
  display: block;
  color: #d1d5db;
  padding: 9px 10px 9px 16px;
  border-radius: 6px;
  font-weight: 700;
  letter-spacing: 0;
  border-left: 2px solid transparent;
}
.admin-sidebar nav a:hover {
  background: rgba(255,255,255,.08);
  color: #fff;
}
.admin-sidebar nav a.active {
  background: rgba(36,84,198,.22);
  border-left-color: #7aa2ff;
  color: #fff;
}
.admin-main {
  padding: 24px 28px 40px;
  min-width: 0;
}
.admin-topbar {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: -24px -28px 24px;
  padding: 12px 28px;
  background: #fff;
  border-bottom: 1px solid var(--admin-line);
}
.admin-topbar > div:first-child {
  display: grid;
  gap: 2px;
  min-width: 0;
}
.admin-topbar strong {
  color: var(--admin-text);
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.admin-topbar span {
  color: var(--admin-muted);
  font-size: 12px;
}
.admin-topbar a {
  color: var(--admin-blue);
  font-weight: 800;
}
.admin-topbar-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
  justify-content: flex-end;
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
}
.admin-topbar-actions::-webkit-scrollbar {
  display: none;
}
.admin-search-form {
  flex: 0 1 280px;
  min-width: 180px;
}
.admin-search-form input {
  width: 100%;
  height: 34px;
  padding: 7px 10px;
  font-size: 13px;
}
.admin-topbar-actions a {
  display: inline-flex;
  min-height: 30px;
  white-space: nowrap;
  align-items: center;
  border: 1px solid var(--admin-line);
  border-radius: 6px;
  padding: 6px 9px;
  background: #fff;
  color: var(--admin-text);
  font-size: 11px;
  line-height: 1;
}
.admin-topbar-actions a:hover {
  border-color: var(--admin-blue);
  color: var(--admin-blue);
}
.admin-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}
.admin-head h1 {
  font-size: 28px;
  line-height: 1.15;
  font-weight: 850;
}
.admin-lead {
  max-width: 780px;
  margin-top: 8px;
  color: var(--admin-muted);
}
.admin-body .brand { color: #fff; }
.admin-body .eyebrow {
  color: var(--admin-muted);
  font-size: 11px;
  letter-spacing: .1em;
  margin-bottom: 6px;
}
.admin-body h1, .admin-body h2, .admin-body h3 { color: var(--admin-text); }
.admin-body .button {
  min-height: 38px;
  padding: 9px 13px;
  border-radius: 6px;
  font-size: 12px;
  letter-spacing: .04em;
}
.admin-body .button-primary { background: var(--admin-blue); color: #fff; }
.admin-body .button-primary:hover { background: #1749c9; }
.admin-body .button-small { border-color: var(--admin-line); color: var(--admin-text); background: #fff; }
.admin-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}
.admin-stats article {
  background: var(--admin-surface);
  border: 1px solid var(--admin-line);
  border-radius: var(--radius);
  padding: 18px;
}
.admin-stats span {
  display: block;
  color: var(--admin-blue);
  font-size: 30px;
  line-height: 1.1;
  font-weight: 850;
  margin-bottom: 4px;
}
.admin-stats strong {
  color: var(--admin-muted);
  font-size: 13px;
}
.pipeline-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}
.pipeline-grid article {
  background: #fff;
  border: 1px solid var(--admin-line);
  border-radius: 8px;
  padding: 13px 14px;
}
.pipeline-grid small {
  display: block;
  color: var(--admin-muted);
  font-weight: 800;
  margin-bottom: 4px;
}
.pipeline-grid strong {
  color: var(--admin-text);
  font-size: 22px;
}
.pipeline-grid .danger {
  border-color: #f5b5b5;
  background: #fff7f7;
}
.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}
.panel-head .muted {
  margin-top: 4px;
}
.panel-head h2,
.admin-panel h2 {
  font-size: 18px;
  line-height: 1.25;
}
.table-wrap { overflow-x: auto; }
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
  background: #fff;
}
th, td {
  text-align: left;
  border-bottom: 1px solid var(--admin-line);
  padding: 10px 12px;
  vertical-align: middle;
}
th {
  color: var(--admin-muted);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: .06em;
  background: #f8fafc;
}
td { color: var(--admin-muted); }
td strong {
  color: var(--admin-text);
}
td a { color: var(--admin-blue); font-weight: 800; }
.status {
  display: inline-flex;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(255,255,255,.08);
}
.admin-body .status { background: #edf2f7; }
.status-pending { color: #9a6700; }
.status-contacted { color: #1f5eff; }
.status-confirmed { color: #1d7a46; }
.status-rejected, .status-cancelled { color: #b42318; }
.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.admin-tabs a {
  border: 1px solid var(--admin-line);
  border-radius: 6px;
  padding: 8px 11px;
  color: var(--admin-muted);
  background: #fff;
  font-weight: 800;
}
.admin-tabs a.active {
  background: var(--admin-blue);
  color: #15120a;
  border-color: var(--admin-blue);
  color: #fff;
}
.quick-action-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.quick-action-grid a {
  display: grid;
  gap: 5px;
  border: 1px solid var(--admin-line);
  border-radius: 8px;
  padding: 15px;
  background: #fff;
}
.quick-action-grid a:hover {
  border-color: rgba(36,84,198,.45);
  background: #f8fbff;
}
.quick-action-grid strong {
  color: var(--admin-text);
  font-size: 15px;
}
.quick-action-grid span {
  color: var(--admin-muted);
  font-size: 12px;
}
.empty-state {
  display: grid;
  gap: 4px;
  padding: 24px;
  text-align: center;
  background: #f8fafc;
  border: 1px dashed var(--admin-line);
  border-radius: 8px;
}
.empty-state strong {
  color: var(--admin-text);
}
.empty-state span {
  color: var(--admin-muted);
}
.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.detail-list {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
}
.detail-list dt { color: var(--gold-2); font-weight: 900; }
.admin-body .detail-list dt { color: var(--admin-text); }
.detail-list dd { color: var(--admin-muted); margin: 0; }
.stack-form { display: grid; gap: 16px; }
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.form-grid-wide {
  grid-column: 1 / -1;
}
.admin-hint {
  margin: 0;
  color: var(--admin-muted);
  font-size: 13px;
}
.check {
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: none;
  line-height: 1.35;
}
.check input { width: auto; }
.hp-field {
  position: absolute;
  left: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
.note {
  border-top: 1px solid var(--admin-line);
  padding: 14px 0;
}
.note small { color: var(--admin-muted); margin-left: 8px; }
.activity-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}
.activity-list article {
  border-top: 1px solid var(--admin-line);
  padding-top: 12px;
}
.activity-list strong {
  display: block;
  margin-top: 6px;
}
.activity-list small {
  color: var(--admin-muted);
}
.activity-list p {
  color: var(--admin-muted);
  margin: 6px 0 0;
}
.inline-form {
  display: inline;
}
.text-button {
  border: 0;
  background: transparent;
  color: var(--admin-blue);
  cursor: pointer;
  font-weight: 900;
  padding: 0;
}
.danger-text {
  color: #b42318;
}
.table-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}
.media-field {
  display: grid;
  gap: 12px;
  border: 1px solid var(--admin-line);
  background: #f8fafc;
  border-radius: 8px;
  padding: 14px;
}
.media-field.compact {
  padding: 12px;
}
.media-field h2 {
  margin: 0 0 4px;
}
.media-preview {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--admin-line);
  background: #fff;
}
.media-library-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}
.media-library-card {
  display: grid;
  gap: 10px;
  border: 1px solid var(--admin-line);
  border-radius: 8px;
  background: #fff;
  padding: 10px;
}
.media-library-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 6px;
  background: #eef2f7;
}
.media-library-card strong {
  display: block;
  color: var(--admin-text);
  font-size: 13px;
  margin-bottom: 4px;
}
.media-library-card small {
  display: block;
  color: var(--admin-muted);
  margin-bottom: 8px;
}
.media-library-card input[readonly] {
  font-size: 12px;
  margin-bottom: 8px;
}
.admin-subpanel {
  border: 1px solid var(--admin-line);
  background: #f8fafc;
  border-radius: 8px;
  padding: 16px;
}
.admin-price-tier-table {
  min-width: 900px;
}
.admin-price-tier-table th {
  background: #eef2f7;
}
.admin-price-tier-table td {
  padding: 8px;
}
.admin-price-tier-table input {
  width: 100%;
  min-width: 90px;
}
.admin-price-tier-table td:first-child input,
.admin-price-tier-table td:nth-child(5) input {
  min-width: 190px;
}
.priority-high { color: #b42318; }
.priority-normal { color: #2454c6; }
.priority-low { color: #4b5563; }
.pipeline-board {
  display: grid;
  grid-template-columns: repeat(6, minmax(240px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 12px;
}
.pipeline-column {
  min-width: 240px;
  background: #f8fafc;
  border: 1px solid var(--admin-line);
  border-radius: 8px;
  padding: 12px;
}
.pipeline-column-head,
.pipeline-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.pipeline-column-head {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--admin-line);
}
.pipeline-column-head span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #e8eefc;
  color: var(--admin-blue);
  font-weight: 800;
  font-size: 12px;
}
.pipeline-cards {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}
.pipeline-card {
  display: grid;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--admin-line);
  border-left: 3px solid #cbd5e1;
  border-radius: 8px;
  padding: 12px;
}
.pipeline-card.is-priority {
  border-left-color: #b42318;
}
.pipeline-card p {
  margin: 0;
  color: var(--admin-text);
}
.pipeline-card small,
.pipeline-empty {
  color: var(--admin-muted);
  font-size: 12px;
}
.notice {
  display: grid;
  gap: 4px;
  margin-top: 16px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid var(--admin-line);
  background: #f8fafc;
}
.notice.warning {
  background: #fff8e6;
  border-color: #f2c94c;
  color: #6b4e00;
}
.admin-tabs-secondary {
  margin-top: -8px;
}
.admin-body code {
  background: #eef2f7;
  border: 1px solid var(--admin-line);
  border-radius: 5px;
  padding: 2px 6px;
  font-size: 12px;
}

.admin-body .form-card,
.admin-body .admin-panel,
.admin-body .auth-card {
  background: var(--admin-surface);
  border-color: var(--admin-line);
  color: var(--admin-text);
  box-shadow: none;
  border-radius: 8px;
  padding: 18px;
}
.admin-body label {
  color: var(--admin-muted);
  font-size: 12px;
  letter-spacing: .04em;
}
.admin-body input,
.admin-body textarea,
.admin-body select {
  background: #fff;
  color: var(--admin-text);
  border-color: var(--admin-line);
  padding: 10px 11px;
  border-radius: 6px;
}
.admin-body input:focus,
.admin-body textarea:focus,
.admin-body select:focus {
  outline: 2px solid rgba(31,94,255,.18);
  border-color: var(--admin-blue);
}
.admin-body .muted { color: var(--admin-muted); }
.admin-body .flash-success { background: #e8f6ee; color: #17613a; border-color: #b7e2c8; }
.admin-body .flash-error { background: #fff0f0; color: #9f1c1c; border-color: #ffc9c9; }

@media (max-width: 1020px) {
  .main-nav { display: none; }
  .mobile-nav-toggle { display: inline-flex; }
  .site-header.nav-open .main-nav {
    display: grid;
  }
  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    z-index: 60;
    margin-left: 0;
    gap: 0;
    padding: 10px;
    background: rgba(11,11,11,.98);
    border: 1px solid rgba(255,255,255,.12);
    border-top: 0;
    box-shadow: 0 24px 50px rgba(0,0,0,.36);
  }
  .main-nav a {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 12px 10px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    color: var(--text);
  }
  .main-nav a:last-child { border-bottom: 0; }
  .mobile-nav-cta {
    display: flex;
    justify-content: center;
    margin-top: 8px;
    background: var(--gold);
    color: #16130a !important;
    border-bottom: 0 !important;
    font-weight: 900;
  }
  body.nav-lock {
    overflow: hidden;
  }
  .nav-cta { display: none; }
  .car-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reason-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col, .comparison, .admin-grid, .car-detail-grid { grid-template-columns: 1fr; }
  .booking-sidebar { position: static; }
  .pipeline-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pipeline-board { grid-template-columns: repeat(6, minmax(220px, 1fr)); }
  .comparison-card.primary { border-right: 0; border-bottom: 1px solid var(--line); }
  .admin-body { grid-template-columns: 1fr; }
  .admin-sidebar { position: static; height: auto; }
  .admin-sidebar nav { grid-template-columns: 1fr; }
  .quick-action-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .topbar { display: none; }
  .nav-wrap { height: auto; min-height: 68px; gap: 12px; }
  .brand-logo img { height: 34px; max-width: 150px; }
  .mobile-nav-toggle {
    width: 44px;
    justify-content: center;
    padding: 0;
  }
  .mobile-nav-toggle strong { display: none; }
  .hero { min-height: 78vh; }
  .hero-content {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    min-width: 0;
  }
  .hero-content .eyebrow,
  .hero-content h1,
  .hero-content .hero-subtitle,
  .hero-content .usp-row {
    width: 100%;
    max-width: calc(100vw - 32px);
  }
  .hero-content .eyebrow,
  .hero-content .hero-subtitle {
    overflow-wrap: anywhere;
  }
  h1 {
    font-size: clamp(32px, 8.8vw, 42px);
    overflow-wrap: anywhere;
    word-break: normal;
  }
  .hero-content h1 {
    width: min(100%, 320px);
    max-width: 320px;
  }
  .hero-content .eyebrow,
  .hero-content .hero-subtitle {
    width: min(100%, 320px);
    max-width: 320px;
  }
  .hero-content .eyebrow {
    font-size: 10px;
    letter-spacing: .08em;
  }
  .hero-content .hero-subtitle {
    font-size: 16px;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    max-width: 280px;
    gap: 10px;
    margin-top: 22px;
  }
  .hero-actions .button {
    width: 100%;
    min-width: 0;
    padding-inline: 14px;
  }
  .usp-row, .car-grid, .reason-grid, .service-grid, .footer-grid, .admin-stats, .form-grid, .spec-grid.large {
    grid-template-columns: 1fr;
  }
  .usp-row {
    margin-top: 30px;
    padding-top: 16px;
    gap: 10px;
  }
  .usp-icon {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
    padding: 6px;
  }
  .car-hero-detail { min-height: 460px; height: 62vh; }
  .car-hero-inner {
    bottom: 38px;
  }
  .car-hero-inner h1 {
    font-size: clamp(40px, 12vw, 56px);
    max-width: 92vw;
  }
  .car-gallery, .car-spec-grid, .feature-grid, .rental-condition-grid, .related-grid, .booking-date-grid {
    grid-template-columns: 1fr;
  }
  .booking-date-grid label:first-child { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .category-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    overflow: visible;
    padding-bottom: 0;
  }
  .category-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 11px 10px;
    text-align: center;
    white-space: normal;
    line-height: 1.15;
    font-size: 12px;
  }
  .price-tier-table {
    overflow: visible;
  }
  .price-tier-table table,
  .price-tier-table thead,
  .price-tier-table tbody,
  .price-tier-table tr,
  .price-tier-table th,
  .price-tier-table td {
    display: block;
    width: 100%;
    min-width: 0;
  }
  .price-tier-table table {
    min-width: 0;
  }
  .price-tier-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }
  .price-tier-table tr {
    border-bottom: 1px solid rgba(255,255,255,.12);
    background: #121515;
  }
  .price-tier-table tr:last-child {
    border-bottom: 0;
  }
  .price-tier-table td {
    display: grid;
    grid-template-columns: minmax(96px, 38%) minmax(0, 1fr);
    gap: 12px;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(255,255,255,.07);
    white-space: normal;
  }
  .price-tier-table td::before {
    content: attr(data-label);
    color: rgba(229,193,103,.82);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
  }
  .price-tier-table td:nth-child(2) {
    white-space: normal;
  }
  .section { padding: 58px 0; }
  .hero-content { padding: 56px 0; }
  .comparison-card { padding: 28px; }
  .cookie-consent {
    left: 12px;
    right: 12px;
    bottom: 78px;
    align-items: stretch;
    flex-direction: column;
  }
  .floating-inquiry {
    left: 12px;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    transform: none;
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
    min-width: 0;
    min-height: 54px;
    border-radius: 8px;
  }
  .admin-main { padding: 20px; }
  .admin-sidebar {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 120;
    height: 100vh;
    max-height: none;
    overflow-y: auto;
    padding: 18px 16px 28px;
  }
  .admin-body.admin-menu-open .admin-sidebar { display: block; }
  .admin-brand-block {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    padding-bottom: 12px;
    margin-bottom: 10px;
  }
  .admin-brand-block span { grid-column: 1 / -1; }
  .admin-logo img {
    height: 30px;
  }
  .admin-brand-block span { font-size: 11px; }
  .admin-menu-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 6px;
    background: rgba(255,255,255,.06);
    color: #fff;
    font-weight: 800;
    padding: 6px 10px;
  }
  .admin-sidebar nav {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .admin-nav-group > summary {
    padding: 8px 9px;
  }
  .admin-sidebar nav a {
    padding: 8px 10px 8px 14px;
  }
  .admin-topbar { align-items: center; flex-direction: row; gap: 10px; }
  .admin-mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    border: 1px solid var(--admin-line);
    border-radius: 6px;
    background: #fff;
    color: var(--admin-text);
    font-weight: 900;
    padding: 7px 10px;
  }
  .admin-search-form { display: none; }
  .admin-topbar-actions { justify-content: flex-start; }
  .quick-action-grid { grid-template-columns: 1fr; }
  .detail-list { grid-template-columns: 1fr; }
  .admin-price-tier-table,
  .admin-price-tier-table thead,
  .admin-price-tier-table tbody,
  .admin-price-tier-table tr,
  .admin-price-tier-table th,
  .admin-price-tier-table td {
    display: block;
    width: 100%;
    min-width: 0;
  }
  .admin-price-tier-table {
    min-width: 0;
  }
  .admin-price-tier-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }
  .admin-price-tier-table tr {
    display: grid;
    gap: 10px;
    padding: 12px;
    margin-bottom: 12px;
    border: 1px solid var(--admin-line);
    border-radius: 8px;
    background: #fff;
  }
  .admin-price-tier-table td {
    display: grid;
    gap: 5px;
    padding: 0;
  }
  .admin-price-tier-table td::before {
    content: attr(data-label);
    color: var(--admin-muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
  }
  .admin-price-tier-table input,
  .admin-price-tier-table td:first-child input,
  .admin-price-tier-table td:nth-child(5) input {
    min-width: 0;
  }
}
