@font-face {
  font-family: "Aurelle Sans";
  src: url("../fonts/aurelle-sans.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Aurelle Sans";
  src: url("../fonts/aurelle-sans-bold.woff") format("woff");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --ink: #18211b;
  --forest: #243028;
  --forest-deep: #131a16;
  --moss: #788271;
  --sage: #aeb6a8;
  --paper: #f1efe8;
  --paper-deep: #e8e3d9;
  --sand: #d8cab6;
  --clay: #9a715e;
  --white: #fbfaf6;
  --line: rgba(24, 33, 27, 0.18);
  --sans: "Aurelle Sans", "Helvetica Neue", Arial, sans-serif;
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", Times, serif;
  --wrap: min(100% - 80px, 1440px);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-in-out: cubic-bezier(.65, 0, .35, 1);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--moss) var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.modal-open { overflow: hidden; }

::selection { color: var(--white); background: var(--clay); }

img { display: block; width: 100%; height: auto; }
svg { display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

address { font-style: normal; }

.wrap { width: var(--wrap); margin-inline: auto; }
.section { padding-block: clamp(104px, 11vw, 184px); }

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform .2s ease;
}

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

/* Opening transition */
.page-loader {
  position: fixed;
  z-index: 10000;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 24px;
  color: var(--paper);
  background: var(--forest-deep);
  transition: transform 1s var(--ease-in-out) .25s;
}

.page-loader::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: rgba(255,255,255,.14);
}

.page-loader__mark { width: 58px; }
.page-loader__mark svg { width: 100%; }
.page-loader__mark path:first-child { fill: none; stroke: currentColor; stroke-width: 1.1; }
.page-loader__mark path:last-child { fill: none; stroke: currentColor; stroke-width: 1.1; }

.page-loader__line {
  position: relative;
  width: 150px;
  height: 1px;
  overflow: hidden;
  background: rgba(255,255,255,.16);
}

.page-loader__line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--sand);
  transform-origin: left;
  animation: loading-line 1.25s var(--ease) forwards;
}

.page-loader p {
  margin: 0;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .26em;
}

body.is-loaded .page-loader {
  transform: translateY(-101%);
  pointer-events: none;
}

@keyframes loading-line {
  0% { transform: scaleX(0); }
  70% { transform: scaleX(.82); }
  100% { transform: scaleX(1); }
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  height: 88px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-inline: 40px;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.24);
  transition: color .45s ease, background .45s ease, height .45s ease, border-color .45s ease, transform .45s var(--ease);
}

