/* ============================================================================
   JAY BHOLENATH TAXI SERVICE — CORE STYLESHEET
   Design tokens live at the top. Change a color or font here and it
   updates across the whole website.
   ============================================================================ */

:root {
  /* Color */
  --ink: #14151a;
  --ink-2: #1e2028;
  --ink-soft: #4b4d57;
  --cream: #faf7f1;
  --cream-2: #f0eadb;
  --line: rgba(20, 21, 26, 0.1);
  --line-dark: rgba(250, 247, 241, 0.14);
  --gold: #c6a15b;
  --gold-deep: #9c7a3e;
  --gold-soft: rgba(198, 161, 91, 0.14);
  --maroon: #7a2e2e;
  --white: #ffffff;
  --success: #3a7d5c;

  /* Type */
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --container: 1180px;
  --radius-s: 6px;
  --radius-m: 14px;
  --radius-l: 26px;
  --shadow-1: 0 1px 2px rgba(20, 21, 26, 0.06), 0 8px 24px -12px rgba(20, 21, 26, 0.18);
  --shadow-2: 0 20px 60px -20px rgba(20, 21, 26, 0.35);
  --header-h: 76px;
}

/* ---------- Reset ---------- */
* , *::before, *::after { box-sizing: border-box; }
fieldset { border: 0; margin: 0; padding: 0; min-width: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 14px); }
body, h1, h2, h3, h4, p, figure, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
svg { display: block; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ---------- Focus states ---------- */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Type scale ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.4rem, 5.4vw, 4.2rem); font-weight: 560; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.05rem; }
p { color: var(--ink-soft); }
.lede { font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--ink-soft); max-width: 46ch; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1.5px;
  background: var(--gold);
}
.section-head { max-width: 640px; margin-bottom: 3rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin-top: 0.6rem; }
.section-head p { margin-top: 0.9rem; }

/* ---------- Layout helpers ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 5.5rem 0; }
.section-tight { padding: 3.5rem 0; }
.dark { background: var(--ink); color: var(--cream); }
.dark p { color: rgba(250, 247, 241, 0.7); }
.dark .eyebrow { color: var(--gold); }
.soft-bg { background: var(--cream-2); }
.grid { display: grid; gap: 1.5rem; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--ink); color: var(--cream); padding: 12px 18px; border-radius: var(--radius-s);
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 0.95rem 1.7rem;
  font-weight: 600; font-size: 0.95rem;
  border-radius: 999px;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-gold { background: var(--gold); color: var(--ink); box-shadow: var(--shadow-1); }
.btn-gold:hover { background: var(--gold-deep); color: var(--white); transform: translateY(-1px); }
.btn-dark { background: var(--ink); color: var(--cream); }
.btn-dark:hover { background: #000; transform: translateY(-1px); }
.btn-outline { background: transparent; border: 1.5px solid var(--line); color: var(--ink); }
.btn-outline:hover { border-color: var(--ink); }
.btn-outline.on-dark { border-color: var(--line-dark); color: var(--cream); }
.btn-outline.on-dark:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost { color: var(--ink); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.btn-ghost svg { width: 16px; height: 16px; transition: transform .18s ease; }
.btn-ghost:hover svg { transform: translateX(3px); }
.btn-block { width: 100%; }
.btn-sm { padding: 0.65rem 1.2rem; font-size: 0.85rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 247, 241, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s ease, padding .2s ease;
}
.site-header.is-scrolled { box-shadow: 0 6px 24px -14px rgba(20,21,26,0.25); }
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
  transition: height .2s ease;
}
.site-header.is-scrolled .container { height: 64px; }

.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark { width: 40px; height: 40px; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text .name { font-family: var(--font-display); font-weight: 650; font-size: 1.05rem; letter-spacing: 0.01em; }
.brand-text .tag { font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep); font-weight: 700; }

.main-nav { display: flex; align-items: center; gap: 2rem; }
.main-nav a { font-size: 0.92rem; font-weight: 500; color: var(--ink-soft); position: relative; padding: 6px 0; }
.main-nav a:hover, .main-nav a.active { color: var(--ink); }
.main-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .2s ease;
}
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }

/* ---------- Header Services dropdown ---------- */
.nav-item-dropdown { position: relative; }
.nav-dropdown-toggle { display: inline-flex; align-items: center; gap: 5px; }
.nav-dropdown-toggle .nav-caret { width: 13px; height: 13px; transition: transform .18s ease; }
.nav-item-dropdown:hover .nav-dropdown-toggle .nav-caret,
.nav-item-dropdown:focus-within .nav-dropdown-toggle .nav-caret { transform: rotate(180deg); }
.nav-item-dropdown.active > .nav-dropdown-toggle { color: var(--ink); }
.nav-item-dropdown.active > .nav-dropdown-toggle::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: var(--gold);
}
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(6px);
  min-width: 240px; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-m);
  box-shadow: var(--shadow-2); padding: 0.6rem; opacity: 0; visibility: hidden;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease; z-index: 50;
}
.nav-item-dropdown:hover .nav-dropdown-menu,
.nav-item-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block; padding: 0.6rem 0.8rem; border-radius: var(--radius-s); font-size: 0.88rem;
  font-weight: 500; color: var(--ink-soft);
}
.nav-dropdown-menu a:hover { background: var(--gold-soft); color: var(--ink); }

