/* ============================================
   Otantik Cars — Premium Dark Rental Site
   A darker, richer sibling to Otantik Residence
   ============================================ */

:root {
  /* Dark palette — primary */
  --bg:          #0a1418;
  --bg-2:        #0f1e23;
  --bg-3:        #16282e;
  --bg-warm:     #1a1410;
  --surface:     #14252b;
  --surface-2:   #1b2e35;
  --surface-warm:#1e1a14;

  /* Accents */
  --gold:        #c9974f;
  --gold-soft:   #e0b878;
  --gold-deep:   #9e7332;
  --copper:      #b67838;

  /* Brand carry-overs (used sparingly) */
  --cream:       #F4EEDF;
  --cream-deep:  #E8DFC8;

  /* Text on dark */
  --text:        #efe8d6;
  --text-soft:   #c8c0ad;
  --text-muted:  #8a8473;
  --text-dim:    #5e5a4f;

  --line:        rgba(201, 151, 79, 0.18);
  --line-strong: rgba(201, 151, 79, 0.36);
  --line-soft:   rgba(239, 232, 214, 0.08);

  --white: #FFFFFF;

  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max: 1320px;
  --gutter: clamp(20px, 5vw, 80px);
  --ease:   cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  /* Subtle ambient warmth */
  background-image:
    radial-gradient(ellipse 80% 50% at 70% 0%, rgba(201, 151, 79, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 20% 100%, rgba(201, 151, 79, 0.04) 0%, transparent 50%);
  background-attachment: fixed;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .3s var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.6rem, 6.8vw, 5.6rem); }
h2 { font-size: clamp(2.2rem, 5vw, 4rem); }
h3 { font-size: clamp(1.5rem, 2.6vw, 2.2rem); }
h4 { font-size: clamp(1.15rem, 1.8vw, 1.45rem); }

em, .italic {
  font-style: italic;
  color: var(--gold-soft);
  font-weight: 400;
}

p { margin-bottom: 1.2em; max-width: 62ch; color: var(--text-soft); }
p.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  color: var(--text-soft);
  line-height: 1.8;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold);
}

/* ---------- Layout ---------- */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container-wide { max-width: 1600px; margin: 0 auto; padding: 0 var(--gutter); }

section {
  padding: clamp(80px, 12vh, 160px) 0;
  position: relative;
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: .12s; }
.reveal.delay-2 { transition-delay: .24s; }
.reveal.delay-3 { transition-delay: .36s; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: all .4s var(--ease);
}
.site-header.scrolled {
  background: rgba(10, 20, 24, 0.85);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  padding: 14px 0;
  box-shadow: 0 1px 0 var(--line-soft), 0 8px 30px -10px rgba(0,0,0,.6);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
  line-height: 1;
}
.brand-logo {
  height: 48px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.brand-text {
  display: flex;
  flex-direction: column;
}
.brand-name {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  color: var(--text);
  letter-spacing: 0.02em;
}
.brand-name em {
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}
.brand-tag {
  font-size: 0.62rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 6px;
}

.nav-links {
  display: flex;
  gap: 38px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .35s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--text); }

.nav-cta {
  padding: 12px 24px !important;
  border: 1px solid var(--gold);
  border-radius: 2px;
  color: var(--gold) !important;
}
.nav-cta::after { display: none; }
.nav-cta:hover {
  background: var(--gold);
  color: var(--bg) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 1.5px;
  background: var(--text);
  transition: all .3s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 32px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all .35s var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--bg);
  box-shadow: 0 10px 30px -10px rgba(201, 151, 79, 0.5);
}
.btn-primary:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -12px rgba(201, 151, 79, 0.65);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}
.btn-outline:hover {
  background: var(--text);
  color: var(--bg);
}

.btn-ghost {
  color: var(--gold);
  border-color: var(--gold);
  background: transparent;
}
.btn-ghost:hover {
  background: var(--gold);
  color: var(--bg);
}

