/* ==========================================================================
   Zorro's Rental — Production Stylesheet
   Design Philosophy: Modern Local Garage / Editorial Automotive
   ========================================================================== */

:root {
  --ink: #171714;
  --paper: #f2efe8;
  --paper-2: #e8e4da;
  --muted: #777368;
  --line: rgba(23, 23, 20, 0.16);
  --line-light: rgba(255, 255, 255, 0.18);
  --accent: #b94737;
  --accent-2: #8f3026;
  --white: #ffffff;
  --radius: 0px;
  --shadow: 0 14px 40px rgba(20, 20, 17, 0.12);
  --max: 1320px;
  --transition: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

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

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

img, svg {
  display: block;
  max-width: 100%;
}

::selection {
  background: var(--accent);
  color: var(--white);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Layout Utilities */
.shell {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
  display: inline-block;
}

/* Buttons */
.btn {
  border: 1px solid var(--ink);
  min-height: 48px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 750;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: transform var(--transition), background-color var(--transition), color var(--transition), border-color var(--transition);
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
}

.btn-dark:hover {
  background: #2b2b27;
  border-color: #2b2b27;
}

.btn-accent {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.btn-accent:hover {
  background: var(--accent-2);
  border-color: var(--accent-2);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
}

.btn-ghost:hover {
  background: var(--ink);
  color: var(--white);
}

.btn-white {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.btn-white:hover {
  background: var(--paper);
  border-color: var(--paper);
}

.btn-block {
  width: 100%;
}

/* Header & Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(242, 239, 232, 0.92);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 25px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border: 2px solid var(--ink);
  display: grid;
  place-items: center;
  font-size: 18px;
  line-height: 1;
  transform: skewX(-7deg);
  background: var(--ink);
  color: var(--paper);
}

.brand-mark span {
  transform: skewX(7deg);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-links a {
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -4px;
  height: 2px;
  background: var(--accent);
  transition: right 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  right: 0;
}

.nav-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

.nav-status {
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.nav-status b {
  color: var(--ink);
}

.menu-btn {
  display: none;
  border: 1px solid var(--ink);
  background: transparent;
  width: 42px;
  height: 42px;
  place-items: center;
  font-size: 20px;
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
  z-index: 59;
  padding: 24px;
  box-shadow: var(--shadow);
  transform: translateY(-100%);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-drawer.open {
  transform: translateY(0);
}

.mobile-nav-links {
  display: grid;
  gap: 16px;
  margin-bottom: 20px;
}

.mobile-nav-links a {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

/* Hero Section */
.hero {
  min-height: calc(100vh - 76px);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: stretch;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  width: 100%;
  min-height: 720px;
}

.hero-copy {
  padding: 84px max(32px, calc((100vw - var(--max)) / 2)) 54px max(24px, calc((100vw - var(--max)) / 2));
  padding-right: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.hero-copy::after {
  content: "Z";
  position: absolute;
  right: -26px;
  bottom: -138px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 420px;
  font-weight: 800;
  line-height: 0.8;
  color: rgba(23, 23, 20, 0.035);
  pointer-events: none;
}

.hero h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(68px, 7.1vw, 124px);
  line-height: 0.84;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  margin: 26px 0 30px;
  max-width: 800px;
}

.hero h1 .accent {
  color: var(--accent);
}

.hero-lead {
  font-size: 17px;
  max-width: 600px;
  color: #514e46;
  margin: 0 0 30px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-meta {
  margin-top: 60px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.meta-item {
  padding: 18px 16px 0 0;
}

.meta-item span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 5px;
}

.meta-item strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  letter-spacing: 0.01em;
  color: var(--ink);
}

.hero-visual {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  min-height: 620px;
  color: var(--white);
}

.visual-layer {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 26%, rgba(185, 71, 55, 0.24), transparent 31%),
    linear-gradient(130deg, rgba(255, 255, 255, 0.025), transparent 44%),
    #171714;
}

.visual-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 95%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 95%);
}

.car-stage {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: pan-y;
  cursor: grab;
}

.car-stage:active {
  cursor: grabbing;
}

.car-stage canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

.hero-visual-label {
  position: absolute;
  left: 38px;
  top: 34px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  z-index: 10;
  pointer-events: none;
}

.hero-visual-note {
  position: absolute;
  right: 38px;
  bottom: 32px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  z-index: 10;
  pointer-events: none;
}

.hero-badge {
  position: absolute;
  left: 38px;
  bottom: 32px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  padding: 11px 13px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10;
  pointer-events: none;
  max-width: 320px;
}

/* Ticker Marquee */
.ticker {
  background: var(--accent);
  color: var(--white);
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  user-select: none;
}

.ticker-track {
  display: flex;
  gap: 34px;
  white-space: nowrap;
  padding: 11px 0;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  animation: ticker 24s linear infinite;
  width: max-content;
}

.ticker-track span::after {
  content: "✦";
  margin-left: 34px;
  opacity: 0.7;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

/* General Section Layout */
section {
  border-bottom: 1px solid var(--line);
}

.section-head {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  padding: 96px 0 48px;
  align-items: end;
}

.section-kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--muted);
}

