:root{
  --bg:         #f5f1ea;
  --bg-deep:    #ebe4d8;
  --ink:        #2b2a28;
  --ink-soft:   #6b645b;
  --ink-faint:  #a8a096;
  --gold:       #b8935a;
  --gold-soft:  #d9c4a0;
  --night:      #1a2236;
  --glow:       #f2e6cf;
  --line:       rgba(43,42,40,0.08);
  --display:    'Cormorant Garamond', 'Times New Roman', serif;
  --body:       'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ---------- LOCAL FONTS (no Google CDN) ---------- */
@font-face{
  font-family:'Cormorant Garamond'; font-style:normal; font-weight:300; font-display:swap;
  src:url('fonts/cormorant-300.woff2') format('woff2');
}
@font-face{
  font-family:'Cormorant Garamond'; font-style:normal; font-weight:400; font-display:swap;
  src:url('fonts/cormorant-400.woff2') format('woff2');
}
@font-face{
  font-family:'Cormorant Garamond'; font-style:normal; font-weight:500; font-display:swap;
  src:url('fonts/cormorant-500.woff2') format('woff2');
}
@font-face{
  font-family:'Cormorant Garamond'; font-style:italic; font-weight:300; font-display:swap;
  src:url('fonts/cormorant-300-italic.woff2') format('woff2');
}
@font-face{
  font-family:'Cormorant Garamond'; font-style:italic; font-weight:400; font-display:swap;
  src:url('fonts/cormorant-400-italic.woff2') format('woff2');
}
@font-face{
  font-family:'Inter Tight'; font-style:normal; font-weight:300; font-display:swap;
  src:url('fonts/intertight-300.woff2') format('woff2');
}
@font-face{
  font-family:'Inter Tight'; font-style:normal; font-weight:400; font-display:swap;
  src:url('fonts/intertight-400.woff2') format('woff2');
}
@font-face{
  font-family:'Inter Tight'; font-style:normal; font-weight:500; font-display:swap;
  src:url('fonts/intertight-500.woff2') format('woff2');
}

*{ margin:0; padding:0; box-sizing:border-box; }
html{ scroll-behavior:smooth; }

body{
  font-family: var(--body);
  background: var(--bg);
  color: var(--ink);
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.08 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ---------- NAV ---------- */
nav{
  position: fixed;
  top: 0; left: 0; right: 0;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 50;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(245, 241, 234, 0.72);
  border-bottom: 1px solid var(--line);
}
.brand{
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--ink);
  text-decoration: none;
}
.brand-dot{ color: var(--gold); }
.nav-links{
  display:flex; gap: 36px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-links a{
  color: var(--ink-soft);
  text-decoration: none;
  transition: color .3s ease;
}
.nav-links a:hover{ color: var(--ink); }

@media (max-width: 720px){
  nav{ padding: 16px 24px; }
  .nav-links{ display:none; }
}

/* ---------- HERO ---------- */
.hero{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  background:
    radial-gradient(ellipse at 50% 35%, var(--glow) 0%, transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
}

.om-symbol{
  width: 180px;
  height: 180px;
  margin-bottom: 40px;
  position: relative;
  animation: breathe 7s ease-in-out infinite;
}
.om-symbol svg{
  width: 100%; height: 100%;
  filter: drop-shadow(0 0 40px rgba(184, 147, 90, 0.35));
}
.om-ring{
  position: absolute; inset: -20px;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  opacity: 0.4;
  animation: pulse 4s ease-in-out infinite;
}
.om-ring:nth-child(2){ animation-delay: 1.3s; inset: -40px; }
.om-ring:nth-child(3){ animation-delay: 2.6s; inset: -60px; }

@keyframes breathe{
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.04); }
}
@keyframes pulse{
  0%   { transform: scale(0.9); opacity: 0.5; }
  100% { transform: scale(1.4); opacity: 0; }
}

.eyebrow{
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 1.2s ease 0.2s forwards;
}

h1{
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(44px, 7vw, 92px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  max-width: 900px;
  margin: 0 auto 28px;
  opacity: 0;
  animation: fadeUp 1.2s ease 0.5s forwards;
}
h1 em{ font-style: italic; color: var(--gold); font-weight: 400; }

.lede{
  font-size: clamp(16px, 1.6vw, 19px);
  max-width: 580px;
  color: var(--ink-soft);
  margin: 0 auto 48px;
  opacity: 0;
  animation: fadeUp 1.2s ease 0.8s forwards;
}

.cta-row{
  display:flex; gap: 14px;
  opacity: 0;
  animation: fadeUp 1.2s ease 1.1s forwards;
}
.btn{
  font-family: var(--body);
  font-size: 14px;
  letter-spacing: 0.05em;
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .3s cubic-bezier(.2,.8,.2,1);
  font-weight: 400;
}
.btn-primary{ background: var(--ink); color: var(--bg); }
.btn-primary:hover{
  background: var(--night);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(26, 34, 54, 0.2);
}
.btn-ghost{
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink-faint);
}
.btn-ghost:hover{
  border-color: var(--ink);
  background: rgba(43,42,40,0.04);
}

@keyframes fadeUp{
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- SECTIONS ---------- */
section{ padding: 140px 24px; }
.container{ max-width: 1080px; margin: 0 auto; }
.container-narrow{ max-width: 720px; margin: 0 auto; }

.section-label{
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.section-label::before{
  content:"";
  width: 30px; height: 1px;
  background: var(--gold);
}

h2{
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}
h2 em{ font-style: italic; color: var(--gold); font-weight: 400; }

p.prose{
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

/* ---------- ESSENCE ---------- */
.essence{ background: var(--bg); position: relative; }
.essence-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.essence-visual{
  aspect-ratio: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mandala{
  width: 100%; height: 100%;
  animation: rotate 60s linear infinite;
  opacity: 0.85;
}
@keyframes rotate{
  from { transform: rotate(0); }
  to   { transform: rotate(360deg); }
}
@media (max-width: 820px){
  .essence-grid{ grid-template-columns: 1fr; gap: 48px; }
  .essence-visual{ max-width: 320px; margin: 0 auto; }
}

/* ---------- BENEFITS ---------- */
.benefits{
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg) 100%);
  text-align: center;
}
.benefits .container-narrow{ margin-bottom: 80px; }
.benefit-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2px;
  max-width: 1080px;
  margin: 0 auto;
  background: var(--line);
  border: 1px solid var(--line);
}
.benefit{
  background: var(--bg);
  padding: 48px 32px;
  text-align: left;
  transition: background .4s ease;
}
.benefit:hover{ background: var(--bg-deep); }
.benefit-icon{
  width: 32px; height: 32px;
  margin-bottom: 24px;
  color: var(--gold);
}
.benefit h3{
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.3;
}
.benefit p{
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ---------- VIDEO ---------- */
.video-section{
  background: var(--night);
  color: var(--bg);
  text-align: center;
  padding: 140px 24px;
  position: relative;
  overflow: hidden;
}
.video-section::before{
  content:"";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(217, 196, 160, 0.15) 0%, transparent 60%);
  pointer-events: none;
}
.video-section .section-label{ color: var(--gold-soft); }
.video-section .section-label::before{ background: var(--gold-soft); }
.video-section h2{ color: var(--bg); margin-bottom: 24px; }
.video-section p.prose{ color: rgba(245, 241, 234, 0.7); margin-bottom: 56px; }
.video-wrap{
  max-width: 960px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.4),
    0 0 0 1px rgba(217, 196, 160, 0.15);
  position: relative;
  z-index: 1;
  background: #0e1525;
}
.video-wrap iframe,
.video-wrap .video-placeholder{
  width: 100%; height: 100%;
  border: 0;
  display: block;
}
.video-placeholder{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(217, 196, 160, 0.15) 0%, transparent 60%),
    #0e1525;
  cursor: default;
}
.video-placeholder .pre-om{
  font-family: var(--display);
  font-size: 64px;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0.8;
}
.video-placeholder h4{
  font-family: var(--display);
  font-weight: 400;
  font-size: 22px;
  color: var(--bg);
  margin-bottom: 14px;
  line-height: 1.3;
}
.video-placeholder p{
  font-size: 14px;
  color: rgba(245, 241, 234, 0.65);
  max-width: 440px;
  margin-bottom: 28px;
  line-height: 1.6;
}
.video-placeholder a{ color: var(--gold-soft); text-decoration: underline; text-underline-offset: 3px; }
.video-placeholder .btn-consent{
  background: var(--gold);
  color: var(--night);
  padding: 12px 24px;
  border-radius: 999px;
  border: none;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all .3s ease;
}
.video-placeholder .btn-consent:hover{
  background: var(--gold-soft);
  transform: translateY(-1px);
}

