:root {
  --forest: #102d24;
  --forest-2: #173c31;
  --forest-3: #225044;
  --ink: #17231f;
  --cream: #f4efe4;
  --cream-2: #ebe3d4;
  --paper: #fffdf8;
  --gold: #cba66b;
  --gold-soft: #e1c99f;
  --line: rgba(23, 35, 31, .18);
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --page: min(1440px, calc(100vw - 8vw));
  --radius: 2px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: auto;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

::selection {
  background: var(--gold);
  color: var(--forest);
}

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

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  background: var(--paper);
  color: var(--forest);
  transform: translateY(-160%);
  transition: transform .2s;
}

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

.section {
  width: var(--page);
  margin-inline: auto;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: var(--gold-soft);
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .2em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 38px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow.dark {
  color: #7f633b;
}

.section-number {
  color: #62594b;
  font-family: var(--serif);
  font-size: .9rem;
  font-style: italic;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 25px;
  border: 1px solid transparent;
  border-radius: 99px;
  font-size: .76rem;
  font-weight: 750;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
  transition: background-color .25s, color .25s, transform .25s, border-color .25s;
}

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

.button-light {
  background: var(--paper);
  color: var(--forest);
}

.button-light:hover {
  background: var(--gold-soft);
}

.button-dark {
  background: var(--forest);
  color: #fff;
}

.button-dark:hover {
  background: var(--forest-3);
}

.button-outline {
  border-color: rgba(255, 255, 255, .55);
  background: transparent;
  color: #fff;
}

.button-outline:hover {
  border-color: #fff;
  background: #fff;
  color: var(--forest);
}

.text-link,
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-block: 8px;
  border-bottom: 1px solid currentColor;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.text-link span,
.arrow-link span {
  transition: transform .25s;
}

.text-link:hover span,
.arrow-link:hover span {
  transform: translate(3px, -2px);
}

.stay-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}

/* Header */

.site-header {
  position: fixed;
  z-index: 1000;
  top: 20px;
  left: 50%;
  display: grid;
  width: min(1440px, calc(100vw - 40px));
  min-height: 76px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 99px;
  background: rgba(13, 38, 30, .64);
  box-shadow: 0 12px 50px rgba(0, 0, 0, .12);
  color: #fff;
  transform: translateX(-50%);
  transition: top .3s, min-height .3s, background .3s, box-shadow .3s;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  top: 10px;
  min-height: 66px;
  background: rgba(13, 38, 30, .94);
  box-shadow: 0 14px 45px rgba(0, 0, 0, .2);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(225, 201, 159, .8);
  border-radius: 50%;
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: .94rem;
  font-style: italic;
  letter-spacing: -.05em;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 500;
}

.brand-copy small {
  margin-top: 4px;
  color: rgba(255, 255, 255, .62);
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 38px);
}

.main-nav a {
  position: relative;
  padding: 12px 0;
  color: rgba(255, 255, 255, .83);
  font-size: .72rem;
  font-weight: 650;
  letter-spacing: .06em;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: var(--gold-soft);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s;
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  gap: 13px;
  padding: 0 21px;
  border-radius: 99px;
  background: var(--paper);
  color: var(--forest);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background .25s, transform .25s;
}

.header-cta:hover {
  background: var(--gold-soft);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  place-content: center;
  gap: 5px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 21px;
  height: 1px;
  background: #fff;
  transition: transform .25s, opacity .25s;
}

/* Hero */

.hero {
  position: relative;
  display: grid;
  min-height: 900px;
  height: 100svh;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  overflow: hidden;
  background: var(--forest);
  color: #fff;
}

.hero::before {
  position: absolute;
  z-index: 1;
  top: 120px;
  left: 49%;
  width: 1px;
  height: 110px;
  background: linear-gradient(transparent, rgba(255, 255, 255, .28));
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 150px 8vw 150px max(5vw, calc((100vw - 1440px) / 2));
  background:
    radial-gradient(circle at 20% 85%, rgba(203, 166, 107, .10), transparent 28%),
    linear-gradient(145deg, var(--forest-2), var(--forest) 62%);
}

.hero-copy::after {
  position: absolute;
  right: 5%;
  bottom: 3%;
  color: rgba(255, 255, 255, .035);
  content: "H";
  font-family: var(--serif);
  font-size: min(41vw, 640px);
  line-height: .7;
  pointer-events: none;
}

.hero h1 {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.55rem, 5.55vw, 6.7rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .94;
}

.hero h1 em,
.moments h2 em {
  color: var(--gold-soft);
  font-weight: 400;
}

.hero-lead {
  position: relative;
  z-index: 1;
  max-width: 530px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, .69);
  font-size: clamp(.97rem, 1.1vw, 1.16rem);
  line-height: 1.75;
}

.hero-actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 40px;
}

.hero-note {
  position: absolute;
  z-index: 2;
  right: 7%;
  bottom: 48px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, .58);
  font-size: .62rem;
  font-weight: 650;
  letter-spacing: .09em;
  line-height: 1.5;
  text-transform: uppercase;
}

.pulse {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-soft);
}

.pulse::after {
  position: absolute;
  inset: -5px;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  content: "";
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: .2; transform: scale(.75); }
  50% { opacity: .8; transform: scale(1); }
}

.hero-visual {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #0c201a;
}

.hero-visual::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 45, 36, .36), transparent 34%), linear-gradient(0deg, rgba(4, 16, 12, .5), transparent 48%);
  content: "";
}

.hero-visual img {
  height: 100%;
  object-fit: cover;
  object-position: 49% 50%;
  transform: scale(1.04);
  animation: heroDrift 16s ease-out both;
}

.hero-visual picture {
  display: block;
  height: 100%;
}

@keyframes heroDrift {
  from { transform: scale(1.12); }
  to { transform: scale(1.04); }
}

.hero-visual figcaption {
  position: absolute;
  z-index: 2;
  right: 5vw;
  bottom: 46px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, .76);
  font-size: .6rem;
  font-weight: 650;
  letter-spacing: .1em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero-visual figcaption > span:first-child {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.06em;
  line-height: 1;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 47px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, .65);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  transform: translateX(-50%) rotate(-90deg) translateX(45px);
  transform-origin: center;
}

.scroll-cue i {
  width: 60px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, .2);
}

