/* =====================================================
   ANCHOR & SPARK STUDIO — homepage styles
   Warm, modern, family-studio aesthetic.
   Palette pulled from logo + sunset hero illustrations.
   ===================================================== */

:root{
  /* core palette */
  --navy:        #1B2A4E;       /* logo ink */
  --navy-deep:   #11203F;
  --navy-soft:   #2C3E66;

  --cream:       #FDF8ED;       /* page base - lightened */
  --sand:        #F7EAD6;       /* warm sand - lightened */
  --parchment:   #FFFBF3;       /* card base - lightened */
  --peach:       #E8A87C;       /* sunset peach */
  --coral:       #E07A5F;       /* warm coral accent */
  --honey:       #D4A24C;       /* gold accent */
  --honey-soft:  #EAC78A;

  --ink:         #20243A;       /* body text */
  --ink-soft:    #4B5170;
  --ink-mute:    #76799A;

  --line:        rgba(27,42,78,.12);

  /* typography */
  --serif: "Playfair Display", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  /* shape */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 40px;

  --shadow-sm: 0 2px 8px rgba(27,42,78,.06);
  --shadow-md: 0 18px 40px -22px rgba(27,42,78,.35);
  --shadow-lg: 0 30px 60px -30px rgba(27,42,78,.45);

  --maxw: 1200px;
}

