/* =========================================================
   Travels with Makenzie — Universal / Disney / Royal Caribbean
   Palette: sea-blue / midnight magic + warm cream + gold + blush.
   Type: Playfair Display (display) + Inter (body) + Allura (script flourish).
   ========================================================= */

:root {
  /* Sea blue family (MTA-adjacent) */
  --sea:          #1E4D6B;
  --sea-deep:     #163B53;
  --sea-soft:     #2C5F7C;
  --sea-mist:     #CFE0EA;

  /* Midnight-magic navy (deep night sky over castle / cruise) */
  --midnight:     #1a2a4a;
  --midnight-deep:#0F1A33;
  --midnight-mid: #2A3B66;

  /* Cream / paper */
  --cream:        #FAF5EC;
  --cream-deep:   #F2EBDB;
  --cream-warm:   #F5EFE4;

  /* Gold + blush accents */
  --gold:         #D4A574;
  --gold-deep:    #B98952;
  --gold-bright:  #E8C77E;
  --gold-glow:    #F2D89C;
  --blush:        #E8A597;
  --blush-soft:   #F2C9BE;
  --coral:        #C76B4A;

  /* Ink */
  --ink:          #1A2733;
  --ink-mid:      #3D4A57;
  --ink-soft:     #6F7B86;
  --line:         rgba(30, 77, 107, 0.14);

  --white:        #FFFFFF;

  /* Type */
  --font-display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --font-script:  'Allura', 'Tangerine', 'Italianno', cursive;

  /* Rhythm */
  --max-content: 1100px;
  --narrow:      720px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 14px;
  --radius-lg: 24px;

  /* Motion */
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; background: var(--cream); scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--sea-deep);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 600; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.1vw, 1.45rem); }
p  { margin: 0 0 1em; }
a  { color: var(--sea); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--coral); }

/* Script flourish — used SPARINGLY (2-3 spots site-wide). */
.script {
  font-family: var(--font-script);
  font-weight: 400;
  font-style: normal;
  color: var(--gold-deep);
  line-height: 0.9;
  letter-spacing: 0;
}

