/* ============================================================
   City Pride Tours & Travels — style.css
   Design & development: Krishna Gurjar (krishnagurjar.dev)
   Pure CSS — no frameworks, no build step.
   ============================================================ */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { min-height: 100vh; }
img, svg, video { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ---------- Tokens ---------- */
:root {
  --ink: #0f1d17;
  --ink-2: #16261e;
  --ink-3: #1e3226;
  --cream: #f5f0e6;
  --cream-2: #ece4d3;
  --paper: #fbf8f1;
  --brass: #b9892e;
  --brass-2: #d8a83c;
  --brass-soft: #e9d9b6;
  --text: #22312a;
  --muted: #64716a;
  --muted-dark: #9aa8a0;
  --line: rgba(34, 49, 42, 0.14);
  --line-dark: rgba(245, 240, 230, 0.14);
  --green-wa: #1fa855;
  --shadow-lg: 0 30px 60px -22px rgba(15, 29, 23, 0.35);
  --shadow-sm: 0 10px 30px -14px rgba(15, 29, 23, 0.25);
  --font-display: "Plus Jakarta Sans", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Plus Jakarta Sans", "Helvetica Neue", Arial, sans-serif;
  --nav-h: 84px;
  --radius: 14px;
  --radius-lg: 22px;
  --pad: clamp(1.25rem, 4vw, 3rem);
  --section-gap: clamp(4.5rem, 9vw, 8.5rem);
}

::selection { background: var(--brass); color: var(--ink); }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  font-size: 1.0625rem;
  line-height: 1.65;
  overflow-x: hidden;
}

/* subtle paper grain over the whole site */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2000;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container { width: min(1240px, 100% - 2 * var(--pad)); margin-inline: auto; }
.container--wide { width: min(1420px, 100% - 2 * var(--pad)); margin-inline: auto; }

/* ---------- Type helpers ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.display em, .accent-em {
  font-style: normal;
  color: var(--brass);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brass);
}
.eyebrow::before {
  content: "";
  width: 2.4rem;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.section-head { margin-bottom: clamp(2.25rem, 5vw, 3.75rem); }
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-top: 0.9rem;
  max-width: 20em;
}
.section-head p { margin-top: 1rem; max-width: 44em; color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}
.btn svg { width: 1.05em; height: 1.05em; flex: none; }
.btn:active { transform: scale(0.97); }

.btn--brass { background: var(--brass); color: var(--ink); }
.btn--brass:hover { background: var(--brass-2); transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(185, 137, 46, 0.6); }

.btn--ink { background: var(--ink); color: var(--cream); }
.btn--ink:hover { background: var(--ink-3); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

.btn--ghost { border: 1px solid var(--line); color: var(--text); }
.btn--ghost:hover { border-color: var(--text); transform: translateY(-2px); }

.btn--ghost-light { border: 1px solid var(--line-dark); color: var(--cream); }
.btn--ghost-light:hover { border-color: var(--cream); transform: translateY(-2px); }

.btn--wa { background: var(--green-wa); color: #fff; }
.btn--wa:hover { background: #23c063; transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(31, 168, 85, 0.55); }

/* arrow link */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.35rem;
  transition: gap 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.link-arrow:hover { gap: 0.9rem; border-color: var(--brass); color: var(--brass); }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-solid {
  background: rgba(15, 29, 23, 0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line-dark);
}
.nav {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* brand */
.brand { display: flex; align-items: center; gap: 0.8rem; color: var(--cream); }
.brand__mark {
  width: 44px; height: 44px; flex: none;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--brass);
  color: var(--ink);
}
.brand__mark svg { width: 24px; height: 24px; }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1;
}
.brand__sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brass-2);
  margin-top: 0.3rem;
}

