/* ── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:    #c9a84c;
  --gold-lt: #e8c97a;
  --dark:    #0f1923;
  --navy:    #1a2d45;
  --white:   #ffffff;
  --off-white: #f7f5f0;
  --text:    #2c2c2c;
  --text-lt: #555555;
  --radius:  6px;
  --shadow:  0 4px 24px rgba(0,0,0,0.10);
}

html {
  scroll-behavior: smooth;
  background: var(--dark);
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden; /* Prevents horizontal scroll without breaking position:fixed on iOS */
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Real DOM element fills the safe-area notch/status-bar zone with dark color */
.sa-fill {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: env(safe-area-inset-top, 0px);
  background: #0f1923;
  z-index: 9999;
  pointer-events: none;
}

/* Anchor scroll target offset (account for fixed header + safe area) */
[id="enquiry-form"] {
  scroll-margin-top: calc(110px + env(safe-area-inset-top, 0px));
}

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

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

/* ── Typography ───────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Georgia', serif;
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.4rem); }

p { font-family: 'Arial', sans-serif; color: var(--text-lt); }

.section-label {
  display: inline-block;
  font-family: 'Arial', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* ── Layout helpers ───────────────────────────────────── */
.container {
  width: min(1160px, 92vw);
  margin-inline: auto;
}

section { padding: 96px 0; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

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

/* ── Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: 'Arial', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
}

.btn-gold {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}

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

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

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

/* ── Navigation ───────────────────────────────────────── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(15, 25, 35, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201,168,76,0.20);
  padding-top: env(safe-area-inset-top, 0);
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

header.scrolled {
  background: rgba(8, 14, 22, 0.99);
  box-shadow: 0 4px 32px rgba(0,0,0,0.5);
  border-bottom-color: rgba(201,168,76,0.45);
}

/* Bulletproof safe-area gap fill — extends header bg up into the notch/status bar region */
header::before {
  content: '';
  position: absolute;
  top: calc(-1 * env(safe-area-inset-top, 0px));
  left: 0;
  right: 0;
  height: env(safe-area-inset-top, 0px);
  background: #0f1923;
  pointer-events: none;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}

.logo {
  display: flex;
  align-items: center;
  line-height: 1;
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
}

.logo-img {
  height: 88px;
  width: auto;
  display: block;
  border: none;
  box-shadow: none;
  background: none;
  outline: none;
  -webkit-user-drag: none;
}

/* Keep for any page that still has the old text logo */
.logo-main {
  font-family: 'Georgia', serif;
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 700;
}

.logo-sub {
  font-family: 'Arial', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  font-family: 'Arial', sans-serif;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-phone {
  font-family: 'Arial', sans-serif;
  font-size: 0.88rem;
  color: var(--gold);
  font-weight: 600;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ── Hero ─────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(100px + env(safe-area-inset-top, 0px));
  position: relative;
  overflow: hidden;
}

#hero::before,
#hero::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60%;
  background-size: cover;
  background-position: center;
}

#hero::before {
  left: 0;
  background-image: url('https://images.unsplash.com/photo-1513635269975-59663e0ac1ad?w=1600&q=80');
  mask-image: linear-gradient(to right, black 40%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, black 40%, transparent 100%);
  z-index: 1;
}

#hero::after {
  right: 0;
  background-image: url('cotswold pic.jpg');
  mask-image: linear-gradient(to left, black 40%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, black 40%, transparent 100%);
  z-index: 1;
}

#hero > .container {
  position: relative;
  z-index: 3;
}

#hero .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(10,18,28,0.65) 0%, rgba(10,18,28,0.50) 60%, rgba(10,18,28,0.80) 100%);
  pointer-events: none;
}

.hero-inner {
  max-width: 760px;
  padding: 60px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.45);
  border-radius: 50px;
  padding: 6px 16px;
  margin-bottom: 28px;
}

.hero-badge span {
  font-family: 'Arial', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-lt);
}

#hero h1 {
  color: var(--white);
  margin-bottom: 24px;
}

#hero h1 em {
  font-style: normal;
  color: var(--gold-lt);
}

#hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  max-width: 580px;
  margin-bottom: 40px;
}

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

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.15);
  flex-wrap: wrap;
}

.stat-item { text-align: left; }

.stat-number {
  display: block;
  font-family: 'Georgia', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-lt);
  line-height: 1;
}