.scroll-cue i::after {
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  content: "";
  animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
  from { transform: translateX(-100%); }
  to { transform: translateX(100%); }
}

.quick-book {
  position: relative;
  z-index: 10;
  display: grid;
  width: min(1120px, calc(100vw - 8vw));
  min-height: 118px;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  align-items: stretch;
  margin: -59px auto 0;
  border: 1px solid rgba(255, 255, 255, .55);
  background: var(--paper);
  box-shadow: 0 22px 60px rgba(37, 46, 41, .12);
}

.quick-book p {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 22px 34px;
  background: var(--gold);
  color: var(--forest);
}

.quick-book p span {
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.quick-book p strong {
  margin-top: 6px;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
}

.quick-book > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 26px;
  border-right: 1px solid var(--line);
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: background .25s;
}

.quick-book > a:last-child {
  border-right: 0;
}

.quick-book > a:hover {
  background: var(--cream-2);
}

.quick-book > a span {
  color: #82653a;
  font-size: 1rem;
}

/* Intro */

.intro {
  display: grid;
  grid-template-columns: .25fr 1fr 1.25fr;
  gap: clamp(30px, 6vw, 110px);
  align-items: start;
  padding-block: clamp(130px, 15vw, 230px);
}

.intro-kicker {
  display: flex;
  flex-direction: column;
  padding-top: 45px;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 2rem);
  line-height: 1.15;
}

.intro-kicker .scribble {
  position: relative;
  width: max-content;
  color: #876942;
  font-size: 1.55em;
  font-style: italic;
}

.intro-kicker .scribble::after {
  position: absolute;
  right: -5px;
  bottom: -2px;
  left: -5px;
  height: 7px;
  border-top: 1px solid #876942;
  border-radius: 50%;
  content: "";
  transform: rotate(-2deg);
}

.intro-copy h2,
.experience-content h2,
.story-copy h2,
.gallery-head h2,
.concierge-callout h2,
.contact-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 4.25vw, 5.5rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .98;
}

.intro-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin: 34px 0 26px;
  color: #59645f;
  font-size: 1.03rem;
}

/* Experience */

.experience {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(420px, .9fr);
  gap: clamp(48px, 7vw, 130px);
  align-items: center;
  padding-bottom: clamp(130px, 14vw, 220px);
}

.experience-media {
  position: relative;
  height: min(750px, 64vw);
  min-height: 600px;
  overflow: hidden;
  background: #c9c2b3;
}

.experience-media::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .2);
  content: "";
  pointer-events: none;
}

.experience-media img {
  height: 100%;
  object-fit: cover;
  transition: opacity .35s, transform .75s cubic-bezier(.2, .75, .3, 1);
}

.experience-media.is-changing img {
  opacity: .3;
  transform: scale(1.045);
}

.image-index {
  position: absolute;
  right: 25px;
  bottom: 25px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 99px;
  background: rgba(11, 28, 23, .5);
  color: #fff;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.experience-content h2 {
  max-width: 580px;
  margin-bottom: 38px;
}

.experience-tabs {
  border-top: 1px solid var(--line);
}

.experience-tab {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 19px 2px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: #59635e;
  cursor: pointer;
  font-size: .77rem;
  font-weight: 750;
  letter-spacing: .1em;
  text-align: left;
  text-transform: uppercase;
  transition: color .25s, padding .25s;
}

.experience-tab span {
  font-family: var(--serif);
  font-size: .84rem;
  font-style: italic;
  font-weight: 400;
}

.experience-tab:hover,
.experience-tab.is-active {
  padding-left: 12px;
  color: var(--forest);
}

.experience-tab.is-active::before {
  width: 5px;
  height: 5px;
  margin-right: 12px;
  border-radius: 50%;
  background: #a47d44;
  content: "";
  grid-column: auto;
}

.experience-tab.is-active {
  grid-template-columns: auto 1fr auto;
}

.experience-detail {
  padding-top: 34px;
}

.experience-detail h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
}

.experience-detail p {
  max-width: 530px;
  margin: 0 0 21px;
  color: #59635e;
  font-size: .95rem;
}

.experience-detail a {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid var(--ink);
  font-size: .7rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Moments */

.moments {
  overflow: hidden;
  padding-top: clamp(100px, 11vw, 170px);
  background: var(--forest);
  color: #fff;
}

.moments-head {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 50px;
  align-items: end;
}

.moments-head .eyebrow {
  align-self: start;
}

.moments-head h2 {
  max-width: 800px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 6.4vw, 7.8rem);
  font-weight: 400;
  letter-spacing: -.06em;
  line-height: .9;
}

.moments-head > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, .61);
  font-size: .92rem;
}

.moments-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 26px;
  align-items: start;
  margin-top: 100px;
}

.moment-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #0b211a;
}

.moment-card:nth-child(2) {
  margin-top: 120px;
}

.moment-card:nth-child(3) {
  grid-column: 2;
}

.moment-card img {
  height: 410px;
  object-fit: cover;
  opacity: .85;
  transition: opacity .5s, transform .8s cubic-bezier(.18, .78, .24, 1);
}

.moment-card-large {
  grid-row: span 2;
}

.moment-card-large img {
  height: 880px;
}

.moment-card:hover img {
  opacity: 1;
  transform: scale(1.035);
}

.moment-card > div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 80px 32px 30px;
  background: linear-gradient(transparent, rgba(4, 19, 14, .9));
}

.moment-card span {
  font-family: var(--serif);
  font-size: .8rem;
  font-style: italic;
}

.moment-card h3 {
  margin: 6px 0 3px;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 2.5vw, 3rem);
  font-weight: 400;
  letter-spacing: -.03em;
}

.moment-card p {
  max-width: 460px;
  margin: 0;
  color: rgba(255, 255, 255, .66);
  font-size: .85rem;
}

.marquee {
  width: 100%;
  margin-top: 110px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, .12);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.marquee > div {
  display: flex;
  width: max-content;
  align-items: center;
  padding: 26px 0 32px;
  animation: marquee 28s linear infinite;
}

.marquee span {
  padding-inline: 36px;
  color: rgba(255, 255, 255, .72);
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 5rem);
  font-style: italic;
  letter-spacing: -.04em;
}

