/* ═══════════════════════════════════════════════════════
   CRYSTAL MILLER · MAGICAL VACATION PLANNER
   style.css — shared stylesheet for all pages
═══════════════════════════════════════════════════════ */

/* ─── TOKENS ──────────────────────────────────────────── */
:root {
  --red:        #C8102E;
  --red-dark:   #9B0C22;
  --red-soft:   #F5D5DB;
  --black:      #0F0F0F;
  --charcoal:   #2B2B2B;
  --white:      #FFFFFF;
  --off-white:  #FDF7F7;
  --glass:      rgba(255,255,255,0.18);
  --glass-dark: rgba(15,15,15,0.45);
  --shadow:     0 8px 40px rgba(0,0,0,0.18);
  --shadow-red: 0 8px 32px rgba(200,16,46,0.22);
}

/* ─── RESET & BASE ────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--off-white);
  color: var(--charcoal);
  overflow-x: hidden;
  opacity: 0;
  transition: opacity 0.22s ease;
}
body.page-visible { opacity: 1; }
body.page-exit    { opacity: 0; transition: opacity 0.16s ease; }

/* ─── SCROLLBAR ──────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 99px; }

/* ─── NAV ─────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(200,16,46,0.12);
  transition: box-shadow 0.3s ease;
}
nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.1); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 36px; height: 36px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: var(--shadow-red);
}
.nav-logo-icon img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 50%;
}
.nav-logo-text { line-height: 1.1; }
.nav-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 16px; font-weight: 700;
  color: var(--black);
  letter-spacing: 0.01em;
}
.nav-logo-sub {
  font-size: 10px; font-weight: 500;
  color: var(--red);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
  transition: color 0.25s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  border-radius: 99px;
  transition: width 0.3s ease;
}
.nav-links a:hover       { color: var(--red); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active      { color: var(--red); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--red);
  color: white !important;
  padding: 10px 22px;
  border-radius: 99px;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em;
  box-shadow: var(--shadow-red);
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s !important;
}
.nav-cta:hover {
  background: var(--red-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 12px 36px rgba(200,16,46,0.35) !important;
}
.nav-cta::after { display: none !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--charcoal);
  border-radius: 99px;
  transition: all 0.3s;
}

/* ─── MOBILE NAV ─────────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  z-index: 998;
  flex-direction: column;
  padding: 24px 32px;
  gap: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border-bottom: 1px solid rgba(200,16,46,0.1);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  text-decoration: none;
  font-size: 16px; font-weight: 500;
  color: var(--charcoal);
  transition: color 0.2s;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.mobile-nav a:hover { color: var(--red); }
.mobile-nav a:last-child { border-bottom: none; }

/* ─── SECTION COMMONS ────────────────────────────────── */
.section-eyebrow {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow::before {
  content: '';
  width: 32px; height: 1.5px;
  background: var(--red);
  border-radius: 99px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--black);
  line-height: 1.12;
  margin-bottom: 18px;
}
.section-title em { font-style: italic; color: var(--red); }
.section-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 300;
  color: #555;
  line-height: 1.7;
  max-width: 580px;
}

/* ─── FOOTER ─────────────────────────────────────────── */
footer {
  background: var(--black);
  color: white;
  padding: 80px 60px 40px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 64px;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a {
  text-decoration: none;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s, padding-left 0.2s;
}
.footer-col ul a:hover { color: white; padding-left: 4px; }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.07); margin-bottom: 32px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy { font-size: 12.5px; color: rgba(255,255,255,0.35); }
.footer-copy span { color: var(--red); }
.footer-social { display: flex; gap: 12px; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  color: rgba(255,255,255,0.5);
  font-size: 15px;
  transition: background 0.25s, color 0.25s, transform 0.2s;
  border: 1px solid rgba(255,255,255,0.1);
}
.social-btn:hover { background: var(--red); color: white; border-color: var(--red); transform: translateY(-2px); }

/* ─── ANIMATIONS ─────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }


/* ═══════════════════════════════════════════════════════
   INDEX PAGE
═══════════════════════════════════════════════════════ */