.container {
  max-width: var(--max-content);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.container.narrow { max-width: var(--narrow); }

/* =========================================================
   Draft banner
   ========================================================= */
.draft-banner {
  background: #fff4d6;
  border-bottom: 1px solid #e9d8a4;
  color: #6b4f08;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 8px 16px;
  font-weight: 500;
}
.draft-banner code { background: rgba(0,0,0,0.06); padding: 1px 6px; border-radius: 4px; font-size: 12px; }

/* =========================================================
   Site header / nav
   ========================================================= */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  background: rgba(250, 245, 236, 0.88);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--sea-deep);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.brand .mark {
  width: 24px;
  height: 24px;
  display: inline-block;
}
nav.primary {
  display: flex;
  gap: clamp(14px, 2.6vw, 32px);
  align-items: center;
}
nav.primary a {
  color: var(--ink-mid);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
nav.primary a:hover, nav.primary a.active { color: var(--coral); }

@media (max-width: 640px) {
  nav.primary a { font-size: 12px; letter-spacing: 0.05em; }
  .brand { font-size: 1rem; }
}

/* =========================================================
   Hero — magical castle + cruise variant
   ========================================================= */
.hero {
  position: relative;
  padding: clamp(48px, 9vw, 96px) 0 clamp(56px, 10vw, 110px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(212, 165, 116, 0.22), transparent 60%),
    radial-gradient(700px 600px at 5% 110%, rgba(30, 77, 107, 0.14), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 820px) {
  .hero .container { grid-template-columns: 1fr; }
}
.hero .eyebrow {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 16px;
  font-weight: 600;
}
.hero h1 { margin-bottom: 18px; }
.hero .tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  color: var(--sea-soft);
  margin-bottom: 28px;
  font-weight: 400;
}
.hero .credentials {
  font-size: 14px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
  text-transform: uppercase;
}

/* Magical hero variant — castle + cruise + starry midnight gradient.
   Used on index.html only. */
.hero-magic {
  background:
    radial-gradient(1200px 700px at 75% 10%, rgba(232, 199, 126, 0.18), transparent 60%),
    radial-gradient(900px 600px at 15% 100%, rgba(46, 95, 124, 0.32), transparent 60%),
    linear-gradient(180deg, var(--midnight-deep) 0%, var(--midnight) 38%, var(--sea-deep) 75%, var(--sea) 100%);
  color: var(--cream);
}
.hero-magic::before { display: none; }
.hero-magic .eyebrow { color: var(--gold-bright); }
.hero-magic h1 { color: var(--cream); text-shadow: 0 2px 24px rgba(0,0,0,0.4); }
.hero-magic .tagline { color: var(--cream-warm); opacity: 0.95; }
.hero-magic .credentials { color: rgba(250, 245, 236, 0.7); }
.hero-magic .btn-secondary { color: var(--cream); border-color: var(--cream); }
.hero-magic .btn-secondary:hover { background: var(--cream); color: var(--midnight); }
.hero-magic .btn-ghost { color: rgba(250, 245, 236, 0.85); border-color: rgba(250, 245, 236, 0.3); }
.hero-magic .btn-ghost:hover { color: var(--cream); border-color: var(--cream); }

.hero-magic h1 .script-flourish {
  display: block;
  font-family: var(--font-script);
  font-style: normal;
  font-weight: 400;
  color: var(--gold-bright);
  font-size: 0.62em;
  line-height: 0.9;
  text-shadow: 0 2px 18px rgba(0,0,0,0.5);
  margin-top: 0.05em;
  letter-spacing: 0.01em;
}

/* Starfield layer over the magic hero */
.hero-magic .starfield {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.9;
}
.hero-magic .starfield .star {
  position: absolute;
  color: var(--cream);
  font-size: 14px;
  opacity: 0.7;
  animation: pulse 4s var(--ease) infinite;
  text-shadow: 0 0 6px rgba(232, 199, 126, 0.6);
}
.hero-magic .starfield .star.bright { color: var(--gold-glow); font-size: 18px; opacity: 0.95; }
.hero-magic .starfield .star.tiny   { font-size: 9px;  opacity: 0.55; }
.hero-magic .starfield .star.s1  { top: 8%;  left: 12%; animation-delay: 0.2s; }
.hero-magic .starfield .star.s2  { top: 14%; left: 28%; animation-delay: 1.6s; }
.hero-magic .starfield .star.s3  { top: 22%; left: 48%; animation-delay: 0.8s; }
.hero-magic .starfield .star.s4  { top: 6%;  left: 64%; animation-delay: 2.4s; }
.hero-magic .starfield .star.s5  { top: 18%; left: 82%; animation-delay: 1.0s; }
.hero-magic .starfield .star.s6  { top: 32%; left: 8%;  animation-delay: 3.0s; }
.hero-magic .starfield .star.s7  { top: 38%; left: 38%; animation-delay: 0.4s; }
.hero-magic .starfield .star.s8  { top: 28%; left: 72%; animation-delay: 2.2s; }
.hero-magic .starfield .star.s9  { top: 44%; left: 92%; animation-delay: 1.4s; }
.hero-magic .starfield .star.s10 { top: 4%;  left: 44%; animation-delay: 2.8s; }
.hero-magic .starfield .star.s11 { top: 12%; left: 92%; animation-delay: 0.6s; }
.hero-magic .starfield .star.s12 { top: 26%; left: 20%; animation-delay: 1.8s; }
.hero-magic .starfield .star.s13 { top: 36%; left: 58%; animation-delay: 2.6s; }
.hero-magic .starfield .star.s14 { top: 10%; left: 76%; animation-delay: 0.9s; }
.hero-magic .starfield .star.s15 { top: 20%; left: 4%;  animation-delay: 1.2s; }
.hero-magic .starfield .star.s16 { top: 42%; left: 14%; animation-delay: 3.2s; }
.hero-magic .starfield .star.s17 { top: 8%;  left: 36%; animation-delay: 2.0s; }

@keyframes pulse {
  0%, 100% { opacity: var(--star-opacity, 0.7); transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.15); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-magic .starfield .star { animation: none; }
}

/* Castle + cruise illustration block (right column of magic hero) */
.magic-scene {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(600px 320px at 50% 10%, rgba(232, 199, 126, 0.32), transparent 60%),
    linear-gradient(180deg, var(--midnight-deep) 0%, var(--midnight) 45%, var(--sea-deep) 78%, var(--sea-soft) 100%);
  box-shadow: 0 30px 70px -20px rgba(15, 26, 51, 0.55), inset 0 0 80px rgba(0,0,0,0.35);
}
.magic-scene svg { display: block; width: 100%; height: 100%; }
.magic-scene .scene-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.magic-scene .scene-stars .star {
  position: absolute;
  color: var(--gold-glow);
  font-size: 12px;
  opacity: 0.85;
  text-shadow: 0 0 6px rgba(242, 216, 156, 0.6);
  animation: pulse 4s var(--ease) infinite;
}
.magic-scene .scene-stars .star.bright { font-size: 20px; color: var(--cream); }
.magic-scene .scene-stars .star.tiny   { font-size: 8px;  opacity: 0.6; }
.magic-scene .scene-stars .a1 { top: 6%;  left: 10%; animation-delay: 0.5s; }
.magic-scene .scene-stars .a2 { top: 4%;  left: 32%; animation-delay: 1.5s; }
.magic-scene .scene-stars .a3 { top: 10%; left: 50%; animation-delay: 2.0s; }
.magic-scene .scene-stars .a4 { top: 8%;  left: 70%; animation-delay: 0.9s; }
.magic-scene .scene-stars .a5 { top: 14%; left: 88%; animation-delay: 2.6s; }
.magic-scene .scene-stars .a6 { top: 22%; left: 18%; animation-delay: 1.2s; }
.magic-scene .scene-stars .a7 { top: 18%; left: 42%; animation-delay: 0.3s; }
.magic-scene .scene-stars .a8 { top: 26%; left: 78%; animation-delay: 2.2s; }
.magic-scene .scene-stars .a9 { top: 32%; left: 60%; animation-delay: 1.8s; }
.magic-scene .scene-stars .a10 { top: 12%; left: 22%; animation-delay: 3.2s; }
.magic-scene .scene-stars .a11 { top: 30%; left: 4%;  animation-delay: 0.7s; }
.magic-scene .scene-stars .a12 { top: 36%; left: 92%; animation-delay: 2.4s; }

.magic-scene .scene-art {
  position: absolute;
  inset: 0;
}

/* =========================================================
   Sparkles — denser, layered, used as decorative pseudo-elements
   ========================================================= */

/* Block-level sparkle row used inline in copy */
.sparkles {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  color: var(--gold-deep);
  font-size: 0.85em;
  letter-spacing: 0.15em;
  vertical-align: middle;
}
.sparkles span { display: inline-block; animation: pulse 4s var(--ease) infinite; }
.sparkles span:nth-child(2) { animation-delay: 1.2s; opacity: 0.7; }
.sparkles span:nth-child(3) { animation-delay: 2.4s; opacity: 0.85; }

/* Section sparkle border — subtle frame for special sections */
.sparkle-frame {
  position: relative;
}
.sparkle-frame::before,
.sparkle-frame::after {
  position: absolute;
  font-size: 22px;
  color: var(--gold-deep);
  opacity: 0.7;
  animation: pulse 5s var(--ease) infinite;
  text-shadow: 0 0 10px rgba(242, 216, 156, 0.4);
}
.sparkle-frame::before {
  content: "\2728"; /* ✨ */
  top: -8px;
  left: -8px;
}
.sparkle-frame::after {
  content: "\2728";
  bottom: -8px;
  right: -8px;
  animation-delay: 2s;
}

/* Subtle background sparkle layer */
.sparkle-bg {
  position: relative;
}
.sparkle-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 22%, rgba(232, 199, 126, 0.45) 0, transparent 2px),
    radial-gradient(circle at 78% 18%, rgba(232, 199, 126, 0.55) 0, transparent 2.5px),
    radial-gradient(circle at 32% 76%, rgba(232, 199, 126, 0.35) 0, transparent 2px),
    radial-gradient(circle at 88% 64%, rgba(232, 199, 126, 0.4)  0, transparent 2px),
    radial-gradient(circle at 58% 38%, rgba(232, 199, 126, 0.3)  0, transparent 1.8px),
    radial-gradient(circle at 8%  88%, rgba(232, 199, 126, 0.4)  0, transparent 2px),
    radial-gradient(circle at 92% 92%, rgba(232, 199, 126, 0.3)  0, transparent 2px);
  pointer-events: none;
  opacity: 0.7;
  z-index: 0;
}
.sparkle-bg > * { position: relative; z-index: 1; }