.site-header.is-scrolled {
  height: 72px;
  color: var(--ink);
  background: rgba(241, 239, 232, .92);
  border-color: var(--line);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.site-header.is-hidden { transform: translateY(-102%); }

.brand {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand__mark { width: 27px; }
.brand__mark svg { width: 100%; }
.brand__mark path:first-child { fill: none; stroke: currentColor; stroke-width: 1.25; }
.brand__mark path:last-child { fill: none; stroke: currentColor; stroke-width: 1.25; }
.brand__name {
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.desktop-nav { display: flex; align-items: center; gap: 36px; }
.desktop-nav a {
  position: relative;
  padding-block: 12px;
  font-size: 10px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .18em;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 7px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .45s var(--ease);
}
.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }

.header-book {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 0;
  color: inherit;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .18em;
}
.header-book svg { width: 18px; fill: none; stroke: currentColor; }
.header-book svg { transition: transform .35s var(--ease); }
.header-book:hover svg { transform: translateX(4px); }

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

/* Shared typography and controls */
.eyebrow {
  margin: 0;
  font-size: 9px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: .24em;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.section-heading--light { border-color: rgba(255,255,255,.22); }
.section-number { margin: 0; font-size: 10px; letter-spacing: .12em; }

.display-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(56px, 7.1vw, 114px);
  font-weight: 400;
  line-height: .94;
  letter-spacing: -.055em;
}
.display-title em { font-weight: 400; }

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  width: fit-content;
  padding-bottom: 7px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: .17em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}
.text-link span { transition: transform .35s var(--ease); }
.text-link:hover span { transform: translate(3px, -3px); }

.button {
  min-height: 56px;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 0 20px;
  border: 1px solid currentColor;
  background: transparent;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .16em;
  text-decoration: none;
  cursor: pointer;
  transition: color .35s ease, background .35s ease, border-color .35s ease;
}
.button svg { width: 18px; fill: none; stroke: currentColor; transition: transform .35s var(--ease); }
.button:hover svg { transform: translateX(5px); }
.button--outline:hover { color: var(--paper); background: var(--ink); border-color: var(--ink); }
.button--light { color: var(--forest); background: var(--paper); border-color: var(--paper); }
.button--light:hover { color: var(--paper); background: transparent; }
.button--sand { color: var(--forest); background: var(--sand); border-color: var(--sand); }
.button--sand:hover { color: var(--white); background: transparent; border-color: rgba(255,255,255,.55); }
.button--dark { color: var(--white); background: var(--forest); border-color: var(--forest); }
.button--dark:hover { color: var(--forest); background: transparent; }

/* Hero */
.hero {
  position: relative;
  min-height: 780px;
  height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: var(--forest-deep);
}

.hero__media,
.hero__wash { position: absolute; inset: 0; }
.hero__media { transform: scale(1.06) translate3d(0, var(--hero-y, 0px), 0); transition: transform 1.8s var(--ease) .65s; will-change: transform; }
body.is-loaded .hero__media { transform: scale(1) translate3d(0, var(--hero-y, 0px), 0); }
body.parallax-ready .hero__media { transition: none; }
.hero__media img { height: 100%; object-fit: cover; object-position: center 48%; }
.hero__wash {
  background:
    linear-gradient(180deg, rgba(8,13,10,.4) 0%, rgba(8,13,10,.05) 37%, rgba(8,13,10,.72) 100%),
    linear-gradient(90deg, rgba(8,13,10,.34), transparent 52%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(56px, 6.6vh, 84px);
}

.hero__kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  opacity: 0;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .24em;
  transform: translateY(12px);
  transition: opacity .8s ease 1s, transform .8s var(--ease) 1s;
}
body.is-loaded .hero__kicker { opacity: 1; transform: none; }
.hero__kicker span { width: 24px; height: 1px; background: currentColor; }

.hero h1 {
  max-width: 1160px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(70px, 9.1vw, 148px);
  font-weight: 400;
  line-height: .82;
  letter-spacing: -.065em;
}
.hero h1 em { font-weight: 400; }
.hero-line { display: block; overflow: hidden; padding-bottom: .08em; }
.hero-line > span { display: block; transform: translateY(115%); transition: transform 1.15s var(--ease); }
body.is-loaded .hero-line:first-child > span { transform: none; transition-delay: .72s; }
body.is-loaded .hero-line:nth-child(2) > span { transform: none; transition-delay: .84s; }

.hero__lower {
  display: grid;
  grid-template-columns: minmax(220px, 430px) auto;
  align-items: end;
  justify-content: space-between;
  margin-top: 38px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .9s ease 1.15s, transform .9s var(--ease) 1.15s;
}
body.is-loaded .hero__lower { opacity: 1; transform: none; }
.hero__lower > p { max-width: 390px; margin: 0; font-size: 14px; line-height: 1.7; }

.circle-link {
  width: 114px;
  height: 114px;
  display: grid;
  place-items: center;
  grid-template-columns: 1fr;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
  color: inherit;
  text-align: center;
  text-decoration: none;
  transition: color .4s ease, background .4s ease, transform .4s var(--ease);
}
.circle-link span { grid-area: 1 / 1; font-size: 9px; line-height: 1.5; text-transform: uppercase; letter-spacing: .17em; transition: opacity .3s ease; }
.circle-link svg { grid-area: 1 / 1; width: 24px; fill: none; stroke: currentColor; opacity: 0; transform: translateY(-7px); transition: opacity .3s ease, transform .4s var(--ease); }
.circle-link:hover { color: var(--forest); background: var(--paper); transform: scale(1.04); }
.circle-link:hover span { opacity: 0; }
.circle-link:hover svg { opacity: 1; transform: none; }

.hero__aside {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 8px;
  letter-spacing: .2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
}
.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #bfcda0;
  box-shadow: 0 0 0 4px rgba(191,205,160,.14);
}
.hero__index { position: absolute; z-index: 2; left: 40px; bottom: 22px; margin: 0; font-size: 8px; letter-spacing: .18em; }

