/* ============================================================
   China Journey Studio — Stylesheet
   Design: Luxury editorial travel, warm navy/gold palette
   Fonts: Cormorant Garamond (display) + DM Sans (body) + Cinzel (logo)
   ============================================================ */

/* ── CSS CUSTOM PROPERTIES ── */
:root {
  /* Colors */
  --navy:       #19264A;
  --navy-mid:   #243160;
  --navy-light: #354580;
  --gold:       #B8892A;
  --gold-light: #D4A84B;
  --gold-muted: #C9A55A;
  --cream:      #FAFAF6;
  --beige:      #F3EDE3;
  --beige-mid:  #EAE2D6;
  --sand:       #D4C9B5;
  --text:       #1E1E1E;
  --text-mid:   #4A4A4A;
  --text-light: #7A7068;
  --white:      #FFFFFF;
  --border:     rgba(25, 38, 74, 0.10);
  --border-gold: rgba(184, 137, 42, 0.25);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, sans-serif;
  --font-logo:    'Cinzel', Georgia, serif;

  /* Sizing */
  --container: 1070px;
  --container-wide: 1150px;
  --header-h: 72px;

  /* Easing */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.reveal.revealed { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ── LAYOUT ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 400;
  color: var(--navy);
}
h1 { font-size: clamp(2.6rem, 5vw, 4.5rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; font-weight: 500; }

em { font-style: italic; color: var(--gold); }

p { color: var(--text-mid); }

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-header {
  margin-bottom: 56px;
}
.section-header h2 { margin-bottom: 14px; }
.section-header .section-sub { font-size: 1.05rem; max-width: 520px; }

.text-link {
  color: var(--gold);
  border-bottom: 1px solid var(--border-gold);
  transition: color 0.2s, border-color 0.2s;
}
.text-link:hover { color: var(--navy); border-color: var(--navy); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.25s var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
  border: 1.5px solid var(--navy);
}
.btn-primary:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(25, 38, 74, 0.25);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--navy);
  background: rgba(25, 38, 74, 0.04);
}
.btn-lg { padding: 16px 40px; font-size: 0.9rem; }

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(250, 250, 246, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.site-header.scrolled {
  border-color: var(--border);
  box-shadow: 0 2px 24px rgba(25, 38, 74, 0.06);
}
.header-inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark {
  font-family: var(--font-logo);
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
}
.logo-text {
  font-family: var(--font-logo);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  color: var(--navy);
  font-weight: 600;
}
.logo--light .logo-text { color: rgba(255,255,255,0.85); }
.logo--light .logo-mark { color: var(--gold-light); }

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
}
.main-nav a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-mid);
  padding: 6px 12px;
  border-radius: 3px;
  transition: color 0.2s;
}
.main-nav a:hover { color: var(--navy); }
.main-nav .nav-cta {
  background: var(--navy);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 3px;
  transition: background 0.2s;
}
.main-nav .nav-cta:hover { background: var(--navy-mid); }

/* ── LANGUAGE SWITCHER ── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(25, 38, 74, 0.06);
  border-radius: 4px;
  padding: 4px;
}
.lang-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 32px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-light);
  background: transparent;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s;
}
.lang-btn:hover {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.6);
}
.lang-btn.active {
  color: var(--white);
  background: var(--navy);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--navy);
  border-radius: 1px;
  transition: all 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(35, 55, 100, 0.55) 0%, transparent 70%),
    linear-gradient(160deg, rgba(26, 39, 68, 0.7) 0%, rgba(42, 61, 110, 0.5) 40%, rgba(61, 90, 138, 0.3) 65%, rgba(122, 90, 42, 0.4) 100%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 39px,
      rgba(255,255,255,0.6) 39px,
      rgba(255,255,255,0.6) 40px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 39px,
      rgba(255,255,255,0.6) 39px,
      rgba(255,255,255,0.6) 40px
    );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: calc(var(--header-h) + 64px) 32px 0;
  width: 100%;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  display: block;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  max-width: 720px;
  margin-bottom: 24px;
}
.hero-headline em { color: var(--gold-light); font-style: italic; }
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  right: 48px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.6); transform-origin: top; }
}

/* ── INTRO SECTION ── */
.intro-section {
  padding: 100px 0;
  background: var(--white);
}
.intro-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: start;
}
.intro-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 8px;
}
.intro-text {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.55;
  margin-bottom: 48px;
}
.intro-stats {
  display: flex;
  gap: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--navy);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-light);
  text-transform: uppercase;
}

