@charset "UTF-8";

:root {
  --ink: #171815;
  --steam: #efeee8;
  --paper: #f7f5ef;
  --cedar: #cf6841;
  --water: #a9ccd3;
  --moss: #77856f;
  --line-dark: rgba(239, 238, 232, .24);
  --line-light: rgba(23, 24, 21, .24);
  --sans: "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", sans-serif;
  --latin: "Jost", "Helvetica Neue", sans-serif;
  --header-h: 78px;
  --rail-h: 58px;
  --page: min(88vw, 1240px);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  overflow-x: hidden;
}

body {
  margin: 0;
  padding-bottom: var(--rail-h);
  color: var(--steam);
  background: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: .035em;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

main,
section,
figure,
article,
div,
nav,
header,
footer {
  min-width: 0;
}

h1,
h2,
h3,
p,
ul,
ol,
figure {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
p,
li,
a,
summary,
span {
  word-break: normal;
  word-break: auto-phrase;
  line-break: strict;
  overflow-wrap: break-word;
}

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

button,
summary {
  color: inherit;
  font: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--steam);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

.breath-mark {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  color: inherit;
  background: repeating-conic-gradient(from -2deg, currentColor 0 13deg, transparent 13deg 30deg);
  border-radius: 50%;
  -webkit-mask: radial-gradient(circle, transparent 0 32%, #000 33% 100%);
  mask: radial-gradient(circle, transparent 0 32%, #000 33% 100%);
}

.eyebrow {
  font-family: var(--latin);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .22em;
  line-height: 1.2;
}

.site-header {
  position: fixed;
  z-index: 120;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: var(--header-h);
  padding: 0 3vw;
  color: var(--steam);
  background: rgba(23, 24, 21, .88);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(14px);
  transition: color .35s, background .35s;
}

.site-header.is-light {
  color: var(--ink);
  background: rgba(239, 238, 232, .9);
  border-bottom-color: var(--line-light);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  line-height: 1;
}

.brand-mark {
  width: 35px;
  animation: mark-turn 34s linear infinite;
}

.brand-type {
  display: grid;
  gap: 3px;
}

.brand-type b {
  font-family: var(--latin);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: .28em;
}

.brand-type small {
  font-family: var(--latin);
  font-size: .42rem;
  letter-spacing: .32em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-family: var(--latin);
  font-size: .66rem;
  letter-spacing: .18em;
}

.desktop-nav a {
  position: relative;
  padding-block: 8px;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}

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

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.menu-button span {
  display: block;
  width: 19px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform .3s;
}

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

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

.mobile-menu {
  position: fixed;
  z-index: 110;
  inset: 0;
  display: grid;
  align-content: center;
  gap: 55px;
  padding: 100px 7vw;
  color: var(--steam);
  background: var(--ink);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu nav {
  display: grid;
}

.mobile-menu a {
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  min-height: 64px;
  font-family: var(--latin);
  font-size: clamp(1.6rem, 7vw, 3.8rem);
  font-weight: 300;
  letter-spacing: .08em;
  border-bottom: 1px solid var(--line-dark);
}

.mobile-menu a span {
  font-size: .62rem;
  letter-spacing: .12em;
}

.mobile-menu p {
  color: rgba(239, 238, 232, .6);
  font-size: .82rem;
}

.booking-rail {
  position: fixed;
  z-index: 130;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: 250px 1fr auto;
  align-items: center;
  min-height: var(--rail-h);
  color: var(--steam);
  background: var(--ink);
  border-top: 1px solid var(--line-dark);
  transition: transform .5s var(--ease);
}

.booking-rail.is-near-end {
  transform: translateY(100%);
}

.rail-state {
  display: grid;
  grid-template-columns: 14px 74px 1fr;
  align-items: center;
  gap: 9px;
  align-self: stretch;
  padding-inline: 22px;
  border-right: 1px solid var(--line-dark);
}

.rail-dot {
  width: 9px;
  height: 9px;
  background: var(--cedar);
  border-radius: 50%;
  transform: scale(var(--rail-pulse, 1));
  transition: background .5s, transform .2s;
}

.rail-state b,
.rail-state small,
.booking-rail > p,
.booking-rail > a {
  font-family: var(--latin);
  line-height: 1;
}

.rail-state b {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .14em;
}

.rail-state small {
  color: rgba(239, 238, 232, .52);
  font-size: .5rem;
  letter-spacing: .12em;
}

.booking-rail > p {
  padding-inline: 25px;
  color: rgba(239, 238, 232, .6);
  font-size: .6rem;
  letter-spacing: .1em;
}

.booking-rail > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  align-self: stretch;
  min-width: 280px;
  padding-inline: 24px;
  color: var(--ink);
  background: var(--steam);
  font-size: .75rem;
  letter-spacing: .1em;
}

.booking-rail > a span {
  font-size: 1.2rem;
  transition: transform .25s;
}

.booking-rail > a:hover span {
  transform: rotate(45deg);
}

.hero {
  position: relative;
  min-height: max(720px, 100svh);
  padding-top: var(--header-h);
  color: var(--steam);
  background: var(--ink);
  overflow: hidden;
}

.hero-symbol {
  position: absolute;
  top: -30vw;
  right: -16vw;
  width: min(78vw, 1120px);
  color: rgba(239, 238, 232, .95);
  animation: mark-breathe 8s ease-in-out infinite alternate;
}

.hero-symbol .breath-mark {
  animation: mark-turn 54s linear infinite;
}

.hero-portal {
  position: absolute;
  z-index: 1;
  top: 14vh;
  right: 10vw;
  width: min(48vw, 690px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  animation: portal-breathe 9s ease-in-out infinite alternate;
}

.hero-portal::after {
  position: absolute;
  inset: 0;
  content: "";
  border: 1px solid rgba(239, 238, 232, .46);
  border-radius: inherit;
}

.hero-portal img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.72) contrast(1.08);
}

.hero-name {
  position: absolute;
  z-index: 2;
  top: 22vh;
  left: 4vw;
  display: grid;
  color: rgba(239, 238, 232, .11);
  font-family: var(--latin);
  line-height: .72;
}

.hero-name span {
  font-size: clamp(8rem, 20vw, 20rem);
  font-weight: 300;
  letter-spacing: -.08em;
}

.hero-name small {
  margin-left: .8vw;
  color: rgba(239, 238, 232, .48);
  font-size: .55rem;
  letter-spacing: .28em;
}

.hero-copy {
  position: absolute;
  z-index: 4;
  bottom: calc(var(--rail-h) + 45px);
  left: 7vw;
  width: min(430px, 38vw);
}

.hero-copy .eyebrow {
  margin-bottom: 22px;
  color: var(--water);
}

.hero h1 {
  max-width: 8em;
  font-size: clamp(3.3rem, 5.7vw, 6.4rem);
  font-weight: 400;
  letter-spacing: -.08em;
  line-height: 1.08;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 390px;
  margin-top: 26px;
  color: rgba(239, 238, 232, .72);
  font-size: .85rem;
}

.text-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 330px);
  margin-top: 34px;
  padding-bottom: 12px;
  font-size: .76rem;
  font-weight: 500;
  border-bottom: 1px solid var(--steam);
}

.text-link span {
  font-family: var(--latin);
  font-size: 1.2rem;
}

.hero-facts {
  position: absolute;
  z-index: 4;
  right: 5vw;
  bottom: calc(var(--rail-h) + 32px);
  display: grid;
  grid-template-columns: repeat(3, auto);
  color: var(--steam);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.hero-facts li {
  display: grid;
  gap: 5px;
  padding: 14px 22px;
  border-right: 1px solid var(--line-dark);
}

.hero-facts li:last-child {
  border-right: 0;
}

.hero-facts span,
.hero-facts b {
  font-family: var(--latin);
  line-height: 1;
}

.hero-facts span {
  color: rgba(239, 238, 232, .5);
  font-size: .44rem;
  letter-spacing: .14em;
}

.hero-facts b {
  font-size: .58rem;
  font-weight: 400;
  letter-spacing: .12em;
}

.hero-scroll {
  position: absolute;
  right: 2vw;
  bottom: 31vh;
  font-family: var(--latin);
  font-size: .5rem;
  letter-spacing: .2em;
  writing-mode: vertical-rl;
}

.concept {
  position: relative;
  display: grid;
  grid-template-columns: .3fr 1.35fr .85fr;
  gap: 5vw;
  min-height: 960px;
  padding: 150px max(6vw, calc((100vw - 1280px) / 2));
  color: var(--ink);
  background: var(--steam);
  overflow: hidden;
}

.concept-index {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  font-family: var(--latin);
  font-size: .62rem;
  letter-spacing: .16em;
  writing-mode: vertical-rl;
}

.concept-index span {
  color: var(--cedar);
}

.concept-copy {
  position: relative;
  z-index: 2;
}

.concept-copy .eyebrow {
  color: var(--cedar);
}

.concept h2,
.section-title h2,
.first-copy h2,
.price h2,
.flow h2,
.faq h2,
.reserve h2 {
  font-size: clamp(3.1rem, 6.3vw, 7.2rem);
  font-weight: 400;
  letter-spacing: -.08em;
  line-height: 1.1;
}

.concept h2 {
  max-width: 8em;
  margin-top: 38px;
}

.concept-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 740px;
  margin-top: 70px;
  font-size: .84rem;
}

.concept-photo {
  align-self: end;
  aspect-ratio: .72;
  margin-bottom: -45px;
  border-radius: 50% 50% 8px 8px;
  overflow: hidden;
}

.concept-photo img {
  height: 100%;
  object-fit: cover;
}

.concept-note {
  position: absolute;
  right: 5vw;
  bottom: 32px;
  color: rgba(23, 24, 21, .3);
  font-family: var(--latin);
  font-size: clamp(1.5rem, 4vw, 4.2rem);
  font-weight: 300;
  letter-spacing: .04em;
}

.ritual {
  position: relative;
  height: 430svh;
  color: var(--steam);
  background: var(--ink);
}

.ritual-pin {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 700px;
  padding: calc(var(--header-h) + 35px) 6vw calc(var(--rail-h) + 32px);
  overflow: hidden;
}

.ritual-heading {
  position: absolute;
  z-index: 6;
  top: calc(var(--header-h) + 36px);
  left: 6vw;
  width: min(420px, 32vw);
}

.ritual-heading .eyebrow {
  margin-bottom: 18px;
  color: var(--cedar);
}

.ritual h2 {
  font-size: clamp(2.4rem, 4vw, 4.6rem);
  font-weight: 400;
  letter-spacing: -.07em;
  line-height: 1.1;
}

.ritual-symbol {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: min(76vw, 1050px);
  color: rgba(239, 238, 232, .08);
  transform: translate(-50%, -50%) rotate(calc(var(--ritual-turn, 0) * 1deg));
  transition: color .6s;
}

body[data-phase="water"] .ritual-symbol { color: rgba(169, 204, 211, .16); }
body[data-phase="air"] .ritual-symbol { color: rgba(119, 133, 111, .17); }
body[data-phase="rest"] .ritual-symbol { color: rgba(239, 238, 232, .14); }

.ritual-media {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: min(46vw, 680px);
  aspect-ratio: 1;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(var(--ritual-breath, 1));
  overflow: hidden;
  transition: transform .7s var(--ease);
}

.ritual-media img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: saturate(.7) contrast(1.08);
  transform: scale(1.07);
  transition: opacity .75s, transform 1.2s var(--ease);
}

