:root {
  --ink: #231e1f;
  --coral: #f05f5a;
  --cream: #e2c8a6;
  --taupe: #baa49b;
  --brown: #794d36;
  --ochre: #bc9551;
  --paper: #fffaf3;
  --white: #ffffff;
  --green: #178b5a;
  --border: 2px solid var(--ink);
  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 44px;
  --max-width: 1440px;
  --gutter: clamp(20px, 4vw, 68px);
  --sans: "Manrope", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --serif: "Newsreader", Georgia, "Times New Roman", serif;
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.icon-fill {
  fill: currentColor;
  stroke: none;
}

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

:focus-visible {
  outline: 3px solid var(--ochre);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  border: var(--border);
  border-radius: 999px;
  background: var(--white);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.top-strip {
  position: relative;
  z-index: 30;
  height: 36px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 36px;
  text-transform: uppercase;
}

.top-strip__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  animation: strip-move 34s linear infinite;
}

.top-strip__track i,
.ticker__track i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  flex: 0 0 auto;
}

@keyframes strip-move {
  to {
    transform: translateX(-50%);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 25;
  display: flex;
  width: 100%;
  height: 88px;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  border-bottom: var(--border);
  background: rgb(255 250 243 / 96%);
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(14px);
  transition: height 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled {
  height: 72px;
  box-shadow: 0 8px 30px rgb(35 30 31 / 8%);
}

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

.brand__mark {
  position: relative;
  display: block;
  width: 34px;
  height: 50px;
  overflow: hidden;
  border: 1.5px solid var(--ink);
  border-radius: 18px;
  background: var(--white);
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand__name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: lowercase;
}

.brand__name em {
  display: block;
  margin-top: 4px;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 48px);
  font-size: 13px;
  font-weight: 700;
}

.nav-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-nav > a:not(.nav-social) {
  position: relative;
}

.site-nav > a:not(.nav-social)::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  background: var(--coral);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

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

.nav-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: var(--border);
  border-radius: 999px;
  background: var(--coral);
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.nav-social:hover {
  box-shadow: 1px 1px 0 var(--ink);
  transform: translate(2px, 2px);
}

.nav-social svg {
  width: 17px;
  height: 17px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: var(--border);
  border-radius: 50%;
  color: var(--ink);
  background: var(--coral);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 200ms ease;
}

.hero {
  position: relative;
  display: grid;
  max-width: var(--max-width);
  min-height: min(820px, calc(100vh - 124px));
  margin: 0 auto;
  padding: clamp(56px, 7vw, 102px) var(--gutter) clamp(64px, 8vw, 116px);
  grid-template-columns: minmax(0, 0.93fr) minmax(440px, 1.07fr);
  align-items: center;
  gap: clamp(34px, 5vw, 92px);
}

.hero::before {
  position: absolute;
  top: 10%;
  left: -110px;
  width: 220px;
  height: 220px;
  border: 35px solid var(--cream);
  border-radius: 50%;
  content: "";
  opacity: 0.65;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 26px;
  height: 3px;
  border-radius: 999px;
  background: var(--coral);
}

.hero h1,
.section h2,
.visit h2,
.statement p {
  margin: 0;
  font-size: clamp(64px, 7.2vw, 112px);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.8;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 em,
.section h2 em,
.visit h2 em,
.statement em {
  color: var(--coral);
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.hero h1 em {
  margin: 12px 0 0 clamp(26px, 4vw, 72px);
  font-size: 1.07em;
}

.hero__intro {
  max-width: 540px;
  margin: 36px 0 30px;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 14px 22px;
  border: var(--border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  box-shadow: 4px 4px 0 var(--coral);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  box-shadow: 1px 1px 0 var(--coral);
  transform: translate(3px, 3px);
}

.button svg {
  width: 20px;
  height: 20px;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 800;
  line-height: 2;
}

.text-link svg {
  width: 17px;
  height: 17px;
}

.hero__facts {
  display: grid;
  max-width: 560px;
  margin: 46px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid rgb(35 30 31 / 22%);
  list-style: none;
  grid-template-columns: repeat(3, 1fr);
}

.hero__facts li {
  display: flex;
  flex-direction: column;
}

.hero__facts li + li {
  padding-left: 22px;
  border-left: 1px solid rgb(35 30 31 / 22%);
}

.hero__facts strong {
  font-size: 17px;
  font-weight: 800;
}

.hero__facts span {
  margin-top: 2px;
  color: rgb(35 30 31 / 66%);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.hero__visual {
  position: relative;
  min-height: 615px;
}

.hero__shape {
  position: absolute;
  border: var(--border);
}

.hero__shape--coral {
  top: 3%;
  right: 1%;
  width: 49%;
  height: 56%;
  border-radius: 50% 50% 12px 12px;
  background: var(--coral);
}

.hero__shape--ochre {
  bottom: 0;
  left: 8%;
  width: 48%;
  height: 45%;
  border-radius: 12px 12px 50% 50%;
  background: var(--ochre);
}

.hero-photo {
  position: absolute;
  z-index: 2;
  overflow: hidden;
  margin: 0;
  border: var(--border);
  background: var(--cream);
}

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

.hero-photo--main {
  top: 7.5%;
  left: 20%;
  width: 51%;
  height: 78%;
  border-radius: 180px 180px 22px 22px;
  box-shadow: 10px 11px 0 var(--ink);
}

.hero-photo--main img {
  object-position: center;
}

.hero-photo--detail {
  right: 0;
  bottom: 1%;
  width: 38%;
  aspect-ratio: 1;
  border-radius: 50%;
  box-shadow: 6px 6px 0 var(--ink);
}

.hero-photo--detail img {
  object-position: center 67%;
}

.logo-card {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  display: grid;
  width: 145px;
  height: 205px;
  place-items: center;
  overflow: hidden;
  border: var(--border);
  border-radius: 72px;
  background: var(--white);
  box-shadow: 6px 6px 0 var(--ink);
}

.logo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.open-card {
  position: absolute;
  top: 2%;
  left: 0;
  z-index: 4;
  display: flex;
  min-width: 190px;
  flex-direction: column;
  padding: 15px 18px;
  border: var(--border);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 5px 5px 0 var(--ink);
  font-size: 11px;
  line-height: 1.4;
  transform: rotate(-3deg);
  transition: transform 180ms ease;
}

.open-card:hover {
  transform: rotate(0deg) translateY(-3px);
}

.open-card__status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
}

[data-open-dot] {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ochre);
  box-shadow: 0 0 0 4px rgb(188 149 81 / 18%);
}

[data-open-dot].is-open {
  background: var(--green);
  box-shadow: 0 0 0 4px rgb(23 139 90 / 15%);
}

[data-open-dot].is-closed {
  background: var(--coral);
  box-shadow: 0 0 0 4px rgb(240 95 90 / 14%);
}

.ticker {
  overflow: hidden;
  padding: 7px 0 10px;
  border-top: var(--border);
  border-bottom: var(--border);
  background: var(--cream);
}

.ticker__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 24px;
  color: var(--ink);
  font-size: clamp(29px, 3.1vw, 48px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.1;
  white-space: nowrap;
  animation: ticker-move 28s linear infinite;
}

.ticker__track i {
  width: 13px;
  height: 13px;
  border: 2px solid var(--ink);
}

@keyframes ticker-move {
  to {
    transform: translateX(-50%);
  }
}

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(88px, 11vw, 170px) var(--gutter);
}

.section-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: clamp(50px, 7vw, 90px);
}

.section-heading .eyebrow {
  margin-bottom: 0;
}

.section-index {
  margin: 0;
  color: rgb(35 30 31 / 55%);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.story__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
  gap: clamp(54px, 9vw, 132px);
}

.story__visual {
  position: relative;
  padding: 0 0 55px 38px;
}

.story__visual::before {
  position: absolute;
  top: -38px;
  right: -38px;
  width: 42%;
  aspect-ratio: 1;
  border: var(--border);
  border-radius: 50%;
  background: var(--taupe);
  content: "";
}

.story__photo {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin: 0;
  border: var(--border);
  border-radius: 26px 180px 26px 26px;
  box-shadow: -10px 10px 0 var(--cream);
}

.story__photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.story__seal {
  position: absolute;
  right: -30px;
  bottom: 0;
  z-index: 2;
  display: flex;
  width: 150px;
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: var(--border);
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 5px 5px 0 var(--ink);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.2;
  text-transform: uppercase;
  transform: rotate(8deg);
}

.story__seal strong {
  margin: 3px 0;
  font-family: var(--serif);
  font-size: 43px;
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.06em;
}

.story__copy h2,
.ritual .section-heading h2,
.gallery .section-heading h2,
.visit h2 {
  font-size: clamp(49px, 6vw, 88px);
  line-height: 0.94;
}

.story__lead {
  margin: 38px 0 20px;
  font-size: clamp(19px, 1.7vw, 24px);
  font-weight: 600;
  line-height: 1.55;
}

.story__copy > p:not(.story__lead) {
  max-width: 580px;
  margin: 0;
  color: rgb(35 30 31 / 72%);
  font-size: 15px;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.arrow-link span {
  font-size: 21px;
  line-height: 1;
  transition: transform 180ms ease;
}

.arrow-link:hover span {
  transform: translate(4px, 4px);
}

.ritual {
  max-width: none;
  border-top: var(--border);
  background: var(--white);
}

.ritual > * {
  width: 100%;
  max-width: calc(var(--max-width) - (var(--gutter) * 2));
  margin-right: auto;
  margin-left: auto;
}

.ritual .section-heading {
  align-items: flex-end;
}

.ritual .section-heading .eyebrow,
.gallery .section-heading .eyebrow {
  margin-bottom: 28px;
}

.ritual__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.5vw, 36px);
}