/* Introduction */
.introduction { background: var(--paper); }
.intro-grid {
  display: grid;
  grid-template-columns: 1.45fr .55fr;
  gap: 8vw;
  align-items: end;
  padding-top: clamp(70px, 9vw, 136px);
}
.intro-copy { max-width: 430px; padding-bottom: 4px; }
.intro-copy__lead { margin: 0 0 20px; font-family: var(--serif); font-size: 25px; line-height: 1.25; letter-spacing: -.025em; }
.intro-copy > p:not(.intro-copy__lead) { margin: 0 0 42px; color: rgba(24,33,27,.73); font-size: 13px; line-height: 1.8; }

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr) .62fr;
  margin-top: clamp(86px, 10vw, 152px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.fact {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border-right: 1px solid var(--line);
}
.fact strong { font-family: var(--serif); font-size: clamp(40px, 4.1vw, 68px); font-weight: 400; line-height: 1; letter-spacing: -.04em; }
.fact > span { max-width: 145px; font-size: 9px; line-height: 1.55; letter-spacing: .14em; text-transform: uppercase; }
.fact--mark { align-items: center; justify-content: center; border-right: 0; }
.fact--mark svg { width: 84px; }
.fact--mark circle, .fact--mark path { fill: none; stroke: var(--moss); stroke-width: .75; }

/* Rituals */
.rituals { color: var(--paper); background: var(--forest); }
.rituals__intro {
  display: grid;
  grid-template-columns: 1.5fr .5fr;
  gap: 8vw;
  align-items: end;
  padding: clamp(70px, 8vw, 126px) 0 clamp(92px, 10vw, 152px);
}
.rituals__intro > p { max-width: 360px; margin: 0 0 10px; color: rgba(241,239,232,.68); font-size: 13px; line-height: 1.8; }

.ritual-list { display: grid; gap: clamp(100px, 13vw, 200px); }
.ritual-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1.35fr) minmax(300px, .65fr);
  column-gap: clamp(26px, 4.5vw, 72px);
  align-items: end;
}
.ritual-card--reverse { grid-template-columns: 44px minmax(300px, .65fr) minmax(0, 1.35fr); }
.ritual-card--reverse .ritual-card__media { grid-column: 3; }
.ritual-card--reverse .ritual-card__body { grid-column: 2; grid-row: 1; }
.ritual-card__index { align-self: start; padding-top: 3px; color: var(--sage); font-family: var(--serif); font-size: 13px; }
.ritual-card__media { position: relative; overflow: hidden; aspect-ratio: 1.42 / 1; background: var(--forest-deep); }
.ritual-card__media--portrait { width: 76%; margin-left: auto; aspect-ratio: .78 / 1; }
.ritual-card__media img { height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.ritual-card:hover .ritual-card__media img { transform: scale(1.035); }
.ritual-card__duration {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 12px 16px;
  color: var(--forest);
  background: var(--paper);
  font-size: 8px;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.ritual-card__body { min-height: 420px; display: flex; flex-direction: column; justify-content: space-between; }
.ritual-card__body h3 { max-width: 460px; margin: 18px 0 0; font-family: var(--serif); font-size: clamp(44px, 5vw, 78px); font-weight: 400; line-height: .96; letter-spacing: -.045em; }
.ritual-card__body > p { max-width: 400px; margin: 45px 0; color: rgba(241,239,232,.68); font-size: 12px; line-height: 1.85; }
.ritual-card__meta { display: flex; align-items: center; justify-content: space-between; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.2); }
.ritual-card__meta > span { font-size: 10px; letter-spacing: .15em; text-transform: uppercase; }
.icon-button {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--paper);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: color .3s ease, background .3s ease;
}
.icon-button svg { width: 20px; fill: none; stroke: currentColor; transition: transform .4s var(--ease); }
.icon-button:hover { color: var(--forest); background: var(--paper); }
.icon-button:hover svg { transform: translateX(3px); }

