/* =============================================
   HORIZON VOYAGES — STYLESHEET
   ============================================= */

/* ── Tokens ── */
:root {
  --navy:       #060d1f;
  --navy-mid:   #0c1a36;
  --navy-light: #132147;
  --gold:       #c8a96e;
  --gold-light: #e0c99a;
  --gold-dim:   #8a7148;
  --cream:      #f8f4ee;
  --white:      #ffffff;
  --muted:      rgba(248,244,238,.55);
  --card-bg:    rgba(255,255,255,.04);
  --border:     rgba(200,169,110,.18);
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --shadow:     0 8px 40px rgba(0,0,0,.45);
  --trans:      .35s cubic-bezier(.4,0,.2,1);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--navy);
  color: var(--cream);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Utility ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--cream);
}
.section-title em { font-style: italic; color: var(--gold-light); }
.section-sub { color: var(--muted); max-width: 560px; margin-top: 14px; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-sub { margin: 14px auto 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .06em;
  transition: all var(--trans);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: var(--navy);
  box-shadow: 0 4px 24px rgba(200,169,110,.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200,169,110,.5);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}
.btn-outline {
  border: 1px solid var(--border);
  color: var(--cream);
  backdrop-filter: blur(8px);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost {
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn-ghost-sm {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 500;
  color: var(--white);
  transition: all var(--trans);
  letter-spacing: .06em;
}
.btn-ghost-sm:hover { background: rgba(255,255,255,.15); }
.btn-full { width: 100%; justify-content: center; }

/* ── Reveal animation ── */
[data-reveal] { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].visible { opacity: 1; transform: none; }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: all var(--trans);
}
.navbar.scrolled {
  background: rgba(6,13,31,.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark {
  font-size: 1.4rem;
  color: var(--gold);
  line-height: 1;
}
.logo-text {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: .02em;
}
.logo-text em { color: var(--gold); font-style: italic; }
.nav-links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-size: .82rem;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--trans);
}
.nav-links a:hover { color: var(--gold); }
.nav-cta { margin-left: 8px; padding: 10px 22px; font-size: .8rem; }
/* The in-menu "Book a Consult" item only appears inside the mobile menu
   (desktop already has the separate .nav-cta button). */
.nav-cta-mobile { display: none; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all var(--trans);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(6,13,31,.88) 0%,
    rgba(6,13,31,.6) 50%,
    rgba(6,13,31,.2) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 80px;
}
.hero-eyebrow {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  animation: fadeUp .8s .2s ease both;
}
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeUp .8s .35s ease both;
}
.hero-headline em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  max-width: 520px;
  color: rgba(248,244,238,.8);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 36px;
  animation: fadeUp .8s .5s ease both;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeUp .8s .65s ease both;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: fadeUp .8s .8s ease both;
}
.trust-item { display: flex; flex-direction: column; gap: 2px; }
.trust-num { font-family: var(--font-serif); font-size: 1.6rem; color: var(--gold-light); line-height: 1; }
.trust-label { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.trust-divider { width: 1px; height: 36px; background: var(--border); }
.hero-scroll-hint {
  position: absolute;
  bottom: 36px; right: 48px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: .55;
}
.hero-scroll-hint span { font-size: .65rem; letter-spacing: .18em; text-transform: uppercase; writing-mode: vertical-rl; }
.scroll-line {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: .5; } 50% { opacity: 1; } }
@keyframes fadeUp { from { opacity:0; transform: translateY(24px); } to { opacity:1; transform:none; } }

/* =============================================
   PHILOSOPHY
   ============================================= */
.philosophy {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.phil-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: all var(--trans);
}
.phil-card:hover {
  background: rgba(200,169,110,.06);
  border-color: var(--gold-dim);
  transform: translateY(-4px);
}
.phil-icon { color: var(--gold); margin-bottom: 18px; line-height: 0; }
.phil-icon svg { width: 34px; height: 34px; }
.phil-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 12px;
}
.phil-card p { font-size: .88rem; color: var(--muted); line-height: 1.7; }

/* =============================================
   DESTINATIONS
   ============================================= */
