/* ============================================================
   Woman to Woman Driving Service LLC — Design System
   Fonts: Playfair Display (headings) + Inter (body)
   ============================================================ */

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  --cream:        #FFF8F3;
  --cream-deep:   #F5EBE0;
  --blush:        #F6DDE3;
  --blush-mid:    #ECC8D0;
  --white:        #ffffff;
  --plum:         #3A1F2B;
  --plum-dark:    #280F1A;
  --plum-light:   #5C3347;
  --rose:         #B96A7A;
  --rose-soft:    #D49AA6;
  --rose-bg:      #F9EAED;
  --gold:         #C8A45D;
  --gold-dark:    #A0812A;
  --gold-bg:      #FAF4E8;
  --charcoal:     #262626;
  --muted:        #6B7280;
  --line:         #E8D5DA;
  --line-soft:    #F0E5E8;
  --shadow-sm:    0 2px 8px rgba(58, 31, 43, 0.08);
  --shadow:       0 8px 32px rgba(58, 31, 43, 0.12);
  --shadow-lg:    0 20px 56px rgba(58, 31, 43, 0.16);
  --radius:       16px;
  --radius-lg:    24px;
  --radius-xl:    32px;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--white);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
ul, ol { margin: 0; padding: 0; }

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4 {
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--plum);
  line-height: 1.12;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 700;
  max-width: 880px;
}

h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.5rem);
  font-weight: 600;
}

h3 {
  font-size: 1.12rem;
  font-weight: 600;
  font-family: 'Inter', system-ui, sans-serif;
  letter-spacing: 0;
}

h4 {
  font-size: 0.95rem;
  font-weight: 700;
  font-family: 'Inter', system-ui, sans-serif;
  letter-spacing: 0.01em;
}

p { margin: 0; }

.eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-family: 'Inter', system-ui, sans-serif;
}

/* ── Layout ──────────────────────────────────────────────── */
.container {
  width: min(1140px, calc(100% - 40px));
  margin-inline: auto;
}

.narrow {
  width: min(820px, calc(100% - 40px));
  margin-inline: auto;
}

.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 56px 0; }

