/* ==========================================================================
   Cross Cultured Travel — styles.css
   Editorial travel-concierge system: Prata/Manrope, warm cream + teal/aquamarine.
   ========================================================================== */

:root {
  --cream: #f7f4f1;
  --white: #ffffff;
  --offwhite: #f7f7f7;
  --warm-white: #efe8e1;
  --mint-tint: #e5f6f2;

  --teal: #02636d;
  --aqua: #0ea098;
  --aqua-light: #1ccfc4;
  --aqua-dark: #078f86;
  --aqua-darker: #046a63;
  --cerulean: #46616e;
  --greybrown: #c4b6b6;

  --ink: #1c2b29;
  --body: #3e4a48;
  --muted: #5b6664;
  --faint: #7c918c;
  --deep: #0b2422;
  --deep-2: #06231f;

  --font-head: 'Prata', serif;
  --font-body: 'Manrope', sans-serif;
  --font-mono: ui-monospace, 'SF Mono', Menlo, monospace;

  --container: 1320px;
  --pad-x: 56px;
  --radius: 22px;
  --radius-lg: 28px;

  --shadow-card: 0 24px 60px -28px rgba(28, 43, 41, 0.28);
  --shadow-lg: 0 30px 80px -32px rgba(28, 43, 41, 0.3);
  --gradient-cta: linear-gradient(135deg, var(--aqua-light) 0%, var(--aqua) 55%, var(--aqua-dark) 100%);
  --gradient-cta-hover: linear-gradient(135deg, var(--aqua) 0%, var(--aqua-dark) 55%, var(--aqua-darker) 100%);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--aqua); }

::selection { background: var(--aqua); color: var(--cream); }

h1, h2, h3 {
  font-family: var(--font-head);
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--ink);
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad-x); }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cerulean);
  margin-bottom: 18px;
}

.eyebrow-pill {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #eaf7f5;
  background: rgba(14, 160, 152, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(14, 160, 152, 0.5);
  border-radius: 999px;
  padding: 9px 18px;
  margin-bottom: 18px;
}

/* Buttons */
.btn {
  display: inline-block;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 34px;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  font-family: var(--font-body);
}

.btn-primary {
  background: var(--gradient-cta);
  color: var(--deep-2);
  box-shadow: 0 16px 40px -14px rgba(2, 99, 109, 0.6);
}
.btn-primary:hover {
  background: var(--gradient-cta-hover);
  color: var(--deep-2);
  transform: translateY(-2px);
  box-shadow: 0 22px 48px -14px rgba(2, 99, 109, 0.7);
}

.btn-secondary {
  background: transparent;
  color: var(--teal);
  border: 1.5px solid var(--teal);
  padding: 14.5px 28px;
}
.btn-secondary:hover {
  background: var(--teal);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn-small { font-size: 14px; padding: 13px 26px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(247, 244, 241, 0.7);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid rgba(196, 182, 182, 0.5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px var(--pad-x);
  gap: 24px;
}

.brand img { height: 52px; width: auto; display: block; }

.main-nav { display: flex; align-items: center; gap: 40px; }
.main-nav a {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover { color: var(--teal); }
.main-nav a.active { color: var(--teal); border-bottom-color: var(--aqua); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: var(--cream);
  border-bottom: 1px solid rgba(196, 182, 182, 0.5);
  padding: 8px var(--pad-x) 20px;
}
.mobile-nav a {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 1px solid rgba(196, 182, 182, 0.3);
}
.mobile-nav.is-open { display: flex; }

/* Hero */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero.hero-full { height: 88vh; min-height: 640px; }
.hero.hero-mid { height: 56vh; min-height: 420px; }
.hero.hero-short { height: 52vh; min-height: 400px; }

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 36, 34, 0.75) 0%, rgba(11, 36, 34, 0.18) 58%, rgba(11, 36, 34, 0) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  padding: 0 var(--pad-x) 72px;
  max-width: 820px;
}
.hero-content h1 {
  font-size: clamp(40px, 7vw, 100px);
  line-height: 0.98;
  color: var(--cream);
  margin: 0 0 22px;
}
.hero-content p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--warm-white);
  max-width: 560px;
  margin: 0 0 32px;
}

/* Sections */
.section { padding: 130px var(--pad-x); }
.section-tight { padding: 100px var(--pad-x); }
section.on-white { background: var(--white); }
section.on-offwhite { background: var(--offwhite); }
section.on-warm { background: var(--warm-white); }
section.on-mint { background: var(--mint-tint); }
.text-center { text-align: center; }

