/* ==========================================================
   Azura Voyages — brand styles
   Navy + gold + white. Edit the tokens below to fine-tune.
   ========================================================== */
:root {
  --navy-900: #0a1630;
  --navy-800: #0f1f40;
  --navy-700: #16295a;
  --navy-600: #1f3673;
  --gold-500: #c9a24a;
  --gold-400: #d8b665;
  --gold-300: #ead08f;
  --gold-grad: linear-gradient(135deg, #e8cd83 0%, #c9a24a 45%, #a9822f 100%);
  --white: #ffffff;
  --cream: #faf7f0;
  --ink: #1b2440;
  --muted: #5b6480;
  --line: #e7e2d4;

  --font-display: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --font-body: "Jost", "Helvetica Neue", Arial, sans-serif;

  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 18px 50px -20px rgba(10, 22, 48, .35);
  --container: 1180px;
  --header-h: 84px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 .5em;
  letter-spacing: -.005em;
}
h1 { font-size: clamp(2.5rem, 5.6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3.1rem); }
h3 { font-size: 1.55rem; }
h1 em, h2 em { font-style: italic; color: var(--gold-300); }
p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: 24px;
}

.skip-link {
  position: absolute; left: -999px; top: 8px;
  background: var(--gold-500); color: var(--navy-900);
  padding: 8px 14px; border-radius: 6px; z-index: 200;
}
.skip-link:focus { left: 8px; }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .78rem;
  font-weight: 500;
  color: var(--gold-300);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: .75rem;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: currentColor;
}
.eyebrow-dark { color: var(--gold-500); }
.lead { font-size: 1.12rem; color: var(--muted); max-width: 640px; }
.center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 14px; --pad-x: 26px;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: var(--pad-y) var(--pad-x);
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .98rem;
  letter-spacing: .03em;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--gold-300); outline-offset: 3px; }
.btn-sm { --pad-y: 10px; --pad-x: 20px; font-size: .9rem; }
.btn-lg { --pad-y: 17px; --pad-x: 34px; font-size: 1.03rem; }
.btn-block { width: 100%; }

.btn-gold {
  background: var(--gold-grad);
  color: var(--navy-900);
  font-weight: 600;
  box-shadow: 0 10px 28px -10px rgba(201, 162, 74, .75);
}
.btn-gold:hover { box-shadow: 0 16px 34px -10px rgba(201, 162, 74, .9); }

.btn-ghost {
  background: rgba(255, 255, 255, .06);
  color: var(--white);
  border-color: rgba(255, 255, 255, .55);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: var(--white); color: var(--navy-900); }

.btn-navy { background: var(--navy-800); color: var(--white); }
.btn-navy:hover { background: var(--navy-600); }

.btn-outline { background: transparent; color: var(--navy-800); border-color: var(--line); }
.btn-outline:hover { border-color: var(--navy-800); }

.btn-ghost-dark { background: transparent; color: var(--white); border-color: rgba(255,255,255,.4); }

.text-link {
  color: var(--navy-700);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1.5px solid var(--gold-500);
  padding-bottom: 2px;
}
.text-link:hover { color: var(--gold-500); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0;
  z-index: 100;
  padding-top: env(safe-area-inset-top, 0px);
  transition: background .3s ease, box-shadow .3s ease;
}
.site-header.is-scrolled {
  background: rgba(10, 22, 48, .94);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 24px -12px rgba(0,0,0,.5);
}
.header-inner {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
}
.brand-logo { height: 62px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 2rem; }
.main-nav ul { list-style: none; display: flex; gap: 1.9rem; margin: 0; padding: 0; }
.main-nav ul a {
  color: var(--white);
  text-decoration: none;
  font-size: .95rem;
  letter-spacing: .04em;
  position: relative;
  padding: 6px 0;
}
.main-nav ul a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1.5px; background: var(--gold-400); transition: right .25s ease;
}
.main-nav ul a:hover::after { right: 0; }

.nav-toggle {
  display: none;
  background: none; border: 0; padding: 10px; cursor: pointer;
}
.nav-toggle span {
  display: block; width: 26px; height: 2px; margin: 6px 0;
  background: var(--white); transition: transform .3s, opacity .3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex; align-items: center;
  color: var(--white);
  padding: calc(var(--header-h) + 40px) 0 90px;
  overflow: hidden;
  background: var(--navy-900);
}
.hero-media {
  position: absolute; inset: 0;
  background: url("../assets/img/hero-explora.jpg") 0% 55% / 128% auto no-repeat;
  background-color: var(--navy-900);
  transform: scale(1.06);
  animation: heroZoom 18s ease-out forwards;
}
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(10,22,48,.92) 0%, rgba(10,22,48,.72) 42%, rgba(10,22,48,.2) 100%),
    linear-gradient(0deg, rgba(10,22,48,.85) 0%, rgba(10,22,48,0) 40%);
}
@keyframes heroZoom { to { transform: scale(1); } }

.hero-content { position: relative; z-index: 1; }
.hero h1 { max-width: 820px; }
.hero-sub { font-size: 1.2rem; font-weight: 300; max-width: 600px; color: rgba(255,255,255,.88); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin: 2rem 0 2.6rem; }
.hero-ctas.center { justify-content: center; }

/* Quick-start bar */
.quickstart {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 0;
  max-width: 900px;
  background: rgba(255,255,255,.97);
  border-radius: 18px;
  padding: 10px;
  box-shadow: 0 30px 60px -25px rgba(0,0,0,.6);
}
.qs-field {
  display: flex; flex-direction: column;
  padding: 8px 18px;
  border-right: 1px solid var(--line);
  min-width: 0;
}
.qs-field:nth-child(3) { border-right: 0; }
.qs-field label {
  font-size: .7rem; text-transform: uppercase; letter-spacing: .16em;
  color: var(--gold-500); font-weight: 600;
}
.qs-field select {
  border: 0; background: transparent; padding: 4px 0;
  font: 500 1rem var(--font-body); color: var(--navy-900);
  cursor: pointer; appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23c9a24a' stroke-width='1.8'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right center;
  padding-right: 20px;
  text-overflow: ellipsis;
}
.qs-field select:focus { outline: none; }
.qs-field:focus-within { background: var(--cream); border-radius: 10px; }
.qs-submit { border-radius: 12px; }