.ritual-media img.is-active {
  opacity: 1;
  transform: scale(1);
}

.ritual-index {
  position: absolute;
  z-index: 6;
  top: 50%;
  left: 6vw;
  display: grid;
  width: 175px;
  transform: translateY(-24%);
}

.ritual-index li {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  min-height: 44px;
  color: rgba(239, 238, 232, .3);
  font-family: var(--latin);
  font-size: .6rem;
  letter-spacing: .14em;
  border-bottom: 1px solid var(--line-dark);
  transition: color .4s, padding-left .4s var(--ease);
}

.ritual-index li.is-active {
  padding-left: 10px;
  color: var(--steam);
}

.ritual-index li span {
  color: var(--cedar);
}

.ritual-copy {
  position: absolute;
  z-index: 6;
  right: 6vw;
  bottom: calc(var(--rail-h) + 58px);
  width: min(390px, 31vw);
  min-height: 240px;
}

.ritual-copy article {
  padding-top: 22px;
  border-top: 1px solid var(--steam);
}

.js .ritual-copy article {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition: opacity .35s, transform .5s var(--ease);
}

.js .ritual-copy article.is-active {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.ritual-copy article > p {
  color: var(--cedar);
  font-family: var(--latin);
  font-size: .6rem;
  letter-spacing: .18em;
}

.ritual-copy h3 {
  margin-top: 18px;
  font-size: clamp(1.8rem, 3vw, 3.3rem);
  font-weight: 400;
  letter-spacing: -.06em;
  line-height: 1.2;
}

.ritual-copy article > span {
  display: block;
  margin-top: 25px;
  color: rgba(239, 238, 232, .65);
  font-size: .78rem;
}

.ritual-progress {
  position: absolute;
  z-index: 7;
  right: 0;
  bottom: var(--rail-h);
  left: 0;
  height: 3px;
  background: rgba(239, 238, 232, .12);
}

.ritual-progress b {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--cedar);
  transform: scaleX(var(--ritual-progress, 0));
  transform-origin: left;
}