.header-actions { display: flex; align-items: center; gap: 0.9rem; }
.icon-btn {
  width: 42px; height: 42px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--line); transition: border-color .18s ease, background-color .18s ease;
}
.icon-btn:hover { border-color: var(--gold); background: var(--gold-soft); }
.icon-btn svg { width: 19px; height: 19px; }

.menu-toggle {
  display: none; width: 44px; height: 44px; align-items: center; justify-content: center;
  border-radius: 50%; border: 1.5px solid var(--line);
}
.menu-toggle svg { width: 20px; height: 20px; }

.mobile-nav {
  display: none;
  position: fixed; inset: 0; z-index: 150;
  background: var(--ink); color: var(--cream);
  padding: 100px 28px 40px;
  overflow-y: auto;
}
.mobile-nav.is-open { display: block; }
.mobile-nav-close {
  position: absolute; top: 22px; right: 22px; width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--line-dark); display: flex; align-items: center; justify-content: center;
}
.mobile-nav-close svg { width: 20px; height: 20px; }
.mobile-nav a {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-display); font-size: 1.7rem; padding: 16px 0;
  border-bottom: 1px solid var(--line-dark);
}
.mobile-nav a svg { width: 18px; height: 18px; opacity: 0.6; }
.mobile-nav-services-label {
  margin-top: 1.2rem; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); padding: 0 0 6px;
}
.mobile-nav a.mobile-nav-sub { font-size: 1.15rem; padding: 12px 0 12px 14px; color: rgba(250,247,241,0.85); }
.mobile-nav-ctas { margin-top: 2.2rem; display: flex; flex-direction: column; gap: 0.9rem; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--ink); color: var(--cream); padding: 3.2rem 0 4.5rem; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3rem; align-items: center; }
.hero-copy .eyebrow { color: var(--gold); }
.hero h1 { margin-top: 1rem; color: var(--cream); }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero .lede { color: rgba(250,247,241,0.72); margin-top: 1.3rem; max-width: 42ch; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.1rem; }

.trust-row { display: flex; flex-wrap: wrap; gap: 1.6rem 2rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--line-dark); }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; font-weight: 500; color: rgba(250,247,241,0.85); }
.trust-item svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }

.hero-visual { position: relative; }
.route-card {
  position: relative; border-radius: var(--radius-l); background: var(--ink-2);
  border: 1px solid var(--line-dark); padding: 2.4rem 1.8rem; overflow: hidden;
}
.route-card svg { width: 100%; height: auto; }
.route-caption { display: flex; justify-content: space-between; margin-top: 1.4rem; font-size: 0.8rem; color: rgba(250,247,241,0.6); }
.route-caption strong { color: var(--cream); font-weight: 600; }