.two-col {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: center;
}
.two-col.even { grid-template-columns: 1fr 1fr; gap: 72px; }
.two-col img, .two-col .img-frame { width: 100%; }

.img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 70px -30px rgba(28, 43, 41, 0.35);
}
.img-frame.ratio-45 { aspect-ratio: 4/5; }
.img-frame.ratio-43 { aspect-ratio: 4/3; }
.img-frame img { width: 100%; height: 100%; object-fit: cover; }

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.card {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(196, 182, 182, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 32px 76px -26px rgba(28, 43, 41, 0.36); }
.card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.card-body { padding: 28px 26px 34px; }
.card-body h3 { font-size: 22px; margin: 0 0 12px; }
.card-body p { font-size: 15px; line-height: 1.7; color: var(--body); margin: 0; }

/* Testimonials */
.testimonial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.testimonial {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(196, 182, 182, 0.4);
  border-top: 3px solid var(--aqua);
  border-radius: 18px;
  padding: 36px 40px;
  box-shadow: 0 24px 60px -30px rgba(28, 43, 41, 0.28);
}
.testimonial p { font-size: 18px; line-height: 1.7; color: var(--ink); font-style: italic; margin: 0 0 18px; }
.testimonial cite { font-size: 14px; font-weight: 700; color: var(--teal); font-style: normal; }

/* CTA band with background photo */
.cta-band {
  position: relative;
  padding: 130px var(--pad-x);
  text-align: center;
  overflow: hidden;
}
.cta-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-band-scrim {
  position: absolute;
  inset: 0;
  /* Lightened from the original 0.86/0.72 handoff values — at that opacity the real
     photo underneath was barely visible, which read as "the background image isn't
     loading" even though it was. Kept dark enough for white-text contrast. */
  background: linear-gradient(135deg, rgba(4, 54, 61, 0.58) 0%, rgba(2, 54, 61, 0.42) 100%);
}
.cta-band-panel {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 56px 60px;
  box-shadow: 0 40px 100px -40px rgba(0, 0, 0, 0.6);
}
.cta-band-panel h2 { color: var(--cream); margin: 0 0 18px; font-size: clamp(28px, 3vw, 38px); }
.cta-band-panel p { color: #cfe3e0; margin: 0 0 34px; line-height: 1.6; font-size: 17px; }

/* Pricing table */
.pricing-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(196, 182, 182, 0.5);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.price-row {
  display: grid;
  grid-template-columns: 1.3fr auto;
  gap: 24px;
  padding: 26px 32px;
  border-bottom: 1px solid var(--greybrown);
  align-items: baseline;
}
.price-row:last-child { border-bottom: none; }
.price-row .label { font-weight: 700; font-size: 17px; color: var(--ink); }
.price-row .sub { font-size: 14px; color: var(--muted); }
.price-row .amount { font-family: var(--font-mono); font-size: 22px; font-weight: 600; color: var(--ink); text-align: right; }
.price-row .amount.highlight { color: var(--teal); }

.price-tier {
  padding: 32px;
  border-bottom: 1px solid var(--greybrown);
  background: rgba(14, 160, 152, 0.06);
  position: relative;
}
.price-tier .badge {
  position: absolute;
  top: -11px;
  left: 32px;
  background: var(--gradient-cta);
  color: var(--deep-2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
}
.price-tier .tier-name { font-weight: 700; font-size: 17px; color: var(--ink); margin: 6px 0 14px; }
.price-tier .tier-rows { display: grid; gap: 10px; }
.price-tier .tier-row { display: flex; justify-content: space-between; font-size: 15px; color: var(--body); }
.price-tier .tier-row span:last-child { font-family: var(--font-mono); font-weight: 600; color: var(--ink); }

.guarantee-box {
  margin-top: 40px;
  background: rgba(70, 97, 110, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(70, 97, 110, 0.25);
  border-left: 4px solid var(--cerulean);
  border-radius: 18px;
  padding: 32px 36px;
}
.guarantee-box .eyebrow { letter-spacing: 0.14em; margin-bottom: 14px; }
.guarantee-box p { font-family: var(--font-head); font-style: italic; font-size: 20px; line-height: 1.6; color: var(--ink); margin: 0; }
.guarantee-box.small p { font-size: 16px; }

/* Trips status sections */
.status-block { margin-bottom: 110px; }
.status-block:last-child { margin-bottom: 60px; }
.status-heading { display: flex; align-items: center; gap: 14px; margin-bottom: 32px; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.status-dot.live { background: var(--aqua); }
.status-dot.upcoming { background: var(--cerulean); }
.status-heading h2 { font-size: 28px; }

.empty-state {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  border: 1px dashed rgba(196, 182, 182, 0.7);
  border-radius: var(--radius);
  padding: 56px 48px;
  text-align: center;
}
.empty-state p { font-size: 17px; color: var(--muted); margin: 0 auto; max-width: 480px; }

.trip-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(196, 182, 182, 0.5);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.trip-card img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; }
.trip-card-body { padding: 48px 44px; display: flex; flex-direction: column; justify-content: center; }
.trip-card-body .meta { font-family: var(--font-mono); font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cerulean); margin-bottom: 16px; }
.trip-card-body h3 { font-size: 28px; margin: 0 0 18px; }
.trip-card-body p { font-size: 15px; line-height: 1.8; color: var(--body); margin: 0 0 22px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  border: 1px solid var(--teal);
  padding: 6px 14px;
  border-radius: 999px;
}

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { padding: 24px 0; border-bottom: 1px solid var(--greybrown); }
.faq-item:last-child { border-bottom: none; }
.faq-item h3 { font-size: 17px; margin: 0 0 8px; }
.faq-item p { font-size: 15px; line-height: 1.7; color: var(--body); margin: 0; }

/* Numbered steps */
.step-row { display: flex; gap: 16px; margin-bottom: 22px; }
.step-row:last-child { margin-bottom: 0; }
.step-num { font-family: var(--font-mono); font-size: 13px; font-weight: 600; color: var(--aqua); padding-top: 2px; flex-shrink: 0; }
.step-row p { font-size: 15px; line-height: 1.7; color: var(--body); margin: 0; }

/* Forms */
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-field label { font-size: 13px; font-weight: 700; color: var(--cerulean); }
.form-field input,
.form-field textarea,
.form-field select {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--greybrown);
  background: var(--white);
  color: var(--ink);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { outline: 2px solid var(--aqua); outline-offset: 1px; }

/* Footer */
.site-footer { background: var(--deep); padding: 70px var(--pad-x) 36px; }
.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(247, 244, 241, 0.15);
}
.footer-grid img { height: 64px; width: auto; margin-bottom: 18px; }
.footer-grid p { font-size: 14px; line-height: 1.7; color: var(--faint); max-width: 280px; margin: 0; }
.footer-col-title { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--aqua); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14px; color: var(--warm-white); }
.footer-links a:hover { color: var(--aqua); }
.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 28px;
}
.footer-bottom .copyright { font-size: 13px; color: var(--faint); }
.footer-bottom .legal-links { display: flex; gap: 24px; }
.footer-bottom .legal-links a { font-size: 13px; color: var(--faint); }
.footer-bottom .legal-links a:hover { color: var(--aqua); }

