/* ============================================================
   Airport Limo Hamilton — Premium Dark Luxury Theme
   Fonts: Bodoni Moda (display) / Jost (body)
   Palette: warm near-black + champagne gold
   ============================================================ */

:root {
  --bg: #0a0c0d;
  --bg-2: #101315;
  --bg-3: #151a1c;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-strong: rgba(255, 255, 255, 0.07);
  --glass-border: rgba(92, 230, 245, 0.16);
  --glass-border-soft: rgba(255, 255, 255, 0.09);
  --gold: #0fd9ed;
  --gold-bright: #5ce6f5;
  --gold-deep: #0a9fb0;
  --gold-grad: linear-gradient(135deg, #5ce6f5 0%, #0fd9ed 55%, #0a9fb0 100%);
  --text: #eef2f3;
  --text-muted: #a9b4b6;
  --text-faint: #7f8b8d;
  --on-gold: #062a2e;
  --danger: #e05252;
  --success: #6fbf82;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow-lg: 0 24px 60px -18px rgba(0, 0, 0, 0.65);
  --shadow-gold: 0 10px 34px -10px rgba(15, 217, 237, 0.35);
  --transition: 220ms cubic-bezier(0.33, 1, 0.68, 1);
  --transition-slow: 480ms cubic-bezier(0.33, 1, 0.68, 1);
  --container: 1180px;
  --font-display: "Bodoni Moda", "Didot", "Playfair Display", serif;
  --font-body: "Jost", "Segoe UI", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(1100px 500px at 85% -10%, rgba(15, 217, 237, 0.09), transparent 60%),
    radial-gradient(900px 600px at -10% 30%, rgba(10, 130, 145, 0.07), transparent 55%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-bright); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.4rem, 5.4vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }

p { color: var(--text-muted); }

::selection { background: rgba(15, 217, 237, 0.35); color: #fff; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Layout utilities ---------- */
.container {
  width: min(var(--container), 100% - 2.5rem);
  margin-inline: auto;
}

.section { padding: clamp(4rem, 8vw, 6.5rem) 0; }

.section-head { max-width: 640px; margin: 0 auto 3rem; text-align: center; }
.section-head.left { margin-inline: 0; text-align: left; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.kicker::before, .kicker::after {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.kicker::after { background: linear-gradient(90deg, var(--gold), transparent); }
.section-head.left .kicker::before { display: none; }

.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 2rem;
  min-height: 48px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition),
              background-color var(--transition), border-color var(--transition), color var(--transition);
}
.btn svg { width: 18px; height: 18px; flex: none; }

.btn-gold {
  background: var(--gold-grad);
  color: var(--on-gold);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -10px rgba(15, 217, 237, 0.5);
  color: var(--on-gold);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--glass-border);
  color: var(--text);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
  transform: translateY(-2px);
}

.btn:active { transform: translateY(0) scale(0.98); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  transition: background-color var(--transition-slow), box-shadow var(--transition-slow),
              border-color var(--transition-slow);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10, 12, 13, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--glass-border-soft);
  box-shadow: 0 12px 40px -20px rgba(0, 0, 0, 0.8);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
}
.brand:hover { color: var(--text); }
.brand-mark {
  width: 44px;
  height: 44px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--gold-grad);
  box-shadow: var(--shadow-gold);
}
.brand-mark svg { width: 26px; height: 26px; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.1;
}
.brand-name span { display: block; }
.brand-tag {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  position: relative;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.4rem 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: var(--gold-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-bright); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta { display: flex; align-items: center; gap: 1rem; }
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
  white-space: nowrap;
}
.nav-phone svg { width: 17px; height: 17px; color: var(--gold); }
.nav-cta .btn { padding: 0.65rem 1.4rem; min-height: 44px; font-size: 0.82rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border-soft);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.nav-toggle span {
  height: 2px;
  width: 100%;
  background: var(--gold);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1023px) {
  .nav-toggle { display: flex; }
  .nav-phone { display: none; }
  .nav-links {
    position: fixed;
    top: 76px;
    left: 1rem;
    right: 1rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem;
    background: rgba(12, 16, 17, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  }
  .nav-links.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-links a { display: block; padding: 0.9rem 1rem; border-radius: var(--radius-sm); }
  .nav-links a::after { display: none; }
  .nav-links a:hover, .nav-links a.active { background: rgba(15, 217, 237, 0.08); }
}

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 8.5rem 0 9rem;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(900px 480px at 78% 18%, rgba(15, 217, 237, 0.16), transparent 62%),
    radial-gradient(700px 500px at 12% 85%, rgba(10, 159, 176, 0.1), transparent 60%),
    linear-gradient(100deg, rgba(10, 12, 13, 0.97) 0%, rgba(10, 12, 13, 0.9) 42%, rgba(11, 14, 15, 0.55) 100%);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 180px;
  z-index: -1;
  background: linear-gradient(180deg, transparent, var(--bg));
}
.hero-ornament {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(92, 230, 245, 0.12);
  border-radius: 50%;
  pointer-events: none;
}
.hero-ornament.one { width: 560px; height: 560px; top: -180px; right: -120px; }
.hero-ornament.two { width: 380px; height: 380px; top: -80px; right: 40px; border-style: dashed; opacity: 0.6; }

