:root {
  --ink: #10264f;
  --ink-soft: #526483;
  --blue: #1459c7;
  --blue-deep: #083e9d;
  --cyan: #51d6f4;
  --orange: #ff8c42;
  --cream: #fff8ea;
  --lavender: #c7b9ff;
  --paper: #fffdf8;
  --line: rgba(20, 64, 130, 0.13);
  --shadow: 0 24px 70px rgba(20, 54, 108, 0.16);
  --radius: 30px;
  --mouse-x: 0px;
  --mouse-y: 0px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  color: white;
  background: var(--blue);
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

button,
select,
a[href] {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid #ffb45f;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  border-radius: 12px;
  color: white;
  background: var(--blue-deep);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 18px;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1160px, calc(100% - 36px));
  min-height: 66px;
  padding: 9px 10px 9px 18px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 22px;
  color: white;
  background: rgba(7, 37, 93, 0.43);
  box-shadow: 0 12px 40px rgba(4, 31, 81, 0.16);
  backdrop-filter: blur(18px) saturate(140%);
  transform: translateX(-50%);
  transition: background 250ms ease, box-shadow 250ms ease, top 250ms ease;
}

.site-header.scrolled {
  top: 8px;
  background: rgba(7, 37, 93, 0.88);
  box-shadow: 0 14px 40px rgba(4, 31, 81, 0.3);
}

.brand {
  display: flex;
  gap: 11px;
  align-items: center;
  color: white;
  font-family: "Fredoka", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: none;
}

.brand strong {
  color: #ffd28f;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 13px;
  color: var(--blue-deep);
  background: linear-gradient(145deg, #fff9e9, #ffd7a3);
  box-shadow: inset 0 -3px 0 rgba(196, 92, 36, 0.18), 0 6px 15px rgba(3, 23, 63, 0.22);
}

.brand-mark svg {
  width: 25px;
  fill: currentColor;
  transform: rotate(-9deg);
}

.header-actions,
.language-switcher {
  display: flex;
  align-items: center;
}

.header-actions {
  gap: 10px;
}

.language-switcher {
  gap: 3px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.08);
}