.stat-label {
  font-family: 'Arial', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Page Hero (inner pages) ─────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: calc(140px + env(safe-area-inset-top, 0px)) 0 60px;
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ── Trust bar ────────────────────────────────────────── */
#trust {
  background: var(--dark);
  padding: 28px 0;
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-icon {
  width: 36px;
  height: 36px;
  background: rgba(201,168,76,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  color: var(--gold);
  font-weight: 700;
}

.trust-text {
  font-family: 'Arial', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.80);
}

/* ── About ────────────────────────────────────────────── */
.about-section { background: var(--off-white); }

.about-section .text-col p + p { margin-top: 16px; }

.about-section .text-col p {
  font-size: 1.02rem;
  line-height: 1.85;
}

.about-img-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-img-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 8px;
}

.about-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: var(--gold);
  color: var(--dark);
  border-radius: 6px;
  padding: 14px 20px;
  font-family: 'Georgia', serif;
  font-weight: 700;
}

.about-badge strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.about-badge span {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}

/* ── Tours ────────────────────────────────────────────── */
.tour-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.tour-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.14);
}

.tour-img {
  aspect-ratio: 16/9;
  object-fit: cover;
  width: 100%;
}

.tour-body {
  padding: 24px 24px 28px;
  background: var(--white);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tour-tag {
  display: inline-block;
  background: rgba(201,168,76,0.12);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 50px;
  font-family: 'Arial', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 12px;
  margin-bottom: 12px;
}

.tour-body h3 {
  color: var(--navy);
  margin-bottom: 10px;
}

.tour-body p {
  font-size: 0.92rem;
  flex: 1;
}

.tour-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid #eee;
}

.tour-price {
  font-family: 'Georgia', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
}

.tour-price small {
  display: block;
  font-family: 'Arial', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-lt);
  margin-top: 2px;
}

.btn-sm {
  padding: 9px 18px;
  font-size: 0.85rem;
}

/* Bespoke card spans full width */
.tour-card.bespoke {
  grid-column: 1 / -1;
  flex-direction: row;
}

.tour-card.bespoke .tour-img {
  width: 380px;
  height: auto;
  flex-shrink: 0;
}

.tour-card.bespoke .tour-body {
  padding: 36px 40px;
}

.per-group-note {
  text-align: center;
  margin-top: 28px;
  font-family: 'Arial', sans-serif;
  font-size: 0.88rem;
  color: var(--text-lt);
}

.per-group-note strong { color: var(--navy); }

/* ── Who it's for ─────────────────────────────────────── */
.guests-section { background: var(--off-white); }

.guests-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.guest-card {
  background: var(--white);
  border-radius: 10px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
}

.guest-icon {
  width: 56px;
  height: 56px;
  background: rgba(201,168,76,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--gold);
  font-weight: 700;
  font-family: 'Arial', sans-serif;
  font-size: 0.85rem;
}

.guest-card h3 { margin-bottom: 10px; }

.guest-card p { font-size: 0.92rem; }

/* ── Contact ──────────────────────────────────────────── */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 20px; }