/* Moving line */
.moving-line {
  overflow: hidden;
  padding: 23px 0 20px;
  color: var(--forest);
  background: var(--sand);
  white-space: nowrap;
}
.moving-line__track { width: max-content; display: flex; align-items: center; animation: marquee 28s linear infinite; }
.moving-line span { font-family: var(--serif); font-size: clamp(30px, 3.2vw, 52px); font-style: italic; letter-spacing: -.03em; }
.moving-line i { margin: 0 34px; font-size: 13px; font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* The house */
.house { background: var(--paper); }
.house__title-row {
  display: grid;
  grid-template-columns: 1.5fr .5fr;
  gap: 8vw;
  align-items: end;
  padding: clamp(70px, 8vw, 126px) 0 clamp(80px, 8vw, 124px);
}
.house__title-row > p { max-width: 360px; margin: 0 0 8px; color: rgba(24,33,27,.7); font-size: 13px; line-height: 1.8; }
.house-gallery { display: grid; grid-template-columns: 1.55fr .45fr; gap: 24px; align-items: end; }
.house-gallery figure { margin: 0; }
.house-gallery__main img { aspect-ratio: 1.45 / 1; object-fit: cover; }
.house-gallery__side { padding-bottom: 52px; }
.house-gallery__side img { aspect-ratio: .82 / 1; object-fit: cover; }
.house-gallery figcaption { display: flex; justify-content: space-between; margin-top: 13px; font-size: 8px; letter-spacing: .16em; text-transform: uppercase; }
.house-gallery figcaption span:last-child { color: rgba(24,33,27,.5); }
.house-notes { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: clamp(90px, 10vw, 150px); border-top: 1px solid var(--line); }
.house-note { padding: 26px 7vw 0 0; }
.house-note + .house-note { padding-left: 32px; border-left: 1px solid var(--line); }
.house-note > span { font-size: 9px; color: var(--moss); letter-spacing: .12em; }
.house-note h3 { margin: 60px 0 20px; font-family: var(--serif); font-size: 27px; font-weight: 400; }
.house-note p { max-width: 320px; margin: 0; color: rgba(24,33,27,.66); font-size: 12px; line-height: 1.85; }

/* Quote */
.quote-section {
  position: relative;
  min-height: 720px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--forest-deep);
}
.quote-section__media, .quote-section__overlay { position: absolute; inset: 0; }
.quote-section__media img { height: 100%; object-fit: cover; }
.quote-section__overlay { background: rgba(15,25,19,.7); }
.quote-section blockquote { position: relative; z-index: 1; margin-block: 0; text-align: center; }
.quote-section blockquote > svg { width: 48px; margin: 0 auto 46px; fill: var(--sand); }
.quote-section blockquote > p { max-width: 1080px; margin: 0 auto; font-family: var(--serif); font-size: clamp(42px, 6vw, 91px); font-weight: 400; line-height: 1.02; letter-spacing: -.045em; }
.quote-section footer { display: flex; flex-direction: column; gap: 7px; margin-top: 56px; font-size: 8px; text-transform: uppercase; letter-spacing: .2em; }
.quote-section footer span:last-child { color: rgba(255,255,255,.55); }

