/* ============================================================
   PRIMEPATH — THE OBSIDIAN STANDARD
   index.css  |  Full redesign
   ============================================================ */

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--ink);
  color: var(--white);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; border: none; background: transparent; }
:focus-visible { outline: 1px solid var(--champagne); outline-offset: 3px; }


/* ── DESIGN TOKENS are centralized in design-tokens.css ─────── */

/* ── GLOBAL UTILITIES ───────────────────────────────────────── */
.container {
  width: min(var(--max), calc(100% - var(--pad) * 2));
  margin: 0 auto;
}

.section { position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--champagne);
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--champagne);
  opacity: 0.7;
  display: block;
  flex-shrink: 0;
}

.h2 {
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--white);
}
.h2 em {
  font-style: italic;
  color: var(--champagne-2);
}

.lead {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--white-40);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: all 0.35s var(--ease);
  cursor: pointer;
}
.btn-champagne {
  background: var(--champagne);
  border: 1px solid var(--champagne);
  color: var(--ink);
}
.btn-champagne:hover {
  background: var(--champagne-2);
  border-color: var(--champagne-2);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  border: 1px solid var(--white-40);
  color: var(--white);
}
.btn-ghost:hover {
  border-color: var(--white);
  background: var(--white-08);
  transform: translateY(-2px);
}

/* Reveal animations */
.js .reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.95s var(--ease), transform 0.95s var(--ease);
}
.js .reveal.in-view { opacity: 1; transform: translateY(0); }

.js .reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.js .reveal-stagger.in-view > * { opacity: 1; transform: translateY(0); }
.js .reveal-stagger.in-view > *:nth-child(1) { transition-delay: 0.04s; }
.js .reveal-stagger.in-view > *:nth-child(2) { transition-delay: 0.12s; }
.js .reveal-stagger.in-view > *:nth-child(3) { transition-delay: 0.20s; }
.js .reveal-stagger.in-view > *:nth-child(4) { transition-delay: 0.28s; }
.js .reveal-stagger.in-view > *:nth-child(5) { transition-delay: 0.36s; }
.js .reveal-stagger.in-view > *:nth-child(6) { transition-delay: 0.44s; }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 76px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--ink);
}

/* Hero background image */
.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero-bg-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 75% 55%, rgba(0,0,0,0) 0%, rgba(0,0,0,0.22) 100%),
    linear-gradient(to right, rgba(34,34,34,0.92) 0%, rgba(34,34,34,0.68) 38%, rgba(34,34,34,0.06) 65%, rgba(34,34,34,0) 100%);
  z-index: 2;
}

.hero-bg-image::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--ink) 0%, transparent 100%);
  z-index: 3;
}

/* ─── HERO CONTENT LEFT ─── */
.hero-content {
  position: relative;
  z-index: 10;
  padding: 140px 52px 0;
  max-width: 580px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.hero-eyebrow span {
  font-family: var(--font-accent);
  font-size: 8px;
  letter-spacing: 0.32em;
  color: var(--champagne);
  text-transform: uppercase;
  font-weight: 500;
}

.hero-eyebrow::after {
  content: '';
  width: 50px;
  height: 1px;
  background: var(--champagne);
  opacity: 0.7;
}

.hero-title {
  font-family: var(--font-accent);
  line-height: 0.95;
  margin-bottom: 18px;
}

.hero-title .hero-line1 {
  font-size: 82px;
  font-weight: 700;
  color: var(--white);
  display: block;
  letter-spacing: 0.01em;
}

.hero-title .hero-line2 {
  font-size: 82px;
  font-weight: 700;
  color: var(--champagne);
  display: block;
  letter-spacing: 0.01em;
}

.diamond-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0 24px;
}

.diamond-divider::before,
.diamond-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--champagne);
  opacity: 0.45;
  max-width: 80px;
}

.diamond-divider .diamond {
  width: 8px;
  height: 8px;
  border: 1px solid var(--champagne);
  transform: rotate(45deg);
  flex-shrink: 0;
  opacity: 0.8;
}

