/* =========================================================================
   Wander Often: light, airy luxury travel aesthetic
   Clean white & warm off-white · charcoal text · refined gold · bright imagery
   ========================================================================= */
:root {
  --white: #ffffff;
  --soft: #f7f3ec;      /* warm off-white */
  --cream: #f1e9dc;     /* deeper warm tone */
  --paper: #fbf9f4;     /* card / input fill */

  --ink: #23282d;       /* primary charcoal text */
  --ink-soft: #5b6670;  /* secondary text */
  --ink-dim: #8a949c;   /* tertiary / fine print */

  --gold: #0E7FA8;        /* primary accent: deep ocean blue (AA-legible on white) */
  --gold-soft: #1CA9C9;   /* bright cerulean */
  --gold-bright: #2FD9C8; /* turquoise / aqua highlight */

  --line: rgba(35, 40, 45, 0.10);          /* hairline on light */
  --line-gold: rgba(28, 169, 201, 0.40);

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --shadow: 0 26px 60px rgba(35, 45, 60, 0.14);
  --shadow-sm: 0 14px 34px rgba(35, 45, 60, 0.09);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
/* The [hidden] attribute must always win, even over .btn/.video-frame display rules.
   Without this, the success-state "Schedule My Call" button and long-video frame leak
   through while still flagged hidden. */
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 28px; }

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.08; letter-spacing: 0.005em; color: var(--ink); }
em { font-style: normal; color: var(--gold); font-weight: 600; }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 22px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-align: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  padding: 17px 34px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), filter 0.3s ease;
  box-shadow: 0 10px 26px rgba(14, 127, 168, 0.30);
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(14, 127, 168, 0.42); filter: brightness(1.05); }
.btn:active { transform: translateY(-1px); }
.btn--gold { background: linear-gradient(135deg, var(--gold-soft), var(--gold)); }
.btn--block { display: block; width: 100%; }
.btn--small { padding: 12px 24px; font-size: 0.72rem; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px 0;
  transition: background 0.5s var(--ease), padding 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; }
.brand { text-decoration: none; }
.brand__name {
  font-family: var(--serif); font-size: 1.6rem; font-weight: 600;
  letter-spacing: 0.03em; color: var(--ink);
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  padding: 13px 0;
  box-shadow: 0 1px 0 var(--line), 0 8px 24px rgba(35, 45, 60, 0.06);
}

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 130px 0 80px;
  overflow: hidden;
}
/* Image on its own layer so the filter brightens/saturates only the photo. */
.hero::before {
  content: "";
  position: absolute; inset: 0; z-index: 0;
  background-image: url("https://images.unsplash.com/photo-1613395877344-13d4a8e0d49e?auto=format&fit=crop&w=2100&q=80");
  background-size: cover;
  background-position: center 35%;
  filter: saturate(1.32) brightness(1.08);
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.78) 38%, rgba(255,255,255,0.28) 70%, rgba(255,255,255,0.06) 100%),
    linear-gradient(0deg, rgba(255,255,255,0.45) 0%, rgba(255,255,255,0) 42%);
}
.hero__grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 60px; align-items: center; width: 100%;
}
.hero__title {
  font-size: clamp(2.1rem, 4.3vw, 3.3rem);
  color: var(--ink);
  margin-bottom: 24px;
}
.hero__title-accent { color: var(--gold); }
.hero__sub {
  font-size: 1.1rem; color: var(--ink-soft); max-width: 50ch; margin-bottom: 28px; font-weight: 400;
}
.hero__sub p { margin-bottom: 14px; }
.hero__sub p:last-child { margin-bottom: 0; }
.hero__ticks { list-style: none; display: flex; flex-wrap: wrap; gap: 14px 26px; margin-bottom: 34px; }
.hero__ticks li {
  position: relative; padding-left: 22px;
  font-size: 0.9rem; color: var(--ink-soft); letter-spacing: 0.01em;
}
.hero__ticks li::before {
  content: ""; position: absolute; left: 0; top: 0.62em;
  width: 9px; height: 9px; border: 1px solid var(--gold); transform: rotate(45deg);
}

