/* ==========================================================
   Sawai Trails — design tokens
   Warm Rajasthani heritage: sandstone + terracotta + Jodhpur
   indigo + marigold, with a departure-board signature motif.
   ========================================================== */
:root{
  --sand:        #F3E6D2;   /* base background — warm sandstone */
  --sand-deep:   #E8D3B4;   /* slightly deeper sand for tints   */
  --clay:        #E8CBAE;   /* card / support surface           */
  --ink:         #2B1C13;   /* primary text — warm umber-black  */
  --ink-soft:    #5C4A3B;   /* secondary text                   */
  --terracotta:  #BE4B34;   /* primary accent / CTAs            */
  --terracotta-d:#9C3A26;   /* hover state                      */
  --indigo:      #24476B;   /* secondary accent — Jodhpur blue  */
  --indigo-d:    #16304E;   /* deep panel background            */
  --marigold:    #E7A427;   /* highlight / prices               */
  --cream:       #F8F1E4;   /* lightest surface, on dark panels */

  --font-display: 'Rozha One', 'Georgia', serif;
  --font-script:  'Kalam', cursive;
  --font-body:    'Karla', -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  --radius: 14px;
  --radius-sm: 8px;
  --shadow-card: 0 6px 24px -8px rgba(43,28,19,0.25);
  --wrap: 1180px;
}

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

