:root {
  color-scheme: light;
  --black: #050403;
  --ink: #17130f;
  --paper: #f3eee6;
  --white: #f3eee6;
  --gold: #deb98d;
  --muted: #70675d;
  --line: rgba(23, 19, 15, 0.18);
  font-family: "Cormorant Garamond", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 0;
  height: 0;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

img {
  display: block;
}

[id] {
  scroll-margin-top: 5.6rem;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  background: var(--black);
  animation: loaderOut 1.15s ease forwards;
}

.loader span {
  color: var(--gold);
  font-size: clamp(2.1rem, 5vw, 4.8rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 6.9rem;
  padding: 1rem clamp(1.2rem, 4vw, 4.8rem);
  border-bottom: 1px solid rgba(5, 4, 3, 0.18);
  background: var(--paper);
  color: var(--ink);
  backdrop-filter: blur(14px);
  transition: min-height 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  min-height: 5.4rem;
  box-shadow: 0 0.8rem 2rem rgba(23, 19, 15, 0.08);
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 3.2rem);
  min-width: 0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 0.72rem;
}

.nav-service-text {
  display: grid;
  min-width: 0;
  line-height: 1.05;
}

.nav-service-text span,
.nav-service-text small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-service-text small {
  margin-top: 0.18rem;
  color: var(--gold);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nav-right {
  justify-content: flex-end;
}

.nav-left a,
.nav-right button,
.mobile-menu a,
.mobile-menu button,
.stage-lead button,
.scrolly-step button,
.modal-action {
  color: var(--ink);
  letter-spacing: 0.08em;
  text-transform: none;
  font-size: 0.94rem;
}

.brand {
  display: grid;
  justify-items: center;
  text-align: center;
}

.brand span {
  font-size: clamp(1.7rem, 2.8vw, 3.05rem);
  font-weight: 400;
  letter-spacing: 0.08em;
}

.nav-right button {
  min-width: 8.8rem;
  min-height: 2.35rem;
  border: 0;
  border-bottom: 1px solid rgba(23, 19, 15, 0.38);
  background: transparent;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.nav-right button:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.menu-button {
  display: inline-flex;
  width: 2.75rem;
  min-width: 2.75rem;
  height: 2.35rem;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  border: 1px solid rgba(23, 19, 15, 0.34);
  padding: 0;
}

.nav-right .menu-button {
  min-width: 2.75rem;
  border: 1px solid rgba(23, 19, 15, 0.34);
  background: transparent;
}

.nav-right .menu-button:hover {
  border-color: var(--ink);
  background: var(--ink);
}

.menu-lines {
  display: grid;
  gap: 0.42rem;
}

.menu-lines span {
  display: block;
  width: 1.55rem;
  height: 1px;
  background: var(--ink);
}

.menu-button:hover .menu-lines span {
  background: var(--paper);
}

.menu-button[aria-expanded="true"] {
  border-color: var(--ink);
  background: var(--ink);
}

.menu-button[aria-expanded="true"] .menu-lines span {
  background: var(--paper);
}

.nav-crest {
  flex: 0 0 auto;
  width: 1.58rem;
  height: 1.68rem;
  object-fit: contain;
}

.mobile-menu {
  position: fixed;
  top: 5.95rem;
  right: 1rem;
  z-index: 39;
  display: grid;
  gap: 0.85rem;
  min-width: 17rem;
  padding: 1.3rem;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 1.2rem 2.4rem rgba(23, 19, 15, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.75rem);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  visibility: hidden;
}

.site-header:has(.menu-button:hover) + .mobile-menu,
.site-header:has(.menu-button:focus-visible) + .mobile-menu,
.mobile-menu.is-open,
.mobile-menu.is-hovered,
.mobile-menu:hover,
.mobile-menu:focus-within {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.mobile-menu button {
  min-height: 2.4rem;
  border: 1px solid var(--line);
  background: transparent;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: var(--black);
  color: var(--white);
  text-align: center;
}

.hero-pan {
  position: absolute;
  inset: 0;
  width: 118%;
  background: url("assets/hero-arrival.png") center / cover;
  filter: brightness(0.82) saturate(0.78);
  transform: translateX(0);
  animation: heroPan 18s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 38%, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.44)),
    linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.62));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  padding: 8rem 1rem 3rem;
}

