/* ORYX Sites — base layout & components.
   Theme + accent are set via data attributes on <html>; see themes.css.
   Fonts are loaded via <link> in template <head>. */

* { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.65;
  font-size: 17px;
  font-weight: 400;
}

/* Typography — luxury hierarchy: Playfair (H1), Cormorant (H2), Figtree (body). */
h1, h2, h3, h4 {
  margin: 0 0 1rem;
  line-height: 1.1;
  letter-spacing: -0.015em;
  font-feature-settings: 'kern', 'liga', 'dlig';
}
h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 500;
  letter-spacing: -0.005em;
}
h3 {
  font-family: 'Figtree', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.005em;
}

/* Pull quotes / italic emphasis use Cormorant italic. */
em, i, .quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.05em;
}
p { margin: 0 0 1rem; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Layout primitives */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: 3rem 0; }
.section-tight { padding: 2rem 0; }

/* Brand bar (top) */
.brand-bar {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.375rem;
  text-transform: none;
  letter-spacing: 0.04em;
  color: var(--accent);
  margin-bottom: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .brand-bar { font-size: 1.625rem; }
}

/* Hero — full-bleed when heroBannerUrl is set, ample padding when not. */
.hero { padding: 3rem 0 2rem; }
.hero-subtitle {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 400;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 2.5rem;
  max-width: 52ch;
  line-height: 1.45;
}
.hero-image {
  width: 100%;
  border-radius: 12px;
  margin: 2rem 0;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: rgba(128, 128, 128, 0.04);
  display: block;
}

/* Luxury hero — full-bleed photo with dark gradient overlay, content
   anchored to bottom-left. Uses CSS variable for image url. */
.hero-luxury {
  position: relative;
  margin: 0 -1.5rem 3rem;
  min-height: clamp(420px, 70vh, 720px);
  background-image: var(--hero-bg, none);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #F5EFE3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 6rem 1.5rem 3rem;
  border-radius: 0 0 12px 12px;
  overflow: hidden;
  isolation: isolate;
}
.hero-luxury::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.15) 40%,
    rgba(0, 0, 0, 0.65) 100%
  );
  z-index: -1;
}
.hero-luxury .brand-bar { color: rgba(255, 255, 255, 0.85); }
.hero-luxury h1 {
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
  max-width: 18ch;
}
.hero-luxury .hero-subtitle {
  color: rgba(245, 239, 227, 0.92);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

/* When the page has a luxury hero, the trust bar moves to a darker
   ribbon below the photo for editorial weight. */
.hero-luxury + .trust-bar {
  margin: -1.5rem 0 2rem;
  padding: 1rem 1.5rem;
  background: var(--bg-elevated);
  border-radius: 12px;
  justify-content: space-between;
}

@media (min-width: 720px) {
  .hero-luxury {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: max(2rem, calc(50vw - 480px));
    padding-right: max(2rem, calc(50vw - 480px));
    border-radius: 0;
  }
  .hero-luxury + .trust-bar {
    margin: -2.5rem 0 3rem;
  }
}

/* CTA button — refined pill on dark themes, sharp editorial on Pure. */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 1.125rem 2.25rem;
  background: var(--accent);
  color: var(--bg);
  border: 0;
  text-decoration: none;
  border-radius: 999px; /* refined pill default */
  font-family: 'Figtree', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 200ms cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 200ms cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  text-decoration: none;
}
.cta:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.cta::after {
  content: '→';
  font-size: 1.125em;
  transition: transform 200ms ease;
}
.cta:hover::after { transform: translateX(3px); }

/* Pure theme: editorial sharp corners */
:root[data-theme="pure"] .cta {
  border-radius: 2px;
  padding: 1.25rem 2.5rem;
}

.cta-secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

/* About / text blocks */
.about {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(128, 128, 128, 0.2);
  max-width: 60ch;
}

