:root {
  --bg: #0a0908;
  --bg-warm: #120e0c;
  --bg-panel: #16110f;
  --ink: #f3eadc;
  --muted: #cbb7a1;
  --gold: #d4a054;
  --gold-2: #ead7a8;
  --amber: #c45c26;
  --wine: #5c1824;
  --line: rgba(212, 160, 84, 0.28);
  --veil: linear-gradient(180deg, rgba(10, 9, 8, 0.35) 0%, rgba(10, 9, 8, 0.55) 40%, rgba(10, 9, 8, 0.88) 100%);
  --font: "Outfit", system-ui, sans-serif;
  --display: "Cormorant Garamond", Georgia, serif;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: #1a1208;
  padding: 0.6rem 1rem;
  z-index: 100;
}
.skip:focus { left: 1rem; top: 1rem; }

.wrap {
  width: min(1120px, calc(100% - 2.4rem));
  margin-inline: auto;
}

a { color: var(--gold-2); }
a:hover { color: #fff; }

.label {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.label::after {
  content: "";
  width: 2.8rem;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.05;
  margin: 0 0 1rem;
}
h2 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  font-weight: 500;
}
h2 span { display: block; }
.lead {
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  font-weight: 500;
  line-height: 1.35;
  color: var(--gold-2);
  max-width: 38rem;
}
.fine { color: var(--muted); font-size: 0.88rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.75rem;
  border: 1px solid transparent;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn--gold {
  background: var(--gold);
  color: #1a1208;
  box-shadow: 0 0 28px rgba(212, 160, 84, 0.22);
}
.btn--gold:hover {
  background: var(--gold-2);
  color: #1a1208;
  box-shadow: 0 0 40px rgba(212, 160, 84, 0.42);
}
.btn--ghost {
  border-color: var(--line);
  color: var(--ink);
  background: transparent;
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-2); }
.btn--text {
  letter-spacing: 0.18em;
  color: var(--muted);
  border: 0;
  background: none;
  min-height: auto;
  padding: 0.75rem 0.2rem;
}
.btn--text:hover { color: var(--gold-2); }

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: linear-gradient(180deg, rgba(10, 9, 8, 0.62), rgba(10, 9, 8, 0));
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10, 9, 8, 0.82);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
}
.nav.is-open {
  background: transparent;
  backdrop-filter: none;
  border-bottom-color: transparent;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 1rem;
}
.nav__brand {
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav__brand-kicker {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav__brand-name {
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: 0.06em;
}
.nav__toggle, .nav__close {
  display: none;
  background: none;
  border: 1px solid var(--gold);
  color: var(--gold-2);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font: inherit;
  font-size: 0.72rem;
  padding: 0.5rem 0.9rem;
  cursor: pointer;
  z-index: 51;
}
.nav__drawer {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.nav__drawer a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}
.nav__drawer a:hover { color: var(--gold-2); }
.nav__close { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  isolation: isolate;
}
.hero__media,
.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media {
  background: #0a0908 url("img/hero.png") center / cover no-repeat;
  transform: scale(1.04);
  animation: drift 32s ease-out forwards;
}
@keyframes drift {
  from { transform: scale(1.04); }
  to { transform: scale(1.1); }
}
.hero__veil {
  background:
    linear-gradient(180deg, rgba(10, 9, 8, 0.68) 0%, rgba(10, 9, 8, 0.22) 32%, rgba(10, 9, 8, 0.5) 58%, rgba(10, 9, 8, 0.94) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  padding: 7.5rem 0 4.5rem;
  max-width: 52rem;
}
.hero h1 {
  font-size: clamp(3.4rem, 11vw, 8.4rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 1.1rem;
}
.hero h1 span { display: block; }
.hero__place,
.hero__date {
  margin: 0;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--gold-2);
}
.hero__date { margin-top: 0.35rem; color: var(--ink); }
.hero__times {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.countdown { margin-top: 1.8rem; }
.countdown__label,
.countdown__status {
  margin: 0 0 0.7rem;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.countdown__grid {
  display: flex;
  gap: 0;
  max-width: 26rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.countdown__grid > div {
  flex: 1;
  padding: 0.7rem 0.4rem 0.8rem;
  text-align: left;
}
.countdown__grid > div + div { border-left: 1px solid var(--line); }
.countdown__grid strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 500;
  line-height: 1;
}
.countdown__grid span {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  align-items: center;
  margin-top: 1.8rem;
}

.section,
.showcase,
.story,
.album-cta { scroll-margin-top: 4.6rem; }
.section { padding: 5.5rem 0; }
.section--warm {
  background:
    linear-gradient(180deg, rgba(92, 24, 36, 0.16), transparent 22%),
    var(--bg-warm);
}

.story { padding-top: 0; }
.story__media {
  height: min(82vh, 760px);
  background: #0a0908 url("img/story.png") center / cover no-repeat;
  margin-bottom: 3.2rem;
  position: relative;
  display: flex;
  align-items: flex-end;
}
.story__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 9, 8, 0.2) 30%, rgba(10, 9, 8, 0.88) 100%);
}
.story__title {
  position: relative;
  z-index: 1;
  padding: 0 0 3rem;
}
.story__title h2 { margin: 0; }
.arch-deco {
  display: block;
  width: 4.4rem;
  height: 2.3rem;
  color: var(--gold);
  margin: 0 0 1.6rem;
}
.story__cols {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  margin-top: 2rem;
}
.story__cols p { color: var(--muted); }
.brief {
  border-top: 1px solid var(--gold);
  padding-top: 1.2rem;
}
.brief h3 {
  font-size: 1.4rem;
  color: var(--gold-2);
}
.brief ul { margin: 0; padding-left: 1.1rem; color: var(--muted); }
.brief li { margin: 0.45rem 0; }

.brochure {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem 1.8rem;
  margin: 2.4rem 0 1.4rem;
}
.brochure__cat {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  letter-spacing: 0.02em;
  font-weight: 500;
  color: var(--gold-2);
  margin: 0 0 0.9rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--line);
}
.brochure__col ul,
.hotel ul { margin: 0; padding-left: 1.05rem; color: var(--muted); }
.brochure__col li { margin: 0.4rem 0; }

.showcase { padding: 2rem 0 4rem; }
.act {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 52vh;
  margin-top: 1.2rem;
}
.act--flip { grid-template-columns: 0.85fr 1.15fr; }
.act--flip .act__img { order: 2; }
.act__img { background: #16110f center / cover no-repeat; min-height: 320px; }
.act__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 8%;
  background: var(--bg-panel);
}
.act__copy span {
  font-family: var(--display);
  font-size: clamp(3.2rem, 7vw, 5.6rem);
  letter-spacing: -0.04em;
  line-height: 0.8;
  color: var(--gold);
  opacity: 0.5;
  font-weight: 500;
}
.act__copy h3 { font-size: clamp(2rem, 4vw, 3.2rem); margin: 0.4rem 0 0.8rem; }
.act__copy p { color: var(--muted); margin: 0; max-width: 28rem; }

.break {
  height: min(42vh, 380px);
  background: #0a0908 url("img/break.png") center / cover no-repeat;
}

.timeline {
  list-style: none;
  margin: 2.6rem 0 0;
  padding: 0;
  border-left: 1px solid var(--line);
}
.timeline li {
  display: grid;
  grid-template-columns: 8.5rem 1fr;
  gap: 1.4rem;
  padding: 0 0 2.2rem 2rem;
  position: relative;
}
.timeline li::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 0.55rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(212, 160, 84, 0.55);
}
.timeline time {
  font-family: var(--display);
  font-size: clamp(1.85rem, 3.2vw, 2.45rem);
  color: var(--gold-2);
  line-height: 1;
}
.timeline h3 {
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  font-family: var(--font);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
}
.timeline p { margin: 0; color: var(--muted); }