html:not(.js) .ritual {
  height: auto;
}

html:not(.js) .ritual-pin {
  position: relative;
  height: auto;
  min-height: 1100px;
}

html:not(.js) .ritual-copy {
  position: relative;
  right: auto;
  bottom: auto;
  display: grid;
  gap: 25px;
  width: min(680px, 90vw);
  margin: 700px auto 0;
}

.experience {
  padding: 150px max(6vw, calc((100vw - 1280px) / 2));
  color: var(--ink);
  background: var(--steam);
}

.section-title {
  display: grid;
  grid-template-columns: .55fr 1.45fr;
  gap: 5vw;
  align-items: start;
  margin-bottom: 90px;
}

.section-title .eyebrow {
  color: var(--cedar);
}

.section-title h2 {
  max-width: 9em;
}

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

.experience-strip article {
  display: grid;
  grid-template-columns: .75fr .5fr 1fr;
  gap: 4vw;
  align-items: center;
  min-height: 360px;
  padding-block: 34px;
  border-bottom: 1px solid var(--line-light);
}

.experience-strip article:nth-child(even) figure {
  grid-column: 2;
}

.experience-strip article:nth-child(even) > div {
  grid-column: 3;
}

.experience-strip figure {
  height: 290px;
  border-radius: 145px 145px 0 0;
  overflow: hidden;
}