.swipe-hint {
  display: none;
}

.ritual-card {
  position: relative;
  display: flex;
  min-height: 610px;
  flex-direction: column;
  padding: 15px;
  border: var(--border);
  border-radius: 200px 200px 24px 24px;
  box-shadow: 7px 7px 0 var(--ink);
}

.ritual-card--coral {
  background: var(--coral);
}

.ritual-card--cream {
  background: var(--cream);
}

.ritual-card--ochre {
  background: var(--ochre);
}

.ritual-card figure {
  overflow: hidden;
  aspect-ratio: 1 / 1.05;
  margin: 0;
  border: var(--border);
  border-radius: 50%;
  background: var(--ink);
}

.ritual-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.ritual-card:hover figure img {
  transform: scale(1.045);
}

.ritual-card__number {
  position: absolute;
  top: 22px;
  right: 15px;
  z-index: 2;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: var(--border);
  border-radius: 50%;
  background: var(--paper);
  font-size: 12px;
  font-weight: 800;
}

.ritual-card__copy {
  padding: 28px 18px 22px;
}

.ritual-card h3 {
  margin: 0 0 8px;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1;
}

.ritual-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
}

.statement {
  position: relative;
  overflow: hidden;
  padding: clamp(94px, 13vw, 190px) var(--gutter);
  border-top: var(--border);
  border-bottom: var(--border);
  background: var(--coral);
  text-align: center;
}