/* Membership */
.membership { background: var(--paper-deep); }
.membership__heading {
  display: grid;
  grid-template-columns: 1.5fr .5fr;
  gap: 8vw;
  align-items: end;
  padding: clamp(70px, 8vw, 126px) 0 clamp(80px, 9vw, 140px);
}
.membership__heading > p { max-width: 360px; margin: 0 0 8px; color: rgba(24,33,27,.7); font-size: 13px; line-height: 1.8; }
.visit-options { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.visit-card {
  min-height: 570px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border-right: 1px solid var(--line);
}
.visit-card:last-child { border-right: 0; }
.visit-card--feature { color: var(--paper); background: var(--forest); transform: translateY(-24px); }
.visit-card__top { display: flex; justify-content: space-between; align-items: center; }
.visit-card__number { font-family: var(--serif); font-size: 13px; }
.visit-card__tag { padding: 7px 10px; border: 1px solid currentColor; border-radius: 50px; font-size: 7px; letter-spacing: .14em; text-transform: uppercase; }
.visit-card h3 { margin: 15px 0 42px; font-family: var(--serif); font-size: clamp(38px, 3.8vw, 58px); font-weight: 400; line-height: 1; letter-spacing: -.04em; }
.visit-card__price { margin: 0 0 25px; font-family: var(--serif); font-size: clamp(32px, 3.1vw, 47px); line-height: 1; }
.visit-card__price span { font-family: var(--sans); font-size: 8px; text-transform: uppercase; letter-spacing: .13em; }
.visit-card__price small { font-family: var(--sans); font-size: 9px; }
.visit-card > div:nth-child(2) > p:last-child { max-width: 320px; margin: 0; color: rgba(24,33,27,.66); font-size: 11px; line-height: 1.75; }
.visit-card--feature > div:nth-child(2) > p:last-child { color: rgba(241,239,232,.68); }

/* Visit */
.visit { padding-bottom: 0; overflow: hidden; color: var(--paper); background: var(--forest-deep); }
.visit__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12vw; padding: clamp(70px, 8vw, 120px) 0 clamp(80px, 9vw, 140px); }
.visit__intro > p { max-width: 450px; margin: 46px 0 40px; color: rgba(241,239,232,.65); font-size: 13px; line-height: 1.8; }
.visit__details { border-top: 1px solid rgba(255,255,255,.22); }
.detail-row { display: grid; grid-template-columns: 135px 1fr; gap: 30px; padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,.22); }
.detail-row > p { margin: 0; color: rgba(255,255,255,.48); font-size: 8px; text-transform: uppercase; letter-spacing: .18em; }
.detail-row div { display: flex; flex-direction: column; gap: 7px; }
.detail-row div, .detail-row a { font-family: var(--serif); font-size: 17px; line-height: 1.45; text-decoration: none; }
.detail-row a { width: fit-content; }
.detail-row div > a:last-child { margin-top: 8px; font-family: var(--sans); font-size: 8px; letter-spacing: .15em; text-transform: uppercase; }
.detail-row div p { display: flex; justify-content: space-between; gap: 20px; margin: 0; }
.detail-row div p span { color: rgba(255,255,255,.55); }
.visit__wordmark {
  margin-bottom: -.145em;
  font-family: var(--serif);
  font-size: min(22vw, 350px);
  line-height: .82;
  letter-spacing: -.07em;
  text-align: center;
  color: var(--sand);
}

/* Footer */
.site-footer { color: var(--forest); background: var(--sand); }
.site-footer__top { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 7vw; padding: 78px 0 70px; }
.footer-brand .brand__mark { display: block; width: 46px; margin-bottom: 36px; }
.footer-brand > p { max-width: 300px; margin: 0; font-family: var(--serif); font-size: 21px; line-height: 1.35; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 38px; }
.footer-links > div { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
.footer-links .eyebrow { margin-bottom: 19px; }
.footer-links a { position: relative; font-family: var(--serif); font-size: 16px; text-decoration: none; }
.footer-links a::after { content: ""; position: absolute; right: 0; bottom: -2px; left: 0; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease); }
.footer-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.newsletter > p:nth-child(2) { max-width: 390px; margin: 24px 0 30px; font-family: var(--serif); font-size: 17px; line-height: 1.45; }
.newsletter form { display: flex; border-bottom: 1px solid currentColor; }
.newsletter input { min-width: 0; flex: 1; padding: 14px 0; color: var(--forest); border: 0; outline: 0; background: transparent; font-size: 12px; }
.newsletter input::placeholder { color: rgba(36,48,40,.55); }
.newsletter button { width: 46px; display: grid; place-items: center; padding: 0; border: 0; background: transparent; cursor: pointer; }
.newsletter button svg { width: 20px; fill: none; stroke: currentColor; transition: transform .35s var(--ease); }
.newsletter button:hover svg { transform: translateX(4px); }
.newsletter__message { min-height: 18px; margin: 10px 0 0; font-size: 9px; letter-spacing: .08em; }
.site-footer__bottom { min-height: 72px; display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; border-top: 1px solid rgba(36,48,40,.28); font-size: 8px; text-transform: uppercase; letter-spacing: .14em; }
.site-footer__bottom p { margin: 0; }
.site-footer__bottom div { display: flex; justify-content: center; gap: 24px; }
.site-footer__bottom a { text-decoration: none; }
.site-footer__bottom > a { justify-self: end; }