.hero-desc {
  font-family: var(--font-nav);
  font-size: 11px;
  font-weight: 300;
  color: var(--white-50);
  line-height: 1.8;
  letter-spacing: 0.02em;
  margin-bottom: 38px;
  max-width: 360px;
}

.cta-group {
  display: flex;
  align-items: center;
  gap: 18px;
}

.btn-primary {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--champagne);
  color: var(--ink);
  border: none;
  padding: 15px 26px;
  font-family: var(--font-accent);
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 3px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--champagne-2);
  transform: translateX(2px);
}

.btn-primary svg {
  width: 15px;
  height: 15px;
}

.btn-secondary {
  display: flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(201,168,76,0.5);
  padding: 14px 24px;
  font-family: var(--font-accent);
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 3px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.btn-secondary:hover {
  border-color: var(--champagne);
  color: var(--champagne-2);
}

/* ─── FEATURES STRIP ─── */
.features-strip {
  position: relative;
  z-index: 10;
  margin: 40px 52px 0;
  border: 1px solid var(--ink-4);
  border-radius: 10px;
  background: rgba(39,39,39,0.80);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  padding: 0;
  overflow: hidden;
}

.feature-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 26px 28px;
  position: relative;
}

.feature-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--ink-3);
}

.feature-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  color: var(--champagne);
}

.feature-label {
  font-family: var(--font-accent);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--white);
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.5;
}

/* ─── BOTTOM SCROLL AREA ─── */
.hero-bottom-area {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 0 20px;
  margin-top: auto;
}

.scroll-indicator {
  width: 26px;
  height: 42px;
  border: 1.5px solid rgba(201,168,76,0.4);
  border-radius: 13px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
  text-decoration: none;
}

.scroll-dot {
  width: 4px;
  height: 8px;
  background: var(--champagne);
  border-radius: 2px;
  animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(12px); opacity: 0.3; }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── BOOKING SECTION ────────────────────────────────────────── */
.book-section {
  background: var(--ink-1);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 72px var(--pad);
}

.book-label {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 36px;
}
.book-label::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--champagne);
  opacity: 0.7;
}

/* Tabs */
.book-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--white-08);
}
.btab {
  padding: 12px 28px;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white-40);
  background: transparent;
  border: none;
  border-bottom: 1px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.btab.active {
  color: var(--champagne);
  border-bottom-color: var(--champagne);
}
.btab:hover:not(.active) { color: var(--white-72); }

/* One-way / hourly field toggling */
.booking-pane { display: none; }
.booking-pane.active { display: block; }

/* Main booking grid — horizontal flat form */
.book-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.25fr) minmax(150px, 0.65fr) minmax(140px, 0.6fr) max-content;
  gap: 6px;
  width: 100%;
  min-width: 0;
}

.book-field {
  background: var(--ink-2);
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid var(--white-08);
  border-radius: 3px;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
  position: relative;
  min-width: 0;
}
.book-field:hover { background: var(--ink-3); }

.book-field label {
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--champagne);
}

.book-field input,
.book-field select {
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 300;
  color: var(--white);
  width: 100%;
  min-width: 0;
  cursor: pointer;
}
.book-field input::placeholder { color: var(--white-40); }
.book-field select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.book-field select option {
  background: var(--ink-2);
  color: var(--white);
}

/* Hourly booking grid */
.book-grid-hourly {
  display: grid;
  grid-template-columns: 1fr 220px 200px 180px auto;
  gap: 6px;
}

/* Special request grid */
.book-grid-special {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 220px auto;
  gap: 6px;
}

/* Full-width field spans */
.book-field-full { grid-column: 1 / -1; }