/* links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-inline: auto;
}
.nav__links a {
  position: relative;
  color: rgba(245, 240, 230, 0.78);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.4rem 0;
  transition: color 0.25s ease;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.nav__links a:hover, .nav__links a.is-active { color: var(--cream); }
.nav__links a:hover::after, .nav__links a.is-active::after { transform: scaleX(1); transform-origin: left; }

.nav__cta { display: flex; align-items: center; gap: 0.9rem; }
.nav__phone {
  display: flex; align-items: center; gap: 0.55rem;
  color: var(--cream);
  font-weight: 700;
  font-size: 0.95rem;
  transition: color 0.25s ease;
}
.nav__phone svg { width: 18px; height: 18px; color: var(--brass-2); }
.nav__phone:hover { color: var(--brass-2); }

.btn--dev {
  border: 1px solid var(--line-dark);
  color: var(--cream);
  padding: 0.65rem 1.2rem;
  font-size: 0.85rem;
  gap: 0.5rem;
}
.btn--dev svg { color: var(--brass-2); }
.btn--dev:hover { background: var(--brass); border-color: var(--brass); color: var(--ink); transform: translateY(-2px); }
.btn--dev:hover svg { color: var(--ink); }

/* burger */
.nav__burger {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  place-items: center;
  color: var(--cream);
  z-index: 960;
}
.nav__burger span {
  display: block;
  width: 20px; height: 2px;
  background: currentColor;
  position: relative;
  transition: background 0.2s ease;
}
.nav__burger span::before, .nav__burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px; height: 2px;
  background: currentColor;
  transition: transform 0.3s ease, top 0.3s ease;
}
.nav__burger span::before { top: -6px; }
.nav__burger span::after { top: 6px; }
.nav__burger.is-open span { background: transparent; }
.nav__burger.is-open span::before { top: 0; transform: rotate(45deg); }
.nav__burger.is-open span::after { top: 0; transform: rotate(-45deg); }

/* mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 1rem) var(--pad) 2.5rem;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.5s cubic-bezier(0.77, 0, 0.18, 1);
}
.drawer.is-open { clip-path: inset(0 0 0 0); }
.drawer nav { display: flex; flex-direction: column; gap: 0.4rem; }
.drawer nav a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 2.9rem);
  color: var(--cream);
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--line-dark);
  display: flex;
  align-items: baseline;
  gap: 1rem;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.25s ease;
}
.drawer.is-open nav a { opacity: 1; transform: none; }
.drawer nav a small {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--brass-2);
}
.drawer nav a:hover, .drawer nav a.is-active { color: var(--brass-2); }
.drawer__foot { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* ============================================================
   HERO (home) — full-width photo hero
   ============================================================ */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--cream);
  padding: calc(var(--nav-h) + clamp(4rem, 9vw, 6.5rem)) 0 clamp(6.5rem, 10vw, 8.5rem);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 65% center; }
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(15, 29, 23, 0.9) 0%, rgba(15, 29, 23, 0.2) 40%),
    linear-gradient(90deg, rgba(15, 29, 23, 0.94) 0%, rgba(15, 29, 23, 0.78) 42%, rgba(15, 29, 23, 0.3) 100%);
}
.hero > .container { position: relative; z-index: 2; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.1rem;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-2);
  margin-bottom: 1.6rem;
}
.hero__badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green-wa);
  box-shadow: 0 0 0 0 rgba(31, 168, 85, 0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(31, 168, 85, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(31, 168, 85, 0); }
  100% { box-shadow: 0 0 0 0 rgba(31, 168, 85, 0); }
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 4.8vw, 3.7rem);
  line-height: 1.13;
  letter-spacing: -0.02em;
  max-width: 17em;
}
.hero h1 .accent { color: var(--brass-2); }

.hero__lede {
  margin-top: 1.4rem;
  max-width: 37em;
  color: rgba(245, 240, 230, 0.82);
  font-size: 1.05rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }

/* trust row under the CTAs */
.hero__trust {
  margin-top: 2.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 2.2rem;
}
.hero__trust li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.93rem;
  font-weight: 600;
  color: rgba(245, 240, 230, 0.88);
}
.hero__trust svg { width: 18px; height: 18px; flex: none; color: var(--brass-2); }

/* ============================================================
   BOOKING STRIP
   ============================================================ */