.marquee i {
  color: var(--gold);
  font-size: 1rem;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* Story */

.atlas-strip {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  margin-block: 130px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.atlas-intro {
  padding: clamp(48px, 7vw, 100px);
}

.atlas-intro h2 {
  max-width: 760px;
  margin: 0;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(3.3rem, 6vw, 6.8rem);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .9;
}

.atlas-intro > p:not(.eyebrow) {
  max-width: 650px;
  margin: 30px 0;
  color: #5f5a51;
}

.atlas-current {
  position: relative;
  display: flex;
  min-height: 470px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: clamp(40px, 5vw, 74px);
  background: var(--forest);
  color: #fff;
  isolation: isolate;
}

.atlas-current::before,
.atlas-current::after {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(225, 201, 159, .3);
  border-radius: 50%;
  content: "";
}

.atlas-current::before {
  top: -120px;
  right: -60px;
  width: 390px;
  height: 390px;
}

.atlas-current::after {
  top: -36px;
  right: 22px;
  width: 225px;
  height: 225px;
}

.atlas-current > span {
  color: var(--gold-soft);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.atlas-current strong {
  margin-top: 12px;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 5.4rem);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: .95;
}

.atlas-current p {
  max-width: 440px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .68);
}

.atlas-current i {
  position: absolute;
  right: 40px;
  bottom: 38px;
  color: var(--gold-soft);
  font-size: 1.5rem;
  font-style: normal;
  transition: transform .25s;
}

.atlas-current:hover i {
  transform: translateX(7px);
}

.atlas-stats {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.atlas-stats p {
  display: flex;
  min-height: 135px;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 28px clamp(25px, 4vw, 60px);
  border-right: 1px solid var(--line);
}

.atlas-stats p:last-child {
  border: 0;
}

.atlas-stats strong {
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1;
}

.atlas-stats span {
  color: #6b655b;
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.story {
  display: grid;
  grid-template-columns: .18fr .9fr 1.15fr .4fr;
  gap: clamp(24px, 4vw, 70px);
  align-items: center;
  min-height: 1000px;
  padding-block: 150px;
}

.story-copy {
  align-self: center;
}

.story-copy h2 {
  font-size: clamp(3.2rem, 5.1vw, 6.4rem);
}

.story-copy > p:not(.eyebrow) {
  margin: 30px 0;
  color: #606b66;
}

.story-copy blockquote {
  margin: 45px 0 0;
  padding: 24px 0 0 24px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  color: #755f3f;
  font-family: var(--serif);
  font-size: 1.18rem;
  font-style: italic;
  line-height: 1.5;
}

.story-image {
  margin: 0;
}

.story-image-main img {
  height: 720px;
  object-fit: cover;
}

.story-image-small {
  align-self: end;
  margin-bottom: -90px;
}

.story-image-small img {
  height: 390px;
  object-fit: cover;
}

.story-image-small figcaption {
  margin-top: 13px;
  color: #887a63;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

/* Stay */

.stay {
  display: grid;
  min-height: 760px;
  grid-template-columns: 1.3fr .7fr;
  background: var(--forest-2);
  color: #fff;
}

.stay-image {
  min-height: 680px;
  overflow: hidden;
}

.stay-image img {
  height: 100%;
  object-fit: cover;
}

.stay-copy {
  display: flex;
  width: auto;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin: 0;
  padding: clamp(55px, 7vw, 115px);
}

.stay-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 4.3vw, 5.3rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .98;
}

.stay-copy > p:not(.eyebrow) {
  max-width: 500px;
  margin: 30px 0;
  color: rgba(255, 255, 255, .65);
}

/* Gallery */

.gallery {
  padding-block: clamp(130px, 14vw, 220px);
}

.gallery-head {
  display: grid;
  grid-template-columns: .7fr 1.6fr .7fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 80px;
}

.gallery-head .eyebrow {
  align-self: start;
}

.gallery-head > p:last-child {
  margin: 0;
  color: #59635e;
  font-size: .88rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: .7fr 1fr 1fr;
  grid-template-rows: 330px 330px;
  gap: 18px;
}

.gallery-item {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: #ccc3b1;
  cursor: zoom-in;
}

.gallery-item::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: 50%;
  background: rgba(11, 30, 24, .3);
  color: #fff;
  content: "+";
  font-size: 1.2rem;
  transition: background .25s, transform .25s;
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
}

.gallery-item:hover::after {
  background: var(--forest);
  transform: rotate(90deg);
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.18, .78, .24, 1);
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-tall {
  grid-row: 1 / 3;
}

.gallery-wide {
  grid-column: 2 / 4;
}

.lightbox {
  width: min(1200px, calc(100vw - 40px));
  max-width: none;
  height: min(860px, calc(100vh - 40px));
  max-height: none;
  padding: 0;
  border: 0;
  background: #071510;
  color: #fff;
}

.lightbox::backdrop {
  background: rgba(2, 10, 7, .86);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.lightbox img {
  height: 100%;
  object-fit: contain;
}

.lightbox button {
  position: absolute;
  z-index: 2;
  top: 15px;
  right: 15px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  padding: 0 0 3px;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 50%;
  background: rgba(7, 21, 16, .75);
  color: #fff;
  cursor: pointer;
  font-size: 1.7rem;
}

/* Concierge */

.concierge-callout {
  display: grid;
  grid-template-columns: .45fr 1.15fr .9fr;
  gap: clamp(36px, 6vw, 100px);
  align-items: center;
  margin-bottom: 160px;
  padding: 70px clamp(34px, 5vw, 80px);
  border: 1px solid rgba(203, 166, 107, .35);
  background: var(--gold-soft);
  color: var(--forest);
}

.concierge-orbit {
  position: relative;
  display: grid;
  width: clamp(120px, 12vw, 175px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(16, 45, 36, .38);
  border-radius: 50%;
}

.concierge-orbit::before,
.concierge-orbit::after {
  position: absolute;
  inset: 13%;
  border: 1px solid rgba(16, 45, 36, .2);
  border-radius: 50%;
  content: "";
}

.concierge-orbit::after {
  inset: 30%;
  background: var(--forest);
}

.concierge-orbit span {
  position: relative;
  z-index: 1;
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 1.3rem;
  font-style: italic;
}

.concierge-callout .eyebrow {
  color: #594226;
}

.concierge-callout h2 {
  font-size: clamp(2.8rem, 4vw, 5rem);
}

.concierge-copy p {
  margin: 0 0 25px;
  color: rgba(16, 45, 36, .73);
}

.concierge-copy button {
  cursor: pointer;
}

/* Contact & footer */

.contact {
  display: grid;
  min-height: 760px;
  grid-template-columns: .9fr 1.1fr;
  background: #091e17;
  color: #fff;
}

.contact-image {
  min-height: 680px;
  overflow: hidden;
}

.contact-image img {
  height: 100%;
  object-fit: cover;
  opacity: .74;
  filter: saturate(.65);
}

.contact-copy {
  display: flex;
  width: auto;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin: 0;
  padding: clamp(60px, 9vw, 145px);
}

.contact-copy h2 {
  max-width: 720px;
  font-size: clamp(3rem, 5vw, 6.6rem);
}

.contact-copy address {
  display: grid;
  margin: 35px 0;
  font-style: normal;
}

.contact-copy address p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, .65);
}

.contact-copy address a {
  width: max-content;
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 1.35rem;
}

.contact-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr .7fr .9fr .7fr;
  gap: 55px;
  padding: 70px max(5vw, calc((100vw - 1440px) / 2));
  border-top: 1px solid rgba(255, 255, 255, .1);
  background: #091e17;
  color: #fff;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-brand p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.2;
}

.footer-brand small {
  color: #92a09b;
  font-family: var(--sans);
  font-size: .58rem;
  font-weight: 650;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.footer-links a {
  color: rgba(255, 255, 255, .65);
  font-size: .74rem;
  transition: color .2s;
}

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

.footer-meta {
  margin: 0;
  color: #8d9b96;
  font-size: .66rem;
  line-height: 1.9;
}

.mobile-actions {
  display: none;
}

hubertus-ai-concierge {
  --hc-accent: var(--forest);
  --hc-accent-hover: var(--forest-3);
}

@supports (content-visibility: auto) {
  .intro,
  .experience,
  .moments,
  .atlas-strip,
  .story,
  .stay,
  .gallery,
  .concierge-callout,
  .contact,
  .site-footer {
    content-visibility: auto;
    contain-intrinsic-size: auto 900px;
  }
}

/* Motion */

@media (min-width: 641px) {
  .has-js .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .75s ease, transform .75s cubic-bezier(.18, .74, .25, 1);
  }

  .has-js .reveal.in-view {
    opacity: 1;
    transform: translateY(0);
  }

  .hero-copy .reveal:nth-child(2) { transition-delay: .08s; }
  .hero-copy .reveal:nth-child(3) { transition-delay: .16s; }
  .hero-copy .reveal:nth-child(4) { transition-delay: .24s; }
  .hero-copy .reveal:nth-child(5) { transition-delay: .32s; }
}

@media (max-width: 1180px) {
  .site-header {
    gap: 20px;
  }

  .main-nav {
    gap: 17px;
  }

  .main-nav a {
    font-size: .66rem;
  }

  .hero-copy {
    padding-left: 5vw;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 6vw, 5.4rem);
  }

  .moments-head,
  .gallery-head {
    grid-template-columns: .55fr 1.7fr .8fr;
  }

  .story {
    grid-template-columns: .1fr .9fr 1.15fr;
  }

  .story-image-small {
    display: none;
  }

  .stay {
    grid-template-columns: 1fr 1fr;
  }

  .concierge-callout {
    grid-template-columns: .35fr 1fr .9fr;
  }
}

