@font-face {
  font-family: "Misterna Serif";
  src: url("../fonts/p052-roman.otf") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: "Misterna Grotesk";
  src: url("../fonts/urw-gothic-book.otf") format("opentype");
  font-display: swap;
  font-weight: 400;
}

@font-face {
  font-family: "Misterna Grotesk";
  src: url("../fonts/urw-gothic-demi.otf") format("opentype");
  font-display: swap;
  font-weight: 700;
}

:root {
  --ink: #141213;
  --ink-soft: #232022;
  --cream: #f3eee6;
  --paper: #fbf8f1;
  --mint: #b8d7d5;
  --aqua: #74aaa9;
  --teal: #183f43;
  --blush: #e7c9c2;
  --line: rgba(20, 18, 19, 0.2);
  --serif: "Misterna Serif", "Palatino Linotype", Palatino, serif;
  --sans: "Misterna Grotesk", "Century Gothic", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
}

body,
button,
a {
  font-family: var(--sans);
}

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

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

button {
  color: inherit;
}

::selection {
  background: var(--mint);
  color: var(--ink);
}

:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 4px;
}

.section-pad {
  padding: clamp(92px, 10vw, 180px) clamp(24px, 5vw, 96px);
}

.eyebrow {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.3;
  text-transform: uppercase;
}

.button,
.text-link,
.location__links a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: color 240ms ease, background-color 240ms ease, border-color 240ms ease, transform 240ms ease;
}

.button {
  padding: 14px 22px;
  border: 1px solid transparent;
}

.button svg,
.text-link svg,
.header-cta svg,
.location__links svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  transition: transform 240ms ease;
}

.button:hover svg,
.text-link:hover svg,
.header-cta:hover svg,
.location__links a:hover svg {
  transform: translateX(4px);
}

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

.button--light:hover {
  background: var(--mint);
  transform: translateY(-2px);
}

.button--dark {
  background: var(--ink);
  color: var(--paper);
}

.button--dark:hover {
  background: var(--teal);
  transform: translateY(-2px);
}

.text-link {
  border-bottom: 1px solid currentColor;
}

.text-link--light {
  color: var(--paper);
}

.diamond-mark {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 1px solid currentColor;
  transform: rotate(45deg);
}

/* Branded reveal */
.intro {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #141213;
  color: white;
  animation: intro-in 450ms ease both;
}

.intro--leaving {
  pointer-events: none;
  animation: intro-out 650ms cubic-bezier(0.7, 0, 0.2, 1) both;
}

.intro__skip {
  position: absolute;
  z-index: 3;
  top: 28px;
  right: 30px;
  min-width: 56px;
  min-height: 44px;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  background: none;
  color: white;
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.intro__diamond {
  position: absolute;
  width: min(48vw, 520px);
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,0.8);
  transform: rotate(45deg) scale(0.25);
  animation: diamond-open 1.4s cubic-bezier(0.22, 1, 0.36, 1) 160ms forwards;
}

.intro__logo {
  position: relative;
  z-index: 2;
  width: min(38vw, 360px);
  opacity: 0;
  transform: scale(0.9);
  animation: logo-in 800ms ease 720ms forwards;
}

.intro__line {
  position: absolute;
  bottom: 46px;
  margin: 0;
  color: rgba(255,255,255,0.7);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0;
  animation: logo-in 500ms ease 1.05s forwards;
}

@keyframes intro-in { from { opacity: 0; } }
@keyframes intro-out { to { opacity: 0; transform: scale(1.04); } }
@keyframes diamond-open { to { transform: rotate(45deg) scale(1); } }
@keyframes logo-in { to { opacity: 1; transform: scale(1); } }

/* Header */
.site-header {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  min-height: 86px;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 0 clamp(24px, 4vw, 72px);
  border-bottom: 1px solid rgba(255,255,255,0.18);
  background: rgba(20,18,19,0.78);
  color: white;
  backdrop-filter: blur(14px);
}

.brand {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  overflow: hidden;
}

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

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 3vw, 52px);
}

