/* ============================================================
   CxC Travel — Shared Stylesheet
   Colors: Navy #1B2B4B · Gold #C9A84C
   Fonts: Cormorant Garamond (display) · DM Sans (body/ui)
   NOTE: Images reference current WordPress CDN URLs.
   When you take down WordPress, download your images and
   update these paths to images/ folder references.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

:root {
  --navy:       #1B2B4B;
  --navy-deep:  #0f1c32;
  --navy-light: #2a3f6f;
  --gold:       #C9A84C;
  --gold-light: #dfc07a;
  --gold-pale:  #f7f0de;
  --white:      #ffffff;
  --off-white:  #f9f7f3;
  --cream:      #f2ede3;
  --text:       #1a1a1a;
  --text-mid:   #4a4a4a;
  --text-muted: #888;
  --border:     rgba(27,43,75,0.1);
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'DM Sans', sans-serif;
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --max:        1200px;
}

/* ===== BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }
.reveal-d6 { transition-delay: 0.6s; }
.reveal-d7 { transition-delay: 0.7s; }
.reveal-d8 { transition-delay: 0.8s; }

/* ===== NAVBAR ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--navy);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 2px 32px rgba(0,0,0,0.3); }
.nav-logo { height: 46px; width: auto; mix-blend-mode: screen; display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 500 !important;
  padding: 0.6rem 1.5rem !important;
  border-radius: 2px;
  letter-spacing: 0.07em !important;
  color: var(--navy) !important;
  transition: background 0.2s ease !important;
}
.nav-cta:hover { background: var(--gold-light) !important; color: var(--navy) !important; }

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); transition: 0.3s ease; border-radius: 1px; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.875rem 2.25rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  line-height: 1;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.45); }
.btn-outline:hover { border-color: var(--gold-light); color: var(--gold-light); transform: translateY(-1px); }
.btn-outline-navy { background: transparent; color: var(--navy); border: 1px solid var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-light); transform: translateY(-1px); }

/* ===== SECTION LAYOUT ===== */
.section { padding: 5rem 0; }
.section-sm { padding: 4rem 0; }
.section-navy { background: var(--navy); color: var(--white); }
.section-off { background: var(--off-white); }
.section-cream { background: var(--cream); }

.section-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.875rem;
}
.section-label--light { color: var(--gold-light); }

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.0625rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 560px;
}
.section-subtitle--light { color: rgba(255,255,255,0.65); }
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }
.section-head { margin-bottom: 3rem; }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://www.cxctravel.com/wp-content/uploads/2025/09/pexels-photo-457878-457878-scaled.webp');
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11,18,30,0.52) 0%,
    rgba(11,18,30,0.38) 50%,
    rgba(11,18,30,0.68) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 1.5rem;
  max-width: 880px;
}
.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 400;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.3s forwards;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 7.5vw, 5.75rem);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.5s forwards;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.7s forwards;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.9s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.45);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: fadeIn 1s ease 1.5s both;
}
.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--navy-deep);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }
.trust-divider { width: 1px; height: 16px; background: rgba(255,255,255,0.15); }