.bookbar-wrap { position: relative; z-index: 5; padding-bottom: 2.5rem; }
.bookbar {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 1rem;
  align-items: end;
  margin-top: -4.4rem;
}
.bookbar .field label {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.45rem;
}
.bookbar .field input, .bookbar .field select {
  width: 100%;
  border: 0;
  border-bottom: 2px solid var(--line);
  background: transparent;
  padding: 0.45rem 0;
  font-weight: 600;
  outline: none;
  border-radius: 0;
  transition: border-color 0.25s ease;
  -webkit-appearance: none;
  appearance: none;
}
.bookbar .field select { cursor: pointer; }
.bookbar .field input:focus, .bookbar .field select:focus { border-color: var(--brass); }

/* ============================================================
   BENTO — why city pride
   ============================================================ */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(120px, auto);
  gap: 1.1rem;
}
.bento__card {
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 2.6vw, 2.2rem);
  position: relative;
  overflow: hidden;
}
.bento__card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}
.bento__card p { color: var(--muted); font-size: 0.95rem; }

.bento__about {
  grid-column: span 5;
  grid-row: span 2;
  background: var(--ink);
  color: var(--cream);
  display: flex;
  flex-direction: column;
}
.bento__about h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); max-width: 14em; }
.bento__about p { color: var(--muted-dark); margin-top: 0.8rem; max-width: 38em; }
.bento__about .sig {
  margin-top: auto;
  padding-top: 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.bento__about .sig svg { width: 44px; height: 44px; color: var(--brass-2); flex: none; }
.bento__about .sig strong { display: block; font-size: 0.95rem; }
.bento__about .sig span { font-size: 0.8rem; color: var(--muted-dark); }

.bento__photo { grid-column: span 3; grid-row: span 2; padding: 0; }
.bento__photo img { width: 100%; height: 100%; object-fit: cover; }

.bento__rating {
  grid-column: span 4;
  background: var(--brass);
  color: var(--ink);
}
.bento__rating .stars { font-size: 1.1rem; letter-spacing: 0.15em; }
.bento__rating strong { font-family: var(--font-display); font-size: 2.6rem; font-weight: 500; line-height: 1.1; display: block; }
.bento__rating p { color: rgba(15, 29, 23, 0.75); font-weight: 600; }

.bento__fact { grid-column: span 4; background: var(--paper); border: 1px solid var(--line); }
.bento__fact .ico {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--cream-2);
  display: grid; place-items: center;
  color: var(--brass);
  margin-bottom: 1rem;
}
.bento__fact .ico svg { width: 22px; height: 22px; }

.bento__stat {
  grid-column: span 4;
  background: var(--cream-2);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bento__stat strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  line-height: 1;
}
.bento__stat span { color: var(--muted); font-weight: 700; font-size: 0.9rem; margin-top: 0.4rem; }

/* ============================================================
   SERVICES INDEX (editorial numbered list)
   ============================================================ */
.svc-index { position: relative; }
.svc-index__row {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  padding: clamp(1.4rem, 3vw, 2rem) 0.5rem;
  border-top: 1px solid var(--line);
  color: inherit;
  transition: background 0.3s ease, padding 0.3s ease;
}
.svc-index__row:last-child { border-bottom: 1px solid var(--line); }
.svc-index__row:hover { background: rgba(185, 137, 46, 0.07); padding-inline: 1.2rem; }
.svc-index__num {
  font-weight: 700;
  color: var(--brass);
  font-size: 0.95rem;
  min-width: 2.4rem;
}
.svc-index__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.25rem, 2.6vw, 1.8rem);
  letter-spacing: -0.015em;
  transition: transform 0.3s ease;
}
.svc-index__row:hover .svc-index__title { transform: translateX(6px); }
.svc-index__tag {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.svc-index__arrow {
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}
.svc-index__arrow svg { width: 18px; height: 18px; }
.svc-index__row:hover .svc-index__arrow {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
  transform: rotate(-45deg);
}
/* floating preview image that follows the cursor (desktop only) */
.svc-float {
  position: fixed;
  z-index: 60;
  width: 240px;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.85) rotate(-3deg);
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: var(--shadow-lg);
}
.svc-float img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; opacity: 0; transition: opacity 0.2s ease; }
.svc-float img.is-active { opacity: 1; }
.svc-float.is-visible { opacity: 1; transform: scale(1) rotate(-3deg); }

