/* ═══════════════════════════════════════
   INNOVATIVE CAR CLINIC — DESIGN SYSTEM
   Dark Luxury Automotive
   ═══════════════════════════════════════ */

:root {
  --bg:            #080808;
  --surface:       #0f0f0f;
  --surface-mid:   #141414;
  --surface-high:  #1a1a1a;
  --border:        rgba(255,255,255,0.07);
  --border-gold:   rgba(201,168,76,0.35);

  --gold:          #c9a84c;
  --gold-light:    #e4c76b;
  --gold-dim:      rgba(201,168,76,0.1);

  --text:          #f0f0f0;
  --text-mid:      #8a8a8a;
  --text-muted:    #4a4a4a;

  --serif:  'Playfair Display', Georgia, serif;
  --sans:   'DM Sans', system-ui, sans-serif;
  --mono:   'Space Mono', monospace;

  --sz-xs:    clamp(0.7rem, 0.65rem + 0.2vw, 0.78rem);
  --sz-sm:    clamp(0.85rem, 0.8rem + 0.2vw, 0.92rem);
  --sz-base:  clamp(1rem, 0.95rem + 0.25vw, 1.05rem);
  --sz-lg:    clamp(1.1rem, 1rem + 0.5vw, 1.25rem);
  --sz-xl:    clamp(1.3rem, 1.1rem + 1vw, 1.65rem);
  --sz-2xl:   clamp(1.7rem, 1.3rem + 2vw, 2.4rem);
  --sz-3xl:   clamp(2.2rem, 1.4rem + 4vw, 4rem);
  --sz-hero:  clamp(3.2rem, 1.5rem + 7vw, 8rem);

  --gap-section: clamp(5rem, 4rem + 5vw, 10rem);
  --gap-inner:   clamp(1.5rem, 1rem + 2vw, 3rem);
  --max-w: 1400px;
  --px: clamp(1.25rem, 4vw, 3rem);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-io:  cubic-bezier(0.4, 0, 0.2, 1);
  --fast: 150ms;
  --mid:  300ms;
  --slow: 600ms;

  --r-sm: 4px;
  --r:    10px;
  --r-lg: 20px;
  --r-xl: 28px;
}

/* ── RESET ─────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }


/* ── SCROLL REVEAL ──────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--slow) var(--ease-out),
              transform var(--slow) var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 80ms; }
.reveal-d2 { transition-delay: 160ms; }
.reveal-d3 { transition-delay: 240ms; }
.reveal-d4 { transition-delay: 320ms; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── LAYOUT UTILS ───────────────────── */
.wrap {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
}
.section {
  padding-block: var(--gap-section);
}

/* ── TYPOGRAPHY UTILS ───────────────── */
.label {
  font-family: var(--mono);
  font-size: var(--sz-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}
.title {
  font-family: var(--serif);
  font-size: var(--sz-3xl);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text);
}
.body-text {
  font-size: var(--sz-base);
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 52ch;
}

/* ── BUTTONS ────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--sz-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.9em 2.2em;
  border-radius: var(--r-sm);
  transition: background var(--fast), color var(--fast), transform var(--fast), border-color var(--fast);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--bg);
  border: 1px solid var(--gold);
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--border-gold);
}
.btn-outline:hover { background: var(--gold-dim); border-color: var(--gold); }

.btn-ghost {
  background: transparent;
  color: var(--text-mid);
  border: 1px solid var(--border);
  padding: 0.9em 2em;
}
.btn-ghost:hover { color: var(--text); border-color: rgba(255,255,255,0.2); }

/* ══════════════════════════════════════
   NAV
   ══════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem var(--px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  transition: background var(--mid) var(--ease-io),
              backdrop-filter var(--mid) var(--ease-io),
              padding var(--mid) var(--ease-io),
              border-color var(--mid);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(8,8,8,0.88);
  backdrop-filter: blur(24px);
  padding-block: 1rem;
  border-bottom-color: var(--border);
}

.brand {
  font-family: var(--serif);
  font-size: var(--sz-lg);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  flex-shrink: 0;
}
.brand em { font-style: normal; color: var(--gold); }

.nav-links {
  display: flex;
  gap: 0.25rem;
  list-style: none;
}
.nav-links a {
  display: block;
  padding: 0.4em 0.85em;
  font-size: var(--sz-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-mid);
  border-radius: var(--r-sm);
  transition: color var(--fast), background var(--fast);
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--text); background: rgba(255,255,255,0.05); }

.nav-cta { margin-left: 0.5rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: transform var(--mid) var(--ease-out), opacity var(--mid);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile overlay menu */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(8,8,8,0.98);
  backdrop-filter: blur(24px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  transition: opacity var(--mid) var(--ease-out);
}
.nav-mobile.is-open { display: flex; opacity: 1; }
.nav-mobile a {
  font-family: var(--serif);
  font-size: var(--sz-2xl);
  color: var(--text-mid);
  transition: color var(--fast);
}
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile .nav-close {
  position: absolute;
  top: 1.5rem;
  right: var(--px);
  font-size: var(--sz-xl);
  color: var(--text-mid);
}