/* ===== HOW IT WORKS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3.5rem;
  position: relative;
}
.steps-connector {
  position: absolute;
  top: 1.75rem;
  left: calc(16.5% + 1rem);
  right: calc(16.5% + 1rem);
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.4;
}
.step { text-align: center; }
.step-number {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.375rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(201,168,76,0.3);
}
.step-title {
  font-family: var(--serif);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.step-text { font-size: 0.9375rem; color: var(--text-mid); font-weight: 300; line-height: 1.75; }

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 3rem;
}
.service-card {
  background: var(--white);
  padding: 2rem 1.75rem;
  transition: background 0.2s ease;
  position: relative;
  overflow: hidden;
  cursor: default;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.service-card:hover { background: var(--off-white); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon { font-size: 1.625rem; margin-bottom: 1rem; display: block; }
.service-name {
  font-family: var(--serif);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.service-desc { font-size: 0.875rem; color: var(--text-muted); font-weight: 300; line-height: 1.65; }

/* ===== PERKS ===== */
.perks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.perk-card {
  border: 1px solid rgba(201,168,76,0.2);
  padding: 2.5rem 2rem;
  border-radius: 2px;
  text-align: center;
  transition: border-color 0.2s ease;
}
.perk-card:hover { border-color: rgba(201,168,76,0.5); }
.perk-icon { font-size: 2rem; margin-bottom: 1.25rem; display: block; }
.perk-title { font-family: var(--serif); font-size: 1.375rem; font-weight: 500; color: var(--gold-light); margin-bottom: 0.75rem; }
.perk-text { font-size: 0.9375rem; color: rgba(255,255,255,0.6); font-weight: 300; line-height: 1.75; }

/* ===== AI PLANNER CALLOUT ===== */
.planner-strip {
  background: var(--cream);
  border-radius: 4px;
  padding: 4rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  border: 1px solid rgba(201,168,76,0.2);
}
.planner-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--navy);
  color: var(--gold-light);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 2px;
  font-weight: 500;
  margin-bottom: 1rem;
}
.planner-title {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 0.875rem;
}
.planner-text { font-size: 1rem; color: var(--text-mid); font-weight: 300; line-height: 1.75; max-width: 480px; }

/* ===== DESTINATIONS ===== */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.875rem;
  margin-top: 3rem;
}
.dest-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
  aspect-ratio: 3/4;
}
.dest-card.wide { grid-column: span 2; aspect-ratio: 16/9; }
.dest-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.65s var(--ease); }
.dest-card:hover .dest-img { transform: scale(1.07); }
.dest-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,18,30,0.78) 0%, rgba(11,18,30,0.1) 55%); }
.dest-name {
  position: absolute;
  bottom: 1.25rem;
  left: 1.375rem;
  font-family: var(--serif);
  font-size: 1.625rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1;
}
.dest-cta {
  position: absolute;
  bottom: 1.375rem;
  right: 1.375rem;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.dest-card:hover .dest-cta { opacity: 1; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 3rem; }
.testimonial-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  padding: 2.5rem;
  border-radius: 2px;
}
.t-stars { color: var(--gold); letter-spacing: 3px; font-size: 0.875rem; margin-bottom: 1.25rem; }
.t-quote {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 1.75rem;
}
.t-author { display: flex; align-items: center; gap: 0.875rem; }
.t-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.t-name { font-weight: 500; font-size: 0.9rem; color: var(--navy); }
.t-trip { font-size: 0.8125rem; color: var(--text-muted); font-weight: 300; }

/* ===== FINAL CTA ===== */
.cta-block {
  background: var(--navy);
  padding: 7rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://www.cxctravel.com/wp-content/uploads/2025/09/pexels-photo-2521620-2521620.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
}
.cta-content { position: relative; z-index: 1; }
.cta-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 1rem;
}
.cta-title em { font-style: italic; color: var(--gold-light); }
.cta-sub { font-size: 1.0625rem; color: rgba(255,255,255,0.6); font-weight: 300; margin-bottom: 2.5rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer { background: var(--navy-deep); color: rgba(255,255,255,0.55); padding: 4.5rem 0 2.5rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 2rem;
}
.footer-logo { height: 52px; width: auto; mix-blend-mode: screen; margin-bottom: 1.25rem; display: block; }
.footer-tagline { font-size: 0.9rem; font-weight: 300; line-height: 1.75; margin-bottom: 1.5rem; max-width: 280px; }
.footer-fora { height: 26px; width: auto; display: block; opacity: 0.65; margin-top: 0.25rem; }
.footer-fora-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.35rem 0.875rem;
  border-radius: 2px;
}
.footer-fora-badge::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.6rem;
}
.footer-col-title { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1.375rem; display: block; }
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { font-size: 0.9rem; font-weight: 300; color: rgba(255,255,255,0.5); transition: color 0.2s ease; }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.875rem;
}
.footer-contact li svg { flex-shrink: 0; margin-top: 2px; color: var(--gold); }
.footer-contact a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 9rem 2rem 5rem;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.15; }
.page-hero-content { position: relative; z-index: 1; }
.page-hero-label { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-light); font-weight: 400; display: block; margin-bottom: 1rem; }
.page-hero-title { font-family: var(--serif); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 500; color: var(--white); line-height: 1.1; margin-bottom: 1rem; }
.page-hero-sub { font-size: 1.0625rem; color: rgba(255,255,255,0.62); font-weight: 300; max-width: 560px; line-height: 1.7; }