/* =========================================================
   Portrait / image placeholders
   ========================================================= */
.portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    linear-gradient(135deg, var(--sea-mist) 0%, var(--cream-deep) 50%, var(--gold) 110%);
  box-shadow: 0 20px 60px -20px rgba(22, 59, 83, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.portrait .placeholder-note {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--sea-deep);
  background: rgba(255,255,255,0.78);
  padding: 10px 16px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  max-width: 80%;
  line-height: 1.4;
}
.portrait.wide { aspect-ratio: 16 / 9; }
.portrait.square { aspect-ratio: 1 / 1; }
.portrait.small { max-width: 280px; }

.portrait::after {
  content: "";
  position: absolute;
  top: 12%; right: 10%;
  width: 18px; height: 18px;
  background: radial-gradient(circle, var(--white) 0 30%, transparent 60%);
  filter: blur(0.5px);
  opacity: 0.85;
}

/* =========================================================
   CTA buttons
   ========================================================= */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 6px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform 0.15s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--sea-deep);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  color: var(--midnight);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px -10px rgba(232, 199, 126, 0.55);
}
.btn-secondary {
  background: transparent;
  color: var(--sea-deep);
  border-color: var(--sea-deep);
}
.btn-secondary:hover {
  background: var(--sea-deep);
  color: var(--cream);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink-mid);
  border-color: var(--line);
}
.btn-ghost:hover {
  color: var(--sea-deep);
  border-color: var(--sea-soft);
}
.btn-big {
  padding: 22px 30px;
  font-size: 15px;
  letter-spacing: 0.1em;
  flex: 1 1 200px;
  min-height: 92px;
  text-align: center;
  flex-direction: column;
  gap: 6px;
}
.btn-big .sub {
  font-size: 11px;
  letter-spacing: 0.12em;
  font-weight: 400;
  opacity: 0.78;
  text-transform: uppercase;
}

