:root {
  color-scheme: light;
  --ink: #080707;
  --ink-soft: #0f0d0d;
  --graphite: #1a1a1c;
  --earth: #2f2621;
  --clay: #5a5047;
  --aged-brass: #8d7353;
  --deep-slate: #2b3130;
  --oat: #d8cec1;
  --muted: #5a5047;
  --paper: #f7f2ec;
  --mist: #e9e1d8;
  --sage: #2b3130;
  --sage-dark: #0d0d0e;
  --brass: #8d7353;
  --foam: #f3eee7;
  --line: rgba(13, 13, 14, 0.14);
  --shadow: 0 24px 70px rgba(13, 13, 14, 0.16);
  --logo: "MeltSerif", Didot, "Bodoni 72", Georgia, serif;
  --serif: "MeltSerif", Didot, "Bodoni 72", Georgia, serif;
  --body-serif: "Cormorant Garamond", Garamond, Georgia, serif;
  --grotesque: "Darker Grotesque", "Avenir Next", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --sans: var(--body-serif);
}

@font-face {
  font-family: "MeltSerif";
  src: url("assets/fonts/MeltSerif-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Darker Grotesque";
  src: url("assets/fonts/DarkerGrotesque-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Darker Grotesque";
  src: url("assets/fonts/DarkerGrotesque-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("assets/fonts/CormorantGaramond-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  z-index: 998;
  inset: 0;
  background: var(--ink);
  pointer-events: none;
  animation: dark-curtain-reveal 1700ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

body > header,
body > main,
body > footer {
  animation: page-fade-in 700ms ease-out both;
}

body > main {
  animation-delay: 40ms;
}

body > footer {
  animation-delay: 80ms;
}

@keyframes page-fade-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dark-curtain-reveal {
  0%,
  35% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}


body.menu-open {
  overflow: hidden;
}

.cursor-orb {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(216, 206, 193, 0.78);
  box-shadow:
    0 0 20px rgba(216, 206, 193, 0.74),
    0 0 46px rgba(141, 115, 83, 0.34);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0) scale(0.9);
  transition: opacity 180ms ease, transform 180ms ease;
  mix-blend-mode: screen;
}

.cursor-orb.is-visible {
  opacity: 1;
}

.cursor-orb.is-pressed {
  transform: translate3d(-50%, -50%, 0) scale(0.72);
}

@media (pointer: fine) {
  body,
  a,
  button,
  summary {
    cursor: none !important;
  }
}

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

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(26, 26, 28, 0.94);
  color: var(--oat);
  box-shadow: 0 10px 30px rgba(13, 13, 14, 0.16);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-grid;
  gap: 4px;
  justify-items: center;
  width: fit-content;
  line-height: 1;
}

.brand-word {
  font-family: var(--logo);
  font-size: 2.64rem;
  font-weight: 400;
  line-height: 0.76;
}

.brand-subtitle {
  font-family: var(--grotesque);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.44em;
  line-height: 0.9;
  transform: translateX(0.22em);
}

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 44px;
  font-family: var(--grotesque);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav a,
.footer-links a {
  text-underline-offset: 5px;
}

.nav a:hover,
.footer-links a:hover {
  text-decoration: underline;
}

.nav-book-link {
  display: none;
}

.header-cta {
  justify-self: end;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 10px 16px;
  font-family: var(--grotesque);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  align-content: center;
  justify-items: center;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-header.is-open .menu-toggle span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .menu-toggle span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 118px clamp(20px, 6vw, 88px) 72px;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  animation: hero-image-reveal 1800ms cubic-bezier(0.16, 1, 0.3, 1) both;
  object-fit: cover;
  transform-origin: center;
}

.hero-overlay {
  animation: hero-overlay-reveal 1800ms ease both;
  background:
    linear-gradient(90deg, rgba(19, 26, 22, 0.78) 0%, rgba(19, 26, 22, 0.52) 36%, rgba(19, 26, 22, 0.1) 72%),
    linear-gradient(0deg, rgba(19, 26, 22, 0.38), rgba(19, 26, 22, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(650px, 100%);
  color: #fff;
  animation: hero-content-reveal 1500ms cubic-bezier(0.16, 1, 0.3, 1) 360ms both;
}

@keyframes hero-image-reveal {
  from {
    filter: saturate(0.82) brightness(0.68) blur(12px);
    opacity: 0;
    transform: scale(1.12);
  }

  55% {
    opacity: 1;
  }

  to {
    filter: saturate(1) brightness(1) blur(0);
    opacity: 1;
    transform: scale(1.01);
  }
}

@keyframes hero-overlay-reveal {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes hero-content-reveal {
  from {
    filter: blur(8px);
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    filter: blur(0);
    opacity: 1;
    transform: translateY(0);
  }
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--sage-dark);
  font-family: var(--grotesque);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--oat);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 0.98;
}

h1 {
  max-width: 9ch;
  margin-bottom: 24px;
  font-size: clamp(4rem, 13vw, 9rem);
}

.hero-logo-title {
  display: inline-grid;
  gap: clamp(8px, 1.2vw, 14px);
  justify-items: center;
  max-width: none;
  margin-bottom: 28px;
  line-height: 1;
}

.hero-logo-word {
  font-family: var(--logo);
  font-size: clamp(4.8rem, 14vw, 9.8rem);
  font-weight: 400;
  line-height: 0.74;
}

.hero-logo-subtitle {
  font-family: var(--grotesque);
  font-size: clamp(1.05rem, 2.7vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.56em;
  line-height: 0.9;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.4rem, 6vw, 5rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.25rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 20px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
}

.button-primary {
  background: var(--sage-dark);
  color: #fff;
}

.hero .button-primary {
  background: #fff;
  color: var(--sage-dark);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

.hero-actions .button {
  font-family: var(--grotesque);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  padding: clamp(72px, 10vw, 132px) clamp(20px, 6vw, 88px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  gap: clamp(28px, 7vw, 92px);
  align-items: start;
}

.section-heading p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.25rem;
}

.about {
  background: var(--ink);
  color: var(--oat);
  padding-top: clamp(58px, 8vw, 104px);
  padding-bottom: clamp(58px, 8vw, 104px);
}

.about-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 308px) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 36px);
  margin-top: 44px;
  align-items: stretch;
}

.about .section-kicker {
  align-self: start;
  color: var(--oat);
}

.about-copy {
  align-self: start;
  max-width: 1040px;
}

.about-photo-placeholder {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  min-height: 0;
  border: 1px solid rgba(216, 206, 193, 0.24);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  object-fit: cover;
  object-position: center center;
}

.about-copy p {
  color: rgba(216, 206, 193, 0.76);
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
}

.about-copy .about-lede {
  margin-bottom: 22px;
  color: var(--oat);
  font-family: var(--sans);
  font-size: clamp(1.65rem, 3.6vw, 3.2rem);
  line-height: 0.98;
}

.rituals {
  background: var(--ink);
  color: var(--oat);
}

.rituals .section-kicker,
.ritual-card h3 {
  color: var(--oat);
}

.ritual-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 44px;
}

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

.ritual-card {
  display: flex;
  min-height: 340px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(216, 206, 193, 0.22);
  border-radius: 8px;
  padding: 28px;
  background: var(--ink-soft);
  transition: border-color 180ms ease, box-shadow 180ms ease, opacity 220ms ease, transform 220ms ease;
}

@media (min-width: 861px) {
  .ritual-card.express-full-width {
    grid-column: 1 / -1;
  }
}

.ritual-grid.has-open-card .ritual-card:not(.is-open) {
  display: none;
}

.ritual-card.is-open {
  min-height: 0;
  padding: 28px;
}

.add-ons-card {
  grid-column: 1 / -1;
  border: 1px solid rgba(216, 206, 193, 0.22);
  border-radius: 8px;
  padding: 26px 28px;
  background: var(--ink-soft);
}

.add-ons-card summary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  width: 100%;
  color: var(--oat);
  cursor: pointer;
  font-size: 1.3rem;
  font-weight: 800;
  list-style: none;
}