.section-cream  { background: var(--cream); }
.section-blush  { background: linear-gradient(135deg, var(--blush) 0%, var(--cream) 100%); }
.section-plum   { background: var(--plum); color: #fff; }
.section-soft   { background: linear-gradient(150deg, var(--cream) 0%, #F0E8F0 100%); }

/* ── Skip link ───────────────────────────────────────────── */
.skip-link {
  position: absolute;
  left: 16px; top: -100px;
  z-index: 200;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--plum);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus { top: 16px; }

/* ── Header ──────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: box-shadow 0.2s;
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(58, 31, 43, 0.10);
}

.announcement {
  position: relative;
  overflow: hidden;
  min-height: 38px;
  color: var(--plum-dark);
  background: var(--rose-soft);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.announcement::before,
.announcement::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 72px;
  pointer-events: none;
}

.announcement::before {
  left: 0;
  background: linear-gradient(90deg, var(--rose-soft), rgba(212, 154, 166, 0));
}

.announcement::after {
  right: 0;
  background: linear-gradient(270deg, var(--rose-soft), rgba(212, 154, 166, 0));
}

.announcement-track {
  display: flex;
  width: max-content;
  animation: announcement-scroll 34s linear infinite;
}

.announcement-group {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 38px;
}

.announcement-item {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding-right: 46px;
}

.announcement-item::before {
  content: "*****";
  color: var(--plum);
  letter-spacing: 0.12em;
}

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

.nav-shell {
  width: min(1200px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
  color: var(--plum);
  text-decoration: none;
}

.brand strong, .brand small { display: block; line-height: 1.15; }
.brand strong { font-size: 1rem; font-weight: 700; font-family: 'Playfair Display', serif; }
.brand small  { color: var(--muted); font-size: 0.76rem; font-weight: 500; }

.brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 56px;
  flex: 0 0 auto;
}
.brand-logo img { width: 100%; height: 100%; object-fit: contain; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}

.site-nav a {
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--charcoal);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 0.15s, color 0.15s;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--rose-bg);
  color: var(--plum);
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
}

.nav-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--plum);
  min-height: 44px;
  padding: 8px 20px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s, transform 0.15s;
}
.nav-book:hover,
.nav-book[aria-current="page"] {
  background: var(--plum-light);
  color: #fff;
}

.nav-social {
  width: 40px;
  height: 40px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  color: #1877f2;
  background: #fff;
  text-decoration: none;
  flex: 0 0 40px;
}

.nav-social:hover,
.nav-social:focus-visible {
  color: #fff;
  background: #1877f2;
  border-color: #1877f2;
  outline: none;
}

.nav-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.nav-phone {
  min-width: max-content;
  padding: 9px 16px;
  border-radius: 999px;
  color: var(--plum);
  background: var(--gold-bg);
  border: 1.5px solid var(--gold);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  transition: background 0.15s, border-color 0.15s;
}
.nav-phone:hover {
  background: var(--gold);
  color: var(--plum-dark);
}

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 10px;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px; height: 2px;
  margin: 4px auto;
  background: var(--plum);
  border-radius: 2px;
  transition: all 0.2s;
}

.mobile-cta-bar {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 180;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(232, 213, 218, 0.92);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 34px rgba(58, 31, 43, 0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.mobile-cta-bar .btn {
  flex: 1;
  min-height: 44px;
  padding: 9px 14px;
  font-size: 0.86rem;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 12px 24px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.18s ease;
  white-space: nowrap;
}

.btn-primary {
  color: #fff;
  background: var(--plum);
  border-color: var(--plum);
}
.btn-primary:hover {
  background: var(--plum-light);
  border-color: var(--plum-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(58, 31, 43, 0.28);
}

.btn-secondary {
  color: var(--plum);
  background: transparent;
  border-color: var(--rose);
}
.btn-secondary:hover {
  background: var(--rose-bg);
  border-color: var(--plum);
  transform: translateY(-1px);
}

.review-btn {
  gap: 10px;
  padding-left: 20px;
}

.review-logo {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.btn-gold {
  color: var(--plum-dark);
  background: var(--gold);
  border-color: var(--gold);
  font-weight: 800;
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200, 164, 93, 0.35);
}

.btn-white {
  color: var(--plum);
  background: #fff;
  border-color: #fff;
  font-weight: 700;
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-1px);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.button-row.center {
  justify-content: center;
  margin-top: 36px;
}

/* ── Trust chips ─────────────────────────────────────────── */
.trust-chips, .trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.trust-chips span, .trust-list span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  padding: 6px 14px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--plum);
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
}

.trust-chips span::before {
  content: '✓';
  color: var(--gold-dark);
  font-weight: 900;
  font-size: 0.75rem;
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 580px;
  display: flex;
  align-items: center;
  background: linear-gradient(125deg, var(--cream) 0%, var(--blush) 55%, #F0DCE3 100%);
  isolation: isolate;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 75% 50%, rgba(246,221,227,0.55) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(200,164,93,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 420px);
  gap: 64px;
  align-items: center;
}

.hero-copy { display: grid; gap: 22px; }

.hero-text {
  max-width: 680px;
  color: #52445A;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.75;
}

.hero-media { position: relative; }

.hero-photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  position: relative;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.three-accent {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-route-canvas {
  z-index: 1;
  opacity: 0.72;
  /* no mix-blend-mode: multiply — that made particles invisible on cream background */
}

/* Floating trust cards on hero image */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.96);
  box-shadow: var(--shadow);
  border: 1px solid var(--line-soft);
  backdrop-filter: blur(8px);
  z-index: 2;
}

.float-card-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.float-card-icon.gold  { background: var(--gold-bg); }
.float-card-icon.blush { background: var(--rose-bg); }
.float-card-icon.plum  { background: var(--blush); }

.float-card-text strong {
  display: block;
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--plum);
  line-height: 1.2;
}
.float-card-text span {
  font-size: 0.74rem;
  color: var(--muted);
  line-height: 1.3;
}

.float-card-1 { top: -18px; left: -24px; }
.float-card-2 { bottom: 60px; left: -32px; }
.float-card-3 { top: 50px; right: -28px; }