@media (max-width: 960px) {
  :root {
    --page: calc(100vw - 48px);
  }

  .site-header {
    width: calc(100vw - 28px);
    grid-template-columns: 1fr auto auto;
  }

  .brand-copy small {
    display: none;
  }

  .menu-toggle {
    z-index: 2;
    display: grid;
    grid-column: 2;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    z-index: 1;
    inset: -22px -15px auto;
    display: flex;
    height: 100svh;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 100px 12vw;
    background: var(--forest);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity .25s, transform .25s;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    width: max-content;
    color: #fff;
    font-family: var(--serif);
    font-size: clamp(2.4rem, 7vw, 4rem);
    font-weight: 400;
    letter-spacing: -.03em;
  }

  .header-cta {
    grid-column: 3;
  }

  .hero {
    height: auto;
    min-height: 100svh;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(620px, 72svh) minmax(360px, 40svh);
  }

  .hero-copy {
    padding: 150px 7vw 90px;
  }

  .hero-copy::after {
    font-size: 60vw;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 10vw, 6.4rem);
  }

  .hero-note {
    right: 7vw;
    bottom: 32px;
  }

  .hero-visual figcaption {
    right: 30px;
    bottom: 30px;
  }

  .scroll-cue {
    display: none;
  }

  .quick-book {
    margin-top: 0;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .quick-book p {
    grid-column: 1 / -1;
  }

  .intro {
    grid-template-columns: .2fr 1fr;
  }

  .intro-kicker {
    display: none;
  }

  .experience {
    grid-template-columns: 1fr;
  }

  .experience-media {
    height: 650px;
    min-height: 0;
  }

  .moments-head {
    grid-template-columns: 1fr 2fr;
  }

  .moments-head > p:last-child {
    grid-column: 2;
  }

  .moments-grid {
    grid-template-columns: 1fr 1fr;
  }

  .moment-card-large img {
    height: 720px;
  }

  .atlas-strip {
    grid-template-columns: 1fr;
  }

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

  .atlas-stats p {
    display: block;
  }

  .atlas-stats span {
    display: block;
    margin-top: 8px;
  }

  .story {
    grid-template-columns: .12fr 1fr 1fr;
    gap: 26px;
  }

  .story-image-main img {
    height: 620px;
  }

  .stay {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .stay-image {
    height: 620px;
    min-height: 0;
  }

  .gallery-head {
    grid-template-columns: 1fr 2fr;
  }

  .gallery-head > p:last-child {
    grid-column: 2;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 500px 300px 360px;
  }

  .gallery-tall {
    grid-row: 1 / 3;
  }

  .gallery-wide {
    grid-column: 1 / 3;
  }

  .concierge-callout {
    grid-template-columns: .3fr 1fr;
  }

  .concierge-copy {
    grid-column: 2;
  }

  .contact {
    grid-template-columns: 1fr;
  }

  .contact-image {
    height: 500px;
    min-height: 0;
  }

  .site-footer {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-meta {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  :root {
    --page: calc(100vw - 32px);
  }

  html {
    scroll-padding-top: 84px;
  }

  body {
    padding-bottom: 64px;
  }

  .site-header {
    top: 8px;
    width: calc(100vw - 16px);
    min-height: 64px;
    padding: 7px 9px 7px 12px;
    background: rgba(13, 38, 30, .98);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .site-header.is-scrolled {
    top: 6px;
    min-height: 60px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-copy strong {
    font-size: .94rem;
  }

  .header-cta {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    grid-column: 2;
  }

  .hero {
    display: flex;
    min-height: 100svh;
    flex-direction: column;
  }

  .hero-copy {
    min-height: 690px;
    justify-content: flex-end;
    padding: 130px 24px 62px;
  }

  .hero-copy .eyebrow {
    max-width: 260px;
    margin-bottom: 18px;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 14.8vw, 5rem);
  }

  .hero-lead {
    margin-top: 24px;
    font-size: .9rem;
    line-height: 1.65;
  }

  .hero-actions {
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 28px;
  }

  .hero-actions .text-link {
    font-size: .68rem;
  }

  .hero-note {
    display: none;
  }

  .hero-visual {
    height: 380px;
  }

  .hero-visual img {
    animation: none;
    transform: none;
  }

  .pulse::after,
  .marquee > div {
    animation: none;
  }

  .hero-visual figcaption {
    right: 20px;
    bottom: 20px;
  }

  .quick-book {
    width: 100%;
    grid-template-columns: 1fr;
    border: 0;
  }

  .quick-book p {
    padding: 23px 24px;
  }

  .quick-book > a {
    min-height: 68px;
    padding: 18px 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .intro {
    grid-template-columns: 1fr;
    padding-block: 110px;
  }

  .intro .section-number {
    display: none;
  }

  .intro-copy h2,
  .experience-content h2,
  .gallery-head h2,
  .concierge-callout h2,
  .contact-copy h2 {
    font-size: clamp(2.65rem, 12vw, 4rem);
  }

  .experience {
    gap: 45px;
    padding-bottom: 110px;
  }

  .experience-media {
    width: calc(100% + 32px);
    height: 470px;
    margin-left: -16px;
  }

  .experience-tab {
    padding-block: 17px;
  }

  .experience-detail h3 {
    font-size: 1.75rem;
  }

  .moments {
    padding-top: 95px;
  }

  .moments-head {
    display: block;
  }

  .moments-head h2 {
    font-size: clamp(3.2rem, 15vw, 5rem);
  }

  .moments-head > p:last-child {
    margin-top: 28px;
  }

  .moments-grid {
    display: block;
    width: calc(100% - 32px);
    margin-top: 60px;
  }

  .moment-card,
  .moment-card:nth-child(2),
  .moment-card:nth-child(3) {
    margin: 0 0 18px;
  }

  .moment-card img,
  .moment-card-large img {
    height: 480px;
  }

  .moment-card > div {
    padding: 70px 22px 24px;
  }

  .atlas-strip {
    width: calc(100% - 32px);
    margin-block: 90px;
  }

  .atlas-intro {
    padding: 55px 24px 62px;
  }

  .atlas-intro h2 {
    font-size: clamp(3rem, 13vw, 4.5rem);
  }

  .atlas-current {
    min-height: 440px;
    padding: 40px 24px;
  }

  .atlas-current i {
    right: 24px;
    bottom: 34px;
  }

  .atlas-stats {
    grid-template-columns: 1fr;
  }

  .atlas-stats p {
    min-height: 100px;
    padding: 23px 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .atlas-stats p:last-child {
    border: 0;
  }

  .marquee {
    margin-top: 80px;
  }

  .story {
    display: flex;
    min-height: 0;
    flex-direction: column;
    padding-block: 110px;
  }

  .story .section-number {
    display: none;
  }

  .story-copy h2 {
    font-size: clamp(3rem, 14vw, 4.7rem);
  }

  .story-image-main {
    width: 100%;
    margin-top: 35px;
  }

  .story-image-main img {
    height: 500px;
  }

  .stay-image {
    height: 420px;
  }

  .stay-copy {
    padding: 80px 24px 90px;
  }

  .stay-copy h2 {
    font-size: clamp(3rem, 13vw, 4.5rem);
  }

  .gallery {
    padding-block: 110px;
  }

  .gallery-head {
    display: block;
    margin-bottom: 45px;
  }

  .gallery-head > p:last-child {
    margin-top: 22px;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 380px 220px 250px;
    gap: 9px;
  }

  .concierge-callout {
    display: block;
    width: calc(100% - 32px);
    margin-bottom: 110px;
    padding: 50px 28px;
  }

  .concierge-orbit {
    width: 96px;
    margin-bottom: 45px;
  }

  .concierge-copy {
    margin-top: 25px;
  }

  .contact-image {
    height: 350px;
  }

  .contact-copy {
    padding: 80px 24px 95px;
  }

  .contact-actions {
    flex-wrap: wrap;
    gap: 18px;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    gap: 38px 25px;
    padding: 65px 24px;
  }

  .footer-brand,
  .footer-meta {
    grid-column: 1 / -1;
  }

  .mobile-actions {
    position: fixed;
    z-index: 900;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    height: 64px;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(255, 255, 255, .18);
    background: var(--forest);
    color: #fff;
  }

  hubertus-ai-concierge {
    bottom: 72px;
  }

  .mobile-actions a {
    display: grid;
    place-items: center;
    border-right: 1px solid rgba(255, 255, 255, .16);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
  }

  .mobile-actions a:last-child {
    border: 0;
    background: var(--gold);
    color: var(--forest);
  }

  .lightbox {
    width: calc(100vw - 18px);
    height: calc(100vh - 90px);
  }
}

/* Luxury experience — cinematic direction */

.scroll-progress {
  position: fixed;
  z-index: 3000;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left;
  background: linear-gradient(90deg, var(--gold), #f1d9ae);
}

.luxury-cursor {
  position: fixed;
  z-index: 2999;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  border: 1px solid rgba(255, 255, 255, .85);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(calc(var(--cursor-x, -40px) - 50%), calc(var(--cursor-y, -40px) - 50%), 0) scale(var(--cursor-scale, 1));
  transition: width .2s, height .2s, background-color .2s, opacity .2s;
  mix-blend-mode: difference;
}

.luxury-cursor.is-visible {
  opacity: 1;
}

.luxury-cursor.is-active {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, .16);
}

.hero {
  display: block;
  height: 100svh;
  min-height: 820px;
  isolation: isolate;
  background: #071a14;
}

.hero::before {
  z-index: 3;
  top: auto;
  right: 5vw;
  bottom: 118px;
  left: auto;
  width: 25vw;
  height: 1px;
  background: rgba(255, 255, 255, .25);
}

.hero::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    radial-gradient(circle at calc(50% + var(--hero-x, 0px)) calc(50% + var(--hero-y, 0px)), transparent 0, rgba(4, 16, 12, .08) 35%, rgba(4, 16, 12, .48) 100%),
    linear-gradient(90deg, rgba(5, 22, 16, .84) 0%, rgba(5, 22, 16, .35) 52%, rgba(5, 22, 16, .32) 100%),
    linear-gradient(0deg, rgba(5, 18, 14, .8), transparent 52%);
  content: "";
  pointer-events: none;
}

.hero-visual {
  position: absolute;
  z-index: 0;
  inset: 0;
  min-width: 0;
}

.hero-visual::before {
  z-index: 1;
  background: linear-gradient(90deg, rgba(8, 26, 20, .28), transparent 60%);
}

.hero-visual img {
  height: calc(100% + 100px);
  object-position: center 48%;
  animation: none;
  transform: translate3d(0, var(--hero-parallax, -50px), 0) scale(1.08);
  will-change: transform;
}

.hero-copy {
  position: relative;
  z-index: 4;
  display: flex;
  width: var(--page);
  height: 100%;
  min-height: 0;
  margin-inline: auto;
  flex-direction: column;
  justify-content: center;
  padding: 145px 0 115px;
  background: none;
}

.hero-copy::after {
  right: -2vw;
  bottom: 4%;
  color: rgba(255, 255, 255, .04);
  font-size: min(44vw, 680px);
}

.hero-copy .eyebrow {
  margin-bottom: 30px;
  color: #f1dbb4;
}

.hero h1 {
  width: 100%;
  max-width: none;
  color: #fff;
  font-size: clamp(4.8rem, 8.8vw, 9.4rem);
  letter-spacing: -.07em;
  line-height: .77;
  text-shadow: 0 18px 60px rgba(0, 0, 0, .24);
}

.hero h1 span {
  display: block;
  width: max-content;
  max-width: 100%;
}

.hero h1 span:nth-child(2) {
  margin-left: 20vw;
}

.hero h1 span:last-child {
  margin-top: .12em;
  margin-left: auto;
  font-size: .78em;
  letter-spacing: -.06em;
}

.hero h1 em {
  color: #e6c488;
  text-shadow: 0 8px 35px rgba(8, 20, 15, .25);
}

.hero-lead {
  width: min(560px, 44vw);
  margin: 42px 0 0 auto;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(.95rem, 1.18vw, 1.16rem);
  line-height: 1.75;
}

.hero-actions {
  margin-top: -58px;
}

.hero-actions .button-light {
  min-height: 60px;
  padding-inline: 32px;
  box-shadow: 0 16px 50px rgba(4, 18, 13, .2);
}

.hero-note {
  right: 0;
  bottom: 42px;
  color: rgba(255, 255, 255, .75);
}

.hero-visual figcaption {
  z-index: 4;
  top: 150px;
  right: 4vw;
  bottom: auto;
}

.scroll-cue {
  z-index: 4;
  bottom: 46px;
  left: max(4vw, calc((100vw - 1440px) / 2));
  color: rgba(255, 255, 255, .74);
}

.quick-book {
  z-index: 20;
  width: min(1240px, calc(100vw - 7vw));
  min-height: 106px;
  grid-template-columns: 1.15fr repeat(3, 1fr);
  margin: -53px auto 0;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 3px;
  background: rgba(13, 43, 33, .95);
  box-shadow: 0 30px 80px rgba(9, 29, 22, .2);
  color: #fff;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.quick-book p {
  border-color: rgba(255, 255, 255, .13);
}

.quick-book > a,
.quick-book > button {
  color: rgba(255, 255, 255, .78);
}

.quick-book p span {
  color: #17362c;
}

.quick-book > a,
.quick-book > button {
  display: flex;
  min-height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 25px 30px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, .13);
  background: transparent;
  cursor: pointer;
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-align: left;
  text-transform: uppercase;
  transition: background-color .25s, color .25s;
}

.quick-book > a:hover,
.quick-book > button:hover {
  background: var(--gold-soft);
  color: var(--forest);
}

.quick-book > button:last-child {
  border-right: 0;
}

.statement-marquee {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 105px 0 54px;
  background: var(--cream);
  color: var(--forest);
}

.statement-marquee > div {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 34px;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 7vw, 7.5rem);
  font-style: italic;
  letter-spacing: -.05em;
  line-height: 1;
  animation: marquee 38s linear infinite;
}

.statement-marquee i {
  color: var(--gold);
  font-family: var(--sans);
  font-size: .25em;
  font-style: normal;
}

.intro {
  min-height: 820px;
  padding-block: 140px 170px;
}

.intro-copy h2 {
  max-width: 900px;
  font-size: clamp(4rem, 6.3vw, 7.2rem);
  letter-spacing: -.055em;
  line-height: .92;
}

.intro-copy > p:not(.eyebrow) {
  max-width: 660px;
  font-size: 1.07rem;
}

.experience {
  align-items: start;
  gap: clamp(50px, 8vw, 135px);
  padding-block: 140px 180px;
}

.experience-media {
  position: sticky;
  top: 105px;
  height: calc(100svh - 135px);
  min-height: 620px;
  border-radius: 2px 90px 2px 2px;
  box-shadow: 0 35px 90px rgba(21, 39, 32, .16);
}

.experience-media::after {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 28px;
  width: 75px;
  height: 75px;
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: 50%;
  content: "↘";
  color: #fff;
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 75px;
  text-align: center;
}

.experience-content {
  padding-top: 80px;
}

.experience-content h2 {
  font-size: clamp(4rem, 5.4vw, 6.7rem);
}

.experience-tab {
  padding-block: 25px;
  font-size: clamp(1.3rem, 2vw, 2.1rem);
}

.experience-detail {
  padding: 30px;
  border-left: 1px solid var(--gold);
  background: rgba(255, 253, 248, .65);
}

.moments {
  padding-block: 180px 120px;
  background:
    radial-gradient(circle at 10% 20%, rgba(203, 166, 107, .08), transparent 30%),
    var(--forest);
}

.moments-grid {
  perspective: 1200px;
}

.moment-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .18);
  transform: perspective(1200px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateZ(0);
  transform-style: preserve-3d;
  transition: transform .25s ease, box-shadow .3s;
}

.moment-card:hover {
  box-shadow: 0 40px 90px rgba(0, 0, 0, .3);
}

.moment-card img {
  transform: scale(1.025);
  transition: transform .8s cubic-bezier(.16, .78, .22, 1);
}

.moment-card:hover img {
  transform: scale(1.075);
}

.event-studio {
  position: relative;
  display: grid;
  min-height: 980px;
  grid-template-columns: minmax(0, .88fr) minmax(640px, 1.12fr);
  overflow: hidden;
  background: #071d16;
  color: #fff;
}

.event-studio-image {
  position: relative;
  min-height: 760px;
  overflow: hidden;
}

.event-studio-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 58%, #071d16), linear-gradient(0deg, rgba(6, 25, 18, .5), transparent 55%);
  content: "";
}

.event-studio-image img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  object-position: 54% center;
  filter: saturate(.72) contrast(1.04);
  transform: translate3d(0, var(--parallax-y, -5%), 0) scale(1.04);
  will-change: transform;
}