.scroll-cue {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  width: 26px; height: 42px; border: 1.5px solid rgba(255,255,255,.55); border-radius: 20px;
  z-index: 1;
}
.scroll-cue span {
  position: absolute; left: 50%; top: 8px; width: 3px; height: 8px; margin-left: -1.5px;
  background: var(--gold-300); border-radius: 3px; animation: cue 1.8s infinite;
}
@keyframes cue { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }

/* ---------- Trust bar ---------- */
.trust {
  background: var(--navy-800);
  color: var(--white);
  padding: 34px 0 30px;
  border-top: 1px solid rgba(201,162,74,.35);
}
.trust-points {
  list-style: none; margin: 0; padding: 0 0 26px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.trust-points li { display: flex; align-items: center; gap: 12px; font-size: .96rem; font-weight: 600; color: var(--gold-300); }
.trust-points strong { font-weight: 600; color: var(--gold-300); }
.trust-points svg { width: 30px; height: 30px; flex: none; fill: var(--gold-400); }

.partners { padding-top: 22px; text-align: center; }
.partners-label {
  font-size: .72rem; text-transform: uppercase; letter-spacing: .24em;
  color: rgba(255,255,255,.6); margin-bottom: 14px;
}
.partner-logos {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 38px;
}
.partner-logos li {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 500;
  letter-spacing: .06em;
  color: rgba(255,255,255,.82);
  white-space: nowrap;
}
.partner-logos { align-items: center; gap: 22px 44px; }
.partner-logos img { width: auto; opacity: .88; transition: opacity .2s ease; }
.partner-logos img:hover { opacity: 1; }
.partner-logos .pl-tall { height: 50px; }
.partner-logos .pl-mid { height: 38px; }
.partner-logos .pl-wide { height: 30px; }
.partner-logos .pl-xwide { height: 18px; }
.partner-logos .pl-text { font-size: 1.5rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.88); }

/* ---------- Sections ---------- */
.section { padding: 110px 0; }
.section-head { max-width: 760px; margin-bottom: 56px; }

/* Who I serve */
.who { background: var(--cream); }
.who-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.who-card {
  background: var(--white);
  padding: 34px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.who-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold-300); }
.who-icon {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--navy-800);
  display: grid; place-items: center; margin-bottom: 20px;
}
.who-icon svg { width: 24px; height: 24px; fill: var(--gold-400); }
.who-card h3 { font-size: 1.4rem; color: var(--navy-800); }
.who-card p { color: var(--muted); font-size: .98rem; margin: 0; }

/* Quiz */
.quiz {
  background: var(--navy-900);
  color: var(--white);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.quiz::before {
  content: ""; position: absolute; right: -200px; top: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,74,.18), transparent 70%);
}
.quiz-inner { display: grid; grid-template-columns: 1fr 1.05fr; gap: 72px; align-items: center; position: relative; }
.quiz-media { position: relative; }
.quiz-media img {
  border-radius: 200px 200px var(--radius) var(--radius);
  aspect-ratio: 4 / 5; object-fit: cover; width: 100%;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.7);
}
.quiz-badge {
  position: absolute; right: -22px; bottom: 40px;
  width: 128px; height: 128px; border-radius: 50%;
  background: var(--gold-grad); color: var(--navy-900);
  display: flex; align-items: center; justify-content: center; gap: 6px;
  box-shadow: 0 18px 40px -12px rgba(0,0,0,.6);
  transform: rotate(-8deg);
}
.quiz-badge-num { font-family: var(--font-display); font-size: 3.4rem; font-weight: 600; line-height: 1; }
.quiz-badge-txt { font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; line-height: 1.2; font-weight: 600; }
.quiz .lead { color: rgba(255,255,255,.78); }

.checklist { list-style: none; padding: 0; margin: 1.6rem 0 2.2rem; }
.checklist li { position: relative; padding-left: 34px; margin-bottom: 12px; }
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: 2px;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(201,162,74,.2); color: var(--gold-300);
  font-size: .75rem; display: grid; place-items: center; font-weight: 700;
}

/* Specialties */
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; }
.spec-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px -22px rgba(10,22,48,.4);
  display: flex; flex-direction: column;
}
.spec-img { aspect-ratio: 16 / 10; overflow: hidden; }
.spec-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.spec-card:hover .spec-img img { transform: scale(1.05); }
.spec-body { padding: 34px 36px 38px; }
.spec-body h3 { font-size: 2rem; color: var(--navy-800); }
.spec-body p { color: var(--muted); }
.mini-list { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 6px; }
.mini-list li { padding-left: 20px; position: relative; font-size: .96rem; }
.mini-list li::before {
  content: ""; position: absolute; left: 0; top: .6em;
  width: 8px; height: 8px; transform: rotate(45deg); background: var(--gold-500);
}

/* How it works */
.how { background: var(--navy-800); color: var(--white); }
.steps {
  list-style: none; padding: 0; margin: 0 0 56px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  counter-reset: s;
}
.step {
  padding: 36px 32px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  position: relative;
}
.step-num {
  font-family: var(--font-display);
  font-size: 3.2rem; font-weight: 600; line-height: 1;
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  display: block; margin-bottom: 14px;
}
.step p { color: rgba(255,255,255,.75); margin: 0; }