.hero-content h1 {
  margin: 0;
  color: var(--gold);
  font-size: clamp(3.6rem, 8vw, 8.4rem);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-subtitle {
  display: block;
  margin-top: 0.7rem;
  color: rgba(222, 185, 141, 0.82);
  font-size: clamp(0.78rem, 1.1vw, 1rem);
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.hero-content button,
.stage-lead button,
.scrolly-step button,
.modal-action {
  min-width: 11rem;
  min-height: 2.45rem;
  margin-top: 1.6rem;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--gold);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.hero-content button:hover,
.stage-lead button:hover,
.scrolly-step button:hover,
.modal-action:hover {
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-2px);
}

.claim-section {
  display: grid;
  place-items: center;
  min-height: 30vh;
  padding: clamp(2.6rem, 4.8vw, 3.9rem) 1.4rem;
  background: var(--paper);
  color: var(--ink);
  text-align: center;
}

.claim-section p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4.8vw, 4.45rem);
  line-height: 1.02;
}

.claim-section span {
  display: block;
  max-width: 39rem;
  margin-top: 1.15rem;
  color: var(--gold);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.8;
}

.scrolly-section {
  --scrolly-progress: 0;
  position: relative;
  z-index: 6;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(22rem, 0.82fr);
  gap: clamp(2rem, 5vw, 5rem);
  padding: 0 clamp(1rem, 5vw, 5rem);
  background: var(--black);
  color: var(--white);
}

.scrolly-sticky {
  position: sticky;
  top: 5.4rem;
  display: grid;
  align-content: end;
  min-height: calc(100vh - 5.4rem);
  overflow: hidden;
  isolation: isolate;
}

.scrolly-media,
.scrolly-canvas,
.scrolly-poster {
  position: absolute;
  inset: 0;
}

.scrolly-media {
  z-index: -2;
  overflow: hidden;
  background: var(--black);
}

.scrolly-media::after {
  position: absolute;
  inset: 0;
  z-index: 3;
  content: "";
  background:
    radial-gradient(circle at 32% 28%, rgba(222, 185, 141, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(5, 4, 3, 0.16), rgba(5, 4, 3, 0.82)),
    linear-gradient(90deg, rgba(5, 4, 3, 0.22), rgba(5, 4, 3, 0.56));
}

.scrolly-canvas {
  z-index: 2;
  width: 100%;
  height: 100%;
  filter: brightness(0.84) saturate(0.78);
}

.scrolly-poster {
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: brightness(0.84) saturate(0.78);
  transition: opacity 360ms ease;
}

.scrolly-section.is-canvas-ready .scrolly-poster {
  opacity: 0;
}

.scrolly-section.is-reduced-motion .scrolly-canvas {
  display: none;
}

.scrolly-section.is-reduced-motion .scrolly-poster {
  opacity: 1;
}

.scrolly-caption {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  max-width: 35rem;
  min-height: 100%;
  padding: clamp(3rem, 5vw, 5rem) 0;
}

.scrolly-crest {
  width: clamp(2.8rem, 4vw, 4.2rem);
  height: auto;
  margin-bottom: 1.2rem;
  opacity: 0.82;
}

.scrolly-caption span,
.scrolly-step p {
  margin: 0;
  color: var(--gold);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-size: 0.74rem;
}

.scrolly-caption strong {
  display: block;
  max-width: 33rem;
  margin-top: 1.2rem;
  color: var(--gold);
  font-size: clamp(1.6rem, 3vw, 3.2rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.06;
  text-transform: uppercase;
}

.scrolly-progress {
  position: absolute;
  right: 0;
  bottom: clamp(2rem, 4vw, 4rem);
  left: 0;
  z-index: 2;
  height: 1px;
  overflow: hidden;
  background: rgba(222, 185, 141, 0.26);
}

.scrolly-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gold);
  transform: scaleX(var(--scrolly-progress));
  transform-origin: left;
}