/* Fleet grid — luxury card with photo top, spec icons row, hover lift. */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
  margin-top: 2.5rem;
}
.fleet-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1),
              border-color 250ms;
}
.fleet-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
  border-color: var(--accent);
}
.fleet-card-photo,
.fleet-card-photo-fallback {
  aspect-ratio: 16 / 10;
  width: 100%;
  object-fit: cover;
  background: var(--bg);
  display: block;
}
/* Multi-photo carousel for fleet cards */
.fleet-carousel {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg);
}
.fleet-carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 350ms ease-out;
}
.fleet-carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.fleet-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: white;
  border: none;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 200ms;
  z-index: 2;
}
.fleet-carousel:hover .fleet-carousel-nav { opacity: 1; }
.fleet-carousel-prev { left: 8px; }
.fleet-carousel-next { right: 8px; }
.fleet-carousel-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}
.fleet-carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 200ms, width 200ms;
}
.fleet-carousel-dot.active {
  background: white;
  width: 18px;
  border-radius: 3px;
}
.fleet-card-photo-fallback {
  background: linear-gradient(
    135deg,
    var(--bg) 0%,
    var(--bg-elevated) 50%,
    var(--accent) 200%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.125rem;
  letter-spacing: 0.02em;
}
.fleet-card-body { padding: 1.5rem 1.5rem 1.75rem; display: flex; flex-direction: column; flex: 1; }
.fleet-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.fleet-card-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem 1.25rem;
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.fleet-card-spec {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  white-space: nowrap;
}
.fleet-card-spec svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  stroke: var(--accent);
  stroke-width: 1.75;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fleet-card-desc {
  font-size: 0.9375rem;
  color: var(--fg);
  margin-bottom: 1.25rem;
  line-height: 1.55;
  flex: 1;
}
.fleet-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}
.fleet-card-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  color: var(--accent);
}
.fleet-card-price-small {
  font-size: 0.6875rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 0.125rem;
  font-family: 'Figtree', sans-serif;
  font-weight: 500;
}

/* Driver bio (solo layout) — editorial photo + quote pull. */
.driver-bio {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin: 2.5rem 0;
}
.driver-photo,
.driver-photo-fallback {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--accent);
  background: var(--bg);
}
.driver-photo-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--accent);
  font-weight: 500;
}
.driver-info-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  font-size: 1.625rem;
  margin: 0 0 0.375rem;
  letter-spacing: -0.01em;
}
.driver-info-meta {
  color: var(--muted);
  font-size: 0.875rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin-bottom: 0.875rem;
}
.driver-info-meta strong {
  color: var(--fg);
  font-weight: 600;
}
.driver-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.125rem;
  color: var(--fg);
  line-height: 1.5;
  border-left: 2px solid var(--accent);
  padding-left: 1rem;
  margin: 0;
}
@media (max-width: 600px) {
  .driver-bio {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1.75rem 1.25rem;
  }
  .driver-photo,
  .driver-photo-fallback {
    margin: 0 auto;
  }
  .driver-info-meta { justify-content: center; }
  .driver-quote {
    border-left: 0;
    border-top: 2px solid var(--accent);
    padding-left: 0;
    padding-top: 1rem;
  }
}

/* Pricing component */
.pricing-from {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent);
}
.pricing-from-label {
  font-size: 0.875rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-right: 0.5rem;
}

/* FAQ */
.faq-list { margin-top: 1.5rem; }
.faq-item {
  border-top: 1px solid rgba(128, 128, 128, 0.2);
  padding: 1rem 0;
}
.faq-item:last-child { border-bottom: 1px solid rgba(128, 128, 128, 0.2); }
.faq-q {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 1.5rem;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  position: absolute;
  right: 0;
  font-size: 1.25rem;
  color: var(--accent);
  transition: transform 200ms ease;
}
details[open] .faq-q::after { transform: rotate(45deg); }
.faq-a { padding-top: 0.75rem; color: var(--muted); }