body{
  margin: 0;
  background: var(--sand);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3{
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.12;
  margin: 0 0 0.5em;
  color: var(--ink);
  letter-spacing: 0.2px;
}
h1{ font-size: clamp(2.6rem, 5vw, 4.2rem); }
h2{ font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
h3{ font-size: 1.25rem; margin-bottom: 0.35em; }
p{ margin: 0 0 1em; color: var(--ink-soft); }
a{ color: inherit; }
img{ max-width: 100%; display: block; }
code{ font-family: var(--font-mono); font-size: 0.85em; background: var(--clay); padding: 0.1em 0.4em; border-radius: 4px; }

.wrap{ max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.wrap-narrow{ max-width: 760px; }

.skip-link{
  position: absolute; left: -999px; top: 0; background: var(--ink); color: var(--cream);
  padding: 10px 16px; z-index: 200; border-radius: 0 0 8px 0;
}
.skip-link:focus{ left: 0; }

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

.eyebrow{
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--terracotta);
  font-weight: 600;
  margin: 0 0 0.9em;
}
.eyebrow-light{ color: var(--marigold); }
.h-light{ color: var(--cream); }
.section-lede{ max-width: 56ch; font-size: 1.05rem; }
.section-lede.light{ color: #D9CBB8; }

/* ---------- buttons ---------- */
.btn{
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700; font-size: 0.95rem;
  padding: 12px 20px; border-radius: 999px; text-decoration: none;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-1px); }
.btn-primary{ background: var(--terracotta); color: var(--cream); }
.btn-primary:hover{ background: var(--terracotta-d); box-shadow: 0 8px 20px -8px rgba(190,75,52,0.6); }
.btn-outline{ background: transparent; color: var(--cream); border-color: rgba(248,241,228,0.55); }
.btn-outline:hover{ background: rgba(248,241,228,0.12); }
.btn-ghost{ background: transparent; color: var(--ink); border-color: rgba(43,28,19,0.2); }
.btn-ghost:hover{ background: rgba(43,28,19,0.06); }
.btn-lg{ padding: 15px 28px; font-size: 1.02rem; }

/* ==========================================================
   Header
   ========================================================== */
.site-header{
  position: sticky; top: 0; z-index: 100;
  background: rgba(243,230,210,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(43,28,19,0.1);
}
.header-inner{
  display: flex; align-items: center; gap: 24px;
  padding-top: 14px; padding-bottom: 14px;
}
.brand{ display: flex; align-items: center; gap: 10px; text-decoration: none; margin-right: auto; }
.brand-mark{ flex-shrink: 0; }
.brand-text{ display: flex; flex-direction: column; line-height: 1.15; }
.brand-name{ font-family: var(--font-display); font-size: 1.3rem; color: var(--ink); }
.brand-sub{ font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }

.main-nav{ display: flex; gap: 19px; }
.main-nav a{
  text-decoration: none; font-weight: 600; font-size: 0.88rem; color: var(--ink-soft);
  position: relative; padding: 4px 0; white-space: nowrap;
}
.main-nav a:hover{ color: var(--terracotta); }
.main-nav a::after{
  content:""; position:absolute; left:0; right:0; bottom:-3px; height:2px;
  background: var(--terracotta); transform: scaleX(0); transform-origin: left;
  transition: transform 0.2s ease;
}
.main-nav a:hover::after{ transform: scaleX(1); }

.header-ctas{ display: flex; gap: 10px; }
.nav-toggle{ display: none; }

@media (max-width: 1040px){
  .main-nav{
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--sand); flex-direction: column; gap: 0;
    border-bottom: 1px solid rgba(43,28,19,0.1);
    max-height: 0; overflow: hidden; transition: max-height 0.25s ease;
  }
  .main-nav.open{ max-height: 420px; }
  .main-nav a{ padding: 14px 24px; border-top: 1px solid rgba(43,28,19,0.08); }
  .header-ctas .btn-ghost span{ display:none; }
  .nav-toggle{
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 38px; height: 38px; background: none; border: none; cursor: pointer;
  }
  .nav-toggle span{ height: 2px; width: 100%; background: var(--ink); transition: transform 0.2s ease, opacity 0.2s ease; }
  .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: 560px){
  .header-ctas .btn-ghost{ display:none; }
}

/* ==========================================================
   Hero — text left, arch-framed photo right
   ========================================================== */
.hero{ position: relative; overflow: hidden; padding-top: 56px; }
.hero-window-field{
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 0; opacity: 0.14; pointer-events: none;
}
.hero-inner{
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center;
  padding-bottom: 64px;
}
.hero .eyebrow{ color: var(--terracotta); }
.hero h1{ color: var(--ink); }
.hero-copy .hero-lede{ font-size: 1.12rem; max-width: 46ch; color: var(--ink-soft); }
.hero-ctas{ display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0 30px; }
.trust-chips{
  display: flex; flex-wrap: wrap; gap: 10px 22px; list-style: none; padding: 0; margin: 0;
  font-family: var(--font-mono); font-size: 0.78rem; color: var(--ink-soft);
}
.trust-chips li{ position: relative; padding-left: 16px; }
.trust-chips li::before{ content:"✓"; position:absolute; left:0; color: var(--indigo); font-weight: 700; }
.hero .btn-outline{ color: var(--ink); border-color: rgba(43,28,19,0.35); }
.hero .btn-outline:hover{ background: rgba(43,28,19,0.06); }

.hero-frame{ display: flex; flex-direction: column; align-items: center; }
.hero-frame .jharokha{ width: 100%; max-width: 400px; height: auto; }
.hero-photo-credit{
  margin: 8px 0 0; font-size: 0.62rem; color: var(--ink-soft); text-align: center; max-width: 380px;
}
.hero-photo-credit a{ color: var(--ink-soft); }

/* Crossfade carousel inside the arch frame — 8 slides, ~4s each, ~32s full cycle. */
.hero-slide{
  opacity: 0;
  animation: heroSlideCycle 32s infinite;
}
.hero-slide:nth-of-type(1){ animation-delay: 0s; }
.hero-slide:nth-of-type(2){ animation-delay: -4s; }
.hero-slide:nth-of-type(3){ animation-delay: -8s; }
.hero-slide:nth-of-type(4){ animation-delay: -12s; }
.hero-slide:nth-of-type(5){ animation-delay: -16s; }
.hero-slide:nth-of-type(6){ animation-delay: -20s; }
.hero-slide:nth-of-type(7){ animation-delay: -24s; }
.hero-slide:nth-of-type(8){ animation-delay: -28s; }
@keyframes heroSlideCycle{
  0%{ opacity: 0; }
  1.5%{ opacity: 1; }
  10.5%{ opacity: 1; }
  12.5%{ opacity: 0; }
  100%{ opacity: 0; }
}
@media (prefers-reduced-motion: reduce){
  .hero-slide{ animation: none; opacity: 0; }
  .hero-slide:nth-of-type(1){ opacity: 1; }
}

@media (max-width: 900px){
  .hero-inner{ grid-template-columns: 1fr; padding-bottom: 40px; }
  .hero-frame{ order: -1; max-width: 280px; margin: 0 auto; }
}

/* ==========================================================
   Trust strip
   ========================================================== */
.strip{ background: var(--sand-deep); border-top: 1px solid rgba(43,28,19,0.08); border-bottom: 1px solid rgba(43,28,19,0.08); }
.strip-inner{
  display: grid; grid-template-columns: repeat(4,1fr); gap: 20px;
  padding: 30px 24px; text-align: center;
}
.strip-inner div{ display: flex; flex-direction: column; gap: 2px; }
.strip-inner strong{ font-family: var(--font-display); font-size: 1.7rem; color: var(--terracotta); }
.strip-inner span{ font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-soft); }
@media (max-width: 700px){ .strip-inner{ grid-template-columns: repeat(2,1fr); } }

/* ==========================================================
   Sections (shared)
   ========================================================== */
.section{ padding: 88px 0; }
.section-tint{ background: var(--sand-deep); }
.section-dark{ background: var(--indigo-d); }
.section-dark p{ color: #D9CBB8; }
/* Light-background cards sitting inside a dark section (route cards, the
   contact form) must not inherit the dark section's light paragraph color —
   it's unreadable on their light card background. */
.section-dark .route-card p,
.section-dark .contact-form p{ color: var(--ink-soft); }
.section-dark code{ background: rgba(248,241,228,0.12); color: var(--cream); }

/* ---- Full-bleed photo banner (breaks up runs of flat sections) ---- */
.banner{
  position: relative; overflow: hidden; min-height: 340px;
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.banner img{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.banner::after{ content:""; position:absolute; inset:0; z-index:1; background: rgba(15,9,5,0.58); }
.banner-inner{ position: relative; z-index: 2; padding: 60px 24px; }
.banner-quote{
  font-family: var(--font-display); color: var(--cream); font-size: clamp(1.5rem, 3vw, 2.2rem);
  max-width: 26ch; margin: 0 auto 14px; line-height: 1.3;
}
.banner-sub{ color: #EADCC5; max-width: 48ch; margin: 0 auto; font-size: 0.98rem; }
.banner-credit{
  position: absolute; right: 16px; bottom: 10px; z-index: 2; margin: 0;
  font-size: 0.68rem; color: rgba(248,241,228,0.55);
}
.banner-credit a{ color: rgba(248,241,228,0.75); }

/* ==========================================================
   Fleet
   ========================================================== */
.fleet-grid{
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 40px;
}
.fleet-card{
  background: var(--cream); border-radius: var(--radius); padding: 0 20px 26px;
  box-shadow: var(--shadow-card); border-top: 5px solid var(--terracotta);
  overflow: hidden; transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.fleet-card:nth-child(2){ border-top-color: var(--indigo); }
.fleet-card:nth-child(3){ border-top-color: var(--marigold); }
.fleet-card:nth-child(4){ border-top-color: var(--indigo); }
.fleet-card:hover{ transform: translateY(-4px); box-shadow: 0 14px 30px -10px rgba(43,28,19,0.3); }

.fleet-card-top{
  margin: 0 -20px 14px; height: 230px;
}
.fleet-card-photo{ background: #FFFFFF; display: flex; align-items: center; justify-content: center; padding: 10px; }
.fleet-card-photo img{ width: 100%; height: 100%; object-fit: contain; display: block; }
.fleet-card-icon{ display: flex; align-items: center; justify-content: center; padding: 0 30px; }
.fleet-card-icon .fleet-icon{ width: 100%; max-width: 220px; height: auto; }

.fleet-card h3, .fleet-card .fleet-rep, .fleet-card .specs, .fleet-card .fleet-note{
  margin-left: 0; margin-right: 0;
}
.fleet-card h3{ margin-top: 0; }
.fleet-rep{ font-family: var(--font-mono); font-size: 0.7rem; color: var(--ink-soft); margin: -6px 0 12px; text-transform: uppercase; letter-spacing: 0.03em; }
.specs{ list-style: none; padding: 0; margin: 0 0 10px; font-size: 0.9rem; color: var(--ink-soft); }
.specs li{ padding: 3px 0; border-top: 1px dashed rgba(43,28,19,0.15); }
.specs li:first-child{ border-top: none; }
.fleet-note{ font-size: 0.85rem; font-style: italic; margin: 0; }

@media (max-width: 980px){ .fleet-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .fleet-grid{ grid-template-columns: 1fr; } }

/* ==========================================================
   Routes & fares — photo cards
   ========================================================== */
.route-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; }
.route-card{
  background: var(--cream); border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 14px 34px -16px rgba(0,0,0,0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.route-card:hover{ transform: translateY(-4px); box-shadow: 0 18px 40px -14px rgba(0,0,0,0.6); }

.route-card-img{ position: relative; display: block; aspect-ratio: 4/3; overflow: hidden; }
.route-card-img img{ width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.route-card:hover .route-card-img img{ transform: scale(1.07); }
.route-duration{
  position: absolute; left: 12px; bottom: 12px; z-index: 2;
  font-family: var(--font-mono); font-size: 0.7rem; font-weight: 600; color: var(--indigo-d);
  background: var(--marigold); padding: 5px 11px; border-radius: 999px;
}

.route-card-body{ padding: 18px 20px 20px; }
.route-card-body h3{
  font-size: 1.1rem; margin: 0 0 4px; line-height: 1.25;
}
.route-card-body h3 a{ color: inherit; text-decoration: none; }
.route-card-body h3 a:hover{ color: var(--terracotta); }
.route-seats{
  font-family: var(--font-mono); font-size: 0.76rem; color: var(--ink-soft);
  text-transform: uppercase; letter-spacing: 0.04em; margin: 0 0 14px;
}
.route-card-foot{ display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.route-fare{ font-family: var(--font-display); font-size: 1.35rem; color: var(--terracotta); }
.btn-sm{ padding: 8px 16px; font-size: 0.82rem; }
.route-details{
  display: inline-block; margin-top: 12px; font-size: 0.82rem; font-weight: 700;
  color: var(--indigo); text-decoration: none; border-bottom: 1px solid transparent;
}
.route-details:hover{ border-bottom-color: var(--indigo); }

@media (max-width: 980px){ .route-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px){ .route-grid{ grid-template-columns: 1fr; } }

/* ==========================================================
   Why us
   ========================================================== */
.why-grid{ display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; margin-top: 40px; }
.why-card{ display: flex; flex-direction: column; gap: 6px; }
.why-icon{ width: 40px; height: 40px; margin-bottom: 6px; }
.why-icon svg{ width: 100%; height: 100%; }
.why-card p{ font-size: 0.94rem; margin: 0; }
@media (max-width: 900px){ .why-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .why-grid{ grid-template-columns: 1fr; } }

/* ==========================================================
   Destinations — real, licensed landmark photography
   ========================================================== */
.dest-grid{
  margin-top: 40px; display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 130px; gap: 14px;
}
.dest-big{ grid-column: 1 / 3; grid-row: 1 / 3; }
.dest-item:nth-child(2){ grid-column: 3 / 5; grid-row: 1 / 2; }
.dest-item:nth-child(3){ grid-column: 3 / 5; grid-row: 2 / 3; }
.dest-item:nth-child(4){ grid-column: 1 / 2; grid-row: 3 / 4; }
.dest-item:nth-child(5){ grid-column: 2 / 3; grid-row: 3 / 4; }
.dest-item:nth-child(6){ grid-column: 3 / 5; grid-row: 3 / 4; }

.dest-item{
  position: relative; display: block; border-radius: var(--radius-sm); overflow: hidden;
  box-shadow: var(--shadow-card); text-decoration: none;
}
.dest-item img{
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.dest-item:hover img{ transform: scale(1.06); }
.dest-cap{
  position: absolute; left: 0; right: 0; bottom: 0; padding: 14px 16px 12px;
  background: linear-gradient(to top, rgba(20,12,7,0.82), transparent);
  color: var(--cream); font-weight: 700; font-size: 0.95rem;
  display: flex; flex-direction: column; gap: 2px;
}
.dest-cap small{ font-family: var(--font-mono); font-weight: 400; font-size: 0.7rem; letter-spacing: 0.03em; color: #E9D9C1; }

.photo-credits{ margin-top: 22px; font-size: 0.76rem; color: var(--ink-soft); max-width: 80ch; }
.photo-credits a{ color: var(--terracotta); text-decoration: underline; }

@media (max-width: 900px){
  .dest-grid{ grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .dest-big{ grid-column: 1 / 3; grid-row: 1 / 2; }
  .dest-item:nth-child(2){ grid-column: 1 / 2; grid-row: 2 / 3; }
  .dest-item:nth-child(3){ grid-column: 2 / 3; grid-row: 2 / 3; }
  .dest-item:nth-child(4){ grid-column: 1 / 2; grid-row: 3 / 4; }
  .dest-item:nth-child(5){ grid-column: 2 / 3; grid-row: 3 / 4; }
  .dest-item:nth-child(6){ grid-column: 1 / 3; grid-row: 4 / 5; }
}
@media (max-width: 560px){
  .dest-grid{ grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .dest-big, .dest-item:nth-child(2), .dest-item:nth-child(3),
  .dest-item:nth-child(4), .dest-item:nth-child(5), .dest-item:nth-child(6){
    grid-column: 1 / 2; grid-row: auto;
  }
}

/* ==========================================================
   Reviews — disclosed, verifiable cross-promotion
   ========================================================== */
.ta-badge{
  margin-top: 32px; display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
  background: var(--cream); border-radius: var(--radius-sm); padding: 16px 22px;
  box-shadow: var(--shadow-card);
}
.ta-badge-score{ font-family: var(--font-display); font-size: 1.15rem; color: var(--terracotta); }
.ta-badge-meta{ font-family: var(--font-mono); font-size: 0.78rem; color: var(--ink-soft); flex: 1; }
.ta-badge-link{ font-size: 0.82rem; font-weight: 700; color: var(--indigo); text-decoration: none; white-space: nowrap; }
.ta-badge-link:hover{ text-decoration: underline; }

.review-grid{ display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 24px; }
.review-card{
  background: var(--cream); border-radius: var(--radius); padding: 26px 22px 20px;
  box-shadow: var(--shadow-card);
}
.review-card .quote-mark{ font-family: var(--font-script); font-size: 2.2rem; color: var(--terracotta); line-height: 1; opacity: 0.6; }
.review-card p{ color: var(--ink); font-size: 0.94rem; margin: 8px 0 12px; }
.review-source{ font-family: var(--font-mono); font-size: 0.7rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.03em; }
@media (max-width: 900px){ .review-grid{ grid-template-columns: 1fr; } }

/* ==========================================================
   Gallery
   ========================================================== */
.gallery-grid{ display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 36px; }
.gallery-item{
  aspect-ratio: 4/3; border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-card);
}
.gallery-item img{ width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.gallery-item:hover img{ transform: scale(1.06); }
@media (max-width: 900px){ .gallery-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .gallery-grid{ grid-template-columns: 1fr; } }

/* ==========================================================
   FAQ
   ========================================================== */
.faq-list{ margin-top: 36px; display: flex; flex-direction: column; gap: 12px; }
.faq-item{
  background: var(--cream); border-radius: var(--radius-sm); padding: 4px 20px;
  border: 1px solid rgba(43,28,19,0.1);
}
.faq-item summary{
  cursor: pointer; padding: 16px 0; font-weight: 700; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-item summary::-webkit-details-marker{ display: none; }
.faq-item summary::after{ content: "+"; font-family: var(--font-display); font-size: 1.4rem; color: var(--terracotta); flex-shrink: 0; }
.faq-item[open] summary::after{ content: "−"; }
.faq-item p{ padding-bottom: 16px; margin: 0; }

/* ==========================================================
   Contact
   ========================================================== */
.contact-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-line{
  display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--cream);
  font-weight: 700; font-size: 1.05rem; padding: 12px 0; border-bottom: 1px solid rgba(248,241,228,0.15);
}
.contact-line svg{ color: var(--marigold); flex-shrink: 0; }
.contact-note{ margin-top: 18px; font-size: 0.85rem; color: #B9A98C; }

.contact-form{
  background: var(--cream); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; gap: 14px;
  box-shadow: var(--shadow-card);
}
.form-note{ font-size: 0.78rem; color: var(--ink-soft); margin: 0 0 4px; }
.contact-form label{ display: flex; flex-direction: column; gap: 6px; font-size: 0.85rem; font-weight: 700; color: var(--ink); }
.contact-form input, .contact-form textarea{
  font-family: var(--font-body); font-size: 0.95rem; padding: 10px 12px; border-radius: 8px;
  border: 1.5px solid rgba(43,28,19,0.2); background: var(--sand); color: var(--ink); resize: vertical;
}
.contact-form input:focus, .contact-form textarea:focus{ outline: none; border-color: var(--terracotta); }
.form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 900px){ .contact-grid{ grid-template-columns: 1fr; } }
@media (max-width: 500px){ .form-row{ grid-template-columns: 1fr; } }

/* ==========================================================
   Footer
   ========================================================== */
.site-footer{ background: #1A1109; color: #C9B99C; padding: 56px 0 0; }
.footer-inner{ display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 40px; }
.footer-brand .brand-name{ font-family: var(--font-display); font-size: 1.3rem; color: var(--cream); }
.footer-brand p{ font-size: 0.85rem; color: #A8977A; margin-top: 10px; max-width: 32ch; }
.footer-col h4{ font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--marigold); margin: 0 0 12px; }
.footer-col{ display: flex; flex-direction: column; gap: 8px; }
.footer-col a, .footer-col p{ text-decoration: none; font-size: 0.88rem; color: #C9B99C; margin: 0; }
.footer-col a:hover{ color: var(--cream); }
.footer-bottom{
  border-top: 1px solid rgba(201,185,156,0.15); padding: 18px 24px; font-size: 0.78rem; color: #8A7A5F;
}
@media (max-width: 800px){ .footer-inner{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px){ .footer-inner{ grid-template-columns: 1fr; } }

/* ==========================================================
   Trip detail pages
   ========================================================== */
.trip-crumbs{
  padding: 16px 0; font-family: var(--font-mono); font-size: 0.76rem;
  color: var(--ink-soft); background: var(--sand);
}
.trip-crumbs a{ color: var(--ink-soft); text-decoration: none; }
.trip-crumbs a:hover{ color: var(--terracotta); }

.trip-hero{
  position: relative; height: 62vh; min-height: 380px; max-height: 620px;
  display: flex; align-items: flex-end; overflow: hidden;
}
.trip-hero img{
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
.trip-hero::after{
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(15,9,5,0.88) 0%, rgba(15,9,5,0.45) 45%, rgba(15,9,5,0.05) 75%);
}
.trip-hero-inner{ position: relative; z-index: 2; padding: 40px 0 44px; width: 100%; }
.trip-hero .eyebrow{ color: var(--marigold); }
.trip-hero h1{ color: var(--cream); font-size: clamp(2.2rem, 4.6vw, 3.6rem); max-width: 18ch; }
.trip-hero-tagline{ color: #E9D9C1; font-size: 1.1rem; max-width: 52ch; margin: 8px 0 0; }

.quickfacts{
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; list-style: none; padding: 0;
}
.quickfacts li{
  font-family: var(--font-mono); font-size: 0.78rem; color: var(--cream);
  background: rgba(20,12,7,0.55); border: 1px solid rgba(248,241,228,0.3);
  padding: 7px 14px; border-radius: 999px;
}
.quickfacts li strong{ color: var(--marigold); font-weight: 700; }

.trip-body{ padding: 64px 0; }
.trip-layout{ display: grid; grid-template-columns: 1.6fr 1fr; gap: 56px; align-items: start; }

.itinerary{ list-style: none; padding: 0; margin: 28px 0 0; position: relative; }
.itinerary::before{
  content: ""; position: absolute; left: 19px; top: 8px; bottom: 8px; width: 2px;
  background: repeating-linear-gradient(to bottom, var(--terracotta) 0 6px, transparent 6px 12px);
}
.itinerary-step{ position: relative; padding: 0 0 30px 56px; }
.itinerary-step:last-child{ padding-bottom: 0; }
.itinerary-num{
  position: absolute; left: 0; top: 0; width: 40px; height: 40px; border-radius: 50%;
  background: var(--terracotta); color: var(--cream); font-family: var(--font-display);
  font-size: 1.05rem; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 5px var(--sand);
}
.itinerary-step h3{ margin-bottom: 4px; font-size: 1.15rem; }
.itinerary-step p{ margin: 0; font-size: 0.95rem; }

.incl-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 20px; }
.incl-col h4{
  font-family: var(--font-mono); text-transform: uppercase; font-size: 0.74rem;
  letter-spacing: 0.08em; margin: 0 0 10px;
}
.incl-col.yes h4{ color: var(--indigo); }
.incl-col.no h4{ color: var(--terracotta); }
.incl-col ul{ list-style: none; padding: 0; margin: 0; font-size: 0.9rem; color: var(--ink-soft); }
.incl-col li{ padding: 4px 0 4px 20px; position: relative; }
.incl-col.yes li::before{ content:"✓"; position:absolute; left:0; color: var(--indigo); font-weight:700; }
.incl-col.no li::before{ content:"–"; position:absolute; left:0; color: var(--terracotta); font-weight:700; }

.trip-mini-gallery{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 24px; }
.trip-mini-gallery img{
  width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-sm); box-shadow: var(--shadow-card);
}

.fare-card{
  background: var(--cream); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-card);
  border-top: 5px solid var(--terracotta); position: sticky; top: 100px;
}
.fare-card .fare-amount{ font-family: var(--font-display); font-size: 2.4rem; color: var(--terracotta); line-height: 1; }
.fare-card .fare-amount small{ font-family: var(--font-mono); font-size: 0.85rem; color: var(--ink-soft); display: block; margin-top: 6px; }
.fare-card .btn{ width: 100%; justify-content: center; margin-top: 18px; }
.fare-card ul{ list-style: none; padding: 0; margin: 18px 0 0; font-size: 0.85rem; color: var(--ink-soft); }
.fare-card li{ padding: 5px 0; border-top: 1px dashed rgba(43,28,19,0.15); }
.fare-card li:first-child{ border-top: none; }

.related-trips{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 28px; }
.related-card{
  display: block; text-decoration: none; border-radius: var(--radius-sm); overflow: hidden;
  position: relative; aspect-ratio: 4/3; box-shadow: var(--shadow-card);
}
.related-card img{ width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.related-card:hover img{ transform: scale(1.07); }
.related-card span{
  position: absolute; left: 0; right: 0; bottom: 0; padding: 10px 12px;
  background: linear-gradient(to top, rgba(20,12,7,0.85), transparent);
  color: var(--cream); font-weight: 700; font-size: 0.82rem;
}

@media (max-width: 980px){
  .trip-layout{ grid-template-columns: 1fr; }
  .fare-card{ position: static; }
  .related-trips{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px){
  .trip-mini-gallery{ grid-template-columns: repeat(2, 1fr); }
  .incl-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 480px){ .related-trips{ grid-template-columns: 1fr; } }

/* ==========================================================
   Motion — hero entrance + scroll reveal
   Deliberate, not decorative: the hero sequence draws the eye
   in reading order, and scroll-reveal echoes the departure
   board's own signature (a flap dropping into place).
   Everything here is safe with JS disabled: reveal targets are
   only hidden once body.js-reveal is set by main.js, so content
   never depends on script execution to become visible.
   ========================================================== */
@keyframes fadeUp{ from{ opacity:0; transform: translateY(16px); } to{ opacity:1; transform:none; } }

.hero-copy .eyebrow{ animation: fadeUp .7s ease both; }
.hero-copy h1{ animation: fadeUp .7s ease .12s both; }
.hero-copy .hero-lede{ animation: fadeUp .7s ease .24s both; }
.hero-copy .hero-ctas{ animation: fadeUp .7s ease .36s both; }
.hero-copy .trust-chips{ animation: fadeUp .7s ease .48s both; }
.hero-frame{ animation: fadeUp .9s ease .2s both; }
.trip-hero-inner > *{ animation: fadeUp .7s ease both; }
.trip-hero-inner .eyebrow{ animation-delay: 0s; }
.trip-hero-inner h1{ animation-delay: .12s; }
.trip-hero-inner .trip-hero-tagline{ animation-delay: .24s; }
.trip-hero-inner .quickfacts{ animation-delay: .36s; }

body.js-reveal .reveal-target{
  opacity: 0; transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
body.js-reveal .reveal-target.is-visible{ opacity: 1; transform: none; }

@keyframes pulseRing{
  0%{ box-shadow: 0 0 0 0 rgba(190,75,52,0.45); }
  70%{ box-shadow: 0 0 0 11px rgba(190,75,52,0); }
  100%{ box-shadow: 0 0 0 0 rgba(190,75,52,0); }
}
.header-ctas .btn-primary.pulse{ animation: pulseRing 2.6s ease-out infinite; }

@keyframes floatWindow{ 0%, 100%{ transform: translateY(0); } 50%{ transform: translateY(-5px); } }
.float-w{ animation-name: floatWindow; animation-timing-function: ease-in-out; animation-iteration-count: infinite; transform-box: fill-box; transform-origin: center; }

@media (prefers-reduced-motion: reduce){
  .hero-copy .eyebrow, .hero-copy h1, .hero-copy .hero-lede, .hero-copy .hero-ctas,
  .hero-copy .trust-chips, .hero-frame, .trip-hero-inner > *{ animation: none; }
  body.js-reveal .reveal-target{ opacity: 1; transform: none; transition: none; }
  .header-ctas .btn-primary.pulse{ animation: none; }
  .float-w{ animation: none; }
}
