:root {
  --blue: #20394D;
  --blue-900: #0e1d29;
  --blue-800: #152838;
  --gold: #C9A84C;
  --gold-soft: #e3cd8a;
  --paper: #F6F1E6;
  --ink: #20394D;
  --muted: rgba(246, 241, 230, 0.76);
  --line: rgba(227, 205, 138, 0.22);
  --shadow: 0 26px 80px rgba(6, 15, 22, 0.38);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--blue-900);
  color: var(--paper);
  font-family: "Montserrat", system-ui, sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--gold-soft);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-180%);
  background: var(--paper);
  color: var(--blue-900);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  font-weight: 700;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem clamp(1rem, 3vw, 3rem);
  background: linear-gradient(180deg, rgba(14, 29, 41, 0.92), rgba(14, 29, 41, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(10.5rem, 18vw, 14rem);
  min-height: 3.25rem;
  padding: 0;
  filter: drop-shadow(0 0.35rem 1.15rem rgba(0, 0, 0, 0.62));
}

.brand img {
  width: 100%;
  height: auto;
}

.header-nav {
  display: none;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  color: rgba(246, 241, 230, 0.86);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.header-nav a {
  text-decoration: none;
}

.header-nav a:hover {
  color: var(--gold-soft);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  padding: 7.25rem clamp(1rem, 4vw, 4rem) 2.25rem;
}

.hero-media,
.hero-media::after {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-media img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: center;
  transform: translate3d(0, var(--hero-shift, 0), 0) scale(1.04);
}

.hero-media::after {
  content: "";
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(14, 29, 41, 0.96) 0%, rgba(14, 29, 41, 0.7) 42%, rgba(14, 29, 41, 0.22) 100%),
    linear-gradient(0deg, rgba(14, 29, 41, 0.96) 0%, rgba(14, 29, 41, 0.08) 48%, rgba(14, 29, 41, 0.72) 100%);
}

.sparkle-layer {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.7;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 18% 18%, rgba(227, 205, 138, 0.95) 0 1px, transparent 2px),
    radial-gradient(circle at 74% 14%, rgba(227, 205, 138, 0.8) 0 1px, transparent 2px),
    radial-gradient(circle at 88% 38%, rgba(201, 168, 76, 0.75) 0 1px, transparent 2px),
    radial-gradient(circle at 44% 28%, rgba(246, 241, 230, 0.74) 0 1px, transparent 2px);
  animation: twinkle 4.8s ease-in-out infinite alternate;
}

.hero-content {
  width: min(48rem, 100%);
  margin-left: max(0rem, 5vw);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold-soft);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 0.98;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1.25rem;
  font-size: clamp(3.85rem, 10vw, 7.85rem);
  letter-spacing: 0;
}

h1 em,
h2 em {
  color: var(--gold-soft);
  font-style: italic;
  font-weight: 500;
}

.hero-copy {
  max-width: 39rem;
  margin-bottom: 2rem;
  color: rgba(246, 241, 230, 0.84);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.95rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--paper);
  color: var(--blue-900);
}

.button-gold {
  background: var(--gold);
  color: #15120a;
  box-shadow: 0 18px 50px rgba(201, 168, 76, 0.24);
}

.price-seal {
  display: grid;
  gap: 0.1rem;
  margin: 0;
  padding: 0.85rem 1rem;
  border-left: 1px solid var(--gold);
  background: rgba(14, 29, 41, 0.52);
  backdrop-filter: blur(14px);
}