/* Booking wizard — 3-step inline form. */
.wizard {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  max-width: 640px;
  margin: 1.5rem 0;
}
.wizard-steps {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  font-size: 0.75rem;
  font-family: 'Figtree', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
}
.wizard-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(128, 128, 128, 0.15);
  color: var(--muted);
  font-weight: 600;
  font-size: 0.6875rem;
  margin-right: 0.4rem;
  transition: background 200ms, color 200ms;
}
.wizard-step.active .wizard-step-num {
  background: var(--accent);
  color: var(--bg);
}
.wizard-step.active { color: var(--fg); }
.wizard-step.done .wizard-step-num {
  background: var(--accent);
  color: var(--bg);
  opacity: 0.5;
}
.wizard-step:not(:last-child)::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
  align-self: center;
  margin: 0 0.5rem;
}
.wizard-step {
  display: flex;
  align-items: center;
  flex: 1 1 0;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* On narrow screens hide the step labels and keep only the numbered circles
 * so "RECOGIDA Y DESTINO / VEHÍCULO / CONFIRMAR" don't overflow the card. */
@media (max-width: 600px) {
  .wizard-steps { gap: 0.25rem; font-size: 0.6875rem; letter-spacing: 0.08em; margin-bottom: 1.25rem; }
  .wizard-step { flex: 0 0 auto; }
  .wizard-step-text { display: none; }
  .wizard-step.active { flex: 1 1 auto; min-width: 0; }
  .wizard-step.active .wizard-step-text {
    display: inline;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .wizard-step-num { margin-right: 0.3rem; }
  .wizard-step:not(:last-child)::after { margin: 0 0.3rem; }
}

.wizard-pane {
  display: none;
  flex-direction: column;
  gap: 1rem;
}
.wizard-pane.active { display: flex; }

.wizard-field { display: flex; flex-direction: column; gap: 0.375rem; }
.wizard-field label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-family: 'Figtree', sans-serif;
  font-weight: 500;
}
.wizard-field select,
.wizard-field input {
  font-family: 'Figtree', sans-serif;
  font-size: 1rem;
  padding: 0.875rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--fg);
  transition: border-color 150ms;
}
.wizard-field select:focus,
.wizard-field input:focus {
  outline: none;
  border-color: var(--accent);
}
.wizard-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 480px) {
  .wizard-row { grid-template-columns: 1fr; }
}

.wizard-vehicle-options {
  display: grid;
  gap: 0.75rem;
}
.wizard-vehicle-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 150ms, transform 150ms;
}
.wizard-vehicle-option:hover { transform: translateY(-1px); }
.wizard-vehicle-option.selected {
  border-color: var(--accent);
  background: var(--bg-elevated);
}
.wizard-vehicle-option-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 500;
}
.wizard-vehicle-option-meta {
  color: var(--muted);
  font-size: 0.8125rem;
  margin-top: 0.125rem;
}
.wizard-vehicle-option input[type="radio"] {
  accent-color: var(--accent);
  width: 18px;
  height: 18px;
  margin-left: auto;
}

.wizard-summary {
  background: var(--bg);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  font-size: 0.9375rem;
}
.wizard-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.375rem 0;
}
.wizard-summary-row + .wizard-summary-row {
  border-top: 1px solid var(--border);
}
.wizard-summary-label { color: var(--muted); }
.wizard-summary-value { font-weight: 500; }
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 720px;
  margin: 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.92);
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.5;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
}
.cookie-banner-text { flex: 1; }
.cookie-banner-text a {
  color: var(--accent);
  text-decoration: underline;
}
.cookie-banner-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.cookie-btn {
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 150ms;
}
.cookie-btn-accept {
  background: var(--accent);
  color: #000;
}
.cookie-btn-reject {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.cookie-btn:hover { opacity: 0.85; }
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    bottom: 8px;
    left: 8px;
    right: 8px;
    padding: 12px 14px;
    font-size: 12px;
  }
  .cookie-banner-actions { justify-content: center; }
}

.lang-switcher {
  position: fixed;
  top: 14px;
  right: 16px;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  backdrop-filter: blur(6px);
}
.lang-switcher a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  padding: 2px 4px;
  transition: color 150ms;
}
.lang-switcher a:hover { color: white; }
.lang-switcher a.active { color: var(--accent); }
.lang-switcher span { color: rgba(255, 255, 255, 0.3); }
@media (max-width: 600px) {
  .lang-switcher { top: 10px; right: 10px; padding: 5px 8px; }
}
.wizard-summary-airport {
  margin-top: 0.625rem;
  padding: 0.625rem 0.875rem;
  background: rgba(184, 147, 90, 0.12);
  border-left: 3px solid var(--accent);
  border-radius: 0 6px 6px 0;
  font-size: 0.8125rem;
  color: var(--accent-strong, var(--accent));
  line-height: 1.4;
}