/* ===== BOOK TRAVEL / FORM PAGE ===== */
.form-page { padding: 5rem 0 7rem; }
.form-page-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 6rem; align-items: start; }
.form-sidebar-title { font-family: var(--serif); font-size: 1.875rem; font-weight: 500; color: var(--navy); line-height: 1.2; margin-bottom: 1rem; }
.form-sidebar-text { font-size: 0.9375rem; color: var(--text-mid); font-weight: 300; line-height: 1.75; margin-bottom: 2rem; }
.sidebar-perks { display: flex; flex-direction: column; gap: 1rem; margin-top: 2.5rem; }
.sidebar-perk {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1.25rem;
  background: var(--off-white);
  border-radius: 2px;
  border-left: 3px solid var(--gold);
}
.sidebar-perk-icon { font-size: 1.125rem; flex-shrink: 0; }
.sidebar-perk-title { font-weight: 500; font-size: 0.9rem; color: var(--navy); margin-bottom: 0.25rem; }
.sidebar-perk-text { font-size: 0.8375rem; color: var(--text-muted); font-weight: 300; }
.tally-wrapper iframe { border-radius: 2px; }

/* ===== GROUPS PAGE ===== */
.service-block { padding: 5rem 0; border-bottom: 1px solid var(--border); }
.service-block:last-of-type { border-bottom: none; }
.service-block-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.service-block-grid.flip { direction: rtl; }
.service-block-grid.flip > * { direction: ltr; }
.service-block-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 2px; display: block; }
.service-block-label { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 500; display: block; margin-bottom: 0.875rem; }
.service-block-title { font-family: var(--serif); font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 500; color: var(--navy); line-height: 1.15; margin-bottom: 1rem; }
.service-block-text { font-size: 1rem; color: var(--text-mid); font-weight: 300; line-height: 1.8; margin-bottom: 1.75rem; }
.check-list { display: flex; flex-direction: column; gap: 0.625rem; margin-bottom: 2rem; }
.check-list li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9375rem; color: var(--text-mid); font-weight: 300; }
.check-list li::before {
  content: '';
  width: 20px; height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 1.5px solid var(--gold);
  display: block;
  flex-shrink: 0;
}

