:root {
  --bg: #070d10;
  --bg2: #0d1619;
  --ink: #e8f2f1;
  --muted: #8aa3a1;
  --accent: #7eb8b2;
  --accent-ink: #061012;
  --warm: #d4b896;
  --line: rgba(126, 184, 178, 0.22);
  --font: "DM Sans", "Segoe UI", sans-serif;
  --display: "Fraunces", Georgia, serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed; inset: 0; z-index: 100; pointer-events: none;
  opacity: .12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.wrap { width: min(1140px, calc(100% - 36px)); margin: 0 auto; }
.demo-banner {
  text-align: center; font-size: 12px; letter-spacing: .06em;
  padding: 8px 12px; background: #04080a; color: #6a8080;
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.top {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--bg) 80%, transparent);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.top-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; min-height: 72px;
}
.logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display); font-size: 20px; font-weight: 500;
}
.logo-mark { width: 20px; height: 20px; color: var(--accent); }
.nav { display: flex; gap: 22px; color: var(--muted); font-size: 14px; }
.nav a:hover { color: var(--ink); }
@media (max-width: 860px) { .nav { display: none; } }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 22px; border: 0; border-radius: 999px;
  background: var(--accent); color: var(--accent-ink);
  font: inherit; font-weight: 700; cursor: pointer;
  transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}
.btn:hover {
  transform: translateY(-2px); filter: brightness(1.05);
  box-shadow: 0 14px 36px rgba(126,184,178,.28);
}
.btn.ghost {
  background: transparent; color: var(--ink);
  border: 1px solid rgba(232,242,241,.24);
}
.btn-sm { padding: 10px 16px; font-size: 13px; }

.hero {
  position: relative;
  min-height: min(100vh, 900px);
  display: grid; align-items: center;
  padding: 100px 0 120px;
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: -10% 0 -10% 0;
  will-change: transform;
}
.hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transform: scale(1.1);
}
.hero-veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 35%, rgba(126,184,178,.18), transparent 45%),
    linear-gradient(90deg, rgba(7,13,16,.92) 0%, rgba(7,13,16,.55) 48%, rgba(7,13,16,.35) 100%),
    linear-gradient(0deg, rgba(7,13,16,.88) 0%, transparent 42%);
}
.hero-copy { position: relative; max-width: 38rem; }
.eyebrow {
  margin: 0 0 14px; color: var(--accent);
  text-transform: uppercase; letter-spacing: .22em; font-size: 11px; font-weight: 700;
}
.brand-line {
  margin: 0 0 8px;
  font-family: var(--display); font-weight: 400;
  font-size: clamp(48px, 9vw, 84px); line-height: .92;
  letter-spacing: -.02em;
}
h1 {
  margin: 0 0 18px;
  font-family: var(--display); font-weight: 400;
  font-size: clamp(26px, 4.2vw, 40px); line-height: 1.2;
}
.lead { margin: 0 0 28px; color: var(--muted); font-size: 1.08rem; max-width: 32em; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.trust {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 10px 18px;
  font-size: 13px; color: var(--muted);
}
.trust li { display: inline-flex; align-items: center; gap: 8px; }
.trust li i {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); display: inline-block;
}