.hero-inner { max-width: 780px; }
.hero .kicker::before { display: none; }
.hero h1 { margin-bottom: 1.4rem; }
.hero h1 em {
  font-style: italic;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  font-weight: 300;
  max-width: 580px;
  margin-bottom: 2.4rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3.5rem; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--glass-border-soft);
  border: 1px solid var(--glass-border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 820px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.hero-stats > div {
  background: rgba(14, 18, 19, 0.72);
  padding: 1.3rem 1.2rem;
  text-align: center;
}
.hero-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--gold-bright);
  margin-bottom: 0.15rem;
}
.hero-stats span {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
}
@media (max-width: 720px) {
  .hero { padding-top: 7.5rem; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  padding: 10rem 0 5rem;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(700px 340px at 50% 0%, rgba(15, 217, 237, 0.14), transparent 65%),
    linear-gradient(180deg, #0d1112 0%, var(--bg) 100%);
}
.page-hero .hero-media { z-index: -2; }
.page-hero.has-media::before {
  background:
    radial-gradient(700px 340px at 50% 0%, rgba(15, 217, 237, 0.14), transparent 65%),
    linear-gradient(180deg, rgba(12, 15, 16, 0.84) 0%, rgba(10, 12, 13, 0.97) 100%);
}
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { max-width: 620px; margin: 0 auto; font-weight: 300; font-size: 1.08rem; }
.breadcrumb {
  display: inline-flex;
  gap: 0.6rem;
  align-items: center;
  margin-top: 1.6rem;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.breadcrumb a { color: var(--text-faint); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--gold); }

/* ---------- Glass cards ---------- */
.glass-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--glass-border-soft);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform var(--transition-slow), border-color var(--transition-slow),
              background-color var(--transition-slow), box-shadow var(--transition-slow);
}
.glass-card:hover {
  transform: translateY(-6px);
  border-color: var(--glass-border);
  background: var(--surface-strong);
  box-shadow: var(--shadow-lg);
}
.glass-card h3 { margin: 1.1rem 0 0.6rem; }
.glass-card p { font-size: 0.95rem; }

.icon-chip {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(15, 217, 237, 0.1);
  border: 1px solid rgba(15, 217, 237, 0.22);
  color: var(--gold-bright);
}
.icon-chip svg { width: 24px; height: 24px; }

/* ---------- Airport cards ---------- */
.airport-card { text-align: left; }
.airport-code {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.airport-card h3 { margin: 0.4rem 0 0.4rem; font-size: 1.12rem; }
.airport-card .dist {
  display: inline-block;
  margin-top: 0.9rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* ---------- Fleet cards ---------- */
.fleet-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}
.fleet-visual {
  position: relative;
  padding: 2.6rem 1.8rem 1.6rem;
  background:
    radial-gradient(320px 150px at 50% 100%, rgba(15, 217, 237, 0.14), transparent 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
  border-bottom: 1px solid var(--glass-border-soft);
}
.fleet-visual svg { width: 100%; height: auto; max-height: 120px; margin-inline: auto; }
.fleet-visual.photo { padding: 0; overflow: hidden; background: #000; }
.fleet-visual.photo img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.fleet-card:hover .fleet-visual.photo img { transform: scale(1.045); }
.fleet-body { padding: 1.6rem 1.75rem 2rem; display: flex; flex-direction: column; flex: 1; }
.fleet-body h3 { margin: 0 0 0.35rem; }
.fleet-type {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}
.fleet-specs {
  display: flex;
  gap: 1.4rem;
  margin: 1rem 0 1.1rem;
  padding: 0.85rem 0;
  border-block: 1px solid var(--glass-border-soft);
}
.fleet-specs span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.fleet-specs svg { width: 17px; height: 17px; color: var(--gold); }
.fleet-features { list-style: none; margin-bottom: 1.5rem; }
.fleet-features li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}
.fleet-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-grad);
}
.fleet-body .btn { margin-top: auto; align-self: flex-start; }

