:root {
  --canvas: #efefe9;
  --paper: #f8f7f2;
  --ink: #111111;
  --muted: #696b68;
  --silver: #c9cbc7;
  --oxblood: #6f1d2c;
  --citron: #d7ef4a;
  --cobalt: #3d55ff;
  --line: rgba(17, 17, 17, 0.18);
  --line-light: rgba(255, 255, 255, 0.22);
  --pad: max(48px, calc((100vw - 1480px) / 2));
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --progress: 0;
  --hero-y: 0px;
}

@view-transition {
  navigation: auto;
}

::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 360ms;
  animation-timing-function: var(--ease);
}

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

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
}

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

button {
  color: inherit;
}

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

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 9px 12px;
  border-radius: 4px;
  background: var(--citron);
  color: var(--ink);
  font-weight: 700;
  transform: translateY(-180%);
}

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  min-height: 76px;
  align-items: center;
  gap: 46px;
  padding: 12px var(--pad);
  color: var(--ink);
  transition:
    min-height 300ms var(--ease),
    background 300ms var(--ease),
    color 300ms var(--ease),
    box-shadow 300ms var(--ease);
}

.site-header.is-scrolled {
  min-height: 66px;
  background: rgba(239, 239, 233, 0.9);
  box-shadow: 0 10px 34px rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(18px) saturate(1.1);
}

.wordmark {
  position: relative;
  z-index: 4;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
}

.wordmark i {
  width: 20px;
  height: 1px;
  background: currentColor;
}

.nav-panel {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 38px;
}

.nav-panel nav {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: 30px;
}

.nav-panel nav a {
  position: relative;
  padding: 10px 0;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.nav-panel nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 280ms var(--ease);
}

.nav-panel nav a:hover::after,
.nav-panel nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-reserve,
.primary-action,
.quiet-action,
.visit-reserve,
.dialog-submit {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 280ms var(--ease),
    background 280ms var(--ease),
    color 280ms var(--ease),
    border-color 280ms var(--ease);
}

.header-reserve {
  padding: 0 18px;
}

.header-reserve:hover,
.header-reserve:focus-visible,
.quiet-action:hover,
.quiet-action:focus-visible {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}

.menu-button {
  position: relative;
  z-index: 4;
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  position: absolute;
  left: 10px;
  width: 24px;
  height: 1px;
  background: currentColor;
  transition: top 300ms var(--ease), transform 300ms var(--ease);
}

.menu-button span:first-child {
  top: 18px;
}

.menu-button span:last-child {
  top: 26px;
}

.nav-open .menu-button span:first-child {
  top: 22px;
  transform: rotate(45deg);
}

.nav-open .menu-button span:last-child {
  top: 22px;
  transform: rotate(-45deg);
}

.reading-progress {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--oxblood);
  transform: scaleX(var(--progress));
  transform-origin: left;
}

.hero {
  position: relative;
  height: min(860px, 88svh);
  min-height: 700px;
  overflow: hidden;
  isolation: isolate;
  background: var(--canvas);
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform: translate3d(0, var(--hero-y), 0) scale(1.025);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  width: 650px;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  padding: 88px 0 106px var(--pad);
}