/* Why book with me */
.why { background: var(--cream); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line); }
.why-item { padding: 34px 28px 0 0; }
.why-item + .why-item { padding-left: 28px; border-left: 1px solid var(--line); }
.why-item h3 { font-size: 1.35rem; color: var(--navy-800); position: relative; }
.why-item h3::before {
  content: ""; display: block; width: 32px; height: 2px; background: var(--gold-500); margin-bottom: 16px;
}
.why-item p { color: var(--muted); font-size: .98rem; }

/* About */
.about-inner { display: grid; grid-template-columns: .85fr 1.15fr; gap: 72px; align-items: center; }
.about-photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--cream), #efe7d3);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  color: var(--muted);
  font-size: .9rem; letter-spacing: .12em; text-transform: uppercase;
  position: relative;
  box-shadow: 24px 24px 0 -2px var(--navy-800);
}
.about-photo img:not(.about-photo-mark) { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }
.about-photo-mark { width: 55%; opacity: .9; }
.about-copy h2 { color: var(--navy-800); }
.about-copy p { color: var(--muted); }
.about-copy .btn { margin-top: .6rem; }

/* Intake */
.intake {
  position: relative;
  padding: 120px 0;
  color: var(--white);
  overflow: hidden;
  background: var(--navy-900);
}
.intake-bg {
  position: absolute; inset: 0;
  background: url("../assets/img/cove.jpg") center / cover no-repeat;
}
.intake-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(10,22,48,.95) 0%, rgba(10,22,48,.85) 45%, rgba(10,22,48,.55) 100%);
}
.intake-inner { position: relative; display: grid; grid-template-columns: 1fr 1.05fr; gap: 64px; align-items: center; }
.intake .lead { color: rgba(255,255,255,.8); }
.checklist-light li { color: rgba(255,255,255,.92); }

.form-card {
  background: var(--white);
  color: var(--ink);
  border-radius: 20px;
  padding: 38px 38px 32px;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.7);
}
.progress { height: 4px; background: var(--line); border-radius: 4px; overflow: hidden; margin-bottom: 14px; }
.progress-bar { display: block; height: 100%; width: 33.33%; background: var(--gold-grad); transition: width .4s ease; }
.step-label { font-size: .75rem; text-transform: uppercase; letter-spacing: .18em; color: var(--gold-500); font-weight: 600; margin-bottom: 8px; }