.book-submit {
  padding: 18px 28px;
  background: var(--champagne);
  border: none;
  font-family: var(--body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s var(--ease);
  align-self: stretch;
}
.book-submit:hover { background: var(--champagne-2); }

/* Flash messages */
.book-flash {
  padding: 12px 20px;
  font-size: 11px;
  font-weight: 300;
  line-height: 1.55;
  border-left: 2px solid;
  margin-bottom: 20px;
}
.book-flash--success {
  border-color: #3a8a5c;
  background: rgba(58,138,92,0.08);
  color: rgba(140,220,170,0.9);
}
.book-flash--error {
  border-color: #9b3a3a;
  background: rgba(155,58,58,0.08);
  color: rgba(220,140,140,0.9);
}

/* Hidden inputs for lat/lng */
input[type="hidden"] { display: none !important; }

/* Google PlaceAutocompleteElement wrapper */
#pickup-container,
#dropoff-container,
#sr-pickup-container {
  display: contents;
}

/* Pickup input row with My Location button */
.pickup-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-width: 0;
}
.pickup-input-row > :first-child {
  flex: 1;
  min-width: 0;
}

.my-location-btn {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--champagne-dim, rgba(201,168,76,0.18));
  border: 1px solid var(--champagne-line, rgba(201,168,76,0.35));
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
  padding: 0;
}
.my-location-btn svg {
  width: 16px;
  height: 16px;
  color: var(--champagne);
  transition: color 0.25s;
}
.my-location-btn:hover {
  background: var(--champagne-line, rgba(201,168,76,0.35));
  border-color: var(--champagne);
  transform: scale(1.1);
}
.my-location-btn:active {
  transform: scale(0.95);
}
.my-location-btn.locating svg {
  animation: my-location-spin 1s linear infinite;
}
.my-location-btn.locating {
  background: rgba(201,168,76,0.30);
}

/* My Location display (shows detected address) */
.my-location-display {
  display: none;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
  font-size: 13px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.4;
}
.my-location-display.active {
  display: flex;
}
.my-location-display-text {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.my-location-clear {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
  color: var(--champagne);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
  padding: 0;
}
.my-location-clear:hover {
  color: var(--champagne-2);
  transform: scale(1.15);
}

/* Hide the autocomplete container when my-location-display is active */
.pickup-input-row.has-my-location > :first-child {
  display: none !important;
}

@keyframes my-location-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ── COUNTRY STRIP ──────────────────────────────────────────── */
.country-strip {
  background: var(--ink-1);
  border-bottom: 1px solid var(--line);
  padding: 22px var(--pad);
}
.country-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.country-strip-text {
  font-size: 11px;
  font-weight: 300;
  color: var(--white-40);
}
.country-strip-text strong { color: var(--champagne); font-weight: 400; }
.country-strip-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.country-badge {
  padding: 8px 14px;
  border: 1px solid var(--white-08);
  border-radius: var(--radius);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--white-40);
}

/* ── SERVICES SECTION ───────────────────────────────────────── */
.services {
  padding: 120px var(--pad);
  background: var(--ink);
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 64px;
}

.services-strip {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 6px;
}

.svc-card {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  cursor: pointer;
  border: 1px solid var(--white-08);
  border-radius: 3px;
}
.svc-card.large { min-height: 580px; }

.svc-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.42) saturate(0.70);
  transform: scale(1.04);
  transition: filter 0.75s var(--ease), transform 0.85s var(--ease);
  will-change: transform;
}
.svc-card:hover .svc-media {
  filter: brightness(0.58) saturate(0.85);
  transform: scale(1.00);
}

.svc-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.40) 50%,
    rgba(0,0,0,0.10) 100%
  );
  pointer-events: none;
}

.svc-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 44px 40px;
}

.svc-ghost-num {
  font-family: var(--display);
  font-size: 110px;
  font-weight: 300;
  line-height: 1;
  color: rgba(255,255,255,0.04);
  margin-bottom: auto;
  align-self: flex-end;
  user-select: none;
  transition: color 0.5s var(--ease);
}
.svc-card:hover .svc-ghost-num { color: rgba(255,255,255,0.08); }

.svc-body {
  transition: transform 0.4s var(--ease);
}
.svc-card:hover .svc-body { transform: translateY(-4px); }

