/* ============================================================
   CURATED DESTINATIONS — Brand Stylesheet
   Palette: Ink #0D0D0D · Charcoal #1B1B1B · Warm White #FAFAF8
            Gold #D4AF37 · Gold Soft #E4C766 · Bronze #9C7A3C
   Display: Fraunces (serif, editorial) · Body: Inter
   Signature motif: the gold "horizon line" — a thin rule that
   splits every section, echoing the desert horizon at sunset.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --ink: #0d0d0d;
  --charcoal: #1b1b1b;
  --charcoal-2: #232323;
  --warm-white: #faf9f6;
  --paper: #ffffff;
  --ink-text: #1a1a1a;
  --gold: #d4af37;
  --gold-soft: #e4c766;
  --bronze: #9c7a3c;
  --muted-dark: #b7b3ab;
  --muted-light: #6b6b6b;
  --hair-dark: #333230;
  --hair-light: #e4e0d6;

  --display: 'Fraunces', Georgia, serif;
  --body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-w: 1180px;
  --edge: clamp(20px, 5vw, 64px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink-text);
  background: var(--warm-white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 500; margin: 0; line-height: 1.12; letter-spacing: -0.01em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

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

.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--edge); }

.eyebrow {
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- Horizon rule (signature divider) ---------- */
.horizon {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 18%, var(--gold) 82%, transparent);
  border: 0;
  margin: 0;
  opacity: 0.85;
}
.horizon.tight { max-width: 140px; margin-inline: 0; opacity: 1; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13,13,13,0.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212,175,55,0.18);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img { height: 32px; width: auto; }
.brand span {
  font-family: var(--display);
  color: #fff;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: clamp(18px, 3vw, 40px);
}
.nav-links a {
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--muted-dark);
  transition: color 0.2s ease;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--ink) !important;
  font-weight: 600;
  font-size: 0.82rem;
  padding: 10px 20px;
  border-radius: 2px;
  letter-spacing: 0.02em;
  transition: background 0.2s ease;
}
.nav-cta:hover { background: var(--gold-soft); }
.nav-toggle { display: none; }

@media (max-width: 860px) {
  .nav-links {
    position: fixed; inset: 78px 0 0 0; background: var(--ink);
    flex-direction: column; padding: 32px var(--edge); gap: 24px;
    opacity: 0; visibility: hidden; pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
  }
  .nav-links.open {
    opacity: 1; visibility: visible; pointer-events: auto;
    transform: translateY(0);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  .nav-toggle { display: block; background: none; border: 0; color: #fff; font-size: 1.6rem; }
  .nav-cta { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.35) 0%, rgba(10,10,10,0.35) 40%, rgba(8,8,8,0.92) 100%);
  z-index: 0;
}
.hero > * { position: relative; z-index: 1; }

/* Branded (logo-led, no photo) hero variant — used on the homepage */
.hero.hero-branded {
  background: radial-gradient(ellipse at 30% 20%, #1c1a14 0%, var(--ink) 55%, #000 100%);
}
.hero.hero-branded::before { content: none; }
.hero-logo-mark {
  position: absolute;
  top: 6%;
  right: -10%;
  width: 62%;
  max-width: 640px;
  opacity: 0.16;
  filter: brightness(1.3);
  z-index: 0;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(48px, 8vw, 96px);
  padding-top: 160px;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  color: #fff;
  max-width: 14ch;
  margin-top: 18px;
}
.hero h1 em { font-style: italic; color: var(--gold-soft); }
.hero p.lede {
  margin-top: 22px;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--muted-dark);
  max-width: 46ch;
}
.hero-ctas { margin-top: 36px; display: flex; gap: 16px; flex-wrap: wrap; }

.hero.small { min-height: 52vh; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 2px;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-soft); transform: translateY(-1px); }
.btn-outline { border-color: rgba(255,255,255,0.4); color: #fff; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline.dark { border-color: rgba(20,20,20,0.3); color: var(--ink-text); }
.btn-outline.dark:hover { border-color: var(--gold); color: var(--bronze); }

/* ---------- Sections ---------- */
section { padding: clamp(64px, 10vw, 128px) 0; }
.section-dark { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.section-charcoal { background: var(--charcoal); color: #fff; position: relative; overflow: hidden; }
.section-paper { background: var(--paper); }
.section-dark .wrap, .section-charcoal .wrap { position: relative; z-index: 1; }

/* Reusable brand watermark — large, faint logo mark as a decorative backdrop */
.brand-watermark {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.06;
  filter: brightness(1.3);
  width: 46%;
  max-width: 560px;
  top: 50%;
  right: -6%;
  transform: translateY(-50%);
}
.brand-watermark.left { right: auto; left: -8%; }

.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin-top: 14px; }
.section-head p { margin-top: 16px; color: var(--muted-light); font-size: 1.03rem; }
.section-dark .section-head p, .section-charcoal .section-head p { color: var(--muted-dark); }

/* ---------- Split layout ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media img { border-radius: 2px; width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
}

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 960px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .card-grid { grid-template-columns: 1fr; } }

.card {
  background: var(--charcoal-2);
  border: 1px solid var(--hair-dark);
  padding: 34px 28px;
  border-radius: 3px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--gold); }
.card .tier-tag { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.card h3 { color: #fff; font-size: 1.4rem; margin-top: 10px; }
.card .price { font-family: var(--display); font-style: italic; color: var(--gold-soft); font-size: 1.3rem; margin-top: 14px; letter-spacing: 0.01em; }
.card .price small { font-family: var(--body); color: var(--muted-dark); font-size: 0.78rem; font-weight: 500; }
.card p.desc { color: var(--muted-dark); font-size: 0.92rem; margin-top: 12px; }

.card.light { background: var(--paper); border: 1px solid var(--hair-light); }
.card.light h3 { color: var(--ink-text); }
.card.light p.desc { color: var(--muted-light); }

/* ---------- Feature list ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 48px;
}
@media (max-width: 700px) { .feature-grid { grid-template-columns: 1fr; } }
.feature {
  display: flex;
  gap: 18px;
}
.feature .mark {
  flex: none;
  width: 46px; height: 46px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  color: var(--gold);
  font-size: 1.1rem;
}
.feature h4 { font-size: 1.08rem; }
.feature p { margin-top: 8px; color: var(--muted-light); font-size: 0.94rem; }
.section-dark .feature p, .section-charcoal .feature p { color: var(--muted-dark); }

/* ---------- Stat strip ---------- */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  border-top: 1px solid var(--hair-dark);
  border-bottom: 1px solid var(--hair-dark);
  padding: 40px 0;
}
@media (max-width: 700px) { .stat-strip { grid-template-columns: 1fr; gap: 24px; } }
.stat-strip .stat-num { font-family: var(--display); font-size: 2.1rem; color: var(--gold); }
.stat-strip .stat-label { font-size: 0.82rem; color: var(--muted-dark); margin-top: 6px; letter-spacing: 0.02em; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--paper);
  border: 1px solid var(--hair-light);
  padding: clamp(28px, 4vw, 48px);
  border-radius: 3px;
}
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 0.82rem; font-weight: 600; margin-bottom: 8px; color: var(--ink-text); }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--hair-light);
  border-radius: 2px;
  font-family: var(--body);
  font-size: 0.95rem;
  background: #fff;
  color: var(--ink-text);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.form-note { font-size: 0.82rem; color: var(--muted-light); margin-top: 16px; }