.eyebrow,
.section-index {
  margin: 0 0 22px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero h1,
.programme h2,
.ritual h2,
.room h2,
.archive h2,
.visit h2,
.booking-dialog h2 {
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  line-height: 0.88;
}

.hero h1 {
  font-size: 118px;
}

.hero h1 span {
  display: block;
}

.hero-title-shift {
  margin-left: 112px;
  color: var(--oxblood);
  font-style: italic;
}

.hero-lead {
  margin: 30px 0 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.primary-action {
  padding: 0 20px;
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.primary-action:hover,
.primary-action:focus-visible {
  border-color: var(--oxblood);
  background: var(--oxblood);
  transform: translateY(-2px);
}

.quiet-action {
  padding: 0 19px;
}

.hero-status,
.hero-session {
  position: absolute;
  z-index: 2;
  bottom: 58px;
  display: flex;
  align-items: center;
}

.hero-status {
  left: var(--pad);
  gap: 12px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--citron);
  box-shadow: 0 0 0 5px rgba(215, 239, 74, 0.22);
}

.hero-status div,
.hero-session {
  font-size: 11px;
}

.hero-status small,
.hero-session small {
  display: block;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-status strong,
.hero-session strong {
  display: block;
  margin-top: 2px;
  font-size: 11px;
}

.hero-session {
  right: var(--pad);
  display: grid;
  min-width: 220px;
  grid-template-columns: 1fr auto;
  gap: 2px 20px;
  padding-top: 12px;
  border-top: 1px solid var(--ink);
}

.hero-session small {
  grid-column: 1 / 3;
}

.hero-session span {
  color: var(--muted);
}

.hero-scroll {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 118px;
  display: flex;
  align-items: center;
  gap: 10px;
  writing-mode: vertical-rl;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-scroll i {
  position: relative;
  width: 1px;
  height: 48px;
  overflow: hidden;
  background: rgba(17, 17, 17, 0.22);
}

.hero-scroll i::after {
  position: absolute;
  top: -65%;
  left: 0;
  width: 100%;
  height: 48%;
  background: var(--ink);
  content: "";
  animation: signal-drop 2.1s var(--ease) infinite;
}

@keyframes signal-drop {
  0% {
    transform: translateY(0);
  }
  70%,
  100% {
    transform: translateY(340%);
  }
}

.flow-section {
  position: relative;
  isolation: isolate;
}

.programme {
  z-index: 3;
  margin-top: -34px;
  padding: 128px var(--pad) 138px;
  border-radius: 50% 50% 0 0 / 44px 44px 0 0;
  background: var(--ink);
  color: #fff;
}

.programme-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  gap: 80px;
  align-items: end;
}

.programme h2,
.ritual h2,
.archive h2,
.visit h2 {
  font-size: 72px;
}

.programme-heading > p {
  max-width: 410px;
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.8;
}

.programme-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  margin-top: 78px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-light);
}

.programme-tools > p {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.genre-filter {
  display: flex;
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
}

.genre-filter button {
  min-height: 32px;
  padding: 0 13px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: background 260ms var(--ease), color 260ms var(--ease);
}

.genre-filter button[aria-pressed="true"] {
  background: var(--citron);
  color: var(--ink);
}

.session-row {
  display: grid;
  grid-template-columns: 90px minmax(220px, 0.8fr) minmax(260px, 1fr) 70px 94px;
  gap: 30px;
  align-items: center;
  min-height: 126px;
  border-bottom: 1px solid var(--line-light);
  transition:
    background 300ms var(--ease),
    padding 300ms var(--ease),
    opacity 220ms ease;
}

.session-row:hover {
  padding-right: 16px;
  padding-left: 16px;
  background: rgba(255, 255, 255, 0.055);
}

.session-row[hidden] {
  display: none;
}

.session-row time {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 30px;
}

.session-main small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.session-main h3 {
  margin: 5px 0 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 31px;
  font-weight: 400;
}

.session-row > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.session-duration {
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  text-transform: uppercase;
}

.session-row > button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  background: transparent;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}

.session-row > button span {
  transition: transform 250ms var(--ease);
}

.session-row > button:hover span,
.session-row > button:focus-visible span {
  transform: translate(3px, -3px);
}

.ritual {
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(480px, 1.05fr);
  margin-top: -34px;
  overflow: hidden;
  border-radius: 50% 50% 0 0 / 44px 44px 0 0;
  background: var(--paper);
}

.ritual-copy {
  min-height: 880px;
  padding: 150px 60px 130px var(--pad);
}

.ritual-copy-inner {
  position: sticky;
  top: 138px;
  max-width: 520px;
}

.ritual h2 em {
  color: var(--oxblood);
  font-weight: 400;
}

.ritual-copy-inner > p:not(.section-index) {
  max-width: 430px;
  margin: 34px 0 0;
  color: var(--muted);
  line-height: 1.85;
}

.ritual dl,
.visit dl {
  margin: 70px 0 0;
}

.ritual dl > div,
.visit dl > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.ritual dt,
.visit dt {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.ritual dd,
.visit dd {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.ritual-image {
  position: relative;
  min-height: 880px;
  margin: 0;
  overflow: hidden;
}

.ritual-image > img {
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: calc(100% + 60px);
  object-fit: cover;
  object-position: center;
  transform: translate3d(0, var(--parallax-y, -30px), 0);
}

.ritual-image figcaption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.room {
  z-index: 5;
  min-height: 760px;
  margin-top: -26px;
  overflow: hidden;
  border-radius: 50% 50% 0 0 / 40px 40px 0 0;
  background: var(--ink);
  color: #fff;
}

.room-media {
  position: absolute;
  inset: -35px 0 auto;
  width: 100%;
  height: calc(100% + 70px);
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.04);
}

.room-shade {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
}

.room-copy {
  position: absolute;
  z-index: 2;
  top: 94px;
  left: var(--pad);
}

.room h2 {
  max-width: 700px;
  font-size: 76px;
}

.room-copy > p:not(.section-index) {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.room-facts {
  position: absolute;
  z-index: 2;
  right: var(--pad);
  bottom: 48px;
  left: 50%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.55);
  list-style: none;
}

.room-facts li {
  min-height: 92px;
  padding: 20px 18px 0;
  border-left: 1px solid rgba(255, 255, 255, 0.36);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.room-facts li:first-child {
  border-left: 0;
}

.room-facts span {
  display: block;
  margin-bottom: 22px;
  color: var(--citron);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 23px;
  font-style: italic;
}

.archive {
  z-index: 6;
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 90px;
  margin-top: -34px;
  padding: 138px var(--pad) 140px;
  border-radius: 50% 50% 0 0 / 44px 44px 0 0;
  background: var(--canvas);
}

.archive-heading {
  align-self: start;
}

.archive-heading > p:not(.section-index) {
  max-width: 360px;
  margin: 28px 0 0;
  color: var(--muted);
}

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

.archive-list details {
  border-bottom: 1px solid var(--line);
}

.archive-list summary {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 140px 22px;
  gap: 20px;
  align-items: center;
  min-height: 104px;
  cursor: pointer;
  list-style: none;
}

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

.archive-list summary > span {
  color: var(--oxblood);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 20px;
  font-style: italic;
}

.archive-list summary strong {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 30px;
  font-weight: 400;
}

.archive-list summary small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  text-align: right;
  text-transform: uppercase;
}

.archive-list summary i {
  position: relative;
  width: 18px;
  height: 18px;
}

.archive-list summary i::before,
.archive-list summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 260ms var(--ease);
}

.archive-list summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.archive-list details[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.archive-list details > p {
  max-width: 560px;
  margin: -12px 0 0 74px;
  padding: 0 0 28px;
  color: var(--muted);
  font-size: 13px;
}

.visit {
  z-index: 7;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(380px, 0.55fr);
  min-height: 700px;
  margin-top: -30px;
  overflow: hidden;
  border-radius: 50% 50% 0 0 / 42px 42px 0 0;
  background: var(--silver);
}

.visit-media-wrap {
  position: relative;
  min-height: 700px;
  overflow: hidden;
}

.visit-media-wrap img {
  position: absolute;
  inset: -30px 0 auto;
  width: 100%;
  height: calc(100% + 60px);
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.03);
}

.visit-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px var(--pad) 90px 58px;
  background: var(--silver);
}