.add-ons-card summary::-webkit-details-marker {
  display: none;
}

.add-ons-card summary::after {
  content: "";
  width: 13px;
  height: 13px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.add-ons-card[open] summary::after {
  transform: translateY(4px) rotate(225deg);
}

.add-ons-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
  color: rgba(216, 206, 193, 0.76);
  font-size: 1.25rem;
}

.add-ons-card:not([open]) .add-ons-list {
  display: none;
}

.add-on-item {
  display: grid;
  gap: 6px;
  text-align: center;
}

.add-on-name,
.add-on-price {
  display: block;
}

.add-on-price {
  color: var(--aged-brass);
  font-family: var(--grotesque);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.ritual-card.featured {
  background: var(--sage-dark);
  color: #fff;
  box-shadow: var(--shadow);
}

.ritual-card p {
  color: rgba(216, 206, 193, 0.76);
}

.ritual-card.featured p,
.ritual-card.featured li,
.ritual-card.featured .card-topline {
  color: rgba(255, 255, 255, 0.74);
}

.service-details {
  display: flex;
  flex: 1;
  flex-direction: column;
  margin-bottom: 12px;
}

.service-details summary {
  display: flex;
  min-height: 150px;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  color: rgba(216, 206, 193, 0.76);
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 400;
  list-style: none;
}

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

.ritual-card.is-open .service-details {
  margin-bottom: 12px;
}

.ritual-card.is-open .service-details summary {
  min-height: 0;
  gap: 16px;
}

.service-more {
  display: grid;
  gap: 14px;
  opacity: 0;
  padding-top: 20px;
  transform: translateY(10px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.ritual-card:not(.is-open) .service-more {
  display: none;
}

.ritual-card.is-open .service-details[open] .service-more {
  opacity: 1;
  transform: translateY(0);
}

.ritual-card.is-open .service-more {
  grid-template-columns: 1fr;
  gap: 18px;
  padding-top: 18px;
}

.service-more p {
  margin-bottom: 0;
  font-size: 1.25rem;
}

.service-more ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: rgba(216, 206, 193, 0.76);
  font-size: 1.25rem;
}

.service-book {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 1px solid rgba(216, 206, 193, 0.72);
  border-radius: 999px;
  padding: 10px 18px;
  color: var(--oat);
  font-family: var(--grotesque);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ritual-card.featured .service-details summary {
  color: rgba(255, 255, 255, 0.74);
}

.ritual-card.featured .service-details summary::after {
  color: #fff;
}

.card-topline {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  margin-bottom: 42px;
  color: var(--aged-brass);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.ritual-card a {
  width: fit-content;
  font-weight: 800;
  color: var(--aged-brass);
}

.ritual-card .service-book {
  grid-column: 1 / -1;
  justify-self: stretch;
  margin-top: 18px;
  width: 100%;
  color: var(--oat);
}

.service-toggle {
  display: grid;
  width: 42px;
  height: 34px;
  margin: 8px auto 0;
  padding: 0;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--oat);
  cursor: pointer;
}

.service-toggle::before {
  content: "";
  width: 13px;
  height: 13px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.service-toggle[aria-expanded="true"]::before {
  transform: rotate(225deg);
}

.service-toggle:focus-visible {
  outline: 3px solid rgba(141, 115, 83, 0.28);
  outline-offset: 4px;
}

.ritual-card.featured a {
  color: #fff;
}

.marquee-band {
  width: 100%;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--ink);
  color: var(--oat);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 0;
  padding: 22px 0;
  will-change: transform;
  animation: marquee-scroll 72s linear infinite;
}

.marquee-track span {
  flex: 0 0 auto;
  font-family: var(--grotesque);
  font-size: clamp(1.15rem, 2.6vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% / 3));
  }
}

@media (prefers-reduced-motion: reduce) {
  body > header,
  body > main,
  body > footer,
  .hero-image,
  .hero-overlay,
  .hero-content {
    animation: none;
    filter: none;
    transform: none;
  }

  body::before {
    display: none;
  }

  .marquee-track {
    animation: none;
    transform: translateX(0);
  }

  .faq details,
  .faq details p,
  .faq summary::after {
    transition: none;
  }
}

.faq {
  background: var(--ink);
  color: var(--oat);
}

.memberships {
  background: var(--ink);
  color: var(--oat);
}

.memberships .section-kicker,
.membership-card h3 {
  color: var(--oat);
}

.membership-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 44px;
}