.experience-strip img {
  height: 100%;
  object-fit: cover;
  filter: saturate(.8);
}

.experience-strip article > div span,
.experience-strip article > div h3 {
  font-family: var(--latin);
}

.experience-strip article > div span {
  color: var(--cedar);
  font-size: .56rem;
  letter-spacing: .18em;
}

.experience-strip h3 {
  margin-top: 16px;
  font-size: clamp(2rem, 4vw, 4.6rem);
  font-weight: 300;
  letter-spacing: -.04em;
}

.experience-strip p {
  max-width: 450px;
  margin-top: 22px;
  font-size: .82rem;
}

.first-visit {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: 860px;
  background: var(--moss);
}

.first-visit > figure {
  min-height: 860px;
  overflow: hidden;
}

.first-visit > figure img {
  height: 100%;
  object-fit: cover;
  filter: saturate(.68) contrast(1.05);
}

.first-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 7vw;
}

.first-copy .eyebrow {
  color: var(--ink);
}

.first-copy h2 {
  max-width: 7em;
  margin-top: 32px;
  font-size: clamp(3rem, 5.3vw, 6rem);
}

.first-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 38px;
  font-size: .86rem;
}

.first-copy ul {
  margin-top: 50px;
  border-top: 1px solid rgba(239, 238, 232, .45);
}

.first-copy li {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  min-height: 54px;
  font-size: .77rem;
  border-bottom: 1px solid rgba(239, 238, 232, .45);
}

.first-copy li span {
  color: var(--ink);
  font-family: var(--latin);
  font-size: .56rem;
}

.price {
  padding: 150px max(6vw, calc((100vw - 1280px) / 2));
  color: var(--ink);
  background: var(--paper);
}

.price-head {
  display: grid;
  grid-template-columns: .5fr 1.1fr .6fr;
  gap: 4vw;
  align-items: end;
  margin-bottom: 80px;
}

.price-head .eyebrow {
  color: var(--cedar);
}

.price-head h2 {
  font-size: clamp(3.2rem, 5.5vw, 6.4rem);
}

.price-head > p:last-child {
  font-size: .76rem;
}

.ticket-list {
  border-top: 1px solid var(--ink);
}

.ticket {
  position: relative;
  display: grid;
  grid-template-columns: 60px 1.2fr .7fr .8fr 56px;
  gap: 25px;
  align-items: center;
  min-height: 150px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--ink);
  transition: color .35s, background .35s;
}

.ticket::before,
.ticket::after {
  position: absolute;
  top: 50%;
  width: 18px;
  height: 36px;
  content: "";
  background: var(--paper);
  border: 1px solid var(--ink);
  transform: translateY(-50%);
}

.ticket::before {
  left: -1px;
  border-left: 0;
  border-radius: 0 18px 18px 0;
}

.ticket::after {
  right: -1px;
  border-right: 0;
  border-radius: 18px 0 0 18px;
}