/* moving car along the route */
.route-car { animation: travel 7s ease-in-out infinite; offset-path: path("M20,150 C120,40 230,260 340,120 C420,20 500,140 560,90"); offset-rotate: auto; }
@keyframes travel { 0% { offset-distance: 0%; } 50% { offset-distance: 100%; } 100% { offset-distance: 0%; } }
@media (prefers-reduced-motion: reduce) { .route-car { animation: none; offset-distance: 40%; } }

/* ---------- Section divider (route motif) ---------- */
.route-divider { display: flex; align-items: center; gap: 14px; padding: 0.4rem 0; opacity: 0.55; }
.route-divider .dash-line { flex: 1; height: 1px; background-image: linear-gradient(to right, var(--ink-soft) 40%, transparent 0%); background-size: 10px 1px; background-repeat: repeat-x; }
.route-divider svg { width: 16px; height: 16px; color: var(--gold-deep); flex-shrink: 0; }

/* ---------- Booking card ---------- */
.booking-wrap { margin-top: -3.2rem; position: relative; z-index: 5; }
.booking-card {
  background: var(--cream); border-radius: var(--radius-l); box-shadow: var(--shadow-2);
  border: 1px solid var(--line); padding: 2.2rem;
}
.booking-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.6rem; }
.booking-head h2 { font-size: 1.5rem; }

.trip-type-tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.4rem; }
.trip-type-tabs input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.trip-type-tabs label {
  padding: 0.6rem 1.1rem; border-radius: 999px; border: 1.5px solid var(--line); font-size: 0.86rem; font-weight: 600;
  color: var(--ink-soft); transition: all .18s ease;
}
.trip-type-tabs input:checked + label { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.trip-type-tabs input:focus-visible + label { outline: 2px solid var(--gold-deep); outline-offset: 2px; }

.booking-form { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field.span-2 { grid-column: span 2; }
.field.span-4 { grid-column: span 4; }
.field label { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-soft); }
.field input, .field select {
  padding: 0.85rem 1rem; border-radius: var(--radius-s); border: 1.5px solid var(--line); background: var(--white);
  font-size: 0.95rem; transition: border-color .18s ease;
}
.field input:focus, .field select:focus { border-color: var(--gold-deep); }
.field .error-msg { font-size: 0.76rem; color: var(--maroon); min-height: 1em; }
.field.has-error input, .field.has-error select { border-color: var(--maroon); }
.booking-submit-row { grid-column: span 4; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: 0.4rem; }
.booking-note { font-size: 0.78rem; color: var(--ink-soft); max-width: 40ch; }
.form-status { font-size: 0.85rem; margin-top: 0.6rem; }
.form-status.success { color: var(--success); }
.form-status.error { color: var(--maroon); }

/* ---------- Services ---------- */
.services-grid { grid-template-columns: repeat(4, 1fr); }
.service-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-m);
  padding: 1.9rem 1.6rem; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-1); border-color: transparent; }
.service-icon {
  width: 46px; height: 46px; border-radius: 12px; background: var(--gold-soft); color: var(--gold-deep);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem;
}
.service-icon svg { width: 22px; height: 22px; }
.service-card h3 { margin-bottom: 0.5rem; }
.service-card p { font-size: 0.92rem; }
.service-card .card-link { margin-top: 1rem; }

/* ---------- Purpose picker (select-trip.html) ---------- */
.purpose-grid { grid-template-columns: repeat(2, 1fr); }
.purpose-card {
  display: block; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-m);
  padding: 1.9rem 1.6rem; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.purpose-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-1); border-color: transparent; }
.purpose-card h3 { margin: 0.9rem 0 0.5rem; }
.purpose-card p { font-size: 0.92rem; margin-bottom: 1.1rem; }
.purpose-card .btn-ghost { pointer-events: none; }
.chosen-vehicle-card .vehicle-card { display: block; margin: 0 auto; }
.chosen-vehicle-card .vehicle-media { padding-bottom: 0.4rem; }