.event-studio-panel {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 110px clamp(55px, 7vw, 120px) 110px clamp(45px, 6vw, 100px);
}

.event-studio-panel::before {
  position: absolute;
  top: 75px;
  right: 7vw;
  width: 160px;
  aspect-ratio: 1;
  border: 1px solid rgba(225, 201, 159, .22);
  border-radius: 50%;
  content: "";
}

.event-studio-head {
  position: relative;
  z-index: 1;
}

.event-studio-head h2 {
  max-width: 900px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.8rem, 5.7vw, 7rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .88;
}

.event-studio-head h2 em {
  color: var(--gold-soft);
  font-weight: 400;
}

.event-studio-head > p:last-child {
  max-width: 650px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, .65);
}

.event-planner {
  display: grid;
  gap: 34px;
  margin-top: 55px;
}

.occasion-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  border: 0;
}

.occasion-picker legend,
.guest-range > span:first-child {
  width: 100%;
  margin-bottom: 13px;
  color: var(--gold-soft);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.occasion-picker button {
  min-height: 45px;
  padding: 10px 17px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 99px;
  background: transparent;
  color: rgba(255, 255, 255, .72);
  cursor: pointer;
  font-size: .7rem;
  font-weight: 750;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: border-color .2s, background-color .2s, color .2s;
}

.occasion-picker button:hover,
.occasion-picker button[aria-pressed="true"] {
  border-color: var(--gold-soft);
  background: var(--gold-soft);
  color: var(--forest);
}

.guest-range {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 8px 25px;
}

.guest-range strong {
  grid-column: 2;
  grid-row: 1 / 3;
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: clamp(3.3rem, 5vw, 6rem);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .8;
}

.guest-range strong small {
  font-family: var(--sans);
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.guest-range input {
  width: 100%;
  height: 28px;
  grid-column: 1 / -1;
  margin: 14px 0 0;
  appearance: none;
  background: transparent;
  cursor: ew-resize;
}

.guest-range input::-webkit-slider-runnable-track {
  height: 2px;
  background: linear-gradient(90deg, var(--gold-soft) var(--range-progress, 17%), rgba(255, 255, 255, .23) var(--range-progress, 17%));
}

.guest-range input::-moz-range-track {
  height: 2px;
  background: rgba(255, 255, 255, .23);
}

.guest-range input::-moz-range-progress {
  height: 2px;
  background: var(--gold-soft);
}

.guest-range input::-webkit-slider-thumb {
  width: 24px;
  height: 24px;
  margin-top: -11px;
  appearance: none;
  border: 6px solid var(--forest);
  border-radius: 50%;
  background: var(--gold-soft);
  box-shadow: 0 0 0 1px var(--gold-soft);
}

.guest-range input::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border: 5px solid var(--forest);
  border-radius: 50%;
  background: var(--gold-soft);
  box-shadow: 0 0 0 1px var(--gold-soft);
}

.range-scale {
  display: flex;
  grid-column: 1 / -1;
  justify-content: space-between;
  color: #9ba9a4;
  font-size: .63rem;
}

.range-scale i {
  font-style: normal;
}

.room-match {
  position: relative;
  padding: 28px 80px 28px 28px;
  border: 1px solid rgba(225, 201, 159, .28);
  background: rgba(255, 255, 255, .035);
}

.room-match::after {
  position: absolute;
  top: 50%;
  right: 28px;
  color: var(--gold-soft);
  content: "✦";
  font-size: 1.4rem;
  transform: translateY(-50%);
}

.room-match > span {
  color: var(--gold-soft);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.room-match strong {
  display: block;
  margin-top: 7px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.5rem);
  font-weight: 400;
  line-height: 1;
}

.room-match p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .6);
  font-size: .83rem;
}