/* ===== ARTICLES PAGE ===== */
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.article-card { border-radius: 2px; overflow: hidden; border: 1px solid var(--border); background: var(--white); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.article-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(27,43,75,0.1); }
.article-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.article-body { padding: 1.5rem; }
.article-cat { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.625rem; display: block; }
.article-title { font-family: var(--serif); font-size: 1.25rem; font-weight: 500; color: var(--navy); line-height: 1.3; margin-bottom: 0.625rem; }
.article-excerpt { font-size: 0.875rem; color: var(--text-muted); font-weight: 300; line-height: 1.65; }
.articles-cta { text-align: center; margin-top: 3rem; padding-top: 3rem; border-top: 1px solid var(--border); }
.articles-cta-text { font-size: 1.0625rem; color: var(--text-mid); font-weight: 300; margin-bottom: 1.5rem; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.45; transform: scaleY(1); transform-origin: top; }
  50%       { opacity: 1;    transform: scaleY(0.65); transform-origin: top; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-card.wide { grid-column: span 1; aspect-ratio: 3/4; }
  .form-page-grid { gap: 3.5rem; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    inset: 72px 0 0 0;
    background: var(--navy-deep);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; }
  .nav-toggle { display: flex; }

  .section, .section-navy, .section-off, .section-cream { padding: 4rem 0; }
  .steps-grid { grid-template-columns: 1fr; gap: 2rem; }
  .steps-connector { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .perks-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .planner-strip { grid-template-columns: 1fr; padding: 2.5rem 2rem; gap: 2rem; }
  .destinations-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .service-block-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-block-grid.flip { direction: ltr; }
  .form-page-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .cta-block { padding: 5rem 1.5rem; }
  .trust-bar { gap: 1.25rem; }
  .trust-divider { display: none; }
}


/* ===== DESTINATIONS HUB ===== */
.dest-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 3.5rem;
}
.dest-hub-card {
  display: flex;
  flex-direction: column;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  text-decoration: none;
  color: inherit;
}
.dest-hub-card:hover { transform: translateY(-5px); box-shadow: 0 20px 52px rgba(27,43,75,0.13); }
.dest-hub-img-wrap {
  position: relative;
  width: 100%;
  height: 160px;
  overflow: hidden;
  background: var(--navy);
}
.dest-hub-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.65s var(--ease);
  display: block;
}
.dest-hub-card:hover .dest-hub-img { transform: scale(1.06); }
.dest-hub-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,18,30,0.55) 0%, transparent 65%);
}
.dest-hub-tag {
  position: absolute;
  top: 1.125rem;
  left: 1.125rem;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--sans);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 2px;
  z-index: 2;
}
.dest-hub-body {
  padding: 2rem 2.25rem 2.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.dest-hub-name {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.15;
}
.dest-hub-desc {
  font-size: 0.9375rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 1.375rem;
  flex: 1;
}
.dest-hub-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}
.pill {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.07em;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  background: var(--off-white);
  border: 1px solid var(--border);
  color: var(--text-mid);
}
.dest-hub-btn {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.875rem 1.75rem;
  border-radius: 2px;
  text-align: center;
  transition: background 0.2s ease, transform 0.15s ease;
  text-decoration: none;
  align-self: flex-start;
}
.dest-hub-card:hover .dest-hub-btn { background: var(--gold); color: var(--navy); transform: translateY(-1px); }

/* ===== DESTINATION PAGE ===== */
.dest-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: 72px;
}
.dest-hero-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.dest-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8,14,26,0.95) 0%,
    rgba(8,14,26,0.52) 42%,
    rgba(8,14,26,0.1) 100%
  );
}
.dest-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 2rem 3.5rem;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  color: var(--white);
}
.dest-breadcrumb {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.dest-breadcrumb a { color: var(--gold-light); text-decoration: none; }
.dest-breadcrumb a:hover { text-decoration: underline; }
.dest-hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 500;
  line-height: 1.02;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.dest-hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.72);
  font-weight: 300;
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 2.25rem;
}
.dest-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Stats bar */
.dest-stats {
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  display: flex;
  align-items: stretch;
}
.dest-stat {
  flex: 1;
  text-align: center;
  padding: 2rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.dest-stat:last-child { border-right: none; }
.dest-stat-value {
  font-family: var(--serif);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--gold-light);
  line-height: 1.2;
  margin-bottom: 0.4rem;
}
.dest-stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}