/* ══════════════════════════════════════
   HERO
   ══════════════════════════════════════ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  padding: var(--gap-section) var(--px);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/hero-porsche.jpg');
  background-size: cover;
  background-position: center 35%;
  transform: scale(1.04);
  transition: transform 10s var(--ease-out);
}
.hero-bg.loaded { transform: scale(1); }

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(8,8,8,0.05) 0%,
    rgba(8,8,8,0.3) 30%,
    rgba(8,8,8,0.85) 75%,
    rgba(8,8,8,0.97) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  width: 100%;
  margin-inline: auto;
}

.hero-label {
  font-family: var(--mono);
  font-size: var(--sz-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s var(--ease-out) forwards;
}

.hero-title {
  font-family: var(--serif);
  font-size: var(--sz-hero);
  line-height: 0.93;
  letter-spacing: -0.03em;
  color: var(--text);
  max-width: 13ch;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s var(--ease-out) forwards;
}
.hero-title em { font-style: italic; color: var(--gold); }

.hero-sub {
  font-size: var(--sz-base);
  color: var(--text-mid);
  max-width: 40ch;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s var(--ease-out) forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s var(--ease-out) forwards;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  right: var(--px);
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0;
  animation: fadeIn 1s 1.3s var(--ease-out) forwards;
}
.hero-scroll-hint::after {
  content: '';
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ══════════════════════════════════════
   TRUST BAR
   ══════════════════════════════════════ */
.trust-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(ellipse 70% 130% at 50% -20%, var(--gold-dim) 0%, transparent 70%),
    var(--surface);
}
.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--max-w);
  margin-inline: auto;
}
.trust-item {
  padding: 3.25rem var(--px) 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.45rem;
  border-right: 1px solid var(--border);
}
.trust-item:last-child { border-right: none; }
.trust-medal {
  position: relative;
  width: 128px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin-bottom: 0.9rem;
}
.trust-medal::before {
  content: '';
  position: absolute;
  inset: -22%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.14) 0%, transparent 62%);
  opacity: 0.8;
  transition: opacity 0.6s var(--ease-out);
}
.medal-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  transition: transform 1.4s var(--ease-out);
}
.medal-ring circle {
  stroke: rgba(201,168,76,0.4);
  stroke-width: 1;
}
.medal-ring .ring-inner {
  stroke: rgba(201,168,76,0.85);
  stroke-dasharray: 2 5;
}
.trust-item:hover .medal-ring { transform: rotate(60deg); }
.trust-item:hover .trust-medal::before { opacity: 1; }
.trust-number {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 1.3rem + 1.3vw, 2.4rem);
  color: var(--gold);
  line-height: 1;
  text-align: center;
}
.trust-label {
  font-family: var(--mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #c9c9c9;
}
.trust-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,0.62);
  letter-spacing: 0.03em;
}
.trust-tag::before {
  content: '◆';
  display: block;
  font-style: normal;
  font-size: 0.4rem;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 0.5rem;
}
@media (prefers-reduced-motion: reduce) {
  .medal-ring { transition: none; }
  .trust-item:hover .medal-ring { transform: none; }
}

/* ══════════════════════════════════════
   SERVICES BENTO
   ══════════════════════════════════════ */
.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: auto;
  gap: 1rem;
}