.ticket:hover,
.ticket.featured {
  color: var(--steam);
  background: var(--ink);
}

.ticket.featured::before,
.ticket.featured::after,
.ticket:hover::before,
.ticket:hover::after {
  background: var(--paper);
}

.ticket-no,
.ticket p,
.ticket b {
  font-family: var(--latin);
  letter-spacing: .15em;
}

.ticket-no {
  color: var(--cedar);
  font-size: .65rem;
}

.ticket p {
  font-size: .52rem;
}

.ticket h3 {
  margin-top: 5px;
  font-size: 1.5rem;
  font-weight: 500;
}

.ticket b {
  font-size: .62rem;
  font-weight: 400;
}

.ticket strong {
  font-family: var(--latin);
  font-size: clamp(2rem, 3.4vw, 3.5rem);
  font-weight: 300;
  letter-spacing: -.05em;
}

.ticket strong small {
  margin-left: 4px;
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 500;
}

.ticket > a {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--ink);
  background: var(--steam);
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--latin);
  font-size: 1.2rem;
  transition: transform .25s;
}

.ticket > a:hover {
  transform: rotate(45deg);
}

.price-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 25px;
  font-family: var(--latin);
  font-size: .55rem;
  letter-spacing: .14em;
}

.price-options span {
  padding: 8px 12px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
}

.gallery {
  padding: 85px 0;
  background: var(--ink);
  overflow: hidden;
}

.gallery-track {
  display: grid;
  grid-template-columns: 1.3fr .72fr 1fr .8fr;
  gap: 18px;
  width: max(1100px, 116vw);
  margin-left: -8vw;
}

.gallery figure {
  position: relative;
  height: 520px;
  overflow: hidden;
}

.gallery figure:nth-child(even) {
  margin-top: 85px;
}

.gallery img {
  height: 100%;
  object-fit: cover;
  filter: saturate(.65) contrast(1.05);
  transition: transform 1s var(--ease), filter .5s;
}

.gallery figure:hover img {
  filter: saturate(.9);
  transform: scale(1.025);
}

.gallery figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 13px 16px;
  color: var(--steam);
  background: rgba(23, 24, 21, .78);
  font-family: var(--latin);
  font-size: .56rem;
  letter-spacing: .18em;
}

.flow {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 8vw;
  padding: 150px max(6vw, calc((100vw - 1280px) / 2));
  background: var(--ink);
}

.flow-head {
  position: sticky;
  top: calc(var(--header-h) + 50px);
  align-self: start;
}

.flow-head .eyebrow {
  color: var(--water);
}

.flow h2 {
  max-width: 7em;
  margin-top: 36px;
  font-size: clamp(3rem, 5.2vw, 6rem);
}

.flow ol {
  border-top: 1px solid var(--line-dark);
}

.flow li {
  display: grid;
  grid-template-columns: 55px 1fr auto;
  gap: 25px;
  align-items: start;
  min-height: 180px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line-dark);
}

.flow li > span,
.flow li > small {
  font-family: var(--latin);
  font-size: .56rem;
  letter-spacing: .14em;
}

.flow li > span {
  color: var(--cedar);
}

.flow li > small {
  color: rgba(239, 238, 232, .45);
}

.flow h3 {
  font-size: 1.35rem;
  font-weight: 500;
}

.flow li p {
  max-width: 480px;
  margin-top: 16px;
  color: rgba(239, 238, 232, .65);
  font-size: .78rem;
}

.faq {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 8vw;
  padding: 150px max(6vw, calc((100vw - 1280px) / 2));
  color: var(--ink);
  background: var(--steam);
}

.faq-head .eyebrow {
  color: var(--cedar);
}

.faq h2 {
  max-width: 8em;
  margin-top: 36px;
  font-size: clamp(2.9rem, 4.8vw, 5.5rem);
}

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq details {
  border-bottom: 1px solid var(--ink);
}

.faq summary {
  display: grid;
  grid-template-columns: 45px 1fr 30px;
  gap: 15px;
  align-items: center;
  min-height: 96px;
  cursor: pointer;
  font-size: .9rem;
  font-weight: 500;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary span {
  color: var(--cedar);
  font-family: var(--latin);
  font-size: .62rem;
}

.faq summary i {
  font-family: var(--latin);
  font-size: 1.1rem;
  font-style: normal;
  transition: transform .3s;
}

.faq details[open] summary i {
  transform: rotate(45deg);
}

.faq details p {
  padding: 0 45px 28px 60px;
  color: rgba(23, 24, 21, .7);
  font-size: .8rem;
}

.reserve {
  position: relative;
  min-height: 900px;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
}

.reserve > figure {
  position: absolute;
  inset: 0;
}

.reserve > figure::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(23, 24, 21, .76);
}

