:root {
  --navy-950: #031324;
  --navy-900: #061a2f;
  --navy-800: #0a2944;
  --navy-700: #123f61;
  --cyan: #08c9f4;
  --gold: #efbd54;
  --gold-bright: #ffc84b;
  --ivory: #f5f0e4;
  --white: #ffffff;
  --muted: #a7b8c6;
  --line: rgba(255, 255, 255, .17);
  --pad: clamp(28px, 5.4vw, 86px);
  --display: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { min-width: 320px; scroll-behavior: smooth; scroll-padding-top: 24px; background: var(--navy-950); }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--navy-950);
  color: var(--white);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { color: inherit; font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 5px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: var(--navy-950);
  background: var(--gold-bright);
  font-size: 14px;
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: absolute;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  height: 146px;
  padding: 8px var(--pad);
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  border-bottom: 1px solid rgba(255,255,255,.2);
}

.brand {
  width: 195px;
  height: 130px;
  display: block;
}
.brand picture, .brand img { width: 100%; height: 100%; }
.brand img {
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.28));
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(22px, 3vw, 48px);
}
.main-nav a {
  position: relative;
  padding: 10px 0;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  opacity: .82;
  transition: opacity .2s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: .16em;
  bottom: 2px;
  height: 1px;
  background: var(--gold-bright);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { opacity: 1; }
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { transform: scaleX(1); }

.header-cta, .button {
  min-height: 52px;
  padding: 0 23px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .11em;
  transition: transform .2s ease, background-color .2s ease, color .2s ease;
}
.header-cta, .button.primary { color: var(--navy-950); background: var(--gold-bright); }
.button.secondary { color: var(--white); border: 1px solid rgba(255,255,255,.45); background: rgba(3,19,36,.18); backdrop-filter: blur(10px); }
.header-cta span, .button span { font-size: 17px; line-height: 1; }

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-button span {
  width: 27px;
  height: 2px;
  display: block;
  margin: 6px auto;
  background: currentColor;
  transition: transform .2s ease;
}
.menu-button[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  z-index: 25;
  inset: 0;
  padding: 132px 20px 32px;
  overflow-y: auto;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 15%, rgba(239,189,84,.18), transparent 32%),
    var(--navy-950);
}
.mobile-nav nav { display: grid; border-top: 1px solid var(--line); }
.mobile-nav nav a {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: clamp(34px, 11vw, 48px);
  line-height: 1;
}
.mobile-nav nav a[aria-current="page"] { color: var(--gold-bright); }
.mobile-nav .mobile-booking { width: 100%; margin-top: 28px; }
.mobile-nav > p { margin: 28px 0 0; color: var(--muted); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; }

.hero {
  position: relative;
  min-height: 960px;
  padding: 185px var(--pad) 150px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 52% 42%, rgba(8,201,244,.1), transparent 34%),
    var(--navy-950);
  isolation: isolate;
}
.hero-media, .rates-hero-media { position: absolute; z-index: -2; inset: 0; overflow: hidden; }
.hero-media { left: 38%; border-left: 1px solid rgba(255,255,255,.12); }
.hero-media picture, .rates-hero-media picture,
.hero-media img, .rates-hero-media img { width: 100%; height: 100%; }
.hero-media img, .rates-hero-media img { object-fit: cover; }
.hero-scrim, .rates-hero-media > div { position: absolute; inset: 0; }
.hero-scrim {
  background:
    linear-gradient(90deg, rgba(2,12,22,.98) 0%, rgba(2,12,22,.79) 23%, rgba(2,12,22,.12) 62%, rgba(2,12,22,.18) 100%),
    linear-gradient(0deg, rgba(2,12,22,.72), transparent 48%);
}
.hero-copy { position: relative; z-index: 2; width: min(740px, 62vw); margin-top: 15px; }
.eyebrow, .section-kicker {
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: 11px;
  line-height: 1.4;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .22em;
}
.eyebrow i { width: 4px; height: 4px; display: inline-block; flex: 0 0 auto; border-radius: 50%; background: currentColor; }
.hero h1, .rates-hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(74px, 8.8vw, 142px);
  font-weight: 500;
  line-height: .82;
  letter-spacing: -.065em;
  text-wrap: balance;
}
.hero h1 { text-shadow: 0 8px 35px rgba(0,0,0,.28); }
.hero-lede, .rates-hero-copy > p:last-child {
  width: min(610px, 90%);
  margin: 34px 0 0;
  color: rgba(255,255,255,.84);
  font-size: clamp(16px, 1.35vw, 21px);
  line-height: 1.62;
}
.hero-actions { margin-top: 38px; display: flex; gap: 14px; }