.btn .arrow { transition: transform .35s var(--ease); }
.btn:hover .arrow { transform: translateX(6px); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  color: var(--text);
  overflow: hidden;
  padding-bottom: clamp(80px, 12vh, 140px);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,20,24,.55) 0%, rgba(10,20,24,.35) 35%, rgba(10,20,24,.95) 100%),
    linear-gradient(110deg, rgba(10,20,24,.5) 0%, transparent 40%);
  z-index: 1;
}
.hero-media {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  animation: slowZoom 18s ease-in-out infinite alternate;
  filter: saturate(.85) contrast(1.05);
}
/* Crossfading hero slideshow */
.hero-slideshow img {
  opacity: 0;
  transition: opacity 1.6s ease-in-out;
}
.hero-slideshow img.active { opacity: 1; }
@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 900px;
}
.hero h1 {
  color: var(--text);
  font-weight: 300;
  margin-bottom: 28px;
  text-shadow: 0 2px 30px rgba(0,0,0,.4);
}
.hero h1 em { color: var(--gold-soft); font-weight: 300; }
.hero .lead {
  color: rgba(239, 232, 214, 0.88);
  max-width: 540px;
  font-size: 1.15rem;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.scroll-indicator {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--gold-soft);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: .8;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.scroll-indicator::after {
  content: "";
  width: 1px; height: 50px;
  background: currentColor;
  animation: scrollLine 2.4s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0); }
  50% { transform: scaleY(1); }
}

/* ---------- Quick book bar ---------- */
.quick-book {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1.15fr auto;
  gap: 1px;
  background: rgba(201, 151, 79, 0.2);
  padding: 0;
  border-radius: 2px;
  overflow: hidden;
  max-width: 920px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.6);
  border: 1px solid var(--line-strong);
}
.qb-field {
  background: rgba(20, 37, 43, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
  min-width: 0;
}
.qb-field label {
  font-size: 0.64rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.qb-field input, .qb-field select {
  border: none;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
  width: 100%;
  max-width: 100%;
  outline: none;
  padding: 2px 0;
}
.qb-field select {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9974f' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0 center;
  background-size: 14px;
  padding-right: 22px;
}
.qb-field input[type="date"] {
  color-scheme: dark;
  min-width: 0;
  font-size: 0.88rem;
  letter-spacing: -0.01em;
}
.qb-field select option { background: var(--bg-2); color: var(--text); }
.qb-field input::-webkit-calendar-picker-indicator { filter: invert(.85) sepia(.5) saturate(2) hue-rotate(2deg); }
.qb-submit {
  background: var(--gold);
  color: var(--bg);
  padding: 0 36px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all .3s var(--ease);
}
.qb-submit:hover { background: var(--gold-soft); }
.qb-submit .arrow { transition: transform .3s var(--ease); }
.qb-submit:hover .arrow { transform: translateX(4px); }

/* ---------- Page Hero (sub pages) ---------- */
.page-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  color: var(--text);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,20,24,.7), rgba(10,20,24,.9)),
    linear-gradient(110deg, rgba(10,20,24,.4) 0%, transparent 50%);
  z-index: 1;
}
.page-hero-media { position: absolute; inset: 0; z-index: 0; }
.page-hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.8) contrast(1.05);
}
.page-hero-content { position: relative; z-index: 2; max-width: 760px; }
.page-hero h1 { color: var(--text); font-weight: 300; }

.breadcrumb {
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 20px;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 10px; opacity: .5; }

/* ---------- Trust strip ---------- */
.trust-strip {
  padding: 60px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--text);
}
.trust-item svg {
  width: 38px; height: 38px;
  color: var(--gold);
  flex-shrink: 0;
}
.trust-item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 2px;
  letter-spacing: 0.01em;
}
.trust-item span {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* ---------- Intro / About blocks ---------- */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: center;
}
.intro-grid.reverse > :first-child { order: 2; }

.intro-text .eyebrow { margin-bottom: 24px; }
.intro-text h2 { margin-bottom: 28px; }

.intro-media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 2px;
}
.intro-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
  filter: saturate(.9);
}
.intro-media:hover img { transform: scale(1.04); }
.intro-media::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,20,24,.4) 100%);
  z-index: 2;
  pointer-events: none;
}
.intro-media::after {
  content: "";
  position: absolute;
  bottom: -20px; right: -20px;
  width: 60%; height: 60%;
  border: 1px solid var(--gold);
  border-radius: 2px;
  z-index: -1;
}

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 60px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  margin-top: 60px;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ---------- Section head ---------- */
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 80px;
}
.section-head .eyebrow { justify-content: center; }
.section-head .eyebrow::before,
.section-head .eyebrow::after { content: ""; width: 32px; height: 1px; background: var(--gold); }
.section-head p { margin: 24px auto 0; }

