@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,700;9..144,900&family=DM+Sans:wght@400;500;600;700&family=Caveat:wght@500;600;700&display=swap');

:root {
  /* Donald Duck palette — sailor blue, bill yellow, hat red, white */
  --disney-navy:    #1E5DAF;  /* Donald sailor blue — rich cobalt */
  --disney-blue:    #1E5DAF;
  --disney-red:     #E63946;  /* Donald hat red — warm vermillion */
  --disney-red-dark:#C81F2D;
  --disney-gold:    #FFD23F;  /* Donald bill yellow — bright sunshine */
  --disney-gold-text: #8B6B00;
  --disney-light:   #E3EEFB;  /* very pale sailor blue */
  --white:          #ffffff;
  --off-white:      #FFFBF0;  /* warm white */
  --text-dark:      #14223A;  /* deep blue-black */
  --text-mid:       #4E5A6E;
  --text-light:     #7C8694;
  --border:         #F1E8D4;
  --input-border:   #8A9098;
  --max-w:          1180px;
  --pad:            clamp(18px,5vw,60px);
  --radius:         16px;
  --font-script:    'Caveat', cursive;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad); }

/* Focus */
a:focus-visible, button:focus-visible { outline: 3px solid var(--disney-blue); outline-offset: 3px; border-radius: 4px; }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--disney-navy); color: #fff;
  padding: 14px 24px; font-weight: 700; font-size: .9rem;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }
@media (prefers-reduced-motion: reduce) { * { transition-duration: .001ms !important; animation-duration: .001ms !important; } }

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3 { line-height: 1.12; }
h1 { font-family: 'Fraunces', serif; font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-family: 'Fraunces', serif; font-size: clamp(1.8rem, 3.2vw, 2.6rem); font-weight: 700; }
h3 { font-size: 1.05rem; font-weight: 700; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--disney-blue);
}
.eyebrow::before { content: ''; width: 22px; height: 2px; background: var(--disney-gold); display: block; }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 0.95rem; padding: 14px 28px;
  border-radius: 8px; border: 2px solid transparent;
  transition: transform .2s, box-shadow .2s, background .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-navy  { background: var(--disney-navy); color: #fff; box-shadow: 0 8px 24px -8px rgba(30,93,175,.45); }
.btn-navy:hover { background: #082052; }
.btn-gold  { background: var(--disney-red); color: #fff; box-shadow: 0 8px 24px -8px rgba(200,16,46,.5); }
.btn-gold:hover { background: var(--disney-red-dark); }
.btn-outline { border-color: rgba(255,255,255,.55); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-outline-navy { border-color: var(--disney-navy); color: var(--disney-navy); }
.btn-outline-navy:hover { background: var(--disney-light); }
.btn-sm { padding: 10px 20px; font-size: .84rem; }

/* ─── HEADER ─────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 78px; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad);
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--disney-navy); color: #fff;
  font-family: 'Fraunces', serif; font-size: 1.3rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.logo-text { font-weight: 700; font-size: 1.1rem; color: var(--disney-navy); line-height: 1.15; }
.logo-text small { display: block; font-size: .72rem; font-weight: 500; color: var(--text-light); letter-spacing: .02em; }

.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a {
  font-size: .86rem; font-weight: 600; color: var(--text-mid);
  position: relative; padding: 4px 0;
  transition: color .2s;
}
.main-nav a::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  height: 2px; width: 0; background: var(--disney-navy);
  transition: width .2s;
}
.main-nav a:hover, .main-nav a.active { color: var(--disney-navy); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

.nav-cta {
  margin-left: 16px;
  background: var(--disney-gold) !important;
  color: var(--disney-navy) !important;
  font-weight: 800 !important;
  font-size: .82rem !important;
  padding: 11px 22px !important;
  border-radius: 999px !important;
  border: none !important;
  box-shadow: 0 4px 16px rgba(232,169,60,.45), 0 0 0 0 rgba(232,169,60,.4);
  animation: cta-pulse 2.8s ease-in-out infinite;
  white-space: nowrap;
  letter-spacing: .01em;
  position: relative;
}
.nav-cta::before {
  content: '★ ';
  font-size: .75rem;
}
.main-nav .nav-cta, .main-nav .nav-cta:hover { color: var(--disney-navy) !important; }
.main-nav .nav-cta::after { display: none; }
.main-nav .nav-cta:hover {
  background: #f5bc30 !important;
  box-shadow: 0 6px 24px rgba(232,169,60,.6) !important;
  transform: translateY(-1px);
}
@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(232,169,60,.45), 0 0 0 0 rgba(232,169,60,.4); }
  50% { box-shadow: 0 4px 16px rgba(232,169,60,.45), 0 0 0 8px rgba(232,169,60,0); }
}
.nav-toggle {
  display: none; background: none; border: 1px solid var(--border);
  width: 42px; height: 42px; border-radius: 8px; align-items: center; justify-content: center; cursor: pointer;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: ''; display: block; width: 20px; height: 2px; background: var(--text-dark);
  position: relative; transition: transform .25s;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after  { position: absolute; top:  6px; }

@media (max-width: 880px) {
  .main-nav {
    position: fixed; inset: 78px 0 0 0; background: var(--white);
    flex-direction: column; justify-content: flex-start; padding: 32px var(--pad);
    gap: 24px; transform: translateX(100%); transition: transform .3s ease;
    border-top: 1px solid var(--border);
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { font-size: 1.1rem; }
  .nav-toggle { display: flex; }
  .hero { min-height: auto; align-items: flex-start; padding: 40px 0 48px; }
  .hero h1 { font-size: clamp(2rem, 8vw, 2.6rem); }
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  min-height: clamp(560px, 72vh, 780px);
  display: flex; align-items: center;
  padding: 56px 0;
}
.hero-photo {
  position: absolute; inset: 0;
  object-fit: cover; width: 100%; height: 100%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(30,93,175,.88) 0%, rgba(30,93,175,.65) 52%, rgba(30,93,175,.1) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad);
  width: 100%;
}
.hero-inner { max-width: 580px; }
.hero .eyebrow { color: var(--disney-gold); margin-bottom: 18px; }
.hero .eyebrow::before { background: var(--disney-gold); }
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero p {
  font-size: 1.12rem; line-height: 1.65; color: rgba(255,255,255,.88);
  margin-bottom: 32px; max-width: 460px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-trust { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 9px; }
.hero-trust-item span { font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.82); }
.trust-check {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255,255,255,.15); border: 1.5px solid rgba(255,255,255,.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--disney-gold); font-size: .75rem; flex-shrink: 0;
}

/* ─── CREDENTIAL BAR ─────────────────────────────────────── */
.cred-bar {
  background: var(--disney-navy);
  padding: 16px var(--pad);
}
.cred-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
}
.cred-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.85); font-size: .82rem; font-weight: 600;
}
.cred-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--disney-gold); flex-shrink: 0; }