.price-seal span,
.price-seal small {
  color: rgba(246, 241, 230, 0.72);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-seal strong {
  color: var(--gold-soft);
  font-variant-numeric: tabular-nums;
  font-size: clamp(1rem, 2vw, 1.35rem);
}

.highlights {
  position: relative;
  z-index: 2;
  margin-top: -1px;
  padding: 0 clamp(1rem, 4vw, 4rem) 1rem;
  background: linear-gradient(180deg, var(--blue-900), var(--blue-800));
}

.highlight-track {
  display: grid;
  gap: 1px;
  max-width: 72rem;
  margin: 0 auto;
  border: 1px solid var(--line);
  background: var(--line);
  box-shadow: var(--shadow);
}

.highlight-track article {
  min-height: 7.5rem;
  padding: 1.35rem;
  background: rgba(21, 40, 56, 0.94);
}

.highlight-track span {
  display: block;
  margin-bottom: 1.5rem;
  color: var(--gold-soft);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.highlight-track p {
  max-width: 12rem;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.08;
}

.section-pad {
  padding: clamp(4rem, 9vw, 8rem) clamp(1rem, 5vw, 5rem);
}

.section-intro {
  max-width: 42rem;
  margin: 0 auto clamp(2rem, 6vw, 4rem);
}

.section-intro h2,
.pricing-heading h2,
.lodging-content h2,
.cta-content h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.75rem, 7vw, 5.75rem);
}

.section-intro p:not(.eyebrow),
.pricing-heading p,
.lodging-content > p,
.cta-content p {
  color: rgba(246, 241, 230, 0.76);
}

.included {
  background:
    linear-gradient(115deg, rgba(32, 57, 77, 0.42), transparent 48%),
    var(--blue-800);
}

.included-grid {
  display: grid;
  gap: 1rem;
  max-width: 73rem;
  margin: 0 auto;
}

.included-item {
  position: relative;
  padding: 1.5rem;
  border: 1px solid rgba(227, 205, 138, 0.16);
  background: rgba(14, 29, 41, 0.38);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.included-item:hover {
  transform: translateY(-4px);
  border-color: rgba(227, 205, 138, 0.42);
  background: rgba(14, 29, 41, 0.6);
}

.included-item svg {
  width: 2rem;
  height: 2rem;
  margin-bottom: 2.1rem;
  fill: none;
  stroke: var(--gold-soft);
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.included-item h3 {
  margin-bottom: 0.65rem;
  font-size: 1.65rem;
  line-height: 1.05;
}

.included-item p {
  margin-bottom: 0;
  color: rgba(246, 241, 230, 0.7);
  font-size: 0.95rem;
}

.full-bleed-story {
  position: relative;
  min-height: 34rem;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: clamp(1rem, 5vw, 5rem);
  isolation: isolate;
}

.full-bleed-story img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.full-bleed-story::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(14, 29, 41, 0.92), rgba(14, 29, 41, 0.3) 58%, rgba(14, 29, 41, 0.7));
}

.story-panel {
  max-width: 34rem;
  margin-left: auto;
  padding: clamp(1.5rem, 4vw, 3rem);
  border-top: 1px solid rgba(227, 205, 138, 0.55);
  background: rgba(14, 29, 41, 0.7);
  backdrop-filter: blur(16px);
}

.story-panel h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.35rem, 6vw, 4.7rem);
}

.story-panel p:last-child {
  margin-bottom: 0;
  color: rgba(246, 241, 230, 0.77);
}

.pricing {
  background: var(--blue-900);
}

.pricing-heading {
  display: grid;
  gap: 1rem;
  max-width: 73rem;
  margin: 0 auto 2rem;
}

.price-list {
  display: grid;
  gap: 1rem;
  max-width: 73rem;
  margin: 0 auto;
}

.date-card {
  padding: clamp(1.25rem, 4vw, 2rem);
  border: 1px solid rgba(246, 241, 230, 0.12);
  background: linear-gradient(145deg, rgba(21, 40, 56, 0.94), rgba(14, 29, 41, 0.78));
  transition: transform 180ms ease, border-color 180ms ease;
}

.date-card:hover {
  transform: translateY(-4px);
  border-color: rgba(227, 205, 138, 0.5);
}

.date-card.best {
  border-color: rgba(227, 205, 138, 0.75);
  background:
    linear-gradient(145deg, rgba(201, 168, 76, 0.16), rgba(14, 29, 41, 0.84)),
    var(--blue-800);
}

.card-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.25rem;
  color: rgba(246, 241, 230, 0.66);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.card-top p {
  margin: 0;
}

