:root {
  --bg: #070707;
  --bg-soft: #0e0e0e;
  --surface: #121212;
  --surface-2: #181818;
  --text: #f5f2eb;
  --muted: #a7a39b;
  --gold: #c9942f;
  --gold-light: #f0c86b;
  --gold-deep: #6f4812;
  --line: rgba(214, 165, 68, 0.24);
  --white-line: rgba(255,255,255,0.12);
  --shadow: 0 30px 90px rgba(0,0,0,0.48);
  --radius: 24px;
  --container: 1180px;
  --serif: "Bodoni 72", Didot, "Times New Roman", Georgia, serif;
  --sans: "Avenir Next", Avenir, Montserrat, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 25%, rgba(151, 99, 18, 0.08), transparent 28%),
    radial-gradient(circle at 85% 65%, rgba(151, 99, 18, 0.06), transparent 30%),
    var(--bg);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
::selection { color: #080808; background: var(--gold-light); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { position: relative; padding: 128px 0; }
.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-light);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.section-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6.4rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.9;
}
.section-title em { color: var(--gold-light); font-weight: 400; }
.section-copy { color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.15rem); }
.section-head { display: flex; justify-content: space-between; gap: 60px; align-items: end; margin-bottom: 54px; }
.section-head__copy { width: min(100%, 420px); margin: 0 0 5px; }

.noise {
  position: fixed; inset: 0; z-index: 9998; opacity: 0.025; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}
.cursor-glow {
  position: fixed; width: 380px; height: 380px; border-radius: 50%; pointer-events: none; z-index: 0;
  background: radial-gradient(circle, rgba(207, 150, 42, 0.08), rgba(207,150,42,0) 68%);
  transform: translate(-50%, -50%); opacity: 0; transition: opacity .4s ease;
}
body:hover .cursor-glow { opacity: 1; }
.scroll-progress { position: fixed; z-index: 10000; top: 0; left: 0; right: 0; height: 2px; background: rgba(255,255,255,.04); }
.scroll-progress span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--gold), var(--gold-light)); box-shadow: 0 0 18px rgba(240,200,107,.6); }

.page-loader {
  position: fixed; inset: 0; z-index: 12000; display: grid; place-content: center; justify-items: center; gap: 18px;
  background: #050505; transition: opacity .65s ease, visibility .65s ease;
}
.page-loader.is-hidden { opacity: 0; visibility: hidden; }
.page-loader img { width: 112px; height: 112px; object-fit: cover; border-radius: 50%; box-shadow: 0 0 45px rgba(201,148,47,.15); animation: loaderPulse 1.8s ease-in-out infinite; }
.page-loader p { margin: 0; color: var(--muted); font-size: .72rem; letter-spacing: .24em; text-transform: uppercase; }
.loader-line { width: 190px; height: 1px; background: rgba(255,255,255,.1); overflow: hidden; }
.loader-line i { display: block; width: 45%; height: 100%; background: var(--gold-light); animation: loaderMove 1.25s ease-in-out infinite; }
@keyframes loaderPulse { 50% { transform: scale(1.035); filter: brightness(1.1); } }
@keyframes loaderMove { from { transform: translateX(-110%); } to { transform: translateX(330%); } }