/* =========================================================
   Sections
   ========================================================= */
section { padding: clamp(56px, 8vw, 96px) 0; }
section.tight { padding: clamp(40px, 6vw, 64px) 0; }

.section-head {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.section-head .eyebrow {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 12px;
  display: inline-block;
}
.section-head p.lead {
  max-width: 620px;
  margin: 8px auto 0;
  color: var(--ink-mid);
  font-size: 18px;
}

/* =========================================================
   Pillars / 3-up grids
   ========================================================= */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 36px);
}
@media (max-width: 820px) {
  .pillars { grid-template-columns: 1fr; }
}
.pillar {
  background: var(--cream-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
  position: relative;
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -24px rgba(22, 59, 83, 0.25);
  border-color: var(--sea-mist);
}
.pillar .sparkle {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold-deep);
  margin-bottom: 8px;
  line-height: 1;
}
.pillar h3 { margin-bottom: 10px; color: var(--sea-deep); }
.pillar p  { color: var(--ink-mid); margin: 0; font-size: 16px; }

/* =========================================================
   Why-specialist callout (Universal / Disney / Royal Caribbean)
   ========================================================= */
.specialist-section {
  background:
    radial-gradient(700px 400px at 100% 0%, rgba(232, 199, 126, 0.18), transparent 60%),
    radial-gradient(600px 360px at 0% 100%, rgba(232, 165, 151, 0.14), transparent 60%),
    linear-gradient(180deg, var(--midnight-deep) 0%, var(--midnight) 100%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.specialist-section h2,
.specialist-section h3 { color: var(--cream); }
.specialist-section .eyebrow { color: var(--gold-bright); }
.specialist-section .lead { color: rgba(250, 245, 236, 0.85); }

.specialist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 32px);
  margin-top: clamp(32px, 5vw, 48px);
}
@media (max-width: 760px) { .specialist-grid { grid-template-columns: 1fr; } }
.specialist-grid.three-up { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 880px) { .specialist-grid.three-up { grid-template-columns: 1fr; } }
.specialist-card {
  background: rgba(250, 245, 236, 0.06);
  border: 1px solid rgba(232, 199, 126, 0.22);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 32px);
  position: relative;
  backdrop-filter: blur(4px);
}
.specialist-card .icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(232, 199, 126, 0.14);
  border: 1px solid rgba(232, 199, 126, 0.32);
  margin-bottom: 16px;
}
.specialist-card .icon-wrap svg { width: 36px; height: 36px; }
.specialist-card h3 { margin-bottom: 10px; color: var(--cream); }
.specialist-card p { color: rgba(250, 245, 236, 0.82); margin: 0; font-size: 16px; }
.specialist-card .label {
  font-family: var(--font-script);
  font-size: 1.7rem;
  color: var(--gold-bright);
  line-height: 1;
  display: block;
  margin-top: 18px;
}

