:root {
  --bone: #f3ede2;
  --bone-2: #ebe2d2;
  --ink: #161412;
  --ink-soft: #2a2622;
  --ash: #6b6359;
  --molten: #d2461b;
  --molten-deep: #a8350f;
  --gold: #c9a249;
  --line: rgba(22, 20, 18, 0.18);
  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-body: 'Cormorant Garamond', Georgia, serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;
  --pad-x: clamp(1.25rem, 4vw, 5rem);
  --section-pad: clamp(5rem, 12vw, 10rem);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bone);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 100;
  opacity: 0.25; 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.4 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

::selection { background: var(--molten); color: var(--bone); }

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem var(--pad-x);
  background: linear-gradient(to bottom, rgba(243, 237, 226, 0.95), rgba(243, 237, 226, 0));
  backdrop-filter: blur(6px);
}
.nav__mark { display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; }
.nav__symbol { font-size: 1.25rem; color: var(--molten); }
.nav__links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav__links a { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink); text-decoration: none; position: relative; transition: color 0.3s ease; }
.nav__links a::after { content: ''; position: absolute; left: 0; bottom: -4px; width: 0; height: 1px; background: var(--ink); transition: width 0.3s ease; }
.nav__links a:hover::after { width: 100%; }
.nav__cta { background: var(--ink); color: var(--bone) !important; padding: 0.6rem 1.2rem; border-radius: 999px; transition: background 0.3s ease; }
.nav__cta:hover { background: var(--molten); }
.nav__cta::after { display: none; }
@media (max-width: 700px) { .nav__links li:not(:last-child) { display: none; } }

.hero {
  min-height: 100vh; padding: 8rem var(--pad-x) 4rem;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; border-bottom: 1px solid var(--line);
}
.hero::before {
  content: '⊹'; position: absolute; top: 30%; right: 8%;
  font-size: 14rem; color: var(--molten); opacity: 0.08;
  font-family: var(--font-display); pointer-events: none;
  animation: slowSpin 60s linear infinite;
}
@keyframes slowSpin { to { transform: rotate(360deg); } }

.hero__meta { display: flex; align-items: center; gap: 1rem; margin-bottom: 3rem; font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ash); opacity: 0; animation: fadeUp 0.8s ease 0.2s forwards; }
.meta__line { flex: 0 0 60px; height: 1px; background: var(--line); }
.meta__line:last-child { flex: 1; }

.hero__title { font-family: var(--font-display); font-weight: 300; font-size: clamp(2.75rem, 9vw, 9rem); line-height: 0.95; letter-spacing: -0.03em; margin-bottom: 4rem; }
.hero__line { display: block; opacity: 0; transform: translateY(40px); animation: fadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards; }
.hero__line--1 { animation-delay: 0.4s; }
.hero__line--2 { animation-delay: 0.6s; padding-left: clamp(2rem, 8vw, 8rem); font-style: italic; font-weight: 900; }
.hero__line--2 em { font-style: italic; background: linear-gradient(110deg, var(--molten) 0%, var(--molten-deep) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; font-weight: 900; letter-spacing: -0.04em; }
.hero__line--3 { animation-delay: 0.8s; }

.hero__refrain { max-width: 50ch; font-family: var(--font-display); font-size: clamp(1.1rem, 1.6vw, 1.4rem); font-style: italic; line-height: 1.5; color: var(--ink-soft); border-left: 2px solid var(--molten); padding-left: 1.5rem; opacity: 0; animation: fadeUp 1s ease 1s forwards; }
.hero__refrain p span { display: block; }
.hero__refrain p span:not(:last-child) { margin-bottom: 0.25rem; }

.hero__scroll { position: absolute; bottom: 2.5rem; left: var(--pad-x); display: flex; align-items: center; gap: 0.75rem; font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--ash); opacity: 0; animation: fadeUp 1s ease 1.4s forwards; }
.scroll__arrow { display: inline-block; animation: bob 2s ease-in-out infinite; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

.philosophy__index, .dimensions__index, .membership__index, .offerings__index { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--ash); margin-bottom: 3rem; display: flex; align-items: center; gap: 1rem; }
.philosophy__index::before, .dimensions__index::before, .membership__index::before, .offerings__index::before { content: ''; width: 32px; height: 1px; background: var(--molten); }

.philosophy { padding: var(--section-pad) var(--pad-x); border-bottom: 1px solid var(--line); background: var(--bone-2); }
.philosophy__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 6rem); align-items: start; }
.philosophy__lead { font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 4rem); line-height: 1.05; font-weight: 300; letter-spacing: -0.02em; }
.philosophy__lead p { margin-bottom: 0.5rem; }
.philosophy__lead .strike s { text-decoration-color: var(--molten); text-decoration-thickness: 3px; color: var(--ash); }
.philosophy__body { font-size: 1.25rem; line-height: 1.6; max-width: 50ch; }
.philosophy__body p + p { margin-top: 1.25rem; }
.philosophy__body strong { font-family: var(--font-display); font-weight: 600; font-style: italic; }
@media (max-width: 800px) { .philosophy__grid { grid-template-columns: 1fr; } }