.svc-tag {
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 14px;
}

.svc-heading {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 16px;
}

.svc-text {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.78;
  color: var(--white-60);
  max-width: 380px;
  margin-bottom: 24px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(8px);
  transition: max-height 0.5s var(--ease), opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.svc-card:hover .svc-text { max-height: 120px; opacity: 1; transform: translateY(0); }

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--champagne);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.svc-card:hover .svc-link { opacity: 1; transform: translateY(0); }
.svc-link svg { transition: transform 0.3s var(--ease); }
.svc-card:hover .svc-link svg { transform: translateX(5px); }

.svc-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--champagne);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
  z-index: 3;
}
.svc-card:hover .svc-accent { transform: scaleX(1); }

/* ── EXPERIENCE SECTION (alternating rows) ──────────────────── */
.experience {
  background: var(--ink-1);
  padding: 120px var(--pad);
}
.experience .section-header { margin-bottom: 72px; }
.experience .section-header .lead { max-width: 340px; text-align: right; }

.exp-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
  border-top: 1px solid var(--line);
}
.exp-row:last-child { border-bottom: 1px solid var(--line); }

/* Flip even rows */
.exp-row:nth-child(even) .exp-visual { order: -1; }
.exp-row:nth-child(even) .exp-text {
  border-left: none;
  border-right: 1px solid var(--line);
}

.exp-visual {
  position: relative;
  overflow: hidden;
}
.exp-visual-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.55) saturate(0.75);
  transition: filter 0.65s var(--ease), transform 0.85s var(--ease);
  transform: scale(1.02);
}
.exp-row:hover .exp-visual-img {
  filter: brightness(0.72) saturate(0.90);
  transform: scale(1.00);
}

.exp-text {
  padding: 72px 68px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--line);
}

.exp-ghost-num {
  font-family: var(--display);
  font-size: 130px;
  font-weight: 300;
  line-height: 1;
  color: var(--champagne-dim);
  margin-bottom: -24px;
  user-select: none;
}

.exp-tag {
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 18px;
}

.exp-h3 {
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--white);
  margin-bottom: 24px;
}
.exp-h3 em { font-style: italic; color: var(--champagne-2); }

.exp-p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--white-40);
  max-width: 400px;
}

/* ── EXCELLENCE / PROMISE SECTION ───────────────────────────── */
.excellence {
  padding: 140px var(--pad);
  background: var(--ink);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.excellence-left {
  position: sticky;
  top: 120px;
}
.excellence-left .eyebrow { margin-bottom: 22px; }
.excellence-left .h2 { margin-bottom: 0; }
.excellence-left .diamond-divider { margin: 28px 0; }
.excellence-left .lead { max-width: 380px; }

.excellence-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.exc-card {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
  transition: background 0.35s var(--ease);
}
.exc-card:first-child { border-top: 1px solid var(--line); }

.exc-card-accent {
  width: 3px;
  min-height: 100%;
  background: transparent;
  transition: background 0.35s var(--ease);
  flex-shrink: 0;
}
.exc-card:hover .exc-card-accent { background: var(--champagne); }

.exc-card-body {
  padding: 40px 36px;
  flex: 1;
}

.exc-num {
  font-family: var(--display);
  font-size: 48px;
  font-weight: 300;
  color: var(--champagne-dim);
  line-height: 1;
  margin-bottom: 16px;
  user-select: none;
  transition: color 0.35s var(--ease);
}
.exc-card:hover .exc-num { color: var(--champagne); }

.exc-card h3 {
  font-family: var(--body);
  font-size: 15px;
  font-weight: 500;
  color: var(--white-90);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
  transition: color 0.35s var(--ease);
}
.exc-card:hover h3 { color: var(--white); }

.exc-card p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--white-40);
  max-width: 420px;
}

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials {
  padding: 140px var(--pad);
  background: var(--ink-1);
  border-top: 1px solid var(--line);
}

.testimonials .section-header { margin-bottom: 72px; }
.testimonials .section-header .lead { max-width: 320px; text-align: right; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 10px;
}