.specialist-section .script-flourish {
  font-family: var(--font-script);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--gold-bright);
  line-height: 1;
  display: block;
  margin-top: 28px;
  text-align: center;
  text-shadow: 0 2px 18px rgba(0,0,0,0.4);
}

/* Section sparkle accents that float over the specialist section */
.specialist-section::before,
.specialist-section::after {
  content: "\2728";
  position: absolute;
  color: var(--gold-bright);
  opacity: 0.7;
  font-size: 28px;
  animation: pulse 5s var(--ease) infinite;
  text-shadow: 0 0 16px rgba(232, 199, 126, 0.55);
  z-index: 0;
}
.specialist-section::before { top: 14%; left: 6%; }
.specialist-section::after  { bottom: 18%; right: 8%; animation-delay: 2.5s; }
.specialist-section .container { position: relative; z-index: 1; }

/* =========================================================
   About-page specific
   ========================================================= */
.about-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}
@media (max-width: 760px) { .about-grid { grid-template-columns: 1fr; } }
.about-grid .bio p { font-size: 18px; }
.niche {
  margin-top: 24px;
  padding: 18px 22px;
  border-left: 3px solid var(--gold);
  background: var(--cream-warm);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--sea-deep);
  font-size: 17px;
}
.bio .niche { margin-top: 24px; }

.volume-callout {
  margin-top: 28px;
  padding: 22px 26px;
  background: linear-gradient(135deg, var(--cream-warm) 0%, var(--cream-deep) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--sea-deep);
  font-size: 17px;
  line-height: 1.6;
  position: relative;
}
.volume-callout .label {
  font-family: var(--font-script);
  font-size: 1.9rem;
  color: var(--gold-deep);
  line-height: 0.9;
  display: block;
  margin-bottom: 6px;
}

.bio .placeholder-block {
  margin: 20px 0;
  padding: 22px 26px;
  border: 1.5px dashed var(--gold);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.5);
  color: var(--sea-deep);
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
}

.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 24px;
}
@media (max-width: 760px) { .process { grid-template-columns: repeat(2, 1fr); } }
.process .step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 16px;
  text-align: center;
}
.process .step .n {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold-deep);
  line-height: 1;
}
.process .step .label {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sea-deep);
  margin-top: 8px;
  font-weight: 600;
}