.destinations {
  padding: 100px 0;
  background: var(--navy-mid);
}
.dest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 320px 320px;
  gap: 16px;
}
.dest-large { grid-row: span 2; }
.dest-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}
.dest-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.dest-card:hover img { transform: scale(1.06); }
.dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,13,31,.95) 0%, rgba(6,13,31,.2) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 28px;
  transition: background var(--trans);
}
.dest-card:hover .dest-card-overlay { background: linear-gradient(to top, rgba(6,13,31,.98) 0%, rgba(6,13,31,.5) 70%, rgba(6,13,31,.1) 100%); }
.dest-info { transform: translateY(8px); transition: transform var(--trans); }
.dest-card:hover .dest-info { transform: none; }
.dest-region {
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.dest-info h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 10px;
}
.dest-desc {
  font-size: .82rem;
  color: rgba(248,244,238,.75);
  margin-bottom: 16px;
  max-width: 320px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s .05s ease, transform .35s .05s ease;
}
.dest-card:hover .dest-desc { opacity: 1; transform: none; }

/* =============================================
   EXPERIENCE
   ============================================= */
.experience-section {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy) 100%);
}
.experience-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.exp-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.exp-image img {
  width: 100%;
  height: 560px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow);
}
.exp-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: var(--navy);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 32px rgba(200,169,110,.4);
}
.badge-num { font-family: var(--font-serif); font-size: 2.8rem; font-weight: 600; line-height: 1; }
.badge-txt { font-size: .78rem; font-weight: 500; line-height: 1.4; text-transform: uppercase; letter-spacing: .08em; }
.exp-content { padding-top: 16px; }
.exp-body { color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
.exp-checklist {
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.exp-checklist li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .9rem;
  color: var(--cream);
}
.check-icon { color: var(--gold); font-size: .7rem; flex-shrink: 0; }

/* =============================================
   ITINERARIES
   ============================================= */
.itineraries {
  padding: 100px 0;
  background: var(--navy-mid);
}
.itin-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.itin-card {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--trans);
  position: relative;
}
.itin-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-dim);
  box-shadow: 0 16px 48px rgba(0,0,0,.4);
}
.featured-itin {
  border-color: var(--gold-dim);
  box-shadow: 0 0 0 1px var(--gold-dim), 0 16px 48px rgba(200,169,110,.12);
}
.itin-badge-featured {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gold);
  color: var(--navy);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
}
.itin-header {
  padding: 32px 28px 28px;
  position: relative;
}
.itin-nights {
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 10px;
}
.itin-header h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 6px;
}
.itin-header p { font-size: .8rem; color: rgba(255,255,255,.6); }
.itin-body { padding: 24px 28px 28px; }
.itin-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .84rem;
  color: var(--muted);
  margin-bottom: 10px;
}
.itin-detail span:first-child { display: inline-flex; color: var(--gold); }
.itin-detail span:first-child svg { width: 17px; height: 17px; }
.itin-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 18px 0 22px;
}
.tag {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .06em;
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid var(--border);
  color: var(--muted);
}
.itin-travefy-note {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(200,169,110,.07);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}
.travefy-icon { color: var(--gold); flex-shrink: 0; line-height: 0; }
.travefy-icon svg { width: 34px; height: 34px; }
.itin-travefy-note p { font-size: .88rem; color: var(--muted); line-height: 1.7; }
.itin-travefy-note strong { color: var(--gold-light); }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
  overflow: hidden;
}
.testi-track-wrap { position: relative; }
.testi-track {
  display: flex;
  gap: 24px;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.testi-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px;
  min-width: calc(50% - 12px);
  flex-shrink: 0;
}
.testi-stars { color: var(--gold); font-size: 1rem; letter-spacing: 3px; margin-bottom: 20px; }
.testi-quote {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.7;
  margin-bottom: 28px;
}
.testi-author { display: flex; align-items: center; gap: 16px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dim), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem;
  font-weight: 600;
  color: var(--gold-light);
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.testi-author strong { font-size: .88rem; color: var(--cream); display: block; margin-bottom: 2px; }
.testi-author span { font-size: .75rem; color: var(--muted); }
.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}
.testi-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--cream);
  font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--trans);
}
.testi-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(200,169,110,.08); }
.testi-dots { display: flex; gap: 8px; }
.testi-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--border);
  transition: all var(--trans);
  cursor: pointer;
}
.testi-dot.active { background: var(--gold); width: 20px; border-radius: 3px; }

/* =============================================
   ADVISOR
   ============================================= */