.wizard-nav {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.wizard-nav .cta { font-size: 0.875rem; padding: 0.875rem 1.5rem; }
.wizard-nav .cta:disabled {
  opacity: 0.4;
  pointer-events: none;
}
.wizard-back {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--fg);
  font-family: 'Figtree', sans-serif;
  font-weight: 500;
  padding: 0.875rem 1.5rem;
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 150ms;
}
.wizard-back:hover { border-color: var(--accent); }

.wizard-error {
  display: none;
  padding: 0.625rem 0.875rem;
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: 6px;
  color: #DC2626;
  font-size: 0.875rem;
}
.wizard-error.show { display: block; }

/* Reviews carousel — horizontal scroll-snap, no JS framework. */
.reviews-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(290px, 360px);
  gap: 1.25rem;
  overflow-x: auto;
  padding: 1rem 1px 1.5rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
}
.reviews-rail::-webkit-scrollbar { height: 6px; }
.reviews-rail::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }
.review-card {
  scroll-snap-align: start;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.review-stars {
  color: var(--accent);
  letter-spacing: -0.05em;
  font-size: 1rem;
}
.review-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.0625rem;
  line-height: 1.5;
  color: var(--fg);
  flex: 1;
}
.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.8125rem;
}
.review-author { font-weight: 600; }
.review-date { color: var(--muted); }

/* Pricing seasons table — replaces zone tag list. */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0 1rem;
  font-size: 0.9375rem;
}
.pricing-table th,
.pricing-table td {
  padding: 0.875rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.pricing-table th {
  font-family: 'Figtree', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--muted);
}
.pricing-table td.price {
  font-family: 'Playfair Display', serif;
  font-size: 1.0625rem;
  color: var(--accent);
  text-align: right;
  white-space: nowrap;
}
.pricing-table td.months {
  color: var(--muted);
  font-size: 0.875rem;
}
.pricing-note {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(128, 128, 128, 0.06);
  border-left: 3px solid var(--accent);
  border-radius: 0 6px 6px 0;
}

/* Zone simple list — minimal "zone code + name" rows. */
.zone-simple-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.5rem 1.5rem;
  font-size: 1rem;
}
.zone-simple-list li {
  padding: 0.375rem 0;
  color: var(--fg);
}
.zone-simple-list li strong {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  color: var(--accent);
  margin-right: 0.625rem;
}

/* Zone cards — coloured per zone, expand on click for place list. */
.zone-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.zone-card {
  border-radius: 12px;
  padding: 1.25rem 1.25rem 1.5rem;
  border: 1px solid;
  background: rgba(255, 255, 255, 0.02);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.zone-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}
.zone-card-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 0.875rem;
}
.zone-card-code {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
}
.zone-card-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--muted);
  margin-top: 0.25rem;
}
.zone-card-airport {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  margin-left: auto;
}
.zone-card-places {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.875rem;
  color: var(--fg);
  display: grid;
  gap: 0.375rem;
}
.zone-card-places li {
  padding-left: 0.875rem;
  position: relative;
}
.zone-card-places li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.zone-card-places li.more {
  cursor: pointer;
  color: var(--muted);
  font-style: italic;
  font-size: 0.8125rem;
  padding-left: 0;
}
.zone-card-places li.more:hover { color: var(--fg); }