.sound-gate {
  position: fixed;
  inset: 0;
  z-index: 11000;
  display: none;
  place-items: center;
  padding: clamp(14px, 3vw, 34px);
  overflow-y: auto;
  overscroll-behavior: contain;
  background:
    radial-gradient(circle at 18% 16%, rgba(201,148,47,.14), transparent 31%),
    radial-gradient(circle at 84% 84%, rgba(240,200,107,.08), transparent 28%),
    rgba(3,3,3,.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
.sound-gate[hidden] { display: none !important; }
.sound-gate:not([hidden]) { display: grid; animation: soundGateFade .38s ease both; }
.sound-gate__panel {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(250px, .82fr) minmax(320px, 1.18fr);
  width: min(100%, 860px);
  min-height: min(540px, calc(100svh - 68px));
  overflow: hidden;
  border: 1px solid rgba(240,200,107,.28);
  border-radius: clamp(22px, 3vw, 36px);
  background: rgba(9,9,9,.97);
  box-shadow: 0 38px 110px rgba(0,0,0,.62), inset 0 1px 0 rgba(255,255,255,.045);
  animation: soundGatePanelIn .55s cubic-bezier(.2,.75,.2,1) both;
}
.sound-gate__panel::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(125deg, rgba(255,255,255,.035), transparent 34%, rgba(201,148,47,.035));
}
.sound-gate__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100%;
  overflow: hidden;
  border-right: 1px solid rgba(240,200,107,.17);
  background:
    linear-gradient(145deg, rgba(201,148,47,.11), transparent 42%),
    radial-gradient(circle at center, #17130d 0%, #0d0c0a 58%, #080808 100%);
}
.sound-gate__visual::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(240,200,107,.12);
  border-radius: 999px 999px 30px 30px;
}
.sound-gate__logo-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: clamp(160px, 22vw, 220px);
  aspect-ratio: 1;
  border: 1px solid rgba(240,200,107,.38);
  border-radius: 50%;
  background: rgba(6,6,6,.72);
  box-shadow: 0 0 0 16px rgba(201,148,47,.035), 0 28px 65px rgba(0,0,0,.48);
}
.sound-gate__logo-wrap::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px dashed rgba(240,200,107,.24);
  border-radius: inherit;
  animation: soundGateSpin 22s linear infinite;
}
.sound-gate__logo-wrap img {
  width: calc(100% - 38px);
  height: calc(100% - 38px);
  object-fit: cover;
  border-radius: 50%;
  filter: saturate(.88) contrast(1.04);
}
.sound-gate__halo {
  position: absolute;
  border: 1px solid rgba(240,200,107,.14);
  border-radius: 50%;
}
.sound-gate__halo--one { width: 290px; height: 290px; }
.sound-gate__halo--two { width: 390px; height: 390px; opacity: .55; }
.sound-gate__line {
  position: absolute;
  right: 18px;
  bottom: 22px;
  width: 1px;
  height: 74px;
  background: linear-gradient(transparent, var(--gold-light));
}
.sound-gate__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(38px, 6vw, 76px);
  text-align: left;
}
.sound-gate__content .eyebrow { margin-bottom: 24px; }
.sound-gate__content h2 {
  margin: 0;
  max-width: 520px;
  font-family: var(--serif);
  font-size: clamp(3.1rem, 6vw, 5.7rem);
  line-height: .86;
  letter-spacing: -.055em;
  font-weight: 500;
  text-wrap: balance;
}
.sound-gate__content h2 em { color: var(--gold-light); font-weight: 400; }
.sound-gate__content > p:not(.eyebrow) {
  max-width: 410px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: clamp(.98rem, 1.55vw, 1.08rem);
  line-height: 1.75;
}
.sound-gate__actions {
  display: grid;
  justify-items: start;
  gap: 16px;
  margin-top: 36px;
}
.sound-gate__primary {
  min-width: min(100%, 260px);
  justify-content: center;
}
.sound-gate__primary .button__icon {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--gold-light);
  background: #090909;
  font-size: .62rem;
  line-height: 1;
  padding-left: 2px;
}
.text-button {
  border: 0;
  color: var(--muted);
  background: none;
  cursor: pointer;
  padding: 8px 12px;
  transition: color .25s ease, transform .25s ease;
}
.text-button:hover { color: var(--text); transform: translateX(3px); }
.text-button:focus-visible,
.sound-gate__primary:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 4px; }
@keyframes soundGateFade { from { opacity: 0; } }
@keyframes soundGatePanelIn { from { opacity: 0; transform: translateY(22px) scale(.985); } }
@keyframes soundGateSpin { to { transform: rotate(360deg); } }