.form-step { border: 0; padding: 0; margin: 0; display: none; }
.form-step.is-active { display: block; animation: fadeUp .35s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.form-step legend {
  font-family: var(--font-display);
  font-size: 1.75rem; font-weight: 600; color: var(--navy-800);
  line-height: 1.2; margin-bottom: 20px; padding: 0;
}

.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
.choice { position: relative; cursor: pointer; }
.choice input { position: absolute; opacity: 0; }
.choice span {
  display: flex; align-items: center; min-height: 54px;
  padding: 12px 16px;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-weight: 500; font-size: .95rem;
  transition: all .2s ease;
}
.choice input:checked + span { border-color: var(--gold-500); background: #fbf5e6; color: var(--navy-900); box-shadow: inset 0 0 0 1px var(--gold-500); }
.choice input:focus-visible + span { outline: 2px solid var(--navy-600); outline-offset: 2px; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .86rem; font-weight: 500; margin-bottom: 6px; color: var(--navy-800); }
.optional { color: var(--muted); font-weight: 400; }
.field input, .field select, .field textarea {
  width: 100%;
  font: 400 1rem var(--font-body);
  color: var(--ink);
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold-500); box-shadow: 0 0 0 3px rgba(201,162,74,.2);
}
.field input.invalid { border-color: #c0392b; }
.form-nav { margin-top: 8px; }
.form-nav.two { display: grid; grid-template-columns: auto 1fr; gap: 12px; }
.form-error { color: #b03a2e; font-size: .9rem; margin: 0 0 10px; }
.privacy { font-size: .8rem; color: var(--muted); text-align: center; margin: 14px 0 0; }
.hp { position: absolute; left: -9999px; }

.form-success { text-align: center; padding: 10px 0; }
.success-icon {
  width: 68px; height: 68px; margin: 0 auto 16px; border-radius: 50%;
  background: var(--gold-grad); color: var(--navy-900);
  display: grid; place-items: center; font-size: 2rem; font-weight: 700;
}
.form-success h3 { font-size: 2rem; color: var(--navy-800); }
.form-success p { color: var(--muted); }

/* Final CTA */
.final-cta {
  background: var(--cream);
  padding: 100px 0;
  text-align: center;
  border-top: 1px solid var(--line);
}
.final-cta h2 { color: var(--navy-800); font-size: clamp(2.4rem, 4.5vw, 3.6rem); }
.final-cta p { color: var(--muted); font-size: 1.1rem; }
.final-cta .btn-ghost { color: var(--navy-800); border-color: var(--navy-800); background: transparent; }
.final-cta .btn-ghost:hover { background: var(--navy-800); color: var(--white); }

/* Footer */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,.75); padding: 70px 0 30px; font-size: .95rem; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; }
.footer-brand img { width: 150px; margin-bottom: 16px; }
.footer-col h4 { color: var(--gold-300); font-weight: 500; text-transform: uppercase; letter-spacing: .18em; font-size: .78rem; margin: 0 0 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0 0 20px; display: grid; gap: 8px; }
.footer-col a { text-decoration: none; }
.footer-col a:hover { color: var(--gold-300); }
.footer-legal { border-top: 1px solid rgba(255,255,255,.1); margin-top: 50px; padding-top: 24px; font-size: .82rem; }

/* Mobile sticky CTA */
.mobile-cta { display: none; }

/* ---------- Placeholder markers (remove body.show-placeholders when done) ---------- */
.show-placeholders .placeholder,
.show-placeholders .placeholder-inline { position: relative; outline: 1.5px dashed rgba(201,162,74,.7); outline-offset: 4px; border-radius: 4px; }
.show-placeholders .placeholder::after {
  content: "Replace";
  position: absolute; top: -12px; right: 8px;
  background: var(--gold-500); color: var(--navy-900);
  font: 600 .62rem/1 var(--font-body); letter-spacing: .12em; text-transform: uppercase;
  padding: 4px 7px; border-radius: 4px;
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ==========================================================
   Responsive
   ========================================================== */
@media (max-width: 1080px) {
  .who-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-points { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-item:nth-child(3) { padding-left: 0; border-left: 0; }
  .main-nav { gap: 1.2rem; }
  .main-nav ul { gap: 1.2rem; }
}

@media (max-width: 900px) {
  :root { --header-h: 72px; }
  .brand-logo { height: 52px; }

  .nav-toggle { display: block; position: relative; z-index: 2; }
  .main-nav {
    position: fixed; inset: 0;
    background: var(--navy-900);
    flex-direction: column; justify-content: center; gap: 2.2rem;
    opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s;
  }
  .main-nav.is-open { opacity: 1; visibility: visible; }
  .main-nav ul { flex-direction: column; align-items: center; gap: 1.4rem; }
  .main-nav ul a { font-family: var(--font-display); font-size: 1.9rem; }

  .quickstart { grid-template-columns: 1fr; padding: 8px; }
  .qs-field { border-right: 0; border-bottom: 1px solid var(--line); padding: 10px 14px; }
  .qs-field:nth-child(3) { border-bottom: 0; }
  .qs-submit { margin-top: 6px; padding: 16px; }

  .quiz-inner, .intake-inner, .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .quiz-media { max-width: 440px; margin: 0 auto; width: 100%; }
  .quiz-badge { right: 0; }
  .about-photo { max-width: 420px; margin-inline: auto 24px; width: calc(100% - 24px); }
  .spec-grid, .steps { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .section, .quiz, .intake { padding: 80px 0; }

  .mobile-cta {
    display: grid; grid-template-columns: 1fr 1.3fr; gap: 10px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(10,22,48,.96); backdrop-filter: blur(8px);
    border-top: 1px solid rgba(201,162,74,.35);
    transform: translateY(110%); transition: transform .3s ease;
  }
  .mobile-cta.is-visible { transform: none; }
  .mobile-cta .btn { --pad-y: 12px; --pad-x: 12px; }
  .site-footer { padding-bottom: 100px; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  .container { padding-inline: 18px; }
  .hero { padding-top: calc(var(--header-h) + 24px); align-items: flex-end; }
  .hero-sub { font-size: 1.05rem; }
  .hero-ctas .btn { flex: 1 1 100%; }
  .scroll-cue { display: none; }
  .who-grid, .trust-points, .why-grid { grid-template-columns: 1fr; }
  .why-item, .why-item + .why-item { padding: 26px 0 0; border-left: 0; }
  .partner-logos { gap: 18px 28px; }
  .partner-logos .pl-tall { height: 40px; }
  .partner-logos .pl-mid { height: 30px; }
  .partner-logos .pl-wide { height: 24px; }
  .partner-logos .pl-xwide { height: 14px; }
  .partner-logos .pl-text { font-size: 1.15rem; }
  .form-card { padding: 28px 22px 24px; }
  .field-row, .choice-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

.step-link { color: var(--gold-300); text-decoration: none; border-bottom: 1px solid rgba(234,208,143,.5); }
.step-link:hover { color: var(--white); border-color: var(--white); }

/* ==========================================================
   Travel Tips blog
   ========================================================== */
.page-hero {
  background: var(--navy-900);
  color: var(--white);
  padding: calc(var(--header-h) + 80px) 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; right: -180px; top: -160px;
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,74,.18), transparent 70%);
}
.page-hero .container { position: relative; }
.page-hero h1 { font-size: clamp(2.6rem, 5vw, 4rem); max-width: 760px; }
.page-hero .lead { color: rgba(255,255,255,.78); }

.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.post-card {
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.post-card-img { aspect-ratio: 3 / 2; overflow: hidden; }
.post-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.post-card:hover .post-card-img img { transform: scale(1.05); }
.post-card-body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.post-tag {
  font-size: .7rem; text-transform: uppercase; letter-spacing: .18em;
  color: var(--gold-500); font-weight: 600; margin-bottom: 10px;
}
.post-card h2, .post-card h3 { font-size: 1.55rem; color: var(--navy-800); margin-bottom: .4em; }
.post-card p { color: var(--muted); font-size: .96rem; flex: 1; }
.post-card .post-tag { flex: none; }
.post-card .text-link { align-self: flex-start; }

/* Article */
.article-hero {
  position: relative;
  min-height: 62vh;
  display: flex; align-items: flex-end;
  color: var(--white);
  padding: calc(var(--header-h) + 60px) 0 60px;
  background: var(--navy-900);
  overflow: hidden;
}
.article-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.article-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,22,48,.95) 0%, rgba(10,22,48,.55) 55%, rgba(10,22,48,.35) 100%);
}
.article-hero .container { position: relative; z-index: 1; }
.article-hero h1 { font-size: clamp(2.3rem, 4.6vw, 3.8rem); max-width: 860px; }
.article-meta { color: rgba(255,255,255,.75); font-size: .92rem; margin: 0; }
.back-link { color: var(--gold-300); text-decoration: none; font-size: .9rem; display: table; margin-bottom: 18px; }
.back-link:hover { color: var(--white); }

.article { padding: 80px 0 100px; }
.article-body { max-width: 720px; margin: 0 auto; font-size: 1.1rem; line-height: 1.8; }
.article-body > p:first-child { font-size: 1.25rem; color: var(--navy-700); }
.article-body h2 { font-size: 2.1rem; color: var(--navy-800); margin-top: 1.6em; }
.article-body h3 { font-size: 1.5rem; color: var(--navy-800); margin-top: 1.4em; }
.article-body ul, .article-body ol { padding-left: 1.3em; margin: 0 0 1.2em; }
.article-body li { margin-bottom: .5em; }
.article-body li::marker { color: var(--gold-500); }
.article-body a:not(.btn) { color: var(--navy-600); text-decoration-color: var(--gold-500); text-underline-offset: 3px; }
.article-body blockquote {
  margin: 1.8em 0; padding: 6px 0 6px 24px;
  border-left: 3px solid var(--gold-500);
  font-family: var(--font-display); font-size: 1.55rem; line-height: 1.4; color: var(--navy-800);
}

.inline-cta {
  margin: 2.4em 0;
  padding: 30px 32px;
  border-radius: var(--radius);
  background: var(--navy-800);
  color: var(--white);
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.inline-cta h3 { color: var(--white); margin: 0 0 .2em; font-size: 1.6rem; }
.inline-cta p { margin: 0; color: rgba(255,255,255,.78); font-size: 1rem; line-height: 1.6; }
.inline-cta > div { flex: 1 1 280px; }

.related { background: var(--cream); padding: 90px 0; }

@media (max-width: 900px) {
  .post-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .post-grid { grid-template-columns: 1fr; }
  .article-body { font-size: 1.04rem; }
  .inline-cta { padding: 24px 22px; }
  .inline-cta .btn { width: 100%; }
}

.optin { display: flex; gap: 10px; align-items: flex-start; font-size: .86rem; color: var(--muted); margin: 4px 0 16px; cursor: pointer; line-height: 1.5; }
.optin input { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--gold-500); flex: none; }

/* Article header band + full featured image (images carry their own title art) */
.article-head {
  background: var(--navy-900);
  color: var(--white);
  padding: calc(var(--header-h) + 64px) 0 150px;
  position: relative;
  overflow: hidden;
}
.article-head::before {
  content: ""; position: absolute; right: -180px; top: -160px;
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,74,.18), transparent 70%);
}
.article-head .container { position: relative; }
.article-head h1 { font-size: clamp(2.3rem, 4.6vw, 3.6rem); max-width: 880px; }
.article-feature {
  margin: -110px auto 0;
  max-width: 1000px;
  position: relative;
  z-index: 1;
}
.article-feature img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 30px 60px -30px rgba(10,22,48,.55);
}
.article-feature + .article, .container:has(> .article-feature) + .article { padding-top: 64px; }
@media (max-width: 600px) {
  .article-head { padding-bottom: 90px; }
  .article-feature { margin-top: -60px; }
}