.contact-info p { font-size: 1rem; margin-bottom: 32px; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.contact-detail-icon {
  width: 42px;
  height: 42px;
  background: rgba(201,168,76,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  color: var(--gold);
  font-weight: 700;
}

.contact-detail-text strong {
  display: block;
  font-family: 'Arial', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2px;
}

.contact-detail-text span {
  font-family: 'Arial', sans-serif;
  font-size: 1rem;
  color: var(--navy);
  font-weight: 600;
}

/* Form */
.contact-form {
  background: var(--off-white);
  border-radius: 12px;
  padding: 40px 36px;
  box-shadow: var(--shadow);
}

.contact-form h3 {
  margin-bottom: 24px;
}

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

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-family: 'Arial', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #ddd;
  border-radius: var(--radius);
  font-family: 'Arial', sans-serif;
  font-size: 0.93rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group textarea { resize: vertical; min-height: 110px; }

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23555' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-submit { width: 100%; padding: 15px; font-size: 1rem; }

.form-note {
  text-align: center;
  margin-top: 12px;
  font-family: 'Arial', sans-serif;
  font-size: 0.78rem;
  color: var(--text-lt);
}

/* ── Form success message ────────────────────────────── */
.form-success {
  text-align: center;
  padding: 40px 28px;
  background: linear-gradient(180deg, #fdfaf2 0%, #f7f1e3 100%);
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 10px;
  margin-bottom: 24px;
  box-shadow: 0 6px 24px rgba(15, 25, 35, 0.06);
  animation: form-success-in 0.5s ease-out;
}
.form-success-mark {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--gold, #c9a84c);
  color: #fff;
  font-size: 1.7rem;
  line-height: 56px;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(201, 168, 76, 0.45);
}
.form-success h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  color: var(--navy, #0f1923);
  margin: 0 0 10px;
  letter-spacing: 0.2px;
}
.form-success p {
  font-family: 'Arial', sans-serif;
  font-size: 0.95rem;
  color: var(--text, #3a4654);
  margin: 0;
  line-height: 1.55;
}
@keyframes form-success-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (max-width: 600px) {
  .form-success { padding: 32px 20px; }
  .form-success h4 { font-size: 1.15rem; }
  .form-success p { font-size: 0.9rem; }
}

/* ── Pricing table ───────────────────────────────────── */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.pricing-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 40px 36px;
  border: 2px solid transparent;
  transition: border-color 0.25s;
}

.pricing-card:hover {
  border-color: var(--gold);
}

.pricing-card.featured {
  border-color: var(--gold);
  position: relative;
}

.pricing-card h3 {
  margin-bottom: 12px;
}

.pricing-card .price {
  font-family: 'Georgia', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.pricing-card .price-note {
  font-family: 'Arial', sans-serif;
  font-size: 0.82rem;
  color: var(--text-lt);
  margin-bottom: 20px;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 28px;
}

.pricing-card ul li {
  font-family: 'Arial', sans-serif;
  font-size: 0.92rem;
  color: var(--text-lt);
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  padding-left: 20px;
  position: relative;
}

.pricing-card ul li::before {
  content: "- ";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ── Teaser sections (homepage) ──────────────────────── */
.teaser {
  padding: 96px 0;
}

.teaser.alt { background: var(--off-white); }

.teaser-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.teaser-content h2 { margin-bottom: 16px; }

.teaser-content p {
  font-size: 1.05rem;
  margin-bottom: 28px;
}

/* ── Footer ───────────────────────────────────────────── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.65);
  padding: 56px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo-main { font-size: 1.2rem; }

.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  margin-top: 14px;
  line-height: 1.7;
}

footer h4 {
  color: var(--white);
  font-family: 'Arial', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-family: 'Arial', sans-serif;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-family: 'Arial', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.40);
}

/* ── Section header (reusable centered intro) ────────── */
.section-header {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-header p {
  font-size: 1.05rem;
  margin-top: 16px;
}

/* ── Why Choose Us ───────────────────────────────────── */
.why-choose {
  background: var(--navy);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.feature-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 36px 28px;
  transition: background 0.3s, border-color 0.3s;
}

.feature-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(201,168,76,0.25);
}

.feature-icon {
  width: 54px;
  height: 54px;
  background: rgba(201,168,76,0.14);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Georgia', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 22px;
}

.feature-card h3 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.feature-card p {
  color: rgba(255,255,255,0.62);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ── Black Cab Experience ────────────────────────────── */
.cab-experience {
  background: var(--off-white);
}

.cab-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.cab-text p {
  font-size: 1.02rem;
  line-height: 1.85;
}

.cab-text p + p {
  margin-top: 16px;
}

.cab-gallery-main {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 12px;
}

.cab-gallery-main img {
  width: 100%;
  height: auto;
  display: block;
}

.cab-gallery-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.cab-gallery-pair img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  box-shadow: var(--shadow);
}

/* ── About page cab showcase ─────────────────────────── */
.cab-showcase {
  background: var(--white);
}

.cab-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cab-strip-img {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.cab-strip-img img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cab-strip-img:hover img {
  transform: scale(1.03);
}

/* ── Comparison (Private vs Coach) ───────────────────── */
.comparison-section {
  background: var(--off-white);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: start;
}

.comparison-col {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 32px;
  box-shadow: var(--shadow);
}

.comparison-col h3 {
  margin-bottom: 24px;
  font-size: 1.2rem;
  padding-bottom: 16px;
  border-bottom: 2px solid #eee;
}

.comparison-coach h3 {
  color: var(--text-lt);
}

.comparison-private {
  border: 2px solid var(--gold);
}

.comparison-private h3 {
  color: var(--navy);
  border-bottom-color: var(--gold);
}

.comparison-col ul {
  list-style: none;
}

.comparison-col ul li {
  font-family: 'Arial', sans-serif;
  font-size: 0.94rem;
  color: var(--text-lt);
  padding: 10px 0 10px 28px;
  position: relative;
  border-bottom: 1px solid #f0f0f0;
  line-height: 1.5;
}

.comparison-col ul li:last-child {
  border-bottom: none;
}

.comparison-coach ul li::before {
  content: "\00d7";
  position: absolute;
  left: 0;
  color: #c0392b;
  font-weight: 700;
  font-size: 1.1rem;
}

.comparison-private ul li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
}

.comparison-divider {
  display: flex;
  align-items: center;
  justify-content: center;
}

.comparison-divider span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-family: 'Georgia', serif;
  font-size: 0.9rem;
  font-weight: 700;
  font-style: italic;
  flex-shrink: 0;
}

/* ── Scroll Reveal ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px) scale(0.97);
  transition:
    opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: transform, opacity;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  will-change: auto;
}

.reveal-delay-1 { --reveal-delay: 0.08s; }
.reveal-delay-2 { --reveal-delay: 0.16s; }
.reveal-delay-3 { --reveal-delay: 0.24s; }
.reveal-delay-4 { --reveal-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; will-change: auto; }
}


/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .tour-card.bespoke { flex-direction: column; }
  .tour-card.bespoke .tour-img { width: 100%; aspect-ratio: 16/9; height: auto; }
  .pricing-cards { grid-template-columns: 1fr; }
  .cab-layout { grid-template-columns: 1fr; gap: 40px; }
  .comparison-grid { grid-template-columns: 1fr; gap: 24px; }
  .comparison-divider { display: none; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; gap: 14px; }
  .guests-grid { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Mobile nav — smooth animated drawer */
  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: calc(100px + env(safe-area-inset-top, 0px));
    left: 0;
    right: 0;
    background: rgba(10, 18, 28, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0 28px;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    border-bottom: 1px solid transparent;
    transition:
      max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1),
      padding 0.45s cubic-bezier(0.16, 1, 0.3, 1),
      border-color 0.3s ease;
    z-index: 99;
  }

  .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.07); }
  .nav-links li:last-child { border-bottom: none; }

  .nav-links a {
    display: block;
    padding: 16px 0;
    font-size: 1rem;
    color: rgba(255,255,255,0.82);
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, color 0.2s ease;
  }

  .nav-cta .btn { display: none; }
  .hamburger { display: flex; }

  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .pricing-cards { grid-template-columns: 1fr; }
  .page-hero { padding: 110px 0 56px; }
  .cab-strip { grid-template-columns: 1fr; gap: 16px; }
  .comparison-col { padding: 28px 24px; }

  #trust { display: none; }

  .logo-main { font-size: 1.05rem; }
  .logo-sub { font-size: 0.58rem; }
  .nav-phone { font-size: 0.85rem; }

  .hero-inner { padding: 48px 0 56px; }
  .feature-card { padding: 28px 20px; }
  .contact-form { padding: 28px 20px; }
  .pricing-card { padding: 28px 24px; }

  /* Hero on mobile: both images fully visible, stacked top + bottom */
  #hero { min-height: 100vh; }

  #hero::before,
  #hero::after {
    width: 100%;
    height: 50%;
    display: block;
  }
  #hero::before {
    top: 0;
    left: 0;
    bottom: auto;
    background-position: center center;
    mask-image: linear-gradient(to bottom, black 70%, rgba(0,0,0,0.6) 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 70%, rgba(0,0,0,0.6) 100%);
  }
  #hero::after {
    top: auto;
    right: 0;
    bottom: 0;
    background-position: center center;
    mask-image: linear-gradient(to top, black 70%, rgba(0,0,0,0.6) 100%);
    -webkit-mask-image: linear-gradient(to top, black 70%, rgba(0,0,0,0.6) 100%);
  }
  #hero .hero-overlay {
    background: linear-gradient(to bottom,
      rgba(8,14,22,0.55) 0%,
      rgba(8,14,22,0.85) 45%,
      rgba(8,14,22,0.85) 55%,
      rgba(8,14,22,0.55) 100%);
  }

  .teaser { padding: 64px 0; }
}