.planner-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 25px;
}

.planner-actions .button {
  min-height: 58px;
}

.atlas-strip {
  margin-block: 180px;
  box-shadow: 0 35px 100px rgba(20, 39, 32, .1);
}

.story-image img,
.gallery-item img {
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.04);
  will-change: transform;
}

.gallery-item:hover img {
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.09);
}

@supports (content-visibility: auto) {
  .intro {
    content-visibility: auto;
    contain-intrinsic-size: auto 820px;
  }

  .experience {
    content-visibility: auto;
    contain-intrinsic-size: auto 1050px;
  }

  .moments {
    content-visibility: auto;
    contain-intrinsic-size: auto 1500px;
  }

  .event-studio {
    content-visibility: auto;
    contain-intrinsic-size: auto 980px;
  }
}

@media (min-width: 961px) and (prefers-reduced-motion: no-preference) {
  .luxury-ready .hero h1 span {
    animation: heroTypeIn .9s cubic-bezier(.16, .78, .22, 1) both;
  }

  .luxury-ready .hero h1 span:nth-child(2) {
    animation-delay: .1s;
  }

  .luxury-ready .hero h1 span:nth-child(3) {
    animation-delay: .2s;
  }

  .luxury-ready .hero-lead,
  .luxury-ready .hero-actions {
    animation: heroFadeIn .8s .35s both;
  }
}