/* Hero with brand card instead of image */
.hero-brand-card {
  display: grid;
  gap: 22px;
  justify-items: center;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.88);
  box-shadow: var(--shadow-lg);
}
.hero-brand-card img { width: min(260px, 80%); height: auto; }
.hero-brand-card div {
  width: 100%;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.hero-brand-card strong, .hero-brand-card span { display: block; }
.hero-brand-card strong { color: var(--plum); font-size: 1.05rem; font-family: 'Playfair Display', serif; }
.hero-brand-card span  { color: var(--muted); font-weight: 600; font-size: 0.9rem; }

/* Hero team photo grid */
.hero-team {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
}
.hero-team img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-team img:nth-child(2) { transform: translateY(-20px); }

/* ── Section heading ─────────────────────────────────────── */
.section-heading {
  display: grid;
  gap: 14px;
  max-width: 680px;
  margin-bottom: 40px;
}
.section-heading p, .prose, .muted { color: #5A5060; }
.section-heading.center { text-align: center; max-width: 700px; margin-inline: auto; }

/* ── Icon circle ─────────────────────────────────────────── */
.icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 1.3rem;
  margin-bottom: 4px;
}
.icon-circle.rose  { background: var(--rose-bg); }
.icon-circle.gold  { background: var(--gold-bg); }
.icon-circle.blush { background: var(--blush); }
.icon-circle.plum  { background: var(--blush); }

/* ── Cards ───────────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

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

.card-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.info-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 24px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s, box-shadow 0.18s;
}
.info-card.image-card {
  padding-top: 0;
  overflow: hidden;
}
.info-card.icon-card {
  position: relative;
}
.info-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.info-card h3 { color: var(--plum); font-size: 1.05rem; }
.info-card p  { color: #5A5060; font-size: 0.95rem; line-height: 1.65; }

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 4px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-bg), var(--gold-bg));
  border: 1px solid var(--line);
  color: var(--plum);
  font-size: 1.15rem;
  font-weight: 900;
}
.card-icon::before { content: '✓'; }
.card-icon-shield::before { content: '✓'; }
.card-icon-care::before { content: '+'; }
.card-icon-family::before { content: '2'; }
.card-icon-route::before { content: '→'; }

.card-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--rose);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.15s;
}
.card-link::after { content: '→'; transition: transform 0.15s; }
.card-link:hover { color: var(--plum); }
.card-link:hover::after { transform: translateX(3px); }

/* Service card with big icon */
.service-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s, box-shadow 0.18s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--blush-mid);
}
.service-card h3 { color: var(--plum); }
.service-card p  { color: #5A5060; font-size: 0.93rem; flex: 1; }

/* ── Service card thumbnail image ─────────────────────────── */
.card-img {
  width: calc(100% + 56px);
  margin: -28px -28px 0;
  height: 174px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius) var(--radius) 0 0;
  flex-shrink: 0;
}

.image-card .card-img {
  width: calc(100% + 48px);
  margin: 0 -24px 8px;
  border-radius: var(--radius) var(--radius) 0 0;
}

/* ── Content photos (in-page split sections) ──────────────── */
.content-photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.content-photo img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

/* ── Vertical steps (for split-grid "How it works") ────────── */
.steps-vertical {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}
.steps-vertical .step-item {
  flex-direction: row;
  align-items: flex-start;
  text-align: left;
  gap: 18px;
}
.steps-vertical .step-number {
  width: 52px;
  height: 52px;
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── Booking Steps ───────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.66% + 18px);
  right: calc(16.66% + 18px);
  height: 2px;
  background: linear-gradient(90deg, var(--blush-mid), var(--gold), var(--blush-mid));
  z-index: 0;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--plum);
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(58,31,43,0.3);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.step-item h3 { color: var(--plum); font-size: 1.08rem; }
.step-item p  { color: #5A5060; font-size: 0.93rem; }

.step-note {
  margin-top: 36px;
  padding: 16px 20px;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  background: var(--gold-bg);
  color: #52400A;
  font-size: 0.92rem;
  font-weight: 500;
  max-width: 680px;
}

.steps-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: 36px;
  align-items: center;
}

.step-list {
  counter-reset: ride-step;
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.step-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 20px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.92);
  box-shadow: var(--shadow-sm);
}

.step-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--plum);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.steps-photo img {
  min-height: 360px;
  object-position: center;
}

/* ── Testimonials ────────────────────────────────────────── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.testimonial {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s;
}
.testimonial:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
  font-size: 1rem;
}

.testimonial blockquote {
  margin: 0;
  color: #42384A;
  font-size: 0.97rem;
  font-style: italic;
  line-height: 1.7;
  flex: 1;
}

.testimonial blockquote::before { content: '\201C'; }
.testimonial blockquote::after  { content: '\201D'; }

.testimonial figcaption { margin-top: auto; }
.testimonial figcaption strong {
  display: block;
  color: var(--plum);
  font-weight: 700;
  font-size: 0.9rem;
}
.testimonial figcaption span {
  display: inline-flex;
  align-items: center;
  margin-top: 4px;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--rose-bg);
  color: var(--rose);
  font-size: 0.76rem;
  font-weight: 700;
}

/* ── Area cloud ──────────────────────────────────────────── */
.area-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.area-cloud span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border: 1.5px solid var(--blush-mid);
  border-radius: 999px;
  background: #fff;
  color: var(--plum);
  font-size: 0.87rem;
  font-weight: 600;
  transition: background 0.15s;
}
.area-cloud span:hover { background: var(--blush); }
.area-cloud span::before { content: '📍'; font-size: 0.75rem; }

