:root {
  --bg-1: #0B0910;
  --bg-2: #15101D;
  --bg-3: #1C1426;
  --gold: #E8B765;
  --gold-hi: #F8D89A;
  --gold-deep: #9C6B2E;
  --teal: #1F6F6B;
  --text: #F2E8D5;
  --muted: #B6A9C0;
  --serif: "Cormorant Garamond", Georgia, serif;
  --body: "Mukta", -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  color: var(--text);
  background:
    radial-gradient(1200px 700px at 75% 18%, rgba(31,111,107,0.12), transparent 60%),
    radial-gradient(900px 600px at 20% 80%, rgba(232,183,101,0.10), transparent 60%),
    linear-gradient(165deg, var(--bg-1), var(--bg-2) 55%, var(--bg-3));
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Grain + aura atmosphere */
.grain {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.aura {
  position: fixed; top: -10%; right: -5%; width: 50vw; height: 50vw; z-index: 0;
  background: radial-gradient(circle, rgba(232,183,101,0.16), transparent 65%);
  filter: blur(40px); pointer-events: none;
  animation: drift 14s ease-in-out infinite;
}
@keyframes drift { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-4%, 4%) scale(1.08); } }

/* Nav */
.nav {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px clamp(20px, 6vw, 80px);
}
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.om { color: var(--gold); font-size: 24px; }
.brand-name { font-family: var(--serif); font-size: 25px; font-weight: 600; color: var(--gold-hi); letter-spacing: .4px; }
.nav-links { display: flex; align-items: center; gap: clamp(14px, 2.5vw, 34px); }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 15px; transition: color .25s; }
.nav-links a:hover { color: var(--gold-hi); }
.nav-links .cta {
  color: #160f08; background: var(--gold); padding: 9px 18px; border-radius: 999px;
  font-weight: 600; transition: filter .2s, transform .15s;
}
.nav-links .cta:hover { filter: brightness(1.08); color: #160f08; }

/* Hero */
.hero {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.15fr 0.85fr; align-items: center;
  gap: clamp(20px, 5vw, 70px);
  max-width: 1240px; margin: 0 auto;
  padding: clamp(20px, 4vh, 60px) clamp(20px, 6vw, 80px) 40px;
  min-height: calc(86vh - 90px);
}
.eyebrow {
  text-transform: uppercase; letter-spacing: 3px; font-size: 12.5px; color: var(--teal);
  filter: brightness(1.5); margin-bottom: 18px;
  opacity: 0; animation: rise .8s ease .1s forwards;
}
h1 {
  font-family: var(--serif); font-weight: 500; line-height: 1.02;
  font-size: clamp(44px, 6.4vw, 86px); color: var(--gold-hi);
  letter-spacing: -.5px; margin-bottom: 22px;
  opacity: 0; animation: rise .9s ease .2s forwards;
}
h1 em { font-style: italic; color: var(--gold); }
.lede {
  max-width: 30em; font-weight: 300; font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.7; color: var(--text); opacity: 0.92; margin-bottom: 30px;
  opacity: 0; animation: rise 1s ease .35s forwards;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
  opacity: 0; animation: rise 1s ease .5s forwards; }
.btn-primary {
  background: linear-gradient(135deg, var(--gold-hi), var(--gold));
  color: #160f08; text-decoration: none; font-weight: 600; font-size: 16px;
  padding: 14px 28px; border-radius: 999px;
  box-shadow: 0 10px 30px rgba(232,183,101,0.25);
  transition: transform .18s, box-shadow .25s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(232,183,101,0.38); }
.btn-ghost {
  color: var(--gold-hi); text-decoration: none; font-size: 16px;
  padding: 14px 20px; border: 1px solid rgba(232,183,101,0.3); border-radius: 999px;
  transition: background .25s, border-color .25s;
}
.btn-ghost:hover { background: rgba(232,183,101,0.08); border-color: var(--gold); }
.reassure { margin-top: 22px; font-size: 13.5px; color: var(--muted);
  opacity: 0; animation: rise 1s ease .65s forwards; }

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

/* Hero art */
.hero-art { position: relative; display: grid; place-items: center; min-height: 420px;
  opacity: 0; animation: rise 1.2s ease .4s forwards; }
.flute-glow {
  position: absolute; width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,183,101,0.45), transparent 62%);
  filter: blur(10px); animation: breathe 6s ease-in-out infinite;
}
@keyframes breathe { 0%,100% { transform: scale(1); opacity: .55; } 50% { transform: scale(1.14); opacity: .8; } }
.flute { height: clamp(360px, 56vh, 480px); position: relative; z-index: 1;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,0.5)); }
.flute .hole { animation: twinkle 5s ease-in-out infinite; }
.flute .h2 { animation-delay: .7s; }
.flute .h3 { animation-delay: 1.4s; }
.flute .h4 { animation-delay: 2.1s; }
.flute .h5 { animation-delay: 2.8s; }
.flute .h6 { animation-delay: 3.5s; }
@keyframes twinkle {
  0%, 88%, 100% { fill: #120d18; }
  92% { fill: var(--gold-hi); filter: drop-shadow(0 0 6px var(--gold)); }
}

/* Features */
.features {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 1100px; margin: 0 auto; padding: 10px clamp(20px, 6vw, 80px) 50px;
}
.features article {
  background: rgba(255,255,255,0.025); border: 1px solid rgba(232,183,101,0.14);
  border-radius: 16px; padding: 24px 22px; backdrop-filter: blur(4px);
  transition: transform .25s, border-color .25s, background .25s;
}
.features article:hover { transform: translateY(-4px); border-color: rgba(232,183,101,0.4); background: rgba(232,183,101,0.05); }
.f-ico { color: var(--gold); font-size: 22px; }
.features h3 { font-family: var(--serif); font-size: 24px; font-weight: 600; color: var(--gold-hi); margin: 10px 0 8px; }
.features p { font-weight: 300; font-size: 14.5px; line-height: 1.6; color: var(--muted); }

/* Footer */
.footer {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px clamp(20px, 6vw, 80px); border-top: 1px solid rgba(232,183,101,0.12);
  color: var(--muted); font-size: 14px;
}
.footer a { color: var(--muted); text-decoration: none; transition: color .2s; }
.footer a:hover { color: var(--gold-hi); }

@media (max-width: 880px) {
  .hero { grid-template-columns: 1fr; text-align: center; min-height: 0; padding-top: 20px; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-actions { justify-content: center; }
  .hero-art { order: -1; min-height: 300px; }
  .flute { height: 300px; }
  .features { grid-template-columns: 1fr; }
  .nav-links a:not(.cta) { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .aura, .flute-glow, .flute .hole { animation: none; }
  .eyebrow, h1, .lede, .hero-actions, .reassure, .hero-art { animation: none; opacity: 1; }
}