.advisor-section {
  padding: 120px 0;
  background: var(--navy-mid);
}
.advisor-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.advisor-img-wrap {
  position: relative;
}
.advisor-img-wrap img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.advisor-credentials {
  position: absolute;
  bottom: -20px; left: -20px;
  background: rgba(6,13,31,.95);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  backdrop-filter: blur(12px);
}
.cred-item { text-align: center; }
.cred-item strong { display: block; font-family: var(--font-serif); font-size: 1.1rem; color: var(--gold); }
.cred-item span { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.cred-divider { width: 1px; height: 32px; background: var(--border); }
.advisor-body { color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
.advisor-body strong { color: var(--cream); }
.advisor-actions { margin-top: 32px; }

/* =============================================
   CONSULT
   ============================================= */
.consult-section {
  position: relative;
  padding: 120px 0;
  background: var(--navy);
  overflow: hidden;
}
.consult-bg { position: absolute; inset: 0; pointer-events: none; }
.consult-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .18;
}
.consult-glow-1 {
  width: 600px; height: 600px;
  background: var(--gold);
  top: -200px; left: -200px;
}
.consult-glow-2 {
  width: 500px; height: 500px;
  background: #5b2d8e;
  bottom: -150px; right: -150px;
}
.consult-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.section-eyebrow.light { color: var(--gold-light); }
.section-title.light { color: var(--white); }
.consult-body { color: rgba(248,244,238,.75); line-height: 1.8; margin-top: 20px; margin-bottom: 28px; }
.consult-bullets {
  display: flex; flex-direction: column; gap: 12px;
}
.consult-bullets li { font-size: .88rem; color: var(--cream); display: flex; gap: 10px; }
.widget-card {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(20px);
}
.widget-header {
  background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
  padding: 28px 32px 24px;
  border-bottom: 1px solid var(--border);
}
.widget-logo {
  font-family: var(--font-serif);
  font-size: .95rem;
  color: var(--gold);
  margin-bottom: 10px;
}
.widget-header h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 4px;
}
.widget-header p { font-size: .8rem; color: var(--muted); }
.consult-form { padding: 28px 32px 32px; display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: .88rem;
  color: var(--cream);
  outline: none;
  transition: border-color var(--trans), background var(--trans);
  width: 100%;
}
.form-group select { cursor: pointer; }
.form-group select option { background: var(--navy-mid); color: var(--cream); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(248,244,238,.3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-dim);
  background: rgba(200,169,110,.05);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-note { font-size: .78rem; color: var(--muted); text-align: center; }
.form-captcha { display: flex; justify-content: center; margin: 4px 0; }
.form-captcha:empty { display: none; }
.form-error {
  font-size: .85rem;
  color: #e05c5c;
  text-align: center;
  margin: 4px 0 0;
}
.inline-link { color: var(--gold); border-bottom: 1px solid rgba(200,169,110,.3); }
.inline-link:hover { color: var(--gold-light); }
.form-success {
  padding: 48px 32px;
  text-align: center;
}
.success-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}
.form-success h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--cream);
  margin-bottom: 12px;
}
.form-success p { color: var(--muted); line-height: 1.7; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--navy);
  border-top: 1px solid var(--border);
  padding: 72px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: .82rem; color: var(--muted); line-height: 1.7; max-width: 280px; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: all var(--trans);
}
.social-btn { color: var(--cream); }
.social-btn svg { width: 18px; height: 18px; }
.social-btn:hover { border-color: var(--gold); background: rgba(200,169,110,.08); color: var(--gold-light); }
.footer-links h4 {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: .84rem; color: var(--muted); transition: color var(--trans); }
.footer-links a:hover { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: .78rem; color: var(--muted); }
.footer-bottom a { color: var(--muted); transition: color var(--trans); }
.footer-bottom a:hover { color: var(--gold); }
.footer-host { font-size: .75rem; }
.footer-host strong { color: var(--gold-light); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .philosophy-grid { grid-template-columns: repeat(2, 1fr); }
  .experience-inner,
  .advisor-inner { grid-template-columns: 1fr; gap: 48px; }
  .exp-image img,
  .advisor-img-wrap img { height: 400px; }
  .exp-badge { bottom: -16px; right: 16px; }
  .advisor-credentials { bottom: -16px; left: 16px; }
  .consult-inner { grid-template-columns: 1fr; gap: 56px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(6,13,31,.97);
    backdrop-filter: blur(20px);
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
  }
  .nav-links.mobile-open a { font-size: 1.2rem; }
  .nav-links.mobile-open .nav-cta-mobile { display: block; margin-top: 12px; }
  .nav-links.mobile-open .nav-cta-mobile a { font-size: 1rem; }
  /* The menu overlay is position:fixed inside the navbar. Once scrolled, the
     navbar gains a backdrop-filter, which makes it the containing block for the
     fixed menu — trapping it in a ~72px sliver and freezing the page. Neutralise
     the filter (instantly, no transition) while the menu is open. */
  body.nav-open #navbar {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transition: none !important;
  }
  .hero-content { padding-top: 100px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .dest-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .dest-large { grid-row: auto; height: 380px; }
  .dest-card { height: 260px; }
  .itin-grid { grid-template-columns: 1fr; }
  .testi-card { min-width: calc(100% - 0px); }
  .philosophy-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .experience-inner { grid-template-columns: 1fr; }
  .advisor-inner { grid-template-columns: 1fr; }
  .hero-scroll-hint { display: none; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 2.4rem; }
  .section-title { font-size: 1.8rem; }
  .exp-badge { position: static; margin-top: 16px; }
  .advisor-credentials { position: static; margin-top: 16px; }
  .consult-form { padding: 20px; }
  .widget-header { padding: 20px; }
  /* Keep the chat window inside narrow screens (fixed 350px overflowed < ~382px). */
  .chat-window { width: calc(100vw - 48px); max-width: 350px; }
}