.badge {
  color: var(--gold-soft);
}

.date-card h3 {
  max-width: 13rem;
  margin-bottom: 1.25rem;
  font-size: clamp(2rem, 5vw, 3.25rem);
}

.date-price {
  margin-bottom: 0.15rem;
  color: var(--gold-soft);
  font-size: clamp(1.2rem, 3vw, 1.65rem);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
}

.room-note {
  margin-bottom: 0;
  color: rgba(246, 241, 230, 0.68);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.fine-print {
  max-width: 73rem;
  margin: 1.25rem auto 0;
  color: rgba(246, 241, 230, 0.62);
  font-size: 0.85rem;
}

.lodging {
  display: grid;
  background: var(--paper);
  color: var(--ink);
}

.lodging-image {
  min-height: 24rem;
}

.lodging-image img {
  width: 100%;
  height: 100%;
  min-height: 24rem;
  object-fit: cover;
}

.lodging-content {
  align-self: center;
  padding: clamp(3rem, 8vw, 6.5rem) clamp(1rem, 5vw, 5rem);
}

.lodging-content .eyebrow {
  color: #8a7027;
}

.lodging-content > p {
  max-width: 38rem;
  color: rgba(32, 57, 77, 0.76);
}

.hotel-list {
  display: grid;
  gap: 1rem;
  max-width: 42rem;
  margin-top: 2rem;
}

.hotel-list article {
  min-height: 10rem;
  padding: 1.15rem;
  border: 1px solid rgba(32, 57, 77, 0.2);
  background: rgba(32, 57, 77, 0.045);
}

.hotel-list span {
  display: block;
  margin-bottom: 2rem;
  color: #8a7027;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hotel-list p {
  margin: 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.05;
}

.hotel-list small {
  display: block;
  margin-top: 0.65rem;
  color: rgba(32, 57, 77, 0.62);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.final-cta {
  position: relative;
  padding: clamp(4rem, 9vw, 8rem) clamp(1rem, 5vw, 5rem);
  background:
    radial-gradient(circle at 12% 20%, rgba(227, 205, 138, 0.12), transparent 30rem),
    linear-gradient(135deg, var(--blue-800), var(--blue-900));
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(227, 205, 138, 0.14);
  pointer-events: none;
}

.cta-content {
  position: relative;
  max-width: 46rem;
  margin: 0 auto;
  text-align: left;
}

.cta-content p:not(.eyebrow) {
  max-width: 34rem;
  margin-bottom: 2rem;
}

.site-footer {
  display: grid;
  gap: 1rem;
  padding: 1.5rem clamp(1rem, 5vw, 5rem);
  background: #091722;
  color: rgba(246, 241, 230, 0.62);
  font-size: 0.82rem;
}

.site-footer p {
  margin: 0;
  color: rgba(246, 241, 230, 0.76);
}

.site-footer small {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.72rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.2rem;
}

.site-footer a {
  color: rgba(246, 241, 230, 0.76);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer a:hover {
  color: var(--gold-soft);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

@keyframes twinkle {
  0% { opacity: 0.32; }
  50% { opacity: 0.82; }
  100% { opacity: 0.45; }
}

@media (min-width: 42rem) {
  .header-nav {
    display: flex;
  }

  .highlight-track {
    grid-template-columns: repeat(4, 1fr);
  }

  .included-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-heading {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: end;
  }

  .price-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .hotel-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 64rem) {
  .hero {
    min-height: 105svh;
  }

  .included-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .price-list {
    grid-template-columns: 1.15fr 1fr 1fr 1fr;
  }

  .lodging {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  }

  .lodging-image,
  .lodging-image img {
    min-height: 46rem;
  }
}

@media (max-width: 31rem) {
  .site-header {
    align-items: flex-start;
  }

  .brand {
    width: 9rem;
  }

  .hero {
    padding-top: 7.75rem;
  }

  .hero-actions {
    align-items: stretch;
  }

  .button,
  .price-seal {
    width: 100%;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-media img {
    transform: scale(1.02);
  }
}