.marquee {
  overflow: hidden;
  border-block: 1px solid rgba(255,255,255,.06);
  background: var(--bg2);
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 42s linear infinite;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  will-change: transform;
}
.marquee-group {
  display: flex;
  flex-shrink: 0;
  gap: 48px;
  padding-right: 48px;
  align-items: center;
}
.marquee-group span { white-space: nowrap; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

.section { padding: 92px 0; }
.section.band { background: var(--bg2); }
.section-head { margin-bottom: 34px; max-width: 34em; }
h2 {
  margin: 0 0 12px;
  font-family: var(--display); font-weight: 400;
  font-size: clamp(30px, 4vw, 46px); line-height: 1.12;
}
.muted { color: var(--muted); }

.rituals {
  display: grid; gap: 16px;
}
@media (min-width: 860px) { .rituals { grid-template-columns: repeat(3, 1fr); } }
.ritual {
  padding: 28px 24px;
  border: 1px solid rgba(255,255,255,.07);
  background: linear-gradient(165deg, rgba(126,184,178,.08), transparent 55%);
  transition: border-color .25s ease, transform .25s ease;
}
.ritual:hover { border-color: var(--line); transform: translateY(-3px); }
.ritual svg { width: 28px; height: 28px; color: var(--accent); margin-bottom: 16px; }
.ritual h3 { margin: 0 0 8px; font-size: 1.05rem; }
.ritual p { margin: 0; color: var(--muted); font-size: .95rem; }
.ritual .price {
  margin-top: 16px; color: var(--warm); font-size: 14px; font-weight: 600;
}

.scene {
  display: grid; gap: 28px; align-items: center;
}
@media (min-width: 900px) {
  .scene { grid-template-columns: 1fr 1fr; gap: 48px; }
}
.scene-media {
  position: relative; overflow: hidden; aspect-ratio: 4/3;
  border-radius: 4px;
}
.scene-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s ease;
}
.scene-media:hover img { transform: scale(1.05); }
.scene-frame {
  position: absolute; inset: 14px;
  border: 1px solid rgba(126,184,178,.35); pointer-events: none;
}

.hours {
  display: grid; gap: 10px; margin-top: 22px;
  font-size: 14px; color: var(--muted);
}
.hours div {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.06);
}
.hours strong { color: var(--ink); font-weight: 600; }

.cta-block {
  text-align: center;
  padding: 56px 28px;
  border: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(126,184,178,.16), transparent 55%),
    var(--bg2);
}
.cta-block h2 { margin-bottom: 10px; }
.cta-block p { margin: 0 auto 24px; max-width: 28em; color: var(--muted); }

.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 12px 18px;
  background: color-mix(in srgb, var(--bg) 90%, transparent);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,.08);
  transform: translateY(110%);
  transition: transform .35s ease;
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta p { margin: 0; font-size: 14px; color: var(--muted); }
.sticky-cta strong { color: var(--ink); }
@media (max-width: 560px) { .sticky-cta p { display: none; } }

.modal[hidden] { display: none !important; }
.modal {
  position: fixed; inset: 0; z-index: 80;
  display: grid; place-items: center; padding: 20px;
}
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.65); }
.modal-card {
  position: relative; width: min(440px, 100%);
  padding: 28px 24px;
  background: var(--bg2); border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
}
.modal-card h3 {
  margin: 0 0 8px; font-family: var(--display); font-size: 28px; font-weight: 400;
}
.modal-card p { margin: 0 0 18px; color: var(--muted); }
.field { display: grid; gap: 6px; margin-bottom: 12px; }
.field label { font-size: 13px; color: var(--muted); }
.field input, .field select {
  width: 100%; padding: 12px; border-radius: 6px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.28); color: var(--ink); font: inherit;
}
.modal-actions { display: flex; gap: 10px; margin-top: 8px; }

.reveal {
  opacity: 0; transform: translateY(30px) scale(.98);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.in { opacity: 1; transform: none; }
.reveal.delay-1 { transition-delay: .1s; }
.reveal.delay-2 { transition-delay: .18s; }

footer {
  padding: 28px 0 96px;
  text-align: center; color: #5d7271; font-size: 13px;
}


.rituals-section {
  position: relative;
  background:
    radial-gradient(900px 420px at 12% 0%, rgba(126,184,178,.1), transparent 55%),
    linear-gradient(180deg, #0a1215 0%, var(--bg) 55%, var(--bg) 100%);
  isolation: isolate;
}
.rituals-section::before {
  content: "";
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  opacity: .06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.rituals-section .wrap { position: relative; z-index: 1; }