.scrolly-steps {
  display: grid;
  gap: 34vh;
  padding: 38vh 0 42vh;
}

.scrolly-step {
  display: grid;
  align-content: center;
  min-height: 44vh;
  opacity: 0.42;
  transform: translateY(1.2rem);
  transition: opacity 320ms ease, transform 320ms ease;
}

.scrolly-step.is-active {
  opacity: 1;
  transform: translateY(0);
}

.scrolly-step h2 {
  max-width: 28rem;
  margin: 1rem 0 0;
  color: var(--gold);
  font-size: clamp(1.35rem, 2.2vw, 2.4rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.12;
  text-transform: uppercase;
}

.scrolly-step span {
  display: block;
  max-width: 27rem;
  margin-top: 1.2rem;
  color: rgba(251, 250, 247, 0.75);
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.75;
}

.scrolly-step button {
  justify-self: start;
  margin-top: 2.6rem;
}

.stack-area {
  background: var(--paper);
}

.stack-panel {
  position: sticky;
  top: 5.4rem;
  min-height: calc(100vh - 5.4rem);
  padding: 0;
  background: var(--paper);
  box-shadow: 0 -1rem 3rem rgba(23, 19, 15, 0.1);
}

.stack-panel + .stack-panel {
  margin-top: calc(100vh - 5.4rem);
}

.stack-panel:nth-child(1) {
  z-index: 1;
}

.stack-panel:nth-child(2) {
  z-index: 2;
}

.stack-panel:nth-child(3) {
  z-index: 3;
}

.stack-panel:nth-child(4) {
  z-index: 4;
}

.stack-panel:nth-child(5) {
  z-index: 5;
}

.stack-panel:nth-child(6) {
  z-index: 6;
}

.horizontal-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) repeat(3, minmax(0, 0.5fr));
  width: 100%;
  min-width: 0;
  height: calc(100vh - 5.4rem);
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: var(--black);
}

.stage-lead,
.stage-card {
  min-height: 100%;
}

.stage-lead {
  position: relative;
  display: grid;
  align-content: center;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(3rem, 5vw, 5rem);
  color: var(--white);
  background: var(--black);
}

.stage-lead::before {
  position: absolute;
  inset: -1rem;
  z-index: -2;
  content: "";
  background-image: var(--lead-image);
  background-position: var(--lead-position, center);
  background-size: cover;
  filter: blur(1.6px) brightness(0.7) saturate(0.78);
  transform: scale(1.04);
}

.stage-lead::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 75% 32%, rgba(185, 156, 109, 0.12), transparent 34%),
    linear-gradient(90deg, rgba(5, 4, 3, 0.9), rgba(5, 4, 3, 0.48));
}

.stage-lead p {
  margin: 0 0 3rem;
  color: var(--gold);
  letter-spacing: 0.55em;
  text-transform: uppercase;
  font-size: 0.88rem;
}

.stage-lead h2 {
  max-width: 34rem;
  margin: 0;
  color: var(--gold);
  font-size: clamp(2.7rem, 4vw, 4.7rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.04;
  text-transform: uppercase;
}

.stage-lead span {
  display: block;
  max-width: 33rem;
  margin-top: 1.5rem;
  color: rgba(251, 250, 247, 0.84);
  letter-spacing: 0.16em;
  line-height: 1.7;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.stage-lead button {
  justify-self: start;
  margin-top: clamp(4rem, 15vh, 10rem);
  color: var(--gold);
  background: transparent;
}

.stage-card {
  position: relative;
  isolation: isolate;
  min-width: 0;
  overflow: hidden;
  width: 100%;
  margin: 0;
  cursor: pointer;
  border-left: 1px solid rgba(222, 185, 141, 0.18);
}

.stage-card:focus-visible {
  outline: 1px solid rgba(222, 185, 141, 0.72);
  outline-offset: -3px;
}

.image-card img,
.visual-card .visual {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.74) saturate(0.75);
  transition: transform 480ms ease, filter 480ms ease;
}

.visual-card .visual {
  display: block;
  background-image: var(--card-image);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 100%;
}

.image-card::after {
  position: absolute;
  inset: 36% 0 0;
  content: "";
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.78));
}