.language-switcher button {
  min-width: 42px;
  min-height: 40px;
  padding: 0 10px;
  border: 0;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  font-size: 0.9rem;
  font-weight: 800;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.language-switcher button:hover {
  color: white;
  background: rgba(255, 255, 255, 0.13);
}

.language-switcher button.active {
  color: var(--blue-deep);
  background: white;
  box-shadow: 0 5px 16px rgba(1, 22, 68, 0.2);
}

.header-cta {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  padding: 0 19px;
  border-radius: 14px;
  color: #082f73;
  background: linear-gradient(145deg, #ffe3b8, #ffad5b);
  box-shadow: inset 0 -3px 0 rgba(198, 90, 28, 0.2), 0 8px 22px rgba(1, 22, 68, 0.2);
  font-size: 0.94rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-decoration: none;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.header-cta:hover {
  box-shadow: inset 0 -3px 0 rgba(198, 90, 28, 0.2), 0 12px 26px rgba(1, 22, 68, 0.3);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  display: block;
  min-height: 900px;
  overflow: hidden;
  color: white;
  background: #164fa0;
  isolation: isolate;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  z-index: -3;
  background-image: url("assets/hero-flight-1600.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.035) translate(calc(var(--mouse-x) * -0.15), calc(var(--mouse-y) * -0.15));
  transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 34, 87, 0.89) 0%, rgba(3, 42, 102, 0.67) 35%, rgba(4, 48, 108, 0.15) 68%),
    linear-gradient(180deg, rgba(0, 29, 76, 0.28), transparent 50%, rgba(4, 35, 87, 0.3));
}

.hero::after {
  position: absolute;
  z-index: 2;
  right: -4%;
  bottom: -65px;
  left: -4%;
  height: 120px;
  border-radius: 50% 50% 0 0;
  background: var(--paper);
  content: "";
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: 165px;
  padding-right: 40%;
}

.flight-tag,
.eyebrow,
.card-kicker {
  margin: 0 0 20px;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.flight-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  color: #eaf6ff;
  background: rgba(5, 46, 112, 0.3);
  backdrop-filter: blur(9px);
}

.flight-tag::before {
  width: 7px;
  height: 7px;
  margin-right: 9px;
  border-radius: 50%;
  background: #ffb568;
  box-shadow: 0 0 0 5px rgba(255, 181, 104, 0.14), 0 0 18px #ffb568;
  content: "";
  animation: pulse-dot 2s infinite;
}

.hero h1,
.section-heading h2,
.boarding-copy h2 {
  margin: 0;
  font-family: "Fredoka", "Nunito", sans-serif;
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.97;
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(3.2rem, 5vw, 4.75rem);
  text-shadow: 0 6px 28px rgba(3, 31, 76, 0.3);
}

.hero h1 span {
  display: inline-block;
  color: #ffd8a3;
  text-shadow: 0 0 35px rgba(255, 184, 104, 0.28);
}

.hero-copy {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.12rem, 1.45vw, 1.28rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
  border: 0;
  border-radius: 17px;
  font-weight: 900;
  font-size: 1.05rem;
  text-decoration: none;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.button svg,
.header-actions svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button-primary {
  color: #073574;
  background: linear-gradient(145deg, #fff2d9, #ffad5e);
  box-shadow: inset 0 -4px 0 rgba(190, 78, 24, 0.18), 0 13px 30px rgba(4, 24, 65, 0.25);
}

.button-primary:hover {
  box-shadow: inset 0 -4px 0 rgba(190, 78, 24, 0.18), 0 18px 36px rgba(4, 24, 65, 0.34);
  transform: translateY(-3px);
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: white;
  background: rgba(5, 46, 112, 0.25);
  backdrop-filter: blur(9px);
}

.button-ghost:hover {
  background: rgba(5, 46, 112, 0.48);
  transform: translateY(-3px);
}

.hero-details {
  display: flex;
  gap: 48px;
  margin-top: 38px;
}

.hero-details > div {
  display: flex;
  gap: 15px;
  align-items: center;
}

.hero-details svg {
  width: 32px;
  flex: 0 0 auto;
  fill: none;
  stroke: #ffd49a;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero-details span {
  display: flex;
  flex-direction: column;
}

.hero-details strong {
  font-size: 1.18rem;
  line-height: 1.25;
  letter-spacing: 0.01em;
}

.hero-details small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.96rem;
  line-height: 1.35;
}

.countdown-card {
  position: absolute;
  z-index: 4;
  right: max(calc((100vw - 1160px) / 2), 30px);
  bottom: 110px;
  width: 405px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 26px;
  color: var(--ink);
  background: rgba(255, 252, 244, 0.89);
  box-shadow: 0 22px 65px rgba(3, 28, 71, 0.24), inset 0 1px 0 white;
  backdrop-filter: blur(20px) saturate(135%);
  transform: translate(calc(var(--mouse-x) * 0.2), calc(var(--mouse-y) * 0.2));
  transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.countdown-card > p:first-of-type {
  margin: 2px 0 2px 57px;
  color: #315480;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.deadline-date {
  display: block;
  margin: 0 0 17px 57px;
  color: #b94b20;
  font-family: "Fredoka", "Nunito", sans-serif;
  font-size: 1.05rem;
  line-height: 1.3;
}

.radar {
  position: absolute;
  top: 16px;
  left: 17px;
  width: 43px;
  height: 43px;
  overflow: hidden;
  border: 1px solid rgba(20, 89, 199, 0.2);
  border-radius: 50%;
  background: rgba(71, 189, 237, 0.09);
}

.radar::before,
.radar::after {
  position: absolute;
  inset: 50% 0 auto;
  height: 1px;
  background: rgba(20, 89, 199, 0.18);
  content: "";
}

.radar::after {
  transform: rotate(90deg);
}

.radar span {
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(20, 89, 199, 0.18);
  border-radius: 50%;
}

.radar i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), transparent);
  transform-origin: left center;
  animation: radar-sweep 2.5s linear infinite;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.countdown > span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  padding: 12px 5px 10px;
  border: 1px solid rgba(22, 83, 164, 0.09);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 -3px 0 rgba(28, 85, 164, 0.05);
}

.countdown strong {
  font-family: "Fredoka", sans-serif;
  font-size: 1.8rem;
  line-height: 1;
}

.countdown small {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 0.74rem;
  font-weight: 800;
}

.deadline-note {
  margin: 11px 0 0 !important;
  color: #8d4a2c !important;
  font-size: 0.78rem !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  text-align: center;
}

.calendar-link {
  display: flex;
  width: 100%;
  min-height: 48px;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  border: 0;
  border-radius: 13px;
  color: var(--blue-deep);
  background: #eaf3ff;
  font-size: 0.9rem;
  font-weight: 900;
  transition: background 180ms ease, transform 180ms ease;
}

.calendar-link:hover {
  background: #d9eaff;
  transform: translateY(-1px);
}

.calendar-link svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.orbit-lines span {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(140, 226, 255, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-lines span:nth-child(1) {
  top: 16%;
  right: -8%;
  width: 630px;
  height: 350px;
  transform: rotate(-9deg);
}

.orbit-lines span:nth-child(2) {
  top: 26%;
  right: 2%;
  width: 420px;
  height: 230px;
  transform: rotate(-9deg);
}

.orbit-lines span:nth-child(3) {
  top: 36%;
  right: 11%;
  width: 220px;
  height: 120px;
  transform: rotate(-9deg);
}

.spark {
  position: absolute;
  z-index: -1;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 10px white;
  animation: sparkle var(--duration, 4s) ease-in-out infinite var(--delay, 0s);
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 56px;
  left: 50%;
  width: 26px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 20px;
  transform: translateX(-50%);
}

.scroll-cue span {
  display: block;
  width: 4px;
  height: 8px;
  margin: 8px auto;
  border-radius: 4px;
  background: white;
  animation: scroll-cue 1.8s ease-in-out infinite;
}

.section {
  position: relative;
  padding: 120px max(24px, calc((100vw - 1160px) / 2));
}

.story-section {
  overflow: hidden;
  padding-top: 92px;
  background:
    radial-gradient(circle at 8% 45%, rgba(115, 211, 241, 0.16), transparent 21%),
    radial-gradient(circle at 92% 20%, rgba(199, 185, 255, 0.2), transparent 23%),
    var(--paper);
}

.section-heading {
  width: min(760px, 100%);
  margin: 0 auto 62px;
  text-align: center;
}

.eyebrow,
.card-kicker {
  color: var(--blue);
}

.section-heading h2,
.boarding-copy h2 {
  color: var(--ink);
  font-size: clamp(2.65rem, 5vw, 5rem);
}

.section-heading h2 span,
.boarding-copy h2 span {
  color: var(--orange);
}

.section-heading > p:last-child {
  max-width: 650px;
  margin: 24px auto 0;
  color: var(--ink-soft);
  font-size: 1.16rem;
}

.adventure-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.adventure-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  padding: 34px;
  border: 2px solid #e0ebf7;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), #f2f7fd);
  box-shadow: inset 0 -6px 0 rgba(22, 79, 151, 0.05), 0 22px 55px rgba(26, 66, 126, 0.09);
  transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
}

.adventure-card:hover {
  border-color: #bbd9f5;
  box-shadow: inset 0 -6px 0 rgba(22, 79, 151, 0.05), 0 30px 65px rgba(26, 66, 126, 0.16);
  transform: translateY(-8px);
}

.adventure-card.featured {
  color: white;
  border-color: rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(circle at 86% 10%, rgba(81, 214, 244, 0.35), transparent 28%),
    linear-gradient(145deg, #1761cf, #0a3f9c);
  box-shadow: inset 0 -6px 0 rgba(1, 29, 78, 0.15), 0 27px 65px rgba(11, 65, 151, 0.23);
  transform: translateY(-18px);
}

.adventure-card.featured:hover {
  transform: translateY(-26px);
}

.adventure-card.featured .card-kicker,
.adventure-card.featured > p:last-child {
  color: rgba(255, 255, 255, 0.78);
}

.card-number {
  position: absolute;
  top: 22px;
  right: 25px;
  color: rgba(16, 38, 79, 0.13);
  font-family: "Fredoka", sans-serif;
  font-size: 3.7rem;
  font-weight: 700;
  line-height: 1;
}

.featured .card-number {
  color: rgba(255, 255, 255, 0.12);
}

.card-icon {
  display: grid;
  width: 80px;
  height: 80px;
  margin-bottom: 39px;
  place-items: center;
  border-radius: 26px;
  color: var(--blue);
  background: linear-gradient(145deg, #fff, #dcecff);
  box-shadow: inset 0 -5px 0 rgba(45, 95, 168, 0.09), 0 16px 32px rgba(28, 79, 151, 0.12);
}

.featured .card-icon {
  color: #0c4eb2;
  background: linear-gradient(145deg, #fff5df, #ffc17c);
}

.card-icon svg {
  width: 43px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.7;
}

.card-icon svg path:only-child {
  fill: currentColor;
  stroke: none;
}

.card-kicker {
  margin-bottom: 9px;
}

.adventure-card h3 {
  margin: 0;
  font-family: "Fredoka", sans-serif;
  font-size: 1.65rem;
  line-height: 1.2;
}

.adventure-card > p:last-child {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.cloud {
  position: absolute;
  width: 180px;
  height: 52px;
  border-radius: 80px;
  background: white;
  box-shadow: 0 14px 35px rgba(35, 78, 133, 0.08);
  opacity: 0.7;
}

.cloud::before,
.cloud::after {
  position: absolute;
  bottom: 15px;
  border-radius: 50%;
  background: inherit;
  content: "";
}

.cloud::before {
  left: 30px;
  width: 70px;
  height: 70px;
}

.cloud::after {
  right: 28px;
  width: 50px;
  height: 50px;
}

.cloud-left {
  top: 170px;
  left: -85px;
  animation: cloud-float 7s ease-in-out infinite;
}

.location-section {
  overflow: hidden;
  padding-top: 105px;
  padding-bottom: 145px;
  background:
    radial-gradient(circle at 90% 8%, rgba(81, 214, 244, 0.18), transparent 24%),
    linear-gradient(180deg, #fffdf8, #eef9ff);
}

.location-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.72fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 46px;
}

.location-heading .eyebrow {
  margin-bottom: 15px;
}

.location-heading h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Fredoka", "Nunito", sans-serif;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1;
}

.location-heading h2 span {
  color: var(--orange);
}

.location-heading > p {
  margin: 0 0 5px;
  color: var(--ink-soft);
  font-size: 1.15rem;
  line-height: 1.75;
}

.playful-map {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border: 8px solid white;
  border-radius: 38px;
  background: #dff3d5;
  box-shadow: 0 35px 90px rgba(27, 70, 120, 0.2), inset 0 0 0 1px rgba(20, 64, 130, 0.1);
}

.playful-map picture,
.playful-map img {
  display: block;
  width: 100%;
  height: 100%;
}

.playful-map picture {
  position: absolute;
  inset: 0;
}

.playful-map img {
  object-fit: cover;
  object-position: center;
}

.playful-map::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(6, 40, 84, 0.18));
  content: "";
  pointer-events: none;
}

.map-road-label {
  position: absolute;
  z-index: 2;
  padding: 5px 12px;
  border: 2px solid rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  color: #184a7a;
  background: rgba(255, 252, 239, 0.9);
  box-shadow: 0 7px 20px rgba(35, 77, 118, 0.14);
  font-family: "Fredoka", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
}

.map-road-nicolet {
  top: 9%;
  left: 48%;
  transform: rotate(18deg);
}

.map-road-alder {
  top: 49%;
  right: 13%;
  transform: rotate(53deg);
}

.map-address-card {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 17px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 23px;
  color: var(--ink);
  background: rgba(255, 253, 246, 0.92);
  box-shadow: 0 20px 45px rgba(5, 39, 84, 0.2);
  backdrop-filter: blur(18px) saturate(125%);
}

.map-pin-icon {
  display: grid;
  width: 57px;
  height: 57px;
  place-items: center;
  border-radius: 18px;
  color: white;
  background: linear-gradient(145deg, #ff9560, #df4e38);
  box-shadow: inset 0 -4px 0 rgba(134, 35, 25, 0.16), 0 12px 25px rgba(201, 68, 45, 0.24);
}

.map-pin-icon svg {
  width: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.map-address-card > div:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.map-address-card small {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.map-address-card strong {
  font-family: "Fredoka", "Nunito", sans-serif;
  font-size: 1.38rem;
  line-height: 1.25;
}

.map-address-card > div:nth-child(2) > span {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.map-address-card a {
  display: inline-flex;
  min-height: 50px;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 15px;
  color: white;
  background: var(--blue);
  box-shadow: inset 0 -4px 0 rgba(4, 40, 98, 0.2), 0 10px 22px rgba(20, 89, 199, 0.22);
  font-size: 0.92rem;
  font-weight: 900;
  text-decoration: none;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.map-address-card a:hover {
  box-shadow: inset 0 -4px 0 rgba(4, 40, 98, 0.2), 0 14px 28px rgba(20, 89, 199, 0.3);
  transform: translateY(-2px);
}

.map-address-card a svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.boarding-section {
  overflow: hidden;
  padding-top: 150px;
  color: white;
  background:
    radial-gradient(circle at 78% 18%, rgba(87, 216, 247, 0.21), transparent 25%),
    radial-gradient(circle at 9% 84%, rgba(199, 185, 255, 0.18), transparent 27%),
    linear-gradient(145deg, #0d57c2, #06337e 70%);
}

.boarding-section::before {
  position: absolute;
  top: -48px;
  right: -5%;
  left: -5%;
  height: 95px;
  border-radius: 0 0 50% 50%;
  background: var(--paper);
  content: "";
}

.boarding-layout {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 0.83fr 1.17fr;
  gap: clamp(42px, 7vw, 92px);
  align-items: start;
}

.boarding-copy {
  position: sticky;
  top: 130px;
  padding-top: 28px;
}

.boarding-copy .eyebrow {
  color: #99eaff;
}

.boarding-copy h2 {
  color: white;
}

.boarding-copy h2 span {
  color: #ffd197;
}

.boarding-copy > p:not(.eyebrow) {
  max-width: 510px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.77);
  font-size: 1.16rem;
}

.mini-itinerary {
  position: relative;
  margin-top: 50px;
}

.mini-itinerary::before {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 8px;
  width: 1px;
  background: repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.36) 0 5px, transparent 5px 10px);
  content: "";
}

.mini-itinerary > div {
  position: relative;
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
}

.timeline-dot {
  z-index: 2;
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 3px;
  border: 4px solid #8be9ff;
  border-radius: 50%;
  background: #0d51b4;
  box-shadow: 0 0 0 5px rgba(139, 233, 255, 0.12);
}

.mini-itinerary p,
.mini-itinerary span {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.mini-itinerary small {
  color: #8be9ff;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.mini-itinerary strong {
  margin-top: 2px;
  font-size: 1.13rem;
  letter-spacing: 0.05em;
}

.mini-itinerary p > span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.98rem;
}

.rsvp-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 34px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.97);
  box-shadow: 0 36px 90px rgba(1, 23, 63, 0.35), inset 0 1px 0 white;
}

.ticket-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 34px;
  border-bottom: 2px dashed #ccd9ea;
  background: linear-gradient(90deg, #eaf5ff, #fff4e4);
}

.ticket-top::before,
.ticket-top::after {
  position: absolute;
  bottom: -13px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #084492;
  content: "";
}

.ticket-top::before {
  left: -12px;
}

.ticket-top::after {
  right: -12px;
}

.ticket-top > div:first-child {
  display: flex;
  flex-direction: column;
}

.ticket-top small {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.ticket-top strong {
  font-family: "Fredoka", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}

.ticket-code {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 2px solid rgba(20, 89, 199, 0.12);
  border-radius: 18px;
  color: var(--blue-deep);
  background: white;
  box-shadow: inset 0 -4px 0 rgba(23, 86, 177, 0.06);
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
}

#rsvp-form {
  padding: 34px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 19px 16px;
}

.field {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field > span {
  color: #254061;
  font-size: 0.92rem;
  font-weight: 900;
}

.field.required > span::after {
  margin-left: 4px;
  color: #bc263c;
  content: "*";
}

.field em {
  margin-left: 5px;
  color: #7a8ba2;
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 2px solid #dbe5f1;
  border-radius: 14px;
  outline: none;
  color: var(--ink);
  background: #f8fbff;
  box-shadow: inset 0 2px 4px rgba(34, 66, 112, 0.025);
  font-size: 1rem;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.field textarea {
  min-height: 78px;
  resize: vertical;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: #b7cce4;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  background: white;
  box-shadow: 0 0 0 4px rgba(20, 89, 199, 0.11);
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: #d83b51;
  box-shadow: 0 0 0 4px rgba(216, 59, 81, 0.09);
}

.field-error {
  min-height: 0;
  color: #bc263c;
  font-size: 0.82rem;
  font-weight: 800;
}

.submit-button {
  display: flex;
  width: 100%;
  min-height: 58px;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-top: 26px;
  border: 0;
  border-radius: 17px;
  color: white;
  background: linear-gradient(135deg, #1762d3, #0a3e98);
  box-shadow: inset 0 -5px 0 rgba(3, 27, 76, 0.22), 0 15px 32px rgba(10, 62, 152, 0.24);
  font-weight: 900;
  transition: transform 200ms ease, box-shadow 200ms ease, opacity 200ms ease;
}

.submit-button:hover:not(:disabled) {
  box-shadow: inset 0 -5px 0 rgba(3, 27, 76, 0.22), 0 20px 38px rgba(10, 62, 152, 0.32);
  transform: translateY(-2px);
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.75;
}

.submit-button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.submit-loading {
  display: none;
}

#rsvp-form.is-sending .submit-label,
#rsvp-form.is-sending .submit-button svg {
  display: none;
}

#rsvp-form.is-sending .submit-loading {
  display: inline;
}

.privacy-note {
  margin: 13px 0 0;
  color: #708199;
  font-size: 0.82rem;
  text-align: center;
}

.form-status {
  margin-top: 11px;
  color: #a52c3e;
  font-size: 0.88rem;
  font-weight: 800;
  text-align: center;
}

.success-panel {
  padding: 70px 42px 76px;
  text-align: center;
}

.success-panel[hidden],
.closed-panel[hidden] {
  display: none;
}

.success-icon {
  display: grid;
  width: 88px;
  height: 88px;
  margin: 0 auto 25px;
  place-items: center;
  border: 2px solid #b9dcce;
  border-radius: 30px;
  color: #177b57;
  background: linear-gradient(145deg, #ecfff7, #c8f0dd);
  box-shadow: inset 0 -5px 0 rgba(23, 123, 87, 0.1), 0 19px 40px rgba(23, 123, 87, 0.14);
}

.success-icon svg {
  width: 49px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.success-panel .eyebrow {
  margin-bottom: 9px;
  color: #187858;
}

.success-panel h3 {
  margin: 0;
  font-family: "Fredoka", sans-serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.05;
}

.success-panel > p:not(.eyebrow) {
  max-width: 440px;
  margin: 18px auto 26px;
  color: var(--ink-soft);
}

.closed-panel {
  padding: 76px 42px 84px;
  text-align: center;
}

.closed-icon {
  display: grid;
  width: 92px;
  height: 92px;
  margin: 0 auto 26px;
  place-items: center;
  border: 2px solid #f1c4a7;
  border-radius: 30px;
  color: #ad4f28;
  background: linear-gradient(145deg, #fff7ec, #ffddbd);
  box-shadow: inset 0 -5px 0 rgba(173, 79, 40, 0.09), 0 19px 40px rgba(173, 79, 40, 0.14);
}

.closed-icon svg {
  width: 51px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.8;
}

.closed-panel .eyebrow {
  margin-bottom: 9px;
  color: #ad4f28;
}

.closed-panel h3 {
  margin: 0;
  font-family: "Fredoka", "Nunito", sans-serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
}

.closed-panel > p:not(.eyebrow) {
  max-width: 440px;
  margin: 18px auto 0;
  color: var(--ink-soft);
}

.registration-cta.is-disabled {
  cursor: not-allowed;
  filter: grayscale(0.25);
  opacity: 0.62;
  pointer-events: none;
}

.registration-closed .countdown-card {
  border-color: rgba(255, 208, 168, 0.75);
  background: rgba(255, 244, 231, 0.94);
}

.registration-closed .original-form-link {
  display: none;
}

.registration-closed .field.required > span::after {
  content: none;
}

.button-secondary {
  border: 2px solid #c7d8eb;
  color: var(--blue-deep);
  background: #f3f8ff;
}

.button-secondary:hover {
  background: #e5f0ff;
  transform: translateY(-2px);
}

.flight-path {
  position: absolute;
  z-index: 1;
  top: 35px;
  right: -10%;
  left: -10%;
  height: 300px;
  opacity: 0.22;
}

.flight-path > svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: white;
  stroke-dasharray: 8 13;
  stroke-width: 2;
}

.path-plane {
  position: absolute;
  top: 52%;
  right: 13%;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 16px;
  color: #0e4ca6;
  background: #fff2d5;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.16);
  transform: rotate(-23deg);
  animation: plane-hover 3.5s ease-in-out infinite;
}

.path-plane svg {
  width: 28px;
  fill: currentColor;
}

footer {
  position: relative;
  overflow: hidden;
  padding: 75px 24px 55px;
  color: #dceafe;
  background: #052456;
  text-align: center;
}

footer::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.25) 1px, transparent 1.5px);
  background-position: 0 0;
  background-size: 46px 46px;
  content: "";
  opacity: 0.2;
}

.footer-plane,
footer p,
footer a {
  position: relative;
}

.footer-plane {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 0 auto 19px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  color: #ffd196;
  background: rgba(255, 255, 255, 0.06);
}

.footer-plane svg {
  width: 34px;
  fill: currentColor;
  transform: rotate(-12deg);
}

footer p {
  margin: 0;
  font-family: "Fredoka", sans-serif;
  font-size: 1.15rem;
}

.footer-small {
  margin-top: 8px;
  color: #8faed7;
  font-family: "Nunito", sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

footer a {
  display: inline-block;
  margin-top: 24px;
  color: #a9caf6;
  font-size: 0.88rem;
  font-weight: 800;
  text-underline-offset: 4px;
  transition: color 180ms ease;
}

footer a:hover {
  color: white;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero .reveal:nth-child(2) { transition-delay: 90ms; }
.hero .reveal:nth-child(3) { transition-delay: 160ms; }
.hero .reveal:nth-child(4) { transition-delay: 230ms; }
.hero .reveal:nth-child(5) { transition-delay: 300ms; }

@keyframes radar-sweep {
  to { transform: rotate(360deg); }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

@keyframes sparkle {
  0%, 100% { opacity: 0.15; transform: scale(0.7); }
  50% { opacity: 0.9; transform: scale(1.4); }
}

@keyframes scroll-cue {
  0% { opacity: 0; transform: translateY(0); }
  40% { opacity: 1; }
  100% { opacity: 0; transform: translateY(16px); }
}

@keyframes cloud-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-13px); }
}

@keyframes plane-hover {
  0%, 100% { transform: rotate(-23deg) translateY(0); }
  50% { transform: rotate(-20deg) translateY(-10px); }
}

@media (max-width: 1020px) {
  .hero {
    min-height: 940px;
  }

  .hero-image {
    background-position: 61% center;
  }

  .hero-content {
    padding-right: 39%;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(3, 34, 87, 0.92) 0%, rgba(3, 42, 102, 0.63) 48%, rgba(4, 48, 108, 0.18) 82%);
  }

  .countdown-card {
    right: 28px;
    width: 350px;
  }

  .section {
    padding-right: 36px;
    padding-left: 36px;
  }

  .adventure-card {
    padding: 28px;
  }

  .boarding-layout {
    grid-template-columns: 0.75fr 1.25fr;
    gap: 42px;
  }
}

@media (max-width: 820px) {
  .hero {
    display: block;
    min-height: 0;
    padding-bottom: 76px;
  }

  .hero-content {
    width: calc(100% - 40px);
    margin: 0 auto;
    padding-top: 145px;
    padding-right: 0;
  }

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

  .countdown-card {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    width: min(430px, calc(100% - 40px));
    margin: 42px auto 32px;
    transform: none;
  }

  .hero-image {
    background-image: url("assets/hero-flight-960.jpg");
    background-position: 66% center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(3, 34, 87, 0.72), rgba(3, 42, 102, 0.25) 57%, rgba(3, 34, 87, 0.55)),
      linear-gradient(90deg, rgba(3, 34, 87, 0.88), transparent 85%);
  }

  .scroll-cue {
    display: none;
  }

  .adventure-grid {
    grid-template-columns: 1fr;
    width: min(570px, 100%);
    margin: 0 auto;
  }

  .adventure-card {
    min-height: 300px;
  }

  .adventure-card.featured,
  .adventure-card.featured:hover {
    transform: none;
  }

  .location-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .location-heading > p {
    max-width: 620px;
  }

  .playful-map {
    min-height: 560px;
  }

  .boarding-layout {
    grid-template-columns: 1fr;
  }

  .boarding-copy {
    position: relative;
    top: auto;
    padding-top: 0;
  }

  .mini-itinerary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .mini-itinerary::before {
    display: none;
  }
}

@media (max-width: 600px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 58px;
    padding: 7px 8px 7px 12px;
    border-radius: 18px;
  }

  .brand {
    font-size: 0;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .language-switcher button {
    min-width: 38px;
    min-height: 40px;
    padding: 0 8px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    display: block;
    min-height: 0;
    padding-bottom: 72px;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 auto;
    padding-top: 120px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 9vw, 3.15rem);
    letter-spacing: -0.055em;
  }

  .hero h1 span {
    white-space: nowrap;
  }

  .hero-copy {
    font-size: 1.08rem;
  }

  .hero-details {
    flex-direction: column;
    gap: 17px;
    margin-top: 27px;
  }

  .hero-actions {
    gap: 10px;
  }

  .button {
    min-height: 52px;
    padding: 0 18px;
  }

  .countdown-card {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    width: calc(100% - 32px);
    margin: 38px auto 34px;
    transform: none;
  }

  .section {
    padding: 88px 20px;
  }

  .story-section {
    padding-top: 68px;
  }

  .location-section {
    padding-top: 72px;
    padding-bottom: 105px;
  }

  .location-heading {
    margin-bottom: 30px;
  }

  .location-heading h2 {
    font-size: clamp(2.65rem, 12vw, 3.75rem);
  }

  .playful-map {
    min-height: 610px;
    border-width: 5px;
    border-radius: 27px;
  }

  .playful-map img {
    object-position: 45% center;
  }

  .map-road-label {
    font-size: 0.72rem;
  }

  .map-road-nicolet {
    top: 13%;
    left: 41%;
  }

  .map-road-alder {
    top: 47%;
    right: 5%;
  }

  .map-address-card {
    right: 12px;
    bottom: 12px;
    left: 12px;
    grid-template-columns: auto 1fr;
    gap: 13px;
    padding: 14px;
    border-radius: 20px;
  }

  .map-address-card a {
    grid-column: 1 / -1;
    width: 100%;
  }

  .map-address-card strong {
    font-size: 1.2rem;
  }

  .section-heading {
    margin-bottom: 44px;
    text-align: left;
  }

  .section-heading h2,
  .boarding-copy h2 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .adventure-card {
    min-height: 0;
    padding: 27px;
    border-radius: 25px;
  }

  .card-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 30px;
    border-radius: 22px;
  }

  .boarding-section {
    padding-top: 112px;
  }

  .mini-itinerary {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .rsvp-card {
    margin: 0 -6px;
    border-radius: 27px;
  }

  .ticket-top {
    padding: 23px 24px;
  }

  #rsvp-form {
    padding: 26px 22px 30px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .field.full {
    grid-column: auto;
  }

  .success-panel,
  .closed-panel {
    padding: 58px 25px 64px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-image,
  .countdown-card,
  .reveal,
  .reveal.is-visible {
    transform: none !important;
  }
}