.reserve > figure img {
  height: 100%;
  object-fit: cover;
  filter: saturate(.62);
}

.reserve-symbol {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(70vw, 920px);
  color: rgba(239, 238, 232, .14);
  transform: translate(-50%, -50%);
  animation: mark-breathe 8s ease-in-out infinite alternate;
}

.reserve-symbol .breath-mark {
  animation: mark-turn 60s linear infinite reverse;
}

.reserve-copy {
  position: relative;
  z-index: 2;
  width: min(760px, 88vw);
}

.reserve-copy .eyebrow {
  color: var(--water);
}

.reserve h2 {
  margin-top: 35px;
}

.reserve-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin: 38px auto 0;
  color: rgba(239, 238, 232, .72);
  font-size: .84rem;
}

.reserve-copy > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(430px, 100%);
  min-height: 76px;
  margin: 45px auto 0;
  padding: 0 24px;
  color: var(--ink);
  background: var(--steam);
  font-size: .82rem;
}

.reserve-copy > a span {
  font-family: var(--latin);
  font-size: 1.4rem;
}

.reserve-copy > small {
  display: block;
  margin-top: 18px;
  color: rgba(239, 238, 232, .52);
  font-family: var(--latin);
  font-size: .54rem;
  letter-spacing: .16em;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr .7fr;
  gap: 60px;
  padding: 90px max(6vw, calc((100vw - 1280px) / 2)) 35px;
  color: var(--steam);
  background: var(--ink);
  border-top: 1px solid var(--line-dark);
}

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

.footer-brand .breath-mark {
  width: 56px;
}

.footer-brand b {
  font-family: var(--latin);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: .2em;
}

.site-footer address {
  display: flex;
  flex-direction: column;
  color: rgba(239, 238, 232, .62);
  font-size: .72rem;
  font-style: normal;
}

.site-footer nav {
  display: grid;
  align-content: start;
  font-family: var(--latin);
  font-size: .6rem;
  letter-spacing: .14em;
}

.site-footer nav a {
  padding: 5px 0;
  border-bottom: 1px solid var(--line-dark);
}

.site-footer > p {
  grid-column: 1 / -1;
  margin-top: 35px;
  color: rgba(239, 238, 232, .35);
  font-family: var(--latin);
  font-size: .5rem;
  letter-spacing: .12em;
}

@keyframes mark-turn {
  to { transform: rotate(360deg); }
}

@keyframes mark-breathe {
  from { transform: scale(.95); }
  to { transform: scale(1.025); }
}

@keyframes portal-breathe {
  from { border-radius: 48% 52% 50% 50%; transform: scale(.985); }
  to { border-radius: 52% 48% 47% 53%; transform: scale(1.012); }
}

@media (max-width: 1100px) {
  .hero-portal { right: 4vw; width: 55vw; }
  .hero-copy { left: 5vw; width: 42vw; }
  .hero-facts { right: 3vw; }
  .concept { grid-template-columns: .2fr 1.2fr .8fr; }
  .concept-text { grid-template-columns: 1fr; }
  .ritual-media { width: 52vw; }
  .ritual-index { left: 4vw; }
  .ritual-copy { right: 4vw; }
  .first-copy { padding-inline: 5vw; }
  .booking-rail > p { display: none; }
  .booking-rail { grid-template-columns: 250px 1fr; }
  .booking-rail > a { min-width: 0; }
}