/* Modal */
.booking-modal {
  width: min(1120px, calc(100% - 32px));
  max-width: none;
  max-height: min(820px, calc(100vh - 32px));
  padding: 0;
  color: var(--ink);
  border: 0;
  background: var(--paper);
  opacity: 0;
  transform: translateY(24px) scale(.985);
  transition: opacity .35s ease, transform .45s var(--ease), display .35s allow-discrete, overlay .35s allow-discrete;
}
.booking-modal[open] { opacity: 1; transform: none; }
@starting-style { .booking-modal[open] { opacity: 0; transform: translateY(24px) scale(.985); } }
.booking-modal::backdrop { background: rgba(12,17,14,.78); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); opacity: 0; transition: opacity .35s ease, display .35s allow-discrete, overlay .35s allow-discrete; }
.booking-modal[open]::backdrop { opacity: 1; }
@starting-style { .booking-modal[open]::backdrop { opacity: 0; } }
.booking-modal__panel { min-height: 690px; display: grid; grid-template-columns: .75fr 1.25fr; }
.booking-modal__visual { position: relative; overflow: hidden; min-height: 690px; color: var(--white); background: var(--forest); }
.booking-modal__visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(13,20,16,.72)); }
.booking-modal__visual img { height: 100%; object-fit: cover; filter: saturate(.75); }
.booking-modal__visual > div { position: absolute; z-index: 1; right: 34px; bottom: 32px; left: 34px; }
.booking-modal__visual p { margin: 0 0 15px; font-family: var(--serif); font-size: 37px; line-height: 1.05; letter-spacing: -.035em; }
.booking-modal__visual span { font-size: 8px; letter-spacing: .18em; text-transform: uppercase; }
.booking-modal__content { position: relative; overflow-y: auto; padding: 48px clamp(36px, 5vw, 74px); }
.modal-close { position: absolute; top: 24px; right: 24px; width: 40px; height: 40px; padding: 0; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; transition: transform .35s var(--ease), background .3s ease; }
.modal-close:hover { background: var(--paper-deep); transform: rotate(90deg); }
.modal-close span { position: absolute; top: 50%; left: 50%; width: 14px; height: 1px; background: currentColor; transform: translate(-50%, -50%) rotate(45deg); }
.modal-close span:last-child { transform: translate(-50%, -50%) rotate(-45deg); }
.booking-modal__content > h2 { margin: 19px 0 12px; font-family: var(--serif); font-size: clamp(44px, 5vw, 68px); font-weight: 400; line-height: 1; letter-spacing: -.045em; }
.booking-modal__note { max-width: 540px; margin: 0 0 32px; color: rgba(24,33,27,.66); font-size: 11px; line-height: 1.7; }
.booking-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 8px; letter-spacing: .14em; text-transform: uppercase; }
.field label span { color: rgba(24,33,27,.48); }
.field input, .field select, .field textarea { width: 100%; padding: 11px 0 10px; color: var(--ink); border: 0; border-bottom: 1px solid var(--line); border-radius: 0; outline: 0; background: transparent; font-size: 12px; transition: border-color .25s ease; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--ink); }
.field textarea { resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: rgba(24,33,27,.42); }
.booking-form .button { width: 100%; margin-top: 5px; }
.form-disclaimer { margin: -5px 0 0; color: rgba(24,33,27,.52); font-size: 8px; line-height: 1.5; }
.booking-success { max-width: 460px; margin-top: 76px; }
.booking-success > span { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid var(--moss); border-radius: 50%; color: var(--moss); }
.booking-success h3 { margin: 28px 0 14px; font-family: var(--serif); font-size: 46px; font-weight: 400; line-height: 1; letter-spacing: -.04em; }
.booking-success p { margin: 0 0 30px; color: rgba(24,33,27,.65); font-size: 12px; line-height: 1.75; }