/* ─── SECTIONS ───────────────────────────────────────────── */
.section { padding: 88px var(--pad); }
.section-light { background: var(--off-white); }
.section-navy { background: var(--disney-navy); color: #fff; }
.section-navy .eyebrow { color: var(--disney-gold); }
.section-navy .eyebrow::before { background: var(--disney-gold); }
.section-navy h2 { color: #fff; }

.section-head { margin-bottom: 52px; }
.section-head .eyebrow { margin-bottom: 14px; }
.section-head p { color: var(--text-mid); font-size: 1.05rem; line-height: 1.65; margin-top: 14px; max-width: 560px; }
.section-head.center { text-align: center; }
.section-head.center p { margin-left: auto; margin-right: auto; }

/* ─── DESTINATION CARDS ──────────────────────────────────── */
.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.dest-card {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.1);
  position: relative; cursor: pointer;
  transition: transform .3s, box-shadow .3s;
}
.dest-card:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(30,93,175,.22), 0 0 0 2px rgba(232,169,60,.5); }
.dest-photo { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform .45s ease; }
.dest-card:hover .dest-photo { transform: scale(1.06); }
.dest-body {
  padding: 20px 22px;
  background: #fff;
  border-top: 3px solid var(--disney-navy);
}
.dest-body h3 { font-size: 1rem; color: var(--disney-navy); margin-bottom: 6px; }
.dest-body p { font-size: .86rem; color: var(--text-mid); line-height: 1.5; }
.dest-arrow {
  margin-top: 14px; display: inline-flex; align-items: center; gap: 6px;
  font-size: .82rem; font-weight: 700; color: var(--disney-blue);
}