/* ---------- Quiz gate form (on navy) ---------- */
.quiz-gate, .quiz-unlocked {
  margin-top: 8px;
  padding: 26px 26px 22px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(201,162,74,.35);
}
.quiz-gate-title {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 600;
  color: var(--gold-300);
  margin: 0 0 14px;
}
.quiz-gate-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 0 14px; }
.quiz-gate-fields .field:last-child { grid-column: 1 / -1; }
.quiz-gate .field label { color: rgba(255,255,255,.85); }
.quiz-gate .field input {
  background: rgba(255,255,255,.96);
  border-color: transparent;
}
.quiz-gate .optional { color: rgba(255,255,255,.55); }
.optin-light { color: rgba(255,255,255,.72); }
.quiz-gate .form-error { color: #ffb4a8; }
.quiz-unlocked p { color: rgba(255,255,255,.8); }

/* ---------- Quiz window ---------- */
.quiz-modal {
  position: fixed; inset: 0; z-index: 300;
  background: var(--navy-900);
  display: flex; flex-direction: column;
  padding-top: env(safe-area-inset-top, 0px);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.quiz-modal[hidden] { display: none; }
.quiz-modal-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 10px 16px;
  color: var(--gold-300);
  font-size: .8rem; letter-spacing: .18em; text-transform: uppercase;
  border-bottom: 1px solid rgba(201,162,74,.3);
}
.quiz-modal-bar > div { display: flex; align-items: center; gap: 14px; }
.quiz-modal-link { color: rgba(255,255,255,.75); text-decoration: none; letter-spacing: .04em; text-transform: none; font-size: .9rem; }
.quiz-modal-link:hover { color: var(--white); }
.quiz-modal-close {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.3); background: transparent;
  color: var(--white); font-size: 1rem; cursor: pointer;
}
.quiz-modal-close:hover { background: rgba(255,255,255,.1); }
.quiz-modal iframe { flex: 1; width: 100%; border: 0; background: var(--navy-900); }

@media (max-width: 600px) {
  .quiz-gate-fields { grid-template-columns: 1fr; }
  .quiz-gate, .quiz-unlocked { padding: 22px 18px 18px; }
  .quiz-modal-link { display: none; }
}

/* Meet Your Advisor photo */
.about-photo-filled {
  margin: 0;
  aspect-ratio: 1 / 1;
  background: none;
  padding: 0;
  display: block;
}
.about-photo-filled img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
  border-radius: var(--radius);
}
.about-photo-filled figcaption {
  position: absolute; left: 16px; bottom: 16px;
  background: rgba(10,22,48,.82);
  color: var(--gold-300);
  font-family: var(--font-display); font-style: italic;
  font-size: 1.05rem; letter-spacing: .02em; text-transform: none;
  padding: 6px 14px; border-radius: 999px;
  backdrop-filter: blur(4px);
}

/* Hero photo framing: keep Explora III visible to the right of the headline */
@media (max-aspect-ratio: 4/3) {
  .hero-media { background-size: cover; background-position: 48% 55%; }
}

