
/* =========================================================
   THE OM SPHERE  —  Luxury Spiritual Collectible Experience
   ========================================================= */

:root{
  /* Palette — sindoor + ceremonial gold */
  --bg-void:        #050202;
  --bg-base:        #0a0404;
  --bg-soft:        #120607;
  --sindoor-deep:   #3a0d10;
  --sindoor:        #5b1316;
  --sindoor-mid:    #7a1a1d;
  --sindoor-bright: #a02828;
  --ember:          #c43a2c;

  --gold-deep:      #8b6f33;
  --gold:           #c9a661;
  --gold-bright:    #e6c987;
  --gold-pale:      #f0dfb1;
  --cream:          #f4ead5;
  --ivory:          #ebe1cb;
  --ivory-dim:      rgba(235,225,203,0.86);
  --ivory-faint:    rgba(235,225,203,0.68);
  --line:           rgba(201,166,97,0.18);
  --line-soft:      rgba(201,166,97,0.10);

  /* Typography */
  --f-display: "Cormorant Garamond", "Times New Roman", serif;
  --f-mark:    "Cinzel", "Cormorant Garamond", serif;
  --f-body:    "Outfit", -apple-system, BlinkMacSystemFont, sans-serif;
  --f-deva:    "Tiro Devanagari Sanskrit", "Cormorant Garamond", serif;

  /* Motion */
  --ease:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in: cubic-bezier(0.65, 0, 0.35, 1);

  /* Layout */
  --shell:  min(1340px, 92vw);
  --gut:    clamp(20px, 4vw, 56px);
  --section-y: clamp(96px, 14vh, 180px);
}

*,*::before,*::after{ box-sizing: border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; }
}