/* ============================================================
   FLEET RAIL (horizontal scroll-snap)
   ============================================================ */
.fleet-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.fleet-nav { display: flex; gap: 0.7rem; }
.fleet-nav button {
  width: 52px; height: 52px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid; place-items: center;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, opacity 0.2s ease;
}
.fleet-nav button svg { width: 20px; height: 20px; }
.fleet-nav button:hover { background: var(--ink); border-color: var(--ink); color: var(--cream); }
.fleet-nav button:disabled { opacity: 0.3; pointer-events: none; }

.fleet-rail {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.5rem 0.25rem 1.5rem;
  scrollbar-width: none;
  cursor: grab;
}
.fleet-rail::-webkit-scrollbar { display: none; }
.fleet-rail.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.fleet-rail.is-dragging * { pointer-events: none; }

.car-card {
  flex: 0 0 min(330px, 82vw);
  scroll-snap-align: start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.car-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); border-color: rgba(185, 137, 46, 0.5); }
.car-card__cat {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass);
}
.car-card__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.55rem;
  margin-top: 0.3rem;
}
.car-card__art {
  margin: 1.2rem -0.4rem;
  color: var(--ink);
  opacity: 0.85;
}
.car-card__art svg { width: 100%; height: auto; }
.car-card__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.3rem;
}
.car-card__specs span {
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0.34rem 0.75rem;
  border-radius: 999px;
  background: var(--cream-2);
  color: var(--text);
}
.car-card__foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding-top: 1.1rem;
  border-top: 1px dashed var(--line);
}
.car-card__fare small { display: block; font-size: 0.7rem; color: var(--muted); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.car-card__fare strong { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; }
.car-card__book {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--brass);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.25s ease;
}
.car-card__book:hover { gap: 0.75rem; }
.car-card__book svg { width: 14px; height: 14px; }

/* ============================================================
   ROUTE BOARD (departure-board table)
   ============================================================ */
.routes { background: var(--ink); color: var(--cream); }
.routes .section-head p { color: var(--muted-dark); }
.route-board { border-top: 1px solid var(--line-dark); }
.route-board__row {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 2fr) minmax(0, 2fr) minmax(0, 2fr) auto;
  align-items: center;
  gap: clamp(0.8rem, 2.5vw, 2rem);
  padding: 1.5rem 0.6rem;
  border-bottom: 1px solid var(--line-dark);
  color: inherit;
  transition: background 0.3s ease, padding 0.3s ease;
}
.route-board__row:hover { background: rgba(245, 240, 230, 0.05); padding-inline: 1.4rem; }
.route-board__cities {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.05rem, 2.2vw, 1.4rem);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.route-board__cities .path {
  flex: 0 0 clamp(24px, 4vw, 56px);
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--brass-2) 0 5px, transparent 5px 10px);
  position: relative;
}
.route-board__cities .path::after {
  content: "";
  position: absolute;
  right: -2px; top: -3px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--brass-2);
}
.route-board__meta small {
  display: block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-dark);
  margin-bottom: 0.2rem;
}
.route-board__meta strong { font-weight: 700; font-size: 0.98rem; color: var(--cream); }
.route-board__tag {
  justify-self: start;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-2);
  border: 1px solid rgba(216, 168, 60, 0.4);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  white-space: nowrap;
}
.route-board__row .svc-index__arrow { border-color: var(--line-dark); }
.route-board__row:hover .svc-index__arrow { background: var(--brass); border-color: var(--brass); color: var(--ink); transform: rotate(-45deg); }
.route-board__note {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted-dark);
  font-size: 0.92rem;
}

/* ============================================================
   TESTIMONIALS (pull-quote carousel)
   ============================================================ */
