:root {
  color-scheme: light;
  --cream: #f7f4ec;
  --cream-strong: #efe7d8;
  --surface: #ffffff;
  --surface-clean: #ffffff;
  --indigo: #234b6c;
  --indigo-deep: #16364f;
  --red: #d94a38;
  --red-deep: #b93628;
  --matcha: #7c9a5d;
  --charcoal: #2e2a28;
  --muted: #746b63;
  --line: rgba(35, 75, 108, 0.14);
  --radius: 8px;
  --radius-sm: 8px;
  --shadow: 0 14px 36px rgba(35, 75, 108, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--charcoal);
  font-family:
    Avenir Next,
    Avenir,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(217, 74, 56, 0.42);
  outline-offset: 4px;
}

.announcement {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px 18px;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
  color: var(--indigo);
  font-size: 0.83rem;
  font-weight: 700;
}

.announcement a {
  border-bottom: 1px solid currentColor;
  color: var(--red);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(20px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: clamp(172px, 18vw, 232px);
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 28px);
  color: var(--indigo);
  font-size: 0.92rem;
  font-weight: 750;
}

.nav-links a {
  padding: 10px 0;
  transition: color 160ms ease;
}

.nav-links a:hover {
  color: var(--red);
}

.menu-toggle {
  display: none;
  width: 44px;
  min-height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--indigo);
  font: inherit;
  padding: 0;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 160ms ease,
    opacity 160ms ease,
    background 160ms ease;
}

.menu-lines {
  position: relative;
}

.menu-lines::before,
.menu-lines::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-lines::before {
  transform: translateY(-6px);
}

.menu-lines::after {
  transform: translateY(6px);
}

.menu-toggle[aria-expanded="true"] .menu-lines {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-lines::before {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-lines::after {
  transform: rotate(-45deg);
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 850;
  line-height: 1;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.nav-cta {
  padding: 0 20px;
  background: var(--red);
  color: #fffaf1;
  box-shadow: none;
}

.button {
  padding: 0 24px;
}

.button:active,
.nav-cta:active {
  transform: translateY(1px);
}

.primary {
  background: var(--red);
  color: #fffaf1;
  box-shadow: 0 8px 18px rgba(217, 74, 56, 0.18);
}

.primary:hover,
.nav-cta:hover {
  background: var(--red-deep);
}

.secondary {
  border: 1px solid rgba(35, 75, 108, 0.2);
  background: #ffffff;
  color: var(--indigo);
}

.secondary:hover {
  border-color: rgba(217, 74, 56, 0.42);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
  min-height: calc(100dvh - 170px);
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 62px) clamp(20px, 5vw, 48px) 30px;
}

.hero-copy {
  max-width: 660px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--matcha);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 650px;
  margin-bottom: 22px;
  color: var(--indigo);
  font-size: clamp(3.25rem, 7.2vw, 6.2rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  color: var(--indigo);
  font-size: clamp(2.1rem, 4.5vw, 4.1rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.24rem;
  letter-spacing: 0;
}

.hero-text {
  max-width: 540px;
  margin-bottom: 30px;
  color: var(--charcoal);
  font-size: clamp(1.08rem, 1.8vw, 1.24rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-visual {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid rgba(35, 75, 108, 0.12);
  border-radius: calc(var(--radius) + 14px);
  background: #f8faf7;
  box-shadow: var(--shadow);
}

.hero-visual::before {
  display: none;
  content: "";
}

.mascot {
  position: absolute;
  right: clamp(20px, 6vw, 72px);
  bottom: 22px;
  width: min(72%, 330px);
  filter: drop-shadow(0 18px 24px rgba(35, 75, 108, 0.16));
}

.sun-card,
.booking-card {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(35, 75, 108, 0.14);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(35, 75, 108, 0.09);
}

.sun-card {
  top: 34px;
  left: 28px;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  width: min(78%, 352px);
  padding: 16px;
}

.brand-icon {
  width: 56px;
}

.sun-card strong,
.booking-card strong {
  display: block;
  color: var(--indigo);
}

.sun-card span,
.booking-card span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.booking-card {
  right: 28px;
  bottom: 28px;
  display: grid;
  gap: 8px;
  width: min(72%, 300px);
  padding: 18px;
}

.booking-label {
  color: var(--matcha);
  font-size: 0.78rem;
  font-weight: 900;
}

.booking-card a {
  display: inline-flex;
  width: fit-content;
  min-height: 36px;
  align-items: center;
  border-radius: 999px;
  background: var(--indigo);
  color: #fffaf1;
  font-size: 0.9rem;
  font-weight: 850;
  padding: 0 16px;
}

.value-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid rgba(35, 75, 108, 0.12);
  background: #ffffff;
}

.value-strip div {
  display: grid;
  gap: 6px;
  justify-items: center;
  min-height: 124px;
  padding: 30px 20px;
  text-align: center;
}

.value-strip strong {
  color: var(--indigo);
  font-size: 1.34rem;
}

.value-strip span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(72px, 9vw, 112px) clamp(20px, 5vw, 48px);
}

.section-intro {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-intro.centered {
  margin-inline: auto;
  text-align: center;
}

.section-intro p,
.host-panel p,
.download-copy p,
.contact p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.experience-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr 0.92fr;
  gap: 18px;
}

.experience-card {
  display: flex;
  min-height: 188px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(35, 75, 108, 0.11);
  border-radius: var(--radius);
  background: var(--surface-clean);
  color: var(--charcoal);
  padding: clamp(22px, 3vw, 30px);
  box-shadow: none;
}

.experience-card.featured {
  grid-row: span 2;
  min-height: 394px;
  background: #fff7f5;
}

.experience-card.red {
  background: #fff4f1;
}

.experience-card.green {
  background: #f4f8ef;
}

.experience-card.blue {
  background: #f3f7fa;
}

.experience-card.cream {
  background: #fffaf0;
}

.experience-card span {
  width: fit-content;
  border-radius: 999px;
  border: 1px solid rgba(35, 75, 108, 0.12);
  background: #ffffff;
  color: var(--indigo);
  font-size: 0.78rem;
  font-weight: 850;
  padding: 6px 12px;
}

.experience-card p {
  margin-bottom: 0;
  color: rgba(46, 42, 40, 0.76);
  line-height: 1.62;
}

.flow {
  max-width: none;
  border-block: 1px solid var(--line);
  background: #ffffff;
}

.flow > * {
  max-width: 1120px;
  margin-inline: auto;
}

.flow-mark {
  width: 56px;
  margin-bottom: 18px;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.flow-grid article,
.quote-grid article,
.contact-cards a {
  border: 1px solid rgba(35, 75, 108, 0.12);
  border-radius: var(--radius-sm);
  background: #ffffff;
  box-shadow: none;
}

.flow-grid article {
  min-height: 176px;
  padding: 28px;
}

.flow-grid strong,
.host-list li::marker,
.contact-cards strong {
  color: var(--indigo);
}

.flow-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.hosts {
  padding-top: clamp(76px, 10vw, 128px);
}

.host-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
  border: 1px solid rgba(35, 75, 108, 0.14);
  border-radius: calc(var(--radius) + 6px);
  background: #ffffff;
  padding: clamp(30px, 6vw, 56px);
}

.host-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding-left: 20px;
  color: var(--charcoal);
  line-height: 1.6;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.quote-grid article {
  padding: 26px;
}

.quote-grid p {
  min-height: 72px;
  margin-bottom: 22px;
  color: var(--charcoal);
  font-size: 1.08rem;
  line-height: 1.55;
}

.quote-grid strong,
.quote-grid span {
  display: block;
}

.quote-grid strong {
  color: var(--indigo);
}

.quote-grid span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
}

.download-section {
  display: grid;
  gap: 34px;
  justify-items: center;
  padding: clamp(72px, 10vw, 118px) 20px;
  border-block: 1px solid var(--line);
  background: #ffffff;
  color: var(--charcoal);
  text-align: center;
}

.download-copy {
  max-width: 760px;
}

.download-copy img {
  width: 82px;
  margin: 0 auto 22px;
}

.download-copy h2 {
  color: var(--indigo);
}

.download-copy p {
  max-width: 620px;
  margin-inline: auto;
  color: var(--muted);
}

.download-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 1fr));
  gap: 16px;
  width: min(720px, 100%);
}