.site-header {
  position: fixed; z-index: 1000; top: 0; left: 0; right: 0; display: flex; align-items: center; justify-content: space-between;
  padding: 18px max(20px, calc((100vw - var(--container))/2)); transition: background .35s ease, padding .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled { padding-top: 10px; padding-bottom: 10px; background: rgba(7,7,7,.78); border-color: rgba(255,255,255,.08); backdrop-filter: blur(18px); }
.brand { display: inline-flex; align-items: center; gap: 13px; position: relative; z-index: 2; }
.brand img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; border: 1px solid rgba(224,176,78,.45); }
.brand span { display: grid; line-height: 1; }
.brand b { font-family: var(--serif); font-size: 1.18rem; letter-spacing: .18em; font-weight: 500; }
.brand small { margin-top: 6px; color: var(--muted); font-size: .56rem; letter-spacing: .28em; }
.main-nav { display: flex; align-items: center; gap: 31px; font-size: .76rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.main-nav > a:not(.nav-cta) { position: relative; color: #d6d3cc; }
.main-nav > a:not(.nav-cta)::after { content: ""; position: absolute; height: 1px; left: 0; right: 100%; bottom: -7px; background: var(--gold-light); transition: right .3s ease; }
.main-nav > a:not(.nav-cta):hover::after { right: 0; }
.nav-cta { padding: 12px 18px; border: 1px solid var(--line); border-radius: 999px; background: rgba(201,148,47,.09); }
.nav-cta:hover { background: var(--gold); color: #080808; }
.menu-toggle { display: none; border: 0; background: none; width: 46px; height: 46px; padding: 12px; position: relative; z-index: 3; }
.menu-toggle span { display: block; height: 1px; background: var(--text); margin: 7px 0; transition: transform .3s ease; }
.menu-toggle.is-open span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-toggle.is-open span:last-child { transform: translateY(-4px) rotate(-45deg); }

.hero { min-height: 100svh; display: grid; align-items: center; position: relative; overflow: hidden; isolation: isolate; }
.hero__video { position: absolute; z-index: -4; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 28%; filter: saturate(.75) contrast(1.08) brightness(.54); transform: scale(1.025); }
.hero__veil { position: absolute; z-index: -3; inset: 0; background: linear-gradient(90deg, rgba(4,4,4,.97) 0%, rgba(4,4,4,.81) 43%, rgba(4,4,4,.18) 77%), linear-gradient(0deg, var(--bg) 0%, transparent 28%, rgba(0,0,0,.18) 100%); }
.hero__orb { position: absolute; z-index: -2; border-radius: 50%; filter: blur(70px); opacity: .2; }
.hero__orb--one { width: 420px; height: 420px; top: 12%; left: 5%; background: #8f5a0d; animation: floatOrb 10s ease-in-out infinite; }
.hero__orb--two { width: 260px; height: 260px; right: 16%; bottom: 10%; background: #e5a83d; animation: floatOrb 8s ease-in-out infinite reverse; }
@keyframes floatOrb { 50% { transform: translate(30px, -22px) scale(1.06); } }
.hero__content { padding-top: 120px; padding-bottom: 100px; }
.hero__content .eyebrow { margin-bottom: 25px; }
.hero__title { max-width: 980px; margin: 0; font-family: var(--serif); font-size: clamp(4.2rem, 10vw, 9.5rem); font-weight: 400; line-height: .78; letter-spacing: -.065em; text-shadow: 0 20px 50px rgba(0,0,0,.45); }
.hero__title span { display: inline-block; color: var(--gold-light); font-style: italic; font-weight: 400; }
.hero__lead { max-width: 640px; margin: 36px 0 0; color: #d4d0c7; font-size: clamp(1.02rem, 1.55vw, 1.28rem); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 54px; padding: 0 24px; border-radius: 999px; border: 1px solid transparent; font-size: .78rem; font-weight: 750; letter-spacing: .095em; text-transform: uppercase; transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease; }
.button--gold { color: #080808; background: linear-gradient(135deg, var(--gold-light), var(--gold)); box-shadow: 0 15px 40px rgba(201,148,47,.2); }
.button--gold:hover { box-shadow: 0 18px 55px rgba(201,148,47,.32); }
.button--glass { color: var(--text); border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.05); backdrop-filter: blur(10px); }
.button--glass:hover { border-color: var(--line); background: rgba(201,148,47,.1); }
.hero__meta { display: flex; flex-wrap: wrap; gap: 18px 44px; margin-top: 66px; }
.hero__meta div { display: grid; grid-template-columns: auto auto; align-items: baseline; gap: 10px; }
.hero__meta strong { font-family: var(--serif); color: var(--gold-light); font-size: 2rem; font-weight: 500; }
.hero__meta span { color: var(--muted); font-size: .67rem; letter-spacing: .13em; text-transform: uppercase; }
.scroll-cue { position: absolute; left: max(20px, calc((100vw - var(--container))/2)); bottom: 28px; display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.6); font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; }
.scroll-cue span { width: 34px; height: 1px; background: var(--gold-light); animation: cuePulse 2s ease-in-out infinite; transform-origin: left; }
@keyframes cuePulse { 50% { transform: scaleX(.35); opacity: .5; } }

.ticker { overflow: hidden; border-block: 1px solid var(--line); background: #0b0b0b; }
.ticker__track { width: max-content; display: flex; align-items: center; gap: 28px; padding: 17px 0; animation: ticker 24s linear infinite; }
.ticker span { color: #dfd8ca; font-family: var(--serif); font-size: 1.05rem; letter-spacing: .2em; }
.ticker i { color: var(--gold); font-style: normal; }
@keyframes ticker { to { transform: translateX(-50%); } }

.about { overflow: hidden; }
.about::before { content:""; position:absolute; width:560px; height:560px; top: 12%; left:-280px; border:1px solid rgba(201,148,47,.12); border-radius:50%; box-shadow: 0 0 0 80px rgba(201,148,47,.018), 0 0 0 160px rgba(201,148,47,.012); }
.about__grid { display: grid; grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr); gap: clamp(60px, 8vw, 120px); align-items: center; }
.about__visual { position: relative; perspective: 1000px; }
.image-frame { border: 1px solid var(--line); border-radius: 250px 250px 28px 28px; padding: 10px; background: linear-gradient(145deg, rgba(255,255,255,.05), rgba(255,255,255,.01)); box-shadow: var(--shadow); transform-style: preserve-3d; transition: transform .25s ease; }
.image-frame img { width: 100%; aspect-ratio: 1 / 1.05; border-radius: inherit; object-fit: cover; }
.about__badge { position: absolute; right: -28px; bottom: 13%; width: 145px; height: 145px; display: grid; place-content: center; text-align: center; border-radius: 50%; background: #0a0a0a; border: 1px solid var(--line); box-shadow: 0 15px 45px rgba(0,0,0,.45); animation: badgeFloat 5s ease-in-out infinite; }
.about__badge::before { content:""; position:absolute; inset:8px; border:1px dashed rgba(240,200,107,.4); border-radius:50%; }
.about__badge span, .about__badge small { color: var(--muted); font-size: .58rem; letter-spacing: .2em; text-transform: uppercase; }
.about__badge strong { font-family: var(--serif); color: var(--gold-light); font-size: 1.7rem; font-weight: 500; line-height: 1.05; }
@keyframes badgeFloat { 50% { transform: translateY(-10px) rotate(2deg); } }
.about__copy .section-copy { max-width: 650px; margin: 34px 0 42px; }
.values { display: grid; gap: 0; border-top: 1px solid var(--white-line); }
.values article { display: grid; grid-template-columns: 56px 1fr; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--white-line); }
.values article > span { color: var(--gold); font-family: var(--serif); font-size: 1.2rem; }
.values h3 { margin: 0; font-size: 1rem; letter-spacing: .04em; }
.values p { margin: 4px 0 0; color: var(--muted); }
.inline-link { display: inline-flex; align-items: center; gap: 13px; margin-top: 30px; color: var(--gold-light); font-size: .75rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.inline-link span { transition: transform .25s ease; }
.inline-link:hover span { transform: translateX(6px); }

.services { background: linear-gradient(180deg, rgba(255,255,255,.015), transparent 13%), #090909; }
.service-filters { display: inline-flex; gap: 8px; margin-bottom: 34px; padding: 5px; border: 1px solid var(--white-line); border-radius: 999px; background: #0c0c0c; }
.filter-button { border: 0; border-radius: 999px; padding: 10px 17px; color: var(--muted); background: transparent; cursor: pointer; font-size: .7rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; transition: .25s ease; }
.filter-button.is-active, .filter-button:hover { color: #080808; background: var(--gold-light); }
.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; perspective: 1200px; }
.service-card { min-width: 0; overflow: hidden; border: 1px solid var(--white-line); border-radius: var(--radius); background: linear-gradient(150deg, rgba(255,255,255,.045), rgba(255,255,255,.01)); box-shadow: 0 16px 50px rgba(0,0,0,.18); transition: opacity .35s ease, transform .35s ease, border-color .35s ease, box-shadow .35s ease; transform-style: preserve-3d; }
.service-card:hover { border-color: var(--line); box-shadow: 0 28px 70px rgba(0,0,0,.42); }
.service-card.is-hidden { opacity: 0; transform: scale(.94); pointer-events: none; display: none; }
.service-card--featured { grid-column: span 1; border-color: rgba(224,176,78,.3); background: radial-gradient(circle at top right, rgba(201,148,47,.14), transparent 35%), #111; }
.service-card__media { position: relative; width: 100%; border: 0; padding: 0; background: #111; cursor: zoom-in; overflow: hidden; }
.service-card__media::after { content:""; position:absolute; inset:0; background: linear-gradient(0deg, rgba(0,0,0,.62), transparent 42%); opacity: .45; transition: opacity .35s ease; }
.service-card__media img { width: 100%; aspect-ratio: .84 / 1; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .5s ease; }
.service-card:hover .service-card__media img { transform: scale(1.045); filter: brightness(.78); }
.service-card__media span { position: absolute; z-index: 2; left: 18px; bottom: 16px; color: white; opacity: 0; transform: translateY(10px); font-size: .65rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; transition: .3s ease; }
.service-card:hover .service-card__media span { opacity: 1; transform: translateY(0); }
.service-card__body { display: flex; align-items: end; justify-content: space-between; gap: 20px; padding: 20px 20px 22px; }
.service-card__body p { margin: 0 0 4px; color: var(--gold); font-size: .62rem; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.service-card__body h3 { margin: 0; font-family: var(--serif); font-size: 1.55rem; font-weight: 500; line-height: 1; }
.service-card__price { display: grid; justify-items: end; flex: 0 0 auto; }
.service-card__price strong { color: var(--gold-light); font-family: var(--serif); font-size: 1.5rem; font-weight: 500; }
.service-card__price small { color: var(--muted); font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; }

.promo { overflow: hidden; background: #050505; border-block: 1px solid rgba(201,148,47,.12); }
.promo__glow { position: absolute; width: 820px; height: 820px; right: -220px; top: 50%; transform: translateY(-50%); border-radius: 50%; background: radial-gradient(circle, rgba(201,148,47,.16), transparent 62%); filter: blur(15px); }
.promo__grid { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); gap: clamp(55px, 9vw, 130px); align-items: center; }
.promo__poster { position: relative; border: 1px solid var(--line); border-radius: 26px; padding: 8px; background: rgba(255,255,255,.025); box-shadow: var(--shadow); cursor: zoom-in; overflow: hidden; }
.promo__poster img { width: 100%; border-radius: 19px; transition: transform .7s ease; }
.promo__poster span { position: absolute; left: 50%; bottom: 28px; transform: translate(-50%, 10px); opacity: 0; min-width: 170px; padding: 10px 15px; border-radius: 999px; color: #080808; background: var(--gold-light); font-size: .62rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; transition: .3s ease; }
.promo__poster:hover img { transform: scale(1.025); filter: brightness(.62); }
.promo__poster:hover span { opacity: 1; transform: translate(-50%,0); }
.promo__price { display: flex; align-items: flex-start; margin: 20px 0 -10px; color: var(--gold-light); font-family: var(--serif); line-height: .8; }
.promo__price span { font-size: clamp(3rem, 6vw, 5rem); margin-top: .16em; }
.promo__price strong { font-size: clamp(8rem, 17vw, 14rem); font-weight: 500; letter-spacing: -.08em; }
.promo__subtitle { margin: 0 0 26px; font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.6rem); }
.promo__benefits { list-style: none; padding: 0; margin: 0 0 34px; display: grid; gap: 13px; color: #d3cec4; }
.promo__benefits span { display: inline-grid; place-items: center; width: 24px; height: 24px; margin-right: 10px; border-radius: 50%; color: #070707; background: var(--gold); font-size: .75rem; font-weight: 900; }
.promo__note { display: block; margin-top: 17px; color: #77736b; }

.ritual { overflow: hidden; }
.ritual__grid { display: grid; grid-template-columns: minmax(0,.83fr) minmax(0,1.17fr); gap: clamp(60px, 9vw, 130px); align-items: center; }
.ritual__copy .section-copy { margin: 32px 0 45px; max-width: 560px; }
.ritual__steps { display: grid; gap: 14px; }
.ritual__steps div { display: grid; grid-template-columns: 52px 1fr; gap: 14px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--white-line); }
.ritual__steps span { color: var(--gold-light); font-family: var(--serif); font-size: 1.2rem; }
.ritual__steps p { margin: 0; color: var(--muted); }
.ritual__steps strong { color: var(--text); }
.ritual__image { position: relative; padding: 0; border: 0; border-radius: 36px; overflow: hidden; background: #111; cursor: zoom-in; box-shadow: var(--shadow); }
.ritual__image::after { content:""; position:absolute; inset:0; border:1px solid rgba(240,200,107,.28); border-radius:inherit; pointer-events:none; }
.ritual__image img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; transition: transform .7s ease, filter .5s ease; }
.ritual__image:hover img { transform: scale(1.035); filter: brightness(.7); }
.play-mark { position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); width:76px; height:76px; display:grid; place-items:center; border:1px solid var(--gold-light); border-radius:50%; color:var(--gold-light); background:rgba(0,0,0,.55); backdrop-filter:blur(8px); font-size:1.5rem; transition:transform .3s ease; }
.ritual__image:hover .play-mark { transform: translate(-50%,-50%) scale(1.12) rotate(45deg); }

.gallery { background: #090909; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 250px; gap: 14px; }
.gallery-item { position: relative; border: 0; padding: 0; overflow: hidden; border-radius: 20px; background: #111; cursor: zoom-in; }
.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .75s cubic-bezier(.2,.7,.2,1), filter .45s ease; }
.gallery-item::after { content:""; position:absolute; inset:0; background:linear-gradient(0deg, rgba(0,0,0,.78), transparent 50%); opacity:.55; transition:opacity .35s ease; }
.gallery-item span { position:absolute; z-index:2; left:20px; bottom:17px; color:#fff; font-family:var(--serif); font-size:1.15rem; transform:translateY(6px); transition:.35s ease; }
.gallery-item:hover img { transform: scale(1.065); filter: saturate(.8) brightness(.76); }
.gallery-item:hover::after { opacity: .85; }
.gallery-item:hover span { transform: translateY(0); color: var(--gold-light); }

.location { overflow: hidden; }
.location::before { content:""; position:absolute; inset:0; background: radial-gradient(circle at 20% 20%, rgba(201,148,47,.08), transparent 35%); pointer-events:none; }
.location__grid { display: grid; grid-template-columns: 1.05fr .95fr; border: 1px solid var(--line); border-radius: 34px; overflow: hidden; background: #0b0b0b; box-shadow: var(--shadow); }
.location__card { display: grid; grid-template-columns: 112px 1fr; gap: 30px; align-items: center; padding: clamp(34px, 6vw, 70px); border-right: 1px solid var(--line); }
.location__card > img { width: 112px; height: 112px; border-radius: 50%; object-fit: cover; border: 1px solid var(--line); }
.location__card h2 { margin: 0; font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 500; line-height: 1; }
.location__card p:not(.eyebrow) { margin: 10px 0 0; color: var(--muted); }
.location__actions { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 12px; }
.location__statement { display: grid; align-content: center; padding: clamp(34px, 6vw, 70px); background: radial-gradient(circle at top right, rgba(201,148,47,.15), transparent 45%), #101010; }
.location__statement > p { margin: 0 0 14px; color: var(--gold-light); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; }
.location__statement h2 { margin: 0; font-family: var(--serif); font-size: clamp(3rem, 6vw, 5.6rem); font-weight: 500; line-height: .87; letter-spacing: -.05em; }
.location__statement h2 em { color: var(--gold-light); font-weight: 400; }

.site-footer { padding: 38px 0; border-top: 1px solid var(--white-line); background: #050505; }
.footer__inner { display: grid; grid-template-columns: 1.2fr 1fr auto; gap: 30px; align-items: center; }
.brand--footer img { width: 66px; height: 66px; }
.footer__inner > p { color: var(--muted); text-align: center; }
.footer__links { display: flex; gap: 20px; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }
.footer__links a:hover { color: var(--gold-light); }
.footer__inner > small { grid-column: 1/-1; color: #68655f; text-align: center; }

.music-control { position: fixed; z-index: 1001; right: 20px; bottom: 20px; display: flex; align-items: center; gap: 10px; min-height: 48px; padding: 0 16px; border: 1px solid var(--line); border-radius: 999px; color: var(--text); background: rgba(10,10,10,.82); box-shadow: 0 12px 36px rgba(0,0,0,.36); backdrop-filter: blur(16px); cursor: pointer; }
.music-control:hover { border-color: var(--gold-light); }
.music-control__label { font-size: .67rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.equalizer { height: 18px; display: flex; align-items: end; gap: 2px; }
.equalizer i { width: 2px; height: 35%; background: var(--gold-light); animation: equalize .8s ease-in-out infinite alternate; animation-play-state: paused; }
.equalizer i:nth-child(2) { animation-delay: -.25s; height: 70%; }
.equalizer i:nth-child(3) { animation-delay: -.5s; height: 100%; }
.equalizer i:nth-child(4) { animation-delay: -.1s; height: 55%; }
.music-control.is-playing .equalizer i { animation-play-state: running; }
@keyframes equalize { to { height: 100%; } }

.lightbox { width: 100%; height: 100%; max-width: none; max-height: none; padding: 0; border: 0; background: rgba(2,2,2,.88); backdrop-filter: blur(18px); color: var(--text); }
.lightbox::backdrop { background: rgba(2,2,2,.82); }
.lightbox[open] { display: grid; place-items: center; animation: lightboxIn .3s ease; }
.lightbox__content { display: grid; justify-items: center; gap: 16px; width: min(92vw, 1080px); max-height: 88vh; }
.lightbox__content img { max-width: 100%; max-height: 80vh; object-fit: contain; border-radius: 18px; box-shadow: var(--shadow); }
.lightbox__content p { margin: 0; color: #ddd7cb; text-align: center; font-size: .8rem; letter-spacing: .08em; }
.lightbox__close { position: fixed; top: 22px; right: 24px; width: 48px; height: 48px; border: 1px solid var(--white-line); border-radius: 50%; color: var(--text); background: rgba(0,0,0,.48); font-size: 2rem; line-height: 1; cursor: pointer; }
.lightbox__close:hover { color: #070707; background: var(--gold-light); }
@keyframes lightboxIn { from { opacity: 0; } }

.reveal { opacity: 0; transform: translateY(34px); transition: opacity .85s cubic-bezier(.2,.7,.2,1), transform .85s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .section { padding: 96px 0; }
  .menu-toggle { display: block; cursor: pointer; }
  .main-nav { position: fixed; inset: 0; display: grid; align-content: center; justify-items: center; gap: 26px; padding: 100px 30px 40px; background: rgba(5,5,5,.97); backdrop-filter: blur(20px); transform: translateY(-105%); transition: transform .45s cubic-bezier(.2,.7,.2,1); }
  .main-nav.is-open { transform: translateY(0); }
  .main-nav a { font-size: 1rem; }
  .nav-cta { padding: 15px 24px; }
  .hero__veil { background: linear-gradient(90deg, rgba(4,4,4,.96), rgba(4,4,4,.67)), linear-gradient(0deg, var(--bg), transparent 40%); }
  .hero__title { font-size: clamp(4rem, 13vw, 7.6rem); }
  .about__grid, .promo__grid, .ritual__grid { grid-template-columns: 1fr; }
  .about__visual { width: min(100%, 620px); }
  .about__badge { right: 12px; }
  .service-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .location__grid { grid-template-columns: 1fr; }
  .location__card { border-right: 0; border-bottom: 1px solid var(--line); }
  .footer__inner { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .footer__inner > p { margin: 0; }
  .footer__inner > small { grid-column: auto; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 78px 0; }
  .site-header { padding-inline: 14px; }
  .brand span { display: none; }
  .brand img { width: 48px; height: 48px; }
  .hero { min-height: 900px; }
  .hero__video { object-position: 62% center; }
  .hero__veil { background: linear-gradient(90deg, rgba(4,4,4,.92), rgba(4,4,4,.52)), linear-gradient(0deg, var(--bg), transparent 45%); }
  .hero__content { padding-top: 130px; padding-bottom: 120px; }
  .hero__title { font-size: clamp(3.7rem, 18.5vw, 6.2rem); line-height: .82; }
  .hero__lead { margin-top: 28px; }
  .hero__meta { gap: 16px 28px; margin-top: 44px; }
  .hero__meta div { grid-template-columns: 1fr; gap: 0; }
  .hero__meta strong { font-size: 1.7rem; }
  .section-head { display: grid; gap: 22px; margin-bottom: 36px; }
  .section-title { font-size: clamp(3.2rem, 15vw, 5rem); }
  .about__badge { width: 118px; height: 118px; right: -4px; }
  .about__badge strong { font-size: 1.35rem; }
  .service-filters { max-width: 100%; overflow-x: auto; }
  .filter-button { white-space: nowrap; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card__media img { aspect-ratio: .9 / 1; }
  .promo__price strong { font-size: 9.6rem; }
  .promo__price span { font-size: 3.2rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 190px; gap: 9px; }
  .gallery-item--wide { grid-column: span 2; }
  .gallery-item span { left: 12px; bottom: 10px; font-size: .9rem; }
  .location__card { grid-template-columns: 76px 1fr; gap: 18px; padding: 28px 22px; }
  .location__card > img { width: 76px; height: 76px; }
  .location__actions { display: grid; width: 100%; }
  .location__statement { padding: 36px 22px; }
  .music-control__label { display: none; }
  .music-control { width: 48px; justify-content: center; padding: 0; }
}


@media (max-width: 760px) {
  .sound-gate { align-items: center; padding: 12px; }
  .sound-gate__panel {
    grid-template-columns: 1fr;
    width: min(100%, 520px);
    min-height: 0;
    max-height: calc(100svh - 24px);
    overflow-y: auto;
    border-radius: 24px;
  }
  .sound-gate__visual {
    min-height: 168px;
    border-right: 0;
    border-bottom: 1px solid rgba(240,200,107,.17);
  }
  .sound-gate__visual::before { inset: 12px; border-radius: 18px; }
  .sound-gate__logo-wrap { width: 118px; }
  .sound-gate__logo-wrap img { width: calc(100% - 24px); height: calc(100% - 24px); }
  .sound-gate__logo-wrap::after { inset: 6px; }
  .sound-gate__halo--one { width: 172px; height: 172px; }
  .sound-gate__halo--two { width: 235px; height: 235px; }
  .sound-gate__line { display: none; }
  .sound-gate__content { padding: 30px 26px 28px; text-align: center; align-items: center; }
  .sound-gate__content .eyebrow { margin-bottom: 15px; }
  .sound-gate__content h2 { font-size: clamp(2.7rem, 13.5vw, 4.2rem); line-height: .88; }
  .sound-gate__content > p:not(.eyebrow) { margin-top: 18px; line-height: 1.6; }
  .sound-gate__actions { width: 100%; justify-items: stretch; margin-top: 26px; gap: 11px; }
  .sound-gate__primary { width: 100%; min-width: 0; }
  .text-button { justify-self: center; }
}

@media (max-width: 380px), (max-height: 650px) and (max-width: 760px) {
  .sound-gate__visual { min-height: 118px; }
  .sound-gate__logo-wrap { width: 82px; }
  .sound-gate__halo--one { width: 124px; height: 124px; }
  .sound-gate__halo--two { width: 170px; height: 170px; }
  .sound-gate__content { padding: 22px 18px 20px; }
  .sound-gate__content .eyebrow { margin-bottom: 10px; font-size: .64rem; }
  .sound-gate__content h2 { font-size: clamp(2.25rem, 12vw, 3.15rem); }
  .sound-gate__content > p:not(.eyebrow) { margin-top: 13px; font-size: .91rem; }
  .sound-gate__actions { margin-top: 18px; }
  .sound-gate__primary { min-height: 48px; padding: 13px 17px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .cursor-glow { display: none; }
}

/* Vertical identity rail — replaces the conventional horizontal marquee */
:root { --identity-rail: 66px; }

main,
.site-footer { margin-right: var(--identity-rail); }

.site-header,
.scroll-progress { right: var(--identity-rail); }

.music-control { right: calc(var(--identity-rail) + 20px); }
.lightbox__close { right: calc(var(--identity-rail) + 24px); }

.ticker {
  position: fixed;
  z-index: 950;
  top: 0;
  right: 0;
  bottom: 0;
  width: var(--identity-rail);
  display: grid;
  grid-template-rows: 66px minmax(0, 1fr) 54px;
  overflow: hidden;
  border: 0;
  border-left: 1px solid rgba(240, 200, 107, .28);
  background:
    linear-gradient(180deg, rgba(201,148,47,.15), transparent 18%, transparent 82%, rgba(201,148,47,.1)),
    #090909;
  box-shadow: -18px 0 50px rgba(0,0,0,.22);
}

.ticker::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255,255,255,.055);
  pointer-events: none;
}

.ticker__monogram,
.ticker__mark {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  color: var(--gold-light);
  background: rgba(201,148,47,.055);
}

.ticker__monogram {
  border-bottom: 1px solid rgba(240,200,107,.22);
  font-family: var(--serif);
  font-size: .72rem;
  letter-spacing: .22em;
  text-indent: .22em;
}

.ticker__mark {
  border-top: 1px solid rgba(240,200,107,.22);
  font-size: .72rem;
}

.ticker__viewport {
  min-height: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(transparent, #000 8%, #000 92%, transparent);
}

.ticker__track {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 0;
  animation: tickerVertical 28s linear infinite;
}

.ticker__set {
  flex: 0 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 26px 0;
}

.ticker span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: #e6dfd1;
  font-family: var(--serif);
  font-size: .82rem;
  line-height: 1;
  letter-spacing: .22em;
  white-space: nowrap;
}

.ticker i {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border: 1px solid rgba(240,200,107,.24);
  border-radius: 50%;
  color: var(--gold);
  font-size: .58rem;
  font-style: normal;
}

@keyframes tickerVertical {
  to { transform: translateY(-50%); }
}

.ticker:hover .ticker__track { animation-play-state: paused; }

@media (max-width: 680px) {
  :root { --identity-rail: 40px; }

  .site-header { padding-right: 10px; }
  .music-control { right: calc(var(--identity-rail) + 10px); }
  .lightbox__close { right: calc(var(--identity-rail) + 12px); }

  .ticker {
    grid-template-rows: 48px minmax(0, 1fr) 42px;
    box-shadow: -8px 0 24px rgba(0,0,0,.2);
  }

  .ticker::before { inset: 5px; }
  .ticker__monogram { font-size: .54rem; letter-spacing: .12em; text-indent: .12em; }
  .ticker__set { gap: 16px; padding: 20px 0; }
  .ticker span { font-size: .63rem; letter-spacing: .16em; }
  .ticker i { width: 18px; height: 18px; font-size: .45rem; }
}

@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
  .ticker__set:nth-child(2) { display: none; }
}