.testi-card {
  background: var(--ink-1);
  padding: 48px 40px;
  border: 1px solid var(--white-08);
  border-radius: 3px;
  overflow: hidden;
  word-break: break-word;
  overflow-wrap: break-word;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
}
.testi-card:hover {
  background: var(--ink-2);
  border-color: var(--champagne-dim);
}

.testi-mark {
  font-family: var(--display);
  font-size: 100px;
  font-weight: 300;
  color: var(--champagne);
  line-height: 0.72;
  margin-bottom: 24px;
  opacity: 0.28;
  user-select: none;
}

.testi-quote {
  font-family: var(--display);
  font-size: 21px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.65;
  color: var(--white-72);
  margin-bottom: 36px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--white-08);
  padding-top: 24px;
}

.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--champagne-dim);
  border: 1px solid var(--champagne-line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 400;
  color: var(--champagne);
}
.testi-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.testi-name {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 4px;
}
.testi-role {
  display: block;
  font-size: 9px;
  font-weight: 300;
  color: var(--white-40);
  letter-spacing: 0.05em;
}

/* Stars */
.testi-stars {
  display: flex;
  gap: 3px;
  color: var(--champagne);
  margin-bottom: 18px;
}
.testi-stars svg { width: 14px; height: 14px; }

/* ── CONTACT SECTION ────────────────────────────────────────── */
.contact {
  padding: 140px var(--pad);
  background: var(--ink);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.contact-left .eyebrow { margin-bottom: 22px; }
.contact-left .h2 {
  font-size: clamp(44px, 5vw, 76px);
  margin-bottom: 24px;
}
.contact-left .lead { margin-bottom: 48px; max-width: 380px; }

.contact-details { display: flex; flex-direction: column; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.contact-item:first-child { border-top: 1px solid var(--line); }

.contact-item-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--white-08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--champagne);
}
.contact-item-icon svg { width: 16px; height: 16px; }

.contact-item-label {
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--white-40);
  margin-bottom: 6px;
}
.contact-item-value {
  font-size: 13px;
  font-weight: 300;
  color: var(--white-72);
  transition: color 0.3s var(--ease);
}
a.contact-item-value:hover { color: var(--champagne); }

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.cf-field {
  background: var(--ink-1);
  padding: 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid var(--white-08);
  border-radius: 3px;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.cf-field:hover { background: var(--ink-2); border-color: var(--champagne-dim); }

.cf-field label {
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--champagne);
}

.cf-field input,
.cf-field textarea {
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 300;
  color: var(--white);
  width: 100%;
  resize: none;
}
.cf-field input::placeholder,
.cf-field textarea::placeholder { color: var(--white-40); }

.cf-submit {
  padding: 22px 40px;
  background: var(--champagne);
  border: none;
  font-family: var(--body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  width: 100%;
  text-align: center;
  transition: background 0.3s var(--ease);
}
.cf-submit:hover { background: var(--champagne-2); }

.cf-flash {
  padding: 12px 20px;
  font-size: 11px;
  font-weight: 300;
  line-height: 1.55;
  border-left: 2px solid;
  margin-bottom: 1px;
}
.cf-flash--success {
  border-color: #3a8a5c;
  background: rgba(58,138,92,0.08);
  color: rgba(140,220,170,0.9);
}
.cf-flash--error {
  border-color: #9b3a3a;
  background: rgba(155,58,58,0.08);
  color: rgba(220,140,140,0.9);
}

/* ── CTA BAND ───────────────────────────────────────────────── */
.cta-band {
  position: relative;
  overflow: hidden;
  padding: 160px var(--pad);
  border-top: 1px solid var(--line);
}

.cta-bg {
  position: absolute;
  inset: -4%;
  background-image: url('https://images.unsplash.com/photo-1516738901171-8eb4fc13bd20?auto=format&fit=crop&w=2000&q=80');
  background-position: center;
  background-size: cover;
  filter: brightness(0.20) saturate(0.45);
  animation: bgDrift 22s ease-in-out infinite alternate;
}
.cta-vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.82) 0%,
    rgba(0,0,0,0.55) 50%,
    rgba(0,0,0,0.82) 100%
  );
}