/* ── Split section ───────────────────────────────────────── */
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 56px;
  align-items: center;
}
.split-grid.reverse { direction: rtl; }
.split-grid.reverse > * { direction: ltr; }

.prose {
  display: grid;
  gap: 18px;
  font-size: 1.02rem;
}

.story-image {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.story-image img {
  width: 100%;
  max-height: 580px;
  object-fit: cover;
}

/* ── Team cards ──────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.team-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform 0.18s, box-shadow 0.18s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.team-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top;
  filter: grayscale(15%) contrast(1.05);
  transition: filter 0.3s;
}
.team-card:hover img { filter: grayscale(0%) contrast(1.05); }

.team-card > div {
  padding: 22px 24px 26px;
  background: linear-gradient(135deg, var(--blush) 0%, var(--cream) 100%);
}
.team-card > div h3 {
  color: var(--plum);
  font-family: 'Playfair Display', serif;
  font-size: 1.18rem;
}
.team-role {
  margin: 5px 0 10px;
  color: var(--rose);
  font-size: 0.83rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.team-card > div p { color: var(--plum); font-size: 0.93rem; opacity: 0.85; }

/* ── Values grid ─────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 24px 16px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.value-item .icon-circle { margin-bottom: 0; }
.value-item h4 { color: var(--plum); }

/* ── Interactive service map ─────────────────────────────── */
.area-map-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(246, 221, 227, 0.62), transparent 34%),
    linear-gradient(180deg, #fff 0%, var(--cream) 100%);
}

.premium-map-shell {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  gap: 28px;
  align-items: stretch;
  padding: 28px;
  border: 1px solid rgba(232, 213, 218, 0.9);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.premium-map-shell::before {
  content: "";
  position: absolute;
  inset: -30% 55% 20% -15%;
  background: radial-gradient(circle, rgba(200, 164, 93, 0.18), transparent 68%);
  pointer-events: none;
}

.premium-map-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: 20px;
  padding: clamp(12px, 2vw, 24px);
}

.premium-map-copy h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.map-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.map-highlights div {
  padding: 14px;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-sm);
}

.map-highlights strong,
.map-highlights span {
  display: block;
}

.map-highlights strong {
  color: var(--plum);
  font-size: 0.95rem;
}

.map-highlights span {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.map-focus-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.map-route-chip {
  min-height: 42px;
  padding: 9px 14px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  color: var(--plum);
  background: rgba(255, 255, 255, 0.88);
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.map-route-chip:hover,
.map-route-chip:focus-visible,
.map-route-chip.is-active {
  transform: translateY(-2px);
  border-color: var(--plum);
  color: #fff;
  background: var(--plum);
  outline: none;
}

.map-note {
  max-width: 560px;
  color: var(--muted);
  font-size: 0.88rem;
}

.interactive-map-card {
  position: relative;
  min-height: 560px;
  border: 1px solid rgba(232, 213, 218, 0.9);
  border-radius: calc(var(--radius-lg) + 2px);
  background: var(--cream);
  box-shadow: 0 18px 48px rgba(58, 31, 43, 0.18);
  overflow: hidden;
}

.service-map {
  width: 100%;
  height: 100%;
  min-height: 560px;
  color: var(--charcoal);
  background:
    linear-gradient(135deg, rgba(58, 31, 43, 0.08), rgba(200, 164, 93, 0.08)),
    var(--cream);
}

.map-fallback {
  height: 100%;
  min-height: 560px;
  display: grid;
  place-content: center;
  gap: 6px;
  padding: 32px;
  text-align: center;
  color: var(--plum);
}

.map-fallback span {
  color: var(--muted);
  font-size: 0.9rem;
}

.map-location-panel {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 500;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  pointer-events: none;
}

.map-location-pill {
  pointer-events: auto;
  display: grid;
  gap: 2px;
  min-height: 72px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 16px;
  color: var(--plum);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 24px rgba(58, 31, 43, 0.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  cursor: pointer;
  text-align: left;
  transition: transform 0.2s ease, background 0.2s ease;
}

.map-location-pill:hover,
.map-location-pill:focus-visible,
.map-location-pill.is-active {
  transform: translateY(-2px);
  background: #fff;
  outline: 2px solid rgba(200, 164, 93, 0.55);
}

.map-location-pill strong {
  font-size: 0.82rem;
  line-height: 1.25;
}

.map-location-pill span {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.35;
}

.service-map .leaflet-control-zoom {
  border: 0;
  box-shadow: var(--shadow-sm);
}

.service-map .leaflet-control-zoom a {
  border: 0;
  color: var(--plum);
  background: rgba(255, 255, 255, 0.94);
}

.service-map .leaflet-control-zoom a:hover {
  color: #fff;
  background: var(--plum);
}

.service-map .leaflet-popup-content-wrapper {
  border-radius: 16px;
  box-shadow: 0 16px 34px rgba(58, 31, 43, 0.18);
}

.service-map .leaflet-popup-content {
  margin: 14px 16px;
  max-width: 230px;
  line-height: 1.45;
}

.service-map .leaflet-popup-content strong {
  display: block;
  margin-bottom: 4px;
  color: var(--plum);
}

.service-map .leaflet-popup-content span {
  color: var(--muted);
  font-size: 0.86rem;
}

.service-map-marker {
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--plum);
  box-shadow: 0 10px 24px rgba(58, 31, 43, 0.32);
}

.service-map-marker span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 3px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  color: #fff;
  background: var(--rose);
  font-size: 0.78rem;
  font-weight: 900;
}

.service-map-marker.marker-airport span { background: var(--gold-dark); }
.service-map-marker.marker-city span { background: var(--plum-light); }
.service-map-marker.marker-long span { background: #736092; }
.service-map-marker.marker-port span { background: #6B7C8F; }

/* ── FAQ accordion ───────────────────────────────────────── */
.faq-list { display: grid; gap: 10px; }

details {
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  transition: border-color 0.2s;
}
details[open] { border-color: var(--rose); box-shadow: var(--shadow-sm); }

summary {
  cursor: pointer;
  padding: 18px 22px;
  color: var(--plum);
  font-weight: 700;
  font-size: 0.97rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: background 0.15s;
}
summary:hover { background: var(--rose-bg); }
summary::-webkit-details-marker { display: none; }

summary::after {
  content: '+';
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--blush);
  color: var(--plum);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform 0.2s, background 0.2s;
}
details[open] summary::after {
  content: '−';
  background: var(--rose-bg);
  transform: rotate(180deg);
}

.faq-answer {
  padding: 4px 22px 20px;
  color: #52455A;
  font-size: 0.95rem;
  line-height: 1.72;
}

.faq-category {
  margin: 36px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--blush-mid);
  color: var(--plum);
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
}

/* ── Policy / Terms ──────────────────────────────────────── */
.policy-list { display: grid; gap: 20px; }

.policy-group {
  display: flex;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.policy-group > div { min-width: 0; }

.policy-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--plum);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  flex-shrink: 0;
  margin-top: 2px;
}