/* Who I Serve cards with photos */
.who-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.who-img { aspect-ratio: 3 / 2; overflow: hidden; }
.who-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.who-card:hover .who-img img { transform: scale(1.05); }
.who-body { position: relative; padding: 0 26px 26px; display: flex; flex-direction: column; flex: 1; }
.who-body .who-icon {
  margin: -27px 0 16px;
  border: 3px solid var(--white);
  position: relative;
}
.who-body p { flex: 1; }
.who-link {
  margin-top: 18px;
  align-self: flex-start;
  font-weight: 600;
  font-size: .92rem;
  color: var(--navy-700);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.who-link:hover { color: var(--gold-500); border-bottom-color: var(--gold-500); }

/* ==========================================================
   Discovery Call landing page
   ========================================================== */
.lp-header .header-inner { justify-content: space-between; }
.lp-hero {
  background:
    radial-gradient(120% 90% at 85% 10%, rgba(201,162,74,.16), transparent 55%),
    linear-gradient(160deg, var(--navy-700) 0%, var(--navy-900) 70%);
  color: var(--white);
  padding: calc(var(--header-h) + 70px) 0 90px;
}
.lp-hero-inner { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: center; }
.lp-hero h1 { font-size: clamp(2.4rem, 4.6vw, 3.9rem); }
.lp-hero .hero-ctas { margin: 1.8rem 0 1.6rem; }
.lp-proof { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px 22px; }
.lp-proof li { font-size: .9rem; color: var(--gold-300); font-weight: 500; position: relative; padding-left: 20px; }
.lp-proof li::before { content: "✓"; position: absolute; left: 0; font-weight: 700; }

.lp-video { margin: 0; }
.video-frame {
  position: relative; aspect-ratio: 16 / 9;
  border-radius: var(--radius); overflow: hidden;
  background: var(--navy-900);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.7), 0 0 0 1px rgba(201,162,74,.35);
}
.video-frame iframe, .video-frame video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-placeholder { position: absolute; inset: 0; display: grid; place-items: center; }
.video-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(.55); }
.video-play {
  position: relative; width: 84px; height: 84px; border-radius: 50%;
  background: var(--gold-grad); display: grid; place-items: center;
  box-shadow: 0 16px 40px -10px rgba(0,0,0,.6);
}
.video-play svg { width: 34px; height: 34px; fill: var(--navy-900); margin-left: 4px; }
.video-soon {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.85);
  background: rgba(10,22,48,.6); padding: 6px 14px; border-radius: 999px; white-space: nowrap;
}
.lp-video figcaption {
  margin-top: 14px; text-align: center;
  font-family: var(--font-display); font-style: italic; font-size: 1.15rem; color: var(--gold-300);
}

.lp-cover { background: var(--cream); }
.lp-cover-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.lp-cover-item {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px;
}
.lp-cover-item .step-num { font-size: 2.4rem; }
.lp-cover-item h3 { color: var(--navy-800); font-size: 1.4rem; }
.lp-cover-item p { color: var(--muted); font-size: .96rem; margin: 0; }

.lp-for { background: var(--navy-800); color: var(--white); padding: 80px 0; }
.lp-for-inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.lp-for h2 { margin: 0; }
.lp-for-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.lp-for-list li {
  padding: 16px 20px 16px 50px; position: relative;
  border: 1px solid rgba(201,162,74,.3); border-radius: var(--radius-sm);
  background: rgba(255,255,255,.04); color: rgba(255,255,255,.82);
}
.lp-for-list li::before {
  content: "✓"; position: absolute; left: 18px; top: 50%; transform: translateY(-50%);
  width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center;
  background: var(--gold-grad); color: var(--navy-900); font-size: .75rem; font-weight: 700;
}
.lp-for-list strong { color: var(--gold-300); }

.lp-how .steps { margin-bottom: 0; }

.lp-faq-inner { max-width: 820px; }
.faq-list details {
  border-bottom: 1px solid var(--line); padding: 18px 0;
}
.faq-list summary {
  cursor: pointer; list-style: none;
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--navy-800);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; font-family: var(--font-body); font-size: 1.6rem; color: var(--gold-500); transition: transform .2s ease; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { color: var(--muted); margin: 12px 0 0; }
.faq-list a { color: var(--navy-600); text-decoration-color: var(--gold-500); text-underline-offset: 3px; }

.lp-footer { padding: 40px 0 30px; }
.lp-footer-inner { border-top: 0; margin-top: 0; padding-top: 0; text-align: center; }
.lp-footer-inner img { width: 110px; margin: 0 auto 14px; }
.lp-footer-inner a { color: var(--gold-300); text-decoration: none; }
.lp-footer-inner p { margin: 0 0 8px; }

.mobile-cta-single { grid-template-columns: 1fr !important; }

@media (max-width: 1080px) {
  .lp-cover-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .lp-hero-inner, .lp-for-inner { grid-template-columns: 1fr; gap: 40px; }
  .lp-hero { padding-bottom: 70px; }
  .lp-header .btn { --pad-x: 16px; font-size: .85rem; }
}
@media (max-width: 600px) {
  .lp-cover-grid { grid-template-columns: 1fr; }
  .lp-header .btn { display: none; }
  .faq-list summary { font-size: 1.2rem; }
}

/* ==========================================================
   Link-in-bio page (/links)
   ========================================================== */