.cta-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.cta-left {
  display: flex;
  flex-direction: column;
}

.cta-kicker {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 32px;
  opacity: 0.7;
}

.cta-title {
  font-family: var(--display);
  font-size: clamp(52px, 8vw, 120px);
  font-weight: 300;
  line-height: 0.88;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 0;
}
.cta-title em { font-style: italic; color: var(--champagne-2); }

.cta-right {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 80px;
  border-left: 1px solid var(--champagne-line);
}

.cta-accent-line {
  width: 32px;
  height: 1px;
  background: var(--champagne);
  margin-bottom: 32px;
  opacity: 0.7;
}

.cta-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--white-50);
  max-width: 400px;
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.cta-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.cta-link-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-50);
  transition: color 0.3s var(--ease);
}
.cta-link-item svg { color: var(--champagne); flex-shrink: 0; }
.cta-link-item:hover { color: var(--white); }

/* ── GOOGLE MAPS AUTOCOMPLETE ───────────────────────────────── */
.pac-container {
  z-index: 9999 !important;
  border-radius: 4px !important;
  border: 1px solid var(--white-08) !important;
  background: var(--ink-2) !important;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5) !important;
  margin-top: 4px !important;
  padding: 6px !important;
  font-family: var(--body) !important;
  overflow: hidden;
}
.pac-item {
  border-radius: 2px !important;
  padding: 10px 14px !important;
  font-size: 12px !important;
  color: var(--white-72) !important;
  border: none !important;
  background: transparent !important;
  cursor: pointer;
  transition: background 0.15s ease;
}
.pac-item:hover,
.pac-item.pac-item-selected {
  background: var(--white-08) !important;
}
.pac-item-query {
  font-size: 12px !important;
  font-weight: 400 !important;
  color: var(--white) !important;
}
.pac-icon { display: none !important; }
.pac-logo { display: none !important; }

/* Custom date/time picker (reused from existing logic) */
.bfield-icon { position: relative; }
.cdp-dropdown,
.ctp-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 280px;
  z-index: 9999;
  background: var(--ink-2);
  border: 1px solid var(--white-08);
  border-radius: 4px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  display: none;
  user-select: none;
}
.cdp-dropdown.open,
.ctp-dropdown.open { display: block; animation: dropFade 0.2s var(--ease); }
@keyframes dropFade {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.cdp-dropdown { padding: 16px; }
.cdp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.cdp-header strong {
  font-size: 11px;
  font-weight: 400;
  color: var(--white);
}
.cdp-nav {
  width: 30px;
  height: 30px;
  border-radius: 2px;
  background: var(--white-08);
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--white-72);
  transition: background 0.2s;
}
.cdp-nav:hover { background: var(--white-18); }
.cdp-nav svg { width: 14px; height: 14px; }

.cdp-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 4px;
}
.cdp-weekdays span {
  text-align: center;
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-40);
  padding: 4px 0;
}
.cdp-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.cdp-day {
  width: 100%;
  aspect-ratio: 1;
  border: none;
  border-radius: 2px;
  background: transparent;
  font-size: 10px;
  font-weight: 300;
  color: var(--white-72);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.15s;
}
.cdp-day:hover:not(.cdp-day--disabled):not(.cdp-day--selected) {
  background: var(--white-08);
}
.cdp-day--disabled { color: var(--white-18); cursor: default; }
.cdp-day--today { color: var(--champagne); border: 1px solid var(--champagne-line); }
.cdp-day--selected {
  background: var(--champagne);
  color: var(--ink);
  font-weight: 500;
}
.cdp-day--outside { color: var(--white-18); }