.footer-simple { background: var(--deep); padding: 48px 56px; text-align: center; }
.footer-simple img { height: 48px; width: auto; display: block; margin: 0 auto 18px; }
.footer-simple .social-row { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-bottom: 16px; }
.footer-simple .social-row a { font-size: 13px; color: var(--warm-white); }
.footer-simple .copyright { font-size: 12px; color: var(--faint); }

/* Utility pages (privacy/terms) */
.legal-main { max-width: 760px; margin: 0 auto; padding: 100px 24px 140px; }
.legal-main .updated { font-size: 14px; color: var(--muted); margin: 0 0 48px; }
.legal-section-list { display: flex; flex-direction: column; gap: 36px; font-size: 16px; line-height: 1.8; color: var(--body); }
.legal-section-list h2 { font-size: 20px; margin: 0 0 12px; }
.legal-section-list p { margin: 0; }
.back-link { display: inline-block; margin-top: 56px; font-size: 14px; font-weight: 700; color: var(--teal); border-bottom: 2px solid var(--teal); padding-bottom: 3px; }
.simple-header { background: rgba(247, 244, 241, 0.7); backdrop-filter: blur(18px) saturate(160%); border-bottom: 1px solid rgba(196, 182, 182, 0.5); display: flex; align-items: center; padding: 16px 56px; }
.simple-header.centered { justify-content: center; }

/* data-reveal attributes are left in the markup as hooks but do nothing by default —
   content is always visible. See NOTES.md: a scroll-triggered fade-in was tried and
   dropped after it left content stuck invisible when the trigger didn't fire. */

/* Responsive */
@media (max-width: 900px) {
  :root { --pad-x: 24px; }
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .two-col, .two-col.even { grid-template-columns: 1fr; gap: 40px; }
  .card-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .trip-card { grid-template-columns: 1fr; }
  .trip-card img { min-height: 280px; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 80px var(--pad-x); }
  .section-tight { padding: 64px var(--pad-x); }
  .stats-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 24px !important; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr !important; }
}