.desktop-nav a {
  position: relative;
  padding: 32px 0 26px;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 21px;
  left: 0;
  height: 1px;
  background: white;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms ease;
}

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

.header-cta {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 14px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,0.5);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.header-cta:hover {
  border-color: var(--mint);
  background: var(--mint);
  color: var(--ink);
}

.header-cta svg {
  width: 16px;
  height: 16px;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

/* Hero */
.hero {
  --hero-delay: 120ms;
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.hero--intro {
  --hero-delay: 2.72s;
}

.hero__copy {
  position: relative;
  z-index: 4;
  display: flex;
  width: 52%;
  min-height: 100svh;
  flex-direction: column;
  justify-content: center;
  padding: 142px clamp(48px, 5.6vw, 108px) 68px clamp(24px, 5vw, 96px);
  background: var(--ink);
  clip-path: polygon(0 0, 87% 0, 100% 50%, 87% 100%, 0 100%);
}

.hero__eyebrow {
  margin-bottom: clamp(30px, 4vh, 54px);
  color: var(--mint);
  opacity: 0;
  transform: translateY(12px);
  animation: hero-meta-in 700ms cubic-bezier(0.22, 1, 0.36, 1) calc(var(--hero-delay) + 40ms) forwards;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(58px, 5.75vw, 110px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.hero__line {
  display: block;
  overflow: hidden;
}

.hero__line > span {
  display: block;
  transform: translateY(115%) rotate(1.4deg);
  transform-origin: left bottom;
  animation: hero-line-in 900ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero__line--one > span {
  animation-delay: calc(var(--hero-delay) + 150ms);
}

.hero__line--two {
  margin-left: 0.7em;
  color: var(--mint);
  font-style: italic;
}

.hero__line--two > span {
  animation-delay: calc(var(--hero-delay) + 270ms);
}

.hero__line--three > span {
  animation-delay: calc(var(--hero-delay) + 390ms);
}

.hero__lead {
  max-width: 460px;
  margin: clamp(32px, 4vh, 54px) 0 0;
  color: rgba(251,248,241,0.78);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.65;
  opacity: 0;
  transform: translateY(18px);
  animation: hero-meta-in 800ms cubic-bezier(0.22, 1, 0.36, 1) calc(var(--hero-delay) + 620ms) forwards;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
  opacity: 0;
  transform: translateY(16px);
  animation: hero-meta-in 800ms cubic-bezier(0.22, 1, 0.36, 1) calc(var(--hero-delay) + 760ms) forwards;
}

.hero__media {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  width: 63%;
  overflow: hidden;
  background: var(--cream);
}

.hero__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20,18,19,0.36), transparent 28%), linear-gradient(0deg, rgba(20,18,19,0.15), transparent 35%);
  content: "";
}

.hero__media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
  transform-origin: 58% 48%;
  animation: hero-image-motion 14s cubic-bezier(0.2, 0.75, 0.2, 1) var(--hero-delay) both;
}

.hero__moving-diamond {
  position: absolute;
  z-index: 2;
  top: 14%;
  right: 17%;
  width: clamp(180px, 21vw, 390px);
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,0.62);
  pointer-events: none;
  opacity: 0;
  transform: rotate(45deg) scale(0.78);
  animation:
    hero-diamond-in 1200ms cubic-bezier(0.22, 1, 0.36, 1) calc(var(--hero-delay) + 420ms) forwards,
    hero-diamond-drift 9s ease-in-out calc(var(--hero-delay) + 1.62s) infinite alternate;
}

@keyframes hero-image-motion {
  0% { transform: scale(1.115) translate3d(1.5%, -1%, 0); filter: saturate(0.68) brightness(0.9); }
  18% { transform: scale(1.015) translate3d(0, 0, 0); filter: saturate(1) brightness(1); }
  100% { transform: scale(1.055) translate3d(-1.2%, 0.8%, 0); filter: saturate(1.03) brightness(0.98); }
}

@keyframes hero-line-in {
  to { transform: translateY(0) rotate(0); }
}

@keyframes hero-line-mobile-in {
  to { opacity: 1; transform: translateY(0) rotate(0); }
}