.hotels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2.2rem;
}
.hotel {
  background: var(--bg-panel);
  border: 1px solid rgba(212, 160, 84, 0.14);
}
.hotel__media {
  height: 210px;
  background: #16110f center / cover no-repeat;
}
.hotel__media--a { background-image: url("img/hotel-hilton.png"); }
.hotel__media--b { background-image: url("img/hotel-crowne.png"); }
.hotel__media--c { background-image: url("img/hotel-holiday.png"); }
.hotel__media--d { background-image: url("img/hotel-genting.png"); }
.hotel__body { padding: 1.3rem 1.3rem 1.5rem; }
.hotel__tag {
  margin: 0 0 0.45rem;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.hotel h3 { font-size: 1.7rem; margin-bottom: 0.2rem; }
.hotel__meta { margin: 0 0 0.8rem; color: var(--muted); font-size: 0.9rem; }
.hotel .btn { margin-top: 1rem; }
.more-stays {
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}
.more-stays ul { color: var(--muted); }

.travel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 2rem;
}
.travel__block {
  border-top: 1px solid var(--line);
  padding-top: 1.1rem;
}
.travel__block p { color: var(--muted); }
.times { list-style: none; margin: 1rem 0 0; padding: 0; }
.times li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding: 0.4rem 0;
  color: var(--muted);
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.4rem 0 1.8rem;
}
.badges span {
  border: 1px solid var(--gold);
  color: var(--gold-2);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.68rem;
  padding: 0.4rem 0.7rem;
}
.intel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem 2rem;
}
.intel article { border-top: 1px solid var(--line); padding-top: 1rem; }
.intel h3 { font-size: 1.5rem; }
.intel p { color: var(--muted); }

.kit {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}
.kit li {
  display: grid;
  grid-template-columns: minmax(9rem, 0.4fr) 1fr;
  gap: 1rem;
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  padding: 1rem 0 1rem 2.2rem;
  position: relative;
  color: var(--muted);
}
.kit li::before {
  content: "";
  position: absolute;
  left: 0.15rem;
  top: 1.35rem;
  width: 0.72rem;
  height: 0.38rem;
  border: 0;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}