/* Mobile nav open state */
.nav-open .nav-links {
  max-height: 520px;
  padding: 8px 28px 28px;
  border-bottom-color: rgba(201,168,76,0.22);
}

.nav-open .nav-links a {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger nav link entrance */
.nav-open .nav-links li:nth-child(1) a { transition-delay: 0.04s; }
.nav-open .nav-links li:nth-child(2) a { transition-delay: 0.09s; }
.nav-open .nav-links li:nth-child(3) a { transition-delay: 0.14s; }
.nav-open .nav-links li:nth-child(4) a { transition-delay: 0.19s; }
.nav-open .nav-links li:nth-child(5) a { transition-delay: 0.24s; }
.nav-open .nav-links li:nth-child(6) a { transition-delay: 0.29s; }

/* Hamburger → X when nav open */
.nav-open .hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-open .hamburger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-open .hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Book a Tour inside mobile nav — hidden on desktop */
.nav-book-mobile { display: none; }

@media (max-width: 768px) {
  .nav-open .nav-book-mobile {
    display: block;
    padding-top: 6px;
  }
  .nav-open .nav-book-mobile a {
    display: inline-block;
    background: var(--gold);
    color: var(--dark);
    padding: 12px 28px;
    border-radius: var(--radius);
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.03em;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  section { padding: 52px 0; }
  h1 { font-size: clamp(1.65rem, 6.5vw, 2.2rem); }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }
  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    padding-top: 28px;
    margin-top: 36px;
  }
  .stat-number { font-size: 1.6rem; }
  .stat-label { font-size: 0.7rem; }

  .tour-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .tour-footer .btn-sm { width: 100%; text-align: center; }

  .contact-form { padding: 24px 16px; }
  .feature-card { padding: 24px 16px; }
  .guest-card { padding: 28px 20px; }

  .page-hero { padding: 100px 0 48px; }
  .page-hero p { font-size: 1rem; }
}