/* Scroll reveals */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .9s ease, transform 1s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.house-note:nth-child(2), .visit-card:nth-child(2) { transition-delay: .12s; }
.house-note:nth-child(3), .visit-card:nth-child(3) { transition-delay: .24s; }

/* Responsive */
@media (max-width: 1100px) {
  :root { --wrap: min(100% - 48px, 1440px); }
  .site-header { height: 78px; padding-inline: 24px; }
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto auto; gap: 24px; }
  .header-book { margin-left: auto; }
  .menu-toggle {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    padding: 0;
    color: inherit;
    border: 1px solid currentColor;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
  }
  .menu-toggle > span:not(.sr-only) { grid-area: 1 / 1; width: 15px; height: 1px; background: currentColor; transition: transform .45s var(--ease); }
  .menu-toggle > span:last-child { transform: translateY(4px); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:last-child { transform: rotate(-45deg); }
  .mobile-menu {
    position: fixed;
    z-index: 90;
    inset: 0;
    display: block;
    visibility: hidden;
    color: var(--paper);
    background: var(--forest-deep);
    opacity: 0;
    transform: translateY(-24px);
    transition: visibility .5s, opacity .45s ease, transform .65s var(--ease);
  }
  .mobile-menu.is-open { visibility: visible; opacity: 1; transform: none; }
  .mobile-menu__inner { width: var(--wrap); height: 100%; display: flex; flex-direction: column; justify-content: center; margin: auto; padding-top: 78px; }
  .mobile-menu nav { display: flex; flex-direction: column; margin-top: 40px; }
  .mobile-menu nav a { display: flex; align-items: baseline; gap: 24px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.15); font-family: var(--serif); font-size: clamp(45px, 8vw, 84px); line-height: 1; text-decoration: none; }
  .mobile-menu nav a span { font-family: var(--sans); font-size: 8px; letter-spacing: .18em; }
  .mobile-menu__booking { width: min(100%, 330px); margin-top: 34px; }
  .mobile-menu__footer { display: flex; gap: 28px; margin-top: 28px; }
  .mobile-menu__footer a { font-size: 10px; text-decoration: none; }
  body.menu-open .site-header { color: var(--paper); background: transparent; border-color: rgba(255,255,255,.18); transform: none; }
  .hero__aside { display: none; }
  .hero__index { left: 24px; }

  .ritual-card { grid-template-columns: 32px minmax(0, 1.15fr) minmax(280px, .85fr); }
  .ritual-card--reverse { grid-template-columns: 32px minmax(280px, .85fr) minmax(0, 1.15fr); }
  .ritual-card__body { min-height: 350px; }
  .house-note { padding-right: 30px; }
  .site-footer__top { grid-template-columns: .8fr 1.2fr; }
  .newsletter { grid-column: 1 / -1; max-width: 520px; }
}