.kit span {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-2);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.album-cta {
  background:
    linear-gradient(180deg, rgba(10, 9, 8, 0.55), rgba(10, 9, 8, 0.82)),
    url("img/break.png") center / cover no-repeat;
}
.photos-teaser {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  margin-top: 1.6rem;
  align-items: start;
}
.photos-teaser p { color: var(--muted); }
.lockbox {
  border: 1px solid var(--line);
  padding: 1.6rem 1.4rem;
  background: rgba(10, 9, 8, 0.55);
  text-align: center;
}
.lockbox strong {
  display: block;
  font-family: var(--display);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}
.lockbox .btn { margin-top: 1rem; }

.foot {
  padding: 5.5rem 0 2.4rem;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(7, 6, 5, 0.78), rgba(7, 6, 5, 0.94)),
    url("img/hero.png") center 42% / cover no-repeat;
  border-top: 1px solid var(--line);
}
.foot__title {
  font-family: var(--display);
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  margin: 0;
  font-weight: 500;
}
.foot__meta, .foot__date {
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--gold);
  margin: 0.3rem 0 0;
}
.foot__brand {
  margin: 1.4rem 0 0.4rem;
  font-family: var(--display);
  font-size: 1.3rem;
  color: var(--gold-2);
}
.foot__contact, .foot__links { color: var(--muted); }
.foot__legal { margin-top: 2rem; max-width: 46rem; margin-inline: auto; }

.vault {
  min-height: calc(100svh - 72px);
  display: grid;
  place-items: center;
  background:
    linear-gradient(180deg, rgba(10, 9, 8, 0.7), rgba(10, 9, 8, 0.88)),
    url("img/hero.png") center / cover no-repeat;
}
.vault__inner { max-width: 34rem; text-align: center; padding: 7.5rem 0 4rem; }
.vault .label { justify-content: center; }
.gate {
  margin: 1.8rem auto 1rem;
  display: grid;
  gap: 0.5rem;
  text-align: left;
  max-width: 22rem;
}
.gate label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.gate input {
  width: 100%;
  padding: 0.85rem 0.9rem;
  border: 1px solid var(--line);
  background: rgba(10, 9, 8, 0.55);
  color: var(--ink);
  font: inherit;
}
.gate input:focus { outline: 1px solid var(--gold); }
.gate__error { color: #e8b4a8; margin: 0; }

.album {
  list-style: none;
  margin: 1.8rem 0 0;
  padding: 0;
  columns: 3 220px;
  gap: 0.7rem;
}
.album li { break-inside: avoid; margin-bottom: 0.7rem; }
.album__item { display: block; overflow: hidden; }
.album__item img { display: block; width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; }
.empty-album, .album-note { color: var(--muted); }
.empty-album { border: 1px solid var(--line); padding: 1.4rem; margin-top: 1.2rem; }

.lightbox {
  border: 1px solid var(--line);
  background: rgba(8, 7, 6, 0.94);
  color: var(--ink);
  max-width: min(96vw, 1100px);
  padding: 2.2rem 3.2rem;
}
.lightbox::backdrop { background: rgba(0, 0, 0, 0.78); }
.lightbox img { max-width: 100%; max-height: 78vh; display: block; margin: 0 auto; }
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: absolute;
  background: transparent;
  color: var(--gold-2);
  border: 0;
  font: inherit;
  cursor: pointer;
}
.lightbox__close { top: 0.6rem; right: 0.8rem; }
.lightbox__prev, .lightbox__next { top: 50%; font-size: 2rem; transform: translateY(-50%); }
.lightbox__prev { left: 0.4rem; }
.lightbox__next { right: 0.4rem; }

.gallery-page .section { padding-top: 7rem; }

a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.reveal { opacity: 1; }
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js .reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (max-width: 1099px) {
  .nav__toggle { display: inline-flex; }
  .nav__close {
    display: inline-flex;
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
  }
  .nav__drawer {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100svh;
    z-index: 50;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.3rem;
    background: #0a0908;
    transform: translateX(100%);
    transition: transform 0.35s ease;
  }
  .nav.is-open .nav__toggle { visibility: hidden; }
  .nav.is-open .nav__drawer { transform: none; }
  .nav__drawer a {
    font-family: var(--display);
    font-size: 2rem;
    color: var(--ink);
  }
  .brochure, .hotels, .travel, .intel, .photos-teaser, .story__cols {
    grid-template-columns: 1fr;
  }
  .act, .act--flip { grid-template-columns: 1fr; min-height: 0; }
  .act--flip .act__img { order: 0; }
  .timeline li { grid-template-columns: 1fr; padding-left: 1.5rem; }
  .kit li { grid-template-columns: 1fr; }
  .hero__cta .btn--gold,
  .hero__cta .btn--ghost { min-width: calc(50% - 0.5rem); }
}

@media (max-width: 600px) {
  .hero__cta .btn--gold,
  .hero__cta .btn--ghost { flex: 1 1 100%; }
  .hero h1 { font-size: clamp(3.1rem, 16vw, 4.4rem); }
}

.nav__drawer--simple { display: flex !important; position: static !important; transform: none !important; background: none !important; flex-direction: row !important; justify-content: flex-end; }
.nav__drawer--simple a { font-family: var(--font) !important; font-size: 0.82rem !important; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .hero__media { transform: none; animation: none; }
  .nav__drawer { transition: none; }
}