.policy-group h3 { margin-bottom: 8px; color: var(--plum); font-size: 1rem; }
.policy-group p  { color: #52455A; font-size: 0.94rem; }
.policy-group ul {
  margin-top: 10px;
  padding-left: 18px;
  color: #52455A;
  font-size: 0.94rem;
  display: grid;
  gap: 6px;
}

/* ── Booking form ────────────────────────────────────────── */
.form-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 36px;
  align-items: start;
}

.ride-form {
  padding: 32px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

label {
  display: grid;
  gap: 6px;
  color: var(--plum);
  font-weight: 600;
  font-size: 0.9rem;
}

label span { font-weight: 600; }
label .req { color: var(--rose); }

input, select, textarea {
  width: 100%;
  min-height: 48px;
  border: 1.5px solid #DDD0D5;
  border-radius: 10px;
  padding: 10px 14px;
  color: var(--charcoal);
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(185, 106, 122, 0.15);
}

.full { grid-column: 1 / -1; }

.check-row {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 10px;
  margin: 14px 0;
  color: #435062;
  font-size: 0.92rem;
  font-weight: 500;
}
.check-row input {
  width: 20px; min-height: 20px;
  margin-top: 3px;
  accent-color: var(--plum);
}

.honeypot {
  position: absolute; left: -9999px; opacity: 0;
}

.form-status {
  min-height: 24px;
  margin-top: 14px;
  font-weight: 700;
  font-size: 0.92rem;
}
.form-status.is-success { color: #1B6B3A; }
.form-status.is-error   { color: #9D2639; }
.form-status.is-warning { color: #7A551C; }

/* Sidebar booking notes */
.booking-sidebar { display: grid; gap: 18px; }

.sidebar-card {
  padding: 22px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm);
}
.sidebar-card h3 {
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--plum);
  font-family: 'Inter', system-ui, sans-serif;
}
.sidebar-card ul {
  list-style: none;
  display: grid;
  gap: 9px;
}
.sidebar-card li {
  display: flex;
  gap: 8px;
  color: #52455A;
  font-size: 0.9rem;
  line-height: 1.55;
}
.sidebar-card li::before {
  content: '✦';
  color: var(--gold-dark);
  font-size: 0.65rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.sidebar-highlight {
  padding: 16px 20px;
  border-radius: var(--radius);
  background: var(--gold-bg);
  border-left: 4px solid var(--gold);
}
.sidebar-highlight p { color: #52400A; font-size: 0.9rem; }
.sidebar-highlight strong { color: var(--plum); }

.sidebar-warning {
  padding: 16px 20px;
  border-radius: var(--radius);
  background: var(--rose-bg);
  border-left: 4px solid var(--rose);
}
.sidebar-warning p { color: #5C2030; font-size: 0.9rem; }

.form-note {
  margin-top: 20px;
  padding: 16px 20px;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  background: var(--gold-bg);
  color: #52400A;
  font-size: 0.9rem;
}

/* ── CTA band ────────────────────────────────────────────── */
.cta-band {
  padding: 56px 48px;
  border-radius: var(--radius-xl);
  color: #fff;
  background: linear-gradient(135deg, var(--plum) 0%, var(--plum-light) 60%, #7D3050 100%);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(200, 164, 93, 0.12);
  pointer-events: none;
}
.cta-band::after {
  content: '';
  position: absolute;
  bottom: -60px; left: 10%;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(246,221,227,0.10);
  pointer-events: none;
}

.cta-band h2, .cta-band .eyebrow { color: #fff; }
.cta-band .eyebrow { color: var(--gold); opacity: 0.9; }
.cta-band p {
  max-width: 680px;
  margin: 16px 0 28px;
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem;
}
.cta-band > *:not(.three-accent) { position: relative; z-index: 2; }
.cta-route-canvas { z-index: 1; opacity: 0.48; }

/* ── Trust strip ─────────────────────────────────────────── */
.trust-strip {
  padding: 40px 0;
  background: var(--plum-dark);
  color: #fff;
}
.trust-strip h2, .trust-strip .eyebrow { color: #fff; }
.trust-strip .eyebrow { color: var(--gold); opacity: 0.9; }
.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 24px;
  align-items: center;
}
.trust-layout .trust-list span {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: #fff;
}

/* ── Quick reminder grid ─────────────────────────────────── */
.reminder-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.reminder-grid article {
  padding: 24px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm);
}
.reminder-grid h3 {
  margin-bottom: 10px;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--plum);
  font-size: 1rem;
}
.reminder-grid p { color: #52455A; font-size: 0.93rem; }

/* ── Contact actions ─────────────────────────────────────── */
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 22px 0; }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  color: #F0E8EC;
  background: var(--plum-dark);
}

.footer-cta {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: 52px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-cta h2 { color: #fff; }
.footer-cta p  { max-width: 600px; color: rgba(255,255,255,0.75); margin-top: 8px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 0.9fr 1fr;
  gap: 36px;
  padding: 48px 0;
}
.footer-grid h3 {
  margin-bottom: 14px;
  color: #fff;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.footer-grid p, .footer-grid a { color: rgba(255,255,255,0.7); font-size: 0.92rem; }
.footer-grid ul { display: grid; gap: 9px; list-style: none; }
.footer-grid a { text-decoration: none; transition: color 0.15s; }
.footer-grid a:hover { color: #fff; }

.footer-brand { margin-bottom: 16px; color: #fff; text-decoration: none; }
.footer-brand .brand-logo { width: 56px; height: 64px; }
.footer-brand small { color: rgba(255,255,255,0.65); }

.footer-tagline {
  margin-top: 12px;
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  font-style: italic;
}

.footer-bottom {
  padding: 20px 0 28px;
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ── Service page detail ─────────────────────────────────── */
.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 16px;
}
.who-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1.5px solid var(--blush-mid);
  border-radius: 999px;
  background: #fff;
  color: var(--plum);
  font-size: 0.9rem;
  font-weight: 600;
}
.who-item::before { content: '✓'; color: var(--gold-dark); font-weight: 900; }

.expect-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}
.expect-item {
  display: flex;
  gap: 14px;
  padding: 16px 20px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line-soft);
}
.expect-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--plum);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.expect-item p { color: #52455A; font-size: 0.94rem; margin-top: 4px; }

/* ── Related services strip ──────────────────────────────── */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}
.related-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--plum);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.15s;
}
.related-link:hover {
  border-color: var(--rose);
  background: var(--rose-bg);
  transform: translateY(-2px);
}
.related-link::after { content: '→'; margin-left: auto; color: var(--rose); }

/* ── Review cards ────────────────────────────────────────── */
.review-card {
  padding: 28px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.18s;
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.review-card blockquote {
  margin: 0;
  color: #42384A;
  font-size: 0.97rem;
  font-style: italic;
  line-height: 1.7;
  flex: 1;
}
.review-card blockquote::before { content: '\201C'; }
.review-card blockquote::after  { content: '\201D'; }
.review-card figcaption strong { display: block; color: var(--plum); font-weight: 700; }
.review-card figcaption span {
  display: inline-flex;
  margin-top: 5px;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--rose-bg);
  color: var(--rose);
  font-size: 0.76rem;
  font-weight: 700;
}

/* ── Page hero (inner pages) ─────────────────────────────── */
.page-hero {
  padding: 64px 0 56px;
  background: linear-gradient(125deg, var(--cream) 0%, var(--blush) 60%, #F0DCE3 100%);
  background-size: cover;
  background-position: center center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(246,221,227,0.5) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-copy { max-width: 700px; display: grid; gap: 18px; }

/* ── Page hero with photo background ─────────────────────── */
.page-hero.has-bg-image {
  padding: 88px 0 76px;
  min-height: 360px;
  display: flex;
  align-items: center;
}
.page-hero.has-bg-image::before {
  /* Dark plum-to-rose gradient overlay on top of photo */
  background: linear-gradient(
    125deg,
    rgba(28, 10, 20, 0.82) 0%,
    rgba(58, 31, 43, 0.72) 45%,
    rgba(80, 38, 56, 0.60) 100%
  );
}
/* White text on dark overlay */
.page-hero.has-bg-image h1,
.page-hero.has-bg-image .hero-text {
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.25);
}
.page-hero.has-bg-image .eyebrow {
  color: var(--gold);
  opacity: 1;
}
/* Keep btn-secondary readable over dark bg */
.page-hero.has-bg-image .btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.10);
}
.page-hero.has-bg-image .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.20);
  border-color: rgba(255, 255, 255, 0.85);
}
/* trust chips on dark bg */
.page-hero.has-bg-image .trust-chips span {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.30);
  color: #fff;
}
.page-hero.has-bg-image .trust-chips span::before {
  color: var(--gold);
}