.section-head h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(48px, 5.4vw, 82px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  margin: 0;
  max-width: 900px;
}

.section-head p {
  max-width: 680px;
  color: #5c584f;
  margin: 18px 0 0;
  font-size: 15px;
}

/* Section 01: Fleet */
.fleet-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 22px;
}

.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter {
  border: 1px solid var(--line);
  background: transparent;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all var(--transition);
}

.filter:hover {
  border-color: var(--ink);
}

.filter.active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.fleet-count {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

.fleet-list {
  border-top: 1px solid var(--line);
}

.fleet-row {
  display: grid;
  grid-template-columns: 100px minmax(270px, 1.2fr) minmax(260px, 0.8fr) 220px;
  align-items: stretch;
  min-height: 280px;
  border-bottom: 1px solid var(--line);
  transition: background-color var(--transition);
}

.fleet-row:hover {
  background: rgba(255, 255, 255, 0.36);
}

.fleet-row.is-hidden {
  display: none;
}

.fleet-index {
  padding: 26px 18px 0 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  color: var(--muted);
  font-weight: 700;
}

.fleet-image {
  background: #dcd7cc;
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: grid;
  place-items: center;
}

.fleet-image::after {
  content: "PHOTO UNIT ASLI";
  position: absolute;
  bottom: 14px;
  left: 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(23, 23, 20, 0.6);
}

.fleet-image svg {
  width: 82%;
  height: auto;
}

.fleet-main {
  padding: 34px 34px;
  border-right: 1px solid var(--line);
}

.fleet-name {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 46px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.95;
  margin: 0 0 16px;
}

.fleet-tags {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.tag {
  font-size: 11px;
  border: 1px solid var(--line);
  padding: 6px 8px;
  color: #57534b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.5);
}

.fleet-desc {
  font-size: 13px;
  color: var(--muted);
  margin-top: 22px;
  max-width: 380px;
  line-height: 1.6;
}

.fleet-book {
  padding: 34px 0 34px 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.price-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 700;
}

.price {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 34px;
  font-weight: 700;
  margin-top: 5px;
  line-height: 1;
}

.price small {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
}

.fleet-actions {
  display: grid;
  gap: 8px;
}

/* Section: Authentic / Bukan Foto Katalog */
.authentic {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 600px;
}

.auth-copy {
  padding: 90px max(42px, calc((100vw - var(--max)) / 2)) 90px max(24px, calc((100vw - var(--max)) / 2));
  padding-right: 70px;
  background: var(--ink);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.auth-copy h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(54px, 5.2vw, 82px);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.035em;
  margin: 24px 0;
}

.auth-copy p {
  color: rgba(255, 255, 255, 0.65);
  max-width: 540px;
  font-size: 15px;
  line-height: 1.6;
}

.auth-photo {
  background:
    linear-gradient(135deg, rgba(185, 71, 55, 0.06), transparent 45%),
    var(--paper-2);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.auth-photo svg {
  width: 75%;
  opacity: 0.95;
}

.auth-stamp {
  position: absolute;
  right: 30px;
  top: 30px;
  width: 126px;
  height: 126px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transform: rotate(9deg);
  line-height: 1.2;
}

/* Section 02: Use Cases / Kebutuhan */
.use-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  margin-bottom: 96px;
}

.use-card {
  min-height: 330px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background-color var(--transition), transform var(--transition);
  cursor: pointer;
}

.use-card:hover {
  background: var(--paper-2);
}

.use-card:focus-visible {
  outline: 2px solid var(--accent);
}

.use-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  color: var(--muted);
  font-weight: 700;
}

.use-card h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 34px;
  line-height: 1;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.use-card p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

.use-cta-hint {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Section 03: Steps / Cara Sewa */
.steps {
  background: var(--ink);
  color: var(--white);
  padding-bottom: 92px;
}

.steps .section-kicker {
  color: rgba(255, 255, 255, 0.48);
}

.steps .section-head p {
  color: rgba(255, 255, 255, 0.6);
}

.step-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.step {
  padding: 34px;
  min-height: 300px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.step .n {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 64px;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 72px;
  font-weight: 800;
}

.step h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 34px;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.step p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  max-width: 300px;
  line-height: 1.6;
}

/* Section 04: Requirements / Syarat */
.requirements {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
  margin-bottom: 96px;
}

.require-card {
  padding: 42px 42px 52px 0;
}

.require-card + .require-card {
  border-left: 1px solid var(--line);
  padding-left: 42px;
}

.require-card h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 38px;
  text-transform: uppercase;
  margin: 0 0 22px;
}

.check-list {
  display: grid;
  gap: 14px;
}

.check {
  display: grid;
  grid-template-columns: 26px 1fr;
  align-items: start;
  gap: 8px;
  font-size: 14px;
  color: #4d4a43;
}

.check i {
  width: 20px;
  height: 20px;
  border: 1px solid var(--ink);
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: 11px;
  margin-top: 1px;
  font-weight: 800;
  background: var(--white);
}

.require-note {
  margin-top: 22px;
  padding: 15px;
  border-left: 3px solid var(--accent);
  background: rgba(185, 71, 55, 0.06);
  color: #675f57;
  font-size: 12px;
  line-height: 1.5;
}

/* Section 05: Reviews */
.reviews {
  background: var(--paper-2);
  padding-bottom: 96px;
}

.review-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}