/* ---------- Fleet ---------- */
.fleet-grid { grid-template-columns: repeat(4, 1fr); }
.vehicle-card {
  background: var(--white); border-radius: var(--radius-m); overflow: hidden; border: 1px solid var(--line);
  display: flex; flex-direction: column; transition: box-shadow .2s ease, transform .2s ease;
}
.vehicle-card:hover { box-shadow: var(--shadow-1); transform: translateY(-4px); }
.vehicle-media { background: var(--white); padding: 1.6rem 1.2rem 0.8rem; }
.vehicle-media img { width: 100%; height: 120px; object-fit: contain; }
.vehicle-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.9rem; flex: 1; }
.vehicle-name-row { display: flex; align-items: baseline; justify-content: space-between; gap: 0.5rem; }
.vehicle-name-row h3 { font-size: 1.15rem; }
.vehicle-model { font-size: 0.82rem; color: var(--ink-soft); margin-top: -0.5rem; }
.vehicle-specs { display: flex; gap: 1.1rem; font-size: 0.82rem; color: var(--ink-soft); }
.vehicle-specs span { display: flex; align-items: center; gap: 6px; }
.vehicle-specs svg { width: 16px; height: 16px; color: var(--gold-deep); }
.vehicle-price { margin-top: auto; padding-top: 0.9rem; border-top: 1px dashed var(--line); display: flex; align-items: baseline; justify-content: space-between; }
.vehicle-price .amount { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; }
.vehicle-price .unit { font-size: 0.78rem; color: var(--ink-soft); }
.vehicle-card .btn { margin-top: 0.3rem; }

/* ---------- Pricing ---------- */
.pricing-note {
  margin-top: 2.6rem; padding: 1.2rem 1.5rem; border-radius: var(--radius-m);
  background: var(--cream-2); border: 1px solid var(--line); font-size: 0.88rem; color: var(--ink-soft);
  display: flex; gap: 0.8rem; align-items: flex-start;
}
.pricing-note svg { width: 20px; height: 20px; color: var(--gold-deep); flex-shrink: 0; margin-top: 2px; }
.pricing-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-m); background: var(--white); }
table.pricing-table { width: 100%; border-collapse: collapse; min-width: 640px; }
.pricing-table th, .pricing-table td { padding: 1rem 1.3rem; text-align: left; font-size: 0.92rem; border-bottom: 1px solid var(--line); }
.pricing-table th { font-family: var(--font-body); font-size: 0.74rem; letter-spacing: 0.07em; text-transform: uppercase; color: var(--ink-soft); background: var(--cream-2); }
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table td.figure { font-family: var(--font-display); font-weight: 600; }

/* ---------- Why choose us ---------- */
.why-grid { grid-template-columns: repeat(4, 1fr); }
.why-item { display: flex; gap: 1rem; align-items: flex-start; }
.why-icon { width: 44px; height: 44px; flex-shrink: 0; border-radius: 50%; background: var(--gold-soft); color: var(--gold-deep); display: flex; align-items: center; justify-content: center; }
.why-icon svg { width: 20px; height: 20px; }
.why-item h4 { margin-bottom: 0.3rem; }
.why-item p { font-size: 0.9rem; }

/* ---------- How it works ---------- */
.steps-grid { grid-template-columns: repeat(4, 1fr); position: relative; }
.step-item { position: relative; padding-top: 0.5rem; }
.step-number { font-family: var(--font-display); font-size: 2.6rem; color: var(--gold); font-weight: 600; line-height: 1; }
.step-item h4 { margin-top: 0.8rem; }
.step-item p { font-size: 0.9rem; margin-top: 0.4rem; }