@media (max-width: 860px) { .dest-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .dest-grid { grid-template-columns: 1fr; } }

/* ─── WHY-MIKE GRID ──────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.why-card {
  background: #fff; border-radius: var(--radius); padding: 30px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
  display: flex; gap: 18px; align-items: flex-start;
}
.why-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--disney-light); color: var(--disney-navy);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.why-card h3 { font-size: .98rem; margin-bottom: 8px; color: var(--disney-navy); }
.why-card p { font-size: .88rem; color: var(--text-mid); line-height: 1.6; }
@media (max-width: 720px) { .why-grid { grid-template-columns: 1fr; } }

/* ─── PHOTO + COPY SPLIT ─────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split-photo { border-radius: var(--radius); overflow: hidden; box-shadow: 0 16px 48px rgba(0,0,0,.14); }
.split-photo img { width: 100%; height: 420px; object-fit: cover; }
.split-copy .eyebrow { margin-bottom: 16px; }
.split-copy h2 { margin-bottom: 18px; }
.split-copy p { color: var(--text-mid); font-size: 1rem; line-height: 1.7; margin-bottom: 20px; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split-photo { order: -1; }
}

/* ─── STATS STRIP ────────────────────────────────────────── */
.stats-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; margin-top: 56px;
}
.stat { background: #fff; padding: 28px 24px; text-align: center; }
.stat strong { display: block; font-family: 'Fraunces', serif; font-size: 2.2rem; color: var(--disney-navy); margin-bottom: 4px; }
.stat span { font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--text-light); }
@media (max-width: 640px) { .stats-strip { grid-template-columns: 1fr 1fr; } }

/* ─── TESTIMONIALS ───────────────────────────────────────── */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tcard {
  background: #fff; border-radius: var(--radius); padding: 28px;
  border: 1px solid var(--border); box-shadow: 0 2px 12px rgba(0,0,0,.05);
  display: flex; flex-direction: column;
}
.tcard-stars { color: var(--disney-gold); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.tcard p { font-size: .9rem; line-height: 1.65; color: var(--text-mid); margin-bottom: 16px; flex: 1; }
.tcard-author { font-size: .8rem; font-weight: 700; color: var(--disney-navy); }
@media (max-width: 980px) { .testimonial-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px)  { .testimonial-grid { grid-template-columns: 1fr; } }

/* ─── STEPS ──────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; counter-reset: step; }
.step-card { text-align: center; padding: 0 12px; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--disney-navy); color: #fff;
  font-family: 'Fraunces', serif; font-size: 1.4rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.step-card h3 { font-size: 1rem; margin-bottom: 10px; }
.step-card p { font-size: .88rem; color: var(--text-mid); line-height: 1.6; }
.section-navy .step-num {
  background: var(--disney-gold); color: var(--disney-navy);
}
.section-navy .step-card h3 { color: #fff; font-size: 1.05rem; margin-bottom: 12px; }
.section-navy .step-card p { font-size: .92rem; color: rgba(255,255,255,.85); line-height: 1.7; }
@media (max-width: 680px) { .steps { grid-template-columns: 1fr; gap: 36px; } }

/* ─── CTA BAND ───────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--disney-navy) 0%, #002070 100%);
  color: #fff; padding: 88px var(--pad); text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 110%, rgba(212,168,67,.18), transparent 70%);
  pointer-events: none;
}
.cta-band h2 { color: #fff; max-width: 640px; margin: 0 auto 14px; position: relative; }
.cta-band p { color: rgba(255,255,255,.82); max-width: 480px; margin: 0 auto 32px; font-size: 1.05rem; position: relative; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ─── BLOG CARDS ─────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blog-card {
  border-radius: var(--radius); overflow: hidden; background: #fff;
  border: 1px solid var(--border); box-shadow: 0 2px 12px rgba(0,0,0,.05);
  display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(0,0,0,.12); }
.blog-card img { height: 185px; object-fit: cover; }
.blog-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-tag { font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--disney-blue); margin-bottom: 8px; }
.blog-body h3 { font-size: .98rem; line-height: 1.4; margin-bottom: 10px; color: var(--text-dark); }
.blog-body p { font-size: .84rem; color: var(--text-mid); line-height: 1.55; flex: 1; }
.blog-read { margin-top: 14px; font-size: .82rem; font-weight: 700; color: var(--disney-navy); display: inline-flex; align-items: center; gap: 5px; }
@media (max-width: 860px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .blog-grid { grid-template-columns: 1fr; } }

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer { background: var(--text-dark); color: rgba(255,255,255,.75); padding: 60px var(--pad) 28px; }
.footer-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo-text { color: #fff; }
.footer-brand .logo-text small { color: rgba(255,255,255,.5); }
.footer-brand p { font-size: .86rem; line-height: 1.65; margin: 16px 0; max-width: 260px; }
.footer-col h4 { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: .88rem; transition: color .2s; }
.footer-col ul a:hover { color: var(--disney-gold); }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 34px; height: 34px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 700;
  transition: background .2s, border-color .2s;
}
.footer-socials a:hover { background: var(--disney-gold); color: var(--text-dark); border-color: var(--disney-gold); }
.footer-bottom {
  max-width: var(--max-w); margin: 0 auto; padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: .76rem;
}
.footer-legal { max-width: var(--max-w); margin: 14px auto 0; font-size: .7rem; opacity: .45; line-height: 1.6; }
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ─── PAGE HERO (sub-pages) ──────────────────────────────── */
.page-hero {
  background: var(--disney-navy);
  padding: 72px var(--pad) 60px;
  text-align: center; color: #fff;
}
.page-hero .eyebrow { justify-content: center; margin-bottom: 14px; }
.page-hero h1 { color: #fff; max-width: 700px; margin: 0 auto 16px; }
.page-hero p { color: rgba(255,255,255,.82); max-width: 560px; margin: 0 auto 30px; font-size: 1.05rem; line-height: 1.65; }

/* ─── FAQ ────────────────────────────────────────────────── */
.faq-list { max-width: 740px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none; text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 22px 2px; font-size: 1rem; font-weight: 600; color: var(--text-dark);
}
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--disney-navy); flex-shrink: 0; font-size: 1rem; font-weight: 700;
  transition: transform .28s, background .28s, border-color .28s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--disney-navy); border-color: var(--disney-navy); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .32s ease; }
