:root {
  --ink: #17211d;
  --muted: #68776f;
  --paper: #fbfaf5;
  --porcelain: #ffffff;
  --mist: #eef7f3;
  --teal: #009c9a;
  --teal-deep: #006f78;
  --teal-soft: #d9f4f1;
  --gold: #b88a3c;
  --gold-soft: #ead4a1;
  --charcoal: #15231f;
  --line: rgba(23, 33, 29, 0.1);
  --line-gold: rgba(184, 138, 60, 0.2);
  --shadow: 0 24px 70px rgba(21, 35, 31, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  position: relative;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(217, 240, 236, 0.62), transparent 34rem),
    linear-gradient(180deg, #fffdf7 0%, var(--paper) 48%, #f6fbf8 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  width: min(1140px, calc(100% - 36px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.82);
  box-shadow: 0 16px 48px rgba(21, 35, 31, 0.1);
  backdrop-filter: blur(22px);
}

.brand {
  font-family: "Fraunces", serif;
  font-size: 22px;
  text-decoration: none;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 22px;
}

.nav-links a,
.nav-cta {
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #15b8b2, var(--teal-deep));
  box-shadow: 0 12px 32px rgba(0, 156, 154, 0.2);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 132px 28px 72px;
  color: var(--ink);
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 14%, rgba(184, 138, 60, 0.15), transparent 30%),
    radial-gradient(circle at 84% 16%, rgba(8, 118, 109, 0.17), transparent 33%),
    radial-gradient(circle at 58% 86%, rgba(234, 212, 161, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(217, 240, 236, 0.74), rgba(255, 253, 247, 0.98)),
    var(--paper);
}

.hero-inner {
  position: relative;
  width: min(1140px, 100%);
  margin: 0 auto;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
  gap: 64px;
  align-items: center;
}

.hero-content {
  position: relative;
}

.hero-content::before {
  content: "◐";
  position: absolute;
  top: -48px;
  left: -8px;
  color: rgba(184, 138, 60, 0.32);
  font-size: 44px;
  line-height: 1;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1,
h2 {
  font-family: "Fraunces", serif;
  font-weight: 550;
}

h1 {
  max-width: 760px;
  font-size: clamp(54px, 6.4vw, 78px);
  line-height: 0.95;
  text-wrap: balance;
}

h2 {
  font-size: 48px;
  line-height: 1.04;
}

h3 {
  font-size: 21px;
  line-height: 1.2;
}

.hero-subtitle {
  max-width: 760px;
  margin: 18px 0 0;
  font-size: 24px;
  font-weight: 800;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.hero-copy {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

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

.practice-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
}

.practice-signals span {
  position: relative;
  padding: 0 0 7px;
  border: 0;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.01em;
  isolation: isolate;
}

.practice-signals span::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #15b8b2, var(--gold-soft), transparent);
  opacity: 0.85;
  transform: scaleX(0.32);
  transform-origin: left;
  animation: signalFlow 4.8s ease-in-out infinite;
}

.practice-signals span:nth-child(2)::before {
  animation-delay: 0.7s;
}

.practice-signals span:nth-child(3)::before {
  animation-delay: 1.4s;
}

@keyframes signalFlow {
  0%,
  100% {
    opacity: 0.42;
    transform: scaleX(0.32);
  }

  46%,
  62% {
    opacity: 1;
    transform: scaleX(1);
  }
}

.ritual-composition {
  position: relative;
  min-height: 560px;
}

.ritual-composition figure {
  margin: 0;
}

.ritual-composition img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.ritual-main {
  position: absolute;
  inset: 48px 0 0 72px;
  height: 430px;
}

.ritual-main::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  pointer-events: none;
}

.ritual-portrait {
  position: absolute;
  top: 0;
  left: 0;
  width: 190px;
  height: 230px;
}

.ritual-portrait img {
  object-position: center 28%;
}

.ritual-sound {
  position: absolute;
  right: -18px;
  bottom: 18px;
  width: 190px;
  height: 240px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), transparent 36%),
    linear-gradient(135deg, #15b8b2, var(--teal-deep));
  box-shadow: 0 20px 48px rgba(0, 156, 154, 0.24);
}

.button-light {
  color: var(--charcoal);
  background: rgba(255, 253, 247, 0.78);
  box-shadow: inset 0 0 0 1px rgba(184, 138, 60, 0.34);
}

.button-primary:hover,
.button-primary:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  box-shadow: 0 24px 58px rgba(0, 156, 154, 0.3);
}

.button-light:hover,
.button-light:focus-visible {
  box-shadow:
    inset 0 0 0 1px rgba(184, 138, 60, 0.56),
    0 16px 36px rgba(21, 35, 31, 0.08);
}

.intro-section {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0 84px;
  text-align: center;
}