/* ── DESTINATIONS ── */
.destinations-section {
  padding: 100px 0;
  background: var(--beige);
}
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.dest-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  cursor: default;
}
.dest-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(25, 38, 74, 0.12);
}
.dest-visual {
  height: 180px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* Destination images */
.dest-beijing   { background-image: url('images/dest-beijing.jpg'); }
.dest-shanghai  { background-image: url('images/dest-shanghai.jpg'); }
.dest-xian      { background-image: url('images/dest-xian.jpg'); }
.dest-chengdu   { background-image: url('images/dest-chengdu.jpg'); }
.dest-guilin    { background-image: url('images/dest-guilin.jpg'); }
.dest-zhangjiajie { background-image: url('images/dest-zhangjiajie.jpg'); }
.dest-yunnan    { background-image: url('images/dest-yunnan.jpg'); }
.dest-tibet     { background-image: url('images/dest-tibet.jpg'); }
.dest-dunhuang  { background-image: url('images/dest-silkroad.jpg'); }

.dest-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.2) 100%);
}
/* Decorative SVG motif on each destination card */
.dest-visual::before {
  content: '';
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  z-index: 1;
}

.dest-content {
  padding: 24px;
}
.dest-content h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--navy);
}
.dest-highlights {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 6px;
}
.dest-bestfor {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 12px;
  font-style: italic;
}
.dest-content p:last-of-type {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-mid);
}
[data-delay="0"] { transition-delay: 0s; }
[data-delay="1"] { transition-delay: 0.08s; }
[data-delay="2"] { transition-delay: 0.16s; }
[data-delay="3"] { transition-delay: 0.24s; }

/* ── SAMPLE TRIPS ── */
.trips-section {
  padding: 100px 0;
  background: var(--navy);
}
.trips-section .section-eyebrow { color: var(--gold-light); }
.trips-section h2 { color: var(--white); }
.trips-section .section-sub { color: rgba(255,255,255,0.55); }
.trips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.trip-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 4px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease-out);
}
.trip-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-4px);
}
.trip-card--featured {
  background: var(--white);
  border-color: var(--white);
}
.trip-card--featured:hover {
  background: var(--white);
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.3);
}
.trip-card--featured .trip-title { color: var(--navy); }
.trip-card--featured .trip-ideal { color: var(--text-light); }
.trip-card--featured .trip-dest-label { color: var(--text-light); }
.trip-card--featured .trip-destinations p { color: var(--navy); }
.trip-card--featured .trip-highlights li { color: var(--text-mid); }
.trip-card--featured .trip-highlights li::before { color: var(--gold); }

.trip-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.trip-duration {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.trip-card--featured .trip-duration { color: var(--gold); }
.trip-badge {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.6);
}
.trip-badge--gold {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(184, 137, 42, 0.08);
}
.trip-title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 6px;
}
.trip-ideal {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}
.trip-destinations {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.trip-card--featured .trip-destinations { border-color: var(--border); }
.trip-dest-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  display: block;
  margin-bottom: 6px;
}
.trip-destinations p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.75);
}
.trip-highlights {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}
.trip-highlights li {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.65);
  padding-left: 16px;
  position: relative;
}
.trip-highlights li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold-light);
  font-size: 0.8rem;
}
.trip-btn { align-self: flex-start; }

/* ── HOW IT WORKS ── */
.how-section {
  padding: 100px 0;
  background: var(--white);
}
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.step {
  padding-right: 32px;
  padding-top: 32px;
  border-top: 2px solid var(--border);
  position: relative;
}
.step:last-child { padding-right: 0; }
.step-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.5;
}
.step-connector {
  position: absolute;
  top: -2px;
  right: -1px;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateY(-50%);
}
.step-body h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 500;
}
.step-body p { font-size: 0.88rem; line-height: 1.65; }