.download-actions a {
  display: grid;
  gap: 6px;
  min-height: 104px;
  align-content: center;
  border: 1px solid rgba(35, 75, 108, 0.14);
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: var(--indigo);
  padding: 18px;
  box-shadow: none;
}

.download-actions span {
  color: var(--muted);
  font-size: 0.84rem;
}

.download-actions strong {
  font-size: 1.05rem;
}

.download-actions .mini-program {
  background: #f8faf7;
  color: var(--indigo);
}

.download-actions .mini-program span {
  color: var(--muted);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.contact-cards a {
  display: grid;
  gap: 8px;
  min-height: 132px;
  align-content: center;
  padding: 24px;
  text-align: center;
  transition:
    transform 160ms ease,
    border-color 160ms ease;
}

.contact-cards a:hover {
  border-color: rgba(217, 74, 56, 0.42);
  transform: translateY(-2px);
}

.contact-cards span {
  color: var(--muted);
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 42px 20px;
  border-top: 1px solid var(--line);
  background: #ffffff;
  color: var(--muted);
  text-align: center;
}

.site-footer img {
  width: 200px;
}

.site-footer span {
  font-size: 0.86rem;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto auto;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(35, 75, 108, 0.12);
    padding: 10px;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 16px;
  }

  .hero,
  .experience-grid,
  .flow-grid,
  .host-panel,
  .quote-grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 460px;
  }

  .experience-card.featured {
    grid-row: auto;
    min-height: 240px;
  }

  .value-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .announcement {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 70px;
  }

  .brand img {
    width: 158px;
  }

  .nav-cta {
    display: none;
  }

  h1 {
    font-size: clamp(3rem, 17vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2.1rem, 11vw, 3rem);
  }

  .hero {
    padding-top: 38px;
  }

  .hero-visual {
    min-height: 420px;
  }

  .mascot {
    right: 12px;
    width: min(86%, 300px);
  }

  .sun-card {
    left: 14px;
    width: calc(100% - 28px);
  }

  .booking-card {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
  }

  .value-strip,
  .download-actions {
    grid-template-columns: 1fr;
  }

  .value-strip div {
    min-height: auto;
  }

  .section {
    padding-block: 66px;
  }
}