/* ---------- Gallery ---------- */
.gallery-grid { columns: 3 220px; column-gap: 1.2rem; }
.gallery-item {
  break-inside: avoid; margin-bottom: 1.2rem; border-radius: var(--radius-m); overflow: hidden;
  position: relative; cursor: zoom-in; border: 1px solid var(--line);
}
.gallery-item img { width: 100%; height: auto; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-caption {
  position: absolute; inset: auto 0 0 0; padding: 0.9rem 1rem; font-size: 0.82rem; font-weight: 600;
  color: var(--white); background: linear-gradient(to top, rgba(20,21,26,0.75), transparent);
  opacity: 0; transition: opacity .2s ease;
}
.gallery-item:hover .gallery-caption, .gallery-item:focus-within .gallery-caption { opacity: 1; }

.lightbox {
  position: fixed; inset: 0; z-index: 200; background: rgba(10,10,12,0.94);
  display: none; align-items: center; justify-content: center; padding: 4vh 4vw;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 100%; max-height: 82vh; border-radius: var(--radius-s); }
.lightbox-caption { color: var(--cream); text-align: center; margin-top: 1rem; font-size: 0.92rem; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute; width: 48px; height: 48px; border-radius: 50%; background: rgba(250,247,241,0.1);
  color: var(--cream); display: flex; align-items: center; justify-content: center; border: 1px solid var(--line-dark);
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--gold); color: var(--ink); }
.lightbox-close { top: 22px; right: 22px; }
.lightbox-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 22px; top: 50%; transform: translateY(-50%); }
.lightbox-close svg, .lightbox-prev svg, .lightbox-next svg { width: 20px; height: 20px; }

/* ---------- Testimonials ---------- */
.testimonial-grid { grid-template-columns: repeat(3, 1fr); }
.testimonial-card { background: var(--ink-2); border-radius: var(--radius-m); padding: 1.9rem; color: var(--cream); }
.stars { display: flex; gap: 3px; color: var(--gold); margin-bottom: 1rem; }
.stars svg { width: 16px; height: 16px; }
.testimonial-card p { color: rgba(250,247,241,0.85); font-size: 0.95rem; }
.testimonial-name { margin-top: 1.2rem; font-weight: 600; font-size: 0.88rem; color: var(--cream); }

/* ---------- About ---------- */
.about-hero { padding-top: 3rem; }
.about-grid { grid-template-columns: 1fr 1fr; align-items: start; gap: 3.5rem; }
.about-figure { border-radius: var(--radius-l); overflow: hidden; background: var(--ink-2); padding: 2rem; }
.values-grid { grid-template-columns: repeat(2, 1fr); margin-top: 2rem; }
.value-card { padding: 1.4rem; border: 1px solid var(--line); border-radius: var(--radius-m); background: var(--white); }
.value-card h4 { font-size: 0.98rem; margin-bottom: 0.3rem; }
.value-card p { font-size: 0.86rem; }
.editable-note { font-size: 0.8rem; color: var(--gold-deep); background: var(--gold-soft); padding: 0.9rem 1.1rem; border-radius: var(--radius-s); margin-top: 1rem; }

/* ---------- Contact ---------- */
.contact-grid { grid-template-columns: 0.9fr 1.1fr; gap: 3rem; align-items: start; }
.contact-card { background: var(--ink); color: var(--cream); border-radius: var(--radius-l); padding: 2.4rem; }
.contact-card h3 { color: var(--cream); }
.contact-row { display: flex; align-items: center; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--line-dark); }
.contact-row:last-of-type { border-bottom: none; }
.contact-row .icon { width: 42px; height: 42px; border-radius: 50%; background: var(--gold-soft); color: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-row .icon svg { width: 19px; height: 19px; }
.contact-row .label { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(250,247,241,0.55); }
.contact-row .value { font-weight: 600; }
.contact-ctas { display: flex; gap: 0.8rem; margin-top: 1.8rem; flex-wrap: wrap; }
.contact-form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-l); padding: 2.4rem; }
.contact-fields { display: flex; flex-direction: column; gap: 1.1rem; }
.contact-fields .booking-submit-row { margin-top: 0.4rem; }