.statement::before,
.statement::after {
  position: absolute;
  width: 270px;
  aspect-ratio: 1;
  border: 34px solid var(--ink);
  border-radius: 50%;
  content: "";
  opacity: 0.94;
}

.statement::before {
  top: -150px;
  left: -90px;
}

.statement::after {
  right: -75px;
  bottom: -155px;
}

.statement p {
  position: relative;
  z-index: 2;
  font-size: clamp(58px, 9vw, 140px);
  line-height: 0.82;
}

.statement p + p {
  margin-top: 17px;
}

.statement em {
  color: var(--paper);
}

.statement__note {
  position: absolute;
  right: var(--gutter);
  bottom: 28px;
  z-index: 2;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gallery .section-heading {
  align-items: flex-end;
}

.gallery__heading-aside {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
}

.gallery__heading-aside .arrow-link {
  margin-top: 25px;
}

.gallery__grid {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 195px;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-card {
  position: relative;
  display: block;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  border: var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  background: var(--ink);
  cursor: zoom-in;
  grid-column: span 1;
  grid-row: span 1;
}

.gallery-card--wide {
  grid-column: span 2;
}

.gallery-card--tall {
  grid-row: span 2;
}

.gallery-card--wide-tall {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(35 30 31 / 65%), transparent 42%);
  content: "";
  pointer-events: none;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 550ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
  filter: saturate(1.08);
  transform: scale(1.045);
}

.gallery-card > span {
  position: absolute;
  right: 16px;
  bottom: 14px;
  left: 16px;
  z-index: 2;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-align: left;
  text-transform: uppercase;
}

.visit {
  max-width: none;
  color: var(--paper);
  background: var(--ink);
}

.visit > * {
  width: 100%;
  max-width: calc(var(--max-width) - (var(--gutter) * 2));
  margin-right: auto;
  margin-left: auto;
}

.eyebrow--light > span {
  background: var(--cream);
}

.visit__heading {
  position: relative;
  margin-bottom: clamp(56px, 8vw, 100px);
}

.visit__heading h2 {
  max-width: 820px;
  color: var(--paper);
}

.visit__heading h2 em {
  color: var(--coral);
}

.visit__heading > p:last-child {
  position: absolute;
  right: 0;
  bottom: 0;
  margin: 0;
  color: rgb(255 250 243 / 68%);
  font-size: 14px;
  text-align: right;
}

.visit__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(390px, 0.85fr);
  align-items: stretch;
  gap: clamp(20px, 3vw, 42px);
}