.bento-card {
  background: var(--surface-mid);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  transition: border-color var(--mid) var(--ease-out),
              transform var(--mid) var(--ease-out),
              box-shadow var(--mid);
}
.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0% 0%, var(--gold-dim) 0%, transparent 65%);
  opacity: 0;
  transition: opacity var(--mid);
}
.bento-card:hover { border-color: var(--border-gold); transform: translateY(-2px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.bento-card:hover::before { opacity: 1; }

/* Bento spans */
.bc-1 { grid-column: span 5; grid-row: span 2; }
.bc-2 { grid-column: span 7; }
.bc-3 { grid-column: span 4; }
.bc-4 { grid-column: span 3; }
.bc-5 { grid-column: span 5; }

.bento-num {
  font-family: var(--mono);
  font-size: var(--sz-xs);
  letter-spacing: 0.18em;
  color: var(--gold);
}
.bento-title {
  font-family: var(--serif);
  font-size: var(--sz-xl);
  line-height: 1.2;
  color: var(--text);
}
.bento-body {
  font-size: var(--sz-sm);
  color: var(--text-mid);
  line-height: 1.75;
  flex: 1;
}
.bento-arrow {
  color: var(--gold);
  font-size: 1.2rem;
  align-self: flex-start;
  transition: transform var(--fast);
}
.bento-card:hover .bento-arrow { transform: translate(3px, -3px); }

.bento-img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--r);
  margin-bottom: 0.5rem;
}
.bc-1 .bento-img { aspect-ratio: 1/1; flex-shrink: 0; }
.bento-img-fill {
  margin-top: auto;
  aspect-ratio: 3/2;
  margin-bottom: 0;
}
.bc-2 .bento-img-fill { aspect-ratio: 16/10; }
.bc-3 .bento-img-fill { aspect-ratio: 4/3; }
.bc-4 .bento-img-fill { aspect-ratio: 4/3; }

/* ══════════════════════════════════════
   ABOUT
   ══════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: var(--gap-inner);
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--r-xl);
}
.about-img-wrap::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--border-gold) 0%, transparent 55%);
  pointer-events: none;
}
.about-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(8,8,8,0.9);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-gold);
  border-radius: var(--r);
  padding: 1rem 1.5rem;
}
.about-badge-num {
  font-family: var(--serif);
  font-size: var(--sz-2xl);
  color: var(--gold);
  line-height: 1;
}
.about-badge-label {
  font-size: var(--sz-xs);
  color: var(--text-mid);
  letter-spacing: 0.05em;
  margin-top: 0.2rem;
}
.about-text { padding: 2rem 0; }
.about-text .body-text { margin-block: 1.5rem 2rem; }

/* ══════════════════════════════════════
   PROCESS STRIP
   ══════════════════════════════════════ */
.process-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--max-w);
  margin-inline: auto;
}
.process-step {
  padding: 3.5rem var(--px);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.process-step:last-child { border-right: none; }
.process-step-n {
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--surface-high);
  line-height: 1;
  font-weight: 700;
}
.process-step-title {
  font-family: var(--serif);
  font-size: var(--sz-xl);
  color: var(--text);
}
.process-step-body {
  font-size: var(--sz-sm);
  color: var(--text-mid);
  line-height: 1.75;
}

/* ══════════════════════════════════════
   CTA SECTION
   ══════════════════════════════════════ */