body{
  margin:0;
  background: var(--bg-base);
  color: var(--ivory);
  font-family: var(--f-body);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

/* Subtle film-grain overlay everywhere — analog warmth */
body::before{
  content:"";
  position:fixed; inset:0;
  pointer-events:none;
  z-index: 200;
  opacity: 0.06;
  mix-blend-mode: overlay;
  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.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.95  0 0 0 0 0.85  0 0 0 0 0.6  0 0 0 1 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font: inherit; color:inherit; cursor:pointer; background:none; border:0; }

/* ---------- Typography ---------- */
.eyebrow{
  font-family: var(--f-mark);
  font-weight: 500;
  font-size: clamp(10px, 0.78vw, 12px);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: 14px;
}
.eyebrow::before, .eyebrow.with-rule::after{
  content:""; width: 36px; height:1px; background: var(--gold); opacity: 0.55;
}
.eyebrow.no-rule::before{ display:none; }

h1,h2,h3,h4{
  font-family: var(--f-display);
  font-weight: 300;
  letter-spacing: -0.012em;
  line-height: 1.04;
  color: var(--cream);
  margin: 0;
}
.display{
  font-size: clamp(46px, 7.6vw, 124px);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.02em;
}
.display em{ font-style: italic; color: var(--gold-bright); font-weight: 300; }

.h2{
  font-size: clamp(36px, 4.8vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.015em;
}
.h3{
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.18;
  letter-spacing: -0.005em;
}

p{ margin: 0; }
.lede{
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 1.55;
  color: var(--ivory);
  letter-spacing: 0.005em;
}

.gold-text{ color: var(--gold-bright); }
.gold-grad{
  background: linear-gradient(180deg, var(--gold-pale) 0%, var(--gold-bright) 30%, var(--gold) 65%, var(--gold-deep) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- Layout ---------- */
.shell{ width: var(--shell); margin-inline: auto; }
section{ position: relative; }

/* ---------- Buttons ---------- */
.btn{
  --btn-bg: transparent;
  --btn-fg: var(--cream);
  --btn-line: var(--gold);
  position: relative;
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 34px;
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: 1px solid var(--btn-line);
  cursor: pointer;
  transition: color .5s var(--ease), background .5s var(--ease), letter-spacing .5s var(--ease);
  overflow: hidden;
  isolation: isolate;
}
.btn::before{
  content:""; position:absolute; inset:0;
  background: linear-gradient(105deg, var(--gold-deep), var(--gold) 45%, var(--gold-bright) 55%, var(--gold-deep));
  transform: translateX(-101%);
  transition: transform .7s var(--ease);
  z-index: -1;
}
.btn:hover{ color: var(--bg-void); letter-spacing: 0.32em; }
.btn:hover::before{ transform: translateX(0); }

/* Mobile + touch: full-width, tighter padding/spacing, no hover-driven width shift */
@media (max-width: 600px){
  .btn{
    padding: 16px 22px;
    font-size: 13px;
    letter-spacing: 0.18em;
    gap: 12px;
    text-align: center;
    justify-content: center;
    /* allow text to wrap as last resort, no overflow */
    white-space: normal;
    line-height: 1.3;
  }
  /* On hover, only soften the color shift — don't expand letter-spacing
     (which causes layout shift / overlap on tap-and-hold) */
  .btn:hover{ letter-spacing: 0.18em; }
  .btn:hover .arr{ width: 14px; }
}
@media (hover: none){
  /* Touch devices: kill the hover letter-spacing entirely */
  .btn:hover{ letter-spacing: inherit; }
}
.btn .arr{
  width: 14px; height: 1px; background: currentColor; position: relative;
  transition: width .4s var(--ease);
}
.btn .arr::after{
  content:""; position:absolute; right:-1px; top:-3px;
  width:7px; height:7px; border-right:1px solid currentColor; border-top:1px solid currentColor;
  transform: rotate(45deg);
}
.btn:hover .arr{ width: 22px; }
.btn.solid{
  --btn-bg: var(--gold);
  --btn-fg: var(--bg-void);
  --btn-line: var(--gold);
}
.btn.solid::before{ background: linear-gradient(105deg, var(--gold-bright), var(--gold-pale)); }
.btn.solid:hover{ color: var(--bg-void); }

/* ---------- Ornament (gold flourish divider) ---------- */
.ornament{
  display:flex; align-items:center; justify-content:center;
  gap: 14px; margin: 0 auto;
}
.ornament .l{ width: clamp(40px, 8vw, 110px); height:1px; background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent); }
.ornament .d{ width: 6px; height:6px; background: var(--gold); transform: rotate(45deg); }
.ornament .o{ width: 8px; height:8px; border:1px solid var(--gold); border-radius:50%; }

/* =========================================================
   NAV
   ========================================================= */
.nav{
  position: fixed; top: 0; left:0; right:0;
  z-index: 100;
  padding: 22px 0;
  transition: background .5s var(--ease), backdrop-filter .5s var(--ease), border-color .5s var(--ease), padding .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled{
  background: rgba(8,3,3,0.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line-soft);
  padding: 14px 0;
}
.nav-inner{
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: var(--shell); margin-inline:auto;
}
.nav-logo{
  display: inline-flex; align-items: center;
  text-decoration: none;
}
.nav-logo-img{
  height: 36px;
  width: auto;
  display: block;
  transition: opacity .4s var(--ease), filter .4s var(--ease);
  /* Keep the gold tone but with refined contrast for navbar */
  filter: drop-shadow(0 1px 0 rgba(0,0,0,0.18));
}
.nav-logo:hover .nav-logo-img{ opacity: 0.85; }
.nav.scrolled .nav-logo-img{ height: 30px; }
.foot-logo-img{
  height: 44px;
  margin-bottom: 22px;
}
@media (max-width: 600px){
  .nav-logo-img{ height: 30px; }
  .nav.scrolled .nav-logo-img{ height: 26px; }
}
.nav-links{
  justify-self: center;
  display: flex; gap: clamp(20px, 2.4vw, 38px);
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ivory-dim);
}
.nav-links a{ position: relative; padding: 6px 0; transition: color .35s; }
.nav-links a::after{
  content:""; position:absolute; left:0; right:100%; bottom:0; height:1px; background: var(--gold);
  transition: right .4s var(--ease);
}
.nav-links a:hover{ color: var(--cream); }
.nav-links a:hover::after{ right:0; }
.nav-cta{ justify-self: end; }
.nav-cta .btn{ padding: 12px 22px; font-size: 11px; }

@media (max-width: 880px){
  .nav-links{ display:none; }
  .nav-inner{ grid-template-columns: auto 1fr; }
  .nav-cta{ display:none; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero{
  min-height: 100vh;
  min-height: 100svh;
  position: relative;
  display: grid; place-items: center;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  padding-top: 120px;
}
.hero-bg{
  position: absolute; inset: 0;
  z-index: -3;
}
.hero-bg::before{
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(160,40,40,0.45), transparent 60%),
    radial-gradient(ellipse at 50% 110%, rgba(0,0,0,0.85), transparent 60%),
    linear-gradient(180deg, var(--bg-void) 0%, var(--sindoor-deep) 35%, var(--sindoor) 60%, var(--bg-void) 100%);
}
.hero-bg video{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit: cover;
  opacity: 0.42;
  mix-blend-mode: screen;
  filter: contrast(1.05) saturate(1.05);
}
.hero-bg .vignette{
  position:absolute; inset:0;
  background:
    radial-gradient(ellipse at center, transparent 30%, rgba(8,3,3,0.55) 70%, var(--bg-void) 100%);
  pointer-events: none;
}
/* ornamental gold corner frame */
.hero-frame{
  position: absolute;
  inset: 96px clamp(20px, 4vw, 56px) clamp(40px, 6vw, 72px);
  border: 1px solid rgba(201,166,97,0.22);
  pointer-events: none;
  z-index: -1;
}
.hero-frame::before, .hero-frame::after,
.corner{ position:absolute; width: 24px; height: 24px; }
.hero-frame::before{ content:""; top:-1px; left:-1px; border-top:1px solid var(--gold); border-left:1px solid var(--gold); }
.hero-frame::after{ content:""; top:-1px; right:-1px; border-top:1px solid var(--gold); border-right:1px solid var(--gold); }
.corner.bl{ bottom:-1px; left:-1px; border-bottom:1px solid var(--gold); border-left:1px solid var(--gold); }
.corner.br{ bottom:-1px; right:-1px; border-bottom:1px solid var(--gold); border-right:1px solid var(--gold); }

.hero-inner{
  position: relative;
  width: var(--shell);
  padding: 40px 0 80px;
}
.hero-mark{
  display: inline-flex;
  align-items: center; justify-content: center;
  margin-bottom: 28px;
  opacity: 0; transform: translateY(12px);
  animation: rise .9s .3s var(--ease) forwards;
}
.hero-mark-img{
  width: clamp(72px, 8vw, 110px);
  height: auto;
  display: block;
  filter:
    drop-shadow(0 0 18px rgba(249, 189, 124, 0.35))
    drop-shadow(0 0 4px rgba(249, 189, 124, 0.2));
}
.hero h1{
  font-size: clamp(48px, 8.8vw, 138px);
  font-weight: 300;
  line-height: 0.96;
  letter-spacing: -0.022em;
  margin-bottom: 36px;
}
.hero h1 .line{ display:block; opacity:0; transform: translateY(28px); animation: rise 1.1s var(--ease) forwards; }
.hero h1 .line.l1{ animation-delay: .55s; }
.hero h1 .line.l2{ animation-delay: .75s; font-style: italic; color: var(--gold-bright); }
.hero h1 .line.l3{ animation-delay: .95s; }

.hero-sub{
  max-width: 620px; margin: 0 auto 44px;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(17px, 1.4vw, 22px);
  color: var(--ivory);
  letter-spacing: 0.005em;
  opacity: 0; transform: translateY(12px);
  animation: rise .9s 1.2s var(--ease) forwards;
}
.hero-cta{
  display: inline-flex; gap: 16px;
  opacity: 0; transform: translateY(12px);
  animation: rise .9s 1.4s var(--ease) forwards;
}
.hero-meta{
  position: absolute; left: 0; right: 0; bottom: 32px;
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--f-mark);
  font-size: 10px;
  letter-spacing: 0.45em;
  color: var(--ivory-faint);
  text-transform: uppercase;
  padding: 0 6px;
  opacity: 0;
  animation: rise 1s 1.6s var(--ease) forwards;
}
.hero-meta .dot{ width:4px; height:4px; background: var(--gold); border-radius:50%; display:inline-block; margin: 0 12px; vertical-align: middle; }
@keyframes rise{ to{ opacity:1; transform: translateY(0); } }

@media (max-width: 720px){
  .hero{ padding-top: 110px; }
  .hero-frame{ inset: 88px 16px 110px; }
  .hero-meta{ flex-direction: column; gap: 10px; bottom: 60px; font-size: 11px; }
  .hero-cta{ flex-direction: column; width: 100%; max-width: 360px; margin-inline: auto; }
  .hero-cta .btn{ width: 100%; }
}

/* =========================================================
   SECTION REVEAL UTILITIES
   ========================================================= */
.reveal{ opacity: 0; transform: translateY(40px); transition: opacity 1.1s var(--ease), transform 1.1s var(--ease); }
.reveal.in{ opacity: 1; transform: translateY(0); }
.reveal.delay-1{ transition-delay: .12s; }
.reveal.delay-2{ transition-delay: .24s; }
.reveal.delay-3{ transition-delay: .36s; }
.reveal.delay-4{ transition-delay: .48s; }

/* =========================================================
   SECTION HEADER (eyebrow + numeral)
   ========================================================= */
.section-head{
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(48px, 6vw, 80px);
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.section-head .num{
  font-family: var(--f-mark);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
}
.section-head .label{
  font-family: var(--f-mark);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--ivory-dim);
  text-transform: uppercase;
}

/* =========================================================
   MANIFESTO
   ========================================================= */
.manifesto{
  padding: var(--section-y) 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(91,19,22,0.55), transparent 60%),
    var(--bg-base);
}
.manifesto-inner{
  width: var(--shell); margin-inline: auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.manifesto-text{ max-width: 540px; }
.manifesto-text .h2{ margin: 18px 0 28px; }
.manifesto-text .h2 em{ font-style: italic; color: var(--gold-bright); font-weight: 300; }
.manifesto-text p{ color: var(--ivory-dim); font-size: 16.5px; line-height: 1.85; margin-bottom: 18px; }
.manifesto-stat{
  margin-top: 36px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  border-top: 1px solid var(--line); padding-top: 28px;
}
.manifesto-stat .item .n{
  font-family: var(--f-display);
  font-size: clamp(34px, 3.6vw, 52px);
  color: var(--gold-bright);
  line-height: 1;
  font-weight: 300;
}
.manifesto-stat .item .l{
  margin-top: 8px;
  font-family: var(--f-mark);
  font-size: 10px; letter-spacing: 0.32em;
  color: var(--ivory-dim);
  text-transform: uppercase;
}
.manifesto-visual{
  position: relative;
  aspect-ratio: 4/5;
  background: var(--sindoor-deep);
  overflow: hidden;
}
.manifesto-visual img{
  width:100%; height:100%; object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.manifesto-visual::after{
  content:""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(8,3,3,0.7));
  pointer-events: none;
}
.manifesto-visual .cap{
  position: absolute; left: 24px; bottom: 22px; right: 24px;
  font-family: var(--f-mark);
  font-size: 10px; letter-spacing: 0.4em;
  color: var(--gold); text-transform: uppercase;
  z-index: 2;
}
.manifesto-visual:hover img{ transform: scale(1.04); }

@media (max-width: 900px){
  .manifesto-inner{ grid-template-columns: 1fr; }
  .manifesto-visual{ aspect-ratio: 1/1; }
}

/* =========================================================
   CHAUPAI GALLERY  (chaupai-as-art)
   ========================================================= */
.gallery{
  padding: var(--section-y) 0;
  background: var(--bg-void);
  position: relative;
}
.gallery::before{
  content:""; position:absolute; inset:0; pointer-events:none;
  background: radial-gradient(ellipse at 50% 100%, rgba(91,19,22,0.5), transparent 50%);
}
.gallery-intro{
  width: var(--shell); margin: 0 auto clamp(60px, 8vw, 110px);
  text-align: center;
}
.gallery-intro .h2{ max-width: 18ch; margin: 18px auto 24px; }
.gallery-intro .lede{ max-width: 56ch; margin: 0 auto; color: var(--ivory-dim); }

.chaupai{
  width: var(--shell); margin: 0 auto;
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  padding: clamp(60px, 8vw, 120px) 0;
  position: relative;
}
.chaupai.flip{ grid-template-columns: 1fr 1.15fr; }
.chaupai.flip .ch-art{ order: 2; }
.chaupai.flip .ch-text{ order: 1; }
.chaupai + .chaupai{ border-top: 1px solid var(--line-soft); }

.ch-art{
  position: relative;
  aspect-ratio: 4/3;
  background: var(--sindoor-deep);
  overflow: hidden;
}
.ch-art::before{
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,0.55) 100%);
  z-index: 2; pointer-events: none;
}
.ch-art img{
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.6s var(--ease), filter 1.6s var(--ease);
}
.ch-art:hover img{ transform: scale(1.045); filter: brightness(1.05); }

.ch-text .ch-num{
  font-family: var(--f-mark);
  font-size: 11px; letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  display: inline-flex; gap: 12px; align-items: center;
}
.ch-text .ch-num::before{ content:""; width: 28px; height:1px; background: var(--gold); }

.ch-deva{
  font-family: var(--f-deva);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.55;
  color: var(--gold-pale);
  margin: 22px 0 18px;
  letter-spacing: 0;
}
.ch-trans{
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.7;
  color: var(--ivory-dim);
  margin-bottom: 22px;
  padding-left: 14px;
  border-left: 1px solid var(--line);
}
.ch-meaning{
  font-size: 15px;
  line-height: 1.85;
  color: var(--ivory);
  max-width: 48ch;
}

@media (max-width: 880px){
  .chaupai, .chaupai.flip{ grid-template-columns: 1fr; }
  .chaupai.flip .ch-art{ order: 0; }
  .chaupai.flip .ch-text{ order: 1; }
}

/* =========================================================
   CRAFTSMANSHIP
   ========================================================= */
.craft{
  padding: var(--section-y) 0;
  background:
    linear-gradient(180deg, var(--bg-void) 0%, var(--sindoor-deep) 50%, var(--bg-void) 100%);
  position: relative;
}
.craft-inner{ width: var(--shell); margin-inline: auto; }
.craft-head{
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: end;
  margin-bottom: clamp(56px, 7vw, 96px);
}
.craft-head .h2{ max-width: 14ch; }
.craft-head .lede{ color: var(--ivory-dim); max-width: 48ch; }

.craft-grid{
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
}
.craft-card{
  position: relative;
  background: rgba(20,8,8,0.5);
  border: 1px solid var(--line-soft);
  padding: 32px 30px 36px;
  overflow: hidden;
  transition: border-color .6s var(--ease), transform .6s var(--ease), background .6s var(--ease);
}
.craft-card::after{
  content:""; position: absolute; left:0; right:0; top:0; height:1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(-100%);
  transition: transform .9s var(--ease);
}
.craft-card:hover{ border-color: var(--line); background: rgba(91,19,22,0.35); transform: translateY(-4px); }
.craft-card:hover::after{ transform: translateX(100%); }
.craft-card .roman{
  font-family: var(--f-mark); font-size: 11px; letter-spacing: 0.4em;
  color: var(--gold); text-transform: uppercase;
}
.craft-card h3{
  font-family: var(--f-display);
  font-size: clamp(22px, 1.8vw, 28px);
  font-weight: 400;
  letter-spacing: -0.005em;
  margin: 24px 0 12px;
  color: var(--cream);
}
.craft-card p{
  font-size: 15.5px; line-height: 1.75; color: var(--ivory-dim);
}
.craft-card .ic{
  width: 40px; height: 40px; display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  margin-bottom: 24px;
  color: var(--gold);
}

.craft-card.span-7{ grid-column: span 7; }
.craft-card.span-5{ grid-column: span 5; }
.craft-card.span-6{ grid-column: span 6; }
.craft-card.span-4{ grid-column: span 4; }
.craft-card.span-8{ grid-column: span 8; }

.craft-card.feature{
  padding: 0;
  background: var(--sindoor-deep);
  display: grid;
  align-items: stretch;
  min-height: 380px;
}
.craft-card.feature .feature-img{
  position: relative;
  overflow: hidden;
  background: var(--bg-void);
}
.craft-card.feature .feature-img img{
  width:100%; height:100%; object-fit: cover;
  transition: transform 1.6s var(--ease);
}
.craft-card.feature:hover .feature-img img{ transform: scale(1.05); }
.craft-card.feature .feature-body{
  padding: 36px 32px;
  display: flex; flex-direction: column; justify-content: center;
}
.craft-card.feature.horiz{ grid-template-columns: 1fr 1fr; }

@media (max-width: 1000px){
  .craft-head{ grid-template-columns: 1fr; gap: 24px; }
  .craft-card.span-7, .craft-card.span-5,
  .craft-card.span-6, .craft-card.span-4, .craft-card.span-8{ grid-column: span 12; }
  .craft-card.feature.horiz{ grid-template-columns: 1fr; }
  .craft-card.feature.horiz .feature-img{ aspect-ratio: 4/3; }
}

/* =========================================================
   UNBOXING / EXPERIENCE
   ========================================================= */
.unbox{
  padding: clamp(48px, 6vw, 80px) 0;
  background: var(--bg-base);
  position: relative;
  overflow: hidden;
}
.unbox-inner{ width: var(--shell); margin-inline: auto; }
/* (unbox-head and unbox-steps removed — section now uses just the cinematic video) */

.unbox-stage{
  position: relative;
  aspect-ratio: 1/1;
  max-width: 720px;
  margin-inline: auto;
  border: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 50% 50%, rgba(91,19,22,0.6), var(--bg-void) 70%);
  overflow: hidden;
  display: grid; place-items: center;
}
.unbox-stage img,
.unbox-stage video{
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1);
  transition: transform 1.6s var(--ease);
  display: block;
}
.unbox-stage:hover img,
.unbox-stage:hover video{ transform: scale(1.04); }
.unbox-stage::before, .unbox-stage::after{
  content:""; position:absolute; pointer-events:none;
}
.unbox-stage::before{
  inset:0;
  background: radial-gradient(ellipse at 50% 50%, transparent 35%, rgba(8,3,3,0.5) 75%, var(--bg-void) 100%);
}
.unbox-stage .corner{ position: absolute; width: 22px; height: 22px; border-color: var(--gold); }
.unbox-stage .c1{ top: 14px; left: 14px; border-top: 1px solid; border-left: 1px solid; }
.unbox-stage .c2{ top: 14px; right: 14px; border-top: 1px solid; border-right: 1px solid; }
.unbox-stage .c3{ bottom: 14px; left: 14px; border-bottom: 1px solid; border-left: 1px solid; }
.unbox-stage .c4{ bottom: 14px; right: 14px; border-bottom: 1px solid; border-right: 1px solid; }
.unbox-stage .stage-label{
  position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%);
  font-family: var(--f-mark); font-size: 10px; letter-spacing: 0.5em;
  color: var(--gold); text-transform: uppercase;
  background: rgba(8,3,3,0.55); backdrop-filter: blur(8px);
  border: 1px solid rgba(201,166,97,0.3);
  padding: 8px 16px;
  z-index: 2;
}