.quotes { position: relative; }
.quotes__stage { min-height: 240px; position: relative; }
.quote {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  pointer-events: none;
}
.quote.is-active { opacity: 1; transform: none; pointer-events: auto; position: relative; }
.quote blockquote {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  line-height: 1.45;
  letter-spacing: -0.01em;
  max-width: 30em;
}
.quote figcaption {
  margin-top: 1.6rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.quote__avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--brass-2);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.15rem;
  flex: none;
}
.quote figcaption strong { display: block; font-size: 0.98rem; }
.quote figcaption .stars { color: var(--brass); font-size: 0.8rem; letter-spacing: 0.12em; }
.quote figcaption small { color: var(--muted); font-size: 0.8rem; font-weight: 600; }

.quotes__ctrl {
  margin-top: 2.4rem;
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.quotes__count { font-weight: 600; color: var(--muted); font-size: 0.95rem; min-width: 4.5rem; }
.quotes__count strong { color: var(--text); font-weight: 800; }
.quotes__bar { flex: 1; max-width: 220px; height: 2px; background: var(--line); position: relative; overflow: hidden; }
.quotes__bar i { position: absolute; inset: 0; background: var(--brass); transform-origin: left; transform: scaleX(0); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.faq-grid .section-head { position: sticky; top: calc(var(--nav-h) + 2rem); margin-bottom: 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  text-align: left;
  padding: 1.35rem 0.2rem;
  font-weight: 700;
  font-size: 1.05rem;
  transition: color 0.25s ease;
}
.faq-item__q:hover { color: var(--brass); }
.faq-item__q .cross {
  width: 34px; height: 34px;
  flex: none;
  border: 1px solid var(--line);
  border-radius: 50%;
  position: relative;
  transition: transform 0.35s ease, background 0.3s ease, border-color 0.3s ease;
}
.faq-item__q .cross::before, .faq-item__q .cross::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 12px; height: 2px;
  background: currentColor;
  transform: translate(-50%, -50%);
}
.faq-item__q .cross::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item.is-open .faq-item__q .cross { transform: rotate(135deg); background: var(--brass); border-color: var(--brass); color: var(--ink); }
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item__a p { padding: 0 0.2rem 1.5rem; color: var(--muted); max-width: 56em; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta {
  position: relative;
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  text-align: center;
  padding: var(--section-gap) 0;
}
.cta__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.16;
  filter: saturate(0.55);
}
.cta__bg::after { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at center, transparent 0%, var(--ink) 85%); }
.cta .container { position: relative; }
.cta h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 1.16;
  margin: 0.9rem auto 0;
  max-width: 18em;
}
.cta__phone {
  display: inline-block;
  font-weight: 800;
  font-size: clamp(1.6rem, 3.8vw, 2.6rem);
  color: var(--brass-2);
  margin-top: 1.8rem;
  letter-spacing: 0.01em;
  border-bottom: 2px solid rgba(216, 168, 60, 0.35);
  transition: border-color 0.3s ease, color 0.3s ease;
}
.cta__phone:hover { color: var(--cream); border-color: var(--cream); }
.cta__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; }
.cta__hours { margin-top: 1.6rem; color: var(--muted-dark); font-size: 0.92rem; font-weight: 600; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: var(--cream); border-top: 1px solid var(--line-dark); }
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 2fr) minmax(0, 2fr) minmax(0, 3fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}
.footer-grid h4 {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass-2);
  margin-bottom: 1.3rem;
}
.footer-grid ul { display: grid; gap: 0.65rem; }
.footer-grid ul a { color: var(--muted-dark); font-size: 0.95rem; transition: color 0.25s ease, padding-left 0.25s ease; }
.footer-grid ul a:hover { color: var(--cream); padding-left: 0.4rem; }
.footer-about p { color: var(--muted-dark); font-size: 0.95rem; max-width: 30em; margin-top: 1.2rem; }
.footer-contact li {
  display: flex;
  gap: 0.8rem;
  color: var(--muted-dark);
  font-size: 0.95rem;
  align-items: flex-start;
}
.footer-contact li svg { width: 18px; height: 18px; flex: none; margin-top: 0.2rem; color: var(--brass-2); }
.footer-contact li a { color: inherit; transition: color 0.25s ease; }
.footer-contact li a:hover { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.87rem;
  color: var(--muted-dark);
}
.footer-bottom .dev-credit a {
  color: var(--brass-2);
  font-weight: 700;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease;
}
.footer-bottom .dev-credit a:hover { border-color: var(--brass-2); }