/* ─── HERO SLIDESHOW ─────────────────────────────────── */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.4s ease-in-out, transform 8s ease-out;
}
.slide.active { opacity: 1; transform: scale(1.0); }
.slide-1, .slide-2, .slide-3, .slide-4, .slide-5 {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.4s ease-in-out, transform 8s ease-out;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.08) 0%, transparent 40%, rgba(0,0,0,0.55) 100%);
  z-index: 2;
}
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 80px;
  padding-top: 72px;
}
.hero-eyebrow {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fadeUp 1s ease 0.2s both;
}
.hero-eyebrow::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--red);
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 700;
  color: white;
  line-height: 1.05;
  margin-bottom: 24px;
  max-width: 700px;
  animation: fadeUp 1s ease 0.4s both;
}
.hero-title em { font-style: italic; color: var(--red-soft); }
.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  max-width: 480px;
  line-height: 1.6;
  margin-bottom: 44px;
  animation: fadeUp 1s ease 0.6s both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 1s ease 0.8s both;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: white;
  text-decoration: none;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 99px;
  box-shadow: var(--shadow-red);
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(200,16,46,0.4);
}
.btn-primary svg { transition: transform 0.25s; }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.35);
  color: white;
  text-decoration: none;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 99px;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}
.hero-badge {
  position: absolute;
  bottom: 40px; right: 60px;
  z-index: 4;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 20px;
  padding: 18px 24px;
  color: white;
  text-align: center;
  animation: fadeUp 1s ease 1s both;
}
.hero-badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px; font-weight: 700;
  color: white;
  line-height: 1;
}
.hero-badge-label {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-top: 4px;
}
.slide-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 8px;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 99px;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: width 0.35s ease, background 0.35s ease;
}
.dot.active { width: 28px; background: white; }
.slide-label {
  position: absolute;
  bottom: 48px; left: 80px;
  z-index: 4;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* ─── QUOTE BANNER ───────────────────────────────────── */
#quote-banner {
  background: var(--red);
  padding: 0;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.quote-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 48px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.quote-text { color: white; }
.quote-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  margin-bottom: 6px;
}
.quote-text p { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.8); }
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--red);
  text-decoration: none;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 99px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(0,0,0,0.22); }

/* ─── SECTION COMMONS (index) ────────────────────────── */
section { padding: 100px 60px; }
.section-inner { max-width: 1200px; margin: 0 auto; }

/* ─── ABOUT ──────────────────────────────────────────── */
#about { background: white; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-frame {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
  min-height: 520px;
  background: var(--red-soft);
  position: relative;
}
.about-img-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-carousel {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.about-carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  background: var(--red-soft);
}
.about-carousel-slide.active { opacity: 1; }
.about-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.about-carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 3;
  padding: 5px 8px;
  border-radius: 99px;
  background: rgba(15,15,15,0.35);
  backdrop-filter: blur(6px);
}
.about-carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 99px;
  border: none;
  padding: 0;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}
.about-carousel-dot.active {
  width: 20px;
  background: white;
}
.about-img-placeholder {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 16px;
  color: var(--red);
  background: linear-gradient(145deg, #fff0f2 0%, #fce4e8 100%);
}
.about-img-placeholder svg { opacity: 0.4; }
.about-img-placeholder span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-style: italic; opacity: 0.55;
}
.about-img-wrap { position: relative; }
.about-accent-card {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--red);
  color: white;
  border-radius: 16px;
  padding: 10px;
  box-shadow: var(--shadow-red);
  display: flex; align-items: center; justify-content: center;
  min-width: 150px; min-height: 60px;
}
.about-accent-logo { max-width: 132px; max-height: 38px; width: auto; height: auto; object-fit: contain; display: block; }
.about-accent-fallback { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.85; text-align: center; }
.about-accent-num { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; line-height: 1; }
.about-accent-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.85; margin-top: 4px; }
.about-text { padding-left: 20px; }
.about-text .section-body { max-width: 100%; margin-bottom: 16px; }
.about-text .section-body:last-of-type { margin-bottom: 0; }