/* unbox-steps grid removed — the simplified design uses just the video */

/* =========================================================
   EXCLUSIVITY  (limited edition)
   ========================================================= */
.exclusivity{
  padding: var(--section-y) 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(160,40,40,0.45), transparent 60%),
    var(--sindoor-deep);
  position: relative;
  text-align: center;
  overflow: hidden;
}
.exclusivity::before{
  content:""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 50% 100%, var(--bg-void), transparent 50%);
}
.excl-inner{ width: var(--shell); margin-inline: auto; position: relative; z-index: 1; }
.excl-edition{
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--f-mark);
  font-size: 11px; letter-spacing: 0.5em;
  color: var(--gold); text-transform: uppercase;
  border: 1px solid var(--gold);
  padding: 12px 24px;
  margin-bottom: 32px;
  position: relative;
}
.excl-edition::before, .excl-edition::after{
  content:""; width: 5px; height:5px; background: var(--gold); transform: rotate(45deg);
}
.excl-inner .h2{
  max-width: 18ch; margin: 0 auto 24px;
}
.excl-inner .lede{ max-width: 60ch; margin: 0 auto 56px; color: var(--ivory); }

.excl-counters{
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 80px);
  max-width: 800px; margin: 0 auto 56px;
}
.excl-counter .n{
  font-family: var(--f-display);
  font-size: clamp(56px, 6.5vw, 96px);
  font-weight: 300;
  line-height: 1;
  color: var(--gold-bright);
  letter-spacing: -0.02em;
}
.excl-counter .l{
  margin-top: 12px;
  font-family: var(--f-mark);
  font-size: 10px; letter-spacing: 0.4em;
  color: var(--ivory-dim); text-transform: uppercase;
}
.excl-counter + .excl-counter{ border-left: 1px solid var(--line); }