/* Keep short-title heroes visually consistent with the larger inner pages. */
.page-hero-service-areas,
.page-hero-reviews {
  min-height: clamp(620px, 68vh, 760px);
  padding-bottom: 120px;
}

/* ── Portrait hero — lighter overlay to let subject's face show ── */
.page-hero.hero-portrait.has-bg-image::before {
  background: linear-gradient(
    105deg,
    rgba(20, 7, 14, 0.78) 0%,
    rgba(45, 20, 32, 0.55) 50%,
    rgba(60, 28, 42, 0.30) 100%
  );
}

@media (max-width: 640px) {
  .page-hero-service-areas,
  .page-hero-reviews {
    min-height: 540px;
    padding-bottom: 96px;
  }
}

/* ── Divider ornament ────────────────────────────────────── */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 8px 0 28px;
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
}
.ornament::before, .ornament::after {
  content: '';
  height: 1px;
  width: 48px;
  background: var(--gold);
  opacity: 0.5;
}

/* ── Phone link ──────────────────────────────────────────── */
.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--plum);
  font-weight: 700;
  text-decoration: none;
  font-size: 1.05rem;
}
.phone-link:hover { color: var(--rose); }

/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 1040px) {
  .site-nav {
    display: none;
    position: absolute;
    left: 16px; right: 16px;
    top: calc(100% + 1px);
    max-height: min(72vh, 560px);
    overflow-y: auto;
    padding: 16px;
    border: 1.5px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
    z-index: 200;
  }
  .site-nav.is-open {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
  }
  .site-nav a { border-radius: 10px; }
  .nav-toggle { display: block; }

  .card-grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .values-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  body { font-size: 16px; }
  .section-pad { padding: 60px 0; }

  .hero {
    min-height: auto;
    padding-block: 72px;
  }

  .hero-grid,
  .split-grid,
  .steps-layout,
  .form-layout,
  .trust-layout,
  .premium-map-shell { grid-template-columns: 1fr; }

  .trust-layout .button-row { justify-content: flex-start; }

  .float-card-1, .float-card-2, .float-card-3 { display: none; }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .steps-grid::before { display: none; }
  .step-item { flex-direction: row; align-items: flex-start; text-align: left; }
  .step-number { width: 56px; height: 56px; font-size: 1.2rem; flex-shrink: 0; }

  .card-grid, .team-grid, .testimonial-grid,
  .reminder-grid, .footer-grid, .card-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .values-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .footer-cta { flex-direction: column; align-items: flex-start; }

  .hero-photo { min-height: auto; }
  .hero-photo {
    max-width: 520px;
    margin-inline: auto;
    aspect-ratio: 5 / 4;
  }

  .steps-photo img { min-height: 280px; height: 320px; }

}