@media (max-width: 820px) {
  :root { --header-h: 68px; --rail-h: 62px; }
  body { font-size: 15px; }
  .site-header { grid-template-columns: 1fr auto; padding-inline: 5vw; }
  .desktop-nav { display: none; }
  .menu-button { display: block; }
  .booking-rail { grid-template-columns: 150px 1fr; }
  .rail-state { grid-template-columns: 10px 1fr; gap: 7px; padding-inline: 14px; }
  .rail-state small { grid-column: 2; }
  .booking-rail > a { gap: 18px; padding-inline: 18px; }

  .hero { min-height: 940px; }
  .hero-symbol { top: -10vw; right: -35vw; width: 105vw; }
  .hero-portal { top: 12vh; right: 6vw; width: 72vw; }
  .hero-name { top: 17vh; left: 4vw; }
  .hero-name span { font-size: 30vw; }
  .hero-copy { right: 6vw; bottom: 13vh; left: 6vw; width: auto; }
  .hero h1 { max-width: 7em; font-size: clamp(3.2rem, 11vw, 5.4rem); }
  .hero-copy > p:not(.eyebrow) { max-width: 430px; }
  .hero-facts { display: none; }
  .hero-scroll { display: none; }

  .concept { grid-template-columns: 45px 1fr; min-height: 0; padding: 110px 6vw 130px; }
  .concept-copy { grid-column: 2; }
  .concept h2 { font-size: clamp(3rem, 10vw, 5.6rem); }
  .concept-photo { grid-column: 2; width: min(70vw, 460px); margin: 30px 0 0 auto; }
  .concept-text { margin-top: 45px; }
  .concept-note { font-size: 7vw; }

  .ritual { height: 390svh; }
  .ritual-pin { min-height: 650px; padding-inline: 5vw; }
  .ritual-heading { top: calc(var(--header-h) + 28px); left: 5vw; width: 78vw; }
  .ritual h2 { max-width: 9em; font-size: clamp(2.3rem, 7vw, 4rem); }
  .ritual-symbol { width: 116vw; }
  .ritual-media { top: 51%; width: min(72vw, 570px); }
  .ritual-index { top: auto; right: 5vw; bottom: calc(var(--rail-h) + 38px); left: 5vw; grid-template-columns: repeat(4, 1fr); width: auto; transform: none; }
  .ritual-index li { grid-template-columns: 1fr; justify-items: center; min-height: 38px; font-size: .48rem; border-right: 1px solid var(--line-dark); border-bottom: 0; }
  .ritual-index li:last-child { border-right: 0; }
  .ritual-index li.is-active { padding-left: 0; color: var(--cedar); }
  .ritual-copy { top: 48%; right: 5vw; bottom: auto; left: 5vw; width: auto; min-height: 220px; transform: translateY(54%); }
  .ritual-copy article { padding: 18px 20px; background: rgba(23, 24, 21, .9); border: 1px solid var(--line-dark); }
  .ritual-copy h3 { font-size: clamp(1.65rem, 5.4vw, 2.6rem); }
  .ritual-copy article > span { margin-top: 16px; }

  .experience { padding: 110px 6vw; }
  .section-title { grid-template-columns: 1fr; gap: 30px; margin-bottom: 55px; }
  .section-title h2 { font-size: clamp(3rem, 10vw, 5.4rem); }
  .experience-strip article { grid-template-columns: .8fr 1fr; min-height: 300px; }
  .experience-strip article:nth-child(even) figure { grid-column: 1; }
  .experience-strip article:nth-child(even) > div { grid-column: 2; }
  .experience-strip figure { height: 240px; }

  .first-visit { grid-template-columns: 1fr; }
  .first-visit > figure { min-height: 620px; }
  .first-copy { padding: 95px 6vw 110px; }

  .price { padding: 110px 6vw; }
  .price-head { grid-template-columns: 1fr; gap: 28px; margin-bottom: 55px; }
  .price-head h2 { font-size: clamp(3rem, 10vw, 5.4rem); }
  .price-head > p:last-child { max-width: 460px; }
  .ticket { grid-template-columns: 38px 1fr auto 48px; gap: 14px; }
  .ticket > b { display: none; }
  .ticket strong { font-size: clamp(1.7rem, 6vw, 2.8rem); }

  .gallery-track { width: 145vw; }
  .gallery figure { height: 420px; }

  .flow { grid-template-columns: 1fr; gap: 70px; padding: 110px 6vw; }
  .flow-head { position: static; }
  .flow h2 { font-size: clamp(3rem, 10vw, 5.4rem); }

  .faq { grid-template-columns: 1fr; gap: 65px; padding: 110px 6vw; }
  .faq h2 { font-size: clamp(2.8rem, 9vw, 4.8rem); }

  .reserve { min-height: 820px; }
  .reserve h2 { font-size: clamp(3.1rem, 10vw, 5.5rem); }
  .reserve-symbol { width: 115vw; }

  .site-footer { grid-template-columns: 1fr 1fr; padding: 75px 6vw 30px; }
  .site-footer nav { grid-column: 2; grid-row: 1 / span 2; }
  .site-footer > p { grid-column: 1 / -1; }
}

