:root {
  --bg: #121b17;
  --bg-soft: #1a2620;
  --panel: rgba(250, 244, 229, 0.9);
  --panel-dark: rgba(18, 27, 23, 0.7);
  --ink: #17221d;
  --cream: #fbf5e8;
  --cream-muted: rgba(251, 245, 232, 0.76);
  --muted: #6e7a70;
  --line: rgba(230, 209, 166, 0.28);
  --gold: #d8bd78;
  --gold-soft: #efe0b0;
  --emerald: #0f5f49;
  --emerald-deep: #092d25;
  --rust: #b66648;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--cream);
  background: var(--bg);
  font-family: var(--sans);
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 20px;
  left: 50%;
  display: flex;
  width: min(1500px, calc(100% - 56px));
  align-items: center;
  padding: 12px 16px;
  transform: translateX(-50%);
  border: 1px solid rgba(239, 224, 176, 0.42);
  border-radius: 8px;
  background: rgba(24, 29, 25, 0.45);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 96px;
  height: 60px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(216, 189, 120, 0.32);
  border-radius: 8px;
  background: #6f1028;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 4px;
  line-height: 1;
}

.brand-name {
  color: var(--cream);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 900;
  letter-spacing: 0;
}

.brand-line {
  color: var(--gold-soft);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0;
}

.hero {
  position: relative;
  min-height: 92svh;
  padding: 160px 24px 34px;
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: var(--bg);
}

.hero-overlay {
  background: var(--bg);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1400px, 100%);
  min-height: calc(92svh - 280px);
  grid-template-columns: minmax(0, 1fr) 460px;
  align-items: end;
  gap: 70px;
  margin: 0 auto;
}

.hero-content {
  max-width: 960px;
}

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

h1,
h2 {
  font-family: var(--serif);
  letter-spacing: 0;
}

h1 {
  max-width: 940px;
  margin-bottom: 22px;
  color: #fff8e9;
  font-size: clamp(3.4rem, 6.6vw, 7.7rem);
  line-height: 0.94;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.24);
}

.hero-text {
  max-width: 850px;
  margin-bottom: 0;
  color: rgba(255, 250, 237, 0.86);
  font-size: clamp(1.05rem, 1.4vw, 1.45rem);
  line-height: 1.62;
}