.cta-section {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 520px;
  padding: var(--gap-section) var(--px);
}
.cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/garage-gold.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.22) saturate(0.55);
}
.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.08) 0%, transparent 70%);
}
.cta-content { position: relative; z-index: 1; max-width: 560px; }
.cta-content .title { margin-block: 1rem 2rem; }

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 4rem var(--px) 2rem;
}
.footer-inner { max-width: var(--max-w); margin-inline: auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .brand { display: block; margin-bottom: 1rem; }
.footer-tagline { font-size: var(--sz-sm); color: var(--text-muted); line-height: 1.7; max-width: 26ch; }
.footer-col-title {
  font-family: var(--mono);
  font-size: var(--sz-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col ul a { font-size: var(--sz-sm); color: var(--text-mid); transition: color var(--fast); }
.footer-col ul a:hover { color: var(--text); }
.footer-contact { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-contact p, .footer-contact a { font-size: var(--sz-sm); color: var(--text-mid); line-height: 1.6; }
.footer-contact a:hover { color: var(--gold); }
.footer-contact a[href^="tel"] { font-size: var(--sz-lg); color: var(--text); font-weight: 500; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.footer-copy { font-size: var(--sz-xs); color: var(--text-muted); letter-spacing: 0.04em; }
.footer-ig a { font-size: var(--sz-sm); color: var(--text-mid); transition: color var(--fast); }
.footer-ig a:hover { color: var(--gold); }

/* ══════════════════════════════════════
   INNER PAGE BANNER
   ══════════════════════════════════════ */
.page-banner {
  position: relative;
  height: 42vh;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  padding: 3.5rem var(--px);
  overflow: hidden;
}
.page-banner-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/ppf-macro.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.22) saturate(0.5);
}
.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
}
.page-banner-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  width: 100%;
  margin-inline: auto;
}
.page-banner-title {
  font-family: var(--serif);
  font-size: var(--sz-3xl);
  color: var(--text);
  margin-top: 0.5rem;
}

/* ══════════════════════════════════════
   SERVICES PAGE — CARDS
   ══════════════════════════════════════ */
.services-list {
  display: grid;
  gap: 1.5rem;
}
.service-card {
  background: var(--surface-mid);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: start;
  transition: border-color var(--mid), transform var(--mid) var(--ease-out);
}
.service-card:hover { border-color: var(--border-gold); transform: translateX(4px); }
.service-card-num {
  font-family: var(--serif);
  font-size: 3.5rem;
  color: var(--surface-high);
  line-height: 1;
  font-weight: 700;
  min-width: 3.5rem;
  text-align: right;
}
.service-card-title {
  font-family: var(--serif);
  font-size: var(--sz-xl);
  color: var(--text);
  margin-bottom: 0.75rem;
}
.service-card-body {
  font-size: var(--sz-sm);
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 64ch;
}
.service-card-tag {
  font-family: var(--mono);
  font-size: var(--sz-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border-gold);
  padding: 0.3em 0.8em;
  border-radius: 100px;
  white-space: nowrap;
  align-self: center;
}

/* ══════════════════════════════════════
   FAQ PAGE
   ══════════════════════════════════════ */
.faq-list { border-top: 1px solid var(--border); max-width: 68rem; margin-inline: auto; }
.faq-list details { border-bottom: 1px solid var(--border); }
.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
  font-family: var(--serif);
  font-size: var(--sz-lg);
  color: var(--text);
  transition: color var(--fast);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  color: var(--gold);
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: transform var(--mid) var(--ease-out);
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p {
  font-size: var(--sz-base);
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 70ch;
  padding-bottom: 1.5rem;
}

/* ══════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: var(--gap-inner);
  align-items: start;
}
.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-item:first-child { padding-top: 0; }
.contact-info-label {
  font-family: var(--mono);
  font-size: var(--sz-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-info-value {
  font-size: var(--sz-lg);
  color: var(--text);
  transition: color var(--fast);
}
.contact-info-value a:hover { color: var(--gold); }

.contact-form { display: grid; gap: 1.25rem; }
.field label {
  display: block;
  font-family: var(--mono);
  font-size: var(--sz-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.5rem;
}
.field input, .field textarea {
  width: 100%;
  background: var(--surface-mid);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text);
  font: inherit;
  font-size: var(--sz-base);
  padding: 0.85rem 1rem;
  transition: border-color var(--fast);
  outline: none;
}
.field input:focus, .field textarea:focus { border-color: var(--border-gold); }
.field textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; gap: 1.25rem; }
@media (min-width: 560px) { .form-row { grid-template-columns: 1fr 1fr; } }

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 1100px) {
  .bento { grid-template-columns: repeat(6, 1fr); }
  .bc-1 { grid-column: span 6; grid-row: span 1; }
  .bc-1 .bento-img { aspect-ratio: 16/9; }
  .bc-2 { grid-column: span 3; }
  .bc-3 { grid-column: span 3; }
  .bc-4 { grid-column: span 3; }
  .bc-5 { grid-column: span 3; }

  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap img { aspect-ratio: 16/9; }
  .bc-1 { display: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* Nav switches to mobile menu earlier than 768px so a full 7-item nav (incl. Car Rentals + Fleet Services) never wraps to two lines in the 769-1150px zone */
@media (max-width: 1150px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .section { padding-block: 3.5rem; }

  .hero { min-height: 560px; padding-bottom: 3rem; }
  .hero-sub { margin-bottom: 1.75rem; line-height: 1.6; }
  .hero-scroll-hint { display: none; }

  .trust-bar-inner { grid-template-columns: repeat(3, 1fr); }
  .trust-item {
    border-right: none;
    padding: 1.6rem 0.4rem 1.5rem;
    gap: 0.3rem;
  }
  .trust-medal { width: 74px; margin-bottom: 0.4rem; }
  .trust-medal::before { inset: -14%; }
  .trust-number { font-size: 1.3rem; }
  .trust-label { font-size: 0.55rem; letter-spacing: 0.12em; line-height: 1.5; }
  .trust-tag { display: none; }

  .bento { grid-template-columns: 1fr; gap: 0.9rem; }
  .bc-1, .bc-2, .bc-3, .bc-4, .bc-5 { grid-column: span 1; grid-row: span 1; }
  .bc-1 { display: flex; }
  .bc-1 .bento-img { aspect-ratio: 16/10; }
  .bento-card { padding: 1.5rem; }

  .services-header { flex-direction: column; align-items: flex-start; gap: 1.25rem; margin-bottom: 2rem; }

  .about-grid { gap: 1.75rem; }
  .about-img-wrap img { aspect-ratio: 4/3; }

  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--border); padding: 2rem var(--px); }
  .process-step:last-child { border-bottom: none; }

  .page-banner { height: 34vh; min-height: 240px; }

  .service-card { grid-template-columns: 1fr; gap: 1rem; }
  .service-card-num { font-size: 2rem; text-align: left; }

  .contact-grid { grid-template-columns: 1fr; }

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