/* ---------- reset-ish ---------- */
*,*::before,*::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
body{
  margin:0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.nav-open{ overflow:hidden; }
img{ max-width:100%; display:block; }
a{ color:inherit; }
h1,h2,h3,h4{
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin: 0 0 .5em;
  line-height: 1.12;
}
p{ margin: 0 0 1em; }
em{ font-style: italic; color: var(--coral); }
strong{ color: var(--navy); font-weight: 600; }

.visually-hidden{
  position:absolute !important; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

/* ---------- shared bits ---------- */
.eyebrow{
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow--center{ display:flex; justify-content:center; }
.eyebrow--light{ color: var(--honey-soft); }
.spark{
  color: var(--honey);
  font-size: 1.05em;
  display: inline-block;
  transform: translateY(-1px);
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .01em;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary{
  background: var(--navy);
  color: var(--cream);
  box-shadow: var(--shadow-md);
}
.btn--primary:hover{ transform: translateY(-2px); background: var(--navy-deep); }
.btn--ghost{
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--ghost:hover{ background: var(--navy); color: var(--cream); }
.btn--gold{
  background: var(--honey);
  color: var(--navy-deep);
  box-shadow: 0 14px 30px -16px rgba(212,162,76,.7);
}
.btn--gold:hover{ transform: translateY(-2px); background: #c8973f; }

.link{
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1.5px solid var(--honey);
  padding-bottom: 2px;
  transition: color .15s ease, border-color .15s ease;
}
.link:hover{ color: var(--coral); border-color: var(--coral); }
.link--muted{ color: var(--ink-soft); border-color: var(--ink-mute); }

.tag{
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(255,255,255,.92);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.tag--live{ background: var(--honey); color: var(--navy-deep); }
.tag--soon{ background: var(--peach); color: var(--navy-deep); }

/* =====================================================
   HEADER
   ===================================================== */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  background: rgba(250,243,231,.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--navy);
}
.brand__mark{
  width: 34px;
  height: 34px;
  object-fit: contain;
  /* logo file is on white; mix-blend works on cream */
  mix-blend-mode: multiply;
}
.brand__word{
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.brand__word .amp{ color: var(--honey); font-style: italic; }

.nav{
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav a{
  text-decoration: none;
  color: var(--navy-soft);
  font-weight: 500;
  font-size: 15px;
  transition: color .15s ease;
}
.nav a:hover{ color: var(--navy); }
.nav__cta{
  background: var(--navy);
  color: var(--cream) !important;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
}
.nav__cta:hover{ background: var(--navy-deep); }

.nav-toggle{
  display: none;
  background: transparent;
  border: 1.5px solid var(--navy);
  width: 44px; height: 44px;
  border-radius: 12px;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.nav-toggle span{
  display: block;
  width: 18px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle.is-open span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2){ opacity: 0; }
.nav-toggle.is-open span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

[hidden]{ display: none !important; }
.mobile-nav{
  position: fixed;
  inset: 76px 0 0 0;
  background: var(--cream);
  z-index: 40;
  display: flex;
  flex-direction: column;
  padding: 24px clamp(20px,5vw,40px);
  gap: 4px;
  border-top: 1px solid var(--line);
  overflow-y: auto;
}
.mobile-nav a{
  font-family: var(--serif);
  font-size: 28px;
  color: var(--navy);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.mobile-nav a:last-child{ border-bottom: 0; }
.mobile-nav__cta{
  margin-top: 16px;
  background: var(--navy);
  color: var(--cream) !important;
  text-align: center;
  padding: 16px !important;
  border-radius: 999px !important;
  border-bottom: 0 !important;
  font-family: var(--sans) !important;
  font-size: 16px !important;
  font-weight: 600 !important;
}

/* =====================================================
   HERO
   ===================================================== */
.hero{
  position: relative;
  isolation: isolate;
  padding: clamp(60px, 10vw, 120px) clamp(20px,4vw,56px) clamp(80px,12vw,140px);
  overflow: hidden;
}
.hero__art{
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero__art img{
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.hero__veil{
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 20% 35%, rgba(250,243,231,.94), rgba(250,243,231,.6) 55%, rgba(250,243,231,.05) 82%),
    linear-gradient(180deg, rgba(250,243,231,.55) 0%, rgba(250,243,231,.25) 50%, rgba(250,243,231,.55) 100%);
}
.hero__inner{
  max-width: 760px;
  margin: 0 auto 0 0;
  padding-left: clamp(0px, 4vw, 40px);
}
.hero__title{
  font-size: clamp(40px, 6.4vw, 76px);
  line-height: 1.05;
  margin: 0 0 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.hero__title em{
  font-style: italic;
  color: var(--coral);
  position: relative;
}
.hero__lede{
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 580px;
  margin-bottom: 32px;
}
.hero__ctas{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero__meta{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  font-size: 14px;
  color: var(--ink-soft);
}
.hero__meta strong{ color: var(--navy); }
.hero__meta .dot{ color: var(--honey); }

/* =====================================================
   PROMISE STRIP
   ===================================================== */
.promise{
  background: var(--cream);
  padding: clamp(40px,6vw,80px) clamp(20px,4vw,56px);
}
.promise__grid{
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.promise__item{
  background: var(--parchment);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.promise__item:hover{
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.promise__icon{
  display: inline-flex;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--sand);
  color: var(--navy);
  font-size: 22px;
  margin-bottom: 16px;
}
.promise__item h3{
  font-size: 22px;
  margin-bottom: 8px;
}
.promise__item p{
  color: var(--ink-soft);
  font-size: 15.5px;
  margin: 0;
}

/* =====================================================
   GENERIC SECTION
   ===================================================== */
.section{
  padding: clamp(72px, 10vw, 130px) clamp(20px, 4vw, 56px);
}
.section--cream{ background: var(--cream); }
.section--sand{ background: var(--sand); }
.section--navy{ background: var(--navy); color: #E9EAF3; }
.section--gold{
  background: linear-gradient(180deg, var(--sand) 0%, var(--honey-soft) 100%);
}
.section--navy h2,
.section--navy h3{ color: #FFF7E6; }

.section__head{
  max-width: 760px;
  margin: 0 auto clamp(40px,6vw,72px);
  text-align: center;
}
.section__title{
  font-size: clamp(32px, 4.4vw, 52px);
  margin-bottom: 16px;
}
.section__sub{
  font-size: 18px;
  color: var(--ink-soft);
  margin: 0;
}

/* =====================================================
   TOOLS
   ===================================================== */
.tools{
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
}
.tool{
  background: var(--parchment);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  transition: transform .3s ease, box-shadow .3s ease;
}
.tool:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.tool__media{
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--sand);
}
.tool__media img{
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.tool:hover .tool__media img{ transform: scale(1.04); }
.tool__media--soft img{
  object-fit: cover;
  background: #fff;
}
.tool__body{
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.tool__kicker{
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--coral);
  margin: 0 0 8px;
}
.tool h3{
  font-size: clamp(24px, 2.4vw, 30px);
  margin-bottom: 10px;
}
.tool p{
  color: var(--ink-soft);
  font-size: 16px;
  margin-bottom: 18px;
  flex: 1;
}
.tool--featured{
  grid-row: span 1;
  background: #fff;
}
.tool--featured .tool__media{ aspect-ratio: 16/11; }

/* =====================================================
   DISNEYLAND DEEP DIVE (navy section)
   ===================================================== */
.dl{
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.dl__copy h2{
  font-size: clamp(30px, 3.8vw, 44px);
  margin-bottom: 20px;
}
.dl__copy p{
  color: rgba(255,247,230,.78);
  font-size: 17px;
  line-height: 1.65;
}
.dl__copy strong{ color: #fff; }
.dl__bullets{
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
  display: grid;
  gap: 14px;
}
.dl__bullets li{
  position: relative;
  padding-left: 28px;
  color: rgba(255,247,230,.85);
  font-size: 16px;
  line-height: 1.55;
}
.dl__bullets li::before{
  content: "✦";
  position: absolute;
  left: 0; top: 1px;
  color: var(--honey);
  font-size: 16px;
}
.dl__bullets strong{ color: #FFF7E6; }

.dl__gallery{
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 220px 140px 180px;
  gap: 18px;
}
.dl__shot{
  margin: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--parchment);
  position: relative;
}
.dl__shot img{ width:100%; height:100%; object-fit: cover; }
.dl__shot--a{ grid-column: 1 / span 4; grid-row: 1 / span 2; }
.dl__shot--b{ grid-column: 5 / span 2; grid-row: 1 / span 2; }
.dl__shot--c{
  grid-column: 1 / span 6;
  grid-row: 3;
  background: #fff;
  padding: 12px;
}
.dl__shot--c img{
  object-fit: cover;
  object-position: top center;
  border-radius: 8px;
}
.dl__shot figcaption{
  position: absolute;
  bottom: 10px; left: 12px;
  background: rgba(27,42,78,.85);
  color: var(--cream);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
}

/* =====================================================
   STORY
   ===================================================== */
.story{
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.story__photo{
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.story__photo img{
  width: 100%; height: 100%; object-fit: cover;
}
.story__badge{
  position: absolute;
  bottom: 20px; left: 20px;
  background: rgba(250,243,231,.95);
  color: var(--navy);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .04em;
  padding: 10px 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow-sm);
}
.story__copy h2{
  font-size: clamp(30px, 3.8vw, 44px);
  margin-bottom: 20px;
}
.story__copy p{
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.65;
}
.story__sign{
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--navy);
  margin-top: 24px;
}

/* =====================================================
   NEWSLETTER
   ===================================================== */
.news{
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.news h2{
  font-size: clamp(30px, 4vw, 46px);
  margin-bottom: 16px;
}
.news__sub{
  font-size: 17px;
  color: var(--navy-soft);
  margin: 0 auto 32px;
  max-width: 520px;
}
.news__form{
  display: flex;
  gap: 10px;
  background: rgba(255,255,255,.7);
  padding: 8px;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  max-width: 520px;
  margin: 0 auto;
  border: 1px solid rgba(27,42,78,.1);
}
.news__form input{
  flex: 1;
  border: 0;
  background: transparent;
  padding: 14px 20px;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--navy);
  outline: none;
  min-width: 0;
}
.news__form input::placeholder{ color: var(--ink-mute); }
.news__thanks{
  width: 100%;
  margin: 14px 0 0;
  font-size: 14px;
  color: var(--navy);
  font-weight: 600;
}

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer{
  background: var(--navy-deep);
  color: rgba(255,247,230,.78);
  padding: 60px clamp(20px,4vw,56px) 40px;
}
.foot{
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: start;
}
.foot__brand{
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.foot__mark{
  width: 48px; height: 48px;
  background: var(--cream);
  border-radius: 12px;
  padding: 6px;
  object-fit: contain;
}
.foot__brand p{ margin: 0; line-height: 1.55; font-size: 15px; }
.foot__brand strong{ color: var(--cream); font-weight: 600; }

.foot__nav{
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  justify-content: flex-end;
}
.foot__nav a{
  color: rgba(255,247,230,.78);
  text-decoration: none;
  font-size: 15px;
  transition: color .15s ease;
}
.foot__nav a:hover{ color: var(--honey); }

.foot__socials{
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 8px;
}
.foot__socials a{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid rgba(255,247,230,.18);
  border-radius: 999px;
  color: rgba(255,247,230,.82);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all .18s ease;
}
.foot__socials a:hover{
  color: var(--navy-deep);
  background: var(--honey);
  border-color: var(--honey);
}
.foot__socials svg{
  flex-shrink: 0;
  opacity: .9;
}
.foot__socials a:hover svg{ opacity: 1; }

.foot__legal{
  grid-column: 1 / -1;
  margin: 32px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,247,230,.1);
  font-size: 13px;
  color: rgba(255,247,230,.55);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 980px){
  .nav{ display: none; }
  .nav-toggle{ display: inline-flex; }

  .promise__grid{ grid-template-columns: 1fr; gap: 14px; }
  .promise__item{ padding: 26px 24px; }

  .tools{
    grid-template-columns: 1fr 1fr;
  }
  .tool--featured{ grid-column: 1 / -1; }
  .tool--featured .tool__media{ aspect-ratio: 16/9; }

  .dl{ grid-template-columns: 1fr; gap: 48px; }
  .dl__gallery{
    grid-template-rows: repeat(6, 50px);
  }

  .story{ grid-template-columns: 1fr; gap: 36px; }
  .story__photo{ aspect-ratio: 4/3; max-height: 480px; }

  .foot{ grid-template-columns: 1fr; gap: 28px; }
  .foot__nav{ justify-content: flex-start; }
}

@media (max-width: 640px){
  body{ font-size: 16px; }

  .site-header{ padding: 14px 18px; }
  .brand__word{ font-size: 19px; }
  .brand__mark{ width: 30px; height: 30px; }

  .hero{ padding: 56px 22px 72px; }
  .hero__inner{ padding-left: 0; }
  .hero__veil{
    background:
      linear-gradient(180deg, rgba(250,243,231,.92) 0%, rgba(250,243,231,.7) 45%, rgba(250,243,231,.85) 100%);
  }
  .hero__title{
    font-size: clamp(34px, 9vw, 46px);
  }
  .hero__lede{ font-size: 16.5px; }
  .hero__ctas .btn{ width: 100%; justify-content: center; }
  .hero__ctas{ flex-direction: column; gap: 10px; }
  .hero__meta{ font-size: 13px; gap: 6px 10px; }
  .hero__meta .dot{ display: none; }

  .section{ padding: 64px 22px; }
  .section__title{ font-size: clamp(28px, 7.5vw, 38px); }
  .section__sub{ font-size: 16.5px; }

  .tools{ grid-template-columns: 1fr; gap: 18px; }
  .tool__body{ padding: 24px 22px 28px; }

  .dl__copy h2{ font-size: clamp(26px, 7vw, 36px); }
  .dl__gallery{
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 180px 140px;
    gap: 12px;
  }
  .dl__shot--a{ grid-column: 1 / span 4; grid-row: 1; }
  .dl__shot--b{ grid-column: 1 / span 2; grid-row: 2; }
  .dl__shot--c{ grid-column: 3 / span 2; grid-row: 2; }
  .dl__shot figcaption{ font-size: 10px; padding: 4px 8px; }

  .story__copy h2{ font-size: clamp(26px, 7vw, 36px); }
  .story__photo{ border-radius: var(--r-lg); }

  .news__form{
    flex-direction: column;
    border-radius: var(--r-lg);
    padding: 14px;
    background: #fff;
    gap: 12px;
  }
  .news__form input{
    background: var(--parchment);
    border-radius: 999px;
    padding: 14px 18px;
    text-align: center;
  }
  .news__form .btn{ width: 100%; }

  .foot__brand{ flex-direction: column; }
}

@media (prefers-reduced-motion: reduce){
  *{
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}

/* =====================================================
   SUBPAGE COMMON
   ===================================================== */
.page-hero{
  position: relative;
  padding: clamp(56px, 8vw, 96px) clamp(20px,4vw,56px) clamp(32px,5vw,56px);
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.page-hero__inner{
  max-width: var(--maxw);
  margin: 0 auto;
}
.crumbs{
  font-size: 13px;
  color: var(--ink-mute);
  margin: 0 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.crumbs a{
  color: var(--navy-soft);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.crumbs a:hover{ border-color: var(--honey); color: var(--navy); }
.crumbs .sep{ color: var(--honey); }

/* =====================================================
   PLANNER DETAIL PAGE
   ===================================================== */
.plan-hero{
  padding: clamp(40px, 6vw, 80px) clamp(20px,4vw,56px) clamp(60px,8vw,100px);
  background:
    radial-gradient(80% 60% at 85% 20%, rgba(232,168,124,.22), transparent 60%),
    radial-gradient(70% 60% at 10% 90%, rgba(212,162,76,.18), transparent 60%),
    var(--cream);
  border-bottom: 1px solid var(--line);
}
.plan-hero__grid{
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.plan-hero__copy h1{
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.06;
  letter-spacing: -.02em;
  margin: 0 0 20px;
}
.plan-hero__copy h1 em{
  font-style: italic; color: var(--coral);
}
.plan-hero__lede{
  font-size: clamp(17px, 1.5vw, 19px);
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 540px;
}
.plan-hero__ctas{
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 24px;
}
.plan-hero__meta{
  display: flex; flex-wrap: wrap;
  gap: 10px 18px;
  font-size: 14px;
  color: var(--ink-soft);
}
.plan-hero__meta strong{ color: var(--navy); }
.plan-hero__meta .dot{ color: var(--honey); }

.plan-hero__cover-wrap{
  position: relative;
  max-width: 440px;
  margin-left: auto;
}
.plan-hero__cover{
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1139/1080;
  background: #D6E8F2;
  transform: rotate(-1.5deg);
  transition: transform .4s ease;
}
.plan-hero__cover-wrap:hover .plan-hero__cover{ transform: rotate(0deg) scale(1.01); }
.plan-hero__cover img{
  width: 100%; height: 100%; object-fit: cover;
}
.plan-hero__sticker{
  position: absolute;
  background: var(--honey);
  color: var(--navy-deep);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 10px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  z-index: 2;
  white-space: nowrap;
}
.plan-hero__sticker--a{
  top: -14px; right: 16px;
  background: var(--coral);
  color: var(--cream);
  transform: rotate(6deg);
}
.plan-hero__sticker--b{
  bottom: 16px; left: -10px;
  background: var(--navy);
  color: var(--cream);
  transform: rotate(-4deg);
}

.price-card{
  margin-top: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  box-shadow: var(--shadow-sm);
  max-width: 540px;
}
.price-card__price{
  display: flex; align-items: baseline; gap: 8px;
}
.price-card__price .amt{
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -.02em;
}
.price-card__price .was{
  font-size: 17px;
  color: var(--ink-mute);
  text-decoration: line-through;
}
.price-card__note{
  font-size: 13px;
  color: var(--ink-soft);
  margin: 4px 0 0;
  flex: 1 1 180px;
}
.price-card .btn{ flex: 0 0 auto; }

/* what's inside grid */
.inside{
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.inside__card{
  background: var(--parchment);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.inside__card:hover{
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.inside__num{
  font-family: var(--serif);
  font-style: italic;
  color: var(--coral);
  font-size: 15px;
  letter-spacing: .02em;
  margin: 0 0 8px;
}
.inside__card h3{
  font-size: 22px;
  margin: 0 0 10px;
}
.inside__card p{
  color: var(--ink-soft);
  font-size: 15.5px;
  margin: 0;
  line-height: 1.6;
}

/* TOC / sample chapters list */
.toc{
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 32px;
}
.toc__item{
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 14px 4px;
  border-bottom: 1px dashed var(--line);
}
.toc__num{
  font-family: var(--serif);
  color: var(--honey);
  font-size: 15px;
  width: 32px;
  flex-shrink: 0;
}
.toc__title{
  font-family: var(--serif);
  font-size: 19px;
  color: var(--navy);
  flex: 1;
  line-height: 1.3;
}
.toc__pages{
  font-size: 13px;
  color: var(--ink-mute);
  white-space: nowrap;
}

/* sample pages strip */
.sample-strip{
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.sample-strip figure{
  margin: 0;
  background: #fff;
  border-radius: var(--r-md);
  padding: 10px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s ease;
}
.sample-strip figure:hover{ transform: translateY(-3px); }
.sample-strip figure:nth-child(odd){ transform: rotate(-1deg); }
.sample-strip figure:nth-child(even){ transform: rotate(1deg); }
.sample-strip figure:hover{ transform: rotate(0) translateY(-4px); }
.sample-strip img{
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 6px;
}

/* testimonials / callout */
.quote-card{
  max-width: 820px;
  margin: 0 auto;
  background: var(--parchment);
  border-radius: var(--r-xl);
  padding: clamp(32px, 5vw, 56px);
  border: 1px solid var(--line);
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
}
.quote-card::before{
  content: "✦";
  color: var(--honey);
  font-size: 28px;
  position: absolute;
  top: 20px; left: 50%;
  transform: translateX(-50%);
}
.quote-card blockquote{
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.35;
  color: var(--navy);
  margin: 16px 0 20px;
  font-style: italic;
  font-weight: 400;
}
.quote-card cite{
  font-style: normal;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: .02em;
}

/* FAQ */
.faq{
  max-width: 820px;
  margin: 0 auto;
}
.faq details{
  border-bottom: 1px solid var(--line);
  padding: 20px 8px;
}
.faq details:first-child{ border-top: 1px solid var(--line); }
.faq summary{
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 24px);
  color: var(--navy);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  line-height: 1.3;
}
.faq summary::-webkit-details-marker{ display: none; }
.faq summary::after{
  content: "+";
  color: var(--honey);
  font-size: 28px;
  font-weight: 400;
  font-family: var(--sans);
  transition: transform .2s ease;
  line-height: 1;
}
.faq details[open] summary::after{
  content: "–";
}
.faq p{
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 16.5px;
  line-height: 1.65;
}

/* sticky buy CTA (planner) */
.sticky-buy{
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  background: var(--navy);
  color: var(--cream);
  border-radius: 999px;
  padding: 10px 10px 10px 22px;
  display: none;
  align-items: center;
  gap: 14px;
  box-shadow: 0 18px 40px -12px rgba(17,32,63,.5);
  z-index: 30;
  font-size: 14px;
  max-width: calc(100vw - 32px);
}
.sticky-buy.is-visible{ display: inline-flex; }
.sticky-buy strong{ color: var(--cream); }
.sticky-buy .btn{ padding: 10px 18px; font-size: 13px; }

/* ==============  CHECKOUT MODAL  ============== */
.modal{
  position: fixed;
  inset: 0;
  background: rgba(17,32,63,.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 80;
  backdrop-filter: blur(4px);
}
.modal.is-open{ display: flex; }
.modal__card{
  background: var(--cream);
  width: 100%;
  max-width: 480px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-height: 92vh;
  overflow-y: auto;
}
.modal__head{
  padding: 22px 24px 18px;
  background: var(--navy);
  color: var(--cream);
  position: relative;
}
.modal__head h3{
  color: var(--cream);
  font-size: 22px;
  margin: 0 0 4px;
}
.modal__head p{
  color: rgba(255,247,230,.75);
  margin: 0;
  font-size: 14px;
}
.modal__close{
  position: absolute;
  top: 14px; right: 14px;
  width: 34px; height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255,247,230,.3);
  background: transparent;
  color: var(--cream);
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
}
.modal__body{ padding: 24px; }
.modal__summary{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.modal__summary img{
  width: 54px; height: 68px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
.modal__summary .line{
  flex: 1;
  font-size: 14px;
  color: var(--ink-soft);
}
.modal__summary .line strong{
  display: block;
  color: var(--navy);
  font-size: 15px;
  margin-bottom: 2px;
}
.modal__summary .total{
  font-family: var(--serif);
  font-size: 26px;
  color: var(--navy);
  font-weight: 500;
}
.field{
  display: block;
  margin-bottom: 14px;
}
.field label{
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--ink-soft);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.field input{
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--navy);
  background: #fff;
}
.field input:focus{
  outline: none;
  border-color: var(--honey);
  box-shadow: 0 0 0 3px rgba(212,162,76,.18);
}
.field-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.modal__footer{
  font-size: 12px;
  color: var(--ink-mute);
  text-align: center;
  margin-top: 14px;
}
.modal__success{
  padding: 32px 24px;
  text-align: center;
}
.modal__success .check{
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  background: var(--honey);
  color: var(--navy-deep);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 700;
}
.modal__success h3{
  font-size: 24px;
  margin: 0 0 8px;
}
.modal__success p{
  color: var(--ink-soft);
  margin: 0 0 20px;
}

/* =====================================================
   DAY BUILDER PAGE
   ===================================================== */
.db-wrap{
  background: linear-gradient(180deg, var(--cream) 0%, var(--parchment) 100%);
  min-height: 100vh;
  padding: clamp(20px,3vw,32px) clamp(14px,3vw,32px) 120px;
}
.db-shell{
  max-width: 1040px;
  margin: 0 auto;
}
.db-topbar{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
.db-topbar .brand{ font-size: 15px; }
.db-topbar .brand__word{ font-size: 18px; }
.db-user{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px 6px 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}
.db-user .avatar{
  width: 30px; height: 30px;
  border-radius: 999px;
  background: var(--peach);
  color: var(--navy-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}
.db-user .demo-tag{
  background: var(--honey);
  color: var(--navy-deep);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 999px;
}

/* demo banner */
.db-banner{
  background: rgba(232,168,124,.18);
  border: 1px solid rgba(232,168,124,.45);
  border-radius: var(--r-md);
  padding: 12px 18px;
  margin-bottom: 24px;
  font-size: 13.5px;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.5;
}
.db-banner strong{ color: var(--navy); }
.db-banner .spark{ color: var(--coral); flex-shrink: 0; }

/* header card */
.db-head{
  background: #fff;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  padding: clamp(22px, 3vw, 30px);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.db-head__row{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.db-head__title{
  margin: 0 0 4px;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.2;
}
.db-head__date{
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0;
}
.db-head__stats{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.db-stat{
  background: var(--parchment);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 10px 14px;
  min-width: 108px;
}
.db-stat .k{
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 2px;
}
.db-stat .v{
  font-family: var(--serif);
  font-size: 22px;
  color: var(--navy);
  font-weight: 500;
  letter-spacing: -.01em;
}
.db-stat .v small{
  font-size: 12px;
  color: var(--ink-mute);
  font-family: var(--sans);
  font-weight: 500;
  margin-left: 2px;
}

/* progress bar */
.db-progress{
  margin-top: 18px;
  background: var(--sand);
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.db-progress__bar{
  height: 100%;
  background: linear-gradient(90deg, var(--honey), var(--coral));
  border-radius: 999px;
  transition: width .5s cubic-bezier(.4,1.4,.6,1);
  width: 0%;
}
.db-progress__label{
  margin-top: 8px;
  font-size: 12.5px;
  color: var(--ink-soft);
  display: flex;
  justify-content: space-between;
}

/* up next banner */
.db-next{
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--r-lg);
  padding: 18px 22px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-md);
}
.db-next__icon{
  width: 42px; height: 42px;
  border-radius: 999px;
  background: var(--honey);
  color: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}
.db-next__text{
  flex: 1;
  min-width: 0;
}
.db-next__kicker{
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--honey-soft);
  margin: 0 0 4px;
}
.db-next__title{
  font-family: var(--serif);
  font-size: 22px;
  margin: 0 0 3px;
  color: #FFF7E6;
  line-height: 1.2;
}
.db-next__meta{
  font-size: 13px;
  color: rgba(255,247,230,.75);
  margin: 0;
}
.db-next__cta{
  background: var(--cream);
  color: var(--navy-deep);
  border: 0;
  border-radius: 999px;
  padding: 10px 18px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13.5px;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform .15s ease;
}
.db-next__cta:hover{ transform: scale(1.04); }

/* filter chips */
.db-filters{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
  padding: 4px 0;
}
.chip{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-soft);
  cursor: pointer;
  transition: all .15s ease;
}
.chip:hover{ border-color: var(--honey); color: var(--navy); }
.chip.is-active{
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}

/* ride list */
.db-list{
  display: grid;
  gap: 10px;
}
.db-section-title{
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 8px 0 -4px 4px;
}
.ride{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform .3s cubic-bezier(.2,1,.4,1), box-shadow .25s ease, background .25s ease;
  position: relative;
}
.ride:hover{
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.ride.is-done{
  background: rgba(212,162,76,.08);
  opacity: .65;
}
.ride.is-done .ride__name{ text-decoration: line-through; color: var(--ink-mute); }
.ride.is-next{
  border-color: var(--honey);
  box-shadow: 0 0 0 2px rgba(212,162,76,.28);
}
.ride.is-removing{
  opacity: 0;
  transform: translateX(40px) scale(.96);
}
.ride__check{
  width: 28px; height: 28px;
  border-radius: 999px;
  border: 2px solid var(--line);
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: transparent;
  font-weight: 700;
  transition: all .2s ease;
}
.ride__check:hover{ border-color: var(--honey); }
.ride.is-done .ride__check{
  background: var(--honey);
  border-color: var(--honey);
  color: var(--navy-deep);
}
.ride__body{
  flex: 1;
  min-width: 0;
}
.ride__name{
  font-family: var(--serif);
  font-size: 18px;
  color: var(--navy);
  margin: 0 0 3px;
  line-height: 1.25;
  font-weight: 500;
}
.ride__tags{
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  font-size: 12.5px;
  color: var(--ink-soft);
  align-items: center;
}
.ride__tag{ display: inline-flex; align-items: center; gap: 4px; }
.ride__tag .tag-dot{
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--ink-mute);
  display: inline-block;
}
.ride__tag.green .tag-dot{ background: #6FAE7E; }
.ride__tag.amber .tag-dot{ background: var(--honey); }
.ride__tag.red .tag-dot{ background: var(--coral); }
.ride__right{
  text-align: right;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}
.ride__wait{
  font-family: var(--serif);
  font-size: 22px;
  color: var(--navy);
  font-weight: 500;
  letter-spacing: -.01em;
  line-height: 1;
}
.ride__wait-label{
  font-size: 11px;
  color: var(--ink-mute);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* coming-soon card */
.db-soon{
  margin-top: 28px;
  background: var(--parchment);
  border: 1px dashed var(--honey);
  border-radius: var(--r-lg);
  padding: 24px;
}
.db-soon h4{
  font-size: 18px;
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.db-soon h4 .spark{ color: var(--honey); }
.db-soon ul{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.db-soon li{
  color: var(--ink-soft);
  font-size: 14.5px;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.db-soon li::before{
  content: "→";
  color: var(--honey);
  position: absolute;
  left: 0; top: 0;
  font-weight: 600;
}
.db-soon li strong{ color: var(--navy); }

/* =====================================================
   SUBPAGE RESPONSIVE
   ===================================================== */
@media (max-width: 980px){
  .plan-hero__grid{ grid-template-columns: 1fr; gap: 40px; }
  .plan-hero__cover-wrap{ max-width: 320px; margin: 0 auto; }

  .inside{ grid-template-columns: 1fr 1fr; }
  .toc{ grid-template-columns: 1fr; gap: 0; }
  .sample-strip{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px){
  .plan-hero{ padding: 32px 20px 56px; }
  .plan-hero__copy h1{ font-size: clamp(30px, 8vw, 40px); }
  .plan-hero__ctas .btn{ width: 100%; justify-content: center; }
  .price-card{ padding: 18px; gap: 12px; }
  .price-card .btn{ width: 100%; }
  .price-card__note{ width: 100%; flex: none; }

  .inside{ grid-template-columns: 1fr; }
  .sample-strip{ grid-template-columns: 1fr 1fr; gap: 12px; }

  .sticky-buy{ width: calc(100vw - 24px); justify-content: space-between; padding-left: 16px; font-size: 13px; }

  /* day builder */
  .db-head__row{ flex-direction: column; }
  .db-head__stats{ width: 100%; }
  .db-stat{ flex: 1; min-width: 0; }
  .db-next{ flex-wrap: wrap; }
  .db-next__cta{ width: 100%; }
  .ride{ padding: 12px 14px; gap: 10px; }
  .ride__name{ font-size: 16px; }
  .ride__tags{ font-size: 12px; gap: 2px 8px; }
  .ride__wait{ font-size: 19px; }
  .db-user .demo-tag{ display: none; }

  .field-row{ grid-template-columns: 1fr; }
}