@media (max-width: 540px) {
  .brand-mark { width: 29px; }
  .brand-type b { font-size: .9rem; }
  .brand-type small { font-size: .35rem; }
  .menu-button { width: 44px; height: 44px; }
  .booking-rail { grid-template-columns: 126px 1fr; }
  .rail-state { padding-inline: 10px; }
  .rail-state b { font-size: .58rem; }
  .rail-state small { font-size: .4rem; }
  .booking-rail > a { font-size: .68rem; }

  .hero { min-height: 900px; }
  .hero-portal { top: 13vh; right: 7vw; width: 86vw; }
  .hero-name { top: 22vh; }
  .hero-name span { font-size: 34vw; }
  .hero-copy { bottom: 12vh; }
  .hero-copy .eyebrow { margin-bottom: 16px; }
  .hero h1 { font-size: clamp(3rem, 14vw, 4.4rem); }
  .hero-copy > p:not(.eyebrow) { margin-top: 20px; font-size: .8rem; }
  .text-link { margin-top: 25px; }

  .concept { grid-template-columns: 28px 1fr; gap: 10px; padding-inline: 5vw; }
  .concept h2 { margin-top: 28px; font-size: clamp(2.8rem, 13vw, 4.4rem); }
  .concept-text { gap: 18px; font-size: .8rem; }
  .concept-photo { width: 78vw; }

  .ritual-heading { width: 90vw; }
  .ritual-heading .eyebrow { margin-bottom: 10px; }
  .ritual h2 { font-size: clamp(2.15rem, 10vw, 3rem); }
  .ritual-media { top: 49%; width: 82vw; }
  .ritual-copy { top: auto; bottom: calc(var(--rail-h) + 100px); min-height: 220px; transform: none; }
  .ritual-copy h3 { font-size: clamp(1.55rem, 7.2vw, 2.2rem); }
  .ritual-copy article > span { font-size: .7rem; }
  .ritual-index { top: calc(var(--header-h) + 170px); bottom: auto; }

  .experience { padding-inline: 5vw; }
  .section-title h2 { font-size: clamp(2.8rem, 13vw, 4.4rem); }
  .experience-strip article,
  .experience-strip article:nth-child(even) { grid-template-columns: 1fr; gap: 24px; padding-block: 30px; }
  .experience-strip article figure,
  .experience-strip article:nth-child(even) figure,
  .experience-strip article > div,
  .experience-strip article:nth-child(even) > div { grid-column: 1; }
  .experience-strip figure { height: 280px; }
  .experience-strip h3 { font-size: 2.5rem; }

  .first-visit > figure { min-height: 500px; }
  .first-copy { padding-inline: 5vw; }
  .first-copy h2 { font-size: clamp(2.8rem, 13vw, 4.4rem); }

  .price { padding-inline: 5vw; }
  .price-head h2 { font-size: clamp(2.8rem, 13vw, 4.4rem); }
  .ticket { grid-template-columns: 28px 1fr 42px; min-height: 140px; padding-inline: 15px; }
  .ticket::after { display: none; }
  .ticket strong { grid-column: 2; font-size: 2.2rem; }
  .ticket > a { grid-column: 3; grid-row: 1; width: 40px; height: 40px; }
  .ticket h3 { font-size: 1.25rem; }

  .gallery { padding-block: 55px; }
  .gallery-track { grid-template-columns: 1fr 1fr; gap: 8px; width: auto; margin: 0 5vw; }
  .gallery figure { height: 300px; }
  .gallery figure:nth-child(even) { margin-top: 45px; }

  .flow { padding-inline: 5vw; }
  .flow h2 { font-size: clamp(2.8rem, 13vw, 4.4rem); }
  .flow li { grid-template-columns: 35px 1fr; gap: 15px; min-height: 160px; }
  .flow li > small { grid-column: 2; }

  .faq { padding-inline: 5vw; }
  .faq h2 { font-size: clamp(2.6rem, 12vw, 4rem); }
  .faq summary { grid-template-columns: 34px 1fr 24px; gap: 9px; min-height: 92px; font-size: .8rem; }
  .faq details p { padding: 0 24px 24px 43px; font-size: .75rem; }

  .reserve { min-height: 760px; }
  .reserve-copy { width: 90vw; }
  .reserve h2 { font-size: clamp(2.8rem, 13vw, 4.5rem); }
  .reserve-copy > p:not(.eyebrow) { font-size: .78rem; }

  .site-footer { grid-template-columns: 1fr; gap: 35px; padding-inline: 5vw; }
  .site-footer nav { grid-column: 1; grid-row: auto; }
  .site-footer > p { grid-column: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .ritual-media { transform: translate(-50%, -50%); }
}