/* ─── SERVICES ───────────────────────────────────────── */
#services { background: var(--off-white); }
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  gap: 40px;
}
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: white;
  border-radius: 20px;
  padding: 36px 32px;
  border: 1px solid rgba(200,16,46,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); border-color: rgba(200,16,46,0.18); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px;
  background: var(--red-soft);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 22px;
  transition: background 0.3s, transform 0.3s;
}
.service-card:hover .service-icon { background: var(--red); transform: scale(1.08); }
.service-title { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--black); margin-bottom: 10px; }
.service-desc { font-size: 14px; color: #777; line-height: 1.7; }

/* ─── PROCESS ────────────────────────────────────────── */
#process { background: var(--black); color: white; }
#process .section-title   { color: white; }
#process .section-body    { color: rgba(255,255,255,0.6); }
#process .section-eyebrow { color: var(--red-soft); }
#process .section-eyebrow::before { background: var(--red-soft); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 60px; }
.process-step {
  padding: 40px 32px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  transition: background 0.3s;
  position: relative;
}
.process-step:hover { background: rgba(255,255,255,0.07); }
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px; font-weight: 700;
  color: var(--red);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 16px;
  transition: opacity 0.3s;
}
.process-step:hover .step-num { opacity: 0.7; }
.step-title { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600; color: white; margin-bottom: 10px; }
.step-desc { font-size: 13.5px; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* ─── DESTINATIONS ───────────────────────────────────── */
#destinations { background: white; }
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
  margin-top: 52px;
}
.dest-card { border-radius: 20px; overflow: hidden; position: relative; cursor: pointer; aspect-ratio: 4/3; background: var(--red-soft); }
.dest-card:first-child { grid-column: 1 / 3; aspect-ratio: 16/9; }
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.dest-card:hover img { transform: scale(1.06); }
.dest-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 55%); transition: opacity 0.3s; }
.dest-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; }
.dest-name { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: white; }
.dest-tag { font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-top: 4px; }
.dest-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--red-soft), #f9c5cc);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px;
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-style: italic;
  color: var(--red); opacity: 0.7;
}
.dest-placeholder svg { opacity: 0.5; }

/* ─── TESTIMONIALS ───────────────────────────────────── */
#testimonials { background: var(--off-white); }
.testimonials-header { text-align: center; margin-bottom: 60px; }
.testimonials-header .section-eyebrow { justify-content: center; }
.testimonials-header .section-eyebrow::before { display: none; }
.testimonials-header .section-eyebrow::after {
  content: '';
  width: 32px; height: 1.5px;
  background: var(--red);
  border-radius: 99px;
}
.trips-booked-count { font-style: normal; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: white;
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.testi-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.testi-quote { font-size: 48px; color: var(--red); font-family: Georgia, serif; line-height: 0.8; margin-bottom: 16px; opacity: 0.3; }
.testi-text { font-family: 'Cormorant Garamond', serif; font-size: 17px; color: #555; line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--red-soft);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 16px; font-weight: 700;
  color: var(--red);
  flex-shrink: 0;
}
.testi-name { font-size: 14px; font-weight: 600; color: var(--black); }
.testi-trip { font-size: 12px; color: #aaa; }
.testi-stars { display: flex; gap: 2px; margin-bottom: 16px; }
.star { color: var(--red); font-size: 14px; }

/* ─── QUOTE FORM ─────────────────────────────────────── */
#quote { background: white; }
.quote-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; }
.quote-left .section-body { margin-bottom: 36px; }
.quote-perks { display: flex; flex-direction: column; gap: 16px; }
.perk { display: flex; align-items: flex-start; gap: 14px; }
.perk-icon {
  width: 36px; height: 36px;
  background: var(--red-soft);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}
.perk-text strong { display: block; font-size: 14px; font-weight: 600; color: var(--black); margin-bottom: 2px; }
.perk-text span { font-size: 13px; color: #888; line-height: 1.5; }
.quote-form-wrap { background: var(--off-white); border-radius: 24px; padding: 44px 40px; border: 1px solid rgba(200,16,46,0.08); }
.form-title { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: var(--black); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form-group.full { grid-column: 1 / -1; }
label { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: #888; }
input, select, textarea {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  padding: 13px 16px;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 12px;
  background: white;
  color: var(--black);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  width: 100%;
  appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200,16,46,0.1);
}
textarea { resize: vertical; min-height: 100px; }
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--red);
  color: white;
  border: none;
  border-radius: 12px;
  font-family: 'Jost', sans-serif;
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: var(--shadow-red);
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  margin-top: 4px;
}
.btn-submit:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(200,16,46,0.35); }
.form-note { text-align: center; font-size: 11.5px; color: #aaa; margin-top: 12px; }


/* ═══════════════════════════════════════════════════════
   FORMS PAGE
═══════════════════════════════════════════════════════ */

/* ─── PAGE HEADER ─────────────────────────────────────── */
.page-header {
  background: var(--black);
  padding: 140px 60px 80px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200,16,46,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.page-header-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.page-header-eyebrow {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-soft);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.page-header-eyebrow::before { content: ''; width: 32px; height: 1.5px; background: var(--red); }
.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  color: white;
  line-height: 1.08;
  margin-bottom: 18px;
}
.page-header h1 em { font-style: italic; color: var(--red-soft); }
.page-header p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 300;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  line-height: 1.65;
}