/* ---------- Footer ---------- */
footer {
  background: var(--ink);
  color: var(--muted-dark);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
}
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }
.footer-grid h5 { color: #fff; font-family: var(--body); font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid ul li a { color: var(--muted-dark); font-size: 0.9rem; transition: color 0.2s; }
.footer-grid ul li a:hover { color: var(--gold); }
.footer-brand img { height: 30px; margin-bottom: 14px; }
.footer-brand p { font-size: 0.88rem; max-width: 32ch; color: var(--muted-dark); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  padding-top: 24px; border-top: 1px solid var(--hair-dark);
  font-size: 0.78rem;
}
.social-row { display: flex; gap: 14px; }
.social-row a { width: 36px; height: 36px; border: 1px solid var(--hair-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.78rem; transition: border-color 0.2s, color 0.2s; }
.social-row a:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- Image Reel / Carousel ---------- */
.reel {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 2px;
  overflow: hidden;
  background: var(--charcoal);
}
.reel-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
}
.reel-slide.active { opacity: 1; z-index: 1; }
.reel-slide img { width: 100%; height: 100%; object-fit: cover; }
.reel-dots {
  position: absolute; bottom: 16px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 8px;
  z-index: 2;
}
.reel-dots span {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transition: background 0.3s ease, transform 0.3s ease;
}
.reel-dots span.active { background: var(--gold); transform: scale(1.25); }

/* ---------- Fleet photo cards ---------- */
.fleet-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}
@media (max-width: 860px) { .fleet-photo-grid { grid-template-columns: repeat(2, 1fr); } }
.fleet-photo {
  aspect-ratio: 3/4;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--hair-dark);
}
.fleet-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.fleet-photo:hover img { transform: scale(1.06); }
.tag-pill {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 20px;
  font-weight: 600;
}

/* ---------- Photo cards (experience categories) ---------- */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 700px) { .photo-grid { grid-template-columns: 1fr; } }
.photo-card {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--charcoal);
}
.photo-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.photo-card:hover img { transform: scale(1.05); }
.photo-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0) 40%, rgba(8,8,8,0.92) 100%);
}
.photo-card .photo-card-body {
  position: absolute; left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 22px 24px;
}
.photo-card h3 { color: #fff; font-size: 1.25rem; }
.photo-card p.desc { color: var(--muted-dark); font-size: 0.88rem; margin-top: 8px; }
.photo-card .price-tag { display: inline-block; margin-top: 10px; font-family: var(--display); font-style: italic; color: var(--gold-soft); font-size: 0.95rem; }

.photo-card.placeholder {
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  border: 1px dashed rgba(156,122,60,0.5);
  background: #fbf9f4;
}
.photo-card.placeholder img.mark { width: 56px; height: auto; opacity: 0.55; margin-bottom: 14px; }
.photo-card.placeholder .photo-card-body { position: static; text-align: center; padding: 0 24px 24px; }
.photo-card.placeholder::after { display: none; }
.placeholder-note {
  background: #fff8e6;
  border: 1px dashed var(--gold);
  color: #6b5a1f;
  font-size: 0.82rem;
  padding: 10px 14px;
  border-radius: 3px;
  margin-top: 10px;
}
.center { text-align: center; margin-inline: auto; }