/* ---------- INVITATION ---------- */
.invitation{ background: var(--bg); text-align: center; }
.invitation h2{ margin-bottom: 40px; }
.breath-dot{
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  margin: 0 auto 40px;
  animation: breathe-dot 4s ease-in-out infinite;
}
@keyframes breathe-dot{
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50%      { transform: scale(2.5); opacity: 1; }
}
.mantra-lines{
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.9;
  color: var(--ink-soft);
  font-weight: 300;
}
.mantra-lines span{ display: block; }

/* ---------- FOOTER ---------- */
footer{
  padding: 56px 24px 40px;
  border-top: 1px solid var(--line);
  text-align: center;
  background: var(--bg-deep);
}
footer .brand{ margin-bottom: 16px; display: inline-block; }
footer p{
  font-size: 13px;
  color: var(--ink-faint);
  letter-spacing: 0.04em;
}
footer .credit a{
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: color .3s ease;
}
footer .credit a:hover{ color: var(--gold); }
.legal-links{
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.legal-links a{
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  text-decoration: none;
  transition: color .3s ease;
}
.legal-links a:hover{ color: var(--ink-soft); }

/* ---------- SCROLL REVEAL ---------- */
.reveal{
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s cubic-bezier(.2,.8,.2,1);
}
.reveal.visible{
  opacity: 1;
  transform: translateY(0);
}

/* ---------- LEGAL PAGES ---------- */
.legal-page{
  padding: 160px 24px 100px;
  min-height: 100vh;
  background: var(--bg);
}
.legal-content{
  max-width: 720px;
  margin: 0 auto;
}
.legal-content .section-label{ margin-bottom: 20px; }
.legal-content h1{
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  margin: 0 0 48px;
  opacity: 1;
  animation: none;
  letter-spacing: -0.01em;
}
.legal-content h2{
  font-family: var(--display);
  font-weight: 400;
  font-size: 26px;
  margin: 48px 0 16px;
  color: var(--ink);
  letter-spacing: 0;
  line-height: 1.3;
}
.legal-content h3{
  font-family: var(--body);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 32px 0 12px;
  color: var(--gold);
}
.legal-content p,
.legal-content li{
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.legal-content ul{
  list-style: none;
  padding-left: 0;
}
.legal-content ul li{
  padding-left: 20px;
  position: relative;
}
.legal-content ul li::before{
  content: "·";
  color: var(--gold);
  position: absolute;
  left: 4px;
  font-size: 20px;
  line-height: 1;
  top: 2px;
}
.legal-content a{
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--gold-soft);
  transition: text-decoration-color .3s ease;
}
.legal-content a:hover{ text-decoration-color: var(--gold); }
.legal-content strong{ color: var(--ink); font-weight: 500; }
.legal-content .meta{
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.back-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color .3s ease;
}
.back-link:hover{ color: var(--gold); }

@media (max-width: 640px){
  section{ padding: 100px 20px; }
  .cta-row{ flex-direction: column; width: 100%; max-width: 280px; }
  .btn{ justify-content: center; }
  .legal-page{ padding: 120px 20px 80px; }
}
