/* ============================================================
   Tantrik SF — holistic tantra & wellness bodywork
   Editorial, full-bleed, scroll-revealed. Aubergine + saffron +
   terracotta, with sacred-geometry line motifs.
   Type: Cormorant Garamond (display) + Jost (body).
   ============================================================ */

:root {
  --ink:        #1c0f16;   /* deep aubergine-black */
  --ink-2:      #2a1521;   /* plum */
  --ink-soft:   #6a4c5b;
  --saffron:    #d99a3c;   /* primary accent — marigold/saffron gold */
  --saffron-deep:#c07d24;
  --gold:       #e7c07a;   /* light glow on dark */
  --terra:      #b45c3a;   /* terracotta */
  --garnet:     #7c2b39;   /* jewel depth */
  --cream:      #f6efe4;   /* warm rice paper */
  --paper:      #f1e7d7;
  --paper-2:    #e9dcc7;
  --line:       rgba(28,15,22,0.14);

  --display: "Cormorant Garamond", Georgia, serif;
  --sans:    "Jost", system-ui, -apple-system, sans-serif;

  --wrap: 1300px;
  --gutter: clamp(1.5rem, 5vw, 5rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--sans); color: var(--ink);
  background: var(--paper); line-height: 1.75; font-weight: 300;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
h1,h2,h3,h4 { font-family: var(--display); font-weight: 500; line-height: 1.04; letter-spacing: 0; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }

/* ---------- shared ---------- */
.kicker { font-family: var(--sans); font-size: 0.7rem; font-weight: 400; letter-spacing: 0.36em; text-transform: uppercase; color: var(--saffron-deep); display: inline-flex; align-items: center; gap: 0.9em; }
.kicker::before { content:""; width: 2.4rem; height: 1px; background: currentColor; opacity: 0.6; }
.kicker.on-dark { color: var(--gold); }
.kicker .dv { font-family: var(--sans); font-size: 1.05em; letter-spacing: 0.05em; }

.btn { --bg: var(--saffron); --fg:#2a1521; display: inline-flex; align-items: center; gap: 0.6em; padding: 1.05em 2.2em; background: var(--bg); color: var(--fg); font-family: var(--sans); font-size: 0.76rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; border-radius: 999px; border: 1px solid var(--bg); transition: transform .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease), color .4s var(--ease); cursor: pointer; white-space: nowrap; }
.btn:hover { transform: translateY(-2px); background: var(--saffron-deep); border-color: var(--saffron-deep); }
.btn--ghost { --bg: transparent; --fg: currentColor; }
.btn--ghost.on-dark { --fg:#fff; border-color: rgba(255,255,255,0.4); }
.btn--ghost.on-dark:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.7); }

/* ---------- logo ---------- */
.brand { display: inline-flex; align-items: center; gap: 0.65rem; color: var(--ink); }
.brand__mark { width: 2.3rem; height: 2.3rem; flex: none; }
.brand__mark svg { width: 100%; height: 100%; display: block; }
.brand__name { font-family: var(--display); font-size: 1.55rem; font-weight: 600; letter-spacing: 0.01em; line-height: 1; }
.brand__name small { font-family: var(--sans); font-weight: 400; font-size: 0.5em; letter-spacing: 0.4em; text-transform: uppercase; display: block; margin-top: 2px; opacity: 0.7; }

/* ============================================================
   MOTION
   ============================================================ */
.rise { opacity: 0; animation: riseIn 1.1s var(--ease) both; }
.rise[data-delay="1"] { animation-delay: .14s; }
.rise[data-delay="2"] { animation-delay: .28s; }
.rise[data-delay="3"] { animation-delay: .42s; }
@keyframes riseIn { from { opacity: 0; transform: translateY(44px); } to { opacity: 1; transform: none; } }

.fly { opacity: 0; will-change: transform, opacity; transition: opacity .95s var(--ease), transform 1.05s var(--ease); }
.fly-up    { transform: translateY(64px); }
.fly-left  { transform: translateX(-70px); }
.fly-right { transform: translateX(70px); }
.fly-scale { transform: scale(0.9); }
.fly.in { opacity: 1; transform: none; }
.fly[data-delay="1"] { transition-delay: .1s; }
.fly[data-delay="2"] { transition-delay: .22s; }
.fly[data-delay="3"] { transition-delay: .34s; }
.fly[data-delay="4"] { transition-delay: .46s; }

.kb { animation: kenburns 16s var(--ease) both; }
@keyframes kenburns { from { transform: scale(1.12); } to { transform: scale(1.0); } }

/* slow rotation for sacred-geometry motifs */
.spin-slow { animation: spin 90s linear infinite; transform-origin: 50% 50%; }
@keyframes spin { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: reduce) {
  .fly, .fly-up, .fly-left, .fly-right, .fly-scale, .rise { opacity: 1 !important; transform: none !important; animation: none !important; transition: none !important; }
  .kb, .spin-slow { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 60; padding: 1.35rem 0; transition: background .5s var(--ease), padding .5s var(--ease), box-shadow .5s var(--ease); }
.site-header .brand, .site-header .brand__name { color: #fff; }
.site-header .brand__mark svg .mk { stroke: #fff; }
.site-header.scrolled { background: rgba(28,15,22,0.86); backdrop-filter: blur(14px); padding: 0.65rem 0; box-shadow: 0 1px 0 rgba(255,255,255,0.08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.nav { display: flex; align-items: center; gap: 2rem; }
.nav a:not(.btn) { font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.88); font-weight: 400; position: relative; }
.nav a:not(.btn)::after { content:""; position:absolute; left:0; bottom:-6px; width:100%; height:1px; background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease); }
.nav a:not(.btn):hover::after { transform: scaleX(1); transform-origin: left; }
.nav .btn { color: #2a1521; }
.nav-toggle { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; color: #fff; overflow: hidden; isolation: isolate; }
.hero__bg { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 55%; }
.hero::after { content:""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(20,10,15,0.55) 0%, rgba(20,10,15,0.12) 32%, rgba(20,10,15,0.35) 60%, rgba(20,10,15,0.88) 100%); }
.hero__inner { width: 100%; padding-bottom: clamp(3rem, 8vh, 7rem); }
.hero__title { font-size: clamp(3.2rem, 9vw, 8.5rem); font-weight: 400; line-height: 0.98; letter-spacing: -0.005em; max-width: 15ch; text-shadow: 0 4px 40px rgba(0,0,0,0.35); }
.hero__title em { font-style: italic; color: var(--gold); }
.hero__sub { margin-top: 1.6rem; font-size: clamp(1.02rem, 1.5vw, 1.24rem); max-width: 44ch; color: rgba(255,255,255,0.9); font-weight: 300; }
.hero__actions { margin-top: 2.3rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.hero .kicker { color: var(--gold); }
.hero .kicker::before { background: var(--gold); }
.hero__scroll { position: absolute; right: var(--gutter); bottom: clamp(3rem,8vh,7rem); font-size: 0.64rem; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(255,255,255,0.7); writing-mode: vertical-rl; display: flex; align-items: center; gap: 1rem; }
.hero__scroll::after { content:""; width: 1px; height: 60px; background: linear-gradient(rgba(255,255,255,0.7), transparent); }

/* ============================================================
   PHILOSOPHY — dark, sacred-geometry motif
   ============================================================ */
.philosophy { position: relative; background: var(--ink); color: var(--cream); padding: clamp(6rem,16vh,11rem) 0; overflow: hidden; isolation: isolate; text-align: center; }
.philosophy .yantra { position: absolute; top: 50%; left: 50%; width: min(120vw, 900px); aspect-ratio: 1; transform: translate(-50%,-50%); z-index: 0; opacity: 0.12; pointer-events: none; }
.philosophy .yantra svg { width: 100%; height: 100%; }
.philosophy .wrap { position: relative; z-index: 1; }
.philosophy .kicker { justify-content: center; }
.philosophy h2 { font-size: clamp(2.4rem, 6vw, 5.2rem); margin: 1.5rem auto; max-width: 20ch; font-weight: 400; }
.philosophy h2 em { font-style: italic; color: var(--gold); }
.philosophy .lead { font-size: clamp(1.05rem,1.5vw,1.3rem); max-width: 60ch; margin: 0 auto; color: rgba(246,239,228,0.82); font-weight: 300; }
.pillars { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.7rem 2.4rem; margin-top: 3rem; }
.pillars span { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); display: inline-flex; align-items: center; gap: 0.9rem; }
.pillars span:not(:last-child)::after { content:"✦"; color: var(--terra); opacity: 0.7; margin-left: 2.4rem; font-size: 0.7em; }

/* ============================================================
   STATEMENT — full-bleed image + flying headline
   ============================================================ */
.statement { position: relative; min-height: 88svh; display: flex; align-items: center; color: #fff; overflow: hidden; isolation: isolate; }
.statement__bg { position: absolute; inset: 0; z-index: -2; }
.statement__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; }
.statement::after { content:""; position:absolute; inset:0; z-index:-1; background: linear-gradient(90deg, rgba(20,10,15,0.9) 0%, rgba(20,10,15,0.6) 42%, rgba(20,10,15,0.15) 78%, transparent 100%); }
.statement__inner { max-width: 40rem; padding-block: 5rem; }
.statement h2 { font-size: clamp(2.4rem, 6vw, 5rem); line-height: 1.02; margin: 1.4rem 0; font-weight: 400; }
.statement h2 em { font-style: italic; color: var(--gold); }
.statement p:not(.kicker) { font-size: clamp(1rem,1.35vw,1.2rem); color: rgba(255,255,255,0.86); max-width: 46ch; font-weight: 300; }
.statement .kicker { color: var(--gold); }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--paper); padding: clamp(4.5rem,11vh,8rem) 0; }
.section-head { text-align: center; max-width: 60ch; margin: 0 auto clamp(2.5rem,6vh,4rem); }
.section-head h2 { font-size: clamp(2.4rem,6vw,4.6rem); margin: 1.1rem 0 0.8rem; font-weight: 500; }
.section-head p { color: var(--ink-soft); font-size: 1.06rem; }
.section-head .kicker { justify-content: center; }

.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.svc { position: relative; background: var(--cream); border: 1px solid var(--line); border-radius: 4px; padding: 2.6rem 2rem 2.4rem; overflow: hidden; transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.svc:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -34px rgba(28,15,22,0.5); }
.svc__no { font-family: var(--display); font-style: italic; font-size: 1.5rem; color: var(--terra); }
.svc__glyph { position: absolute; top: 1.6rem; right: 1.6rem; width: 40px; height: 40px; opacity: 0.5; }
.svc__glyph svg { width: 100%; height: 100%; }
.svc h3 { font-size: 1.9rem; margin: 0.5rem 0 0.7rem; font-weight: 500; }
.svc p { color: var(--ink-soft); font-size: 0.98rem; }
.svc__rule { width: 2.4rem; height: 2px; background: var(--saffron); margin: 1.4rem 0 0; }

/* ============================================================
   RITUAL — what to expect
   ============================================================ */
.ritual { background: var(--ink-2); color: var(--cream); padding: clamp(5rem,13vh,9rem) 0; }
.ritual-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2.5rem,6vw,5rem); align-items: center; }
.ritual-copy h2 { font-size: clamp(2.2rem,5vw,4rem); margin: 1.2rem 0 1.2rem; font-weight: 400; }
.ritual-copy h2 em { font-style: italic; color: var(--gold); }
.ritual-copy p { color: rgba(246,239,228,0.8); font-weight: 300; }
.ritual-copy .kicker { color: var(--gold); }
.ritual-steps { display: grid; gap: 1.6rem; }
.ritual-step { display: grid; grid-template-columns: auto 1fr; gap: 1.3rem; align-items: start; padding-bottom: 1.6rem; border-bottom: 1px solid rgba(246,239,228,0.14); }
.ritual-step:last-child { border-bottom: 0; padding-bottom: 0; }
.ritual-step .n { font-family: var(--display); font-style: italic; font-size: 1.5rem; color: var(--gold); width: 2.6rem; height: 2.6rem; border: 1px solid rgba(231,192,122,0.45); border-radius: 50%; display: grid; place-content: center; flex: none; }
.ritual-step h4 { font-size: 1.4rem; font-weight: 500; margin-bottom: 0.2rem; }
.ritual-step p { font-size: 0.97rem; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { background: var(--paper); padding: clamp(4.5rem,11vh,8rem) 0; }
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; align-items: stretch; }
.price { background: var(--cream); border: 1px solid var(--line); border-radius: 6px; padding: 2.6rem 2rem; text-align: center; display: flex; flex-direction: column; transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.price--feature { background: var(--ink); color: var(--cream); border-color: var(--ink); transform: scale(1.03); }
.price:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -34px rgba(28,15,22,0.5); }
.price--feature:hover { transform: translateY(-6px) scale(1.03); }
.price__tag { font-size: 0.66rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--terra); min-height: 1.2em; }
.price--feature .price__tag { color: var(--gold); }
.price h3 { font-size: 1.7rem; margin: 0.7rem 0 0.3rem; font-weight: 500; }
.price__amt { font-family: var(--display); font-size: clamp(3rem,5vw,4.2rem); line-height: 1; margin: 0.8rem 0 0.1rem; color: var(--garnet); font-weight: 500; }
.price--feature .price__amt { color: var(--gold); }
.price__dur { font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); }
.price--feature .price__dur { color: rgba(246,239,228,0.7); }
.price__desc { color: var(--ink-soft); font-size: 0.95rem; margin: 1.3rem 0 1.8rem; flex: 1; }
.price--feature .price__desc { color: rgba(246,239,228,0.78); }
.price .btn { align-self: center; }
.price--feature .btn { background: var(--saffron); border-color: var(--saffron); color: #2a1521; }

/* ============================================================
   LOCATIONS
   ============================================================ */
.locations { position: relative; color: #fff; padding: clamp(5rem,13vh,9rem) 0; overflow: hidden; isolation: isolate; }
.locations__bg { position: absolute; inset: 0; z-index: -2; }
.locations__bg img { width: 100%; height: 100%; object-fit: cover; }
.locations::after { content:""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(20,10,15,0.82), rgba(20,10,15,0.9)); }
.locations .section-head h2, .locations .section-head p { color: #fff; }
.locations .section-head .kicker { color: var(--gold); }
.locations .section-head p { color: rgba(255,255,255,0.8); }
.loc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.loc { background: rgba(246,239,228,0.06); border: 1px solid rgba(246,239,228,0.16); border-radius: 6px; padding: 2.2rem 1.8rem; backdrop-filter: blur(4px); transition: background .4s var(--ease), border-color .4s var(--ease); }
.loc:hover { background: rgba(246,239,228,0.1); border-color: var(--gold); }
.loc h3 { font-size: 1.8rem; margin-bottom: 0.9rem; font-weight: 500; }
.loc .row { display: flex; gap: 0.8rem; align-items: flex-start; margin-bottom: 0.7rem; font-size: 0.95rem; color: rgba(255,255,255,0.82); font-weight: 300; }
.loc .row svg { flex: none; margin-top: 4px; color: var(--gold); }
.loc a.tel { color: var(--gold); border-bottom: 1px solid transparent; transition: border-color .3s var(--ease); }
.loc a.tel:hover { border-color: var(--gold); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--cream); padding: clamp(4.5rem,11vh,8rem) 0; }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 1.5rem 3rem 1.5rem 0; font-family: var(--display); font-size: clamp(1.2rem,2.2vw,1.55rem); color: var(--ink); position: relative; line-height: 1.2; }
.faq-q::after { content:"+"; position: absolute; right: 0.4rem; top: 50%; transform: translateY(-50%); font-family: var(--sans); font-weight: 300; font-size: 1.6rem; color: var(--saffron-deep); transition: transform .4s var(--ease); }
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.faq-a p { padding: 0 3rem 1.6rem 0; color: var(--ink-soft); font-size: 1rem; }