/* back to top */
.to-top {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 800;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
}
.to-top svg { width: 20px; height: 20px; }
.to-top.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: var(--brass); color: var(--ink); }

/* floating WhatsApp bubble */
.wa-float {
  position: fixed;
  left: 1.4rem;
  bottom: 1.4rem;
  z-index: 800;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--green-wa);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 16px 34px -12px rgba(31, 168, 85, 0.65);
  transition: transform 0.3s ease;
}
.wa-float svg { width: 28px; height: 28px; }
.wa-float:hover { transform: scale(1.08) rotate(6deg); }

/* ============================================================
   INNER-PAGE HERO
   ============================================================ */
.page-hero {
  background: var(--ink);
  color: var(--cream);
  padding: calc(var(--nav-h) + clamp(3rem, 7vw, 5.5rem)) 0 clamp(3rem, 6vw, 4.5rem);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -40%; right: -10%;
  width: 55vw; height: 55vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(185, 137, 46, 0.14), transparent 65%);
}
.page-hero .crumbs {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-dark);
  margin-bottom: 1.4rem;
}
.page-hero .crumbs a { transition: color 0.25s; }
.page-hero .crumbs a:hover { color: var(--brass-2); }
.page-hero .crumbs .sep { color: var(--brass-2); }
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  letter-spacing: -0.02em;
  line-height: 1.14;
  max-width: 17em;
  position: relative;
}
.page-hero p { position: relative; margin-top: 1.4rem; max-width: 40em; color: var(--muted-dark); font-size: 1.05rem; }

/* ============================================================
   SERVICES PAGE — offset feature cards
   ============================================================ */
.svc-detail { display: grid; gap: clamp(3.5rem, 7vw, 6rem); }
.svc-card {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: center;
  gap: 1.2rem;
}
.svc-card__media {
  grid-column: 1 / span 7;
  grid-row: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  box-shadow: var(--shadow-lg);
}
.svc-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.svc-card:hover .svc-card__media img { transform: scale(1.045); }
.svc-card__body {
  grid-column: 7 / -1;
  grid-row: 1;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.6rem);
  box-shadow: var(--shadow-sm);
  z-index: 2;
}
.svc-card:nth-child(even) .svc-card__media { grid-column: 6 / -1; }
.svc-card:nth-child(even) .svc-card__body { grid-column: 1 / span 6; }
.svc-card__num { font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brass); font-size: 0.78rem; }
.svc-card__body h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  margin: 0.4rem 0 0.8rem;
  letter-spacing: -0.015em;
}
.svc-card__body p { color: var(--muted); font-size: 0.98rem; }
.svc-card__points { margin: 1.2rem 0 1.5rem; display: grid; gap: 0.55rem; }
.svc-card__points li {
  display: flex;
  gap: 0.7rem;
  font-size: 0.93rem;
  font-weight: 600;
  align-items: baseline;
}
.svc-card__points li::before { content: "✦"; color: var(--brass); font-size: 0.7rem; }

/* how-it-works steps */
.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
.steps li {
  counter-increment: step;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.5rem;
  position: relative;
}
.steps li::before {
  content: "0" counter(step);
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--brass);
  opacity: 0.4;
  line-height: 1;
  display: block;
  margin-bottom: 1rem;
}
.steps h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.2rem; margin-bottom: 0.45rem; }
.steps p { color: var(--muted); font-size: 0.92rem; }

/* ============================================================
   FLEET PAGE
   ============================================================ */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.4rem;
}
.filter-bar button {
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--muted);
  transition: all 0.25s ease;
}
.filter-bar button:hover { border-color: var(--text); color: var(--text); }
.filter-bar button.is-active { background: var(--ink); border-color: var(--ink); color: var(--cream); }

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.fleet-grid .car-card { flex: none; }
.car-card.is-hidden { display: none; }

/* included strip */
.included {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
.included li {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 1.7rem 1.5rem;
}
.included li svg { width: 26px; height: 26px; color: var(--brass-2); margin-bottom: 1rem; }
.included h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.15rem; margin-bottom: 0.4rem; }
.included p { color: var(--muted-dark); font-size: 0.9rem; }