.faq-a-inner { padding: 0 2px 22px; font-size: .93rem; line-height: 1.7; color: var(--text-mid); }

/* ─── CONTACT ────────────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 48px; align-items: start; }
.contact-info { background: var(--disney-navy); color: #fff; border-radius: var(--radius); padding: 36px 32px; }
.contact-info h3 { color: #fff; font-size: 1.2rem; margin-bottom: 24px; }
.cinfo-row { display: flex; gap: 14px; margin-bottom: 20px; }
.cinfo-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.12); color: var(--disney-gold);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cinfo-row p { font-size: .88rem; line-height: 1.55; color: rgba(255,255,255,.82); }
.cinfo-row strong { display: block; font-size: .92rem; color: #fff; margin-bottom: 3px; }
.contact-form { background: #fff; border-radius: var(--radius); padding: 36px; border: 1px solid var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.field label { font-size: .78rem; font-weight: 700; color: var(--text-dark); }
.field input, .field select, .field textarea {
  border: 1.5px solid var(--input-border); border-radius: 8px;
  padding: 11px 14px; font-family: 'DM Sans', sans-serif; font-size: .93rem;
  background: var(--off-white); color: var(--text-dark);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--disney-blue);
  outline: 3px solid var(--disney-blue);
  outline-offset: 1px;
}
.field textarea { min-height: 100px; resize: vertical; }
@media (max-width: 840px) { .contact-layout, .form-row { grid-template-columns: 1fr; } }

.form-confirm { text-align: center; padding: 32px; }
.form-confirm .check-circle {
  width: 60px; height: 60px; border-radius: 50%; background: var(--disney-navy); color: #fff;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-size: 1.5rem;
}
.form-confirm h3 { color: var(--disney-navy); font-size: 1.3rem; margin-bottom: 10px; }
.form-confirm p { color: var(--text-mid); font-size: .93rem; max-width: 340px; margin: 0 auto; line-height: 1.6; }

/* ─── RESOURCES ──────────────────────────────────────────── */
.resource-list { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.rcard {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; display: flex; gap: 16px; align-items: flex-start;
  box-shadow: 0 2px 10px rgba(0,0,0,.04); color: var(--text-dark);
}
.rcard-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--disney-light); color: var(--disney-navy);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.rcard h3 { font-size: .95rem; margin-bottom: 6px; color: var(--disney-navy); }
.rcard p { font-size: .84rem; color: var(--text-mid); line-height: 1.55; }
@media (max-width: 680px) { .resource-list { grid-template-columns: 1fr; } }