.visit-copy > p:not(.section-index) {
  margin: 30px 0 0;
  color: #50524f;
  line-height: 1.8;
}

.visit dl {
  margin-top: 48px;
}

.visit-reserve {
  align-self: flex-start;
  margin-top: 38px;
  padding: 0 20px;
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.visit-reserve:hover,
.visit-reserve:focus-visible {
  border-color: var(--oxblood);
  background: var(--oxblood);
  transform: translateY(-2px);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 60px;
  padding: 78px var(--pad);
  background: var(--ink);
  color: #fff;
}

.footer-wordmark {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 42px;
}

.site-footer > div:first-child p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 24px;
  line-height: 1.08;
}

.site-footer nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: start;
  gap: 12px 36px;
  padding-top: 10px;
}

.site-footer nav a {
  color: rgba(255, 255, 255, 0.64);
  font-size: 11px;
}

.site-footer nav a:hover,
.site-footer nav a:focus-visible {
  color: var(--citron);
}

.footer-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
  text-transform: uppercase;
}

.booking-dialog {
  width: min(650px, calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.34);
}

.booking-dialog::backdrop {
  background: rgba(17, 17, 17, 0.66);
  backdrop-filter: blur(8px);
}

.booking-form {
  padding: 42px;
}

.dialog-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 36px;
}

.booking-dialog h2 {
  font-size: 52px;
}