@media (max-width: 640px) {
  .container, .narrow { width: calc(100% - 28px); }

  .announcement {
    min-height: 34px;
    padding: 0;
    font-size: 0.72rem;
  }

  .announcement-group { min-height: 34px; }
  .announcement-item { padding-right: 34px; }

  .nav-shell { width: calc(100% - 24px); min-height: 64px; }

  .brand small { display: none; }
  .brand strong { font-size: 0.95rem; }
  .brand-logo { width: 42px; height: 50px; }

  .nav-actions {
    gap: 10px;
    margin-left: auto;
  }
  .nav-actions .nav-book {
    display: none;
  }
  .nav-phone { display: none; }
  .nav-social {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    margin-left: auto;
  }

  .site-nav.is-open { grid-template-columns: 1fr; }

  .mobile-cta-bar { display: flex; }

  main { padding-bottom: 78px; }

  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.65rem; }

  .page-hero.has-bg-image {
    min-height: auto;
    padding: 72px 0 66px;
  }

  .button-row, .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
    min-height: 48px;
    padding-inline: 18px;
    white-space: normal;
    text-align: center;
  }

  .button-row.center { margin-top: 28px; }

  .trust-chips span,
  .trust-list span {
    white-space: normal;
  }

  .card-grid, .team-grid, .testimonial-grid,
  .reminder-grid, .footer-grid, .card-grid-3,
  .card-grid-4 { grid-template-columns: 1fr; }

  .values-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .info-card,
  .testimonial,
  .team-card,
  .policy-group {
    border-radius: 18px;
  }

  .cta-band { padding: 32px 24px; }
  .ride-form { padding: 20px; }
  .premium-map-shell { padding: 18px; }
  .premium-map-copy { padding: 6px; }
  .map-highlights { grid-template-columns: 1fr; }
  .interactive-map-card,
  .service-map,
  .map-fallback {
    min-height: 480px;
  }
  .map-location-panel {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 10px;
    background: rgba(255, 248, 243, 0.94);
  }

  .map-focus-controls {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .map-route-chip {
    width: 100%;
    min-height: 40px;
    padding-inline: 10px;
    white-space: normal;
  }

  .map-location-pill {
    min-height: 64px;
  }

  .hero-team { grid-template-columns: 1fr 1fr; }
  .hero-team img:nth-child(2) { transform: none; }
  .hero-team img:first-child { grid-row: span 2; }

  .split-grid.reverse { direction: ltr; }

  .form-grid { grid-template-columns: 1fr; }
  .ride-form,
  .form-grid,
  label,
  input,
  select,
  textarea {
    min-width: 0;
  }

  .footer-bottom { flex-direction: column; gap: 6px; }

  .step-list li { grid-template-columns: 42px 1fr; padding: 16px; }
  .step-count { width: 36px; height: 36px; font-size: 0.72rem; }

  .step-item { flex-direction: column; align-items: center; text-align: center; }

  /* Content photos stack to natural height on mobile */
  .content-photo img { height: 280px; }
}