.linkpage {
  min-height: 100vh;
  background:
    radial-gradient(120% 70% at 50% -10%, rgba(201,162,74,.22), transparent 60%),
    linear-gradient(180deg, var(--navy-700) 0%, var(--navy-900) 65%);
  background-attachment: fixed;
  color: var(--white);
}
.lk { max-width: 520px; margin: 0 auto; padding: 44px 20px 36px; text-align: center; }
.lk-avatar {
  width: 112px; height: 112px; border-radius: 50%; object-fit: cover;
  margin: 0 auto 14px; border: 3px solid var(--gold-400);
  box-shadow: 0 14px 34px -12px rgba(0,0,0,.6);
}
.lk-logo { width: 96px; margin: 0 auto 10px; }
.lk-head h1 { font-size: 2rem; margin: 0 0 6px; }
.lk-tagline { color: rgba(255,255,255,.75); font-size: .95rem; line-height: 1.55; margin: 0 0 28px; }
.lk-links { display: grid; gap: 14px; }
.lk-btn {
  display: flex; align-items: center; gap: 14px; text-align: left;
  padding: 16px 18px; border-radius: 16px; text-decoration: none; color: var(--white);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(201,162,74,.4);
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
}
.lk-btn:hover { transform: translateY(-2px); background: rgba(255,255,255,.1); border-color: var(--gold-400); }
.lk-btn:focus-visible { outline: 3px solid var(--gold-300); outline-offset: 3px; }
.lk-ic {
  flex: none; width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.25rem;
  background: rgba(201,162,74,.16);
}
.lk-txt { display: flex; flex-direction: column; min-width: 0; }
.lk-txt strong { font-weight: 600; font-size: 1.02rem; }
.lk-txt small { color: rgba(255,255,255,.68); font-size: .84rem; margin-top: 2px; }
.lk-primary { background: var(--gold-grad); border-color: transparent; color: var(--navy-900); box-shadow: 0 14px 30px -12px rgba(201,162,74,.8); }
.lk-primary:hover { background: var(--gold-grad); }
.lk-primary .lk-ic { background: rgba(10,22,48,.12); }
.lk-primary .lk-txt small { color: rgba(10,22,48,.75); }
.lk-contact { display: flex; justify-content: center; gap: 16px; margin: 30px 0 14px; }
.lk-contact a {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.3);
}
.lk-contact a:hover { border-color: var(--gold-400); }
.lk-contact svg { width: 20px; height: 20px; fill: var(--gold-300); }
.lk-foot { color: rgba(255,255,255,.5); font-size: .8rem; margin: 0; }

/* Discovery Call page v2: "On Our Call" + form side by side, compact "Perfect For" */
.lp-plan { background: var(--cream); }
.lp-plan-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.lp-plan-copy h2 { color: var(--navy-800); }
.lp-cover-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.lp-cover-list .lp-cover-item { display: flex; gap: 14px; padding: 20px 20px; }
.lp-cover-list .step-num { font-size: 1.9rem; margin: 0; flex: none; }
.lp-cover-list h3 { font-size: 1.2rem; margin-bottom: .25em; }
.lp-cover-list p { font-size: .92rem; }
.lp-plan-form {
  background: var(--white); border-radius: 20px; padding: 30px 30px 26px;
  box-shadow: 0 30px 60px -30px rgba(10,22,48,.45); border: 1px solid var(--line);
  position: sticky; top: calc(var(--header-h) + 20px);
}
.lp-plan-form .form-card { padding: 0; box-shadow: none; border-radius: 0; background: none; }
.lp-form-title { font-family: var(--font-display); font-size: 1.8rem; font-weight: 600; color: var(--navy-800); margin: 0 0 4px; line-height: 1.15; }
.lp-form-sub { color: var(--muted); font-size: .95rem; margin: 0 0 18px; }

.lp-for { padding: 40px 0 44px; }
.lp-for-title { text-align: center; margin: 0 0 18px; }
.lp-for-title .eyebrow { margin: 0; }
.lp-for-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.lp-for-box {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 18px; border-radius: var(--radius-sm);
  border: 1px solid rgba(201,162,74,.35); background: rgba(255,255,255,.05);
}
.lp-for-ic { flex: none; width: 40px; height: 40px; border-radius: 50%; background: var(--gold-grad); display: grid; place-items: center; }
.lp-for-ic svg { width: 19px; height: 19px; fill: var(--navy-900); }
.lp-for-box h3 { font-family: var(--font-body); font-size: .95rem; font-weight: 600; color: var(--white); margin: 0; line-height: 1.35; }

@media (max-width: 1080px) {
  .lp-for-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .lp-plan-inner { grid-template-columns: 1fr; gap: 36px; }
  .lp-plan-form { position: static; }
}
@media (max-width: 600px) {
  .lp-cover-list { grid-template-columns: 1fr; }
  .lp-plan-form { padding: 24px 20px 20px; }
  .lp-for-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .lp-for-box { flex-direction: column; text-align: center; padding: 14px 10px; }
  .lp-for-box h3 { font-size: .85rem; }
}

/* Discovery Call page v3: 4 points across + process graphic beside the form */
.lp-plan-head { max-width: 760px; margin-left: auto; margin-right: auto; text-align: center; margin-bottom: 40px; }
.lp-plan-head .lead { margin-left: auto; margin-right: auto; }
.lp-cover-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.lp-cover-row .lp-cover-item { padding: 26px 22px; }
.lp-cover-row .step-num { font-size: 2.2rem; }
.lp-cover-row h3 { font-size: 1.3rem; }