/* ── Custom Radio Buttons (contact form) ────────────── */
.contact-form input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 24px !important;
  height: 24px;
  min-width: 24px;
  border: 2px solid #d4d4d4;
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s ease, background 0.25s ease, box-shadow 0.25s ease, transform 0.15s ease;
  flex-shrink: 0;
  padding: 0;
  margin: 0;
}

.contact-form input[type="radio"]:hover {
  border-color: var(--gold);
}

.contact-form input[type="radio"]:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(201,168,76,0.25);
}

.contact-form input[type="radio"]:checked {
  border-color: var(--gold);
  background: var(--gold);
  box-shadow: 0 2px 10px rgba(201,168,76,0.35);
}

.contact-form input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 12px;
  border: solid var(--white);
  border-width: 0 2.5px 2.5px 0;
  transform: translate(-55%, -65%) rotate(45deg);
}

.contact-form input[type="radio"]:active {
  transform: scale(0.92);
}

/* Make the whole label feel tappable */
.contact-form label:has(input[type="radio"]) {
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  padding: 6px 0;
}

.contact-form label:has(input[type="radio"]:checked) {
  color: var(--navy) !important;
  font-weight: 600 !important;
}

/* ── Premium Mobile Polish ──────────────────────────── */
@media (max-width: 768px) {
  /* Tighter hero typography for impact */
  #hero h1 {
    font-size: clamp(1.85rem, 7vw, 2.6rem);
    line-height: 1.15;
    letter-spacing: -0.015em;
  }
  #hero p {
    font-size: 1rem;
    line-height: 1.65;
  }
  .hero-badge {
    padding: 5px 14px;
    margin-bottom: 22px;
  }
  .hero-badge span { font-size: 0.7rem; }

  .page-hero h1 {
    font-size: clamp(1.7rem, 6.5vw, 2.4rem);
    line-height: 1.2;
  }

  /* Body text breathes a bit more on small screens */
  p { line-height: 1.75; }

  /* Cards feel more tactile */
  .tour-card, .pricing-card, .guest-card, .feature-card {
    border-radius: 14px;
  }
  .tour-card {
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  }
  .tour-card:active {
    transform: scale(0.985);
    transition: transform 0.15s ease;
  }
  .pricing-card {
    box-shadow: 0 6px 24px rgba(0,0,0,0.07);
  }

  /* Buttons: tactile press feedback */
  .btn {
    -webkit-tap-highlight-color: transparent;
    padding: 14px 28px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .btn:active {
    transform: scale(0.97);
    transition: transform 0.1s ease;
  }
  .btn-sm { min-height: 40px; padding: 10px 20px; }

  /* Container has comfortable side breathing room */
  .container { width: min(1160px, 90vw); }

  /* Section labels — refined */
  .section-label {
    font-size: 0.7rem;
    letter-spacing: 0.22em;
  }

  /* Footer feels more curated */
  footer { padding: 48px 0 28px; }
  .footer-grid { margin-bottom: 36px; }
  .footer-bottom { padding-top: 24px; gap: 10px; }
  .footer-bottom p { font-size: 0.74rem; line-height: 1.6; }

  /* Refined mobile nav phone */
  .nav-phone {
    font-size: 0.8rem;
    white-space: nowrap;
  }
  nav { gap: 12px; }

  /* Pricing cards — premium feel */
  .pricing-card { padding: 32px 24px; }
  .pricing-card .price { font-size: 2rem; }

  /* Contact form — refined inputs */
  .contact-form { border-radius: 14px; padding: 32px 22px; }
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 13px 14px;
    font-size: 0.95rem;
    border-radius: 8px;
  }
  .form-group label { font-size: 0.85rem; margin-bottom: 8px; }
  .form-row { gap: 14px; }
  .form-submit { padding: 16px; font-size: 1.02rem; min-height: 52px; }

  /* Radio group breathes more on small screens */
  .contact-form input[type="radio"] + * {
    line-height: 1.4;
  }

  /* Hero stats: more refined */
  .hero-stats {
    margin-top: 48px;
    padding-top: 32px;
    border-top-color: rgba(255,255,255,0.18);
  }
  .stat-number { color: var(--gold-lt); }

  /* About badge: smaller, refined position */
  .about-badge {
    bottom: 18px;
    left: 18px;
    padding: 12px 16px;
  }
  .about-badge strong { font-size: 1.6rem; }
  .about-badge span { font-size: 0.7rem; }

  /* Feature cards: refined gold border accent */
  .feature-card {
    border-radius: 14px;
    transition: background 0.3s, border-color 0.3s, transform 0.2s;
  }
  .feature-card:active {
    transform: scale(0.985);
    border-color: rgba(201,168,76,0.4);
  }

  /* Cab strip — premium spacing */
  .cab-strip { gap: 14px; }
  .cab-strip-img { border-radius: 14px; }

  /* Comparison cols feel more polished */
  .comparison-col { border-radius: 14px; }

  /* Smooth body section transitions */
  section { transition: background 0.3s ease; }

  /* Refined tour-tag */
  .tour-tag {
    font-size: 0.66rem;
    padding: 3px 10px;
  }

  /* Tighter, premium nav on mobile */
  .logo-img { height: 66px; }
  nav { height: 82px; }
  .logo-sub { letter-spacing: 0.14em; }
  .nav-phone { font-size: 0.78rem; }

  /* Footer respects safe area on phones with home bars */
  footer { padding-bottom: calc(28px + env(safe-area-inset-bottom, 0px)); }
}