/* ── CSS Animation System ────────────────────────────────── */

/* Keyframes */
@keyframes w2w-fade-up {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes w2w-scale-in {
  from { opacity: 0; transform: scale(0.86) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes w2w-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}

/* Hero reveal: applied via JS with staggered animation-delay */
.anim-up {
  animation: w2w-fade-up 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.anim-scale {
  animation: w2w-scale-in 0.52s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Scroll reveal: JS adds data-reveal (instant hide), then in-view with transition */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  /* No transition here: initial hide must be instant to avoid fade-out flash */
}

[data-reveal].in-view {
  opacity: 1;
  transform: translateY(0);
  /* Transition added at the same time as value change — browser animates the reveal */
  transition: opacity 0.68s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Floating hero photo animation */
.hero-photo.anim-float {
  animation: w2w-float 5s ease-in-out infinite;
}

/* Upgrade button transition and add active-press state */
.btn { transition: all 0.2s cubic-bezier(0.22, 1, 0.36, 1); }
.btn:hover  { transform: translateY(-2px) scale(1.025); }
.btn:active { transform: translateY(0px) scale(0.98); }

/* ── Print ───────────────────────────────────────────────── */
@media print {
  .site-header, .mobile-cta-bar, .trust-strip, .site-footer { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .anim-up, .anim-scale { animation: none !important; opacity: 1 !important; }
  .announcement {
    white-space: normal;
  }
  .announcement::before,
  .announcement::after,
  .announcement-group:nth-child(2) {
    display: none;
  }
  .announcement-track {
    width: auto;
    padding: 8px 16px;
    animation: none !important;
  }
  .announcement-group {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 20px;
  }
  .announcement-item {
    padding-right: 0;
  }
  .three-accent { display: none; }
}