.map-card {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  border: 2px solid var(--paper);
  border-radius: var(--radius-md);
  background: var(--cream);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 600px;
  border: 0;
  filter: grayscale(1) sepia(0.12) contrast(0.9);
  transition: filter 300ms ease;
}

.map-card:hover iframe,
.map-card:focus-within iframe {
  filter: none;
}

.map-card > a {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 20px;
  border: var(--border);
  border-radius: 16px;
  color: var(--ink);
  background: var(--coral);
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.map-card > a span {
  display: flex;
  flex-direction: column;
}

.map-card > a small,
.visit-card__actions small {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.map-card > a strong {
  font-size: 28px;
}

.visit-card {
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 3vw, 42px);
  border: 2px solid var(--paper);
  border-radius: var(--radius-md);
  background: #2c2728;
}

.visit-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid rgb(255 250 243 / 18%);
}

.visit-card__top > svg {
  width: 42px;
  height: 42px;
  color: var(--cream);
}

.visit-card__label {
  margin: 0 0 3px;
  color: rgb(255 250 243 / 58%);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.visit-card__live {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  font-size: 14px;
  font-weight: 800;
}

.hours-list {
  margin: 16px 0 28px;
  padding: 0;
  list-style: none;
}

.hours-list > li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13px;
}

.hours-list > li.is-today {
  color: var(--ink);
  background: var(--cream);
  font-weight: 800;
}

.hours-list strong {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}

.visit-card__actions {
  display: grid;
  margin-top: auto;
  border-top: 1px solid rgb(255 250 243 / 18%);
  grid-template-columns: 1fr 1fr;
}

.visit-card__actions a:first-child {
  padding-bottom: 20px;
  border-bottom: 1px solid rgb(255 250 243 / 18%);
  grid-column: 1 / -1;
}

.visit-card__actions a {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  padding-top: 24px;
  font-size: 12px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.visit-card__actions a + a {
  padding-left: 20px;
  border-left: 1px solid rgb(255 250 243 / 18%);
}

.visit-card__actions a:nth-child(2) {
  padding-left: 0;
  border-left: 0;
}

.visit-card__actions svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: var(--coral);
}