@media (max-width: 700px){
  .excl-counters{ grid-template-columns: 1fr; }
  .excl-counter + .excl-counter{ border-left: 0; border-top: 1px solid var(--line); padding-top: 24px; }
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testi{
  padding: var(--section-y) 0;
  background: var(--bg-void);
}
.testi-inner{ width: var(--shell); margin-inline: auto; }
.testi-head{ text-align: center; margin-bottom: clamp(60px, 7vw, 96px); }
.testi-head .h2{ max-width: 22ch; margin: 18px auto 0; }

.testi-grid{
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
}
.testi-card{
  position: relative;
  border: 1px solid var(--line-soft);
  padding: 36px 32px 32px;
  background: rgba(20,8,8,0.4);
  transition: border-color .6s var(--ease), transform .6s var(--ease);
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 320px;
}
.testi-card:hover{ border-color: var(--line); transform: translateY(-4px); }
.testi-card .quote-mark{
  font-family: var(--f-display);
  font-size: 64px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: -8px;
}
.testi-card blockquote{
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(17px, 1.2vw, 19px);
  line-height: 1.65;
  color: var(--ivory);
  margin: 0 0 28px;
}
.testi-card .who{
  border-top: 1px solid var(--line-soft);
  padding-top: 20px;
}
.testi-card .who .name{
  font-family: var(--f-mark);
  font-size: 12px;
  color: var(--cream);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.testi-card .who .role{
  margin-top: 6px;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--ivory-faint);
  text-transform: uppercase;
}

@media (max-width: 900px){
  .testi-grid{ grid-template-columns: 1fr; }
}

/* =========================================================
   FAQ
   ========================================================= */
.faq{
  padding: var(--section-y) 0;
  background: var(--bg-base);
}
.faq-inner{
  width: min(960px, 92vw); margin-inline: auto;
}
.faq-head{ text-align: center; margin-bottom: clamp(48px, 6vw, 80px); }
.faq-head .h2{ margin: 18px auto 0; }

.faq-item{
  border-top: 1px solid var(--line);
  position: relative;
}
.faq-item:last-child{ border-bottom: 1px solid var(--line); }
.faq-q{
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  text-align: left;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(18px, 1.4vw, 22px);
  color: var(--cream);
  letter-spacing: -0.005em;
  transition: color .4s;
}
.faq-q:hover{ color: var(--gold-bright); }
.faq-q .num{
  font-family: var(--f-mark);
  font-size: 11px; letter-spacing: 0.32em;
  color: var(--gold); text-transform: uppercase;
}
.faq-q .plus{
  width: 22px; height: 22px;
  position: relative;
  flex-shrink: 0;
}
.faq-q .plus::before, .faq-q .plus::after{
  content:""; position: absolute;
  background: var(--gold);
  transition: transform .5s var(--ease), opacity .4s;
}
.faq-q .plus::before{
  top: 50%; left: 0; right: 0; height: 1px; transform: translateY(-50%);
}
.faq-q .plus::after{
  left: 50%; top: 0; bottom: 0; width: 1px; transform: translateX(-50%);
}
.faq-item.open .faq-q .plus::after{ transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-a{
  max-height: 0; overflow: hidden;
  transition: max-height .7s var(--ease);
}
.faq-a-inner{
  padding: 0 56px 32px 48px;
  font-size: 15.5px; line-height: 1.85;
  color: var(--ivory-dim);
  max-width: 72ch;
}

@media (max-width: 600px){
  .faq-q{ grid-template-columns: auto 1fr auto; gap: 14px; padding: 22px 0; }
  .faq-a-inner{ padding: 0 0 24px; }
}

/* =========================================================
   FINAL CTA
   ========================================================= */
.final{
  padding: var(--section-y) 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(91,19,22,0.7), transparent 70%),
    linear-gradient(180deg, var(--bg-void), var(--sindoor-deep));
  position: relative;
  overflow: hidden;
  text-align: center;
}
.final-inner{ width: var(--shell); margin-inline: auto; position: relative; z-index: 1; }
.final-mark{
  width: 100px; height: 100px;
  margin: 0 auto 28px;
  display: grid; place-items: center;
}
.final-mark-img{
  width: 88px; height: auto;
  filter:
    drop-shadow(0 0 30px rgba(249, 189, 124, 0.5))
    drop-shadow(0 0 8px rgba(249, 189, 124, 0.25));
}
.final h2.display{
  font-size: clamp(40px, 6vw, 84px);
  max-width: 18ch; margin: 0 auto 28px;
  line-height: 1.04;
}
.final .lede{ max-width: 56ch; margin: 0 auto 44px; color: var(--ivory); }
.final-cta{ display: inline-flex; gap: 16px; }
.final-meta{
  margin-top: 56px;
  display: flex; gap: clamp(16px, 4vw, 56px); justify-content: center;
  font-family: var(--f-mark); font-size: 10px; letter-spacing: 0.4em;
  color: var(--ivory-faint); text-transform: uppercase;
}
.final-meta span{ display: flex; align-items: center; gap: 10px; }
.final-meta span::before{ content:""; width: 4px; height: 4px; background: var(--gold); border-radius: 50%; }

@media (max-width: 600px){
  .final-cta{ flex-direction: column; width: 100%; max-width: 360px; margin-inline: auto; }
  .final-cta .btn{ width: 100%; }
  .final-meta{ flex-direction: column; gap: 14px; }
  .final-meta span{ justify-content: center; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.foot{
  background: var(--bg-void);
  padding: 80px 0 32px;
  border-top: 1px solid var(--line-soft);
  font-size: 15px;
  color: var(--ivory-dim);
}
.foot-inner{ width: var(--shell); margin-inline: auto; }
.foot-grid{
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  margin-bottom: 56px;
}
.foot-brand .nav-logo{ margin-bottom: 18px; }
.foot-brand p{ max-width: 38ch; line-height: 1.75; color: var(--ivory-dim); font-size: 14.5px; }
.foot-col h5{
  font-family: var(--f-mark); font-size: 11px; letter-spacing: 0.32em;
  color: var(--gold); text-transform: uppercase;
  margin: 0 0 18px; font-weight: 500;
}
.foot-col ul{ list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.foot-col a{ color: var(--ivory-dim); transition: color .3s; }
.foot-col a:hover{ color: var(--gold-bright); }
.foot-bottom{
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; border-top: 1px solid var(--line-soft);
  font-family: var(--f-mark); font-size: 10px; letter-spacing: 0.32em;
  color: var(--ivory-faint); text-transform: uppercase;
}

@media (max-width: 880px){
  .foot-grid{ grid-template-columns: 1fr 1fr; }
  .foot-brand{ grid-column: span 2; }
  .foot-bottom{ flex-direction: column; gap: 14px; text-align: center; }
}
@media (max-width: 520px){
  .foot-grid{ grid-template-columns: 1fr; }
  .foot-brand{ grid-column: span 1; }
}

/* =========================================================
   MOBILE STICKY CTA
   ========================================================= */
.sticky-cta{
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 90;
  display: none;
  opacity: 0; transform: translateY(20px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.sticky-cta.show{ opacity:1; transform: translateY(0); }
.sticky-cta .btn{
  width: 100%; justify-content: center;
  padding: 18px 24px;
  background: linear-gradient(105deg, var(--gold-deep), var(--gold) 55%, var(--gold-bright));
  color: var(--bg-void);
  border-color: var(--gold);
  letter-spacing: 0.28em;
  box-shadow: 0 18px 40px -12px rgba(0,0,0,0.7), 0 0 30px -8px rgba(201,166,97,0.5);
}
.sticky-cta .btn::before{ display: none; }
@media (max-width: 720px){ .sticky-cta{ display: block; } }

/* =========================================================
   WHATSAPP FLOATING ACTION BUTTON
   ========================================================= */
.wa-fab{
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 95;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(140deg, #25D366 0%, #128C7E 100%);
  display: grid; place-items: center;
  text-decoration: none;
  box-shadow:
    0 14px 36px -10px rgba(0,0,0,0.6),
    0 0 0 1px rgba(201,166,97,0.35),
    0 0 24px -6px rgba(37,211,102,0.4);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
  /* Initial entry — appear after page loads */
  opacity: 0;
  transform: translateY(20px) scale(0.85);
  animation: wa-enter .6s .8s var(--ease) forwards;
  /* Above sticky CTA on mobile */
}
.wa-fab:hover{
  transform: translateY(-2px) scale(1.05);
  box-shadow:
    0 20px 44px -10px rgba(0,0,0,0.7),
    0 0 0 1px var(--gold),
    0 0 32px -4px rgba(37,211,102,0.55);
}
.wa-fab:active{ transform: translateY(0) scale(0.98); }

.wa-fab-icon{
  width: 32px; height: 32px;
  display: grid; place-items: center;
  color: #fff;
  position: relative; z-index: 2;
}
.wa-fab-icon svg{
  width: 100%; height: 100%;
  fill: currentColor;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,0.2));
}

/* Pulse ring — subtle gold pulse for premium feel (not the garish neon green most sites use) */
.wa-fab-pulse{
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(201,166,97,0.5);
  pointer-events: none;
  animation: wa-pulse 2.6s 1.6s ease-out infinite;
}

@keyframes wa-enter{
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes wa-pulse{
  0%   { transform: scale(1);    opacity: 0.7; }
  70%  { transform: scale(1.55); opacity: 0;   }
  100% { transform: scale(1.55); opacity: 0;   }
}

/* Mobile: smaller and position above the sticky Get Yours bar */
@media (max-width: 720px){
  .wa-fab{
    width: 54px; height: 54px;
    right: 16px;
    bottom: 88px;  /* Above the sticky bottom CTA */
  }
  .wa-fab-icon{ width: 28px; height: 28px; }
}

@media (prefers-reduced-motion: reduce){
  .wa-fab{ animation: none; opacity: 1; transform: none; }
  .wa-fab-pulse{ animation: none; opacity: 0; }
}

/* =========================================================
   CHECKOUT DRAWER  (Razorpay)
   ========================================================= */
.checkout-drawer{
  position: fixed; inset: 0;
  z-index: 1000;
  visibility: hidden;
  pointer-events: none;
}
.checkout-drawer[aria-hidden="false"]{
  visibility: visible;
  pointer-events: auto;
}
.cd-backdrop{
  position: absolute; inset: 0;
  background: rgba(5,2,2,0.7);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  opacity: 0;
  transition: opacity .55s var(--ease);
}
.checkout-drawer[aria-hidden="false"] .cd-backdrop{ opacity: 1; }

.cd-panel{
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(560px, 100vw);
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg-base) 60%, var(--bg-base) 100%);
  border-left: 1px solid var(--line);
  overflow-y: auto;
  overflow-x: hidden;
  transform: translateX(100%);
  transition: transform .65s var(--ease);
  padding: 36px 40px 56px;
  box-shadow: -40px 0 80px -30px rgba(0,0,0,0.6);
}
.checkout-drawer[aria-hidden="false"] .cd-panel{ transform: translateX(0); }

/* gold left edge accent */
.cd-panel::before{
  content:""; position: sticky; top: 0;
  display: block; width: 100%; height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 60%);
}

@media (max-width: 600px){
  .cd-panel{ padding: 24px 22px 36px; }
}

.cd-close{
  position: absolute; top: 22px; right: 22px;
  width: 38px; height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 22px; line-height: 1; color: var(--ivory-dim);
  font-family: var(--f-display);
  transition: color .35s, border-color .35s, transform .45s var(--ease);
  z-index: 2;
}
.cd-close:hover{ color: var(--gold-bright); border-color: var(--gold); transform: rotate(90deg); }

.cd-header{ margin: 8px 0 28px; padding-right: 56px; }
.cd-header .cd-eyebrow{
  font-family: var(--f-mark);
  font-size: 10px; letter-spacing: 0.42em;
  color: var(--gold); text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 12px;
}
.cd-header .cd-eyebrow::before{ content:""; width: 24px; height: 1px; background: var(--gold); opacity: 0.55; }
.cd-header h2{
  font-family: var(--f-display); font-weight: 300;
  font-size: clamp(28px, 3.4vw, 38px);
  line-height: 1.05; letter-spacing: -0.012em;
  color: var(--cream);
  margin: 14px 0 12px;
}
.cd-header h2 em{ font-style: italic; color: var(--gold-bright); }
.cd-sub{
  font-family: var(--f-display); font-style: italic;
  color: var(--ivory-dim);
  font-size: 15px; line-height: 1.6;
}

/* Order summary card */
.cd-summary{
  border: 1px solid var(--line);
  padding: 20px 22px;
  margin-bottom: 28px;
  background: rgba(91,19,22,0.18);
  position: relative;
}
.cd-summary::before{
  content:""; position: absolute; top: -1px; left: -1px;
  width: 14px; height: 14px;
  border-top: 1px solid var(--gold); border-left: 1px solid var(--gold);
}
.cd-summary::after{
  content:""; position: absolute; bottom: -1px; right: -1px;
  width: 14px; height: 14px;
  border-bottom: 1px solid var(--gold); border-right: 1px solid var(--gold);
}
.cd-row{
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px; color: var(--ivory);
  padding: 9px 0;
}
.cd-row + .cd-row{ border-top: 1px solid var(--line-soft); }
.cd-row.total{
  font-family: var(--f-display); font-size: 22px; font-weight: 400;
  color: var(--gold-bright);
  margin-top: 4px; padding-top: 14px;
  border-top: 1px solid var(--line);
}
.cd-row .label{
  font-family: var(--f-mark);
  font-size: 10px; letter-spacing: 0.32em;
  color: var(--ivory-dim); text-transform: uppercase;
}
.cd-row.total .label{ color: var(--gold); font-size: 11px; }

.qty{ display: inline-flex; align-items: center; gap: 14px; }
.qty-btn{
  width: 28px; height: 28px;
  border: 1px solid var(--line);
  color: var(--ivory);
  font-size: 16px; line-height: 1;
  border-radius: 50%;
  transition: border-color .25s, color .25s, transform .2s;
}
.qty-btn:hover{ border-color: var(--gold); color: var(--gold-bright); }
.qty-btn:active{ transform: scale(0.92); }
.qty-val{
  display: inline-block; min-width: 22px; text-align: center;
  font-family: var(--f-display); font-size: 18px; color: var(--cream);
}

/* Form */
.cd-form{ display: grid; gap: 20px; }
.field-row{ display: grid; gap: 20px; }
.field-row.two{ grid-template-columns: 1fr 1fr; }
@media (max-width: 480px){ .field-row.two{ grid-template-columns: 1fr; } }

.field{ display: grid; gap: 8px; position: relative; }
.field > span.lbl{
  font-family: var(--f-mark);
  font-size: 10px; letter-spacing: 0.32em;
  color: var(--ivory-dim); text-transform: uppercase;
}
.field input,
.field select{
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--cream);
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 300;
  padding: 10px 0;
  letter-spacing: 0.005em;
  width: 100%;
  transition: border-color .35s;
}
.field input:focus,
.field select:focus{
  outline: none;
  border-bottom-color: var(--gold);
}
.field input::placeholder{ color: var(--ivory-faint); }
.field select{
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23c9a661' stroke-width='1.2' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
  cursor: pointer;
}
.field select option{ background: var(--bg-base); color: var(--cream); }
.field.error input,
.field.error select{ border-bottom-color: var(--ember); }
.field-msg{
  font-size: 11px; color: var(--ember); letter-spacing: 0.04em;
  margin-top: 2px; min-height: 14px;
  opacity: 0; transition: opacity .25s;
}
.field.error .field-msg{ opacity: 1; }

.cd-pay{
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  padding: 20px 24px;
  background: linear-gradient(105deg, var(--gold-deep), var(--gold) 55%, var(--gold-bright));
  color: var(--bg-void);
  border-color: var(--gold);
  letter-spacing: 0.28em;
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.7), 0 0 30px -10px rgba(201,166,97,0.4);
}
.cd-pay::before{ display: none; }
.cd-pay:hover{ color: var(--bg-void); letter-spacing: 0.32em; }
.cd-pay[disabled]{ opacity: 0.55; cursor: progress; }

.cd-trust{
  margin-top: 18px; text-align: center;
  font-family: var(--f-mark);
  font-size: 11px; letter-spacing: 0.28em;
  color: var(--ivory-dim); text-transform: uppercase;
  line-height: 1.7;
}
.cd-trust .lock{ display: inline-block; vertical-align: -2px; margin-right: 6px; opacity: 0.7; }

.cd-demo-note{
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px dashed var(--line);
  background: rgba(91,19,22,0.2);
  font-size: 11px; line-height: 1.6;
  color: var(--ivory-dim);
  text-align: center;
}
.cd-demo-note strong{ color: var(--gold-bright); font-weight: 500; letter-spacing: 0.14em; }

/* Success state */
.cd-success{
  text-align: center;
  padding: 40px 12px 20px;
}
.cd-success-mark{
  width: 88px; height: 88px;
  margin: 0 auto 26px;
  display: grid; place-items: center;
  animation: bloom .9s var(--ease) forwards;
}
.cd-mark-img{
  width: 76px; height: auto;
  filter:
    drop-shadow(0 0 24px rgba(249, 189, 124, 0.5))
    drop-shadow(0 0 6px rgba(249, 189, 124, 0.25));
}
@keyframes bloom{
  from{ transform: scale(.7); opacity: 0; }
  to{ transform: scale(1); opacity: 1; }
}
.cd-success h3{
  font-family: var(--f-display); font-weight: 300;
  font-size: clamp(26px, 2.6vw, 32px);
  color: var(--cream);
  margin-bottom: 14px;
  letter-spacing: -0.005em;
}
.cd-success h3 em{ font-style: italic; color: var(--gold-bright); }
.cd-success-msg{ color: var(--ivory-dim); margin-bottom: 28px; max-width: 38ch; margin-inline: auto; line-height: 1.7; }
.cd-success-id{
  font-family: var(--f-mark); font-size: 10px;
  letter-spacing: 0.32em; color: var(--ivory-faint);
  text-transform: uppercase; margin-bottom: 32px;
}
.cd-success-id code{
  display: block; margin-top: 8px;
  color: var(--gold-bright);
  font-family: var(--f-mark); font-size: 12px;
  letter-spacing: 0.18em;
}
.cd-success .btn{ margin-top: 8px; }

/* Lock body scroll when drawer is open */
html.drawer-open, body.drawer-open{ overflow: hidden; }