.hero__play {
  display: inline-flex; align-items: center; gap: 14px;
  color: var(--ink); text-decoration: none;
  font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.16em; font-weight: 500;
  transition: color 0.3s ease;
}
.hero__play:hover { color: var(--gold); }
.hero__play-btn {
  display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid var(--line-gold); color: var(--gold); background: var(--white);
  font-size: 0.9rem; padding-left: 3px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
.hero__play:hover .hero__play-btn { border-color: var(--gold); background: #eafaff; transform: scale(1.05); }

.hero__scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  z-index: 3; color: var(--ink); text-decoration: none; font-size: 1.4rem; opacity: 0.55;
  animation: bob 2.4s ease-in-out infinite;
}
@keyframes bob { 0%,100%{ transform: translateX(-50%) translateY(0);} 50%{ transform: translateX(-50%) translateY(8px);} }

/* =========================================================================
   LEAD CARD / FORMS  (light cards)
   ========================================================================= */
.lead-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: 6px;
  padding: 38px 34px;
  box-shadow: var(--shadow);
}
.lead-card__kicker {
  display: inline-block; font-size: 0.66rem; text-transform: uppercase;
  letter-spacing: 0.28em; color: var(--gold); margin-bottom: 12px; font-weight: 600;
}
.lead-card__title { font-size: 2rem; color: var(--ink); margin-bottom: 6px; }
.lead-card__sub { color: var(--ink-soft); font-size: 0.97rem; margin-bottom: 26px; }
.lead-card__fine { font-size: 0.76rem; color: var(--ink-dim); text-align: center; margin-top: 10px; letter-spacing: 0.01em; }
.lead-card__consent { font-size: 0.73rem; line-height: 1.5; color: var(--ink-dim); text-align: center; margin-top: 16px; }
.lead-card__consent a { color: var(--gold); text-decoration: underline; }

