:root {
  --ink: #143d35;
  --ink-soft: #365b53;
  --cream: #fffaf0;
  --sand: #f2dfbd;
  --sun: #ffbd3c;
  --coral: #ef6b59;
  --aqua: #89cfc7;
  --sea: #2e8c80;
  --leaf: #1f6658;
  --white: #fffef9;
  --serif: "DM Serif Display", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.section-dot {
  position: fixed;
  right: clamp(14px, 2.5vw, 34px);
  z-index: 20;
  width: 9px;
  height: 9px;
  border: 1px solid color-mix(in srgb, var(--ink) 55%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--cream) 80%, transparent);
  transition: transform 180ms ease, background 180ms ease;
}

.section-dot:hover,
.section-dot.is-active {
  transform: scale(1.75);
  background: var(--coral);
  border-color: var(--coral);
}

.dot-welcome { top: calc(50% - 32px); }
.dot-travel { top: calc(50% - 10px); }
.dot-details { top: calc(50% + 12px); }
.dot-rules { top: calc(50% + 34px); }

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: clamp(54px, 8vw, 110px) 24px clamp(130px, 16vw, 220px);
  background:
    radial-gradient(circle at 77% 20%, rgba(255, 255, 255, 0.58) 0 2px, transparent 3px),
    radial-gradient(circle at 84% 12%, rgba(255, 255, 255, 0.48) 0 3px, transparent 4px),
    linear-gradient(145deg, #fff6da 0%, #ffe5a7 49%, #f8be68 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
}

.hero-inner,
.section-shell {
  position: relative;
  z-index: 2;
  width: min(1100px, 100%);
  margin: 0 auto;
}

.hero-heading {
  max-width: 910px;
  margin: 0 auto clamp(44px, 7vw, 88px);
  text-align: center;
}

.section-label,
.section-kicker {
  margin: 0 0 1rem;
  color: var(--coral);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.field-label {
  margin: 0 0 0.65rem;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.hero h1 {
  max-width: 850px;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 9vw, 8.2rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.91;
  text-wrap: balance;
}

.welcome-card {
  display: grid;
  grid-template-columns: minmax(125px, 0.28fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
  padding: clamp(30px, 5.5vw, 72px);
  border: 1px solid rgba(20, 61, 53, 0.12);
  border-radius: 38px 38px 38px 8px;
  background: rgba(255, 254, 249, 0.8);
  box-shadow: 0 28px 90px rgba(83, 58, 15, 0.13);
  backdrop-filter: blur(14px);
}

.welcome-copy {
  columns: 2 280px;
  column-gap: clamp(28px, 4vw, 58px);
}

.welcome-copy p {
  break-inside: avoid;
  margin: 0 0 1.25rem;
  color: #284b44;
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
}

.welcome-copy p:first-child::first-letter {
  float: left;
  margin: 0.08em 0.09em 0 0;
  color: var(--coral);
  font-family: var(--serif);
  font-size: 4.6em;
  line-height: 0.72;
}

.sun {
  position: absolute;
  top: clamp(85px, 10vw, 140px);
  left: calc(50% + min(39vw, 550px));
  z-index: 1;
  width: clamp(80px, 10vw, 138px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--sun);
  box-shadow: 0 0 80px rgba(255, 172, 37, 0.48);
  animation: float 7s ease-in-out infinite;
}

.sun span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 2px;
  border-radius: 2px;
  background: rgba(239, 107, 89, 0.6);
  transform: translate(-50%, -50%);
}

.sun span:nth-child(2) { transform: translate(-50%, -50%) rotate(45deg); }
.sun span:nth-child(3) { transform: translate(-50%, -50%) rotate(90deg); }
.sun span:nth-child(4) { transform: translate(-50%, -50%) rotate(135deg); }
.sun span:nth-child(n+5) { display: none; }

.palm {
  position: absolute;
  bottom: 20px;
  left: -20px;
  z-index: 1;
  width: min(22vw, 280px);
  opacity: 0.5;
  transform: rotate(-7deg);
}

.palm svg {
  width: 100%;
  overflow: visible;
  fill: none;
  stroke: var(--leaf);
  stroke-linecap: round;
}

.palm-trunk { stroke-width: 13; }
.palm-leaf { stroke-width: 10; }

.hero-wave {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: clamp(90px, 12vw, 180px);
  fill: var(--cream);
}

.travel-section,
.rules-section {
  position: relative;
  padding: clamp(72px, 10vw, 140px) 24px;
}

.section-heading {
  margin-bottom: clamp(36px, 6vw, 70px);
}

.section-heading h2,
.travel-notes h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 5.2rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.airport-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-bottom: clamp(70px, 10vw, 120px);
}

.airport-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  min-height: 250px;
  padding: clamp(28px, 4vw, 48px);
  border-radius: 8px 34px 34px 34px;
  background: var(--white);
  box-shadow: 0 14px 55px rgba(39, 71, 63, 0.08);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.airport-card:nth-child(2) {
  border-radius: 34px 8px 34px 34px;
  background: #dceee8;
}

.airport-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 65px rgba(39, 71, 63, 0.14);
}