.dimensions { padding: var(--section-pad) var(--pad-x); background: var(--ink); color: var(--bone); }
.dimensions .dimensions__index { color: var(--bone); opacity: 0.6; }
.dimensions__title { font-family: var(--font-display); font-weight: 300; font-size: clamp(2.5rem, 7vw, 6rem); line-height: 0.95; letter-spacing: -0.03em; margin-bottom: 1.5rem; }
.dimensions__title br + * { font-style: italic; }
.dimensions__sub { font-family: var(--font-display); font-style: italic; font-size: 1.25rem; color: rgba(243, 237, 226, 0.7); margin-bottom: 5rem; max-width: 40ch; }

.dim-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; list-style: none; border-top: 1px solid rgba(243, 237, 226, 0.15); border-left: 1px solid rgba(243, 237, 226, 0.15); }
.dim { padding: 2.5rem 2rem; border-right: 1px solid rgba(243, 237, 226, 0.15); border-bottom: 1px solid rgba(243, 237, 226, 0.15); position: relative; transition: background 0.4s ease, color 0.4s ease; cursor: default; min-height: 240px; display: flex; flex-direction: column; }
.dim:hover { background: var(--molten); color: var(--bone); }
.dim:hover .dim__num, .dim:hover .dim__hindi, .dim:hover .dim__sep { color: var(--bone); }
.dim__num { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.2em; color: var(--gold); margin-bottom: 1.5rem; transition: color 0.4s ease; }
.dim__name { font-family: var(--font-display); font-size: clamp(1.5rem, 2.2vw, 2rem); font-weight: 400; line-height: 1.1; margin-bottom: 1rem; display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.5rem; }
.dim__hindi { font-style: italic; font-weight: 600; }
.dim__sep { color: var(--ash); font-weight: 300; transition: color 0.4s ease; }
.dim__eng { font-family: var(--font-mono); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.2em; opacity: 0.7; align-self: center; }
.dim__desc { font-family: var(--font-body); font-size: 1.05rem; line-height: 1.5; color: rgba(243, 237, 226, 0.75); margin-top: auto; font-style: italic; }
.dim:hover .dim__desc { color: var(--bone); }

.dim--accent { background: linear-gradient(135deg, var(--molten-deep) 0%, var(--molten) 100%); }
.dim--accent .dim__num { color: var(--bone); }
.dim--accent .dim__sep { color: rgba(243, 237, 226, 0.5); }
.dim--accent .dim__desc { color: rgba(243, 237, 226, 0.9); }
.dim--accent:hover { background: var(--molten); }

.dim--plus { background: var(--bone); color: var(--ink); grid-column: span 3; text-align: center; align-items: center; justify-content: center; padding: 4rem 2rem; }
.dim--plus .dim__num { color: var(--molten); font-size: 2rem; font-family: var(--font-display); font-weight: 300; }
.dim--plus .dim__hindi { color: var(--ink); }
.dim--plus .dim__name { font-size: clamp(2rem, 3vw, 3rem); justify-content: center; }
.dim--plus .dim__desc { color: var(--ash); margin-top: 0.5rem; }
.dim--plus:hover { background: var(--gold); color: var(--ink); }
.dim--plus:hover .dim__num { color: var(--ink); }
.dim--plus:hover .dim__desc { color: var(--ink-soft); }

@media (max-width: 900px) { .dim-grid { grid-template-columns: repeat(2, 1fr); } .dim--plus { grid-column: span 2; } }
@media (max-width: 600px) { .dim-grid { grid-template-columns: 1fr; } .dim--plus { grid-column: span 1; } .dim { min-height: auto; padding: 2rem 1.5rem; } }

.membership { padding: var(--section-pad) var(--pad-x); border-bottom: 1px solid var(--line); }
.membership__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.membership__card { padding: 3rem 2rem; background: var(--bone-2); border: 1px solid var(--line); position: relative; transition: transform 0.4s ease, box-shadow 0.4s ease; }
.membership__card:hover { transform: translateY(-6px); box-shadow: 12px 12px 0 var(--ink); }
.card__label { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--molten); margin-bottom: 2rem; }
.membership__card h3 { font-family: var(--font-display); font-weight: 300; font-size: clamp(2.25rem, 4vw, 3.25rem); line-height: 1; margin-bottom: 1.5rem; font-style: italic; }
.membership__card p { font-size: 1.1rem; line-height: 1.55; color: var(--ink-soft); }
.membership__card--earned { background: var(--ink); color: var(--bone); }
.membership__card--earned .card__label { color: var(--gold); }
.membership__card--earned p { color: rgba(243, 237, 226, 0.8); }
.membership__card--earned:hover { box-shadow: 12px 12px 0 var(--molten); }
.membership__card--elite { background: var(--molten); color: var(--bone); }
.membership__card--elite .card__label { color: var(--bone); opacity: 0.85; }
.membership__card--elite p { color: rgba(243, 237, 226, 0.92); }
.membership__card--elite:hover { box-shadow: 12px 12px 0 var(--ink); }
@media (max-width: 800px) { .membership__grid { grid-template-columns: 1fr; } }