.hero-subtitle {
  margin: -8px 0 24px;
  color: var(--gold-soft);
  font-size: clamp(1.35rem, 2.3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 0 30px;
  font: 800 1rem var(--sans);
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button.primary {
  color: var(--cream);
  background: linear-gradient(135deg, #0f6f55, #0b4939);
  box-shadow: 0 18px 34px rgba(8, 49, 38, 0.32);
}

.button.secondary {
  color: var(--cream);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(239, 224, 176, 0.5);
}

.button.mini {
  min-height: 42px;
  padding-inline: 18px;
  color: var(--cream);
  background: var(--emerald);
}

.button.wide {
  width: 100%;
}

.event-card {
  border: 1px solid rgba(239, 224, 176, 0.4);
  border-radius: 8px;
  padding: 28px;
  color: var(--cream);
  background: rgba(15, 25, 21, 0.62);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.panel-label,
.section-kicker {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.event-card h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.02;
}

.event-card p {
  margin: 0;
  color: rgba(251, 245, 232, 0.78);
  line-height: 1.7;
}

.hero-strip {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(1040px, calc(100% - 48px));
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 46px auto 0;
  border: 1px solid rgba(239, 224, 176, 0.42);
  border-radius: 8px;
  background: rgba(16, 28, 23, 0.62);
  backdrop-filter: blur(16px);
}

.hero-strip div {
  padding: 22px 26px;
}

.hero-strip div + div {
  border-left: 1px solid rgba(239, 224, 176, 0.3);
}

.hero-strip span {
  display: block;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-strip strong {
  display: block;
  margin-top: 6px;
  color: var(--cream);
  font-size: 1rem;
}

.section {
  width: min(1400px, calc(100% - 56px));
  margin: 0 auto;
  padding: 104px 0;
}

.intro,
.saturday {
  color: var(--cream);
}

.split-heading {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 70px;
  align-items: start;
  margin-top: 18px;
}

.split-heading h2,
.section-heading h2,
.feature-copy h2 {
  margin-bottom: 0;
  font-size: clamp(2.4rem, 4.6vw, 5.2rem);
  line-height: 0.98;
}

.feature-copy.long-copy h2 {
  margin-bottom: 36px;
}

.feature-copy.long-copy .story-title-secondary {
  margin-top: 68px;
  margin-bottom: 26px;
}

.split-heading p,
.section-heading p,
.feature-copy p {
  color: rgba(251, 245, 232, 0.74);
  font-size: 1.05rem;
  line-height: 1.85;
}

.feature-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: stretch;
  border-top: 1px solid rgba(239, 224, 176, 0.22);
  border-bottom: 1px solid rgba(239, 224, 176, 0.22);
}

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

.feature-list article {
  min-height: 260px;
  border: 1px solid rgba(239, 224, 176, 0.28);
  border-radius: 8px;
  padding: 24px;
  background: rgba(251, 245, 232, 0.06);
}

.feature-list span {
  color: var(--gold);
  font-weight: 900;
}

.feature-list h3 {
  margin: 36px 0 12px;
  font-size: 1.22rem;
}

.feature-list p {
  margin: 0;
  color: rgba(251, 245, 232, 0.68);
  line-height: 1.65;
}

.packages,
.vote {
  color: var(--ink);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading .section-kicker {
  grid-column: 1 / -1;
}

.section-heading h2 {
  color: var(--ink);
}

.section-heading p {
  color: var(--muted);
}

.package-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.package-card,
.activity-card {
  border: 1px solid rgba(23, 34, 29, 0.16);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 252, 243, 0.92);
  box-shadow: 0 20px 58px rgba(23, 34, 29, 0.13);
}

.activity-card.is-selected {
  border-color: rgba(15, 95, 73, 0.55);
  box-shadow: 0 24px 70px rgba(15, 95, 73, 0.18);
}

.activity-card {
  background: linear-gradient(180deg, rgba(250, 253, 250, 0.96), rgba(230, 243, 247, 0.94));
}

.package-image {
  position: relative;
  min-height: 190px;
  background:
    linear-gradient(180deg, rgba(10, 24, 20, 0.08), rgba(10, 24, 20, 0.68)),
    var(--image) center / cover;
}

.package-image span {
  position: absolute;
  left: 18px;
  bottom: 16px;
  color: var(--cream);
  font-weight: 900;
}

.package-body {
  display: grid;
  min-height: 190px;
  gap: 18px;
  padding: 20px;
}

.package-body p,
.activity-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.package-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  border: 1px solid rgba(15, 95, 73, 0.18);
  border-radius: 8px;
  padding: 7px 10px;
  color: var(--emerald-deep);
  background: rgba(15, 95, 73, 0.08);
  font-size: 0.78rem;
  font-weight: 800;
}

.circle-link {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  justify-self: end;
  border-radius: 999px;
  color: var(--cream);
  background: var(--emerald);
  font-weight: 900;
}

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

.activity-image {
  min-height: 170px;
  background:
    linear-gradient(180deg, rgba(10, 24, 20, 0.04), rgba(10, 24, 20, 0.36)),
    var(--image) center / cover;
}

.activity-body {
  display: grid;
  gap: 18px;
  padding: 20px;
}

.activity-body h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.24rem;
}

label,
.guest-card legend {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

label {
  display: grid;
  gap: 8px;
}

.vote-note {
  min-height: 1.2em;
  margin: 0;
  color: var(--emerald);
  font-size: 0.86rem;
  font-weight: 800;
}

input,
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(23, 34, 29, 0.18);
  border-radius: 8px;
  padding: 0 13px;
  color: var(--ink);
  background: #fffdf7;
  font: 700 1rem var(--sans);
}

input:focus,
select:focus {
  outline: 3px solid rgba(15, 95, 73, 0.18);
  border-color: rgba(15, 95, 73, 0.5);
}

.guest-list {
  display: grid;
  gap: 14px;
}

.guest-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 0;
  border: 1px solid rgba(23, 34, 29, 0.12);
  border-radius: 8px;
  padding: 18px;
}

.guest-card legend {
  padding: 0 8px;
  color: var(--rust);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.footer {
  display: flex;
  width: min(1400px, calc(100% - 56px));
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  border-top: 1px solid rgba(23, 34, 29, 0.14);
  padding: 34px 0 48px;
  color: var(--muted);
}

.footer .brand-name {
  color: var(--cream);
}

.footer .brand-line {
  color: var(--muted);
}

.footer p {
  margin: 0;
}

@media (max-width: 1100px) {
  .hero-inner,
  .split-heading,
  .feature-band,
  .section-heading {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-strip,
  .package-row,
  .vote-grid,
  .feature-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .site-header {
    top: 12px;
    width: calc(100% - 24px);
    gap: 12px;
    padding: 10px;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 74px;
    height: 48px;
  }

  .brand-name {
    font-size: 1.7rem;
  }

  .brand-line {
    font-size: 0.68rem;
  }

  .hero {
    min-height: auto;
    padding: 130px 18px 28px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.6rem);
  }

  .hero-strip,
  .package-row,
  .vote-grid,
  .feature-list,
  .guest-card {
    grid-template-columns: 1fr;
  }

  .hero-strip div + div {
    border-top: 1px solid rgba(239, 224, 176, 0.3);
    border-left: 0;
  }

  .section,
  .resort-copy,
  .footer {
    width: calc(100% - 36px);
  }

  .section {
    padding: 74px 0;
  }

  .footer {
    display: grid;
  }
}

.event-date {
  margin: -8px 0 22px;
  color: var(--cream);
  font-size: clamp(1.05rem, 1.7vw, 1.55rem);
  font-weight: 900;
}

.split-heading.solo {
  display: block;
  max-width: 1180px;
}

.story-band {
  display: block;
}

.long-copy {
  max-width: 1040px;
}

.long-copy p {
  margin-bottom: 18px;
}

.signature {
  color: var(--gold-soft) !important;
  font-weight: 900;
}

.vote {
  color: var(--cream);
}

.vote-heading {
  display: block;
  max-width: 1160px;
}

.vote-heading h2 {
  color: var(--cream);
  font-size: clamp(3.4rem, 7vw, 7.5rem);
  margin-bottom: 34px;
}

.vote-heading p {
  max-width: 1120px;
  color: rgba(251, 245, 232, 0.72);
}

.vote-heading p:first-of-type {
  margin-top: 0;
}

.adventure-form {
  display: grid;
  gap: 26px;
}

.registration-card,
.suite-picker {
  border: 1px solid rgba(121, 157, 165, 0.36);
  border-radius: 8px;
  padding: 26px;
  background: linear-gradient(180deg, rgba(250, 253, 250, 0.96), rgba(230, 243, 247, 0.94));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  color: var(--ink);
}

.registration-card h3,
.suite-picker h2 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.6rem);
  line-height: 1;
}