@media (max-width: 780px) {
  :root { --wrap: calc(100% - 36px); }
  .section { padding-block: 92px; }
  .site-header { height: 68px; padding-inline: 18px; }
  .site-header.is-scrolled { height: 64px; }
  .header-book { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .brand__name { font-size: 21px; }
  .brand__mark { width: 24px; }
  .display-title { font-size: clamp(49px, 15vw, 76px); line-height: .96; }

  .hero { min-height: 670px; }
  .hero__media img { object-position: 61% center; }
  .hero__wash { background: linear-gradient(180deg, rgba(8,13,10,.42) 0%, rgba(8,13,10,.08) 35%, rgba(8,13,10,.8) 100%); }
  .hero__content { padding-bottom: 55px; }
  .hero h1 { font-size: clamp(63px, 19vw, 92px); line-height: .86; }
  .hero__lower { grid-template-columns: 1fr auto; gap: 20px; margin-top: 27px; }
  .hero__lower > p { max-width: 250px; font-size: 11px; line-height: 1.65; }
  .circle-link { width: 84px; height: 84px; }
  .circle-link span { font-size: 7px; }
  .hero__index { display: none; }

  .intro-grid, .rituals__intro, .house__title-row, .membership__heading { grid-template-columns: 1fr; gap: 46px; }
  .intro-copy, .rituals__intro > p, .house__title-row > p, .membership__heading > p { max-width: 540px; }
  .facts { grid-template-columns: 1fr 1fr; }
  .fact { min-height: 150px; }
  .fact:nth-child(2) { border-right: 0; }
  .fact:nth-child(-n+2) { border-bottom: 1px solid var(--line); }

  .ritual-card, .ritual-card--reverse { grid-template-columns: 26px 1fr; row-gap: 32px; }
  .ritual-card .ritual-card__index { grid-column: 1; grid-row: 1; }
  .ritual-card .ritual-card__media,
  .ritual-card--reverse .ritual-card__media { grid-column: 2; grid-row: 1; width: 100%; margin: 0; aspect-ratio: 1 / .85; }
  .ritual-card .ritual-card__body,
  .ritual-card--reverse .ritual-card__body { grid-column: 2; grid-row: 2; min-height: auto; }
  .ritual-card__body > p { margin: 32px 0; }
  .ritual-card__meta { margin-top: 10px; }
  .ritual-list { gap: 120px; }

  .house-gallery { grid-template-columns: 1fr; gap: 60px; }
  .house-gallery__side { width: 72%; padding: 0; margin-left: auto !important; }
  .house-gallery__side img { aspect-ratio: .8 / 1; }
  .house-notes { grid-template-columns: 1fr; }
  .house-note { padding: 26px 0 50px; border-bottom: 1px solid var(--line); }
  .house-note + .house-note { padding-left: 0; border-left: 0; }
  .house-note h3 { margin-top: 32px; }

  .quote-section { min-height: 640px; }
  .quote-section blockquote > p { font-size: clamp(39px, 11vw, 64px); }

  .visit-options { grid-template-columns: 1fr; border: 0; gap: 16px; }
  .visit-card { min-height: 480px; border: 1px solid var(--line); }
  .visit-card--feature { transform: none; }

  .visit__grid { grid-template-columns: 1fr; gap: 80px; }
  .visit__wordmark { font-size: 23vw; }
  .site-footer__top { grid-template-columns: 1fr; }
  .footer-links { margin-block: 24px; }
  .newsletter { grid-column: auto; }
  .site-footer__bottom { grid-template-columns: 1fr auto; row-gap: 18px; padding: 22px 0; }
  .site-footer__bottom div { display: none; }

  .booking-modal { width: 100%; max-height: 100%; height: 100%; }
  .booking-modal__panel { display: block; min-height: 100%; }
  .booking-modal__visual { display: none; }
  .booking-modal__content { min-height: 100%; padding: 70px 24px 36px; }
}

@media (max-width: 480px) {
  .mobile-menu__footer { flex-direction: column; gap: 10px; }
  .hero__kicker { margin-bottom: 20px; font-size: 7px; }
  .hero h1 { font-size: 17.6vw; }
  .hero__lower { align-items: center; }
  .hero__lower > p { font-size: 10px; }
  .facts { grid-template-columns: 1fr; }
  .fact { min-height: 130px; border-right: 0; border-bottom: 1px solid var(--line); }
  .fact:nth-child(3) { border-bottom: 1px solid var(--line); }
  .fact--mark { min-height: 160px; border-bottom: 0; }
  .detail-row { grid-template-columns: 100px 1fr; gap: 16px; }
  .detail-row div, .detail-row a { font-size: 14px; }
  .booking-form { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .booking-modal__content > h2 { font-size: 45px; }
}

@media (hover: hover) and (pointer: fine) {
  a, button { -webkit-tap-highlight-color: transparent; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .page-loader { display: none; }
  .reveal { opacity: 1; transform: none; }
  .hero-line > span, .hero__kicker, .hero__lower { opacity: 1; transform: none; }
}
