/* ----------------------------------------------------------------
   Luxury Caravan Rental Chennai — stylesheet
   Editorial, gallery-white palette. Display: Frunchy (self-hosted). Body: Jost.
   ---------------------------------------------------------------- */

@font-face {
  font-family: "Frunchy";
  src: url("../font/frunchy.otf") format("opentype"),
       url("../font/frunchy.ttf") format("truetype");
  /* Single Regular face mapped across 400-700 so weight-500 uses (.stat-n,
     .contact-big) don't get a synthetic faux-bold. */
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #ffffff;
  --paper: #fafaf9;
  --ink: #101010;
  --muted: #6f6f6c;
  --line: #e9e9e7;
  --accent: #8f7248;
  --dark: #0f0f0f;
  --dark-2: #1a1a1a;
  --dark-line: #282828;
  --dark-muted: #a6a6a3;
  --wa: #1fae54;
  --radius: 14px;
  --wrap: 1200px;
  --display: "Frunchy", georgia, serif;
  --display-num: var(--display); /* Frunchy has real numerals — one face everywhere */
  --body: "Jost", -apple-system, sans-serif;
}

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

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

/* 17px root so every rem-based size steps up together */
html { scroll-behavior: smooth; font-size: 17px; }

body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.012em; /* Jost breathes a little at body sizes */
  -webkit-font-smoothing: antialiased;
}

img, svg, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
address { font-style: normal; }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0.005em;
}
h1 em, h2 em, .page-title em, .hero-title em {
  font-style: normal; /* Frunchy has no italic — accent by colour, not faux slant */
  font-weight: 400;
  color: var(--accent);
}
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: 1.35rem; line-height: 1.25; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }

.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--tight { padding: clamp(40px, 6vw, 72px) 0; }
.section--alt { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section--dark { background: var(--dark); color: #f4f4f3; }

/* ---------------------------------------------------------------- */
/* Reveal-on-scroll                                                   */
/* ---------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(18px); /* short rise — long drops read as lag */
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1) var(--d, 0s),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) var(--d, 0s);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; filter: none; }

/* photos inside revealed blocks settle from a gentle zoom */
.reveal .ph-img {
  transform: scale(1.06);
  transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1) var(--d, 0s);
}
.reveal.is-in .ph-img { transform: scale(1); }

/* thin gold reading-progress line */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--accent), #b08e60);
  z-index: 80;
  pointer-events: none;
}

/* When GSAP drives the animations, neutralise the CSS fallbacks */
html.gsap-on .reveal { opacity: 1; transform: none; filter: none; transition: none; }
html.gsap-on .reveal .ph-img { transform: none; transition: none; }
html.gsap-on .hero-title,
html.gsap-on .hero-sub,
html.gsap-on .hero-cta,
html.gsap-on .hero-media { animation: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; filter: none; transition: none; }
  .reveal .ph-img { transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .marquee-track { animation: none !important; }
  .play-badge::after { animation: none !important; }
}

/* ---------------------------------------------------------------- */
/* Buttons & links                                                    */
/* ---------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 30px;
  border-radius: 2px;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease, letter-spacing 0.3s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); letter-spacing: 0.2em; }
.btn--ink { background: var(--ink); color: #ffffff; }
.btn--ink:hover { background: #262626; }
.btn--light { background: #ffffff; color: var(--ink); }
.btn--light:hover { background: #ededeb; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 1rem;
  border-bottom: 1px solid transparent;
}
.link-arrow span { transition: transform 0.25s ease; }
.link-arrow:hover span { transform: translateX(5px); }
.link-arrow--light { color: #f4f4f3; }

.cta-row { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 14px;
}

/* ---------------------------------------------------------------- */
/* Header                                                             */
/* ---------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease,
              transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.05);
}
.site-header.is-hidden { transform: translateY(-100%); }

.header-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 22px clamp(20px, 4vw, 48px);
  display: flex;
  align-items: center;
  gap: 28px;
  transition: padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
/* header compresses gently once you start reading */
.site-header.is-scrolled .header-inner { padding-top: 12px; padding-bottom: 12px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
}
.brand-name {
  font-family: var(--display);
  font-size: 1.1rem;
  line-height: 1.15;
  max-width: 150px;
}
.brand-name em { font-style: italic; color: var(--accent); }