@keyframes heroTypeIn {
  from { opacity: 0; transform: translateY(60px); clip-path: inset(0 0 100%); }
  to { opacity: 1; transform: translateY(0); clip-path: inset(0); }
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1180px) {
  .hero h1 {
    font-size: clamp(4.6rem, 9.5vw, 7.5rem);
  }

  .event-studio {
    grid-template-columns: .75fr 1.25fr;
  }
}

@media (max-width: 960px) {
  .hero {
    min-height: 760px;
  }

  .hero-copy {
    min-height: 760px;
    padding-inline: 0;
  }

  .hero h1 span:nth-child(2) {
    margin-left: 12vw;
  }

  .hero-lead {
    width: min(560px, 70vw);
  }

  .hero-actions {
    margin-top: 30px;
  }

  .quick-book {
    grid-template-columns: 1fr 1fr;
  }

  .quick-book p {
    grid-column: 1 / -1;
  }

  .quick-book > button:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255, 255, 255, .13);
  }

  .experience-media {
    position: relative;
    top: auto;
    height: 660px;
  }

  .event-studio {
    grid-template-columns: 1fr;
  }

  .event-studio-image {
    height: 580px;
    min-height: 0;
  }

  .event-studio-image::after {
    background: linear-gradient(0deg, #071d16, transparent 55%);
  }
}