.offerings { padding: var(--section-pad) var(--pad-x); border-bottom: 1px solid var(--line); background: var(--bone-2); }
.offerings__title { font-family: var(--font-display); font-weight: 300; font-size: clamp(2.5rem, 7vw, 6rem); line-height: 0.95; letter-spacing: -0.03em; margin-bottom: 4rem; }
.offerings__title em { font-style: italic; color: var(--molten); font-weight: 600; }
.offerings__list { list-style: none; border-top: 1px solid var(--line); }
.offerings__list li { display: grid; grid-template-columns: 80px 1fr 2fr; gap: 2rem; align-items: baseline; padding: 2rem 0; border-bottom: 1px solid var(--line); transition: padding-left 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), color 0.3s ease; cursor: default; }
.offerings__list li:hover { padding-left: 1.5rem; color: var(--molten); }
.off__num { font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.2em; color: var(--ash); }
.off__name { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 400; font-style: italic; }
.off__desc { font-size: 1.05rem; color: var(--ink-soft); }
.offerings__list li:hover .off__desc { color: var(--ink-soft); }
@media (max-width: 700px) { .offerings__list li { grid-template-columns: 1fr; gap: 0.5rem; } }

.cta { padding: var(--section-pad) var(--pad-x); text-align: center; background: var(--ink); color: var(--bone); position: relative; overflow: hidden; }
.cta::before { content: '⊹'; position: absolute; font-size: 24rem; color: var(--molten); opacity: 0.08; font-family: var(--font-display); top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; }
.cta__refrain { font-family: var(--font-display); font-size: clamp(1.75rem, 4vw, 3.25rem); font-style: italic; font-weight: 300; line-height: 1.2; max-width: 28ch; margin: 0 auto 4rem; position: relative; }
.cta__refrain p:last-child { background: linear-gradient(110deg, var(--molten) 0%, var(--gold) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.cta__button { display: inline-flex; align-items: center; gap: 1rem; background: var(--bone); color: var(--ink); padding: 1.25rem 2.5rem; border-radius: 999px; text-decoration: none; font-family: var(--font-mono); font-size: 0.85rem; letter-spacing: 0.2em; text-transform: uppercase; transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease; position: relative; z-index: 1; }
.cta__button:hover { background: var(--molten); color: var(--bone); transform: translateY(-3px); }
.cta__button-arrow { transition: transform 0.3s ease; }
.cta__button:hover .cta__button-arrow { transform: translateX(6px); }
.cta__sub { margin-top: 2rem; font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(243, 237, 226, 0.5); position: relative; }

.footer { padding: 3rem var(--pad-x) 2rem; background: var(--bone); border-top: 1px solid var(--line); }
.footer__row { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ash); margin-bottom: 2rem; }
.footer__refrain { font-family: var(--font-display); font-style: italic; font-size: clamp(1.5rem, 4vw, 2.5rem); font-weight: 300; letter-spacing: -0.01em; color: var(--ink); border-top: 1px solid var(--line); padding-top: 2rem; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal--stagger > * { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal--stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal--stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal--stagger.is-visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal--stagger.is-visible > *:nth-child(3) { transition-delay: 0.15s; }
.reveal--stagger.is-visible > *:nth-child(4) { transition-delay: 0.2s; }
.reveal--stagger.is-visible > *:nth-child(5) { transition-delay: 0.25s; }
.reveal--stagger.is-visible > *:nth-child(6) { transition-delay: 0.3s; }
.reveal--stagger.is-visible > *:nth-child(7) { transition-delay: 0.35s; }
.reveal--stagger.is-visible > *:nth-child(8) { transition-delay: 0.4s; }
.reveal--stagger.is-visible > *:nth-child(9) { transition-delay: 0.45s; }
.reveal--stagger.is-visible > *:nth-child(10) { transition-delay: 0.5s; }
.reveal--stagger.is-visible > *:nth-child(11) { transition-delay: 0.55s; }
.reveal--stagger.is-visible > *:nth-child(12) { transition-delay: 0.6s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}