/* =========================================================
   Plan-trip — service buttons + form
   ========================================================= */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 32px 0 60px;
}
@media (max-width: 900px) { .services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .services { grid-template-columns: 1fr; } }
.service {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  font-weight: 600;
  color: var(--sea-deep);
  font-size: 15px;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.service:hover, .service.active {
  background: var(--sea-deep);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -14px rgba(22, 59, 83, 0.4);
}
.service .icon {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--gold-deep);
}
.service:hover .icon, .service.active .icon { color: var(--gold-bright); }

.service.featured {
  background: linear-gradient(135deg, var(--midnight) 0%, var(--sea-deep) 100%);
  color: var(--cream);
  border-color: rgba(232, 199, 126, 0.4);
}
.service.featured .icon { color: var(--gold-bright); }
.service.featured:hover {
  background: linear-gradient(135deg, var(--midnight-deep) 0%, var(--midnight) 100%);
  color: var(--cream);
  box-shadow: 0 14px 30px -14px rgba(15, 26, 51, 0.6);
}
.service.secondary {
  background: var(--cream-warm);
  color: var(--ink-mid);
  font-weight: 500;
}
.service.secondary:hover { background: var(--sea-soft); color: var(--cream); }

/* form */
.inquiry-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: 0 30px 60px -40px rgba(22, 59, 83, 0.25);
}
.inquiry-form .field { margin-bottom: 22px; }
.inquiry-form label {
  display: block;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--sea-deep);
  margin-bottom: 8px;
}
.inquiry-form input[type="text"],
.inquiry-form input[type="email"],
.inquiry-form input[type="tel"],
.inquiry-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  background: var(--cream);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.inquiry-form input:focus, .inquiry-form textarea:focus {
  outline: none;
  border-color: var(--sea);
  box-shadow: 0 0 0 3px rgba(30, 77, 107, 0.12);
}
.inquiry-form textarea { min-height: 110px; resize: vertical; }

.choice-group { display: flex; flex-wrap: wrap; gap: 8px; }
.choice {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  cursor: pointer;
  background: var(--cream);
  color: var(--ink-mid);
  transition: all 0.2s var(--ease);
  user-select: none;
}
.choice input { accent-color: var(--sea); margin: 0; }
.choice:hover { border-color: var(--sea-soft); color: var(--sea-deep); }
.choice input:checked + span { color: var(--sea-deep); font-weight: 600; }

.reassurance {
  text-align: center;
  margin: 28px 0 14px;
  font-size: 15px;
  color: var(--ink-soft);
  font-style: italic;
}

.submit-row { text-align: center; }
.submit-row .btn-primary { padding: 16px 40px; font-size: 15px; }

/* =========================================================
   Current Clients — accordion + cards
   ========================================================= */
.client-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 32px);
}
@media (max-width: 760px) { .client-grid { grid-template-columns: 1fr; } }
.client-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 30px);
}
.client-card h3 { margin-bottom: 12px; }
.client-card ul { padding-left: 18px; color: var(--ink-mid); margin: 0; }
.client-card li { margin-bottom: 6px; }

/* Topical FAQ groups (Disney / Cruise specific) */
.faq-group {
  margin-top: clamp(36px, 5vw, 56px);
}
.faq-group .group-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.faq-group .group-head svg {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.faq-group .group-head h3 {
  margin: 0;
  color: var(--sea-deep);
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
}
.faq-group .group-head .tag {
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: var(--gold-deep);
  line-height: 0.9;
  margin-left: 4px;
}

.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 12px;
  transition: background 0.2s var(--ease);
}
.faq details[open] { background: var(--cream-warm); }
.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--sea-deep);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  gap: 14px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--gold-deep);
  transition: transform 0.2s var(--ease);
  flex-shrink: 0;
}
.faq details[open] summary::after { content: "−"; }
.faq .answer { color: var(--ink-mid); margin-top: 12px; }
.faq .answer p { margin: 0; }

.emergency-bar {
  background: var(--sea-deep);
  color: var(--cream);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 32px);
  text-align: center;
  margin-top: 36px;
}
.emergency-bar h3 { color: var(--cream); margin-bottom: 8px; }
.emergency-bar p { margin: 0; color: rgba(250, 245, 236, 0.85); }
.emergency-bar strong { color: var(--gold); }