/* ---------- Fleet cards ---------- */
#fleet-teaser {
  background: var(--bg) !important;
  position: relative;
}
#fleet-teaser::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 0%, rgba(201, 151, 79, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  position: relative;
}
.fleet-grid-3 { grid-template-columns: repeat(3, 1fr); }
.fleet-card {
  background: var(--surface);
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid var(--line-soft);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
  display: flex;
  flex-direction: column;
}
.fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.7), 0 0 0 1px var(--line-strong);
  border-color: var(--line-strong);
}
.fleet-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 35%, #1c333a 0%, #0f1e23 65%, #0a1418 100%);
}
.fleet-image::after {
  content: "";
  position: absolute;
  left: 12%; right: 12%; bottom: 9%;
  height: 5%;
  background: radial-gradient(ellipse, rgba(0,0,0,.55) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  filter: blur(6px);
}
.fleet-image img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 12px 20px;
  transition: transform 1s var(--ease);
  position: relative;
  z-index: 2;
}
.fleet-card:hover .fleet-image img { transform: scale(1.06); }
.fleet-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--gold);
  color: var(--bg);
  padding: 8px 16px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 2;
}
.fleet-body { padding: 36px; }
.fleet-cat {
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}
.fleet-body h3 {
  margin-bottom: 18px;
  color: var(--text);
}
.fleet-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line-soft);
}
.fleet-meta span { display: flex; align-items: center; gap: 6px; }
.fleet-card p { color: var(--text-soft); }
.fleet-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.fleet-cta::after { content: "→"; transition: transform .3s var(--ease); }
.fleet-cta:hover { color: var(--gold-soft); }
.fleet-cta:hover::after { transform: translateX(6px); }

/* ---------- Services grid ---------- */
.services-section {
  background: var(--bg-warm);
  color: var(--text);
  position: relative;
}
.services-section::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 30%, rgba(201, 151, 79, 0.08) 0%, transparent 50%);
  pointer-events: none;
}
.services-section h2, .services-section h3, .services-section h4 { color: var(--text); }
.services-section .eyebrow { color: var(--gold); }
.services-section .eyebrow::before, .services-section .eyebrow::after { background: var(--gold); }
.services-section .lead { color: var(--text-soft); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(201, 151, 79, 0.15);
  margin-top: 80px;
  position: relative;
}
.service {
  background: var(--bg-warm);
  padding: 50px 32px;
  text-align: center;
  transition: background .4s var(--ease);
}
.service:hover { background: var(--surface-warm); }
.service-icon {
  width: 44px; height: 44px;
  margin: 0 auto 20px;
  color: var(--gold);
}
.service h4 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}
.service p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ---------- How it works ---------- */
.howit-section {
  background: var(--bg);
  position: relative;
}
.howit-section::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(201, 151, 79, 0.05) 0%, transparent 60%);
  pointer-events: none;
}
.howit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}
.howit-grid::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 14%; right: 14%;
  height: 1px;
  background: var(--line-strong);
  z-index: 0;
}
.howit-step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 20px;
}
.step-num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
  padding: 0 16px;
  background: var(--bg);
}
.howit-step h3 {
  margin-bottom: 14px;
  font-size: 1.6rem;
  color: var(--text);
}
.howit-step p {
  color: var(--text-muted);
  margin: 0 auto;
  max-width: 320px;
}