.card-trigger {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4.5%;
  z-index: 4;
  display: grid;
  height: 22%;
  align-items: center;
  justify-items: center;
  padding: 0 1rem;
  color: var(--gold);
  letter-spacing: 0.22em;
  text-align: center;
  text-transform: uppercase;
  font-size: clamp(0.66rem, 0.82vw, 0.94rem);
  transition: opacity 220ms ease, transform 220ms ease;
  pointer-events: none;
}

.card-trigger::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.62), transparent);
}

.card-trigger span {
  position: relative;
  z-index: 1;
  display: block;
  max-width: min(13rem, 96%);
  line-height: 1.35;
  hyphens: none;
  overflow-wrap: anywhere;
  word-break: normal;
}

.hover-copy {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: clamp(0.48rem, 0.8vw, 0.72rem);
  min-width: 0;
  overflow: hidden;
  padding: clamp(1.25rem, 2vw, 2.25rem) clamp(0.9rem, 1.4vw, 1.35rem);
  background: rgba(243, 238, 230, 0.88);
  color: var(--ink);
  text-align: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 260ms ease, transform 260ms ease;
  backdrop-filter: blur(9px);
  pointer-events: none;
}

.overlay-mark {
  width: clamp(2.55rem, 3.2vw, 3.45rem);
  height: clamp(2.7rem, 3.4vw, 3.65rem);
  margin-bottom: 0.1rem;
  object-fit: contain;
  opacity: 0.72;
}