@keyframes hero-meta-in {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-diamond-in {
  to { opacity: 0.72; transform: rotate(45deg) scale(1); }
}

@keyframes hero-diamond-drift {
  from { opacity: 0.72; transform: rotate(45deg) scale(1) translate3d(0, 0, 0); }
  to { opacity: 0.42; transform: rotate(49deg) scale(1.06) translate3d(8px, -10px, 0); }
}

.hero__caption {
  position: absolute;
  z-index: 3;
  right: clamp(18px, 3.5vw, 62px);
  bottom: clamp(20px, 4vw, 60px);
  display: flex;
  min-width: 170px;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  background: var(--mint);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(22px);
  animation: hero-meta-in 750ms cubic-bezier(0.22, 1, 0.36, 1) calc(var(--hero-delay) + 980ms) forwards;
}

.hero__outline {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 48.5%;
  width: clamp(76px, 9vw, 170px);
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,0.58);
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) rotate(35deg) scale(0.55);
  animation:
    hero-outline-in 1100ms cubic-bezier(0.22, 1, 0.36, 1) calc(var(--hero-delay) + 380ms) forwards,
    hero-outline-breathe 4.8s ease-in-out calc(var(--hero-delay) + 1.5s) infinite alternate;
}

@keyframes hero-outline-in {
  to { opacity: 1; transform: translate(-50%, -50%) rotate(45deg) scale(1); }
}

@keyframes hero-outline-breathe {
  from { opacity: 0.58; transform: translate(-50%, -50%) rotate(45deg) scale(1); }
  to { opacity: 0.32; transform: translate(-50%, -50%) rotate(48deg) scale(1.09); }
}

/* Opening statement */
.opening-statement {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.opening-statement > .eyebrow {
  color: var(--teal);
}

.opening-statement__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(280px, 0.72fr);
  align-items: end;
  gap: clamp(50px, 8vw, 150px);
  margin-top: clamp(46px, 6vw, 92px);
}