.site-nav { display: flex; align-items: center; gap: 32px; margin-left: auto; }
.site-nav a {
  font-weight: 500;
  color: var(--muted);
  transition: color 0.25s ease;
}
.site-nav a:hover, .site-nav a[aria-current] { color: var(--ink); }

/* Top-level items: small caps tracking + a hairline that draws in */
.site-nav > a, .nav-item > a {
  position: relative;
  padding: 10px 0;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.site-nav > a::after, .nav-item > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.site-nav > a:hover::after, .site-nav > a[aria-current]::after,
.nav-item > a:hover::after, .nav-item:focus-within > a::after {
  transform: scaleX(1);
  transform-origin: left center;
}

/* Dropdown sub-navigation */
.nav-item { position: relative; }
.nav-item > a { display: inline-flex; align-items: center; gap: 6px; }
.nav-caret { width: 9px; height: 6px; stroke: currentColor; fill: none; stroke-width: 1.6; flex-shrink: 0; transition: transform 0.25s ease; }
.nav-item:hover .nav-caret, .nav-item:focus-within .nav-caret { transform: rotate(180deg); }
.sub-nav {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 14px) scale(0.985);
  min-width: 248px;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.12);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.35s;
}
.sub-nav::before { /* invisible hover bridge between item and panel */
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.nav-item:hover .sub-nav, .nav-item:focus-within .sub-nav {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 6px) scale(1);
}
.sub-nav a {
  position: relative;
  padding: 10px 14px 10px 18px;
  border-radius: 9px;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: background 0.25s ease, color 0.25s ease, padding-left 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.sub-nav a::before { /* gold tick slides in on hover */
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  width: 6px;
  height: 1px;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.sub-nav a:hover {
  background: var(--bg);
  color: var(--ink);
  padding-left: 24px;
}
.sub-nav a:hover::before { opacity: 1; }

.header-cta { padding: 12px 22px; font-size: 0.72rem; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 34px; height: 34px;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  cursor: pointer;
}
.nav-toggle span { display: block; height: 1.5px; background: var(--ink); transition: transform 0.3s ease; }

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 8px clamp(20px, 4vw, 48px) 28px;
  border-bottom: 1px solid var(--line);
}
.mobile-nav a { padding: 13px 0; font-size: 1.05rem; font-weight: 500; border-bottom: 1px solid var(--line); }
.mobile-nav a:last-child { border-bottom: 0; }
.mobile-nav a[aria-current] { color: var(--accent); }
.mobile-nav-h {
  padding: 18px 0 6px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.mobile-nav-call { color: var(--accent); font-weight: 600; }

body.nav-open .mobile-nav { display: flex; max-height: calc(100dvh - 71px); overflow-y: auto; }
body.nav-open .nav-toggle span:first-child { transform: translateY(4.2px) rotate(45deg); }
body.nav-open .nav-toggle span:last-child { transform: translateY(-4.2px) rotate(-45deg); }

@media (max-width: 920px) {
  .site-nav { display: none; }
  .nav-toggle { display: flex; }
  .brand { margin: 0 auto; }
  .brand-name { max-width: none; }
  .header-cta { padding: 9px 18px; font-size: 0.85rem; }
}

/* ---------------------------------------------------------------- */
/* Hero (home)                                                        */
/* ---------------------------------------------------------------- */

.hero { padding-top: clamp(56px, 9vw, 110px); }
.hero-inner { text-align: center; max-width: 880px; }

.hero-title {
  font-size: clamp(3rem, 8.5vw, 6.4rem);
  line-height: 1.02; /* Frunchy carries generous built-in line spacing */
  animation: heroIn 1.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-sub {
  max-width: 580px;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: 1.12rem;
  animation: heroIn 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}
.hero-cta {
  justify-content: center;
  margin-top: 34px;
  animation: heroIn 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: none; }
}

.hero-media {
  margin-top: clamp(48px, 7vw, 88px);
  animation: heroIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}
.hero-ph { border-radius: 0; min-height: clamp(320px, 52vw, 620px); }

/* ---------------------------------------------------------------- */
/* Marquee strip                                                      */
/* ---------------------------------------------------------------- */

.marquee {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  animation: marquee 36s linear infinite;
}
.marquee-track span {
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--muted);
}
.marquee-track i { color: var(--accent); font-style: normal; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------------------------------------------------------------- */
/* Section head                                                       */
/* ---------------------------------------------------------------- */

.section-head {
  max-width: 740px;
  margin: 0 auto clamp(40px, 6vw, 76px);
  text-align: center;
}
.section-lead { color: var(--muted); max-width: 580px; margin: 18px auto 0; font-size: 1.12rem; }
.section-head--dark .section-lead { color: var(--dark-muted); }
.section-foot { margin-top: 36px; color: var(--muted); font-size: 0.95rem; }
.section-foot a { color: var(--ink); font-weight: 600; border-bottom: 1px solid var(--line); }
.section-foot a:hover { border-bottom-color: var(--ink); }


/* ---------------------------------------------------------------- */
/* Placeholders                                                       */
/* ---------------------------------------------------------------- */

.ph {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  padding: 24px;
  border-radius: var(--radius);
  overflow: hidden;
  width: 100%;
}
.ph svg { width: 26px; height: 26px; opacity: 0.55; }
.ph span {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  max-width: 380px;
  line-height: 1.5;
  opacity: 0.75;
}
.ph--light { background: #f0f0ee; color: #8b8b87; box-shadow: inset 0 0 0 1px #e4e4e2; }
.ph--dark { background: var(--dark-2); color: #969693; box-shadow: inset 0 0 0 1px var(--dark-line); }
.ph--16x9 { aspect-ratio: 16 / 9; }
.ph--4x3 { aspect-ratio: 4 / 3; }
.ph--3x4 { aspect-ratio: 3 / 4; }
.ph--1x1 { aspect-ratio: 1 / 1; }
.ph--21x9 { aspect-ratio: 21 / 9; }

/* The actual image inside a placeholder frame — swap its src for the real photo. */
.ph-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 640px) {
  .ph--21x9 { aspect-ratio: 16 / 10; }
}

/* ---------------------------------------------------------------- */
/* Cards (fleet on home)                                              */
/* ---------------------------------------------------------------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 36px);
}
.card-grid--two { grid-template-columns: repeat(2, 1fr); }

.card { display: block; }
.card .ph { transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
.card:hover .ph { transform: translateY(-6px); }
.card.is-in:hover .ph-img { transform: scale(1.05); }
.card-body { padding: 20px 4px 0; }
.card-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 8px;
}
.card-body h3 {
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.card-body h3::after {
  content: "→";
  font-family: var(--body);
  font-size: 1.05rem;
  color: var(--accent);
  transition: transform 0.3s ease;
}
.card:hover .card-body h3::after { transform: translateX(6px); }
.card-body p { color: var(--muted); font-size: 1rem; }
.card-meta {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 0.74rem !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted) !important;
  font-weight: 600;
}

@media (max-width: 920px) {
  .card-grid, .card-grid--two { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
}

/* ---------------------------------------------------------------- */
/* Media feature (video placeholder)                                  */
/* ---------------------------------------------------------------- */

.media-feature { position: relative; }
.play-badge {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  cursor: pointer;
  transition: transform 0.3s ease;
}
.play-badge:hover { transform: scale(1.08); }
.play-badge::after {
  content: "";
  position: absolute;
  inset: -1px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  animation: pulse-ring 2.6s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.7); opacity: 0; }
}
.play-badge span {
  display: block;
  margin: 0 auto;
  width: 0; height: 0;
  border-left: 16px solid #ffffff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  transform: translateX(2px);
}

/* ---------------------------------------------------------------- */
/* Use-case list (editorial index rows)                               */
/* ---------------------------------------------------------------- */

.usecase-list { border-top: 1px solid var(--line); }
.usecase {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 70px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 28px 18px;
  border-bottom: 1px solid var(--line);
  transition: color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.usecase::after { /* ink sweep — transform only, so it never reflows */
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--dark);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.usecase:hover { color: #f4f4f3; }
.usecase:hover::after { transform: scaleX(1); }
.usecase-n {
  font-family: var(--display-num);
  color: var(--accent);
  font-size: 1.15rem;
  transition: color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.usecase:hover .usecase-n { color: #b08e60; }
.usecase-h {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 400;
  line-height: 1.25;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.usecase:hover .usecase-h { transform: translateX(12px); }
.usecase-arrow {
  font-size: 1.4rem;
  color: var(--muted);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.usecase:hover .usecase-arrow { transform: translateX(8px); color: #f4f4f3; }

@media (max-width: 640px) {
  .usecase { grid-template-columns: 44px 1fr auto; padding: 20px 2px; }
}

/* ---------------------------------------------------------------- */
/* Steps (dark band)                                                  */
/* ---------------------------------------------------------------- */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 56px);
  margin-bottom: 48px;
}
.step-n {
  font-family: var(--display-num);
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 16px;
}
.step h3 { margin-bottom: 10px; }
.section--dark .step p:not(.step-n) { color: var(--dark-muted); font-size: 1rem; }
.steps-grid--light { margin-bottom: 0; }
.steps-grid--light .step p:not(.step-n) { color: var(--muted); font-size: 1rem; }

@media (max-width: 760px) {
  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------------------------------------------------------------- */
/* Routes                                                             */
/* ---------------------------------------------------------------- */

.route-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 4vw, 48px);
}
.route h3 { margin: 18px 0 8px; }
.route p { color: var(--muted); font-size: 1rem; max-width: 480px; }
.route .link-arrow { margin-top: 12px; }

@media (max-width: 760px) {
  .route-grid { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------- */
/* Testimonials                                                       */
/* ---------------------------------------------------------------- */

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 36px);
}
.quote {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
  padding-top: clamp(48px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
.quote:hover { transform: translateY(-4px); box-shadow: 0 24px 48px rgba(0, 0, 0, 0.07); }
.quote::before {
  content: "\201C";
  position: absolute;
  top: 14px;
  left: clamp(20px, 3vw, 32px);
  font-family: var(--display);
  font-size: 4.4rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.45;
  pointer-events: none;
}
.quote blockquote {
  font-size: 1.06rem;
  line-height: 1.65;
  font-style: italic;
  color: #3a3a38;
}
.quote figcaption { margin-top: auto; font-size: 0.88rem; }
.quote figcaption strong { display: block; font-weight: 600; }
.quote figcaption span { color: var(--muted); }

@media (max-width: 920px) {
  .quote-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
}

/* ---------------------------------------------------------------- */
/* CTA banner                                                         */
/* ---------------------------------------------------------------- */

.cta-banner { padding: clamp(20px, 3vw, 48px) 0 clamp(64px, 8vw, 110px); }
.cta-banner-grid {
  background: var(--dark);
  color: #f4f4f3;
  border-radius: calc(var(--radius) + 8px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  padding: clamp(32px, 5vw, 72px);
  overflow: hidden;
}
.cta-banner-copy h2 { margin-bottom: 18px; }
.cta-banner-copy p { color: var(--dark-muted); max-width: 440px; margin-bottom: 30px; }
.cta-banner-media .ph { box-shadow: inset 0 0 0 1px var(--dark-line); }

@media (max-width: 860px) {
  .cta-banner-grid { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------- */
/* Inner-page hero & breadcrumbs                                      */
/* ---------------------------------------------------------------- */

.page-hero { padding: clamp(40px, 6vw, 80px) 0 clamp(28px, 4vw, 48px); }
.page-title { font-size: clamp(2.6rem, 6.5vw, 4.8rem); margin: 18px 0 0; }
.page-sub { max-width: 620px; color: var(--muted); margin-top: 22px; }
.page-hero .ph { margin-top: clamp(36px, 5vw, 56px); }

.breadcrumbs { font-size: 0.82rem; color: var(--muted); display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.breadcrumbs a:hover { color: var(--ink); }
.breadcrumbs [aria-current] { color: var(--ink); }
.crumb-sep { opacity: 0.5; }

/* ---------------------------------------------------------------- */
/* Fleet rows (overview & services)                                   */
/* ---------------------------------------------------------------- */

.fleet-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.fleet-row--flip .fleet-media { order: 2; }
.wrap.fleet-row + .wrap.fleet-row { margin-top: clamp(56px, 8vw, 110px); }
.fleet-copy h2 { margin-bottom: 14px; }
.fleet-tagline {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.18rem;
  color: var(--accent);
  margin-bottom: 14px;
}
.fleet-copy > p { color: var(--muted); }
.fleet-price { margin: 22px 0; font-size: 0.95rem; color: var(--muted); }
.fleet-price strong { font-family: var(--display); font-size: 1.5rem; color: var(--ink); font-weight: 400; margin: 0 4px; }
.fleet-price span { display: block; font-size: 0.85rem; }

.tick-list { margin: 20px 0; display: grid; gap: 10px; }
.tick-list li { padding-left: 26px; position: relative; font-size: 1rem; }
.tick-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 12px; height: 7px;
  border-left: 1.6px solid var(--accent);
  border-bottom: 1.6px solid var(--accent);
  transform: rotate(-45deg);
}
.dash-list { margin: 20px 0; display: grid; gap: 10px; }
.dash-list li { padding-left: 26px; position: relative; font-size: 1rem; }
.dash-list li::before { content: "—"; position: absolute; left: 0; color: var(--accent); }

@media (max-width: 860px) {
  .fleet-row { grid-template-columns: 1fr; }
  .fleet-row--flip .fleet-media { order: 0; }
}

/* ---------------------------------------------------------------- */
/* Caravan detail                                                     */
/* ---------------------------------------------------------------- */

.detail-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.detail-main h2 { margin-bottom: 16px; }
.detail-summary { color: var(--muted); margin-bottom: 36px; max-width: 560px; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 3vw, 40px);
}
.feature h3 { font-size: 1.2rem; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 1rem; }

.detail-side { position: sticky; top: 96px; }
.spec-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 34px);
}
.spec-price { font-size: 0.9rem; color: var(--muted); margin-bottom: 20px; }
.spec-price strong { font-family: var(--display); font-weight: 400; font-size: 1.9rem; color: var(--ink); margin: 0 6px; }
.spec-price span { display: block; margin-top: 2px; }
.spec-list { display: grid; gap: 0; margin-bottom: 24px; }
.spec-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
}
.spec-list dt { color: var(--muted); }
.spec-list dd { text-align: right; font-weight: 500; }
.spec-card .btn + .btn { margin-top: 10px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2vw, 24px);
}

.detail-faq { max-width: 860px; }

@media (max-width: 920px) {
  .detail-grid { grid-template-columns: 1fr; }
  .detail-side { position: static; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------- */
/* Pricing                                                            */
/* ---------------------------------------------------------------- */

.tariff-grid { display: grid; gap: clamp(40px, 6vw, 64px); }
.tariff-block-head { display: flex; align-items: baseline; gap: 24px; flex-wrap: wrap; margin-bottom: 22px; }
.tariff-block-head p { color: var(--muted); font-size: 0.92rem; }

.table-scroll { overflow-x: auto; }
.tariff-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 0.97rem;
}
.tariff-table th, .tariff-table td { text-align: left; padding: 16px 20px; border-bottom: 1px solid var(--line); }
.tariff-table thead th {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  font-weight: 600;
  background: var(--bg);
}
.tariff-table tbody tr:last-child td { border-bottom: 0; }
.tariff-table strong { font-weight: 600; }

.incl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
}
.incl-grid h2 { font-size: 1.6rem; margin-bottom: 8px; }

.terms-list { counter-reset: t; display: grid; gap: 0; border-top: 1px solid var(--line); max-width: 860px; }
.terms-list li {
  counter-increment: t;
  padding: 22px 0 22px 64px;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.terms-list li::before {
  content: "0" counter(t);
  position: absolute;
  left: 0; top: 22px;
  font-family: var(--display);
  font-style: italic;
  color: var(--accent);
}

@media (max-width: 760px) {
  .incl-grid { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------- */
/* Stats (about)                                                      */
/* ---------------------------------------------------------------- */

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 48px);
  text-align: center;
}
.stat-n { font-family: var(--display-num); font-size: clamp(2.4rem, 4vw, 3.6rem); font-weight: 500; }
.stat p:last-child { color: var(--muted); font-size: 0.92rem; }

@media (max-width: 760px) {
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Long-form SEO prose blocks */
.prose { max-width: 820px; }
.prose h2 { margin-bottom: 18px; }
.prose p { color: var(--muted); margin-bottom: 16px; }
.prose a { color: var(--ink); font-weight: 600; border-bottom: 1px solid var(--line); }
.prose a:hover { border-bottom-color: var(--ink); }

.note-block { max-width: 760px; }
.note-block h2 { margin-bottom: 14px; }
.note-block p { color: var(--muted); }
.note-block a { color: var(--ink); font-weight: 600; border-bottom: 1px solid var(--line); }
.note-block a:hover { border-bottom-color: var(--ink); }

/* ---------------------------------------------------------------- */
/* Contact                                                            */
/* ---------------------------------------------------------------- */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 32px);
}
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
a.contact-card:hover { transform: translateY(-4px); border-color: var(--accent); }
/* :not() keeps the generic card-text rule from out-specifying the big number */
.contact-big { font-family: var(--display-num); font-size: 2.2rem; font-weight: 500; }
.contact-card p:not(.contact-big), .contact-card address { color: var(--muted); font-size: 1rem; }
.contact-card .link-arrow { margin-top: auto; color: var(--ink); }

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.map-frame iframe { width: 100%; height: clamp(340px, 45vw, 480px); border: 0; }

@media (max-width: 920px) {
  .contact-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
}

/* ---------------------------------------------------------------- */
/* FAQ                                                                */
/* ---------------------------------------------------------------- */

.faq-wrap { max-width: 860px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 4px;
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.3;
  transition: color 0.2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent); }
.faq-item summary i {
  flex-shrink: 0;
  width: 14px; height: 14px;
  position: relative;
}
.faq-item summary i::before, .faq-item summary i::after {
  content: "";
  position: absolute;
  background: var(--accent);
  transition: transform 0.3s ease;
}
.faq-item summary i::before { left: 0; top: 6px; width: 14px; height: 1.6px; }
.faq-item summary i::after { left: 6px; top: 0; width: 1.6px; height: 14px; }
.faq-item[open] summary i::after { transform: scaleY(0); }
.faq-a { padding: 0 4px 26px; max-width: 700px; }
.faq-a p { color: var(--muted); }

/* ---------------------------------------------------------------- */
/* Footer                                                             */
/* ---------------------------------------------------------------- */

.site-footer {
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding-top: clamp(48px, 6vw, 80px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: clamp(32px, 4vw, 64px);
  padding-bottom: clamp(40px, 5vw, 64px);
}
.footer-logo { font-family: var(--display); font-size: 1.7rem; margin-bottom: 14px; }
.footer-logo span { font-size: 0.7em; vertical-align: super; color: var(--accent); }
.footer-blurb { color: var(--muted); font-size: 0.97rem; max-width: 360px; margin-bottom: 18px; }
.footer-contact a { font-weight: 600; line-height: 2; border-bottom: 1px solid var(--line); }
.footer-contact a:hover { border-bottom-color: var(--ink); }
.footer-h { /* column sub-headers in the display face — small gold rule beneath */
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--ink);
  padding-bottom: 12px;
  margin-bottom: 16px;
  position: relative;
}
.footer-h::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 1px;
  background: var(--accent);
}
.footer-grid div a {
  display: block;
  padding: 6px 0;
  font-size: 1rem;
  color: var(--ink);
  transition: color 0.25s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.footer-grid div a:hover { color: var(--accent); transform: translateX(4px); }
.footer-grid address { color: var(--muted); font-size: 0.97rem; line-height: 1.8; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 22px;
  padding-bottom: 26px;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--muted);
}

@media (max-width: 920px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------- */
/* Floating actions                                                   */
/* ---------------------------------------------------------------- */

.float-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 70;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.float-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease;
}
.float-btn:hover { transform: translateY(-3px); }
.float-btn svg { width: 22px; height: 22px; }
.float-btn--call {
  width: 52px; height: 52px;
  justify-content: center;
  background: var(--ink);
  color: #ffffff;
}
.float-btn--wa {
  padding: 14px 22px;
  background: var(--wa);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
}

@media (max-width: 560px) {
  .float-btn--wa span { display: none; }
  .float-btn--wa { width: 52px; height: 52px; padding: 0; justify-content: center; }
}