/* ─── FORMS INTRO STRIP ──────────────────────────────── */
#forms-intro { background: white; padding: 60px 60px 0; }
.forms-intro-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.intro-card {
  background: var(--off-white);
  border: 1px solid rgba(200,16,46,0.09);
  border-radius: 18px;
  padding: 28px 28px 24px;
  display: flex; align-items: flex-start; gap: 16px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.intro-card:hover { box-shadow: 0 10px 32px rgba(0,0,0,0.08); transform: translateY(-3px); }
.intro-card-icon {
  width: 44px; height: 44px;
  background: var(--red-soft);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.intro-card-text strong { display: block; font-size: 15px; font-weight: 600; color: var(--black); margin-bottom: 4px; }
.intro-card-text span { font-size: 13px; color: #888; line-height: 1.55; }

/* ─── JUMP NAV ───────────────────────────────────────── */
.jump-nav {
  background: white;
  border-bottom: 1px solid rgba(200,16,46,0.1);
  padding: 0 60px;
  position: sticky;
  top: 72px;
  z-index: 90;
}
.jump-nav-inner { max-width: 1200px; margin: 0 auto; display: flex; gap: 0; }
.jump-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #999;
  padding: 16px 24px 14px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.jump-nav a:hover { color: var(--red); border-bottom-color: var(--red); }
.jump-nav-dot { font-size: 10px; color: rgba(200,16,46,0.3); align-self: center; }

/* ─── FORM BLOCKS ─────────────────────────────────────── */
.form-block { padding: 80px 60px; scroll-margin-top: 72px; }
.form-block:nth-child(odd)  { background: white; }
.form-block:nth-child(even) { background: var(--off-white); }
.form-block-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 72px;
  align-items: start;
}
.form-meta .section-eyebrow { margin-bottom: 12px; }
.form-meta .section-title   { margin-bottom: 14px; font-size: clamp(28px, 3.5vw, 44px); }
.form-meta-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 300;
  color: #666;
  line-height: 1.7;
  margin-bottom: 24px;
}
.form-meta-note {
  background: var(--red-soft);
  border-left: 3px solid var(--red);
  border-radius: 0 10px 10px 0;
  padding: 14px 18px;
  font-size: 13px;
  color: var(--red-dark);
  line-height: 1.55;
}
.form-meta-note strong { display: block; margin-bottom: 2px; }

/* ─── COGNITO EMBED ──────────────────────────────────── */
.cognito-wrap {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(200,16,46,0.08);
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
  padding: 12px;
  min-height: 200px;
}
.cognito-wrap iframe,
.cognito-wrap > div { display: block; width: 100%; border: none; }

.embed-placeholder {
  border: 2px dashed rgba(200,16,46,0.22);
  border-radius: 14px;
  padding: 52px 32px;
  text-align: center;
  color: var(--red);
  background: #fff8f9;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.embed-placeholder-icon { font-size: 36px; opacity: 0.4; }
.embed-placeholder strong { font-size: 15px; font-weight: 600; color: var(--red-dark); }
.embed-placeholder code {
  font-size: 12px;
  background: rgba(200,16,46,0.07);
  padding: 6px 14px;
  border-radius: 8px;
  color: var(--red);
  font-family: monospace;
}
.embed-placeholder p { font-size: 13px; color: #aaa; max-width: 320px; line-height: 1.6; }


/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  nav { padding: 0 32px; }
  /* index */
  .hero-content { padding: 0 48px; padding-top: 72px; }
  .slide-label { left: 48px; }
  .hero-badge { right: 32px; }
  section { padding: 80px 40px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-frame { min-height: 500px; }
  .about-text { padding-left: 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .dest-grid { grid-template-columns: 1fr 1fr; }
  .dest-card:first-child { grid-column: 1 / 3; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
  .quote-layout { grid-template-columns: 1fr; gap: 48px; }
  /* forms */
  .page-header { padding: 120px 40px 64px; }
  .form-block { padding: 64px 40px; }
  .jump-nav { padding: 0 40px; }
  #forms-intro { padding: 48px 40px 0; }
  .form-block-inner { grid-template-columns: 1fr; gap: 36px; }
  .forms-intro-grid { grid-template-columns: 1fr; }
  /* shared */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 960px) {
  .nav-links { gap: 20px; }
  .nav-cta { display: none; }
}

@media (max-width: 768px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  /* index */
  .hero-content { padding: 0 28px; padding-top: 72px; }
  .slide-label { left: 28px; }
  .hero-badge { display: none; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  section { padding: 64px 24px; }
  .about-img-frame { min-height: 420px; }
  .about-carousel-slide img { object-position: center 26%; }
  .quote-inner { flex-direction: column; padding: 36px 28px; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: 1fr; }
  .dest-card:first-child { grid-column: 1; }
  .services-header { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .quote-form-wrap { padding: 32px 24px; }
  /* forms */
  .page-header { padding: 108px 24px 52px; }
  .form-block { padding: 52px 24px; }
  .jump-nav {
    padding: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    box-shadow:
      inset 20px 0 16px -16px rgba(15,15,15,0.12),
      inset -20px 0 16px -16px rgba(15,15,15,0.12);
  }
  .jump-nav-inner {
    width: max-content;
    min-width: 100%;
    padding: 0 24px;
  }
  .jump-nav a { padding: 14px 16px 12px; font-size: 11px; }
  #forms-intro { padding: 36px 24px 0; }
  /* shared */
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  footer { padding: 60px 24px 32px; }
}

/* ═══════════════════════════════════════════════════════
   CONNECT PAGE
═══════════════════════════════════════════════════════ */
.page-connect .page-header {
  background: var(--black);
  padding: 140px 60px 70px;
  position: relative;
  overflow: hidden;
}
.page-connect .page-header::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(200,16,46,.18) 0%, transparent 70%);
}
.page-connect .page-header-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.page-connect .page-header-eyebrow { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: #f5d5db; margin-bottom: 14px; }
.page-connect .page-header h1 { font-family: 'Playfair Display', serif; font-size: clamp(38px, 5vw, 64px); color: white; line-height: 1.08; margin-bottom: 12px; }
.page-connect .page-header p { font-family: 'Cormorant Garamond', serif; color: rgba(255,255,255,.72); font-size: 21px; max-width: 560px; }

.page-connect section { padding: 76px 60px; }
.page-connect .section-inner { max-width: 1100px; margin: 0 auto; }

.page-connect .connect-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.page-connect .connect-card {
  background: white;
  border-radius: 20px;
  border: 1px solid rgba(200,16,46,.08);
  box-shadow: 0 6px 30px rgba(0,0,0,.06);
  padding: 30px 28px;
}
.page-connect .connect-card h2 { font-family: 'Playfair Display', serif; font-size: 30px; color: var(--black); margin-bottom: 10px; }
.page-connect .connect-card p { color: #6a6a6a; line-height: 1.65; margin-bottom: 20px; }

.page-connect .social-links { display: grid; gap: 12px; }
.page-connect .social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--black);
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(200,16,46,.12);
  background: #fff;
  transition: transform .2s ease, border-color .2s ease;
}
.page-connect .social-link:hover { transform: translateY(-2px); border-color: var(--red); }
.page-connect .social-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--red-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 14px;
  font-weight: 700;
}

.page-connect .newsletter-form { display: grid; gap: 12px; }
.page-connect .newsletter-form label { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: #8a8a8a; }
.page-connect .newsletter-form input {
  width: 100%;
  border: 1.5px solid rgba(0,0,0,.1);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 14px;
  font-family: 'Jost', sans-serif;
}
.page-connect .newsletter-form input:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(200,16,46,.1); }

.page-connect .status-msg { margin-top: 6px; font-size: 13px; color: #777; min-height: 18px; }

.page-connect footer {
  background: var(--black);
  color: white;
  padding: 60px 60px 34px;
  margin-top: 30px;
}
.page-connect .footer-inner { max-width: 1100px; margin: 0 auto; }
.page-connect .footer-copy { font-size: 12.5px; color: rgba(255,255,255,.4); }

@media (max-width: 960px) {
  .page-connect .connect-grid { grid-template-columns: 1fr; }
  .page-connect section { padding: 60px 24px; }
  .page-connect .page-header { padding: 120px 24px 56px; }
  .page-connect footer { padding: 50px 24px 30px; }
}