/* Per-zone tonal accents (work on all themes via fixed-hue rgba). */
.zone-card.z1 { border-color: #D4A85780; background: rgba(212, 168, 87, 0.08); }
.zone-card.z1 .zone-card-code { color: #D4A857; }
.zone-card.z1 .zone-card-airport { background: rgba(212, 168, 87, 0.2); color: #D4A857; }

.zone-card.z2 { border-color: #10B98180; background: rgba(16, 185, 129, 0.08); }
.zone-card.z2 .zone-card-code { color: #10B981; }

.zone-card.z3 { border-color: #3B82F680; background: rgba(59, 130, 246, 0.08); }
.zone-card.z3 .zone-card-code { color: #3B82F6; }

.zone-card.z4 { border-color: #EF444480; background: rgba(239, 68, 68, 0.08); }
.zone-card.z4 .zone-card-code { color: #EF4444; }

/* Service zones */
.zone-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.zone-tag {
  padding: 0.375rem 0.75rem;
  background: rgba(128, 128, 128, 0.1);
  border-radius: 999px;
  font-size: 0.875rem;
  color: var(--fg);
}

/* Trust signals */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.trust-item { display: flex; align-items: center; gap: 0.375rem; }
.trust-stars { color: var(--accent); letter-spacing: -0.05em; }

/* Sticky mobile bottom bar */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg);
  border-top: 1px solid rgba(128, 128, 128, 0.2);
  padding: 0.625rem;
  gap: 0.5rem;
  z-index: 100;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
}
.mobile-cta a {
  flex: 1;
  text-align: center;
  padding: 0.75rem 0.4rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.78rem;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mobile-cta-email {
  background: rgba(128, 128, 128, 0.1);
  color: var(--fg);
}
.mobile-cta-whatsapp {
  background: rgba(37, 211, 102, 0.12);
  color: #25D366;
}
.mobile-cta-call {
  background: rgba(128, 128, 128, 0.1);
  color: var(--fg);
}
.mobile-cta-book {
  background: var(--accent);
  color: var(--bg);
  flex: 1.4;
  font-weight: 700;
}

@media (max-width: 768px) {
  .mobile-cta { display: flex; }
  body { padding-bottom: 4.5rem; } /* leave room for sticky bar */
}

/* Footer — luxury 3-column grid with brand mark, contact, ORYX credit. */
.site-footer {
  margin-top: 5rem;
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.875rem;
}
.site-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr auto;
  gap: 2.5rem;
  align-items: start;
}
.site-footer-block { display: flex; flex-direction: column; gap: 0.5rem; }
.site-footer-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-family: 'Figtree', sans-serif;
  font-weight: 600;
  margin-bottom: 0.375rem;
}
.site-footer-brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--fg);
  letter-spacing: -0.01em;
  margin-bottom: 0.25rem;
}
.site-footer-tagline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.5;
}
.site-footer-contact a {
  color: var(--fg);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 150ms;
}
.site-footer-contact a:hover { border-color: var(--accent); }
.site-footer-license {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.5rem;
}
.site-footer-license code {
  background: rgba(128, 128, 128, 0.12);
  padding: 0.125rem 0.375rem;
  border-radius: 3px;
  font-family: 'SF Mono', Menlo, monospace;
  font-size: 0.8125em;
  color: var(--fg);
}
.site-footer-credit {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  text-align: right;
  transition: opacity 0.2s ease;
}
a.site-footer-credit:hover { opacity: 0.7; }
a.site-footer-credit:hover .site-footer-credit-logo { text-decoration: underline; }
.site-footer-credit-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  opacity: 0.65;
}
.site-footer-credit-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--accent);
}
.site-footer-bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  opacity: 0.65;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (max-width: 720px) {
  .site-footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .site-footer-credit {
    align-items: flex-start;
    text-align: left;
  }
}

/* Subtle animations — Ken Burns hero zoom, fade-in-up on scroll. */
@keyframes ken-burns {
  0%   { transform: scale(1) translate3d(0, 0, 0); }
  100% { transform: scale(1.08) translate3d(-1%, -1.5%, 0); }
}
.hero-luxury {
  /* Pseudo-element wraps bg image so we can animate without affecting overlay. */
  background-image: none;
}
.hero-luxury::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg, none);
  background-size: cover;
  background-position: center;
  z-index: -2;
  animation: ken-burns 24s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in {
  opacity: 0;
}
.fade-in.in-view {
  animation: fade-up 800ms cubic-bezier(0.4, 0, 0.2, 1) both;
}

/* Reduced motion override — disable Ken Burns + scroll fades. */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  .hero-luxury::after {
    animation: none;
  }
  .fade-in,
  .fade-in.in-view {
    opacity: 1;
    animation: none;
  }
}