.dialog-close {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

.booking-form label {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select {
  width: 100%;
  min-height: 48px;
  padding: 0 12px;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  outline: 0;
}

.booking-form input:focus,
.booking-form select:focus {
  border-bottom-color: var(--oxblood);
  box-shadow: inset 0 -2px 0 var(--oxblood);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 130px;
  gap: 22px;
}

.form-status {
  min-height: 24px;
  margin: 22px 0 0;
  color: var(--oxblood);
  font-size: 12px;
}

.dialog-submit {
  width: 100%;
  padding: 0 22px;
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.dialog-submit:hover,
.dialog-submit:focus-visible {
  border-color: var(--oxblood);
  background: var(--oxblood);
}

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 720ms var(--ease) var(--delay, 0ms),
    transform 720ms var(--ease) var(--delay, 0ms);
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--cobalt);
  outline-offset: 4px;
}

@media (max-width: 1180px) {
  :root {
    --pad: 36px;
  }

  .site-header {
    gap: 28px;
  }

  .nav-panel nav {
    gap: 20px;
  }

  .hero h1 {
    font-size: 102px;
  }

  .programme h2,
  .ritual h2,
  .archive h2,
  .visit h2 {
    font-size: 64px;
  }

  .session-row {
    grid-template-columns: 76px minmax(190px, 0.8fr) minmax(230px, 1fr) 60px 84px;
    gap: 20px;
  }

  .ritual {
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  }

  .room h2 {
    font-size: 68px;
  }

  .archive {
    gap: 56px;
  }

  .visit {
    grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  }
}

@media (max-width: 960px) {
  :root {
    --pad: 28px;
  }

  .site-header {
    min-height: 70px;
  }

  .menu-button {
    display: block;
  }

  .nav-panel {
    position: fixed;
    z-index: 3;
    top: 0;
    right: 0;
    display: flex;
    width: min(88vw, 430px);
    height: 100dvh;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    padding: 96px 42px 48px;
    background: var(--ink);
    color: #fff;
    box-shadow: -24px 0 70px rgba(0, 0, 0, 0.2);
    transform: translateX(105%);
    transition: transform 440ms var(--ease);
  }

  .nav-open .nav-panel {
    transform: translateX(0);
  }

  .nav-panel nav {
    display: flex;
    flex: 0 1 auto;
    flex-direction: column;
    gap: 0;
  }

  .nav-panel nav a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    font-family: "Instrument Serif", Georgia, serif;
    font-size: 34px;
    font-weight: 400;
    text-transform: none;
  }

  .header-reserve {
    align-self: flex-start;
    margin-top: 34px;
    border-color: rgba(255, 255, 255, 0.7);
  }

  .nav-open .site-header,
  .nav-open .site-header.is-scrolled {
    color: #fff;
  }

  .hero-copy {
    width: 560px;
  }

  .hero h1 {
    font-size: 90px;
  }

  .programme-heading {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .genre-filter {
    max-width: 100%;
    overflow-x: auto;
  }

  .session-row {
    grid-template-columns: 70px minmax(200px, 0.8fr) minmax(200px, 1fr) 76px;
  }

  .session-duration {
    display: none;
  }

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

  .ritual-copy {
    padding-left: var(--pad);
  }

  .room-facts {
    left: 34%;
  }

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

  .archive-heading {
    max-width: 600px;
  }

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

  .visit-media-wrap {
    min-height: 560px;
  }

  .visit-copy {
    padding: 92px var(--pad);
  }
}

@media (max-width: 700px) {
  :root {
    --pad: 20px;
  }

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

  body {
    font-size: 14px;
  }

  .site-header,
  .site-header.is-scrolled {
    min-height: 64px;
  }

  .nav-panel {
    width: 100%;
    padding: 86px 28px 36px;
  }

  .hero {
    height: min(790px, 88svh);
    min-height: 680px;
  }

  .hero-media img {
    object-position: center;
    transform: translate3d(0, var(--hero-y), 0) scale(1.015);
  }

  .hero-copy {
    display: block;
    width: auto;
    padding: 104px var(--pad) 0;
  }

  .eyebrow,
  .section-index {
    margin-bottom: 18px;
    font-size: 9px;
  }

  .hero h1 {
    font-size: 62px;
    line-height: 0.9;
  }

  .hero-title-shift {
    margin-left: 48px;
  }

  .hero-lead {
    max-width: 320px;
    margin-top: 20px;
    font-size: 13px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
  }

  .primary-action,
  .quiet-action {
    min-height: 42px;
    padding: 0 16px;
    font-size: 10px;
  }

  .quiet-action {
    border-color: rgba(17, 17, 17, 0.45);
  }

  .hero-status {
    bottom: 56px;
  }

  .hero-session,
  .hero-scroll {
    display: none;
  }

  .programme {
    margin-top: -22px;
    padding: 96px var(--pad) 104px;
    border-radius: 50% 50% 0 0 / 30px 30px 0 0;
  }

  .programme h2,
  .ritual h2,
  .archive h2,
  .visit h2 {
    font-size: 50px;
    line-height: 0.92;
  }

  .programme-heading > p {
    font-size: 13px;
  }

  .programme-tools {
    gap: 18px;
    margin-top: 48px;
  }

  .genre-filter {
    width: calc(100% + var(--pad));
    margin-right: 0;
    padding-right: var(--pad);
    border-right: 0;
    border-radius: 999px 0 0 999px;
    scrollbar-width: none;
  }

  .genre-filter::-webkit-scrollbar {
    display: none;
  }

  .genre-filter button {
    flex: 0 0 auto;
  }

  .session-row {
    grid-template-columns: 56px minmax(0, 1fr) 42px;
    gap: 12px;
    min-height: 108px;
  }

  .session-row:hover {
    padding-right: 0;
    padding-left: 0;
    background: transparent;
  }

  .session-row time {
    align-self: start;
    padding-top: 27px;
    font-size: 21px;
  }

  .session-main h3 {
    font-size: 27px;
  }

  .session-row > p,
  .session-duration {
    display: none;
  }

  .session-row > button {
    width: 42px;
    min-height: 42px;
    padding: 0;
    border: 1px solid var(--line-light);
    border-radius: 50%;
    font-size: 0;
  }

  .session-row > button span {
    font-size: 15px;
  }

  .ritual {
    display: flex;
    margin-top: -22px;
    flex-direction: column;
    border-radius: 50% 50% 0 0 / 30px 30px 0 0;
  }

  .ritual-copy {
    min-height: 0;
    padding: 96px var(--pad) 70px;
  }

  .ritual-copy-inner {
    position: static;
  }

  .ritual-copy-inner > p:not(.section-index) {
    margin-top: 24px;
  }

  .ritual dl {
    margin-top: 46px;
  }

  .ritual dl > div,
  .visit dl > div {
    grid-template-columns: 90px 1fr;
  }

  .ritual-image {
    min-height: 620px;
  }

  .ritual-image > img {
    top: -20px;
    height: calc(100% + 40px);
  }

  .room {
    min-height: 760px;
    margin-top: -20px;
    border-radius: 50% 50% 0 0 / 28px 28px 0 0;
  }

  .room-media {
    inset: -24px 0 auto;
    height: calc(100% + 48px);
    object-position: 58% center;
  }

  .room-shade {
    background: rgba(0, 0, 0, 0.38);
  }

  .room-copy {
    top: 66px;
    right: var(--pad);
    left: var(--pad);
  }

  .room h2 {
    font-size: 51px;
    line-height: 0.93;
  }

  .room-copy > p:not(.section-index) {
    max-width: 280px;
    font-size: 13px;
  }

  .room-facts {
    right: var(--pad);
    bottom: 36px;
    left: var(--pad);
    grid-template-columns: 1fr;
  }

  .room-facts li {
    display: grid;
    min-height: 0;
    grid-template-columns: 34px 1fr;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.26);
    border-left: 0;
  }

  .room-facts span {
    margin: 0;
    font-size: 20px;
  }

  .archive {
    gap: 48px;
    margin-top: -22px;
    padding: 96px var(--pad) 104px;
    border-radius: 50% 50% 0 0 / 30px 30px 0 0;
  }

  .archive-list summary {
    grid-template-columns: 36px minmax(0, 1fr) 20px;
    gap: 10px;
    min-height: 92px;
  }

  .archive-list summary strong {
    font-size: 24px;
  }

  .archive-list summary small {
    display: none;
  }

  .archive-list details > p {
    margin-left: 46px;
  }

  .visit {
    margin-top: -20px;
    border-radius: 50% 50% 0 0 / 28px 28px 0 0;
  }

  .visit-media-wrap {
    min-height: 480px;
  }

  .visit-media-wrap img {
    object-position: 61% center;
  }

  .visit-copy {
    padding: 82px var(--pad) 90px;
  }

  .visit-copy > p:not(.section-index) {
    margin-top: 24px;
  }

  .visit dl {
    margin-top: 42px;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    gap: 56px 28px;
    padding: 68px var(--pad);
  }

  .site-footer > div:first-child {
    grid-column: 1 / 3;
  }

  .footer-meta {
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
  }

  .booking-form {
    padding: 28px 22px;
  }

  .booking-dialog h2 {
    font-size: 43px;
  }

  .form-row {
    grid-template-columns: 1fr 90px;
    gap: 14px;
  }
}

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

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

  .hero-media img,
  [data-parallax] {
    transform: none !important;
  }

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