/* ============================================================
   DESTINATIONS PAGE
   ============================================================ */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.2rem;
}
.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: #fff;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}
.dest-grid .dest-card:nth-child(1), .dest-grid .dest-card:nth-child(2) { grid-column: span 3; min-height: 420px; }
.dest-grid .dest-card:nth-child(n+3) { grid-column: span 2; }
.dest-grid .dest-card:nth-child(6) { grid-column: span 6; min-height: 320px; }

/* pan-India tour strip: equal 4-up cards */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.tour-grid .dest-card { min-height: 380px; }
.dest-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 0.8s ease;
}
.dest-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(10, 20, 15, 0.88) 0%, rgba(10, 20, 15, 0.25) 55%, rgba(10, 20, 15, 0.15) 100%);
  transition: background 0.4s ease;
}
.dest-card:hover img { transform: scale(1.06); }
.dest-card__body { padding: 1.7rem; width: 100%; }
.dest-card__km {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-2);
}
.dest-card__body h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.7rem; margin: 0.3rem 0 0.4rem; }
.dest-card__body p { font-size: 0.9rem; color: rgba(255, 255, 255, 0.82); max-width: 30em; }
.dest-card__go {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  transition: background 0.3s ease, transform 0.3s ease;
}
.dest-card__go svg { width: 18px; height: 18px; }
.dest-card:hover .dest-card__go { background: var(--brass); color: var(--ink); transform: rotate(-45deg); }

/* chip cloud for the long list of covered towns */
.chip-cloud { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.chip-cloud a {
  padding: 0.55rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--muted);
  transition: all 0.25s ease;
}
.chip-cloud a:hover { background: var(--ink); border-color: var(--ink); color: var(--cream); transform: translateY(-2px); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact-cards { display: grid; gap: 1rem; }
.contact-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.6rem;
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.contact-card:hover { transform: translateY(-3px); border-color: rgba(185, 137, 46, 0.5); }
.contact-card .ico {
  width: 48px; height: 48px;
  flex: none;
  border-radius: 12px;
  background: var(--ink);
  color: var(--brass-2);
  display: grid;
  place-items: center;
}
.contact-card .ico svg { width: 22px; height: 22px; }
.contact-card h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.15rem; }
.contact-card p, .contact-card a.val { color: var(--muted); font-size: 0.95rem; margin-top: 0.25rem; display: block; }
.contact-card a.val:hover { color: var(--brass); }