.lead-form label { display: block; margin-bottom: 16px; }
.lead-form label > span {
  display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em;
  font-weight: 600; margin-bottom: 8px; color: var(--ink-soft);
}
.lead-form label small { text-transform: none; letter-spacing: 0; color: var(--ink-dim); font-weight: 400; }
.lead-form input,
.lead-form textarea {
  width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--ink);
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.lead-form textarea { resize: vertical; min-height: 76px; line-height: 1.5; }
.lead-form input::placeholder,
.lead-form textarea::placeholder { color: var(--ink-dim); }
.lead-form input:focus,
.lead-form textarea:focus {
  outline: none; border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(28, 169, 201, 0.18);
}
.lead-form .btn { margin-top: 8px; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.form-msg { font-size: 0.86rem; margin-top: 12px; min-height: 1.1em; }
.form-msg.error { color: #c0492f; font-weight: 500; }
.form-msg.loading { color: var(--ink-soft); }

/* Success state */
.lead-success { text-align: center; }
.lead-success__check {
  display: inline-grid; place-items: center;
  width: 60px; height: 60px; border-radius: 50%;
  border: 1px solid var(--gold); color: var(--gold);
  font-size: 1.7rem; margin-bottom: 14px; background: #eafaff;
}
.lead-success h3 { font-size: 2rem; color: var(--ink); margin-bottom: 8px; }
.lead-success__msg { color: var(--ink-soft); margin-bottom: 22px; }
.lead-success .video-frame { margin-bottom: 22px; }

/* =========================================================================
   VIDEO FRAME
   ========================================================================= */
.video-frame {
  position: relative; width: 100%; aspect-ratio: 16 / 9;
  border-radius: 6px; overflow: hidden;
  background: var(--soft);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-frame--feature { max-width: 940px; margin: 44px auto 0; box-shadow: var(--shadow); }
.video-frame__placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  text-align: center; padding: 18px; color: var(--ink-soft);
  background:
    radial-gradient(60% 60% at 50% 40%, rgba(28,169,201,0.10), transparent 70%),
    linear-gradient(160deg, var(--paper), var(--soft));
}
.video-frame__placeholder .play {
  width: 66px; height: 66px; border-radius: 50%;
  border: 1px solid var(--gold); color: var(--gold);
  display: grid; place-items: center; font-size: 1.3rem; padding-left: 4px; background: var(--white);
}
.video-frame__placeholder p { color: var(--ink); font-weight: 500; }
.video-frame__placeholder small { color: var(--ink-dim); }
.video-frame__placeholder code { background: rgba(28,169,201,0.14); padding: 1px 6px; border-radius: 3px; color: var(--gold); }

/* =========================================================================
   SECTIONS
   ========================================================================= */
.section { padding: 120px 0; position: relative; }
.section--white { background: var(--white); }
.section--soft { background: var(--soft); }
.section--blue-tint { background: #ecf6fb; }

.section__head { text-align: center; max-width: 680px; margin: 0 auto 72px; }
.section__title { font-size: clamp(2.1rem, 4.6vw, 3.4rem); color: var(--ink); margin-bottom: 20px; }
.section__lead { color: var(--ink-soft); font-size: 1.12rem; }

.film__inner { text-align: center; }

/* ---------- Split (the idea) ---------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  align-items: stretch; margin-bottom: 40px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px; overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.split--reverse .split__media { order: 2; }
.split__media { min-height: 420px; background-size: cover; background-position: center; }
.split__text { padding: 64px 56px; display: flex; flex-direction: column; justify-content: center; }
.split__index {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--gold);
  letter-spacing: 0.08em; margin-bottom: 14px;
}
.split__text h3 { font-size: 2.1rem; color: var(--ink); margin-bottom: 16px; }
.split__text p { color: var(--ink-soft); }

/* ---------- Cinematic band ---------- */
.band {
  position: relative; padding: 150px 0; text-align: center;
  background-image: url("https://images.unsplash.com/photo-1570077188670-e3a8d69ac5ff?auto=format&fit=crop&w=2100&q=80");
  background-size: cover; background-position: center; background-attachment: fixed;
}
.band__overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(20,30,42,0.55), rgba(20,30,42,0.42)); }
.band__inner { position: relative; z-index: 2; }
.band__quote {
  font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 3rem);
  color: #fff; max-width: 20ch; margin: 0 auto 18px; line-height: 1.2;
  text-shadow: 0 2px 18px rgba(0,0,0,0.3);
}
.band__caption { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.3em; color: var(--gold-bright); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step {
  text-align: center; padding: 48px 30px;
  background: var(--white); border: 1px solid var(--line); border-radius: 6px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.step__num {
  display: inline-grid; place-items: center; width: 64px; height: 64px;
  border: 1px solid var(--gold); border-radius: 50%;
  font-family: var(--serif); font-size: 1.4rem; font-weight: 600; color: var(--gold);
  margin-bottom: 22px; background: #eafaff;
}
.step h3 { font-size: 1.5rem; color: var(--ink); margin-bottom: 10px; }
.step p { color: var(--ink-soft); }

/* ---------- Benefits ---------- */
.benefits {
  display: grid; grid-template-columns: 1fr 1fr; gap: 30px 50px;
  max-width: 920px; margin: 0 auto 80px;
}
.benefit { display: flex; gap: 18px; align-items: flex-start; }
.benefit__rule { flex: 0 0 auto; width: 26px; height: 1px; background: var(--gold); margin-top: 14px; }
.benefit p { color: var(--ink-soft); }
.benefit strong { color: var(--ink); font-weight: 600; }

/* ---------- Quotes ---------- */
.quotes { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 980px; margin: 0 auto; }
.quotes--three { grid-template-columns: repeat(3, 1fr); max-width: 1140px; }
.quotes--three .quote blockquote { font-size: 1.2rem; }
.quote {
  background: var(--soft); border: 1px solid var(--line); border-radius: 6px;
  padding: 44px 40px; position: relative;
}
.quote::before {
  content: "\201C"; position: absolute; top: 8px; left: 24px;
  font-family: var(--serif); font-size: 4rem; color: var(--gold); opacity: 0.35;
}
.quote blockquote { font-family: var(--serif); font-size: 1.42rem; color: var(--ink); margin-bottom: 18px; line-height: 1.4; }
.quote figcaption { font-size: 0.8rem; color: var(--gold); letter-spacing: 0.03em; font-weight: 500; }
.disclaimer-note { text-align: center; font-size: 0.78rem; color: var(--ink-dim); margin-top: 32px; }

/* =========================================================================
   FINAL CTA  (bright image, light scrim)
   ========================================================================= */
.cta-final {
  position: relative;
  background-image: url("https://images.unsplash.com/photo-1582719508461-905c673771fd?auto=format&fit=crop&w=2100&q=80");
  background-size: cover; background-position: center;
}
.cta-final__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.82) 42%, rgba(255,255,255,0.4) 100%);
}
.cta-final__grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 0.86fr; gap: 60px; align-items: center;
}
.cta-final__copy h2 { font-size: clamp(2.1rem, 4.8vw, 3.4rem); color: var(--ink); margin-bottom: 20px; }
.cta-final__copy p { color: var(--ink-soft); font-size: 1.12rem; max-width: 46ch; margin-bottom: 28px; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer { background: var(--cream); color: var(--ink-soft); padding: 70px 0 50px; text-align: center; border-top: 1px solid var(--line); }
.footer__brand { font-family: var(--serif); font-size: 1.9rem; color: var(--ink); margin-bottom: 12px; }
.footer__site { font-size: 0.82rem; margin-bottom: 20px; }
.footer__site a { color: var(--ink-soft); text-decoration: underline; }
.footer__site a:hover { color: var(--gold); }
.footer__contact { margin-bottom: 24px; font-size: 0.95rem; }
.footer__contact a { color: var(--gold); text-decoration: none; font-weight: 500; }
.footer__contact a:hover { text-decoration: underline; }
.footer__disclaimer { max-width: 780px; margin: 0 auto 18px; font-size: 0.76rem; color: var(--ink-dim); line-height: 1.6; }
.footer__links { margin-bottom: 10px; }
.footer__links a { color: var(--gold); text-decoration: none; font-size: 0.85rem; }
.footer__links a:hover { text-decoration: underline; }
.footer__copy { font-size: 0.78rem; color: var(--ink-dim); letter-spacing: 0.03em; }

/* =========================================================================
   LEGAL PAGES (privacy)
   ========================================================================= */
.legal-header { background: var(--white); border-bottom: 1px solid var(--line); }
.legal-header__inner { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; }
.legal-header .brand__name { color: var(--ink); }
.legal-back { color: var(--gold); text-decoration: none; font-size: 0.85rem; font-weight: 500; }
.legal-back:hover { text-decoration: underline; }
.legal { max-width: 760px; margin: 0 auto; padding: 56px 28px 90px; }
.legal h1 { font-size: clamp(2rem, 4vw, 2.9rem); color: var(--ink); margin-bottom: 8px; }
.legal__updated { font-size: 0.78rem; color: var(--ink-dim); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 30px; }
.legal h2 { font-size: 1.5rem; color: var(--ink); margin: 34px 0 10px; }
.legal p { color: var(--ink-soft); margin-bottom: 14px; }
.legal a { color: var(--gold); }
.legal__note { margin-top: 30px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 0.85rem; color: var(--ink-dim); }
.legal__home { margin-top: 36px; font-weight: 500; }

/* Unsubscribe page */
.unsub { text-align: center; }
.unsub-card { max-width: 460px; margin: 26px auto 0; text-align: left; }
.unsub-success { text-align: center; }
.unsub-success h2 { font-size: 1.6rem; color: var(--ink); margin: 12px 0 8px; }
.unsub-success p { color: var(--ink-soft); }

/* =========================================================================
   TRUST BAR
   ========================================================================= */
.trust { background: var(--white); border-bottom: 1px solid var(--line); padding: 48px 0; }
.trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.trust__item {
  display: flex; flex-direction: column; gap: 8px;
  padding: 6px 12px; position: relative;
}
.trust__item + .trust__item::before {
  content: ""; position: absolute; left: 0; top: 14%; height: 72%; width: 1px; background: var(--line);
}
.trust__num { font-family: var(--serif); font-size: clamp(1.9rem, 3vw, 2.7rem); font-weight: 600; color: var(--gold); line-height: 1; }
.trust__label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-soft); }