/* ---------- Steps ---------- */
.steps { counter-reset: step; }
.step-card { text-align: center; padding-top: 2.6rem; }
.step-num {
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-grad);
  color: var(--on-gold);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}
.steps .grid { margin-top: 3rem; row-gap: 3rem; }

/* ---------- Testimonials ---------- */
.quote-card { display: flex; flex-direction: column; }
.quote-mark {
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.65;
}
.quote-card blockquote {
  font-size: 0.98rem;
  font-weight: 300;
  color: var(--text-muted);
  margin: 0.4rem 0 1.4rem;
  flex: 1;
}
.quote-who { display: flex; align-items: center; gap: 0.9rem; }
.quote-avatar {
  width: 44px;
  height: 44px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(15, 217, 237, 0.14);
  border: 1px solid rgba(15, 217, 237, 0.3);
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold-bright);
}
.quote-who strong { display: block; font-size: 0.95rem; color: var(--text); }
.quote-who span { font-size: 0.8rem; color: var(--text-faint); }
.stars { display: inline-flex; gap: 3px; margin-bottom: 0.75rem; color: var(--gold-bright); }
.stars svg { width: 15px; height: 15px; }

/* ---------- Service area ---------- */
.area-tags { display: flex; flex-wrap: wrap; gap: 0.7rem; justify-content: center; }
.area-tags span {
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--glass-border-soft);
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: border-color var(--transition), color var(--transition);
}
.area-tags span:hover { border-color: var(--gold); color: var(--gold-bright); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin-inline: auto; display: grid; gap: 0.9rem; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--glass-border-soft);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--glass-border); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--text);
  text-align: left;
}
.faq-q svg {
  width: 18px;
  height: 18px;
  flex: none;
  color: var(--gold);
  transition: transform var(--transition);
}
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--transition-slow);
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p { padding: 0 1.4rem 1.3rem; font-size: 0.95rem; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid var(--glass-border);
  padding: clamp(2.5rem, 6vw, 4.5rem);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(560px 260px at 50% 0%, rgba(15, 217, 237, 0.2), transparent 70%),
    linear-gradient(180deg, #101719, #0c0f10);
}
.cta-band h2 { margin-bottom: 0.9rem; }
.cta-band p { max-width: 520px; margin: 0 auto 2rem; font-weight: 300; }
.cta-band .hero-actions { justify-content: center; margin-bottom: 0; }

/* ---------- About page ---------- */
.about-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
@media (max-width: 900px) { .about-split { grid-template-columns: 1fr; } }
.about-split .section-head { margin-bottom: 1.4rem; }
.about-split p + p { margin-top: 1rem; }
.about-panel {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  background:
    radial-gradient(360px 240px at 70% 20%, rgba(15, 217, 237, 0.16), transparent 65%),
    linear-gradient(160deg, #10171a, #0b0e0f);
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--shadow-lg);
}
.about-photo {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--glass-border-soft);
  margin-bottom: 1.5rem;
}
.about-photo img { width: 100%; height: 250px; object-fit: cover; }
.about-panel .stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.about-panel .stat-row div { padding: 1.2rem; border: 1px solid var(--glass-border-soft); border-radius: var(--radius-sm); background: rgba(255,255,255,0.03); }
.about-panel strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold-bright);
}
.about-panel span { font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); }
.checklist { list-style: none; margin-top: 1.6rem; }
.checklist li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
}
.checklist svg { width: 20px; height: 20px; flex: none; color: var(--gold); margin-top: 3px; }

/* ---------- Forms ---------- */
.form-shell {
  max-width: 860px;
  margin-inline: auto;
  background: var(--surface);
  border: 1px solid var(--glass-border-soft);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(1.75rem, 4vw, 3rem);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.form-section-title {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text);
  margin: 2.2rem 0 1.2rem;
}
.form-section-title:first-of-type { margin-top: 0; }
.form-section-title svg { width: 20px; height: 20px; color: var(--gold); }
.form-section-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--glass-border), transparent);
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.25rem; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.45rem;
}
.field label .req { color: var(--gold); }
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--glass-border-soft);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.field textarea { min-height: 120px; resize: vertical; }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230fd9ed' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.6rem;
  cursor: pointer;
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-faint); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(15, 217, 237, 0.18);
}
.field input:invalid { box-shadow: none; }
.field .error-msg {
  display: none;
  margin-top: 0.4rem;
  font-size: 0.82rem;
  color: var(--danger);
}
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--danger); }
.field.invalid .error-msg { display: block; }
.field .hint { margin-top: 0.4rem; font-size: 0.82rem; color: var(--text-faint); }

input[type="date"], input[type="time"] { color-scheme: dark; }