.airport-icon,
.detail-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--sun);
}

.airport-icon svg {
  width: 25px;
  fill: var(--ink);
}

.airport-code {
  margin: 8px 0 0;
  color: var(--coral);
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.9;
}

.airport-name {
  margin: 16px 0 12px;
  font-size: 1rem;
  font-weight: 600;
}

.text-link {
  text-decoration-color: var(--coral);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.travel-notes {
  display: grid;
  grid-template-columns: 0.52fr 1fr;
  gap: clamp(32px, 8vw, 110px);
}

.travel-notes ul,
.rules-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.travel-notes li {
  position: relative;
  padding: 20px 0 20px 34px;
  border-top: 1px solid rgba(20, 61, 53, 0.18);
}

.travel-notes li::before {
  content: "";
  position: absolute;
  top: 31px;
  left: 4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
}

.details-section {
  position: relative;
  overflow: hidden;
  padding: clamp(85px, 11vw, 150px) 24px;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 8%, rgba(137, 207, 199, 0.22), transparent 30%),
    radial-gradient(circle at 0% 100%, rgba(255, 189, 60, 0.14), transparent 32%),
    var(--ink);
}

.details-section::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(137, 207, 199, 0.24);
  border-radius: 50%;
  box-shadow: 0 0 0 50px rgba(137, 207, 199, 0.05), 0 0 0 100px rgba(137, 207, 199, 0.035);
}

.section-heading.light .section-kicker { color: var(--sun); }

.details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.detail-card {
  display: flex;
  min-height: 130px;
  align-items: center;
  gap: 21px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  text-decoration: none;
  transition: background 200ms ease, border-color 200ms ease;
}

.detail-card:hover {
  border-color: rgba(255, 189, 60, 0.5);
  background: rgba(255, 255, 255, 0.1);
}

.detail-address,
.detail-entry {
  grid-column: span 2;
}

.detail-icon {
  flex: 0 0 auto;
  background: rgba(137, 207, 199, 0.12);
}

.detail-icon svg {
  width: 26px;
  fill: none;
  stroke: var(--aqua);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.rules-section {
  overflow: hidden;
  background: #f7ead2;
}

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

.rule-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  padding: clamp(28px, 4vw, 46px);
  border-radius: 30px 30px 8px 30px;
  background: rgba(255, 254, 249, 0.9);
  box-shadow: 0 20px 55px rgba(95, 63, 25, 0.08);
}

.rule-card::before {
  content: "";
  display: block;
  width: 46px;
  height: 46px;
  margin-bottom: clamp(70px, 9vw, 110px);
  border: 2px solid var(--coral);
  border-radius: 50% 50% 8% 50%;
  transform: rotate(18deg);
}

.rule-card:nth-child(2) {
  border-radius: 30px 8px 30px 30px;
  background: var(--coral);
  color: #fff;
}

.rule-card:nth-child(3) {
  border-radius: 8px 30px 30px 30px;
  background: var(--aqua);
}

.rule-card:nth-child(2)::before { border-color: #ffd997; }
.rule-card:nth-child(3)::before { border-color: var(--ink); }

.rule-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 1rem;
}

.rules-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}

.orb-one {
  top: 4%;
  right: 8%;
  width: 90px;
  height: 90px;
  border: 18px solid rgba(239, 107, 89, 0.13);
}

.orb-two {
  bottom: -70px;
  left: 5%;
  width: 210px;
  height: 210px;
  border: 35px solid rgba(46, 140, 128, 0.1);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 750ms ease, transform 750ms cubic-bezier(.2,.8,.2,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-10px) rotate(4deg); }
}

@media (max-width: 820px) {
  .welcome-card,
  .travel-notes {
    grid-template-columns: 1fr;
  }

  .welcome-card > .field-label {
    margin-bottom: -8px;
  }

  .airport-grid,
  .rules-list {
    grid-template-columns: 1fr;
  }

  .rule-card {
    min-height: auto;
  }

  .rule-card::before {
    margin-bottom: 42px;
  }

  .palm {
    width: 170px;
    opacity: 0.22;
  }
}

@media (max-width: 620px) {
  .section-dot { display: none; }

  .hero {
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 17vw, 5rem);
  }

  .welcome-card {
    padding: 28px 23px;
    border-radius: 26px 26px 26px 6px;
  }

  .welcome-copy { columns: 1; }

  .travel-section,
  .details-section,
  .rules-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .airport-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .details-grid { grid-template-columns: 1fr; }
  .detail-address,
  .detail-entry { grid-column: auto; }
  .detail-card { align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
