:root {
  --ivory: #f6f1e7;
  --paper: #fbf8f2;
  --cypress: #24372d;
  --cypress-soft: #3c5144;
  --ink: #28251f;
  --muted: #6f695e;
  --gold: #bd8a3c;
  --gold-dark: #76501a;
  --line: #d9cebb;
  --serif: serif, Georgia, "Times New Roman";
  --sans: sans-serif, Avenir, "Avenir Next", "Segoe UI", Helvetica, Arial;
  --maxw: 76rem;
  --wide: 90rem;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; min-width: 0; }

html { scroll-behavior: smooth; background: var(--ivory); }

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible { outline: 3px solid #f2c97c; outline-offset: 4px; }

.skip-link {
  position: fixed;
  z-index: 100;
  left: 1rem;
  top: 1rem;
  padding: .75rem 1rem;
  color: var(--cypress);
  background: white;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.wrap { width: min(calc(100% - 3rem), var(--maxw)); margin-inline: auto; }
.wrap--wide { width: min(calc(100% - 3rem), var(--wide)); }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  color: white;
  background: var(--cypress);
}

.hero__photo {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 47%;
  animation: hero-breathe 18s var(--ease) both;
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(18, 34, 27, .9) 0%, rgba(18, 34, 27, .68) 34%, rgba(18, 34, 27, .14) 75%),
    linear-gradient(0deg, rgba(10, 19, 15, .72) 0%, transparent 44%);
}

.nav {
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 6.5rem;
  gap: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, .22);
}