.display-copy {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(52px, 6.1vw, 118px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.92;
}

.opening-statement__side {
  padding-bottom: 6px;
}

.opening-statement__side p {
  margin: 0 0 38px;
  color: rgba(20,18,19,0.75);
  font-size: 16px;
  line-height: 1.75;
}

.wordmark-word {
  margin: clamp(74px, 10vw, 150px) -0.055em -0.17em;
  color: transparent;
  font-family: var(--sans);
  font-size: clamp(96px, 22.3vw, 430px);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.7;
  -webkit-text-stroke: 1px rgba(20,18,19,0.18);
  white-space: nowrap;
}

/* Menu */
.menu-section {
  background: var(--paper);
}

.section-heading {
  display: grid;
  max-width: 1380px;
  grid-template-columns: 0.6fr 1.3fr 0.75fr;
  align-items: end;
  gap: 50px;
  margin: 0 auto clamp(74px, 8vw, 132px);
}

.section-heading .eyebrow {
  color: var(--teal);
}

.section-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(58px, 6vw, 112px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.88;
}

.section-heading > p:last-child {
  margin: 0;
  color: rgba(20,18,19,0.65);
  font-size: 15px;
  line-height: 1.65;
}

.menu-grid {
  display: grid;
  max-width: 1380px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(44px, 8vw, 130px);
  row-gap: clamp(76px, 8vw, 124px);
  margin: 0 auto;
}

.menu-group {
  border-top: 1px solid var(--ink);
}

.menu-group__head {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 22px;
  padding: 24px 0 30px;
}

.menu-group__head > span {
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.menu-group h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(36px, 3vw, 56px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}

.menu-group__head p {
  max-width: 430px;
  margin: 14px 0 0;
  color: rgba(20,18,19,0.58);
  font-size: 14px;
  line-height: 1.5;
}

.menu-group ul {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.menu-group li {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0 12px 76px;
  border-top: 1px solid var(--line);
}

.menu-group li strong,
.menu-group li small {
  display: block;
}

.menu-group li strong {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.menu-group li small {
  margin-top: 4px;
  color: rgba(20,18,19,0.56);
  font-size: 12px;
}

.menu-group li > span {
  flex: none;
  font-family: var(--serif);
  font-size: 20px;
}

.menu-footer {
  display: flex;
  max-width: 1380px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin: clamp(76px, 10vw, 150px) auto 0;
  padding-top: 30px;
  border-top: 1px solid var(--ink);
}

.menu-footer p {
  max-width: 560px;
  margin: 0;
  color: rgba(20,18,19,0.62);
  font-size: 14px;
  line-height: 1.6;
}

/* Atmosphere */
.atmosphere {
  display: grid;
  min-height: 900px;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  overflow: hidden;
  background: var(--teal);
  color: var(--paper);
}

.atmosphere__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.atmosphere__copy .eyebrow {
  color: var(--mint);
}

.atmosphere__copy h2 {
  max-width: 820px;
  margin: 48px 0 44px;
  font-family: var(--serif);
  font-size: clamp(62px, 7vw, 134px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.86;
}

.atmosphere__lead {
  max-width: 650px;
  margin: 0;
  color: rgba(251,248,241,0.72);
  font-size: 17px;
  line-height: 1.75;
}

.atmosphere__facts {
  display: grid;
  max-width: 760px;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 72px 0 0;
  border-top: 1px solid rgba(255,255,255,0.25);
}

.atmosphere__facts div {
  padding: 22px 18px 0 0;
}

.atmosphere__facts dt {
  margin-bottom: 10px;
  color: var(--mint);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.atmosphere__facts dd {
  margin: 0;
  font-size: 13px;
}

.atmosphere__media {
  position: relative;
  min-height: 900px;
  overflow: hidden;
}

.atmosphere__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.atmosphere__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20,18,19,0.72), transparent 44%);
  content: "";
}

.atmosphere__diamond {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 0;
  width: 124px;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,0.75);
  transform: translate(-50%, -50%) rotate(45deg);
}

.atmosphere__media p {
  position: absolute;
  z-index: 3;
  right: 48px;
  bottom: 46px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 3.2vw, 60px);
  letter-spacing: -0.03em;
  line-height: 0.95;
  text-align: right;
}

/* Gatherings */
.gathering {
  position: relative;
  display: grid;
  min-height: 780px;
  grid-template-columns: 1.05fr 0.85fr;
  align-items: center;
  gap: clamp(60px, 10vw, 190px);
  overflow: hidden;
  background: var(--blush);
}

.gathering__number {
  margin-left: -0.04em;
  font-family: var(--serif);
  font-size: clamp(240px, 34vw, 650px);
  letter-spacing: -0.11em;
  line-height: 0.65;
}

.gathering__copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.gathering__copy .eyebrow {
  color: var(--teal);
}

.gathering__copy h2 {
  margin: 42px 0 34px;
  font-family: var(--serif);
  font-size: clamp(58px, 6vw, 110px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.88;
}

.gathering__copy > p:not(.eyebrow) {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
}

.gathering__copy .gathering__small {
  margin: 24px 0 34px;
  color: rgba(20,18,19,0.62);
  font-size: 13px;
}

.gathering__diamond {
  position: absolute;
  right: 5vw;
  bottom: 5vw;
  width: 40px;
  height: 40px;
  color: rgba(20,18,19,0.42);
}

/* Location */
.location {
  display: grid;
  min-height: 760px;
  grid-template-columns: 1.1fr 0.9fr;
  background: var(--cream);
}

.location__map {
  min-height: 760px;
  background: #dedbd4;
}

.location__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) contrast(0.9) sepia(0.1);
}

.location__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location__copy .eyebrow {
  color: var(--teal);
}