.review-feature {
  background: var(--paper);
  padding: 44px;
  border: 1px solid var(--line);
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars {
  letter-spacing: 0.18em;
  color: var(--accent);
  font-size: 16px;
}

.review-quote {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(34px, 3.5vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  max-width: 770px;
}

.review-person {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

.rating-box {
  background: var(--ink);
  color: var(--white);
  padding: 40px;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.rating-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 110px;
  line-height: 0.9;
  font-weight: 700;
}

.rating-sub {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.6;
}

.rating-sub strong {
  color: var(--white);
}

.rating-note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 18px;
  line-height: 1.5;
}

/* Section: Location / Garasi */
.location {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  min-height: 560px;
}

.location-copy {
  background: var(--paper);
  padding: 86px max(56px, calc((100vw - var(--max)) / 2)) 80px max(24px, calc((100vw - var(--max)) / 2));
  padding-right: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-copy h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(54px, 5.4vw, 86px);
  line-height: 0.9;
  text-transform: uppercase;
  margin: 20px 0;
}

.address {
  font-size: 15px;
  color: #555148;
  margin-bottom: 26px;
  max-width: 460px;
  line-height: 1.6;
}

.map-placeholder {
  background:
    linear-gradient(90deg, transparent 49%, rgba(23, 23, 20, 0.08) 50%, transparent 51%),
    linear-gradient(transparent 49%, rgba(23, 23, 20, 0.08) 50%, transparent 51%),
    #dad5ca;
  background-size: 72px 72px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.map-road {
  position: absolute;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 0 0 1px rgba(23, 23, 20, 0.05);
}

.r1 {
  width: 140%;
  height: 22px;
  transform: rotate(-17deg);
}

.r2 {
  width: 110%;
  height: 16px;
  transform: rotate(62deg);
}

.pin {
  width: 86px;
  height: 86px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  z-index: 2;
  transition: transform var(--transition);
}

.pin:hover {
  transform: rotate(-45deg) scale(1.08);
}

.pin span {
  transform: rotate(45deg);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 22px;
  font-weight: 800;
}

.map-label {
  position: absolute;
  left: 26px;
  bottom: 24px;
  background: var(--paper);
  padding: 14px 16px;
  border: 1px solid var(--line);
  font-size: 12px;
  max-width: 280px;
  z-index: 3;
}

/* Section 06: FAQ */
.faq-wrap {
  padding-bottom: 96px;
}

.faq-item {
  border-top: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-q {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 22px 0;
  display: grid;
  grid-template-columns: 1fr 40px;
  gap: 16px;
  align-items: center;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 27px;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  transition: color var(--transition);
}

.faq-q:hover {
  color: var(--accent);
}

.faq-plus {
  font-size: 30px;
  font-weight: 300;
  transition: transform var(--transition);
  text-align: right;
  line-height: 1;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.faq-a p {
  margin: 0 0 24px;
  max-width: 760px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.faq-item.open .faq-a {
  max-height: 300px;
  transition: max-height 0.35s ease-in-out;
}

.faq-item.open .faq-plus {
  transform: rotate(45deg);
}

/* Final CTA */
.final-cta {
  background: var(--accent);
  color: var(--white);
  border-bottom: 0;
}

.final-inner {
  min-height: 460px;
  padding: 78px 0;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: end;
}

.final-cta h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(64px, 7vw, 112px);
  line-height: 0.84;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  margin: 0;
  max-width: 900px;
}

.final-side p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 18px;
  line-height: 1.6;
}

/* Footer */
footer {
  background: var(--ink);
  color: var(--white);
  padding: 48px 0 84px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 44px;
}

.footer-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 14px;
}

footer p, footer a {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.6;
}

footer a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-bottom {
  margin-top: 54px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.38);
}

/* Sticky Mobile Bar */
.mobile-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  background: var(--ink);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
}

.mobile-bar .btn {
  min-height: 50px;
}

/* Modals */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(13, 13, 11, 0.72);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.modal.open {
  display: flex;
}

.booking, .detail-box {
  width: min(720px, 100%);
  background: var(--paper);
  max-height: min(860px, 90vh);
  overflow-y: auto;
  border: 1px solid var(--ink);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
  animation: modalEnter 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalEnter {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.booking-head {
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: sticky;
  top: 0;
  background: var(--paper);
  z-index: 2;
}

.booking-head h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 30px;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: -0.01em;
}

.close-btn {
  width: 42px;
  height: 42px;
  border: 1px solid var(--ink);
  background: transparent;
  font-size: 22px;
  display: grid;
  place-items: center;
  transition: background-color var(--transition);
}

.close-btn:hover {
  background: var(--ink);
  color: var(--white);
}

.booking-body {
  padding: 24px;
}

.selected-car {
  background: var(--ink);
  color: var(--white);
  padding: 18px 20px;
  margin-bottom: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.selected-car strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 25px;
  text-transform: uppercase;
}

.selected-car span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 13px 14px;
  outline: none;
  color: var(--ink);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}

.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--ink);
}