.lp-book {
  background:
    radial-gradient(90% 80% at 0% 0%, rgba(201,162,74,.14), transparent 60%),
    var(--navy-900);
  color: var(--white);
  padding: 90px 0;
}
.lp-book-inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: center; }
.lp-process h2 { font-size: clamp(2rem, 3.4vw, 2.7rem); margin-bottom: 30px; }
.process { list-style: none; margin: 0 0 28px; padding: 0; }
.process-step {
  display: flex; gap: 18px; align-items: center;
  padding: 18px 20px; border-radius: var(--radius);
  background: rgba(255,255,255,.05); border: 1px solid rgba(201,162,74,.35);
}
.process-num {
  flex: none; width: 52px; height: 52px; border-radius: 50%;
  background: var(--gold-grad); color: var(--navy-900);
  font-family: var(--font-display); font-size: 1.7rem; font-weight: 600;
  display: grid; place-items: center;
  box-shadow: 0 8px 20px -8px rgba(201,162,74,.8);
}
.process-step h3 { font-size: 1.3rem; margin: 0 0 2px; color: var(--white); }
.process-step p { margin: 0; font-size: .94rem; color: rgba(255,255,255,.75); }
.process-arrow { height: 34px; display: flex; justify-content: flex-start; padding-left: 34px; }
.process-arrow svg { width: 24px; height: 34px; fill: none; stroke: var(--gold-400); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.lp-proof-sm li { font-size: .88rem; }
.lp-book .lp-plan-form { position: static; box-shadow: 0 40px 80px -30px rgba(0,0,0,.7); border: 0; }

@media (max-width: 1080px) {
  .lp-cover-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .lp-book-inner { grid-template-columns: 1fr; gap: 40px; }
  .lp-book { padding: 70px 0; }
}
@media (max-width: 600px) {
  .lp-cover-row { grid-template-columns: 1fr; }
  .process-step { padding: 14px 16px; gap: 14px; }
  .process-num { width: 44px; height: 44px; font-size: 1.4rem; }
  .process-arrow { padding-left: 26px; }
}

/* Discovery Call page v4: credential strip across hero, borderless "Perfect For" */
.lp-proof-bar {
  list-style: none; margin: 56px 0 0; padding: 22px 0 0;
  border-top: 1px solid rgba(201,162,74,.28);
  display: grid; grid-template-columns: repeat(3, 1fr);
}
.lp-proof-bar li {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  color: var(--gold-300); font-weight: 600; font-size: .98rem; letter-spacing: .02em;
  padding: 4px 12px;
}
.lp-proof-bar li + li { border-left: 1px solid rgba(201,162,74,.28); }
.lp-proof-bar svg { width: 22px; height: 22px; fill: var(--gold-400); flex: none; }

.lp-for-box { border: 0; background: none; padding: 6px 8px; justify-content: center; }
.lp-for-grid { gap: 10px 24px; }

@media (max-width: 900px) {
  .lp-proof-bar { grid-template-columns: 1fr; gap: 10px; margin-top: 40px; }
  .lp-proof-bar li { justify-content: flex-start; padding: 0; }
  .lp-proof-bar li + li { border-left: 0; }
}
@media (max-width: 600px) {
  .lp-for-box { padding: 8px 4px; }
}

/* Discovery Call page: 4 credentials in hero strip; trust bar shows partner logos only */
.lp-proof-bar { grid-template-columns: repeat(4, 1fr); }
.lp-proof-bar li { font-size: .93rem; }
.lp-trust { padding: 26px 0 30px; }
.lp-trust .partners { padding-top: 0; }
@media (max-width: 1080px) {
  .lp-proof-bar { grid-template-columns: repeat(2, 1fr); row-gap: 14px; }
  .lp-proof-bar li:nth-child(3) { border-left: 0; }
}
@media (max-width: 900px) {
  .lp-proof-bar { grid-template-columns: 1fr; }
}

/* Social icons */
.social-links { display: flex; gap: 12px; margin: 0 0 20px; }
.social-links-center { justify-content: center; margin: 6px 0 14px; }
.social-links a {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  color: var(--gold-300); border: 1px solid rgba(201,162,74,.45);
  transition: background .2s ease, color .2s ease;
}
.social-links a:hover { background: var(--gold-500); color: var(--navy-900); }
.social-links svg { width: 19px; height: 19px; }
.lk-contact .lk-social { color: var(--gold-300); }
.lk-contact .lk-social svg { fill: none; }
.lk-contact .lk-social svg circle:last-child { fill: currentColor; }

/* Links page: logo as brand header */
.lk-logo { width: 190px; margin: 0 auto 22px; filter: drop-shadow(0 8px 18px rgba(0,0,0,.35)); }
.lk-avatar { width: 96px; height: 96px; }

/* Discovery Call page v5: compact "On Our Call" strip */
.lp-call-strip { background: var(--cream); padding: 36px 0 34px; border-bottom: 1px solid var(--line); }
.lp-strip-title {
  font-size: clamp(1.45rem, 2.4vw, 1.9rem); color: var(--navy-800);
  text-align: center; margin: 0 0 22px;
}
.lp-strip-title .eyebrow { display: flex; justify-content: center; margin: 0 0 6px; font-size: .72rem; }
.lp-strip-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.lp-strip-list li { display: flex; align-items: flex-start; gap: 12px; }
.lp-strip-list .step-num { font-size: 1.7rem; line-height: 1; margin: 0; flex: none; }
.lp-strip-list strong { display: block; font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--navy-800); line-height: 1.2; }
.lp-strip-list span:not(.step-num) { display: block; font-size: .86rem; color: var(--muted); line-height: 1.45; margin-top: 3px; }
.lp-book { padding: 60px 0; }
.lp-trust { border-top: 0; }
@media (max-width: 1080px) {
  .lp-strip-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .lp-call-strip { padding: 28px 0; }
  .lp-strip-list { gap: 14px 12px; }
  .lp-strip-list strong { font-size: 1.02rem; }
  .lp-book { padding: 48px 0; }
}
@media (max-width: 900px) {
  .lp-book .lp-plan-form { order: -1; }
  .lp-proof-bar { grid-template-columns: 1fr 1fr; gap: 12px 10px; }
  .lp-proof-bar li { font-size: .85rem; align-items: flex-start; }
}

/* Phone polish: comfortable tap targets and readable labels */
@media (max-width: 600px) {
  .qs-field select { min-height: 44px; padding-top: 8px; padding-bottom: 8px; font-size: 1.02rem; }
  .qs-field label, .partners-label, .eyebrow, .lp-strip-title .eyebrow, .step-label, .post-tag { font-size: .78rem; }
  .who-link, .back-link { display: inline-block; padding: 10px 0; }
  .text-link { display: inline-block; padding: 8px 0 4px; }
  .choice span { min-height: 50px; }
  .footer-col ul a, .footer-col ul li { display: inline-block; padding: 4px 0; }
  .faq-list summary { padding: 6px 0; }
}