.visit-card__actions span {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.visit-card__actions small {
  color: rgb(255 250 243 / 48%);
}

.site-footer {
  position: relative;
  display: grid;
  min-height: 340px;
  padding: 64px var(--gutter) 40px;
  border-top: 2px solid var(--paper);
  background: var(--coral);
  grid-template-columns: 1.4fr 0.6fr 0.6fr;
  align-items: start;
  gap: 50px;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  font-size: clamp(52px, 7vw, 105px);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.67;
}

.site-footer__brand em {
  margin-left: clamp(26px, 4vw, 66px);
  font-family: var(--serif);
  font-size: 0.68em;
  font-weight: 500;
}

.site-footer__links {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
}

.site-footer__links a,
.site-footer__meta a {
  border-bottom: 1px solid transparent;
}

.site-footer__links a:hover,
.site-footer__meta a:hover {
  border-color: currentColor;
}

.site-footer__meta {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.6;
}

.site-footer__meta p {
  margin: 0;
}

.footer-socials {
  position: absolute;
  right: var(--gutter);
  bottom: 32px;
  display: flex;
  gap: 12px;
}

.footer-social {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: var(--border);
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 4px 4px 0 var(--ink);
}

.footer-social svg {
  width: 22px;
  height: 22px;
}

.mobile-actions {
  display: none;
}

.lightbox {
  width: min(92vw, 1100px);
  max-width: none;
  height: min(90vh, 850px);
  max-height: none;
  overflow: visible;
  padding: 0;
  border: 2px solid var(--paper);
  border-radius: 24px;
  color: var(--paper);
  background: var(--ink);
  box-shadow: 12px 12px 0 var(--coral);
}

.lightbox::backdrop {
  background: rgb(35 30 31 / 82%);
  backdrop-filter: blur(10px);
}

.lightbox figure {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 24px;
}

.lightbox img {
  width: 100%;
  height: calc(100% - 30px);
  object-fit: contain;
}

.lightbox figcaption {
  position: absolute;
  bottom: 12px;
  left: 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.lightbox__close {
  position: absolute;
  top: -19px;
  right: -19px;
  z-index: 2;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  padding: 0 0 3px;
  border: var(--border);
  border-radius: 50%;
  color: var(--ink);
  background: var(--coral);
  box-shadow: 3px 3px 0 var(--paper);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 750ms cubic-bezier(0.22, 1, 0.36, 1), transform 750ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .reveal.reveal--delay {
  transition-delay: 100ms;
}

.js .reveal.reveal--delay-2 {
  transition-delay: 200ms;
}

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

@media (max-width: 1280px) {
  .footer-socials {
    position: static;
    grid-column: 1 / -1;
    justify-self: end;
  }
}

@media (max-width: 1120px) {
  .hero {
    min-height: auto;
    grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr);
    gap: 38px;
  }

  .hero__visual {
    min-height: 560px;
  }

  .hero h1 {
    font-size: clamp(60px, 7vw, 82px);
  }

  .hero__facts {
    margin-top: 38px;
  }

  .ritual-card {
    min-height: 540px;
  }

  .ritual-card__copy {
    padding-right: 10px;
    padding-left: 10px;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 80px;
  }

  .site-header,
  .site-header.is-scrolled {
    height: 72px;
    backdrop-filter: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 32;
    display: block;
  }

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

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

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 31;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    padding: 110px var(--gutter) 40px;
    background: var(--cream);
    clip-path: circle(0 at calc(100% - 48px) 35px);
    pointer-events: none;
    transition: clip-path 480ms cubic-bezier(0.76, 0, 0.24, 1);
  }

  .site-nav.is-open {
    clip-path: circle(150% at calc(100% - 48px) 35px);
    pointer-events: auto;
  }

  .site-nav > a:not(.nav-social) {
    font-size: clamp(34px, 8vw, 58px);
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 1.2;
  }

  .nav-social {
    padding: 13px 20px;
    font-size: 14px;
  }

  .nav-socials {
    margin-top: 24px;
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 70px;
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .hero h1 {
    max-width: 700px;
    font-size: clamp(72px, 13vw, 106px);
  }

  .hero__visual {
    width: min(100%, 670px);
    min-height: 650px;
    justify-self: center;
  }

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

  .story__visual {
    width: min(86%, 670px);
  }

  .story__copy {
    max-width: 650px;
    margin-left: auto;
  }

  .ritual__grid {
    overflow-x: auto;
    margin-right: calc(var(--gutter) * -1);
    padding: 0 var(--gutter) 12px 7px;
    scroll-snap-type: x mandatory;
    grid-auto-columns: minmax(300px, 68vw);
    grid-template-columns: none;
    grid-auto-flow: column;
    scrollbar-color: var(--coral) transparent;
  }

  .swipe-hint {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin: -26px 0 18px;
    color: rgb(35 30 31 / 62%);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .swipe-hint span {
    font-size: 18px;
    line-height: 1;
  }

  .ritual-card {
    min-height: 570px;
    scroll-snap-align: center;
  }

  .gallery__grid {
    grid-auto-rows: 170px;
  }

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

  .map-card,
  .map-card iframe {
    min-height: 480px;
  }

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

  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  :root {
    --gutter: 20px;
  }

  body {
    padding-bottom: 68px;
  }

  .top-strip {
    height: 30px;
    line-height: 30px;
  }

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

  .brand__mark {
    width: 28px;
    height: 42px;
  }

  .brand__name {
    font-size: 15px;
  }

  .hero {
    padding-top: 48px;
    padding-bottom: 74px;
    gap: 45px;
  }

  .hero::before {
    display: none;
  }

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

  .hero h1 {
    font-size: clamp(61px, 19vw, 82px);
    line-height: 0.82;
  }

  .hero h1 em {
    margin-top: 8px;
    margin-left: 8px;
  }

  .hero__intro {
    margin-top: 28px;
    font-size: 16px;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .button {
    width: 100%;
  }

  .text-link {
    align-self: flex-start;
  }

  .hero__facts {
    margin-top: 36px;
  }

  .hero__facts li + li {
    padding-left: 12px;
  }

  .hero__facts strong {
    font-size: 15px;
  }

  .hero__facts span {
    font-size: 9px;
  }

  .hero__visual {
    width: calc(100% + 4px);
    min-height: 480px;
  }

  .hero-photo--main {
    top: 5%;
    left: 17%;
    width: 60%;
    height: 80%;
    box-shadow: 7px 8px 0 var(--ink);
  }

  .hero-photo--detail {
    width: 41%;
    box-shadow: 4px 4px 0 var(--ink);
  }

  .logo-card {
    width: 104px;
    height: 148px;
    border-radius: 52px;
    box-shadow: 4px 4px 0 var(--ink);
  }

  .open-card {
    min-width: 165px;
    padding: 12px 14px;
    font-size: 9px;
  }

  .hero__shape--ochre {
    left: 4%;
  }

  .ticker__track {
    font-size: 30px;
  }

  .section {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 50px;
  }

  .section-index {
    order: -1;
  }

  .story__grid {
    gap: 62px;
  }

  .story__visual {
    width: calc(100% - 22px);
    padding: 0 0 36px 8px;
  }

  .story__visual::before {
    top: -24px;
    right: -25px;
  }

  .story__photo {
    border-radius: 20px 100px 20px 20px;
    box-shadow: -7px 7px 0 var(--cream);
  }

  .story__seal {
    right: -25px;
    width: 112px;
  }

  .story__seal strong {
    font-size: 32px;
  }

  .story__copy h2,
  .ritual .section-heading h2,
  .gallery .section-heading h2,
  .visit h2 {
    font-size: clamp(45px, 13vw, 62px);
  }

  .story__lead {
    margin-top: 28px;
    font-size: 18px;
  }

  .ritual .section-heading,
  .gallery .section-heading {
    align-items: flex-start;
  }

  .ritual__grid {
    grid-auto-columns: 84vw;
  }

  .ritual-card {
    min-height: 520px;
  }

  .statement {
    min-height: 420px;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }

  .statement p {
    font-size: clamp(54px, 17vw, 76px);
  }

  .statement__note {
    right: 20px;
    bottom: 18px;
    left: 20px;
    text-align: center;
  }

  .gallery__heading-aside {
    align-items: flex-start;
    order: -1;
  }

  .gallery__heading-aside .section-index {
    order: initial;
  }

  .gallery__heading-aside .arrow-link {
    margin-top: 15px;
  }

  .gallery__grid {
    grid-auto-rows: 145px;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .gallery-card {
    border-radius: 13px;
  }

  .gallery-card--wide-tall {
    grid-column: span 2;
  }

  .gallery-card > span {
    right: 10px;
    bottom: 9px;
    left: 10px;
    font-size: 8px;
  }

  .visit__heading > p:last-child {
    position: static;
    margin-top: 26px;
    text-align: left;
  }

  .map-card,
  .map-card iframe {
    min-height: 420px;
  }

  .visit-card {
    padding: 24px 18px;
  }

  .hours-list > li {
    font-size: 12px;
  }

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

  .visit-card__actions a + a {
    margin-top: 20px;
    padding-left: 0;
    border-top: 1px solid rgb(255 250 243 / 18%);
    border-left: 0;
  }

  .visit-card__actions a:first-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .site-footer {
    min-height: 410px;
    padding-top: 52px;
    grid-template-columns: 1fr 1fr;
    gap: 42px 20px;
  }

  .site-footer__brand {
    font-size: 62px;
  }

  .site-footer__meta {
    min-height: 150px;
  }

  .mobile-actions {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 24;
    display: grid;
    height: 68px;
    border-top: var(--border);
    color: var(--white);
    background: var(--ink);
    grid-template-columns: 1fr 1fr;
  }

  .mobile-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 12px;
    font-weight: 800;
  }

  .mobile-actions a:first-child {
    color: var(--ink);
    background: var(--coral);
  }

  .mobile-actions a + a {
    border-left: 2px solid var(--paper);
  }

  .mobile-actions svg {
    width: 19px;
    height: 19px;
  }

  .lightbox {
    width: calc(100vw - 28px);
    height: calc(100vh - 120px);
    border-radius: 15px;
    box-shadow: 6px 6px 0 var(--coral);
  }

  .lightbox__close {
    top: 8px;
    right: 8px;
    width: 42px;
    height: 42px;
    box-shadow: 2px 2px 0 var(--paper);
  }
}

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

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (hover: none) {
  .map-card iframe {
    filter: none;
  }
}