@media (max-width: 480px) {
  /* Hide phone in header — it's in the footer + book button stays visible */
  .nav-phone { display: none; }

  /* Even tighter premium spacing on phones */
  .container { width: min(1160px, 92vw); }
  .hero-inner { padding: 36px 0 48px; }
  #hero p { font-size: 0.96rem; }

  .hero-stats { gap: 8px; }
  .stat-item { padding: 0 4px; }
  .stat-number { font-size: 1.45rem; }
  .stat-label { font-size: 0.62rem; letter-spacing: 0.04em; }

  /* Page hero on small phones */
  .page-hero h1 {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }
  .page-hero p { font-size: 0.95rem; }

  /* Tighter typography */
  h2 { font-size: clamp(1.4rem, 5.5vw, 1.85rem); }
  h3 { font-size: clamp(1.05rem, 4vw, 1.2rem); }

  /* Comparison: smaller padding for clean look */
  .comparison-col { padding: 24px 18px; }
  .comparison-col h3 { font-size: 1.05rem; }
  .comparison-col ul li { font-size: 0.88rem; padding: 9px 0 9px 24px; }

  /* Buttons stay full-width and clean */
  .btn { padding: 13px 22px; font-size: 0.9rem; }

  /* Contact form — even tighter */
  .contact-form { padding: 24px 16px; border-radius: 12px; }
  .contact-detail { gap: 12px; margin-bottom: 18px; }
  .contact-detail-icon { width: 38px; height: 38px; font-size: 0.78rem; }

  /* Tour card refinements */
  .tour-body { padding: 22px 20px 24px; }
  .tour-price { font-size: 1.35rem; }
}