@media (max-width: 640px) {
  .luxury-cursor {
    display: none;
  }

  .hero {
    min-height: 780px;
    height: 100svh;
  }

  .hero::after {
    background: linear-gradient(0deg, rgba(5, 20, 14, .96) 4%, rgba(5, 20, 14, .38) 72%, rgba(5, 20, 14, .58));
  }

  .hero-copy {
    width: calc(100% - 48px);
    min-height: 780px;
    justify-content: flex-end;
    padding: 130px 0 88px;
  }

  .hero-copy .eyebrow {
    margin-bottom: 22px;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 15.2vw, 4.6rem);
    line-height: .82;
  }

  .hero h1 span,
  .hero h1 span:nth-child(2),
  .hero h1 span:last-child {
    width: auto;
    margin-left: 0;
    text-align: left;
  }

  .hero h1 span:last-child {
    max-width: 350px;
    margin-top: .18em;
    font-size: .75em;
    line-height: .9;
  }

  .hero-lead {
    width: 100%;
    margin: 28px 0 0;
    font-size: .88rem;
  }

  .hero-actions {
    margin-top: 28px;
  }

  .hero-actions .button-light {
    min-height: 54px;
    padding-inline: 22px;
  }

  .hero-note,
  .hero-visual figcaption {
    display: none;
  }

  .hero-visual img {
    height: calc(100% + 40px);
    object-position: 58% center;
    transform: translate3d(0, -20px, 0) scale(1.05);
  }

  .quick-book {
    width: 100%;
    grid-template-columns: 1fr;
    margin-top: 0;
    border-radius: 0;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .quick-book > a,
  .quick-book > button,
  .quick-book > button:last-child {
    min-height: 68px;
    grid-column: auto;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .13);
    padding-inline: 24px;
  }

  .statement-marquee {
    padding: 75px 0 15px;
  }

  .statement-marquee > div {
    gap: 22px;
    font-size: 3.8rem;
  }

  .intro {
    min-height: 0;
    padding-block: 110px 130px;
  }

  .intro-copy h2 {
    font-size: clamp(3.15rem, 13.2vw, 4.4rem);
  }

  .experience {
    padding-block: 0 120px;
  }

  .experience-media {
    width: calc(100% + 32px);
    height: 510px;
    min-height: 0;
    border-radius: 0 55px 0 0;
  }

  .experience-content {
    padding-top: 15px;
  }

  .experience-content h2 {
    font-size: clamp(3.2rem, 13vw, 4.5rem);
  }

  .moments {
    padding-block: 120px 80px;
  }

  .moment-card {
    transform: none !important;
  }

  .event-studio-image {
    height: 380px;
  }

  .event-studio-image img {
    height: 110%;
    transform: translate3d(0, -5%, 0) scale(1.04);
  }

  .event-studio-panel {
    padding: 80px 24px 100px;
  }

  .event-studio-panel::before {
    top: 35px;
    right: 20px;
    width: 100px;
  }

  .event-studio-head h2 {
    font-size: clamp(3.2rem, 13vw, 4.8rem);
  }

  .event-planner {
    gap: 31px;
    margin-top: 45px;
  }

  .occasion-picker {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .occasion-picker legend {
    grid-column: 1 / -1;
  }

  .occasion-picker button {
    padding-inline: 10px;
  }

  .guest-range {
    display: grid;
  }

  .guest-range strong {
    font-size: 3.6rem;
  }

  .room-match {
    padding: 25px 55px 25px 22px;
  }

  .room-match::after {
    right: 20px;
  }

  .planner-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .atlas-strip {
    margin-block: 110px;
  }

  .story-image img,
  .gallery-item img,
  .gallery-item:hover img {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .has-js .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Native language navigation */

.site-header {
  grid-template-columns: auto 1fr auto auto;
  gap: clamp(12px, 1.8vw, 28px);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(0, 0, 0, .12);
}

.language-switcher a {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  color: rgba(255, 255, 255, .68);
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .06em;
  transition: background .2s, color .2s;
}

.language-switcher a:hover,
.language-switcher a[aria-current="page"] {
  background: var(--paper);
  color: var(--forest);
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 16px;
  }

  .main-nav a {
    font-size: .64rem;
  }

  .language-switcher a {
    width: 29px;
    height: 29px;
  }
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: 1fr auto auto auto;
  }

  .language-switcher {
    z-index: 2;
    grid-column: 2;
  }

  .menu-toggle {
    grid-column: 3;
  }

  .header-cta {
    grid-column: 4;
  }
}

@media (max-width: 640px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .language-switcher {
    grid-column: 2;
    gap: 1px;
    padding: 2px;
  }

  .language-switcher a {
    width: 27px;
    height: 27px;
    font-size: .53rem;
  }

  .menu-toggle {
    grid-column: 3;
  }
}