.hero-meta {
  position: absolute;
  z-index: 2;
  right: var(--pad);
  bottom: 62px;
  margin: 0;
  display: flex;
  border-top: 1px solid rgba(255,255,255,.34);
}
.hero-meta div { min-width: 180px; padding: 17px 0 0 42px; }
.hero-meta div + div { margin-left: 30px; border-left: 1px solid rgba(255,255,255,.22); }
.hero-meta dt, .hero-meta dd { display: block; margin: 0; }
.hero-meta dt {
  margin-bottom: 7px;
  color: rgba(255,255,255,.74);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .16em;
}
.hero-meta dd { font-size: 15px; font-weight: 700; letter-spacing: .02em; }

.scroll-cue {
  position: absolute;
  left: var(--pad);
  bottom: 62px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255,255,255,.74);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
}
.scroll-cue > span { width: 42px; height: 1px; background: currentColor; }

.section-pad { padding: 110px var(--pad); }
.section-kicker { margin-bottom: 44px; color: var(--cyan); }
.section-kicker span { padding-right: 15px; color: var(--gold); border-right: 1px solid currentColor; }
.intro { background: var(--navy-950); }
.intro-heading { margin-bottom: 70px; display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 80px; }
.intro-heading h2, .rate-copy h2, .included-copy h2, .final-cta h2,
.rates-heading h2, .rate-includes-title h2, .booking-note h2, .error-page h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(54px, 6.2vw, 96px);
  font-weight: 500;
  line-height: .94;
  letter-spacing: -.055em;
}
.intro-heading h2 em, .rates-hero h1 em { color: var(--gold); font-weight: 400; }
.intro-heading p { max-width: 570px; margin: 0; color: var(--muted); font-size: 18px; line-height: 1.7; }

.experience-grid { min-height: 600px; display: grid; grid-template-columns: 1.32fr 1fr .7fr; gap: 18px; }
.experience-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--navy-900);
}
.card-photo, .card-photo img, .card-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.card-photo img { object-fit: cover; transition: transform .4s ease; }
.card-primary .card-photo img { object-position: 52% 52%; }
.card-night .card-photo img { object-position: 50% 45%; }
.card-shade { background: linear-gradient(to top, rgba(2,14,26,.96), rgba(2,14,26,.03) 72%); }
.card-copy { position: relative; z-index: 1; padding: 31px; }
.card-copy > span, .include-blocks article > span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
}
.card-copy h3 { max-width: 430px; margin: 12px 0 10px; font-family: var(--display); font-size: 35px; line-height: 1.03; font-weight: 500; }
.card-copy p { max-width: 420px; margin: 0; color: rgba(255,255,255,.72); font-size: 14px; line-height: 1.55; }
.card-learn { justify-content: space-between; color: var(--navy-950); background: var(--gold-bright); }
.card-learn .card-icon { padding: 26px 30px 0; color: var(--navy-700); font-size: 88px; line-height: 1; }
.card-learn .card-copy > span, .card-learn .card-copy p { color: var(--navy-700); }