.location__copy h2 {
  margin: 44px 0 28px;
  font-family: var(--serif);
  font-size: clamp(64px, 6.8vw, 130px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.86;
}

.location__copy > p:not(.eyebrow) {
  margin: 0;
  color: rgba(20,18,19,0.65);
  font-size: 16px;
}

.location__links {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin-top: 50px;
  border-top: 1px solid var(--ink);
}

.location__links a {
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.location__links a:hover {
  color: var(--teal);
}

.social-links {
  display: flex;
  gap: 30px;
  margin-top: 42px;
}

.social-links a {
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* Footer */
.footer {
  padding: 72px clamp(24px, 5vw, 96px) 30px;
  background: var(--ink);
  color: var(--paper);
}

.footer__top,
.footer__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.footer__top img {
  width: 180px;
  height: 180px;
  object-fit: contain;
}

.footer__top p {
  margin: 0 0 28px;
  color: rgba(251,248,241,0.62);
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 50px);
  line-height: 1.1;
  text-align: right;
}

.footer__bottom {
  margin-top: 58px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.2);
  color: rgba(251,248,241,0.52);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer__bottom a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

/* Scroll reveal */
.motion-ready .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 800ms cubic-bezier(0.22, 1, 0.36, 1), transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

  .hero__copy {
    width: 57%;
  }

  .hero__media {
    width: 58%;
  }

  .hero__outline {
    left: 53%;
  }

  .section-heading {
    grid-template-columns: 0.5fr 1.35fr;
  }

  .section-heading > p:last-child {
    grid-column: 2;
    max-width: 500px;
  }

  .atmosphere {
    grid-template-columns: 1.05fr 0.95fr;
  }

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

  .atmosphere__facts div {
    display: flex;
    justify-content: space-between;
    padding: 14px 0 0;
    border-top: 1px solid rgba(255,255,255,0.15);
  }
}

@media (max-width: 900px) {
  .section-pad {
    padding: 86px 24px;
  }

  .site-header {
    position: absolute;
    min-height: 72px;
    grid-template-columns: 1fr auto;
    padding: 0 18px;
  }

  .brand {
    width: 64px;
    height: 64px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    display: grid;
    width: 46px;
    height: 46px;
    place-content: center;
    gap: 7px;
    border: 1px solid rgba(255,255,255,0.4);
    background: none;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 19px;
    height: 1px;
    background: white;
    transition: transform 240ms ease;
  }

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

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

  .mobile-nav {
    position: fixed;
    z-index: 2;
    inset: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 14px;
    padding: 86px 26px 30px;
    background: var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 240ms ease, transform 240ms ease, visibility 240ms ease;
  }

  .mobile-nav--open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-nav > a:not(.mobile-nav__phone) {
    font-family: var(--serif);
    font-size: clamp(48px, 14vw, 72px);
    letter-spacing: -0.04em;
    line-height: 0.94;
  }

  .mobile-nav__phone {
    margin-top: 28px;
    padding-bottom: 8px;
    border-bottom: 1px solid white;
    font-size: 15px;
    letter-spacing: 0.12em;
  }

  .hero {
    display: flex;
    min-height: auto;
    flex-direction: column;
    padding-top: 72px;
  }

  .hero__copy {
    width: 100%;
    min-height: auto;
    padding: 54px 24px 56px;
    clip-path: none;
  }

  .hero__eyebrow {
    margin-bottom: 34px;
  }

  .hero h1 {
    max-width: 680px;
    font-size: clamp(48px, 13.6vw, 88px);
    line-height: 1;
  }

  .hero__line {
    overflow: visible;
  }

  .hero__line > span {
    opacity: 0;
    transform: translateY(28px) rotate(1.2deg);
    animation-name: hero-line-mobile-in;
  }

  .hero__line--two {
    margin-left: 0.42em;
  }

  .hero__lead {
    max-width: 580px;
    margin-top: 34px;
    font-size: 15px;
  }

  .hero__actions {
    flex-wrap: wrap;
    margin-top: 30px;
  }

  .hero__media {
    position: relative;
    width: 100%;
    height: 54svh;
    min-height: 420px;
    order: 2;
  }

  .hero__media > img {
    object-position: center center;
  }

  .hero__outline {
    z-index: 6;
    top: auto;
    bottom: calc(54svh - 54px);
    left: 50%;
    width: 92px;
  }

  .opening-statement__grid {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 46px;
  }

  .display-copy {
    font-size: clamp(48px, 12vw, 78px);
  }

  .opening-statement__side {
    max-width: 560px;
  }

  .wordmark-word {
    margin-top: 100px;
    font-size: 22vw;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section-heading > p:last-child {
    grid-column: 1;
  }

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

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

  .atmosphere__copy h2 {
    font-size: clamp(56px, 12vw, 86px);
  }

  .atmosphere__media {
    min-height: 820px;
  }

  .atmosphere__diamond {
    top: 0;
    left: 50%;
  }

  .gathering {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .gathering__number {
    font-size: min(72vw, 460px);
    justify-self: center;
  }

  .gathering__copy {
    max-width: 680px;
  }

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

  .location__map {
    min-height: 520px;
  }

  .location__copy {
    min-height: 650px;
  }
}

@media (max-width: 560px) {
  .intro__diamond {
    width: 70vw;
  }

  .intro__logo {
    width: 62vw;
  }

  .intro__skip {
    top: 18px;
    right: 18px;
  }

  .hero__copy {
    padding-top: 48px;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .hero__media {
    height: 48svh;
    min-height: 350px;
  }

  .hero__outline {
    bottom: calc(48svh - 48px);
    width: 78px;
  }

  .hero__caption {
    right: 14px;
    bottom: 14px;
    min-width: auto;
    padding: 14px 15px;
    font-size: 10px;
  }

  .hero__caption .diamond-mark {
    width: 14px;
    height: 14px;
  }

  .display-copy {
    font-size: clamp(44px, 13vw, 64px);
  }

  .section-heading h2 {
    font-size: clamp(50px, 15vw, 72px);
  }

  .menu-group__head {
    grid-template-columns: 34px 1fr;
    gap: 10px;
  }

  .menu-group h3 {
    font-size: 38px;
  }

  .menu-group li {
    min-height: 64px;
    padding-left: 44px;
  }

  .menu-group li strong {
    font-size: 13px;
  }

  .menu-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .atmosphere__copy h2 {
    font-size: clamp(53px, 15vw, 72px);
  }

  .atmosphere__lead {
    font-size: 15px;
  }

  .atmosphere__facts {
    margin-top: 50px;
  }

  .atmosphere__media {
    min-height: 640px;
  }

  .atmosphere__media p {
    right: 24px;
    bottom: 26px;
  }

  .gathering {
    padding-top: 110px;
  }

  .gathering__number {
    font-size: 77vw;
  }

  .gathering__copy h2 {
    font-size: clamp(53px, 15vw, 74px);
  }

  .location__map {
    min-height: 410px;
  }

  .location__copy {
    min-height: 590px;
  }

  .location__copy h2 {
    font-size: clamp(54px, 15.5vw, 76px);
  }

  .location__links a {
    font-size: 21px;
  }

  .footer {
    padding-top: 50px;
  }

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

  .footer__top img {
    width: 132px;
    height: 132px;
  }

  .footer__top p {
    margin: 0;
    text-align: left;
  }
}

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

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

  .motion-ready .reveal {
    opacity: 1;
    transform: none;
  }

  .hero__eyebrow,
  .hero__line > span,
  .hero__lead,
  .hero__actions,
  .hero__caption,
  .hero__moving-diamond,
  .hero__outline,
  .hero__media > img {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .hero__outline {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .hero__moving-diamond {
    opacity: 0.5;
    transform: rotate(45deg);
  }
}

/* Static export runtime */
.intro-static {
  display: none;
}

.show-intro .intro-static {
  display: grid;
  animation:
    intro-in 450ms ease both,
    intro-failsafe 0s linear 4s forwards;
}

.show-intro .intro-static.intro--leaving {
  animation: intro-out 650ms cubic-bezier(0.7, 0, 0.2, 1) both;
}

.show-intro .hero {
  --hero-delay: 2.72s;
}

.menu-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  .mobile-nav {
    z-index: 99;
    color: var(--paper);
  }
}

@keyframes intro-failsafe {
  to {
    visibility: hidden;
    pointer-events: none;
  }
}