/* =========================================================
   Footer
   ========================================================= */
footer.site-footer {
  background: var(--midnight);
  color: var(--cream);
  padding: clamp(48px, 7vw, 80px) 0 32px;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}
footer.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 8% 18%, rgba(232, 199, 126, 0.35) 0, transparent 2px),
    radial-gradient(circle at 78% 12%, rgba(232, 199, 126, 0.3) 0, transparent 2px),
    radial-gradient(circle at 22% 78%, rgba(232, 199, 126, 0.25) 0, transparent 2px),
    radial-gradient(circle at 92% 64%, rgba(232, 199, 126, 0.3) 0, transparent 2px);
  pointer-events: none;
  opacity: 0.5;
}
footer.site-footer .container { position: relative; z-index: 1; }
.site-footer h3 { color: var(--cream); }
.site-footer a { color: var(--gold-bright); }
.site-footer a:hover { color: var(--white); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  margin-bottom: 40px;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 {
  color: var(--gold-bright);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 600;
}
.footer-grid p, .footer-grid li {
  color: rgba(250, 245, 236, 0.82);
  font-size: 15px;
  margin: 0 0 8px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.legal {
  border-top: 1px solid rgba(250, 245, 236, 0.12);
  padding-top: 24px;
  font-size: 12px;
  color: rgba(250, 245, 236, 0.55);
  letter-spacing: 0.04em;
  text-align: center;
}
.legal .disclosure { max-width: 720px; margin: 0 auto 8px; line-height: 1.6; }

/* =========================================================
   Scroll fade-in
   ========================================================= */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
}

/* tiny utility */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.muted { color: var(--ink-soft); }

/* =========================================================
   FUNNEL ADDITIONS (single-page index)
   ========================================================= */

/* Nav CTA button override — smaller, fits in the header bar */
nav.primary .nav-cta {
  padding: 11px 22px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sea-deep);
}
nav.primary .nav-cta:hover { color: var(--midnight); }

/* --- Hero (funnel, single-column centered) --- */
.hero-funnel .container.hero-funnel-inner {
  display: block;
  max-width: var(--narrow);
  text-align: center;
}
.hero-funnel .hero-copy { margin-bottom: clamp(28px, 4vw, 40px); }
.hero-funnel h1 { margin-bottom: 18px; }

/* --- Mock video player --- */
.welcome-video { margin: 0 auto clamp(24px, 4vw, 36px); }
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 70px -20px rgba(15, 26, 51, 0.6), inset 0 0 0 1px rgba(232, 199, 126, 0.28);
}
.video-poster {
  position: absolute;
  inset: 0;
  /* Makenzie's welcome-video poster frame. */
  background-image:
    linear-gradient(180deg, rgba(8,14,28,0.10) 0%, rgba(8,14,28,0.02) 42%, rgba(8,14,28,0.42) 100%),
    url("makenzie-welcome.jpg");
  background-size: cover, cover;
  background-position: center 55%, center 55%;
  background-repeat: no-repeat, no-repeat;
  filter: saturate(1.03);
}
.video-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 26, 51, 0.22);
}
.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(64px, 9vw, 84px);
  height: clamp(64px, 9vw, 84px);
  border-radius: 50%;
  border: 2px solid rgba(250, 245, 236, 0.85);
  background: rgba(212, 165, 116, 0.92);
  color: var(--midnight);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 40px -8px rgba(0,0,0,0.5);
  transition: transform 0.15s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.video-play:hover {
  background: var(--gold-bright);
  transform: translate(-50%, -50%) scale(1.06);
  box-shadow: 0 16px 50px -8px rgba(232, 199, 126, 0.55);
}
.video-play .play-icon {
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1;
  margin-left: 4px; /* optically center the triangle */
}
.video-caption {
  text-align: center;
  margin: 14px 0 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--cream-warm);
  opacity: 0.92;
}