/* ---------- Testimonial ---------- */
.testimonial-section {
  background: var(--bg-2);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.testimonial-section::before {
  content: '\201C';
  position: absolute;
  top: -40px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: 30rem;
  color: rgba(201, 151, 79, 0.04);
  line-height: 1;
  z-index: 0;
}
.testimonial-section .container { position: relative; z-index: 1; }
.quote-stars {
  color: var(--gold);
  letter-spacing: 0.4em;
  font-size: 1.1rem;
  margin-bottom: 32px;
}
.quote {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-style: italic;
  color: var(--text);
  font-weight: 400;
  line-height: 1.45;
  max-width: 880px;
  margin: 0 auto 28px;
}
.quote-author {
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin: 0;
}
/* Review cards grid */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 64px;
  text-align: left;
}
.review-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: 2px;
  padding: 32px 28px;
  margin: 0;
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.review-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 30px 60px -25px rgba(0,0,0,.6);
}
.review-stars {
  color: var(--gold);
  letter-spacing: 0.25em;
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.review-card blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.12rem;
  line-height: 1.5;
  color: var(--text);
  margin: 0 0 18px;
}
.review-card figcaption {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

/* ---------- FAQ ---------- */
.faq-section {
  background: var(--bg);
  position: relative;
}
.faq-list {
  max-width: 860px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line-soft);
  padding: 4px 0;
}
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  color: var(--text);
  font-weight: 500;
  letter-spacing: 0.005em;
  transition: color .3s var(--ease);
}
.faq-item summary:hover { color: var(--gold-soft); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary > span:first-child { padding-right: 30px; }
.faq-icon {
  font-size: 1.6rem;
  color: var(--gold);
  font-weight: 300;
  transition: transform .3s var(--ease);
  flex-shrink: 0;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-item[open] summary { color: var(--gold-soft); }
.faq-item p {
  font-size: 1rem;
  color: var(--text-soft);
  padding: 0 60px 32px 0;
  max-width: 720px;
  margin: 0;
  line-height: 1.8;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative;
  text-align: center;
  color: var(--text);
  overflow: hidden;
  padding: clamp(120px, 18vh, 200px) 0;
}
.cta-banner::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,20,24,.6), rgba(10,20,24,.85)),
    linear-gradient(110deg, rgba(201, 151, 79, 0.15) 0%, transparent 60%);
  z-index: 1;
}
.cta-banner-media { position: absolute; inset: 0; z-index: 0; }
.cta-banner-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.85);
}
.cta-banner .container { position: relative; z-index: 2; }
.cta-banner h2 {
  color: var(--text);
  font-weight: 300;
  margin-bottom: 20px;
}
.cta-banner .lead {
  color: rgba(239,232,214,.85);
  max-width: 580px;
  margin: 0 auto 32px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-2);
  color: var(--text-muted);
  padding: 100px 0 30px;
  border-top: 1px solid var(--line-soft);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 70px;
}
.footer-brand .brand-name {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--text);
  margin-bottom: 6px;
}
.footer-brand .brand-name em { color: var(--gold); font-style: italic; }
.footer-brand .brand-tag {
  font-size: 0.66rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.footer-brand p {
  font-size: 0.92rem;
  max-width: 360px;
  color: var(--text-muted);
}
.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.footer-col ul { list-style: none; }
.footer-col li {
  margin-bottom: 12px;
  font-size: 0.92rem;
  color: var(--text-muted);
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 30px;
  border-top: 1px solid var(--line-soft);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}
.footer-bottom .credit a { color: var(--gold); }

/* ============================================
   FLEET PAGE
   ============================================ */
.fleet-filter {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 70px;
}
.fleet-filter button {
  padding: 11px 24px;
  border: 1px solid var(--line-strong);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-soft);
  background: transparent;
  transition: all .3s var(--ease);
  border-radius: 2px;
  font-weight: 500;
}
.fleet-filter button.active,
.fleet-filter button:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

.fleet-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.fleet-count {
  position: absolute;
  bottom: 20px; left: 20px;
  background: rgba(10, 20, 24, 0.85);
  color: var(--gold-soft);
  padding: 8px 14px;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  z-index: 2;
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.fleet-detail {
  background: var(--surface);
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.fleet-detail:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.7);
  border-color: var(--line-strong);
}
.fleet-detail-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
  background: radial-gradient(ellipse at 50% 35%, #1c333a 0%, #0f1e23 65%, #0a1418 100%);
}
.fleet-detail-image::after {
  content: "";
  position: absolute;
  left: 12%; right: 12%; bottom: 9%;
  height: 5%;
  background: radial-gradient(ellipse, rgba(0,0,0,.6) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  filter: blur(8px);
}
.fleet-detail-image img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 18px 28px;
  transition: transform 1s var(--ease);
  position: relative;
  z-index: 2;
}
.fleet-detail:hover .fleet-detail-image img { transform: scale(1.05); }
.fleet-detail-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.fleet-detail-body h3 {
  margin-bottom: 6px;
  font-size: 1.7rem;
  color: var(--text);
}
.fleet-model {
  font-size: 0.76rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}