/* =========================================================================
   WHY NOW: three shifts
   ========================================================================= */
.shifts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 46px; }
.shift {
  background: var(--white); border: 1px solid var(--line); border-top: 3px solid var(--gold);
  border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.shift:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.shift__photo { height: 168px; background-size: cover; background-position: center; }
.shift__body { padding: 30px 32px 36px; }
.shift__icon {
  display: inline-grid; place-items: center; width: 54px; height: 54px;
  border-radius: 50%; background: #e3f3fa; color: var(--gold); margin-bottom: 18px;
}
.shift__icon svg { width: 26px; height: 26px; }
.shift h3 { font-size: 1.7rem; color: var(--ink); margin-bottom: 10px; }
.shift p { color: var(--ink-soft); }
.shifts__close {
  text-align: center; font-family: var(--serif);
  font-size: clamp(1.3rem, 2.4vw, 1.7rem); color: var(--ink); max-width: 38ch; margin: 0 auto;
}
.shifts__close em { color: var(--gold); }

/* =========================================================================
   THREE BIG SHIFTS: closing "timing" paragraph (centered, inside the section)
   ========================================================================= */
.shifts-timing { max-width: 720px; margin: 40px auto 0; text-align: center; }
.shifts-timing__title { font-size: clamp(1.8rem, 3.6vw, 2.6rem); color: var(--ink); margin: 6px 0 16px; }
.shifts-timing p { color: var(--ink-soft); font-size: 1.08rem; }

/* =========================================================================
   WHY PEOPLE LOVE IT: four cards with icons
   ========================================================================= */
.love-banner {
  max-width: 1140px; margin: 0 auto 70px; border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow); height: 300px;
}
.love-banner img { width: 100%; height: 100%; object-fit: cover; display: block; }