.message-preview {
  margin-top: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 16px;
  font-size: 13px;
  white-space: pre-line;
  color: #49463f;
  line-height: 1.6;
}

.booking-actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.booking-actions .btn {
  flex: 1;
  min-width: 170px;
}

.prototype-note {
  margin-top: 14px;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.5;
}

/* Detail Modal Box */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 18px 0;
}

.detail-item {
  padding: 12px;
  border: 1px solid var(--line);
  background: var(--white);
}

.detail-item span {
  display: block;
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.detail-item strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  text-transform: uppercase;
}

/* Toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: 96px;
  transform: translate(-50%, 20px);
  background: var(--ink);
  color: var(--white);
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 600;
  z-index: 140;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: var(--shadow);
  text-align: center;
  max-width: 90vw;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* Responsive Media Queries */
@media (max-width: 1100px) {
  .nav {
    grid-template-columns: 1fr auto;
  }
  .nav-links {
    display: none;
  }
  .nav-status {
    display: none;
  }
  .menu-btn {
    display: inline-grid;
  }
  .mobile-nav-drawer {
    display: block;
  }
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-copy {
    padding-left: 28px;
    padding-right: 36px;
  }
  .fleet-row {
    grid-template-columns: 72px minmax(220px, 1fr) minmax(230px, 0.8fr) 190px;
  }
  .fleet-main {
    padding: 26px 24px;
  }
  .fleet-book {
    padding: 26px 0 26px 24px;
  }
  .use-grid {
    grid-template-columns: 1fr 1fr;
  }
  .review-grid {
    grid-template-columns: 1fr;
  }
  .rating-box {
    min-height: 280px;
  }
}