.intro-kicker {
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.intro-section p {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: 42px;
  line-height: 1.12;
}

.event-section,
.services-section,
.booking-section,
.local-section,
.gallery-section,
.reviews-section {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0;
}

.section-grid,
.booking-section,
.local-section,
.reviews-heading {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: start;
}

.event-content {
  padding-top: 6px;
}

.event-meta {
  margin: 0 0 12px;
  color: var(--gold);
  font-weight: 800;
}

.event-content > p,
.local-section > p,
.reviews-heading > p {
  max-width: 580px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.event-content .button {
  margin-top: 24px;
}

.image-triptych {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}

.image-triptych img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.82);
}

.friends-night-section {
  width: min(1140px, calc(100% - 40px));
  margin: 18px auto 0;
  padding: 72px 0 18px;
}

.friends-night-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  gap: 42px;
  align-items: center;
  padding: 28px;
  border: 1px solid rgba(184, 138, 60, 0.28);
  border-radius: 12px;
  background:
    radial-gradient(circle at 12% 18%, rgba(234, 212, 161, 0.24), transparent 34%),
    radial-gradient(circle at 88% 8%, rgba(21, 184, 178, 0.18), transparent 32%),
    linear-gradient(135deg, rgba(255, 253, 247, 0.96), rgba(217, 244, 241, 0.72));
  box-shadow: 0 30px 84px rgba(21, 35, 31, 0.1);
}

.friends-night-copy {
  padding: 18px 0 18px 16px;
}

.new-badge {
  display: inline-flex;
  align-items: center;
  margin: 0 0 16px;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--charcoal);
  background: var(--gold-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 14px 34px rgba(184, 138, 60, 0.2);
}

.friends-night-copy > p:not(.eyebrow):not(.new-badge) {
  max-width: 640px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.friends-night-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 26px 0;
}

.friends-night-points span {
  position: relative;
  padding: 0 0 0 16px;
  border: 0;
  color: var(--teal-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.friends-night-points span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(184, 138, 60, 0.12);
}

.offer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.offer-contact span {
  color: var(--teal-deep);
  font-size: 14px;
  font-weight: 800;
}

.friends-night-visual {
  margin: 0;
}

.friends-night-visual img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 10px;
  box-shadow: 0 22px 58px rgba(21, 35, 31, 0.14);
}

.sound-journey-section {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
  padding: 54px 0 18px;
}

.sound-journey-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.76fr) minmax(0, 1fr);
  gap: 46px;
  align-items: center;
  padding: 28px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 18% 20%, rgba(21, 184, 178, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255, 253, 247, 0.9), rgba(255, 255, 255, 0.72));
  box-shadow: inset 0 0 0 1px rgba(0, 156, 154, 0.12);
}

.sound-journey-visual {
  margin: 0;
}

.sound-journey-visual img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 22px 58px rgba(21, 35, 31, 0.12);
}

.sound-journey-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.sound-journey-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 22px;
  margin: 26px 0;
}

.sound-journey-points span {
  position: relative;
  padding-left: 24px;
  color: var(--teal-deep);
  font-size: 14px;
  font-weight: 800;
}

.sound-journey-points span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 10px;
  height: 10px;
  border: 1px solid rgba(0, 156, 154, 0.35);
  border-radius: 999px;
  background: rgba(217, 244, 241, 0.8);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 38px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.services-grid article,
.steps article,
.review-grid article {
  padding: 26px;
  border: 1px solid rgba(23, 33, 29, 0.08);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 253, 247, 0.72));
  box-shadow: 0 18px 50px rgba(21, 35, 31, 0.05);
}

.services-grid span,
.steps span {
  color: var(--teal);
  font-weight: 800;
}

.services-grid p,
.steps p {
  margin: 12px 0 0;
  color: var(--muted);
}

.booking-section {
  align-items: center;
}

.steps {
  display: grid;
  gap: 12px;
}

