:root {
  --navy: #123554;
  --navy-soft: #52708a;
  --orange: #ff7b42;
  --orange-dark: #ef642b;
  --orange-text: #b64c20;
  --cream: #fffaf2;
  --white: #ffffff;
  --mint: #e1f4ec;
  --line: rgba(18, 53, 84, .12);
  --shadow: 0 20px 48px rgba(18, 53, 84, .10);
  --shadow-soft: 0 8px 24px rgba(18, 53, 84, .06);
  --radius: 28px;
  --max-width: 1420px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--navy);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis-weight: none;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
.container { width: min(calc(100% - 48px), var(--max-width)); margin-inline: auto; }
.skip-link { position: fixed; z-index: 100; top: 10px; left: 10px; padding: 10px 14px; border-radius: 10px; color: white; background: var(--navy); transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }
a:focus-visible, button:focus-visible { outline: 3px solid var(--navy); outline-offset: 4px; border-radius: 8px; }
section[id] { scroll-margin-top: 104px; }

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 242, .94);
  backdrop-filter: blur(14px);
  box-shadow: 0 0 0 rgba(18, 53, 84, 0);
  transition: box-shadow .2s ease, background-color .2s ease;
}
.site-header.is-scrolled { background: rgba(255, 250, 242, .97); box-shadow: 0 9px 26px rgba(18, 53, 84, .09); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 26px; min-height: 48px; }
.brand { display: inline-flex; align-items: center; gap: 10px; min-width: max-content; line-height: 1; }
.brand-mark { width: 52px; height: 52px; flex: 0 0 auto; object-fit: contain; transition: transform .2s ease; }
.brand:hover .brand-mark { transform: rotate(-2deg) scale(1.03); }
.brand-copy { display: flex; align-items: flex-start; flex-direction: column; gap: 2px; }
.brand-name { font-size: 1.55rem; font-weight: 850; letter-spacing: -.04em; }
.brand-pronunciation { color: var(--navy-soft); font-family: Georgia, "Times New Roman", serif; font-size: .82rem; font-style: italic; line-height: 1.15; white-space: nowrap; }
.nav-links { display: flex; align-items: center; gap: 30px; margin-left: auto; font-weight: 750; }
.nav-link { position: relative; padding: 11px 2px; transition: color .18s ease; }
.nav-link::after { position: absolute; right: 0; bottom: 5px; left: 0; height: 2px; border-radius: 2px; background: var(--orange); content: ""; transform: scaleX(0); transition: transform .18s ease; }
.nav-link:hover, .nav-link[aria-current="location"] { color: var(--orange-text); }
.nav-link:hover::after, .nav-link[aria-current="location"]::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 10px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 850;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(18, 53, 84, .08);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 15px 30px rgba(18, 53, 84, .13); }
.button:active { transform: translateY(0) scale(.98); box-shadow: 0 5px 12px rgba(18, 53, 84, .10); }
.button-primary { color: var(--navy); background: var(--orange); box-shadow: 0 12px 28px rgba(255, 123, 66, .24); }
.button-primary:hover { background: #ff8a54; }
.nav-primary { min-height: 44px; padding-inline: 17px; }

.hero { display: grid; grid-template-columns: 1.06fr .94fr; align-items: center; gap: clamp(48px, 5vw, 72px); padding: 64px 0 72px; }
.hero-content { max-width: 720px; }
.eyebrow { margin: 0 0 18px; color: var(--orange-text); font-size: .92rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.hero h1 { max-width: 700px; margin-bottom: 20px; font-size: clamp(2.9rem, 4.7vw, 4.35rem); line-height: 1; letter-spacing: -.06em; overflow-wrap: anywhere; text-wrap: balance; }
.hero-copy { max-width: 650px; margin-bottom: 26px; color: var(--navy-soft); font-size: clamp(1.06rem, 1.35vw, 1.24rem); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.hero-text-link { display: inline-flex; min-height: 44px; align-items: center; padding: 0 10px; color: var(--navy-soft); font-weight: 800; text-decoration: underline; text-decoration-color: rgba(18, 53, 84, .28); text-underline-offset: 5px; transition: color .18s ease, text-decoration-color .18s ease; }
.hero-text-link:hover { color: var(--orange-text); text-decoration-color: currentColor; }
.hero-panel { display: grid; min-height: 540px; padding: 30px; place-items: center; border-radius: 36px; background: radial-gradient(circle at 92% 16%, rgba(255, 146, 93, .22) 0 70px, transparent 71px), radial-gradient(circle at 18% 84%, rgba(255, 208, 91, .48) 0 185px, transparent 186px); }
.itinerary-card { width: min(550px, 96%); padding: 26px; border: 1px solid rgba(18, 53, 84, .08); border-radius: 30px; background: rgba(255, 255, 255, .97); box-shadow: var(--shadow); }
.itinerary-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
.itinerary-header > div { min-width: 0; flex: 1 1 300px; }
.itinerary-kicker { margin: 0 0 2px; color: var(--orange-text); font-size: .68rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.itinerary-title { margin: 0; font-size: 1.45rem; line-height: 1.15; letter-spacing: -.025em; }
.itinerary-description { max-width: 42ch; margin: 10px 0 0; color: var(--navy-soft); font-size: .8rem; line-height: 1.4; }
.verified-pill { display: inline-flex; max-width: 180px; flex: 0 1 180px; align-items: center; align-self: flex-start; gap: 5px; min-height: 30px; margin-top: 1px; padding: 5px 10px; border-radius: 999px; color: #23634f; background: var(--mint); font-size: .7rem; font-weight: 900; line-height: 1.2; text-align: center; white-space: normal; }
.event-preview-list { display: grid; gap: 12px; min-height: 110px; }
.preview-event { display: grid; grid-template-columns: 112px minmax(0, 1fr); gap: 14px; align-items: center; min-height: 128px; padding: 14px 12px; border: 1px solid var(--line); border-radius: 18px; background: white; cursor: pointer; box-shadow: 0 5px 14px rgba(18, 53, 84, .035); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.preview-event-story { align-items: start; }
.preview-event:hover, .preview-event:focus-within { z-index: 1; border-color: rgba(18, 53, 84, .22); box-shadow: 0 14px 28px rgba(18, 53, 84, .10); transform: translateY(-2px); }
.preview-event-media { position: relative; width: 100%; aspect-ratio: 4 / 3; overflow: hidden; border-radius: 12px; background: linear-gradient(145deg, #ffe3a0, #dff3eb); }
.preview-event-media[data-theme="stories"], .preview-event-media[data-theme="food"] { background: #fff8e9; }
.preview-event-media[data-theme="making"], .preview-event-media[data-theme="art"], .preview-event-media[data-theme="community"] { background: #f5f8ea; }
.preview-event-media[data-theme="science"], .preview-event-media[data-theme="space"], .preview-event-media[data-theme="games"] { background: #eef6f5; }
.preview-event-media[data-theme="dinosaurs"], .preview-event-media[data-theme="nature"], .preview-event-media[data-theme="discovery"], .preview-event-media[data-theme="museum"], .preview-event-media[data-theme="playground"] { background: #f1f7e9; }
.preview-event-media[data-theme="racing"], .preview-event-media[data-theme="shows"], .preview-event-media[data-theme="music"] { background: #fff3ec; }
.preview-event-media img { position: absolute; z-index: 2; inset: 0; display: block; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .2s ease, transform .3s ease; }
.preview-event-media[data-moment="bluey-dance-party"] img { object-position: 50% 46%; }
.preview-event-media[data-moment="pixar-cars-exhibit"] img { object-position: 50% 50%; }
.preview-event-media[data-moment="native-american-workshop"] img { object-position: 50% 34%; }
.preview-event:hover .preview-event-media img, .preview-event:focus-within .preview-event-media img { transform: scale(1.025); }
.preview-event-media.has-scene .preview-event-scene { opacity: 1; }
.preview-event-media .preview-event-official-image { z-index: 3; }
.preview-event-media.has-official-image .preview-event-official-image { opacity: 1; }
.preview-event-media.has-scene .preview-event-fallback { opacity: 0; }
.preview-event-fallback { position: absolute; inset: 0; display: grid; padding: 8px; place-content: center; gap: 3px; color: var(--navy); text-align: center; }
.preview-event-fallback-icon { font-size: 2rem; filter: drop-shadow(0 2px 0 rgba(255, 255, 255, .45)); }
.preview-event-fallback small { font-size: .57rem; font-weight: 800; line-height: 1.15; }
.preview-event-body { min-width: 0; }
.preview-event-date { display: block; margin-bottom: 4px; color: var(--orange-text); font-size: .62rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.preview-event-title { display: inline; font-size: 1rem; font-weight: 850; line-height: 1.22; }
.preview-event-title:hover { color: var(--orange-text); }
.preview-event-location { display: flex; align-items: flex-start; gap: 7px; margin: 8px 0 0; color: var(--navy-soft); font-size: .62rem; font-weight: 650; line-height: 1.3; }
.preview-event-location::before { width: 7px; height: 7px; flex: 0 0 7px; margin-top: 3px; border: 1.5px solid currentColor; border-radius: 50% 50% 50% 0; content: ""; transform: rotate(-45deg); }
.preview-event-location-copy { min-width: 0; }
.preview-event-description { display: -webkit-box; overflow: hidden; max-width: 42ch; margin: 9px 0 0; color: var(--navy-soft); font-size: .68rem; line-height: 1.42; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.preview-event-story .preview-event-description { -webkit-line-clamp: 3; }

.trust-strip { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-bottom: 74px; padding: 22px 26px; border: 1px solid rgba(18, 53, 84, .09); border-radius: 22px; background: rgba(255, 255, 255, .74); box-shadow: var(--shadow-soft); }
.trust-item { display: flex; align-items: center; gap: 12px; min-width: 0; margin: 0; padding: 0 22px; }
.trust-item + .trust-item { border-left: 1px solid var(--line); }
.trust-icon { display: grid; width: 38px; height: 38px; flex: 0 0 38px; place-items: center; border-radius: 12px; color: var(--navy); background: #fff0e7; font-size: 1rem; font-weight: 900; }
.trust-item strong, .trust-item small { display: block; }
.trust-item strong { font-size: .88rem; line-height: 1.25; }
.trust-item small { margin-top: 3px; color: var(--navy-soft); font-size: .72rem; line-height: 1.35; }

.section { padding: 84px 0; }
.section-white { background: white; }
.section-heading { max-width: 780px; margin: 0 auto 34px; text-align: center; }
.section-heading .eyebrow { margin-bottom: 12px; }
.section-heading h2 { margin-bottom: 14px; font-size: clamp(2.2rem, 3.8vw, 3.45rem); line-height: 1.06; letter-spacing: -.05em; text-wrap: balance; }
.section-heading p { margin-bottom: 0; color: var(--navy-soft); font-size: 1.06rem; line-height: 1.58; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.step-card { display: flex; min-height: 100%; flex-direction: column; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: var(--shadow-soft); transition: transform .18s ease, box-shadow .18s ease; }
.step-card:hover { box-shadow: 0 18px 34px rgba(18, 53, 84, .10); transform: translateY(-3px); }
.step-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.step-icon { display: grid; width: 50px; height: 50px; place-items: center; border-radius: 15px; color: var(--orange-text); background: #fff0e7; }
.step-icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.step-card h3 { margin-bottom: 10px; font-size: 1.22rem; letter-spacing: -.02em; }
.step-card p { margin-bottom: 0; color: var(--navy-soft); }

.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.feature-card { display: flex; min-height: 100%; overflow: hidden; flex-direction: column; border: 1px solid var(--line); border-radius: 24px; background: white; box-shadow: var(--shadow-soft); transition: transform .2s ease, box-shadow .2s ease; }
.feature-card:hover { box-shadow: 0 20px 44px rgba(18, 53, 84, .12); transform: translateY(-5px); }
.feature-media { position: relative; overflow: hidden; aspect-ratio: 2 / 1; background: #eef3ef; }
.feature-media picture { display: contents; }
.feature-image { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.feature-card:hover .feature-image { transform: scale(1.025); }
.feature-mascot-accent { position: absolute; right: 14px; bottom: 12px; width: 52px; height: 52px; padding: 5px; border: 1px solid rgba(18, 53, 84, .08); border-radius: 15px; background: rgba(255, 250, 242, .93); box-shadow: 0 8px 18px rgba(18, 53, 84, .12); object-fit: contain; }
.feature-body { display: flex; flex: 1; flex-direction: column; align-items: flex-start; padding: 24px; }
.feature-badge { display: inline-flex; min-height: 28px; align-items: center; padding: 0 10px; border-radius: 999px; color: #23634f; background: var(--mint); font-size: .72rem; font-weight: 900; }
.feature-card h3 { margin: 12px 0 10px; font-size: 1.35rem; letter-spacing: -.025em; }
.feature-card p { margin-bottom: 0; color: var(--navy-soft); }

.site-footer { padding: 54px 0 28px; border-top: 1px solid var(--line); color: var(--navy-soft); background: rgba(255, 255, 255, .52); }
.footer-grid { display: grid; grid-template-columns: minmax(240px, 1.35fr) repeat(2, minmax(150px, .65fr)); gap: 38px; }
.footer-brand .brand { color: var(--navy); }
.footer-brand .brand-mark { width: 44px; height: 44px; }
.footer-brand p { max-width: 270px; margin: 14px 0 0; font-size: .9rem; }
.footer-column { display: flex; align-items: flex-start; flex-direction: column; gap: 9px; }
.footer-column h2 { margin: 0 0 4px; color: var(--navy); font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-column a { font-size: .88rem; font-weight: 700; text-underline-offset: 4px; }
.footer-column a:hover { color: var(--orange-text); text-decoration: underline; }
.social-links { display: flex; flex-wrap: wrap; gap: 8px; }
.social-links a { min-height: 34px; padding: 7px 10px; border: 1px solid var(--line); border-radius: 10px; background: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 18px; margin-top: 36px; padding-top: 22px; border-top: 1px solid var(--line); font-size: .78rem; }

@media (prefers-reduced-motion: no-preference) {
  .reveal-ready [data-reveal] { opacity: 0; transform: translateY(12px); transition: opacity .7s ease, transform .7s ease; }
  .reveal-ready [data-reveal].is-visible { opacity: 1; transform: translateY(0); }
}

@media (hover: hover) {
  .preview-event:has(.preview-event-title:hover) { border-color: rgba(255, 123, 66, .42); }
}

@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; max-width: 840px; padding-top: 50px; }
  .hero-content { max-width: 760px; text-align: center; }
  .hero-copy { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-panel { min-height: 500px; }
  .steps-grid, .features-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip { grid-template-columns: 1fr; max-width: 840px; }
  .trust-item { padding: 14px 0; }
  .trust-item + .trust-item { border-top: 1px solid var(--line); border-left: 0; }
  .footer-grid { grid-template-columns: 1.35fr repeat(2, 1fr); }
}

@media (max-width: 780px) {
  .container { width: min(calc(100% - 30px), var(--max-width)); }
  .site-header { padding: 14px 0; }
  .nav { gap: 12px; }
  .nav-links { display: none; }
  .nav-primary { min-height: 42px; padding-inline: 15px; }
  .hero { padding: 42px 0 56px; }
  .hero h1 { font-size: clamp(2.55rem, 10.5vw, 3.45rem); }
  .hero-panel { min-height: 440px; padding: 18px; }
  .trust-strip { margin-bottom: 54px; padding: 14px 20px; }
  .section { padding: 64px 0; }
  .steps-grid, .features-grid { grid-template-columns: 1fr; }
  .step-card { min-height: auto; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > :last-child { grid-column: auto; }
}

@media (max-width: 520px) {
  .brand { gap: 7px; }
  .brand-mark { width: 38px; height: 38px; }
  .brand-name { font-size: 1.25rem; }
  .brand-pronunciation { font-size: .7rem; }
  .pronunciation-prefix { display: none; }
  .nav-primary { min-height: 40px; width: auto; padding-inline: 13px; font-size: .82rem; }
  .hero h1 { font-size: clamp(2.3rem, 10.5vw, 2.95rem); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-text-link { justify-content: center; }
  .button { width: 100%; }
  .nav-actions .nav-primary { width: auto; }
  .hero-panel { min-height: 0; padding: 10px 0 16px; background: radial-gradient(circle at 90% 12%, rgba(255, 146, 93, .18) 0 46px, transparent 47px), radial-gradient(circle at 12% 88%, rgba(255, 208, 91, .35) 0 112px, transparent 113px); }
  .itinerary-card { width: 100%; padding: 16px; border-radius: 24px; }
  .itinerary-header { align-items: flex-start; flex-wrap: wrap; }
  .verified-pill { min-height: 27px; padding-inline: 8px; }
  .preview-event { grid-template-columns: 90px minmax(0, 1fr); gap: 10px; }
  .preview-event-title, .preview-event-description { overflow-wrap: anywhere; }
  .trust-strip { margin-top: 0; }
  .section-heading { margin-bottom: 26px; }
  .section-heading h2 { font-size: clamp(2rem, 8.5vw, 2.6rem); }
  .feature-body, .step-card { padding: 22px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px 20px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .button:hover, .preview-event:hover, .preview-event:focus-within, .step-card:hover, .feature-card:hover, .brand:hover .brand-mark { transform: none; }
}