.registration-card p,
.suite-picker p {
  color: var(--muted);
  line-height: 1.65;
}

.registration-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.vote-status {
  position: sticky;
  z-index: 5;
  top: 104px;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(239, 224, 176, 0.42);
  border-radius: 8px;
  padding: 13px 18px;
  color: var(--cream);
  background: rgba(15, 95, 73, 0.92);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.vote-status span {
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.vote-status strong {
  font-size: 1.45rem;
}

.price-tag,
.activity-note {
  display: inline-flex;
  width: fit-content;
  border-radius: 8px;
  padding: 7px 10px;
  font-size: 0.8rem;
  font-weight: 900;
}

.price-tag {
  margin-top: 10px;
  color: var(--emerald-deep);
  background: rgba(15, 95, 73, 0.1);
}

.activity-note {
  color: #7c4a31;
  background: #fff1d4;
  line-height: 1.45;
}

.vote-select {
  margin-top: auto;
}

.vote-select span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: none;
}

.suggestion-card {
  display: grid;
  align-content: center;
}

textarea {
  width: 100%;
  min-height: 116px;
  resize: vertical;
  border: 1px solid rgba(23, 34, 29, 0.18);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fffdf7;
  font: 700 1rem var(--sans);
}

.suite-heading {
  display: grid;
  gap: 28px;
  margin-bottom: 22px;
}

.suite-heading .button.secondary {
  width: 100%;
  min-height: 82px;
  color: var(--ink);
  font-size: 1.18rem;
  background: linear-gradient(135deg, #efe0b0, #d8bd78);
  box-shadow: 0 18px 36px rgba(120, 83, 31, 0.2), inset 0 0 0 1px rgba(23, 34, 29, 0.18);
}

.room-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.room-card {
  cursor: pointer;
}

.room-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.room-card span {
  display: grid;
  gap: 8px;
  min-height: 112px;
  border: 1px solid rgba(23, 34, 29, 0.14);
  border-radius: 8px;
  padding: 20px;
  background: rgba(255, 253, 247, 0.9);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.room-card:hover span,
.room-card input:checked + span {
  transform: translateY(-2px);
  border-color: rgba(15, 95, 73, 0.5);
  box-shadow: 0 16px 38px rgba(15, 95, 73, 0.14);
}

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

.room-card small {
  color: var(--muted);
  font-weight: 800;
}

.room-card em {
  color: var(--emerald);
  font-style: normal;
  font-weight: 900;
}

.included-list {
  border: 1px solid rgba(23, 34, 29, 0.12);
  border-radius: 8px;
  margin-bottom: 22px;
  padding: 20px;
  background: rgba(255, 253, 247, 0.72);
}

.included-list h3 {
  margin: 0 0 14px;
  font-size: 1.12rem;
}

.included-list ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.included-list li {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.35;
}

.room-guests {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.room-slot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  border: 1px solid rgba(23, 34, 29, 0.12);
  border-radius: 8px;
  padding: 16px;
}

.room-slot.current-person {
  display: grid;
  grid-template-columns: 120px 1fr 1fr;
  align-items: center;
  color: var(--ink);
  background: rgba(15, 95, 73, 0.07);
}

.room-slot.current-person span,
.room-slot.current-person small {
  color: var(--muted);
  font-weight: 900;
}

.submit-votes {
  max-width: 560px;
  justify-self: center;
}

.form-error {
  min-height: 1.5em;
  margin: 0;
  color: var(--gold-soft);
  text-align: center;
  font-weight: 900;
}

@media (max-width: 1100px) {
  .registration-grid,
  .room-options,
  .included-list ul {
    grid-template-columns: repeat(2, 1fr);
  }

  .suite-heading {
    display: grid;
  }
}

@media (max-width: 680px) {
  .registration-grid,
  .room-options,
  .included-list ul,
  .room-slot,
  .room-slot.current-person {
    grid-template-columns: 1fr;
  }

  .vote-status {
    position: static;
    width: 100%;
    justify-content: space-between;
  }
}