/* ── WHY US ── */
.why-section {
  padding: 100px 0;
  background: var(--beige);
}
.why-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}
.why-left h2 { margin-bottom: 16px; }
.why-left p { margin-bottom: 32px; font-size: 1rem; line-height: 1.7; }
.why-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.why-item {
  background: var(--white);
  padding: 28px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: background 0.2s;
}
.why-item:hover { background: var(--cream); }
.why-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--beige);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-top: 2px;
}
.why-item h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 6px; color: var(--navy); font-family: var(--font-body); }
.why-item p { font-size: 0.84rem; line-height: 1.6; }

/* ── INQUIRY / FORM ── */
.inquiry-section {
  padding: 100px 0;
  background: var(--cream);
}
.inquiry-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.inquiry-header h2 { margin-bottom: 14px; }
.inquiry-header p { font-size: 1rem; }

.inquiry-form {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  padding: 56px 56px;
  border-radius: 4px;
  box-shadow: 0 4px 48px rgba(25, 38, 74, 0.07);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.form-row { display: flex; gap: 24px; }
.form-row--2 > * { flex: 1; min-width: 0; }
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.form-field label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
}
.label-hint {
  font-size: 0.72rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-light);
}
.req { color: var(--gold); }

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--cream);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234A4A4A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(25, 38, 74, 0.07);
  background: var(--white);
}
.form-field input.error,
.form-field select.error {
  border-color: #C0392B;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.08);
}
.field-error {
  font-size: 0.78rem;
  color: #C0392B;
  min-height: 1em;
}
.form-field textarea { resize: vertical; min-height: 110px; }

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1.5px solid var(--border);
  border-radius: 3px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-mid);
  transition: all 0.2s;
  background: var(--cream);
  user-select: none;
}
.checkbox-label:hover {
  border-color: var(--navy);
  background: var(--white);
}
.checkbox-label input[type="checkbox"] {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  accent-color: var(--navy);
  cursor: pointer;
}
.checkbox-label:has(input:checked) {
  border-color: var(--navy);
  background: rgba(25, 38, 74, 0.04);
  color: var(--navy);
}

.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 8px;
  flex-wrap: wrap;
}
.form-note {
  font-size: 0.78rem;
  color: var(--text-light);
  max-width: 320px;
  line-height: 1.5;
}

.form-success {
  text-align: center;
  padding: 48px 24px;
}
.success-icon { color: var(--gold); margin: 0 auto 16px; }
.form-success h3 { font-size: 1.8rem; margin-bottom: 10px; }
.form-success p { font-size: 1rem; }

/* ── FAQ ── */
.faq-section {
  padding: 100px 0;
  background: var(--white);
}
.faq-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
}
.faq-left h2 { margin-bottom: 16px; }
.faq-left p { font-size: 0.92rem; line-height: 1.7; }
.faq-right {
  border-top: 1px solid var(--border);
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 400;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  cursor: pointer;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  position: relative;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--navy);
  border-radius: 1px;
  transition: all 0.3s;
}
.faq-icon::before { width: 8px; height: 1.5px; }
.faq-icon::after  { width: 1.5px; height: 8px; }
.faq-question[aria-expanded="true"] .faq-icon {
  border-color: var(--navy);
  background: var(--navy);
}
.faq-question[aria-expanded="true"] .faq-icon::before { background: var(--white); }
.faq-question[aria-expanded="true"] .faq-icon::after  { opacity: 0; transform: rotate(90deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease-in-out);
}
.faq-answer p {
  padding-bottom: 22px;
  font-size: 0.92rem;
  line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 300px; }