.fleet-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 18px;
  font-size: 0.82rem;
  color: var(--text-soft);
  padding: 18px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 20px;
}
.fleet-specs div { display: flex; align-items: center; gap: 8px; }
.fleet-specs svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }
.fleet-price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 22px;
  margin-top: auto;
}
.fleet-price .price-amount {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 500;
}
.fleet-price .price-unit {
  font-size: 0.76rem;
  color: var(--text-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-left: 6px;
}
.fleet-book-btn {
  display: block;
  text-align: center;
  padding: 14px;
  background: var(--gold);
  color: var(--bg);
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all .3s var(--ease);
  font-weight: 600;
}
.fleet-book-btn:hover {
  background: var(--gold-soft);
  transform: translateY(-1px);
}

/* Featured fleet card (most popular) */
.fleet-detail-featured {
  border-color: var(--line-strong);
  background: linear-gradient(180deg, var(--surface-warm) 0%, var(--bg-warm) 100%);
  position: relative;
}
.fleet-detail-featured::before {
  content: "Most Popular";
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  background: var(--gold);
  color: var(--bg);
  text-align: center;
  padding: 6px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  z-index: 3;
}
.fleet-detail-featured .fleet-detail-image { margin-top: 28px; }

/* Why Suzuki section */
.why-suzuki {
  padding: clamp(60px, 8vh, 100px);
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: 2px;
}
.why-suzuki .section-head { margin-bottom: 60px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.why-item { text-align: left; }
.why-num {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  color: var(--gold);
  font-style: italic;
  line-height: 1;
  margin-bottom: 18px;
}
.why-item h4 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--text);
}
.why-item p {
  color: var(--text-muted);
  font-size: 0.96rem;
  margin: 0;
}
@media (max-width: 860px) {
  .why-grid { grid-template-columns: 1fr; gap: 36px; }
  .why-suzuki { padding: 40px 24px; }
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
  margin-bottom: clamp(80px, 12vh, 140px);
}
.service-block:last-child { margin-bottom: 0; }
.service-block.reverse > :first-child { order: 2; }
.service-block-media {
  aspect-ratio: 5/4;
  overflow: hidden;
  border-radius: 2px;
  position: relative;
  border: 1px solid var(--line-soft);
}
.service-block-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.95);
}
.service-block-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,20,24,.5) 100%);
  pointer-events: none;
}
.service-block-text h2 { margin-bottom: 24px; }
.service-block-text ul {
  list-style: none;
  margin-top: 24px;
}
.service-block-text li {
  padding: 14px 0 14px 32px;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
  font-size: 0.98rem;
  color: var(--text-soft);
}
.service-block-text li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 500;
}
.service-block-text li:last-child { border-bottom: none; }

.pricing-section { background: var(--bg-2); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 70px;
}
.price-card {
  background: var(--surface);
  padding: 50px 36px;
  border-radius: 2px;
  text-align: center;
  border: 1px solid var(--line-soft);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.price-card.featured {
  background:
    linear-gradient(180deg, var(--surface-warm) 0%, var(--bg-warm) 100%);
  border: 1px solid var(--line-strong);
  transform: scale(1.04);
  box-shadow: 0 30px 80px -30px rgba(0,0,0,.7);
}
.price-card.featured .price-tag { color: var(--gold-soft); }
.price-card:hover:not(.featured) {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 30px 60px -25px rgba(0,0,0,.6);
}
.price-card h3 { color: var(--text); }
.price-card .price-period { color: var(--text-muted); }
.price-card li { color: var(--text-soft); border-color: var(--line-soft); }
.price-card .tier-name {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 18px;
  display: block;
}
.price-card h3 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.price-card .price-tag {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: var(--gold);
  font-weight: 400;
  line-height: 1;
  margin: 30px 0 6px;
}
.price-card .price-period {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 36px;
}
.price-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 36px;
}
.price-card li {
  padding: 12px 0 12px 28px;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
}
.price-card li:last-child { border-bottom: none; }
.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 70px;
}
.value-card {
  padding: 50px 36px;
  background: var(--surface);
  border-radius: 2px;
  border: 1px solid var(--line-soft);
  text-align: center;
  transition: all .4s var(--ease);
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -25px rgba(0,0,0,.6);
  border-color: var(--gold);
}
.value-num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--gold);
  margin-bottom: 18px;
  font-style: italic;
}
.value-card h3 { font-size: 1.4rem; margin-bottom: 16px; color: var(--text); }
.value-card p { color: var(--text-muted); margin: 0 auto; max-width: 30ch; }