.rate-feature { display: grid; grid-template-columns: .72fr 1.28fr; gap: 9vw; color: var(--navy-950); background: var(--ivory); }
.rate-feature .section-kicker, .rates-table-wrap .section-kicker { color: #076982; }
.rate-feature .section-kicker span, .rates-table-wrap .section-kicker span { color: #795404; }
.rate-copy p { max-width: 490px; color: #466073; font-size: 16px; line-height: 1.65; }
.text-link { margin-top: 26px; padding-bottom: 9px; display: inline-flex; align-items: center; gap: 30px; border-bottom: 2px solid var(--navy-950); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; }
.text-link span { font-size: 17px; }
.rate-stack { border-top: 1px solid rgba(3,19,36,.24); }
.rate-row { min-height: 110px; display: grid; grid-template-columns: 1fr 150px 150px 36px; align-items: center; border-bottom: 1px solid rgba(3,19,36,.19); transition: padding .2s ease, background .2s ease; }
.rate-row > span { font-size: 20px; font-weight: 700; }
.rate-row strong { color: var(--navy-800); font-family: var(--display); font-size: 38px; font-weight: 500; }
.rate-row strong small { font-family: var(--sans); font-size: 12px; font-weight: 700; }
.rate-row b { color: #597084; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.rate-row i { font-size: 20px; font-style: normal; }

.included { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 8vw; background: var(--navy-900); }
.included-visual { position: relative; min-height: 720px; overflow: hidden; border-radius: 360px 360px 20px 20px; }
.included-visual picture, .included-visual picture img, .included-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.included-visual img { object-fit: cover; object-position: 50% 58%; }
.included-shade { background: linear-gradient(to top, rgba(3,19,36,.75), transparent 48%); }
.visual-label { position: absolute; z-index: 1; left: 30px; right: 30px; bottom: 28px; padding-top: 20px; display: flex; justify-content: space-between; align-items: end; border-top: 1px solid rgba(255,255,255,.45); }
.visual-label span { font-family: var(--display); font-size: 28px; }
.visual-label small { color: rgba(255,255,255,.78); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.included-copy h2 { margin-bottom: 45px; }
.included-copy ul { margin: 0; padding: 0; list-style: none; }
.included-copy li { min-height: 64px; display: flex; align-items: center; gap: 22px; border-top: 1px solid var(--line); font-size: 15px; }
.included-copy li:last-child { border-bottom: 1px solid var(--line); }
.included-copy li span { color: var(--gold); font-size: 10px; letter-spacing: .15em; }

.final-cta {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  align-items: center;
  gap: 7vw;
  background: var(--navy-950);
  isolation: isolate;
}
.final-cta-copy, .final-cta-visual { position: relative; z-index: 2; }
.final-cta h2 { margin: 0; font-size: clamp(78px, 8.2vw, 132px); line-height: .8; }
.final-cta-copy > p:not(.eyebrow) { margin: 34px 0; color: var(--muted); font-size: 18px; }
.final-cta-visual { min-height: 660px; overflow: hidden; border: 1px solid var(--line); border-radius: 360px 360px 24px 24px; }
.final-cta-visual picture, .final-cta-visual img, .final-cta-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.final-cta-visual img { object-fit: cover; object-position: 50% 56%; }
.final-cta-shade { background: linear-gradient(to top, rgba(2,14,26,.83), transparent 46%); }
.final-cta-label { position: absolute; z-index: 1; left: 30px; right: 30px; bottom: 28px; padding-top: 20px; display: flex; justify-content: space-between; align-items: end; border-top: 1px solid rgba(255,255,255,.45); }
.final-cta-label span { font-family: var(--display); font-size: 28px; }
.final-cta-label small { color: rgba(255,255,255,.78); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.cta-orbit { position: absolute; z-index: 1; border: 1px solid rgba(8,201,244,.18); border-radius: 50%; }
.orbit-one { width: 930px; height: 420px; transform: rotate(-9deg); }
.orbit-two { width: 650px; height: 650px; border-color: rgba(239,189,84,.16); }

.site-footer { min-height: 190px; padding: 48px var(--pad); display: grid; grid-template-columns: 1fr 1fr 1.2fr; align-items: center; gap: 40px; border-top: 1px solid var(--line); background: #020e1a; }
.footer-brand strong, .footer-brand span { display: block; }
.footer-brand strong { font-family: var(--display); font-size: 37px; line-height: 1; }
.footer-brand span { margin-top: 6px; color: var(--gold); font-size: 11px; text-transform: uppercase; letter-spacing: .2em; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; color: rgba(255,255,255,.74); font-size: 14px; line-height: 1.45; }
.footer-tag { justify-self: end; color: rgba(255,255,255,.7); font-size: 11px; line-height: 1.6; text-align: right; text-transform: uppercase; letter-spacing: .13em; }
.footer-tag span { padding: 0 8px; color: var(--gold); }

/* Rates page */
.rates-hero { position: relative; min-height: 770px; padding: 190px var(--pad) 90px; display: flex; align-items: flex-end; isolation: isolate; }
.rates-hero-media > div {
  background:
    linear-gradient(90deg, rgba(2,12,22,.93) 0%, rgba(2,12,22,.58) 52%, rgba(2,12,22,.1) 100%),
    linear-gradient(0deg, rgba(2,12,22,.58), transparent 45%);
}
.rates-hero-copy { position: relative; z-index: 2; width: min(900px, 70vw); }
.rates-hero h1 { font-size: clamp(76px, 8.5vw, 132px); }
.rates-hero-stamp { position: absolute; z-index: 2; right: var(--pad); bottom: 80px; width: 165px; height: 165px; display: flex; flex-direction: column; align-items: center; justify-content: center; border-radius: 50%; color: var(--navy-950); background: var(--gold-bright); transform: rotate(7deg); }
.rates-hero-stamp strong { font-family: var(--display); font-size: 38px; line-height: .82; text-align: center; font-weight: 500; }
.rates-hero-stamp span { margin-top: 9px; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .13em; }
.rates-table-wrap { color: var(--navy-950); background: var(--ivory); }
.rates-heading { margin-bottom: 65px; display: grid; grid-template-columns: 1fr .7fr; align-items: end; gap: 80px; }
.rates-heading p { max-width: 440px; margin: 0; color: #587083; font-size: 17px; line-height: 1.6; }
.rates-table { width: 100%; display: block; border-collapse: collapse; border-top: 2px solid var(--navy-950); }
.rates-table thead, .rates-table tbody { display: block; }
.rates-table tr { display: grid; grid-template-columns: 1.4fr .7fr .7fr .34fr; align-items: center; column-gap: 28px; }
.rates-table th, .rates-table td { padding: 0; text-align: left; }
.rates-table thead tr { min-height: 62px; color: #4c6376; font-size: 10px; text-transform: uppercase; letter-spacing: .15em; }
.rates-table thead th { align-self: center; }
.rates-table tbody tr { min-height: 124px; border-top: 1px solid rgba(3,19,36,.18); }
.rates-table tbody th { font-size: 22px; }
.rates-table tbody td { color: #5f7485; font-size: 13px; font-weight: 700; }
.rates-table .price { color: var(--navy-800); font-family: var(--display); font-size: 48px; font-weight: 500; }
.rates-table .price small { font-family: var(--sans); font-size: 13px; }
.rates-table td:last-child { justify-self: end; }
.rates-table td > a { display: flex; align-items: center; gap: 14px; color: var(--navy-950); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.rates-table td > a i { width: 37px; height: 37px; display: grid; place-items: center; border: 1px solid rgba(3,19,36,.3); border-radius: 50%; font-style: normal; }
.rates-table tr.holiday { margin: 0 -22px; padding: 0 22px; color: var(--ivory); border: 0; background: var(--navy-800); }
.rates-table tr.holiday th, .rates-table tr.holiday td, .rates-table tr.holiday td > a { color: inherit; }
.rates-table tr.holiday td > a i { border-color: rgba(255,255,255,.4); }

.rate-includes { display: grid; grid-template-columns: .68fr 1.32fr; gap: 8vw; background: var(--navy-900); }
.include-blocks { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.include-blocks article { min-height: 250px; padding: 28px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.025); }
.include-blocks h3 { margin: 52px 0 13px; font-family: var(--display); font-size: 40px; font-weight: 500; }
.include-blocks p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.booking-note { min-height: 560px; display: grid; grid-template-columns: 1.1fr .7fr auto; align-items: end; gap: 55px; color: var(--navy-950); background: var(--gold-bright); }
.booking-note > div > span { display: block; margin-bottom: 22px; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .18em; }
.booking-note h2 { max-width: 770px; font-size: clamp(54px, 5vw, 82px); }
.booking-note > p { margin: 0; color: #3f4f57; font-size: 16px; line-height: 1.6; }
.booking-note > p a { color: var(--navy-950); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.booking-note .button.primary { white-space: nowrap; color: var(--white); background: var(--navy-950); }

/* 404 */
.error-page { min-height: calc(100svh - 190px); padding: 220px var(--pad) 100px; display: grid; place-items: center; text-align: center; background: radial-gradient(circle at 50% 30%, rgba(239,189,84,.15), transparent 34%), var(--navy-950); }
.error-page > div { max-width: 760px; }
.error-page .eyebrow { justify-content: center; }
.error-page p:not(.eyebrow) { margin: 28px auto; color: var(--muted); font-size: 18px; line-height: 1.6; }

@media (hover: hover) {
  .header-cta:hover, .button.primary:hover { transform: translateY(-2px); background: #ffd264; }
  .button.secondary:hover { color: var(--navy-950); background: var(--white); }
  .experience-card:hover .card-photo img { transform: scale(1.025); }
  .rate-row:hover { padding: 0 18px; background: rgba(255,255,255,.44); }
  .footer-contact a:hover, .booking-note p a:hover { text-decoration: underline; text-underline-offset: 4px; }
}

@media (max-width: 1100px) {
  .site-header { height: 132px; grid-template-columns: 190px minmax(0, 1fr) auto; gap: 22px; }
  .brand { width: 171px; height: 114px; }
  .main-nav { gap: 20px; }
  .main-nav a { font-size: 11px; letter-spacing: .12em; }
  .header-cta { padding: 0 18px; gap: 14px; }
  .hero { padding-top: 170px; }
  .hero-meta div { min-width: 150px; padding-left: 28px; }
  .hero-meta div + div { margin-left: 22px; }
  .experience-grid { grid-template-columns: 1.2fr 1fr; }
  .card-learn { grid-column: 1 / -1; min-height: 340px; }
  .rate-feature { gap: 6vw; }
  .rate-row { grid-template-columns: 1fr 120px 130px 30px; }
  .included { gap: 6vw; }
  .final-cta { grid-template-columns: .95fr 1.05fr; gap: 5vw; }
  .final-cta-visual { min-height: 600px; }
  .booking-note { grid-template-columns: 1fr .7fr; }
  .booking-note .button { grid-column: 2; justify-self: start; }
}

@media (max-width: 900px) {
  .site-header {
    height: 120px;
    padding: 9px var(--pad);
    grid-template-columns: 1fr auto;
    gap: 12px;
    background: linear-gradient(to bottom, rgba(3,19,36,.58), transparent);
  }
  .menu-open .site-header { position: fixed; background: var(--navy-950); }
  .brand { width: 153px; height: 102px; }
  .main-nav, .header-cta { display: none; }
  .js .menu-button { display: block; }

  .no-js .site-header { height: 170px; align-items: start; }
  .no-js .main-nav { position: absolute; left: var(--pad); right: var(--pad); bottom: 10px; display: flex; justify-content: flex-start; gap: 22px; overflow-x: auto; }
  .no-js .main-nav a { white-space: nowrap; }

  .hero-media { left: 0; border-left: 0; }
  .hero-media img { object-position: 48% center; }
  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(2,12,22,.88), rgba(2,12,22,.18) 80%),
      linear-gradient(0deg, rgba(2,12,22,.92), rgba(2,12,22,.08) 68%);
  }
  .hero-copy { width: min(680px, 82vw); }

  .site-footer { grid-template-columns: 1fr 1fr; }
  .footer-tag { grid-column: 1 / -1; justify-self: start; text-align: left; }
}

@media (max-width: 760px) {
  :root { --pad: 20px; }
  html { scroll-padding-top: 18px; }

  .site-header {
    height: 104px;
    padding: 8px var(--pad);
    grid-template-columns: 1fr auto;
    gap: 10px;
    background: linear-gradient(to bottom, rgba(3,19,36,.58), transparent);
  }
  .menu-open .site-header { position: fixed; background: var(--navy-950); }
  .brand { width: 132px; height: 88px; }
  .main-nav, .header-cta { display: none; }
  .js .menu-button { display: block; }

  .no-js .site-header { height: 154px; align-items: start; }
  .no-js .main-nav { position: absolute; left: 20px; right: 20px; bottom: 8px; display: flex; justify-content: flex-start; gap: 20px; overflow-x: auto; }
  .no-js .main-nav a { white-space: nowrap; }

  .hero { min-height: 960px; padding: 142px var(--pad) 176px; align-items: flex-end; }
  .hero-media img { object-position: 48% center; }
  .hero-copy { width: 100%; margin: 0; }
  .hero h1 { font-size: clamp(62px, 19vw, 76px); line-height: .84; }
  .eyebrow { font-size: 10px; letter-spacing: .15em; }
  .hero-lede { width: 100%; margin-top: 28px; font-size: 15px; line-height: 1.55; }
  .hero-actions { margin-top: 30px; display: grid; grid-template-columns: 1fr; gap: 10px; }
  .button { width: 100%; }
  .hero-meta { left: var(--pad); right: var(--pad); bottom: 25px; display: grid; grid-template-columns: .85fr 1.4fr; }
  .hero-meta div { min-width: 0; padding: 14px 10px 0 0; }
  .hero-meta div + div { margin-left: 0; padding-left: 12px; }
  .hero-meta div:nth-child(3) { display: none; }
  .hero-meta dt { font-size: 11px; }
  .hero-meta dd { font-size: 15px; }
  .scroll-cue { display: none; }

  .section-pad { padding: 76px var(--pad); }
  .section-kicker { margin-bottom: 28px; font-size: 10px; letter-spacing: .16em; }
  .intro-heading, .rates-heading { margin-bottom: 42px; grid-template-columns: 1fr; gap: 26px; }
  .intro-heading h2, .rate-copy h2, .included-copy h2, .final-cta h2,
  .rates-heading h2, .rate-includes-title h2, .booking-note h2, .error-page h1 { font-size: 50px; }
  .intro-heading p { font-size: 15px; }
  .experience-grid { min-height: 0; grid-template-columns: 1fr; }
  .experience-card, .card-learn { min-height: 510px; grid-column: auto; }
  .card-learn { min-height: 400px; }
  .card-copy { padding: 26px; }
  .card-copy h3 { font-size: 33px; }
  .card-copy p { font-size: 14px; }

  .rate-feature { grid-template-columns: 1fr; gap: 58px; }
  .rate-row { min-height: 100px; grid-template-columns: 1fr auto; }
  .rate-row strong { justify-self: end; font-size: 34px; }
  .rate-row b { grid-column: 1 / -1; grid-row: 2; margin-top: -25px; }
  .rate-row i { display: none; }

  .included { grid-template-columns: 1fr; gap: 55px; }
  .included-visual { min-height: 520px; border-radius: 180px 180px 10px 10px; }
  .visual-label { left: 18px; right: 18px; bottom: 18px; }
  .visual-label span { font-size: 22px; }
  .visual-label small { max-width: 120px; font-size: 10px; text-align: right; }
  .included-copy li { min-height: 74px; font-size: 14px; line-height: 1.35; }

  .final-cta { min-height: 0; grid-template-columns: 1fr; gap: 55px; }
  .final-cta-copy { text-align: left; }
  .final-cta h2 { font-size: 72px; }
  .final-cta-copy > p:not(.eyebrow) { font-size: 15px; }
  .final-cta .button { padding-inline: 12px; font-size: 10px; letter-spacing: .07em; }
  .final-cta-visual { min-height: 560px; border-radius: 190px 190px 12px 12px; }
  .final-cta-label { left: 18px; right: 18px; bottom: 18px; }
  .final-cta-label span { font-size: 23px; }
  .final-cta-label small { max-width: 120px; text-align: right; }
  .orbit-one { width: 580px; height: 280px; }
  .orbit-two { width: 390px; height: 390px; }

  .site-footer { min-height: 300px; padding: 40px var(--pad); grid-template-columns: 1fr; gap: 27px; }
  .footer-brand strong { font-size: 37px; }
  .footer-contact { font-size: 14px; }
  .footer-tag { justify-self: start; font-size: 11px; line-height: 1.8; text-align: left; }

  .rates-hero { min-height: 820px; padding: 150px var(--pad) 90px; align-items: flex-end; }
  .rates-hero-media img { object-position: 39% center; }
  .rates-hero-copy { width: 100%; }
  .rates-hero h1 { font-size: clamp(58px, 17vw, 68px); }
  .rates-hero-copy > p:last-child { width: 100%; font-size: 15px; }
  .rates-hero-stamp { top: 125px; right: 20px; bottom: auto; width: 112px; height: 112px; }
  .rates-hero-stamp strong { font-size: 27px; }
  .rates-hero-stamp span { font-size: 8px; }

  .rates-table thead { display: none; }
  .rates-table tbody tr {
    min-height: 132px;
    padding: 24px 0;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas: "day price" "minimum action";
    gap: 8px 15px;
  }
  .rates-table tbody th { grid-area: day; font-size: 17px; }
  .rates-table tbody td:nth-of-type(1) { grid-area: price; justify-self: end; }
  .rates-table tbody td:nth-of-type(2) { grid-area: minimum; }
  .rates-table tbody td:nth-of-type(3) { grid-area: action; justify-self: end; }
  .rates-table .price { font-size: 38px; }
  .rates-table tr.holiday { margin: 0 -12px; padding: 24px 12px; }

  .rate-includes { grid-template-columns: 1fr; gap: 48px; }
  .include-blocks { grid-template-columns: 1fr; }
  .include-blocks article { min-height: 220px; }
  .include-blocks h3 { margin-top: 42px; }

  .booking-note { min-height: 720px; grid-template-columns: 1fr; align-content: center; gap: 30px; }
  .booking-note .button { grid-column: auto; width: 100%; }

  .error-page { min-height: calc(100svh - 300px); padding-top: 160px; }
}

@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;
  }
}