.booking-form {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 3rem);
  box-shadow: var(--shadow-lg);
}
.booking-form h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.booking-form > p { color: var(--muted-dark); margin: 0.7rem 0 2rem; font-size: 0.97rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-bottom: 1.2rem; }
.form-row--full { grid-template-columns: 1fr; }
.f-group label {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-dark);
  margin-bottom: 0.5rem;
}
.f-group input, .f-group select, .f-group textarea {
  width: 100%;
  background: rgba(245, 240, 230, 0.06);
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  color: var(--cream);
  outline: none;
  font-weight: 600;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.f-group select { -webkit-appearance: none; appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23d8a83c' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}
.f-group select option { background: var(--ink); color: var(--cream); }
.f-group input::placeholder, .f-group textarea::placeholder { color: rgba(154, 168, 160, 0.55); font-weight: 500; }
.f-group input:focus, .f-group select:focus, .f-group textarea:focus { border-color: var(--brass); background: rgba(245, 240, 230, 0.1); }
.f-group input:invalid:not(:placeholder-shown) { border-color: #c4574d; }
.f-group textarea { min-height: 110px; resize: vertical; }
.f-group input[type="date"] { color-scheme: dark; }
.form-note { font-size: 0.83rem; color: var(--muted-dark); margin-top: 1rem; }
.form-error { color: #e2897f; font-size: 0.88rem; font-weight: 700; margin-top: 0.9rem; display: none; }
.form-error.is-visible { display: block; }

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  filter: grayscale(0.35) sepia(0.12);
}
.map-frame iframe { width: 100%; height: 440px; border: 0; display: block; }

/* hours table */
.hours-band {
  background: var(--brass);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 2.6rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
}
.hours-band h3 { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.4rem, 2.6vw, 1.9rem); max-width: 18em; }
.hours-band .time { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 500; }
.hours-band small { display: block; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.7; }

/* ============================================================
   GENERIC SECTION SPACING & REVEAL
   ============================================================ */
.section { padding: var(--section-gap) 0; }
.section--tight { padding: calc(var(--section-gap) * 0.6) 0; }
.section--paper { background: var(--paper); }

.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.8s cubic-bezier(0.2, 0.65, 0.3, 1), transform 0.8s cubic-bezier(0.2, 0.65, 0.3, 1); }
.reveal.is-inview { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }

/* weights & sizes tuned for the sans display face */
.bento__card h3, .car-card__name, .svc-card__body h3, .steps h3, .dest-card__body h3,
.included h3, .contact-card h3, .booking-form h2, .hours-band h3, .quote figcaption strong,
.drawer nav a { font-weight: 700; }
.bento__rating strong, .bento__stat strong, .hours-band .time { font-weight: 800; }
.bento__about h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); line-height: 1.4; }
.bento__rating strong { font-size: 2.1rem; }
.bento__stat strong { font-size: clamp(1.9rem, 3vw, 2.5rem); }
.car-card__name { font-size: 1.3rem; }
.dest-card__body h3 { font-size: 1.4rem; }
.svc-card__body h3 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); }
.booking-form h2 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
.hours-band h3 { font-size: clamp(1.2rem, 2.2vw, 1.55rem); }
.hours-band .time { font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
.included h3, .steps h3, .contact-card h3 { font-size: 1.08rem; }

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

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .nav__links { display: none; }
  .nav__phone span { display: none; }
  .bookbar { grid-template-columns: 1fr 1fr; margin-top: -3rem; }
  .bookbar .btn { grid-column: 1 / -1; }
  .bento__about { grid-column: span 7; }
  .bento__photo { grid-column: span 5; }
  .bento__rating, .bento__fact, .bento__stat { grid-column: span 6; }
  .svc-card__media { grid-column: 1 / -1 !important; }
  .svc-card__body { grid-column: 2 / -1 !important; margin-top: -4rem; }
  .svc-card:nth-child(even) .svc-card__body { grid-column: 1 / span 11 !important; }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .included { grid-template-columns: repeat(2, 1fr); }
  .dest-grid .dest-card:nth-child(n+3) { grid-column: span 3; }
  .tour-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-grid .section-head { position: static; }
}

@media (max-width: 1080px) and (min-width: 721px) {
  .nav__burger { display: grid; }
}

@media (max-width: 720px) {
  :root { --nav-h: 72px; }
  .nav__burger { display: grid; }
  .nav__cta .nav__phone, .nav__cta .btn--dev { display: none; }
  .brand__mark { width: 38px; height: 38px; }
  .bookbar { grid-template-columns: 1fr; padding: 1.2rem; }
  .bento__about, .bento__photo, .bento__rating, .bento__fact, .bento__stat { grid-column: span 12; }
  .bento__photo { min-height: 240px; }
  .svc-index__row { grid-template-columns: auto 1fr auto; }
  .svc-index__tag { display: none; }
  .route-board__row { grid-template-columns: 1fr auto; row-gap: 0.7rem; }
  .route-board__cities { grid-column: 1 / -1; }
  .route-board__tag { display: none; }
  .route-board__row .svc-index__arrow { display: none; }
  .fleet-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .included { grid-template-columns: 1fr; }
  .dest-card { grid-column: 1 / -1 !important; min-height: 300px !important; }
  .tour-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 1.1rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid .footer-about { grid-column: 1 / -1; }
  .footer-grid .footer-contact-col { grid-column: 1 / -1; }
  .footer-bottom { justify-content: center; text-align: center; }
  .svc-card__body { margin-top: -2.5rem; }
  .map-frame iframe { height: 320px; }
  .wa-float { width: 50px; height: 50px; left: 1rem; bottom: 1rem; }
  .to-top { width: 46px; height: 46px; right: 1rem; bottom: 1rem; }
}