.team-section { background: var(--bg-2); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  margin-top: 70px;
}
.team-member {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 30px;
  align-items: start;
}
.team-photo {
  width: 180px; height: 180px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  position: relative;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-info h4 {
  font-size: 1.5rem;
  margin-bottom: 6px;
  color: var(--text);
}
.team-role {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 18px;
  display: block;
}
.team-info p { font-size: 0.96rem; color: var(--text-soft); }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 28px; }
.contact-info .lead { margin-bottom: 40px; }
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--line-soft);
}
.contact-detail {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.contact-detail svg {
  width: 28px; height: 28px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 4px;
}
.contact-detail strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 6px;
  font-weight: 500;
}
.contact-detail a, .contact-detail span {
  display: block;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-detail a:hover { color: var(--gold); }

.contact-form {
  background: var(--surface);
  padding: 50px;
  border-radius: 2px;
  border: 1px solid var(--line-soft);
}
.contact-form h3 {
  font-size: 1.8rem;
  margin-bottom: 8px;
  color: var(--text);
}
.contact-form > p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 22px;
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.form-field input,
.form-field select,
.form-field textarea {
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 0.96rem;
  border: 1px solid var(--line-soft);
  background: var(--bg-2);
  color: var(--text);
  border-radius: 2px;
  transition: border .3s var(--ease), background .3s var(--ease);
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--text-dim); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--surface);
}
.form-field input::-webkit-calendar-picker-indicator { filter: invert(.85) sepia(.5) saturate(2) hue-rotate(2deg); }
.form-field select option { background: var(--bg-2); color: var(--text); }
.form-field textarea { resize: vertical; min-height: 120px; font-family: var(--font-sans); }
.form-submit {
  width: 100%;
  background: var(--gold);
  color: var(--bg);
  padding: 18px;
  font-size: 0.78rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all .3s var(--ease);
  margin-top: 10px;
  font-weight: 600;
}
.form-submit:hover { background: var(--gold-soft); transform: translateY(-1px); }
.form-submit:disabled { opacity: .7; cursor: wait; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 50px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-list { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid-3 { grid-template-columns: 1fr; gap: 30px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 40px; }
  .quick-book { grid-template-columns: 1fr 1fr; }
  .qb-submit { grid-column: 1 / -1; padding: 20px; justify-content: center; }
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(82vw, 360px);
    background: var(--bg-2);
    border-left: 1px solid var(--line-soft);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 80px 40px;
    gap: 28px;
    transform: translateX(100%);
    transition: transform .5s var(--ease);
    z-index: 99;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { color: var(--text); font-size: 1rem; }
  .nav-cta { border-color: var(--gold) !important; }

  .intro-grid,
  .contact-grid,
  .service-block,
  .service-block.reverse > :first-child { grid-template-columns: 1fr; order: unset; gap: 40px; }

  .stats { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .fleet-grid, .pricing-grid, .value-grid, .team-grid { grid-template-columns: 1fr; gap: 30px; }
  .fleet-list { grid-template-columns: 1fr; }
  .howit-grid { grid-template-columns: 1fr; gap: 50px; }
  .howit-grid::before { display: none; }

  .form-row { grid-template-columns: 1fr; }

  .price-card.featured { transform: none; }

  .team-member { grid-template-columns: 100px 1fr; gap: 20px; }
  .team-photo { width: 100px; height: 100px; }

  .intro-media { aspect-ratio: 4/3; }
  .intro-media::after { display: none; }

  .quick-book { grid-template-columns: 1fr; max-width: 100%; }

  .hero { padding-bottom: 60px; }
  .hero h1 { font-size: clamp(2.2rem, 9vw, 3.4rem); }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }

  .contact-form { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1; justify-content: center; padding: 14px 20px; font-size: 0.7rem; }
  .stats { grid-template-columns: 1fr 1fr; gap: 24px; padding: 40px 0; }
  .brand { gap: 10px; }
  .brand-logo { height: 38px; }
  .brand-name { font-size: 1.4rem; }
}