/* ─── BLOG POST PAGES ─────────────────────────────────────── */
.post-hero {
  background: var(--disney-navy);
  padding: 56px var(--pad) 48px;
  color: #fff;
}
.post-hero .eyebrow { color: var(--disney-gold); margin-bottom: 14px; }
.post-hero h1 { color: #fff; font-size: clamp(1.8rem, 3.8vw, 2.8rem); max-width: 800px; }
.post-hero .post-meta {
  display: flex; gap: 20px; flex-wrap: wrap;
  font-size: .8rem; color: rgba(255,255,255,.7);
  margin-top: 16px;
}
.post-hero .post-meta span { display: flex; align-items: center; gap: 6px; }

.post-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  align-items: start;
  padding: 64px var(--pad);
  max-width: var(--max-w);
  margin: 0 auto;
}
.post-body { min-width: 0; }
.post-body img {
  width: 100%; border-radius: 12px;
  margin: 28px 0; box-shadow: 0 8px 28px rgba(0,0,0,.12);
}
.post-body h2 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem; color: var(--disney-navy);
  margin: 36px 0 14px;
}
.post-body h3 {
  font-size: 1.05rem; font-weight: 700;
  color: var(--disney-navy); margin: 24px 0 10px;
}
.post-body p { font-size: 1rem; line-height: 1.78; color: var(--text-mid); margin-bottom: 18px; }
.post-body ul, .post-body ol { padding-left: 22px; margin-bottom: 18px; }
.post-body li { font-size: 1rem; line-height: 1.75; color: var(--text-mid); margin-bottom: 6px; }
.post-body strong { color: var(--text-dark); font-weight: 700; }
.post-body a { color: var(--disney-blue); text-decoration: underline; }
.post-body blockquote {
  border-left: 4px solid var(--disney-gold);
  padding: 14px 20px; margin: 24px 0;
  background: var(--off-white); border-radius: 0 8px 8px 0;
  font-style: italic; color: var(--text-dark);
}

.post-cta {
  background: linear-gradient(135deg, var(--disney-navy), #082052);
  border-radius: 16px; padding: 36px; margin-top: 48px;
  text-align: center; color: #fff;
}
.post-cta h3 { color: #fff; font-size: 1.3rem; margin-bottom: 10px; }
.post-cta p { color: rgba(255,255,255,.82); font-size: .93rem; margin-bottom: 22px; }

.post-sidebar { position: sticky; top: 96px; }
.sidebar-card {
  background: var(--off-white); border-radius: 14px;
  padding: 26px; margin-bottom: 22px;
  border: 1px solid var(--border);
}
.sidebar-card h4 {
  font-size: .78rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--disney-navy); margin-bottom: 14px;
}
.sidebar-card p { font-size: .86rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 14px; }
.related-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.related-links a {
  font-size: .86rem; color: var(--disney-blue);
  font-weight: 600; text-decoration: none;
  display: flex; align-items: center; gap: 6px;
}
.related-links a:hover { color: var(--disney-navy); }

.breadcrumb {
  font-size: .78rem; color: var(--text-light);
  padding: 14px var(--pad);
  max-width: var(--max-w); margin: 0 auto;
  display: flex; gap: 8px; align-items: center;
}
.breadcrumb a { color: var(--disney-blue); text-decoration: none; }

@media (max-width: 860px) {
  .post-layout { grid-template-columns: 1fr; gap: 36px; }
  .post-sidebar { position: static; }
}

/* Donald Duck — Caveat handwritten accents */
.eyebrow.script {
  font-family: var(--font-script);
  font-size: 1.45rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  color: var(--disney-red);
}
.eyebrow.script::before { display: none; }

.script-accent {
  font-family: var(--font-script);
  font-weight: 600;
  color: var(--disney-red);
  font-size: 1.25em;
  line-height: 1;
}

/* ─── Caveat handwritten accent ──────────────────────────── */
.cta-script {
  font-family: var(--font-script);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--disney-gold);
  margin-bottom: 12px;
  line-height: 1;
}