/* Overview */
.dest-overview {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 5rem;
  align-items: start;
}
.dest-overview-text p {
  font-size: 1.0625rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 1.375rem;
}
.dest-overview-card {
  background: var(--cream);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 6px;
  padding: 2.5rem 2.25rem;
  position: sticky;
  top: 92px;
}
.dest-overview-card-title {
  font-family: var(--serif);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 1.5rem;
  padding-bottom: 1.125rem;
  border-bottom: 1px solid rgba(201,168,76,0.25);
}
.dest-quick-facts { display: flex; flex-direction: column; margin-bottom: 2rem; }
.dest-quick-fact {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 0.9rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid rgba(27,43,75,0.07);
  gap: 1rem;
}
.dest-quick-fact:last-child { border-bottom: none; }
.dest-quick-fact-label { color: var(--text-muted); font-weight: 300; flex-shrink: 0; min-width: 110px; }
.dest-quick-fact-value { color: var(--navy); font-weight: 500; text-align: right; }
.dest-book-cta {
  display: block;
  background: var(--gold);
  color: var(--navy);
  text-align: center;
  padding: 1.125rem 1.5rem;
  border-radius: 2px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.15s ease;
}
.dest-book-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* Tour cards */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  margin-top: 3.5rem;
}
.tour-card {
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  background: var(--white);
  display: flex;
  flex-direction: row;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tour-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(27,43,75,0.12); }
.tour-card-img-wrap {
  position: relative;
  width: 200px;
  min-width: 200px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--navy);
}
.tour-card-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s var(--ease);
}
.tour-card:hover .tour-card-img { transform: scale(1.08); }
.tour-card-body {
  padding: 1.75rem 1.875rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.tour-card-cat {
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: block;
}
.tour-card-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}
.tour-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.72;
  margin-bottom: 1.375rem;
  flex: 1;
}
.tour-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1.125rem;
  border-top: 1px solid var(--border);
  gap: 1rem;
}
.tour-card-price {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--navy);
  white-space: nowrap;
}
.tour-card-link {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 0.9rem 1.75rem;
  border-radius: 2px;
  transition: background 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
  border: 2px solid var(--gold);
}
.tour-card-link:hover { background: transparent; color: var(--gold); transform: translateY(-1px); }

/* Tip cards */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.tip-card {
  background: var(--white);
  border-radius: 6px;
  padding: 2.25rem;
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
}
.tip-icon { font-size: 1.625rem; margin-bottom: 1rem; display: block; }
.tip-title {
  font-family: var(--serif);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.625rem;
  line-height: 1.3;
}
.tip-text { font-size: 0.9375rem; color: var(--text-mid); font-weight: 300; line-height: 1.75; }

/* CTA band inside section-navy */
.dest-cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
}
.dest-cta-band-title {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 0.875rem;
}
.dest-cta-band-text {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  line-height: 1.8;
  max-width: 560px;
}
.dest-cta-band-actions { flex-shrink: 0; }

/* Responsive */
@media (max-width: 1100px) {
  .dest-overview { gap: 3.5rem; }
  .tour-card-img-wrap { width: 180px; min-width: 180px; }
}
@media (max-width: 900px) {
  .dest-hub-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .dest-hub-img-wrap { height: 220px; }
  .tours-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .dest-overview { grid-template-columns: 1fr; gap: 3rem; }
  .dest-overview-card { position: static; }
  .dest-cta-band { gap: 2.5rem; padding: 3rem 0; }
}
@media (max-width: 640px) {
  .dest-hub-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .dest-hub-img-wrap { height: 240px; }
  .dest-hub-body { padding: 1.5rem; }
  .dest-hub-name { font-size: 1.5rem; }
  .tips-grid { grid-template-columns: 1fr; gap: 1rem; }
  .dest-cta-band { grid-template-columns: 1fr; padding: 2.5rem 0; gap: 1.75rem; }
  .dest-stats { flex-wrap: wrap; }
  .dest-stat { flex: 0 0 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); padding: 1.5rem 1rem; }
  .dest-stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.07); }
  .dest-stat:last-child { border-bottom: none; }
  .dest-hero { min-height: 50vh; }
  .dest-hero-content { padding: 0 1.5rem 3.5rem; }
  .tour-card { flex-direction: column; }
  .tour-card-img-wrap { width: 100%; min-width: 0; height: 220px; }
}