/* --- Problem / before-after compare --- */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 3vw, 28px);
}
@media (max-width: 760px) { .compare { grid-template-columns: 1fr; } }
.compare-col {
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
}
.compare-col h3 { margin-bottom: 16px; }
.compare-col ul { list-style: none; padding: 0; margin: 0; }
.compare-col li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.5;
}
.compare-col li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
}
.compare-col.diy {
  background: var(--cream-warm);
}
.compare-col.diy h3 { color: var(--coral); }
.compare-col.diy li { color: var(--ink-mid); }
.compare-col.diy li::before { content: "\2715"; color: var(--coral); }
.compare-col.withme {
  background: linear-gradient(180deg, var(--midnight) 0%, var(--sea-deep) 100%);
  border-color: rgba(232, 199, 126, 0.32);
}
.compare-col.withme h3 { color: var(--gold-bright); }
.compare-col.withme li { color: rgba(250, 245, 236, 0.9); }
.compare-col.withme li::before { content: "\2713"; color: var(--gold-bright); }

/* --- How it works (numbered steps) --- */
.howit {
  display: grid;
  gap: 16px;
  margin-top: clamp(28px, 4vw, 40px);
}
.howit-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 28px);
}
.howit-step .n {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--midnight) 0%, var(--sea-deep) 100%);
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.howit-step h3 { margin: 0 0 6px; }
.howit-step p { margin: 0; color: var(--ink-mid); font-size: 16px; }

/* --- Credential note (authority section) --- */
.credential-note {
  max-width: 640px;
  margin: clamp(28px, 4vw, 40px) auto 0;
  padding: 16px 22px;
  border: 1.5px dashed rgba(232, 199, 126, 0.6);
  border-radius: var(--radius);
  background: rgba(250, 245, 236, 0.06);
  color: rgba(250, 245, 236, 0.85);
  font-style: italic;
  font-size: 15px;
  text-align: center;
}

/* --- Testimonials --- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 3vw, 28px);
}
@media (max-width: 880px) { .testimonials { grid-template-columns: 1fr; } }
.testimonial {
  position: relative;
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(26px, 3vw, 34px) clamp(22px, 3vw, 28px) clamp(22px, 3vw, 28px);
  box-shadow: 0 16px 40px -28px rgba(22, 59, 83, 0.25);
}
.testimonial .quote-mark {
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 0.6;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
.testimonial blockquote {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-mid);
}
.testimonial figcaption {
  font-size: 14px;
  font-weight: 600;
  color: var(--sea-deep);
  letter-spacing: 0.02em;
}

/* --- "It's free" reversal --- */
.reversal {
  background:
    radial-gradient(700px 400px at 100% 0%, rgba(232, 199, 126, 0.18), transparent 60%),
    radial-gradient(600px 360px at 0% 100%, rgba(232, 165, 151, 0.14), transparent 60%),
    linear-gradient(180deg, var(--midnight-deep) 0%, var(--midnight) 100%);
  color: var(--cream);
}
.reversal .eyebrow {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-bright);
  font-weight: 600;
  margin-bottom: 12px;
  display: inline-block;
}
.reversal h2 { color: var(--cream); }
.reversal .reversal-lead {
  max-width: 620px;
  margin: 8px auto 0;
  color: rgba(250, 245, 236, 0.9);
  font-size: 19px;
}
.reversal-card {
  max-width: 620px;
  margin: clamp(28px, 4vw, 40px) auto 0;
  text-align: left;
  background: rgba(250, 245, 236, 0.06);
  border: 1px solid rgba(232, 199, 126, 0.3);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 32px);
  backdrop-filter: blur(4px);
}
.reversal-card h3 { color: var(--gold-bright); margin-bottom: 10px; }
.reversal-card p { margin: 0; color: rgba(250, 245, 236, 0.85); font-size: 16px; }

/* --- Final recap list + plan section --- */
.recap-list {
  list-style: none;
  padding: 0;
  margin: 0 auto clamp(24px, 4vw, 36px);
  max-width: 540px;
}
.recap-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  font-size: 17px;
  color: var(--ink-mid);
}
.recap-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-deep);
  font-weight: 700;
  font-size: 18px;
}