.local-section {
  width: 100%;
  max-width: none;
  padding: 92px max(20px, calc((100vw - 1140px) / 2));
  color: #fff;
  background:
    radial-gradient(circle at 18% 20%, rgba(234, 212, 161, 0.16), transparent 32%),
    radial-gradient(circle at 78% 16%, rgba(8, 118, 109, 0.28), transparent 36%),
    linear-gradient(135deg, #10231f, var(--charcoal));
}

.local-section .eyebrow {
  color: #b8eee3;
}

.local-section p {
  color: rgba(255, 255, 255, 0.78);
}

.gallery-section {
  width: 100%;
  max-width: none;
  padding: 92px max(20px, calc((100vw - 1140px) / 2));
  background:
    radial-gradient(circle at 10% 10%, rgba(234, 212, 161, 0.16), transparent 28%),
    linear-gradient(180deg, var(--mist), #f8fbf7);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-grid img {
  width: 100%;
  height: 285px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 44px rgba(21, 35, 31, 0.08);
}

.gallery-grid img:nth-child(3),
.gallery-grid img:nth-child(7) {
  grid-column: span 2;
}

.reviews-heading {
  align-items: end;
  margin-bottom: 28px;
}

.featured-review {
  margin-bottom: 14px;
  padding: 34px;
  border-radius: 8px;
  color: #fff;
  background:
    radial-gradient(circle at 12% 20%, rgba(234, 212, 161, 0.2), transparent 32%),
    linear-gradient(135deg, rgba(8, 118, 109, 0.94), rgba(21, 35, 31, 0.98)),
    var(--teal);
}

.stars {
  margin: 0 0 12px;
  color: var(--gold);
  font-weight: 800;
}

.featured-review blockquote {
  max-width: 850px;
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: 34px;
  line-height: 1.12;
}

.featured-review p:last-child,
.review-grid article > p:last-child {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.review-grid blockquote {
  margin: 0;
  color: var(--charcoal);
  font-weight: 700;
}

.review-grid article > p:last-child {
  color: var(--muted);
}

.all-reviews {
  margin-top: 16px;
  padding: 22px;
  border: 1px solid rgba(8, 118, 109, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.all-reviews summary {
  cursor: pointer;
  color: var(--teal);
  font-weight: 800;
}

.long-reviews {
  display: grid;
  gap: 16px;
  margin-top: 18px;
  color: var(--muted);
}

.long-reviews p {
  margin: 0;
}

.site-footer {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
  padding: 38px 0 48px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  gap: 20px;
}

.site-footer a {
  text-decoration: none;
  font-weight: 800;
}

.sticky-cta {
  display: none;
}

.legal-page {
  background: var(--paper);
}

.legal-wrap {
  width: min(900px, calc(100% - 40px));
  margin: 120px auto 48px;
  padding: 38px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.legal-wrap h1 {
  font-family: "Fraunces", serif;
  font-size: 48px;
  font-weight: 550;
}

.legal-note {
  margin: 16px 0 28px;
  padding: 16px 18px;
  border-left: 4px solid var(--teal);
  color: var(--muted);
  background: var(--mist);
}

.legal-wrap h2 {
  margin-top: 30px;
}

.legal-wrap p,
.legal-wrap li {
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

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

  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 40px;
  }

  .section-grid,
  .booking-section,
  .local-section,
  .reviews-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .services-grid,
  .review-grid {
    grid-template-columns: 1fr 1fr;
  }

  .image-triptych {
    grid-template-columns: 1fr;
  }

  .image-triptych img {
    height: 340px;
  }

  .friends-night-card {
    grid-template-columns: 1fr;
  }

  .sound-journey-card {
    grid-template-columns: 1fr;
  }

  .friends-night-copy {
    padding: 8px 0 0;
  }

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

  .gallery-grid img:nth-child(3),
  .gallery-grid img:nth-child(7) {
    grid-column: span 1;
  }
}

@media (max-width: 620px) {
  .site-header {
    top: 12px;
    width: calc(100% - 24px);
    padding: 10px 12px;
  }

  .brand {
    font-size: 19px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: 92vh;
    padding: 104px 18px 40px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .ritual-composition {
    order: -1;
    min-height: 310px;
  }

  .ritual-main {
    inset: 44px 0 0 52px;
    height: 230px;
  }

  .ritual-portrait {
    width: 116px;
    height: 144px;
  }

  .ritual-sound {
    right: 0;
    bottom: 0;
    width: 112px;
    height: 140px;
  }

  h1 {
    font-size: 44px;
    line-height: 1;
  }

  h2 {
    font-size: 34px;
  }

  .hero-subtitle {
    font-size: 20px;
    max-width: 330px;
  }

  .hero-copy {
    font-size: 16px;
    max-width: 330px;
  }

  .button {
    width: 100%;
  }

  .intro-section,
  .event-section,
  .services-section,
  .friends-night-section,
  .sound-journey-section,
  .booking-section,
  .reviews-section {
    width: calc(100% - 32px);
    padding: 68px 0;
  }

  .friends-night-section,
  .sound-journey-section {
    padding-top: 44px;
  }

  .friends-night-card,
  .sound-journey-card {
    padding: 20px;
    gap: 24px;
  }

  .friends-night-copy > p:not(.eyebrow):not(.new-badge),
  .sound-journey-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .friends-night-visual img,
  .sound-journey-visual img {
    height: 310px;
  }

  .sound-journey-points {
    grid-template-columns: 1fr;
  }

  .intro-section p {
    font-size: 30px;
  }

  .services-grid,
  .review-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img {
    height: 300px;
  }

  .featured-review {
    padding: 26px;
  }

  .featured-review blockquote {
    font-size: 28px;
  }

  .site-footer {
    width: calc(100% - 32px);
    padding-bottom: 92px;
    flex-direction: column;
  }

  .site-footer nav {
    flex-direction: column;
    gap: 8px;
  }

.sticky-cta {
    position: fixed;
    left: 50%;
    bottom: 14px;
    z-index: 30;
    display: flex;
    width: min(260px, calc(100% - 28px));
    transform: translateX(-50%);
    justify-content: center;
    padding: 13px 18px;
    border-radius: 999px;
    color: #fff;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.13), transparent 36%),
      linear-gradient(135deg, #15b8b2, var(--teal-deep));
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 18px 48px rgba(21, 35, 31, 0.2);
  }
}