/* ---------- Final CTA band ---------- */
.cta-band { background: var(--gold); color: var(--ink); text-align: center; padding: 4rem 0; }
.cta-band h2 { color: var(--ink); }
.cta-band .lede { margin: 1rem auto 1.8rem; color: rgba(20,21,26,0.72); }
.cta-band-ctas { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(250,247,241,0.7); padding: 4rem 0 2rem; }
.footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid var(--line-dark); }
.footer-brand .brand-text .name { color: var(--cream); }
.footer-brand p { margin-top: 1rem; font-size: 0.88rem; max-width: 32ch; }
.footer-col h4 { color: var(--cream); font-size: 0.85rem; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col a { font-size: 0.9rem; transition: color .18s ease; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 1.8rem; font-size: 0.82rem; flex-wrap: wrap; gap: 0.8rem; }
.footer-social { display: flex; gap: 0.7rem; }

/* ---------- Mobile bottom action bar ---------- */
.mobile-bar {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: var(--ink); border-top: 1px solid var(--line-dark);
  padding: 0.6rem 0.8rem calc(0.6rem + env(safe-area-inset-bottom));
  box-shadow: 0 -8px 24px -12px rgba(0,0,0,0.4);
}
.mobile-bar-inner { display: grid; grid-template-columns: 1fr 1fr 1.3fr; gap: 0.6rem; }
.mobile-bar a, .mobile-bar button {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  padding: 0.55rem 0.3rem; border-radius: 12px; font-size: 0.68rem; font-weight: 600; color: var(--cream);
}
.mobile-bar svg { width: 20px; height: 20px; }
.mobile-bar .bar-call { background: rgba(250,247,241,0.08); }
.mobile-bar .bar-whatsapp { background: rgba(250,247,241,0.08); }
.mobile-bar .bar-book { background: var(--gold); color: var(--ink); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- WhatsApp floating button (desktop) ---------- */
.float-whatsapp {
  position: fixed; right: 26px; bottom: 26px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; background: var(--success); color: var(--white);
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-2);
  transition: transform .18s ease;
}
.float-whatsapp:hover { transform: scale(1.06); }
.float-whatsapp svg { width: 27px; height: 27px; }

/* ---------- Misc ---------- */
.text-center { text-align: center; }
.mt-lg { margin-top: 3rem; }
.badge-page-hero {
  background: var(--ink); color: var(--cream); padding: 5.5rem 0 3.5rem; text-align: center;
}
.badge-page-hero .eyebrow { justify-content: center; color: var(--gold); }
.badge-page-hero h1 { color: var(--cream); margin-top: 0.8rem; }
.badge-page-hero p { max-width: 52ch; margin: 1rem auto 0; color: rgba(250,247,241,0.7); }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 0.82rem; padding: 1rem 0; }
.breadcrumbs a { color: var(--ink-soft); }
.breadcrumbs a:hover { color: var(--gold-deep); }
.breadcrumbs .sep { color: var(--line); }
.breadcrumbs .current { color: var(--ink); font-weight: 600; }
.breadcrumbs.on-dark a { color: rgba(250,247,241,0.65); }
.breadcrumbs.on-dark a:hover { color: var(--gold); }
.breadcrumbs.on-dark .sep { color: var(--line-dark); }
.breadcrumbs.on-dark .current { color: var(--cream); }
.back-to-services { display: inline-flex; align-items: center; gap: 6px; }
.back-to-services svg { width: 15px; height: 15px; transform: rotate(180deg); }

/* ---------- Service page hero ---------- */
.service-hero { background: var(--ink); color: var(--cream); padding: 1rem 0 4rem; }
.service-hero h1 { color: var(--cream); margin-top: 0.7rem; max-width: 20ch; }
.service-hero .lede { color: rgba(250,247,241,0.72); margin-top: 1.1rem; }
.service-hero .hero-ctas { margin-top: 1.8rem; }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-m); overflow: hidden; }
.faq-item { background: var(--white); padding: 1.3rem 1.5rem; }
.faq-item h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.faq-item p { font-size: 0.9rem; margin: 0; }

/* ---------- Service intro / why-choose list ---------- */
.service-intro p { font-size: 1.02rem; margin-bottom: 1rem; }
.why-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.9rem 1.6rem; }
.why-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.95rem; color: var(--ink-soft); }
.why-list li svg { width: 18px; height: 18px; color: var(--gold-deep); flex-shrink: 0; margin-top: 2px; }