@media (max-width: 420px) {
  .trust-medal { width: 64px; }
  .trust-number { font-size: 1.1rem; }
  .trust-label { font-size: 0.5rem; }
}


/* ══════════════════════════════════════
   RENTALS PAGE — FLEET
   ══════════════════════════════════════ */
.fleet-intro { max-width: 68ch; padding-top: 19px; padding-bottom: 19px; }
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
  margin-top: 3rem;
}
.fleet-card {
  background: var(--surface-mid);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--mid), transform var(--mid) var(--ease-out), box-shadow var(--mid);
}
.fleet-card:hover { border-color: var(--border-gold); transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.35); }
.fleet-card-img-wrap { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.fleet-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--slow) var(--ease-out); }
.fleet-card:hover .fleet-card-img-wrap img { transform: scale(1.05); }
.fleet-card-tier {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  font-family: var(--mono);
  font-size: var(--sz-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  padding: 0.3em 0.8em;
  border-radius: 100px;
}
.fleet-card-tier.tier-luxury { background: var(--text); }
.fleet-card-body { padding: 1.75rem; display: flex; flex-direction: column; gap: 1.25rem; flex: 1; }
.fleet-card-title { font-family: var(--serif); font-size: var(--sz-lg); color: var(--text); }
.fleet-card-tag {
  font-family: var(--mono);
  font-size: var(--sz-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-top: 0.35rem;
  display: block;
}
.fleet-rates { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--border); padding-top: 1.1rem; }
.fleet-rate { text-align: center; border-right: 1px solid var(--border); }
.fleet-rate:last-child { border-right: none; }
.fleet-rate-label { font-family: var(--mono); font-size: var(--sz-xs); color: var(--text-mid); text-transform: uppercase; letter-spacing: 0.08em; }
.fleet-rate-value { font-family: var(--serif); font-size: var(--sz-lg); color: var(--gold); margin-top: 0.3rem; }
.fleet-card-cta { margin-top: auto; }

.fleet-note {
  max-width: 68ch;
  margin-top: 2.5rem;
  font-size: var(--sz-sm);
  color: var(--text-mid);
  border-left: 2px solid var(--border-gold);
  padding-left: 1.25rem;
}

.bespoke-section { padding-block: var(--gap-section); border-top: 1px solid var(--border); }
.bespoke-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: center; }
.bespoke-text .title { margin-block: 1rem 1.5rem; }
.bespoke-list { display: flex; flex-direction: column; gap: 0.9rem; margin-bottom: 2rem; }
.bespoke-list li { font-size: var(--sz-sm); color: var(--text-mid); line-height: 1.7; padding-left: 1.5rem; position: relative; }
.bespoke-list li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }
.bespoke-panel {
  background: var(--surface-mid);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  text-align: center;
}
.bespoke-panel .label { justify-content: center; display: flex; }
.bespoke-panel-title { font-family: var(--serif); font-size: var(--sz-xl); color: var(--text); margin-block: 1rem 0.75rem; }
.bespoke-panel-body { font-size: var(--sz-sm); color: var(--text-mid); line-height: 1.7; margin-bottom: 1.75rem; }

@media (max-width: 900px) {
  .bespoke-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .fleet-rates { grid-template-columns: 1fr; }
  .fleet-rate { border-right: none; border-bottom: 1px solid var(--border); padding-block: 0.5rem; }
  .fleet-rate:last-child { border-bottom: none; }
}