/* Trip type segmented control */
.segmented {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
  margin-bottom: 1.6rem;
}
@media (max-width: 720px) { .segmented { grid-template-columns: repeat(2, 1fr); } }
.segmented input { position: absolute; opacity: 0; pointer-events: none; }
.segmented label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--glass-border-soft);
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.3);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  text-align: center;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), background-color var(--transition);
}
.segmented label svg { width: 18px; height: 18px; flex: none; }
.segmented input:checked + label {
  border-color: var(--gold);
  background: rgba(15, 217, 237, 0.1);
  color: var(--gold-bright);
}
.segmented input:focus-visible + label { outline: 2px solid var(--gold); outline-offset: 2px; }

.form-actions { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.form-note { font-size: 0.85rem; color: var(--text-faint); }

/* Booking confirmation panel */
.booking-summary {
  display: none;
  margin-top: 2rem;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 1.8rem;
  background: rgba(15, 217, 237, 0.06);
}
.booking-summary.visible { display: block; }
.booking-summary h3 { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem; }
.booking-summary h3 svg { width: 22px; height: 22px; color: var(--success); }
.booking-summary dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.45rem 1.4rem;
  margin-bottom: 1.4rem;
}
.booking-summary dt {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
  padding-top: 2px;
}
.booking-summary dd { color: var(--text); }

/* ---------- Contact page ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; } }
.contact-cards { display: grid; gap: 1rem; }
.contact-card { display: flex; gap: 1.1rem; align-items: flex-start; padding: 1.5rem; }
.contact-card h3 { margin: 0 0 0.3rem; font-size: 1.05rem; font-family: var(--font-body); font-weight: 600; }
.contact-card p, .contact-card a { font-size: 0.95rem; }
.contact-card a.big {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold-bright);
}
.map-frame {
  border: 1px solid var(--glass-border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  height: 340px;
  margin-top: 1rem;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(0.5) contrast(1.05); }

/* ---------- Footer ---------- */
.site-footer {
  margin-top: 4rem;
  border-top: 1px solid var(--glass-border-soft);
  background: linear-gradient(180deg, transparent, rgba(15, 217, 237, 0.04));
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 0.65rem; }
.footer-grid a { color: var(--text-muted); font-size: 0.95rem; }
.footer-grid a:hover { color: var(--gold-bright); }
.footer-brand p { margin-top: 1rem; font-size: 0.92rem; max-width: 300px; }
.footer-contact li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.footer-contact svg { width: 18px; height: 18px; flex: none; color: var(--gold); margin-top: 3px; }
.footer-bottom {
  border-top: 1px solid var(--glass-border-soft);
  padding: 1.4rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-faint);
}

/* ---------- Blog cards (home, fed by /blog/ WordPress) ---------- */
.blog-card { overflow: hidden; padding: 0; display: flex; flex-direction: column; }
.blog-thumb {
  display: block;
  height: 190px;
  overflow: hidden;
  background: linear-gradient(160deg, #151a1c, #0c0f10);
  border-bottom: 1px solid var(--glass-border-soft);
}
.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.blog-card:hover .blog-thumb img { transform: scale(1.045); }
.blog-body { padding: 1.5rem 1.6rem 1.8rem; display: flex; flex-direction: column; flex: 1; }
.blog-body time {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.blog-body h3 { margin: 0 0 0.6rem; font-size: 1.15rem; line-height: 1.3; }
.blog-body h3 a { color: var(--text); }
.blog-body h3 a:hover { color: var(--gold-bright); }
.blog-body p { font-size: 0.92rem; flex: 1; }
.blog-body .read-more {
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------- Legal pages (privacy, terms) ---------- */
.legal h2 {
  font-size: 1.35rem;
  margin: 2.2rem 0 0.7rem;
}
.legal p { margin-bottom: 0.9rem; }
.legal ul { margin: 0.4rem 0 1rem 1.4rem; color: var(--text-muted); }
.legal li { margin-bottom: 0.4rem; }
.footer-bottom a { color: var(--text-faint); }
.footer-bottom a:hover { color: var(--gold-bright); }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.33, 1, 0.68, 1), transform 0.7s cubic-bezier(0.33, 1, 0.68, 1);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }

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

/* ---------- Misc ---------- */
.skip-link {
  position: absolute;
  top: -48px;
  left: 1rem;
  z-index: 2000;
  padding: 0.7rem 1.2rem;
  background: var(--gold);
  color: var(--on-gold);
  font-weight: 600;
  border-radius: 0 0 10px 10px;
  transition: top var(--transition);
}
.skip-link:focus { top: 0; }

.text-gold { color: var(--gold-bright); }