/* ── CONTACT ── */
.contact-section {
  padding: 80px 0;
  background: var(--navy);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.contact-text .section-eyebrow { color: var(--gold-light); }
.contact-text h2 { color: var(--white); margin-bottom: 14px; }
.contact-text p { color: rgba(255,255,255,0.6); font-size: 1rem; }
.contact-channels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.contact-channel {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 20px;
  background: rgba(255,255,255,0.04);
  border-radius: 3px;
  transition: background 0.2s, transform 0.2s;
}
.contact-channel:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}
.channel-icon {
  flex-shrink: 0;
  color: var(--gold-light);
  margin-top: 2px;
}
.channel-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}
.channel-value {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.82);
}

/* ── FOOTER ── */
.site-footer {
  background: #10192E;
  padding: 56px 0 32px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  margin-top: 10px;
}
.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 4px;
  justify-content: flex-end;
}
.footer-nav a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  padding: 6px 12px;
  border-radius: 3px;
  transition: color 0.2s;
}
.footer-nav a:hover { color: rgba(255,255,255,0.85); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ── RESPONSIVE ── */

@media (max-width: 1024px) {
  .intro-grid { grid-template-columns: 160px 1fr; gap: 32px; }
  .why-grid { grid-template-columns: 300px 1fr; gap: 48px; }
  .faq-grid { grid-template-columns: 220px 1fr; gap: 48px; }
  .contact-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .steps-row { grid-template-columns: repeat(2, 1fr); gap: 40px 48px; }
  .step { border-top: 2px solid var(--border); }
  .step-connector { display: none; }
  .destinations-grid { grid-template-columns: repeat(3, 1fr); }
  .trips-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
  :root { --header-h: 64px; }
  .container { padding: 0 24px; }

  .main-nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 24px;
    box-shadow: 0 8px 24px rgba(25, 38, 74, 0.1);
  }
  .header-inner { 
    padding: 0 16px; 
    justify-content: space-between;
  }
  
  .site-header {
    position: relative;
    z-index: 999;
  }
  
  .header-inner > *:last-child {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .main-nav a { padding: 10px 16px; display: block; }
  .main-nav .nav-cta { text-align: center; margin-top: 8px; }
  .nav-toggle { 
    display: flex; 
    z-index: 100;
    position: relative;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 6px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }
  
  .nav-toggle span {
    background: var(--navy) !important;
    width: 20px;
    height: 2px;
    border-radius: 1px;
  }
  
  .lang-switcher {
    position: relative;
    z-index: 100;
  }
  
  .main-nav .lang-switcher {
    margin-bottom: 12px;
    margin-left: 16px;
  }
  .main-nav .lang-btn {
    width: 40px;
    height: 36px;
    font-size: 0.75rem;
  }

  .hero-scroll-hint { display: none; }
  .hero { min-height: 90svh; padding-bottom: 60px; }

  .intro-grid { grid-template-columns: 1fr; gap: 24px; }
  .intro-label { padding-top: 0; }
  .intro-stats { gap: 32px; flex-wrap: wrap; }

  .destinations-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .trips-grid { grid-template-columns: 1fr; gap: 20px; max-width: 480px; margin: 0 auto; }
  .trip-card--featured { order: -1; }

  .steps-row { grid-template-columns: 1fr; gap: 32px; }
  .step { padding-right: 0; border-top: none; border-left: 2px solid var(--border); padding-left: 24px; padding-top: 0; }

  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-items { grid-template-columns: 1fr; }

  .inquiry-form { padding: 36px 28px; }
  .form-row--2 { flex-direction: column; }

  .faq-grid { grid-template-columns: 1fr; gap: 40px; }

  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-channels { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-nav ul { justify-content: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (max-width: 560px) {
  .destinations-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 2.4rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .form-footer { flex-direction: column; align-items: flex-start; }
  .form-footer .btn { width: 100%; justify-content: center; }
  .inquiry-form { padding: 28px 20px; }
  .checkbox-group { flex-direction: column; }
  .checkbox-label { justify-content: flex-start; }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ── PRINT ── */
@media print {
  .site-header, .hero-scroll-hint, .nav-toggle { display: none; }
  .hero { min-height: auto; padding: 40px 0; }
  .hero-bg { display: none; }
  .hero-content { color: #000; }
}