/* =============================================
   AI CHAT WIDGET
   ============================================= */
.chat-widget {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}
.chat-widget-toggle {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  border: none;
  box-shadow: 0 4px 24px rgba(200,169,110,.3);
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--trans), box-shadow var(--trans);
  cursor: pointer;
}
.chat-widget-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200,169,110,.5);
}
.chat-icon { color: #0a1428; line-height: 0; }
.chat-icon svg { width: 26px; height: 26px; }
.chat-callback { padding: 8px 14px 0; }
.chat-callback-btn {
  width: 100%;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--gold); color: #0a1428; border: none;
  border-radius: var(--radius-md); padding: 9px 12px;
  font-size: .82rem; font-weight: 600; cursor: pointer;
  transition: background var(--trans);
}
.chat-callback-btn:hover { background: var(--gold-dim); }
.chat-callback-btn svg { width: 16px; height: 16px; }
.chat-msg .cb-name, .chat-msg .cb-phone {
  display: block; width: 100%; margin: 6px 0; padding: 8px 10px;
  border: 1px solid rgba(255,255,255,.16); border-radius: 8px;
  background: rgba(255,255,255,.07); color: #e8eef6; font-size: .85rem;
}
.chat-msg .cb-name::placeholder, .chat-msg .cb-phone::placeholder { color: rgba(232,238,246,.5); }
.chat-msg .cb-submit {
  width: 100%; margin-top: 6px; background: var(--gold); color: #0a1428;
  border: none; border-radius: var(--radius-md); padding: 9px;
  font-weight: 600; cursor: pointer; font-size: .85rem;
}
.chat-msg .cb-submit:disabled { opacity: .6; cursor: default; }
.chat-msg .cb-error { color: #e05c5c; font-size: .78rem; margin: 6px 0 0; }
.chat-window {
  width: 350px;
  max-height: 500px;
  background: rgba(6,13,31,.95);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  transition: opacity .3s ease, transform .3s ease;
}
.chat-window[hidden] {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  display: flex; /* override hidden default to allow transition */
}
.chat-header {
  background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.chat-header h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--cream);
}
.chat-close { color: var(--muted); font-size: 1.2rem; background: none; border: none; cursor: pointer; }
.chat-close:hover { color: var(--gold); }
.chat-messages {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 250px;
}
.chat-msg { display: flex; flex-direction: column; max-width: 85%; }
.chat-msg.user-msg { align-self: flex-end; align-items: flex-end; }
.chat-msg.ai-msg { align-self: flex-start; align-items: flex-start; }
.msg-content {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: .88rem;
  line-height: 1.5;
}
.user-msg .msg-content {
  background: var(--gold-dim);
  color: var(--navy);
  border-bottom-right-radius: 2px;
}
.ai-msg .msg-content {
  background: var(--navy-light);
  color: var(--cream);
  border: 1px solid var(--border);
  border-bottom-left-radius: 2px;
}
.ai-msg.thought-msg .msg-content {
  background: transparent;
  border: none;
  color: var(--muted);
  font-style: italic;
  font-size: .8rem;
}
.chat-captcha {
  padding: 8px 12px 0;
  display: flex;
  justify-content: center;
}
.chat-captcha:empty {
  display: none;
}
.chat-input-area {
  padding: 12px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 8px;
  background: var(--navy-mid);
}
.chat-input-area input {
  flex: 1;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  color: var(--cream);
  outline: none;
}
.chat-input-area input:focus { border-color: var(--gold); }
.chat-input-area button {
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: var(--radius-sm);
  padding: 0 16px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background var(--trans);
}
.chat-input-area button:hover { background: var(--gold-light); }