.nav__brand {
  width: clamp(14.5rem, 23vw, 21rem);
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0;
  background: transparent;
  box-shadow: none;
}
.brand-logo {
  width: 100%;
  height: auto;
}
.nav__links { display: flex; align-items: center; gap: .65rem; font-size: .88rem; font-weight: 750; }
.nav__link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .65rem 1.05rem;
  border: 1px solid transparent;
  transition: color .25s var(--ease), background-color .25s var(--ease), transform .25s var(--ease);
}
.nav__link:hover { transform: translateY(-1px); }
.nav__link--venue { color: var(--cypress); background: var(--paper); }
.nav__link--venue:hover { color: var(--cypress); background: white; }
.nav__link--pricing { color: #19170f; background: #e0aa58; }
.nav__link--pricing:hover { color: #19170f; background: #f0c177; }

.hero__copy { padding-bottom: clamp(6.75rem, 12vh, 9.5rem); }
.eyebrow, .section-kicker, .step {
  margin: 0;
  color: var(--gold-dark);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .17em;
  line-height: 1.4;
  text-transform: uppercase;
}
.hero .eyebrow { color: #f3d29e; }

.hero__title { margin: 1.2rem 0 0; font-family: var(--serif); font-weight: 400; letter-spacing: -.055em; line-height: .88; }
.hero__title span { display: block; }
.hero__welcome { color: white; font-size: clamp(3.6rem, 7vw, 7.25rem); }
.hero__name { color: #f4d7a8; font-size: clamp(5rem, 9.5vw, 9rem); font-style: italic; }
.hero__descriptor { margin-top: .45rem; color: white; font-size: clamp(2rem, 4vw, 3.6rem); letter-spacing: -.035em; line-height: 1; }
.hero__line { margin: 1.55rem 0 0; max-width: 48ch; font-family: var(--serif); font-size: clamp(1.1rem, 2vw, 1.5rem); font-style: italic; line-height: 1.4; }
.hero__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1rem 1.5rem; margin-top: 1.8rem; }
.hero__explore {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-top: .75rem;
  padding: .45rem .85rem;
  border: 1px solid rgba(243, 210, 158, .7);
  color: #ffe0ad;
  background: rgba(17, 32, 25, .28);
  font-size: .88rem;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
  transition: color .25s var(--ease), background-color .25s var(--ease), border-color .25s var(--ease), gap .25s var(--ease);
}
.hero__explore:hover { border-color: #f3d29e; color: white; background: rgba(17, 32, 25, .55); gap: .8rem; }

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .8rem 1.45rem;
  border: 1px solid transparent;
  font-size: .92rem;
  font-weight: 750;
  letter-spacing: .015em;
  transition: background-color .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.button:hover { transform: translateY(-2px); }
.button--gold { color: #19170f; background: #e0aa58; }
.button--gold:hover { background: #f0c177; }
.button--dark { color: white; background: var(--cypress); }
.button--dark:hover { background: var(--cypress-soft); }
.button--outline { border-color: var(--cypress); color: var(--cypress); }
.button--outline:hover { color: white; background: var(--cypress); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  min-height: 44px;
  border-bottom: 1px solid currentColor;
  font-size: .92rem;
  font-weight: 750;
  transition: color .25s var(--ease), gap .25s var(--ease);
}
.text-link:hover { color: var(--gold-dark); gap: .8rem; }
.text-link--light { color: white; border-bottom-color: rgba(255,255,255,.7); }
.text-link--light:hover { color: #f5d8aa; }

.hero__address {
  position: absolute;
  right: max(1.5rem, calc((100vw - var(--wide)) / 2));
  bottom: 1.6rem;
  color: rgba(255,255,255,.74);
  font-size: .73rem;
  font-weight: 650;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.intro { padding-block: clamp(6rem, 12vw, 10rem); text-align: center; }
.intro h2, .tour h2 {
  max-width: 21ch;
  margin: 1.2rem auto 0;
  font-family: var(--serif);
  font-size: clamp(2.25rem, 5.1vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.06;
  text-wrap: balance;
}
.intro__copy { max-width: 56ch; margin: 1.7rem auto 0; color: var(--muted); font-size: 1.08rem; }

.journey { position: relative; padding-bottom: clamp(5rem, 10vw, 9rem); }
.journey__path {
  position: absolute;
  inset: 0 auto 0 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent 0, var(--gold) 8%, var(--line) 92%, transparent 100%);
  transform-origin: top;
}

.place {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 7rem);
  padding-block: clamp(3.5rem, 8vw, 6rem);
}
.place:nth-of-type(odd) .place__media { order: 2; }
.place:nth-of-type(odd) .place__copy { order: 1; }
.place__media { margin: 0; overflow: hidden; background: #dfd7c9; box-shadow: 0 1.4rem 4rem rgba(43, 36, 24, .12); }
.place__media > img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .8s var(--ease); }
.place__media:hover > img { transform: scale(1.025); }
.place__media--duo { display: grid; grid-template-columns: 1.1fr .9fr; gap: .65rem; padding: .65rem; background: white; }
.place__media--duo > img { aspect-ratio: auto; height: 100%; min-height: 28rem; }
.place__media--duo > img:first-child { object-position: 46% 50%; }
.place__media--duo > img:last-child { object-position: 53% 50%; }
.place__copy { padding: clamp(1.3rem, 3vw, 2.4rem); background: var(--ivory); }
.step { display: flex; align-items: center; gap: .85rem; }
.step span { display: inline-grid; place-items: center; width: 2.35rem; height: 2.35rem; border: 1px solid var(--gold); border-radius: 50%; color: var(--cypress); letter-spacing: 0; }
.place h2 { margin: 1.25rem 0 0; font-family: var(--serif); font-size: clamp(2.4rem, 4.8vw, 4.25rem); font-weight: 400; letter-spacing: -.04em; line-height: 1; }
.place p:not(.step) { max-width: 48ch; margin: 1.35rem 0 0; }
.place .detail { color: var(--muted); }
.place .text-link { margin-top: 1.2rem; }

.recognition {
  position: relative;
  min-height: 34rem;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  color: white;
  background: var(--cypress);
}
.recognition__photo, .recognition__photo img, .recognition__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.recognition__photo { z-index: -3; }
.recognition__photo img { object-fit: cover; object-position: center 50%; }
.recognition__shade { z-index: -2; background: linear-gradient(90deg, rgba(27,46,36,.92), rgba(27,46,36,.58)); }
.recognition__content { display: grid; grid-template-columns: minmax(9rem, 13rem) minmax(0, 1fr); align-items: center; gap: clamp(2rem, 5vw, 5rem); padding-block: 5rem; }
.award-badge { width: 100%; height: auto; filter: drop-shadow(0 1rem 2rem rgba(0,0,0,.35)); }
.recognition h2 { max-width: 19ch; margin: .9rem 0 0; font-family: var(--serif); font-size: clamp(2.2rem, 5vw, 4.3rem); font-weight: 400; line-height: 1.03; letter-spacing: -.035em; }
.section-kicker--light { color: #f3d09a; }

.tour { position: relative; padding-block: clamp(7rem, 13vw, 11rem); text-align: center; }
.tour__line { width: 1px; height: 4.5rem; margin: -3.5rem auto 2.8rem; background: var(--gold); }
.tour > p:not(.section-kicker) { max-width: 44ch; margin: 1.5rem auto 0; color: var(--muted); }
.tour__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }

.footer { color: rgba(255,255,255,.76); background: var(--cypress); }
.footer__inner { display: grid; grid-template-columns: 1.2fr 1fr auto; gap: 2rem 4rem; align-items: start; padding-block: 4.2rem 2.3rem; }
.footer__brand { width: min(19rem, 100%); padding: 0; background: transparent; }
.footer address { font-size: .9rem; font-style: normal; line-height: 1.65; }
.footer__links { display: grid; gap: .4rem; font-size: .88rem; }
.footer__links a {
  min-height: 44px;
  display: flex;
  align-items: center;
  transition: color .2s var(--ease);
}
.footer__links a:hover { color: white; }
.footer__legal { grid-column: 1 / -1; margin: 1rem 0 0; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.14); font-size: .75rem; }

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

@keyframes hero-breathe {
  from { transform: scale(1.025); filter: saturate(.88); }
  to { transform: scale(1); filter: saturate(1); }
}

@media (max-width: 820px) {
  .wrap, .wrap--wide { width: min(calc(100% - 2rem), var(--maxw)); }
  .nav { min-height: 9rem; flex-wrap: wrap; align-content: center; gap: .55rem 1rem; padding-block: .8rem; }
  .nav__brand { width: 12.5rem; }
  .nav__links { flex: 0 0 100%; display: grid; grid-template-columns: 1fr 1fr; gap: .55rem; }
  .nav__link { width: 100%; display: inline-flex; padding-inline: .65rem; font-size: .78rem; }
  .hero { min-height: max(100svh, 61rem); }
  .hero__photo { object-position: 58% 50%; }
  .hero__shade { background: linear-gradient(0deg, rgba(16,31,24,.93) 0%, rgba(16,31,24,.62) 68%, rgba(16,31,24,.32) 100%); }
  .hero__copy { padding-top: 10.5rem; padding-bottom: 6.5rem; }
  .hero__welcome { font-size: clamp(3.15rem, 14vw, 4.4rem); }
  .hero__name { font-size: clamp(4.35rem, 18vw, 5.65rem); }
  .hero__descriptor { font-size: clamp(1.7rem, 7.5vw, 2.3rem); }
  .hero__line { max-width: 30ch; font-size: 1.08rem; }
  .hero__address { left: 1rem; right: 1rem; bottom: 1.1rem; text-align: center; }

  .journey__path { left: 1.55rem; }
  .place { grid-template-columns: 1fr; gap: 1.5rem; padding-block: 3.7rem; }
  .place:nth-of-type(odd) .place__media, .place:nth-of-type(odd) .place__copy { order: initial; }
  .place__media, .place__copy { margin-left: 1rem; }
  .place__copy { padding: 1.25rem .4rem 1.25rem 1.2rem; }
  .place__media--duo { grid-template-columns: 1fr; }
  .place__media--duo > img { min-height: 0; aspect-ratio: 4 / 3; }

  .recognition__content { grid-template-columns: 7rem 1fr; gap: 1.5rem; }
  .recognition h2 { font-size: clamp(2rem, 9vw, 3.25rem); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand, .footer__legal { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .hero__actions { align-items: stretch; flex-direction: column; }
  .hero__actions .button, .hero__actions .text-link { width: 100%; justify-content: center; }
  .hero__explore { width: 100%; justify-content: center; }
  .recognition { min-height: 37rem; }
  .recognition__content { grid-template-columns: 1fr; text-align: center; }
  .recognition__content > img { width: 6.5rem; margin-inline: auto; }
  .recognition h2 { margin-inline: auto; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__brand, .footer__legal { grid-column: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__photo { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .place__media > img, .button, .text-link, .nav__link, .hero__explore { transition: none; }
}

@media (forced-colors: active) {
  a:focus-visible, button:focus-visible { outline: 3px solid Highlight; }
  .button, .nav__link, .text-link { border: 1px solid ButtonText; }
  .hero__shade, .recognition__shade { background: Canvas; opacity: .78; }
}