/* ============================================================
   CONTACT / CTA
   ============================================================ */
.cta { position: relative; background: var(--ink); color: var(--cream); padding: clamp(6rem,15vh,11rem) 0; text-align: center; overflow: hidden; isolation: isolate; }
.cta .yantra { position:absolute; bottom: -30%; left: 50%; transform: translateX(-50%); width: min(140vw, 1000px); aspect-ratio: 1; opacity: 0.1; z-index: 0; }
.cta .wrap { position: relative; z-index: 1; }
.cta .kicker { justify-content: center; color: var(--gold); }
.cta h2 { font-size: clamp(2.6rem,6.5vw,5.4rem); margin: 1.3rem auto 1.2rem; max-width: 18ch; font-weight: 400; }
.cta h2 em { font-style: italic; color: var(--gold); }
.cta > .wrap > p { color: rgba(246,239,228,0.8); max-width: 48ch; margin: 0 auto 2.4rem; font-weight: 300; }
.cta-lines { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.5rem; margin-top: 2.6rem; }
.cta-lines a { display: inline-flex; align-items: baseline; gap: 0.7rem; font-family: var(--display); font-size: 1.3rem; color: var(--cream); }
.cta-lines a span { font-family: var(--sans); font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.cta-lines a:hover { color: var(--gold); }
.cta-email { margin-top: 1.8rem; font-size: 0.9rem; letter-spacing: 0.04em; color: rgba(246,239,228,0.7); }
.cta-email a { color: var(--gold); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #140a10; color: rgba(246,239,228,0.7); padding: 3.5rem 0 2.2rem; }
.footer-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2rem; align-items: flex-start; padding-bottom: 2.2rem; border-bottom: 1px solid rgba(246,239,228,0.12); }
.footer-brand p { margin-top: 0.9rem; font-size: 0.9rem; max-width: 34ch; font-weight: 300; }
.footer-brand .brand__name, .site-footer .brand { color: var(--cream); }
.site-footer .brand__mark svg .mk { stroke: var(--gold); }
.footer-links { display: flex; gap: 3.5rem; flex-wrap: wrap; }
.footer-col h5 { font-family: var(--sans); font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(246,239,228,0.5); margin-bottom: 1rem; font-weight: 400; }
.footer-col a, .footer-col p { display: block; font-size: 0.9rem; margin-bottom: 0.5rem; color: rgba(246,239,228,0.78); font-weight: 300; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-top: 1.8rem; font-size: 0.76rem; color: rgba(246,239,228,0.45); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 940px) {
  .svc-grid, .price-grid, .loc-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .price--feature { transform: none; }
  .price--feature:hover { transform: translateY(-6px); }
  .ritual-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav { position: fixed; inset: 0 0 0 auto; width: min(82vw,330px); background: var(--ink-2); flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.7rem; padding: 3rem 2.4rem; transform: translateX(100%); transition: transform .5s var(--ease); }
  .nav.open { transform: none; box-shadow: -20px 0 60px rgba(0,0,0,0.4); }
  .nav a:not(.btn) { color: var(--cream); font-size: 1rem; }
  .nav-toggle { display: flex; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; z-index: 70; padding: 6px; }
  .nav-toggle span { width: 26px; height: 2px; background: #fff; transition: .4s var(--ease); }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero__scroll { display: none; }
}