@media (max-width: 820px) {
  .shell {
    width: min(100% - 28px, var(--max));
  }
  .site-header {
    position: sticky;
  }
  .nav {
    min-height: 64px;
  }
  .brand {
    font-size: 22px;
  }
  .brand-mark {
    width: 32px;
    height: 32px;
  }
  .nav-actions .btn {
    display: none;
  }
  .hero {
    min-height: auto;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .hero-copy {
    order: 1;
    border-right: 0;
    padding: 52px 14px 34px;
    min-height: auto;
  }
  .hero-copy::after {
    display: none;
  }
  .hero h1 {
    font-size: clamp(64px, 19vw, 104px);
    margin: 18px 0 20px;
    line-height: 0.84;
  }
  .hero-lead {
    font-size: 15px;
  }
  .hero-actions .btn {
    flex: 1;
    min-width: 160px;
  }
  .hero-meta {
    margin-top: 36px;
    grid-template-columns: repeat(3, 1fr);
  }
  .meta-item {
    padding-top: 14px;
  }
  .meta-item strong {
    font-size: 17px;
  }
  .hero-visual {
    order: 2;
    min-height: 480px;
  }
  .car-stage {
    min-height: 480px;
  }
  .hero-visual-label {
    left: 18px;
    top: 20px;
  }
  .hero-badge {
    left: 18px;
    bottom: 18px;
    max-width: calc(100% - 36px);
  }
  .hero-visual-note {
    right: 18px;
    bottom: 18px;
  }
  .section-head {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 72px 0 34px;
  }
  .section-head h2 {
    font-size: clamp(50px, 14vw, 74px);
  }
  .fleet-controls {
    align-items: flex-start;
    flex-direction: column;
  }
  .fleet-list {
    border-top: 0;
  }
  .fleet-row {
    grid-template-columns: 1fr;
    margin-bottom: 22px;
    border: 1px solid var(--line);
    min-height: 0;
    background: rgba(255, 255, 255, 0.22);
  }
  .fleet-index {
    padding: 16px 16px 0;
  }
  .fleet-image {
    min-height: 240px;
  }
  .fleet-main {
    border-right: 0;
    border-top: 1px solid var(--line);
    padding: 24px 18px;
  }
  .fleet-name {
    font-size: 42px;
  }
  .fleet-book {
    padding: 0 18px 18px;
  }
  .price {
    margin-bottom: 18px;
  }
  .authentic {
    grid-template-columns: 1fr;
  }
  .auth-copy {
    padding: 70px 20px;
  }
  .auth-photo {
    min-height: 380px;
  }
  .use-grid {
    grid-template-columns: 1fr;
    margin-bottom: 72px;
  }
  .use-card {
    min-height: 200px;
  }
  .step-list {
    grid-template-columns: 1fr;
  }
  .step {
    min-height: 240px;
  }
  .step .n {
    margin-bottom: 44px;
  }
  .requirements {
    grid-template-columns: 1fr;
    margin-bottom: 72px;
  }
  .require-card {
    padding: 30px 0;
  }
  .require-card + .require-card {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
  }
  .reviews {
    padding-bottom: 72px;
  }
  .review-feature {
    padding: 26px;
    min-height: 320px;
  }
  .review-quote {
    font-size: 36px;
  }
  .location {
    grid-template-columns: 1fr;
  }
  .location-copy {
    padding: 70px 20px;
  }
  .map-placeholder {
    min-height: 380px;
  }
  .final-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: 0;
    padding: 70px 0;
  }
  .final-cta h2 {
    font-size: clamp(62px, 18vw, 96px);
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }
  footer {
    padding-bottom: 110px;
  }
  .mobile-bar {
    display: block;
  }
  .modal {
    padding: 0;
    align-items: flex-end;
  }
  .booking, .detail-box {
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    max-height: 93vh;
    border-top: 2px solid var(--ink);
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .detail-grid {
    grid-template-columns: 1fr;
  }
}