.membership-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(216, 206, 193, 0.22);
  border-radius: 8px;
  padding: 28px;
  background: transparent;
  color: rgba(216, 206, 193, 0.76);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.membership-card:hover {
  border-color: rgba(216, 206, 193, 0.55);
  background: rgba(216, 206, 193, 0.05);
  transform: translateY(-3px);
}

.membership-label,
.membership-note {
  font-family: var(--grotesque);
  font-weight: 800;
  letter-spacing: 0.12em;
}

.membership-label {
  color: var(--aged-brass);
  font-size: 1.08rem;
}

.membership-note {
  text-transform: uppercase;
}

.membership-card h3 {
  margin: auto 0 14px;
  font-size: 1.45rem;
}

.membership-card p {
  min-height: 5.05rem;
  margin-bottom: 28px;
  font-size: 1.25rem;
}

.membership-note {
  color: var(--oat);
  font-size: 1rem;
}

.faq .section-kicker,
.faq h2 {
  color: var(--oat);
}

.faq h2 {
  margin-bottom: 34px;
}

.faq details {
  border-bottom: 1px solid rgba(216, 206, 193, 0.22);
  overflow: hidden;
  padding: 20px 0;
  transition: height 360ms cubic-bezier(0.22, 1, 0.36, 1), border-color 180ms ease;
  will-change: height;
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--oat);
  cursor: pointer;
  font-size: 1.35rem;
  font-weight: 800;
  list-style: none;
}

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