.hover-copy h3 {
  margin: 0;
  color: var(--ink);
  width: min(100%, 15.5rem);
  font-size: clamp(1rem, 1.18vw, 1.36rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.25;
  max-width: 15.5rem;
  hyphens: none;
  overflow-wrap: anywhere;
  word-break: normal;
  text-transform: uppercase;
}

.hover-copy i {
  display: block;
  width: 2rem;
  height: 1px;
  margin: 0.18rem 0 0.25rem;
  background: var(--gold);
}

.hover-copy ul {
  display: grid;
  gap: 0.38rem;
  width: min(100%, 15rem);
  max-width: 15rem;
  margin: 0;
  padding: 0;
  color: var(--ink);
  letter-spacing: 0.09em;
  line-height: 1.35;
  list-style: none;
  text-transform: uppercase;
  font-size: clamp(0.74rem, 1vw, 0.88rem);
}

.hover-copy p {
  align-self: start;
  width: min(100%, 15.5rem);
  max-width: 15.5rem;
  margin: 0;
  color: var(--ink);
  font-size: clamp(0.92rem, 1.1vw, 1.02rem);
  line-height: 1.58;
}

.image-card:hover img,
.image-card:hover .visual,
.image-card:focus-visible img,
.image-card:focus-visible .visual,
.image-card:focus-within img,
.image-card:focus-within .visual,
.image-card.is-open img,
.image-card.is-open .visual {
  filter: brightness(0.92) saturate(0.88);
  transform: scale(1.045);
}

.property .visual-card:hover .visual,
.property .visual-card:focus-visible .visual,
.property .visual-card:focus-within .visual,
.property .visual-card.is-open .visual,
.property .visual-card:has(.card-trigger:hover) .visual {
  transform: scale(1.045);
}

.image-card:hover .card-trigger,
.image-card:focus-visible .card-trigger,
.image-card:focus-within .card-trigger,
.image-card.is-open .card-trigger {
  opacity: 0;
  transform: translateY(10px);
}

.image-card:hover .hover-copy,
.image-card:focus-visible .hover-copy,
.image-card:focus-within .hover-copy,
.image-card.is-open .hover-copy {
  opacity: 1;
  transform: translateY(0);
}

.membership-section {
  position: relative;
  z-index: 4;
  padding: clamp(5rem, 9vw, 8rem) clamp(1rem, 5vw, 5rem);
  background: var(--black);
  color: var(--white);
}

.section-title {
  max-width: 60rem;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.section-title p {
  margin: 0 0 1rem;
  color: var(--gold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.section-title h2 {
  margin: 0;
  color: var(--gold);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-title span {
  display: block;
  margin-top: 1rem;
  color: rgba(251, 250, 247, 0.72);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.membership-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 82rem;
  margin: 0 auto;
  border-top: 1px solid rgba(185, 156, 109, 0.32);
  border-left: 1px solid rgba(185, 156, 109, 0.32);
}

.membership-grid article {
  min-height: 22rem;
  padding: clamp(1.8rem, 4vw, 3rem);
  border-right: 1px solid rgba(185, 156, 109, 0.32);
  border-bottom: 1px solid rgba(185, 156, 109, 0.32);
}

.membership-grid small {
  color: var(--gold);
  letter-spacing: 0.2em;
}

.membership-grid h3 {
  margin: 2.6rem 0 1rem;
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 400;
}

.membership-grid p {
  margin: 0;
  color: rgba(251, 250, 247, 0.68);
  line-height: 1.8;
}

.service-footer {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  position: relative;
  z-index: 4;
  border-top: 1px solid rgba(185, 156, 109, 0.32);
  border-bottom: 1px solid rgba(185, 156, 109, 0.32);
  background: #080706;
  color: var(--gold);
}

.service-footer article {
  display: grid;
  min-height: 13rem;
  place-items: center;
  gap: 1rem;
  padding: 1.8rem 1rem;
  border-right: 1px solid rgba(185, 156, 109, 0.24);
  text-align: center;
}

.service-footer article:last-child {
  border-right: 0;
}

.service-footer svg {
  width: 3.2rem;
  height: 3.2rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.service-footer h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.09em;
}

.events-section {
  position: relative;
  z-index: 7;
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 5rem);
  background: var(--black);
  color: var(--white);
}

.section-intro {
  max-width: 48rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-intro p {
  margin: 0 0 0.7rem;
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.section-intro h2 {
  margin: 0;
  color: var(--gold);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 400;
}

.section-intro span {
  display: block;
  margin-top: 0.9rem;
  color: rgba(232, 216, 194, 0.72);
  line-height: 1.7;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 86rem;
  margin: 0 auto;
  background: rgba(222, 185, 141, 0.3);
}

.event-grid article {
  position: relative;
  display: grid;
  align-content: end;
  min-height: clamp(24rem, 42vw, 36rem);
  overflow: hidden;
  padding: clamp(1.4rem, 3vw, 2.4rem);
  background: var(--event-image) center / cover;
}

.event-grid article::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.76));
}

.event-grid article > * {
  position: relative;
  z-index: 1;
}

.event-grid span {
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.event-grid h3 {
  margin: 0.8rem 0;
  font-size: clamp(1.7rem, 3vw, 3rem);
  font-weight: 400;
}

.event-grid p {
  max-width: 20rem;
  margin: 0;
  color: rgba(232, 216, 194, 0.74);
  line-height: 1.65;
}

.site-footer {
  position: relative;
  z-index: 8;
  display: grid;
  justify-items: center;
  gap: 1.15rem;
  padding: 3.2rem 1rem 3.6rem;
  border-top: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  text-align: center;
}

.site-footer strong {
  color: var(--gold);
  font-size: clamp(1.8rem, 3vw, 2.9rem);
  font-weight: 400;
  letter-spacing: 0.08em;
}

.site-footer p,
.site-footer small {
  margin: 0;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
}

.site-footer button,
.site-footer a {
  position: relative;
  border: 0;
  background: transparent;
  color: var(--ink);
  letter-spacing: 0.08em;
}

.site-footer button::after,
.site-footer a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.28rem;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-footer button:hover::after,
.site-footer a:hover::after,
.site-footer button:focus-visible::after,
.site-footer a:focus-visible::after {
  transform: scaleX(1);
}

.back-to-top {
  position: fixed;
  right: clamp(1.2rem, 4vw, 4.8rem);
  bottom: clamp(1rem, 2vw, 1.5rem);
  z-index: 38;
  display: grid;
  width: 2.75rem;
  height: 2.35rem;
  place-items: center;
  border: 1px solid currentColor;
  background: transparent;
  color: var(--gold);
  font-size: 1.15rem;
  backdrop-filter: none;
  mix-blend-mode: normal;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.back-to-top:hover {
  border-color: currentColor;
  background: transparent;
  transform: translateY(-2px);
}

.modal {
  width: min(92vw, 35rem);
  max-height: 88vh;
  overflow: auto;
  padding: 0;
  border: 1px solid rgba(185, 156, 109, 0.38);
  background: rgba(8, 7, 6, 0.94);
  color: var(--white);
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(18px);
}

.modal::backdrop {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(7px);
}

.modal-box {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: clamp(1.5rem, 5vw, 2.6rem);
}

.modal-box > p {
  margin: 0;
  color: var(--gold);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.modal-box h2 {
  margin: 0 0 0.6rem;
  color: var(--gold);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
}

.modal-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid rgba(185, 156, 109, 0.4);
  border-radius: 50%;
  background: transparent;
  color: var(--gold);
  font-size: 1.25rem;
}

label {
  position: relative;
  display: grid;
  gap: 0.5rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.required-field::after {
  position: absolute;
  top: 2.05rem;
  right: 0.9rem;
  content: "*";
  color: #b64a3f;
  font-size: 1rem;
  line-height: 1;
}

.consent-row {
  grid-template-columns: auto 1fr;
  align-items: start;
  padding: 0.78rem 0.85rem;
  border: 1px solid rgba(205, 181, 147, 0.42);
  background: rgba(232, 216, 194, 0.08);
  color: rgba(232, 216, 194, 0.76);
  letter-spacing: 0.04em;
  text-transform: none;
  font-size: 0.76rem;
  line-height: 1.45;
}

.consent-row input {
  width: 1rem;
  height: 1rem;
  margin-top: 0.2rem;
  accent-color: var(--gold);
  background: var(--paper);
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(185, 156, 109, 0.34);
  border-radius: 0;
  background: rgba(232, 216, 194, 0.07);
  color: var(--gold);
  padding: 0.9rem 1rem;
  padding-right: 2rem;
  outline: 0;
}

input:focus,
textarea:focus {
  border-color: var(--gold);
}

.modal-action {
  color: var(--gold);
}

.legal h3 {
  margin: 0.55rem 0 -0.35rem;
  color: var(--gold);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.legal p {
  margin: 0;
  color: rgba(251, 250, 247, 0.7);
  line-height: 1.75;
}

@keyframes loaderOut {
  0%,
  68% {
    opacity: 1;
    visibility: visible;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes heroPan {
  from {
    transform: translateX(0) scale(1.04);
  }

  to {
    transform: translateX(-8%) scale(1.04);
  }
}

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

  .brand {
    display: none;
  }

  .nav-left {
    display: flex;
  }

  .horizontal-stage {
    grid-template-columns: minmax(0, 1.7fr) repeat(3, minmax(0, 0.5fr));
  }

  .scrolly-section {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.76fr);
    gap: clamp(1.5rem, 4vw, 3rem);
  }

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

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

  .service-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .scrolly-section {
    display: block;
    padding: 0;
  }

  .scrolly-sticky {
    position: relative;
    top: auto;
    min-height: min(72vh, 42rem);
  }

  .scrolly-caption {
    min-height: min(72vh, 42rem);
    padding: clamp(2rem, 7vw, 4rem) clamp(1.2rem, 5vw, 2.4rem);
  }

  .scrolly-progress {
    right: clamp(1.2rem, 5vw, 2.4rem);
    left: clamp(1.2rem, 5vw, 2.4rem);
  }

  .scrolly-steps {
    gap: 0;
    padding: 0 clamp(1.2rem, 5vw, 2.4rem) clamp(3rem, 8vw, 5rem);
    background: var(--black);
  }

  .scrolly-step {
    min-height: auto;
    padding: clamp(1.6rem, 6vw, 2.4rem) 0;
    border-top: 1px solid rgba(222, 185, 141, 0.24);
    opacity: 1;
    transform: none;
  }

  .stack-panel {
    position: relative;
    top: auto;
    min-height: auto;
    box-shadow: none;
  }

  .stack-panel + .stack-panel {
    margin-top: 0;
  }

  .horizontal-stage {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .stage-lead {
    min-height: clamp(28rem, 86vh, 38rem);
  }

  .stage-card {
    min-height: clamp(23rem, 78vw, 34rem);
  }

  .hover-copy {
    padding: clamp(1.45rem, 5vw, 2.4rem);
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 5rem;
    padding: 0.75rem 1rem;
  }

  .nav-left a,
  .nav-right button,
  .mobile-menu a,
  .mobile-menu button {
    font-size: 0.72rem;
  }

  .nav-crest {
    width: 1.34rem;
    height: 1.42rem;
  }

  .nav-service-text small {
    font-size: 0.52rem;
    letter-spacing: 0.16em;
  }

  .nav-right {
    gap: 0.45rem;
  }

  .mobile-menu {
    top: 4.8rem;
  }

  .nav-right button:not(.menu-button) {
    min-width: 7.8rem;
    min-height: 2.25rem;
    font-size: 0.58rem;
    letter-spacing: 0.08em;
  }

  .menu-button,
  .nav-right .menu-button {
    width: 2.35rem;
    min-width: 2.35rem;
    height: 2.25rem;
  }

  .hero-content h1 {
    font-size: clamp(2.25rem, 11vw, 4.1rem);
    letter-spacing: 0.05em;
  }

  .hero-subtitle {
    max-width: 92vw;
    letter-spacing: 0.16em;
    line-height: 1.7;
  }

  .claim-section p {
    font-size: clamp(2.2rem, 12vw, 4rem);
  }

  .scrolly-caption strong {
    font-size: clamp(1.55rem, 7.2vw, 2.55rem);
    letter-spacing: 0.05em;
  }

  .scrolly-caption span,
  .scrolly-step p {
    letter-spacing: 0.18em;
    font-size: 0.64rem;
  }

  .scrolly-step h2 {
    font-size: clamp(1.45rem, 7.6vw, 2.35rem);
    letter-spacing: 0.05em;
  }

  .scrolly-step span {
    font-size: 0.96rem;
  }

  .stack-panel {
    top: 5rem;
    min-height: auto;
    padding: 0;
  }

  .horizontal-stage {
    grid-template-columns: 1fr;
    height: auto;
    overflow: visible;
    border-radius: 0;
  }

  .stage-lead {
    padding: 1.55rem;
  }

  .stage-lead p {
    margin-bottom: 2rem;
    letter-spacing: 0.22em;
    font-size: 0.66rem;
  }

  .stage-lead h2 {
    font-size: 2rem;
    letter-spacing: 0.04em;
  }

  .stage-lead span {
    letter-spacing: 0.12em;
    font-size: 0.64rem;
  }

  .stage-lead button {
    margin-top: 3rem;
  }

  .stage-card {
    min-height: clamp(22rem, 92vw, 28rem);
  }

  .card-trigger {
    bottom: 4%;
    height: 28%;
    letter-spacing: 0.2em;
  }

  .membership-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section-title h2 {
    font-size: clamp(2.2rem, 12vw, 4rem);
  }

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

@media (max-width: 420px) {
  .nav-right button:not(.menu-button) {
    display: none;
  }

  .mobile-menu {
    right: 1rem;
    left: 1rem;
    min-width: 0;
  }
}

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