.love-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px;
  max-width: 980px; margin: 0 auto 80px;
}
.love-card {
  background: var(--white); border: 1px solid var(--line); border-top: 3px solid var(--gold);
  border-radius: 14px; padding: 42px 38px; box-shadow: var(--shadow-sm);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.love-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.love-card__icon { display: block; color: var(--gold); margin-bottom: 20px; }
.love-card__icon svg { width: 42px; height: 42px; }
.love-card h3 { font-size: 1.7rem; color: var(--ink); margin-bottom: 10px; }
.love-card p { color: var(--ink-soft); }

/* ---------- Why People Love It: editorial layout ---------- */
.love-editorial { display: grid; grid-template-columns: 5fr 7fr; gap: 54px; align-items: center; }
.love-media { position: relative; }
.love-media__main { position: relative; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); }
.love-media__main img { display: block; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; transition: transform 1.6s var(--ease); }
.love-media__main:hover img { transform: scale(1.05); }
.love-content .eyebrow { display: block; }
.love-content__title { text-align: left; margin-top: 8px; }
.love-intro { color: var(--ink-soft); font-size: 1.12rem; max-width: 52ch; margin-bottom: 30px; }
.love-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.love-tile {
  padding: 26px 24px; border-radius: 14px; border: 1px solid rgba(20,40,60,0.06);
  box-shadow: 0 6px 18px rgba(20,40,60,0.05);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.love-tile:hover { transform: translateY(-5px); box-shadow: 0 16px 30px rgba(20,40,60,0.12); }
.love-tile--a { background: #eaf6fb; }
.love-tile--b { background: #fbf4e8; }
.love-tile--c { background: #e8f7f2; }
.love-tile--d { background: #eef2f7; }
.love-tile__icon {
  display: inline-grid; place-items: center; width: 46px; height: 46px; margin-bottom: 14px;
  border-radius: 12px; background: rgba(255,255,255,0.7); color: var(--gold);
  transition: transform 0.4s var(--ease);
}
.love-tile__icon svg { width: 24px; height: 24px; }
.love-tile:hover .love-tile__icon { transform: rotate(-8deg) scale(1.06); }
.love-tile h3 { font-size: 1.28rem; color: var(--ink); margin-bottom: 8px; }
.love-tile p { color: var(--ink-soft); font-size: 0.96rem; line-height: 1.55; }
.love-flightline { text-align: center; margin: 54px auto 0; max-width: 660px; color: var(--gold); }
.love-flightline__doodle { width: 240px; height: 26px; display: inline-block; }
.love-flightline p { font-family: var(--serif); font-size: clamp(1.25rem, 2.6vw, 1.7rem); color: var(--ink); margin-top: 4px; }
@media (max-width: 980px) {
  .love-editorial { grid-template-columns: 1fr; gap: 40px; }
  .love-media { max-width: 460px; margin: 0 auto; }
}
@media (max-width: 600px) {
  .love-tiles { grid-template-columns: 1fr; }
  .love-flightline { margin-top: 40px; }
}

/* =========================================================================
   ABOUT ME
   ========================================================================= */
.about {
  display: grid; grid-template-columns: 300px 1fr; gap: 56px;
  align-items: center; max-width: 960px; margin: 0 auto;
}
.about__photo { justify-self: center; }
.about__photo img {
  width: 280px; height: 280px; display: block;
  object-fit: cover; object-position: center top; border-radius: 50%;
  box-shadow: 0 18px 40px rgba(14,127,168,0.22), 0 0 0 6px #ffffff, 0 0 0 8px rgba(28,169,201,0.35);
}
.about__title { font-size: clamp(1.9rem, 3.6vw, 2.6rem); color: var(--ink); margin-bottom: 16px; }
.about__text p { color: var(--ink-soft); font-size: 1.08rem; }

/* =========================================================================
   SOCIAL SELLING CALLOUT (gold accent line)
   ========================================================================= */
.callout {
  max-width: 760px; margin: 50px auto 0; padding: 6px 0; text-align: center;
}
.split__media--contain { background-size: contain; background-repeat: no-repeat; background-position: center; background-color: #ffffff; }
.callout p {
  font-family: var(--serif); font-size: 1.4rem; line-height: 1.55;
  color: var(--ink); margin: 0;
}
.callout p.callout__note {
  font-family: var(--sans); font-size: 0.82rem; line-height: 1.5;
  color: var(--ink-dim); margin-top: 16px;
}
.callout__note a { color: var(--gold); text-decoration: underline; }

/* =========================================================================
   SCROLL REVEAL
   ========================================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Testimonials with portraits ---------- */
.tlabel { text-align: center; color: var(--gold); font-weight: 600; font-size: 0.92rem; margin: 6px auto 44px; }
.tgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1060px; margin: 0 auto; }
.tcard {
  position: relative; margin: 0; text-align: center;
  background: #faf6ef; border: 1px solid rgba(20,40,60,0.06); border-radius: 18px;
  padding: 72px 30px 32px; box-shadow: 0 8px 24px rgba(20,40,60,0.06);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.tcard:hover { transform: translateY(-5px); box-shadow: 0 16px 32px rgba(20,40,60,0.12); }
.tcard__avatar {
  position: absolute; top: -48px; left: 50%; transform: translateX(-50%);
  width: 108px; height: 108px; border-radius: 50%; overflow: hidden;
  border: 4px solid #fff; box-shadow: 0 6px 16px rgba(20,40,60,0.2);
}
.tcard__avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.tcard blockquote { font-family: var(--serif); font-size: 1.14rem; line-height: 1.5; color: var(--ink); margin: 0 0 18px; }
.tcard__name { display: block; font-weight: 600; color: var(--ink); font-size: 1rem; }
.tcard__role { display: block; color: var(--ink-soft); font-size: 0.85rem; margin-top: 3px; }
@media (max-width: 780px) {
  .tgrid { grid-template-columns: 1fr; max-width: 460px; gap: 56px; }
}

/* ---------- Canadian Leadership Team ---------- */
.copy-block { max-width: 720px; margin: 40px auto 0; text-align: left; }
.copy-block p { color: var(--ink-soft); }
.copy-block p + p { margin-top: 14px; }
.leadteam__intro { margin: 0 auto 48px; }
.leadteam__intro p { margin-bottom: 14px; }
.leaders { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: start; }
.leader {
  position: relative; background: #fbf6ef; border: 1px solid rgba(20,40,60,0.06);
  border-radius: 20px; padding: 40px 30px 34px; text-align: center;
  box-shadow: 0 10px 28px rgba(20,40,60,0.06);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.leader:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(20,40,60,0.12); }
.leader__photo {
  width: 190px; height: 190px; margin: 0 auto 20px; border-radius: 50%;
  overflow: hidden; border: 5px solid #fff; box-shadow: 0 10px 26px rgba(20,40,60,0.18);
}
.leader__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.leader__name { font-family: var(--serif); font-size: 1.7rem; color: var(--ink); margin-bottom: 4px; }
.leader__role { color: var(--gold); font-weight: 600; font-size: 0.9rem; margin-bottom: 8px; }
.leader__loc { color: var(--ink-soft); font-size: 0.85rem; margin-bottom: 16px; display: inline-flex; align-items: center; gap: 5px; }
.leader__loc svg { width: 14px; height: 14px; }
.leader__bio { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.6; text-align: left; margin-bottom: 16px; }
.leader__line { font-family: var(--serif); font-size: 1.08rem; color: var(--ink); border-top: 1px solid rgba(20,40,60,0.08); padding-top: 14px; }
.leader__linkedin { display: inline-flex; align-items: center; gap: 7px; margin-top: 14px; color: var(--gold); font-weight: 600; font-size: 0.9rem; text-decoration: none; }
.leader__linkedin svg { width: 17px; height: 17px; }
.leader__linkedin:hover { text-decoration: underline; }

/* ---------- Freedom Lounge ---------- */
.lounge { background: linear-gradient(180deg, #fdf6ec 0%, #f7ecdf 100%); }
.lounge__banner { max-width: 960px; margin: 8px auto 40px; border-radius: 20px; overflow: hidden; box-shadow: 0 16px 40px rgba(160,110,80,0.16); }
.lounge__banner img { width: 100%; height: auto; display: block; }
.lounge__intro { margin: 0 auto 46px; }
.lounge__intro p { margin-bottom: 14px; }
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.pillar {
  background: rgba(255,255,255,0.72); border-radius: 18px; padding: 30px 24px; text-align: center;
  border: 1px solid rgba(233,183,160,0.45); box-shadow: 0 8px 22px rgba(160,110,80,0.08);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.pillar:hover { transform: translateY(-6px); box-shadow: 0 16px 32px rgba(160,110,80,0.16); }
.pillar__icon { display: inline-grid; place-items: center; width: 54px; height: 54px; margin-bottom: 14px; border-radius: 14px; background: #fff; color: #d4835c; box-shadow: 0 4px 12px rgba(160,110,80,0.14); }
.pillar__icon svg { width: 26px; height: 26px; }
.pillar h3 { font-size: 1.18rem; color: var(--ink); margin-bottom: 8px; }
.pillar p { color: var(--ink-soft); font-size: 0.92rem; line-height: 1.55; }
.lounge__fun { text-align: center; font-family: var(--serif); font-size: clamp(1.3rem, 2.6vw, 1.8rem); color: var(--ink); max-width: 760px; margin: 46px auto 0; }
.lounge__transition { max-width: 820px; margin: 40px auto 0; text-align: center; background: rgba(255,255,255,0.6); border-radius: 18px; padding: 32px 30px; border: 1px dashed rgba(212,131,92,0.45); }
.lounge__kicker { text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.78rem; font-weight: 600; color: #d4835c; margin-bottom: 12px; }
.lounge__transition-line { font-family: var(--serif); font-size: clamp(1.2rem, 2.4vw, 1.55rem); color: var(--ink); line-height: 1.4; margin-bottom: 16px; }

/* ============ WHY NOW: one continuous journey ============ */
.whynow { position: relative; overflow: hidden;
  background: linear-gradient(180deg, #fdf8f0 0%, #fcefe3 24%, #f7e3d5 46%, #eef0ea 66%, #e7f1f4 100%); }
.whynow .eyebrow--light { color: #fff; opacity: 0.92; }
.whynow__open { position: relative; min-height: 72vh; display: flex; align-items: center; }
.whynow__open-media { position: absolute; inset: 0; background-size: cover; background-position: center; }
.whynow__open-overlay { position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,30,45,0.30) 0%, rgba(10,30,45,0.44) 55%, rgba(253,248,240,0.98) 100%); }
.whynow__open-inner { position: relative; z-index: 2; text-align: center; padding: 104px 0 120px; max-width: 800px; }
.whynow__headline { font-family: var(--serif); font-weight: 600; color: #fff; font-size: clamp(2rem, 4.6vw, 3.2rem); line-height: 1.12; margin: 14px 0 22px; text-shadow: 0 2px 24px rgba(0,0,0,0.28); }
.whynow__subhead { color: #fff; font-size: 1.15rem; line-height: 1.6; max-width: 640px; margin: 0 auto; text-shadow: 0 1px 14px rgba(0,0,0,0.34); }
.whynow__h { font-family: var(--serif); font-weight: 600; font-size: clamp(1.75rem, 3.2vw, 2.3rem); color: var(--ink); line-height: 1.18; margin: 0; }
.whynow__intro { text-align: center; max-width: 700px; margin: 0 auto; padding: 80px 0 0; }
.whynow__intro p { color: var(--ink-soft); font-size: 1.1rem; line-height: 1.6; margin-top: 20px; }
.journey { display: flex; flex-direction: column; gap: 48px; padding: 56px 0 0; max-width: 1000px; margin: 0 auto; }
.jshift { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.jshift__media { aspect-ratio: 4 / 3; border-radius: 18px; background-size: cover; background-position: center; box-shadow: 0 18px 44px rgba(20,40,60,0.16); order: 0; }
.jshift__text { order: 1; }
.jshift--b .jshift__media { order: 1; }
.jshift--b .jshift__text { order: 0; }
.jshift__num { display: block; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.22em; color: var(--gold); opacity: 0.7; margin-bottom: 12px; }
.jshift__text h4 { font-family: var(--serif); font-weight: 600; font-size: clamp(1.3rem, 2.3vw, 1.5rem); color: var(--ink); line-height: 1.25; margin-bottom: 12px; }
.jshift__text p { color: var(--ink-soft); font-size: 1.1rem; line-height: 1.6; max-width: 46ch; }
.converge { text-align: center; max-width: 700px; margin: 0 auto; padding: 88px 0 0; }
.converge__lines { max-width: 280px; margin: 0 auto 28px; }
.converge__lines svg { width: 100%; height: auto; display: block; color: var(--gold); opacity: 0.55; }
.converge__list { list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-direction: column; gap: 6px; }
.converge__list li { font-family: var(--serif); font-size: 1.15rem; color: var(--ink-soft); line-height: 1.5; }
.converge__punch { font-family: var(--serif); font-weight: 600; font-size: clamp(1.6rem, 3vw, 2rem); color: var(--gold); line-height: 1.25; margin: 0 0 14px; }
.converge__sub { color: var(--ink-soft); font-size: 1.1rem; line-height: 1.6; max-width: 560px; margin: 0 auto; }
.proof { text-align: center; max-width: 720px; margin: 0 auto; padding: 88px 0 0; }
.proof .eyebrow { margin-bottom: 14px; }
.proof__body { margin-top: 22px; }
.proof__body p { color: var(--ink-soft); font-size: 1.1rem; line-height: 1.6; margin-bottom: 10px; }
.timeline { list-style: none; padding: 0; margin: 48px auto 100px; max-width: 760px; display: grid; grid-template-columns: repeat(3, 1fr); position: relative; }
.timeline::before { content: ""; position: absolute; top: 10px; left: 16%; right: 16%; height: 3px;
  background-image: linear-gradient(90deg, var(--gold) 42%, transparent 0); background-size: 12px 3px; background-repeat: repeat-x; opacity: 0.4; }
.timeline__stop { text-align: center; padding: 0 10px; position: relative; }
.timeline__dot { display: block; width: 22px; height: 22px; margin: 0 auto 14px; border-radius: 50%; background: #fff; border: 3px solid var(--gold); box-shadow: 0 4px 12px rgba(14,127,168,0.25); position: relative; z-index: 1; }
.timeline__stop--now .timeline__dot { background: var(--gold); box-shadow: 0 0 0 6px rgba(14,127,168,0.14); }
.timeline__place { display: block; font-weight: 700; color: var(--ink); font-size: 1rem; }
.timeline__note { display: block; color: var(--ink-soft); font-size: 0.92rem; margin-top: 5px; line-height: 1.45; }

@media (max-width: 820px) {
  .whynow__open, .anzmoment { min-height: 62vh; }
  .journey { gap: 34px; }
  .jshift { grid-template-columns: 1fr; gap: 18px; }
  .jshift .jshift__media, .jshift--b .jshift__media { order: 0; }
  .jshift .jshift__text, .jshift--b .jshift__text { order: 1; }
  .jshift__text p { max-width: none; }
  .timeline { grid-template-columns: 1fr; gap: 26px; max-width: 360px; }
  .timeline::before { top: 0; bottom: 0; left: 10px; right: auto; width: 3px; height: auto;
    background-image: linear-gradient(180deg, var(--gold) 42%, transparent 0); background-size: 3px 12px; }
  .timeline__stop { display: grid; grid-template-columns: 22px 1fr; gap: 16px; text-align: left; align-items: center; padding: 0; }
  .timeline__dot { margin: 0; }
  .timeline__place, .timeline__note { grid-column: 2; }
  .timeline__note { margin-top: 2px; }
}
@media (max-width: 980px) {
  .leaders { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .pillars { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .pillars { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__scroll { animation: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 44px; }
  .hero { min-height: auto; padding: 120px 0 70px; }
  .hero__overlay { background:
    linear-gradient(0deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.78) 55%, rgba(255,255,255,0.45) 100%); }
  .cta-final__grid { grid-template-columns: 1fr; gap: 44px; }
  .cta-final__overlay { background: linear-gradient(0deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.8) 60%, rgba(255,255,255,0.5) 100%); }
  .split, .split--reverse { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .split__media { min-height: 300px; }
  .steps, .shifts, .benefits, .quotes, .quotes--three, .love-grid { grid-template-columns: 1fr; }
  .benefits, .love-grid { max-width: 560px; }
  .callout { margin-left: 0; margin-right: 0; }
  .trust__grid { grid-template-columns: repeat(2, 1fr); gap: 30px 20px; }
  .trust__item:nth-child(3)::before { display: none; }
  .about { grid-template-columns: 1fr; gap: 32px; }
  .about__text { text-align: center; }
  .section { padding: 84px 0; }
  .band { padding: 110px 0; background-attachment: scroll; }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .nav { padding: 16px 0; }
  .brand__name { font-size: 1.35rem; }
  .hero__title { font-size: clamp(2.1rem, 8.5vw, 2.9rem); }
  .hero__ticks { gap: 10px 20px; }
  .lead-card { padding: 28px 22px; }
  .lead-card__title { font-size: 1.7rem; }
  .split__text { padding: 40px 28px; }
  .section__head { margin-bottom: 48px; }
  .hero__scroll { display: none; }
  .love-banner { height: 200px; margin-bottom: 46px; }
  .callout p { font-size: 1.2rem; }
}