.faq summary::after {
  content: "";
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-right: 3px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.faq details.is-closing summary::after {
  transform: rotate(45deg);
}

.faq details p {
  width: 100%;
  max-width: none;
  margin: 18px 0 0;
  color: rgba(216, 206, 193, 0.76);
  font-size: 1.25rem;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 260ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq details[open] p {
  opacity: 1;
  transform: translateY(0);
}

.faq details.is-closing p {
  opacity: 0;
  transform: translateY(-6px);
}

.faq details p a {
  color: var(--oat);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 34px clamp(20px, 6vw, 88px);
  border-top: 1px solid rgba(216, 206, 193, 0.22);
  background: var(--ink);
  color: rgba(216, 206, 193, 0.76);
}

.footer .brand {
  color: var(--ink);
}

.footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 18px;
  font-weight: 800;
  color: var(--oat);
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

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

  .menu-toggle {
    display: grid;
    justify-self: end;
  }

  .site-header.is-open {
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .site-header.is-open .nav {
    position: fixed;
    top: 72px;
    right: clamp(18px, 4vw, 56px);
    width: min(260px, calc(100vw - 32px));
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(216, 206, 193, 0.22);
    border-radius: 8px;
    background: var(--ink);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .nav a {
    color: var(--oat);
    padding: 16px;
  }

  .site-header.is-open .nav .nav-book-link {
    display: block;
    margin-top: 4px;
    border-top: 1px solid rgba(216, 206, 193, 0.22);
  }

  .hero {
    min-height: 88svh;
  }

  .hero-image {
    object-position: 64% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(19, 26, 22, 0.8), rgba(19, 26, 22, 0.34)),
      linear-gradient(0deg, rgba(19, 26, 22, 0.42), rgba(19, 26, 22, 0));
  }

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

  .about-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-photo-placeholder {
    position: relative;
    z-index: 1;
    order: 2;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    min-height: 0;
    opacity: 1;
  }

  .about .section-kicker {
    position: relative;
    z-index: 1;
  }

  .about-copy {
    display: contents;
  }

  .about-copy .about-lede {
    order: 1;
    font-size: clamp(1.45rem, 7.4vw, 2.35rem);
    margin-bottom: 0;
    white-space: nowrap;
  }

  .about-copy p:not(.about-lede) {
    order: 3;
  }

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

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

  .ritual-card {
    min-height: 280px;
    background:
      linear-gradient(rgba(8, 7, 7, 0.38), rgba(8, 7, 7, 0.38)),
      var(--ink-soft);
    border-color: rgba(216, 206, 193, 0.24);
  }

  .add-ons-card {
    background:
      linear-gradient(rgba(8, 7, 7, 0.38), rgba(8, 7, 7, 0.38)),
      var(--ink-soft);
    border-color: rgba(216, 206, 193, 0.24);
  }

  .ritual-card.is-open {
    min-height: 0;
    padding: 28px;
  }

  .ritual-card.is-open .service-details summary {
    min-height: 0;
    gap: 12px;
  }

  .ritual-card.is-open .service-more {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 8px;
  }

  .ritual-card .service-book {
    margin-top: 10px;
  }

  .add-ons-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 560px) {
  .hero {
    padding-top: 104px;
  }

  h1 {
    font-size: clamp(3.7rem, 20vw, 5.6rem);
  }

  .hero-logo-word {
    font-size: clamp(4.4rem, 22vw, 6rem);
  }

  .hero-logo-subtitle {
    font-size: clamp(1rem, 4.4vw, 1.18rem);
    letter-spacing: 0.42em;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .add-ons-list {
    grid-template-columns: 1fr;
  }

}