.ctp-dropdown {
  padding: 8px;
  max-height: 260px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--white-18) transparent;
}
.ctp-dropdown::-webkit-scrollbar { width: 4px; }
.ctp-dropdown::-webkit-scrollbar-thumb {
  background: var(--white-18);
  border-radius: 2px;
}
.ctp-item {
  width: 100%;
  border: none;
  border-radius: 2px;
  background: transparent;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 300;
  color: var(--white-72);
  cursor: pointer;
  text-align: left;
  transition: background 0.15s;
}
.ctp-item:hover { background: var(--white-08); }
.ctp-item--selected {
  background: var(--champagne);
  color: var(--ink);
  font-weight: 500;
}

/* Chevron icon inside date/time fields */
.bfield-icon .field-icon-svg {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  color: var(--white-40);
  pointer-events: none;
  transition: transform 0.25s var(--ease), color 0.25s;
}
.book-field.active .field-icon-svg {
  transform: translateY(-50%) rotate(180deg);
  color: var(--champagne);
}

/* ── REDUCED MOTION ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  :root { --pad: 40px; }

  .services-strip { grid-template-columns: 1fr 1fr; }
  .svc-card.large { grid-column: 1 / -1; }

  .excellence {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .excellence-left {
    position: static;
  }
  .excellence-left .lead { max-width: 100%; }

  .cta-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .cta-right {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid var(--champagne-line);
    padding-top: 48px;
  }

  .contact {
    grid-template-columns: 1fr;
    gap: 64px;
  }
}

@media (max-width: 860px) {
  :root { --pad: 28px; }

  .hero-content { padding: 120px 28px 0; max-width: 100%; }
  .hero-title .hero-line1,
  .hero-title .hero-line2 { font-size: clamp(48px, 11vw, 72px); }
  .hero-bg-image { opacity: 0.5; }
  .features-strip { margin: 30px 20px 0; flex-wrap: wrap; }
  .feature-item { flex: 1 1 45%; }
  .cta-group { flex-direction: column; align-items: flex-start; }
  .cta-group .btn-primary,
  .cta-group .btn-secondary { width: 100%; justify-content: center; }

  .book-grid,
  .book-grid-hourly,
  .book-grid-special {
    grid-template-columns: 1fr;
  }
  .book-submit { padding: 18px 32px; }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .section-header .lead { text-align: left !important; }

  .services-strip { grid-template-columns: 1fr; }
  .svc-card { min-height: 400px; }
  .svc-card.large { min-height: 400px; }
  .svc-text { max-height: 120px; opacity: 1; transform: none; }
  .svc-link { opacity: 1; transform: none; }
  .svc-accent { transform: scaleX(1); }

  .exp-row { grid-template-columns: 1fr; min-height: auto; }
  .exp-visual { min-height: 300px; }
  .exp-text {
    padding: 48px 32px;
    border-left: none !important;
    border-right: none !important;
    border-top: 1px solid var(--line);
  }
  .exp-row:nth-child(even) .exp-visual { order: 0; }

  .exc-card-body { padding: 32px 24px; }

  .testi-grid { grid-template-columns: 1fr; }

  .cf-row { grid-template-columns: 1fr; }

  .country-strip-inner { flex-direction: column; text-align: center; }

  .scroll-indicator { display: none; }
  .hero-bottom-area { display: none; }
}

@media (max-width: 560px) {
  .hero-title .hero-line1,
  .hero-title .hero-line2 { font-size: clamp(40px, 14vw, 60px); }
  .hero-desc { font-size: 10px; }
  .hero-content { padding: 100px 20px 0; }
  .features-strip { margin: 24px 12px 0; }
  .feature-item { flex: 1 1 100%; }

  .book-tabs { overflow-x: auto; }
  .btab { white-space: nowrap; }

  .testi-card { padding: 32px 24px; }

  .contact { padding: 80px var(--pad); }
  .cta-band { padding: 100px var(--pad); }
  .services { padding: 80px var(--pad); }
  .experience { padding: 80px var(--pad); }
  .excellence { padding: 80px var(--pad); }
  .testimonials { padding: 80px var(--pad); }
}
