/* ============================================================
   MAHILA BANGLES — light, modern, premium
   ============================================================ */
:root {
  --bg: #fff3ec;
  --surface: #ffffff;
  --ink: #2a2140;
  --muted: #7c738f;
  --pink: #ff6f91;
  --coral: #ff9a5a;
  --gold: #e3b04b;
  --teal: #17b8a6;
  --grad: linear-gradient(135deg, #ff6f91 0%, #ff9a5a 100%);
  --grad-soft: linear-gradient(135deg, #ffe3ec 0%, #ffe8d6 100%);
  --shadow-sm: 0 8px 24px rgba(42, 33, 64, .08);
  --shadow-md: 0 18px 44px rgba(42, 33, 64, .12);
  --shadow-lg: 0 30px 70px rgba(255, 111, 145, .18);
  --radius: 22px;
  --maxw: 1200px;
  --font-head: 'Playfair Display', serif;
  --font-body: 'Outfit', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}
body::after {
  content: ''; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image: radial-gradient(rgba(255, 111, 145, .12) 1px, transparent 1.6px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 0%, #000 0%, transparent 75%);
  mask-image: radial-gradient(ellipse 90% 80% at 50% 0%, #000 0%, transparent 75%);
}

/* animated aurora background */
.aurora { position: fixed; inset: 0; z-index: -2; overflow: hidden; pointer-events: none; }
.aurora span { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .55; mix-blend-mode: multiply; will-change: transform; }
.aurora .a1 { width: 58vw; height: 58vw; background: #ffb3c9; top: -22vw; left: -16vw; animation: drift1 26s ease-in-out infinite alternate; }
.aurora .a2 { width: 46vw; height: 46vw; background: #ffd9ad; top: 24%; right: -14vw; animation: drift2 32s ease-in-out infinite alternate; }
.aurora .a3 { width: 42vw; height: 42vw; background: #b9efe6; bottom: -16vw; left: 30%; animation: drift3 38s ease-in-out infinite alternate; }
@keyframes drift1 { to { transform: translate(10vw, 6vh) scale(1.18); } }
@keyframes drift2 { to { transform: translate(-8vw, -5vh) scale(.88); } }
@keyframes drift3 { to { transform: translate(7vw, -9vh) scale(1.12); } }
img, svg { display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.order { position: relative; }

/* 3D spinning decorative rings */
.deco-ring {
  position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
  animation: coin3d 16s linear infinite;
}
@keyframes coin3d { 0% { transform: rotateX(-20deg) rotateY(0deg); } 50% { transform: rotateX(30deg) rotateY(120deg); } 100% { transform: rotateX(-20deg) rotateY(360deg); } }
.deco-ring.r1 { width: 200px; height: 200px; border: 14px solid rgba(255, 111, 145, .22); top: 7%; left: -70px; }
.deco-ring.r2 { width: 130px; height: 130px; border: 10px solid rgba(23, 184, 166, .24); bottom: 6%; right: 34%; animation-duration: 22s; animation-direction: reverse; }
.deco-ring.r3 { width: 170px; height: 170px; border: 12px solid rgba(67, 97, 238, .20); top: 20%; right: -60px; animation-duration: 19s; }

::selection { background: var(--pink); color: #fff; }

/* scrollbar */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: #fbeef2; }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--pink), var(--coral)); border-radius: 20px; border: 3px solid #fbeef2; }

/* ---------- typography helpers ---------- */
h1, h2, h3 { font-family: var(--font-head); line-height: 1.15; }
h1 { font-size: clamp(2.5rem, 5.4vw, 4.3rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); font-weight: 700; }
h3 { font-size: 1.35rem; font-weight: 700; }
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .82rem; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--pink);
  margin-bottom: 14px;
}
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--grad); display: inline-block; }
.sec-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.sec-head p { color: var(--muted); margin-top: 14px; font-size: 1.05rem; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; border-radius: 60px;
  font-weight: 600; font-size: .98rem; cursor: pointer;
  border: none; transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  position: relative; overflow: hidden;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--grad); color: #fff;
  box-shadow: 0 12px 30px rgba(255, 111, 145, .35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 42px rgba(255, 111, 145, .45); }
.btn-ghost {
  background: rgba(255, 255, 255, .7);
  color: var(--ink); border: 2px solid #f3d9e0;
}
.btn-ghost:hover { border-color: var(--pink); transform: translateY(-3px); }
.btn-light { background: #fff; color: var(--ink); box-shadow: var(--shadow-md); }
.btn-light:hover { transform: translateY(-3px); }
.btn-whatsapp { background: #25d366; color: #fff; box-shadow: 0 12px 30px rgba(37, 211, 102, .35); }
.btn-whatsapp:hover { transform: translateY(-3px); }
.btn-block { width: 100%; justify-content: center; }
.btn-shine {
  position: absolute; top: 0; left: -60%; width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent);
  transform: skewX(-20deg);
}
.btn:hover .btn-shine { animation: shine 1.1s ease; }
@keyframes shine { to { left: 130%; } }

/* ---------- navbar ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  padding: 18px 0;
  transition: padding .3s ease, background .3s ease, box-shadow .3s ease;
}
.nav.scrolled {
  padding: 10px 0;
  background: rgba(255, 248, 243, .82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(42, 33, 64, .08);
}
.nav-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-icon { width: 42px; height: 42px; animation: slowspin 8s linear infinite; }
@keyframes slowspin { to { transform: rotate(360deg); } }
.brand-text { font-size: 1.3rem; font-weight: 700; }
.brand-text em { font-style: normal; color: var(--pink); }
.brand-text.light em { color: var(--coral); }
.links { display: flex; gap: 30px; }
.links a { font-weight: 500; font-size: .95rem; color: var(--ink); position: relative; padding: 6px 0; }
.links a::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2.5px;
  border-radius: 4px; background: var(--grad); transition: width .3s ease;
}
.links a:hover::after, .links a.active::after { width: 100%; }
.nav-cta { padding: 12px 24px; font-size: .9rem; }
.burger { display: none; background: none; border: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.burger span { width: 26px; height: 3px; border-radius: 3px; background: var(--ink); transition: .3s; }
.burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding: 120px 0 60px; overflow: hidden; }
.hero-blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .32; z-index: 0; pointer-events: none; }
.blob-a { width: 480px; height: 480px; background: #ffd3e0; top: -120px; left: -140px; }
.blob-b { width: 420px; height: 420px; background: #ffe0c2; bottom: -100px; right: -80px; }
.blob-c { width: 300px; height: 300px; background: #d7f4ef; top: 40%; left: 38%; }
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center;
  width: 100%;
}
.hero-copy { padding: 10px 0; }
.lead { font-size: 1.12rem; color: var(--muted); max-width: 540px; margin: 22px 0 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 42px; }
.hero-stats { display: flex; gap: 44px; }
.stat strong { display: block; font-family: var(--font-head); font-size: 1.9rem; color: var(--ink); }
.stat span { color: var(--muted); font-size: .86rem; }
.stat { position: relative; }
.stat:not(:last-child)::after { content: ''; position: absolute; right: -22px; top: 8px; height: 70%; width: 2px; background: #f3d9e0; border-radius: 2px; }

/* 3D stage */
.stage-wrap { position: relative; height: 520px; display: flex; align-items: center; justify-content: center; }
.stage-ring {
  position: absolute; width: 260px; height: 260px; border-radius: 50%;
  border: 1.5px dashed rgba(255, 111, 145, .35);
  animation: slowspin 26s linear infinite;
}

/* custom logo medallion inside the big circle */
.logo-medallion {
  position: absolute; left: 50%; top: 50%; z-index: 4;
  width: 148px; height: 148px; margin: -74px 0 0 -74px;
  pointer-events: none; animation: floaty 6s ease-in-out infinite;
}
.lm-ring {
  position: absolute; inset: 0; border-radius: 50%;
  padding: 6px;
  background: conic-gradient(from 0deg, #ff6f91, #ff9a5a, #ffd166, #2ec4b6, #4361ee, #ff6f91);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  animation: slowspin 11s linear infinite;
}
.lm-inner {
  position: absolute; inset: 16px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffffff, #fffafa 60%, #ffeef2);
  box-shadow: 0 20px 46px rgba(255, 111, 145, .30), inset 0 0 0 2px #ffe3ec;
  display: flex; align-items: center; justify-content: center;
  animation: counterspin 11s linear infinite;
}
.lm-inner img { width: 84px; height: 84px; }
@keyframes counterspin { to { transform: rotate(-360deg); } }
.bangle-stage { width: 100%; height: 100%; cursor: grab; touch-action: none; border-radius: var(--radius); }
.bangle-stage:active { cursor: grabbing; }
.stage-hint {
  position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
  font-size: .8rem; color: var(--muted); display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.75); backdrop-filter: blur(6px);
  padding: 8px 16px; border-radius: 40px; box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
.hint-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--teal); animation: pulse 1.6s ease infinite; }
@keyframes pulse { 50% { transform: scale(1.6); opacity: .4; } }

/* hero photo collage */
.hero-photo {
  position: absolute; z-index: 5; margin: 0;
  background: #fff; padding: 10px; border-radius: 20px;
  box-shadow: var(--shadow-lg); overflow: hidden;
  transition: transform .4s ease, box-shadow .4s ease;
  animation: floaty 6s ease-in-out infinite;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 13px; }
.hero-photo figcaption {
  position: absolute; inset: auto 0 0 0; margin: 10px;
  font-size: .78rem; font-weight: 600; color: #fff; text-align: center;
  background: linear-gradient(90deg, rgba(255,111,145,.85), rgba(255,154,90,.85));
  padding: 7px 10px; border-radius: 30px; backdrop-filter: blur(4px);
}
.ph-a { width: 168px; height: 128px; left: -6px; bottom: 44px; transform: rotate(-4deg); }
.ph-a figcaption { font-size: .72rem; }
.ph-b { width: 118px; height: 118px; right: 6px; top: 10px; transform: rotate(5deg); animation-delay: 2.4s; border-radius: 50%; }
.ph-b img { border-radius: 50%; }
.hero-photo:hover { transform: rotate(0deg) translateY(-6px) scale(1.04); z-index: 6; }

/* ---------- marquee ---------- */
.marquee {
  background: linear-gradient(90deg, #2a2140, #43336b, #2a2140);
  color: #fbeef2; padding: 16px 0; overflow: hidden; position: relative;
}
.marquee-track { display: flex; gap: 40px; width: max-content; animation: marquee 30s linear infinite; align-items: center; }
.marquee-track span { font-weight: 600; letter-spacing: .06em; font-size: .95rem; }
.marquee-track i { color: var(--coral); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- about ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-visual { position: relative; height: 460px; }
.about-card {
  position: absolute; background: var(--surface); border-radius: 26px;
  box-shadow: var(--shadow-md); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px; padding: 26px;
  text-align: center; font-weight: 600;
  transition: transform .35s ease, box-shadow .35s ease;
}
.about-card svg { width: 120px; height: 120px; }
.about-card p { font-size: .92rem; line-height: 1.3; }
.about-card.photo img { width: 100%; height: 140px; object-fit: cover; border-radius: 18px; }
.about-card.photo { padding: 14px; }
.about-card.photo p { font-size: .86rem; }
.card-a { width: 240px; left: 8%; top: 6%; animation: floaty 6s ease-in-out infinite; }
.card-b { width: 240px; right: 6%; bottom: 6%; animation: floaty 6s ease-in-out infinite 1.5s; }
.about-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
@keyframes floaty { 50% { transform: translateY(-14px); } }
.badge-float {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  background: var(--surface); border-radius: 50%; width: 150px; height: 150px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg); text-align: center; gap: 2px;
  border: 1.5px solid #fff;
}
.badge-float strong { font-family: var(--font-head); font-size: 2.5rem; }
.badge-float span { font-size: .78rem; color: var(--muted); font-weight: 500; }
.about-copy p { color: var(--muted); font-size: 1.06rem; margin-bottom: 24px; }
.about-points { display: grid; gap: 14px; }
.about-points li { display: flex; align-items: center; gap: 12px; font-weight: 500; }
.tick {
  width: 26px; height: 26px; border-radius: 50%; background: var(--grad-soft);
  color: var(--pink); display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .85rem; flex-shrink: 0;
}

/* ---------- product cards ---------- */
.products { background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .5), transparent); }
.grid-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; perspective: 1400px; }
.p-card {
  background: var(--surface); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); padding-bottom: 22px; position: relative;
  transition: transform .35s ease, box-shadow .35s ease;
}
.p-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); }
.thumb { position: relative; height: 182px; overflow: hidden; padding: 14px; background: radial-gradient(circle at 50% 42%, #ffffff 0%, #ffeef2 55%, #ffdcc9 100%); }
.thumb::before {
  content: ''; position: absolute; top: -60%; left: -85%; z-index: 1;
  width: 45%; height: 220%; transform: rotate(25deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .65), transparent);
  transition: left .7s ease;
}
.p-card:hover .thumb::before { left: 135%; }
.thumb::after {
  content: ''; position: absolute; inset: 14px; z-index: 1; pointer-events: none;
  border-radius: 14px;
  box-shadow: inset 0 0 0 1.5px rgba(255, 111, 145, .22), 0 14px 30px rgba(255, 111, 145, .16);
}
.thumb img {
  width: 100%; height: 100%; object-fit: contain;
  filter: drop-shadow(0 12px 20px rgba(42, 33, 64, .18));
  transform: scale(1.02);
  transition: transform .6s cubic-bezier(.2, .7, .3, 1), filter .4s ease;
}
.p-card:hover .thumb img { transform: scale(1.1); filter: drop-shadow(0 16px 28px rgba(255, 111, 145, .35)) saturate(1.12); }
.p-card { border: 1.5px solid #ffe3ec; }
.p-card:hover { border-color: transparent; box-shadow: 0 0 0 3px rgba(255, 111, 145, .18), var(--shadow-md); }
.ring {
  width: 74px; height: 74px; border-radius: 50%; position: relative;
  box-shadow: 0 12px 26px rgba(42, 33, 64, .22);
  animation: floatslow 4s ease-in-out infinite;
}
.ring::before {
  content: ''; position: absolute; inset: -26px; border-radius: 50%;
  border: 2px dashed rgba(255,255,255,.6);
}
@keyframes floatslow { 50% { transform: scale(1.06) rotate(10deg); } }
.t-gold { background: linear-gradient(135deg, #f6d898, #b9842c); }
.t-gold .ring { background: radial-gradient(circle at 32% 30%, #ffe9ad, #d9a63e 55%, #9a6f1f); border: 5px solid #f6d898; }
.t-glass { background: linear-gradient(135deg, #ffd7e2, #ff9ab5); }
.t-glass .ring { background: radial-gradient(circle at 30% 26%, #fff, #ff9ab5 60%, #e0527a); border: 5px solid #ffd7e2; }
.t-bridal { background: linear-gradient(135deg, #c9b6ff, #8a6bf0); }
.t-bridal .ring { background: radial-gradient(circle at 30% 26%, #ffe9f3, #a97cf2 50%, #5d3bb0); border: 5px solid #e3c9ff; }
.t-stone { background: linear-gradient(135deg, #a7e8f0, #46c4d6); }
.t-stone .ring { background: radial-gradient(circle at 30% 26%, #eaffff, #5fd3e6 60%, #1c93a8); border: 5px solid #bfeff5; }
.t-designer { background: linear-gradient(135deg, #ffc2a8, #ff7a59); }
.t-designer .ring { background: radial-gradient(circle at 30% 26%, #ffe9db, #ff8a63 55%, #c7451f); border: 5px solid #ffd3bc; }
.t-silver { background: linear-gradient(135deg, #e9edf3, #aab6c8); }
.t-silver .ring { background: radial-gradient(circle at 30% 26%, #fff, #c4cede 60%, #6f7f95); border: 5px solid #f2f5f8; }
.t-daily { background: linear-gradient(135deg, #d9f7c9, #77dd5f); }
.t-daily .ring { background: radial-gradient(circle at 30% 26%, #f4ffe9, #8fe475 55%, #3baa24); border: 5px solid #e4fcd2; }
.t-kids { background: linear-gradient(135deg, #ffe89a, #ffb33c); }
.t-kids .ring { background: radial-gradient(circle at 30% 26%, #fff1c2, #ffc14d 55%, #cf7d08); border: 5px solid #ffedb0; }
.p-card h3 { padding: 18px 22px 6px; font-size: 1.2rem; }
.p-card p { padding: 0 22px; color: var(--muted); font-size: .95rem; }
.tag {
  position: absolute; top: 14px; right: 14px;
  background: var(--grad); color: #fff; font-size: .68rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 30px; box-shadow: 0 6px 16px rgba(255,111,145,.35);
}

/* ---------- gallery ---------- */
.gallery { background: linear-gradient(180deg, var(--bg), #fff, var(--bg)); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px; gap: 18px; perspective: 1400px;
}
.g-item {
  position: relative; margin: 0; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); cursor: pointer;
  border: 1.5px solid #ffe3ec;
  transition: transform .35s ease, box-shadow .35s ease;
}
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.3,1); }
.g-item:hover { transform: translateY(-6px); box-shadow: 0 0 0 3px rgba(255, 111, 145, .22), var(--shadow-md); z-index: 2; }
.g-item:hover img { transform: scale(1.1); }
.g-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(42,33,64,.55));
  opacity: .65; transition: opacity .3s ease;
}
.g-item:hover::after { opacity: .9; }
.g-item figcaption {
  position: absolute; left: 16px; bottom: 14px; z-index: 2;
  color: #fff; font-weight: 600; font-size: .9rem;
  letter-spacing: .03em; display: flex; align-items: center; gap: 8px;
}
.g-item figcaption::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--coral); display: inline-block;
}
.g-feat { grid-column: span 2; grid-row: span 2; }
.g-tall { grid-row: span 2; }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 120;
  background: rgba(42, 33, 64, .92); backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: min(90vw, 760px); max-height: 82vh;
  border-radius: 18px; box-shadow: 0 30px 80px rgba(0,0,0,.5);
  transform: scale(.92); transition: transform .3s ease;
}
.lightbox.open img { transform: scale(1); }
.lightbox-close {
  position: absolute; top: 22px; right: 26px;
  width: 48px; height: 48px; border-radius: 50%; border: none;
  background: rgba(255,255,255,.12); color: #fff; font-size: 1.4rem; cursor: pointer;
  transition: background .25s ease, transform .25s ease;
}
.lightbox-close:hover { background: var(--pink); transform: rotate(90deg); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,.12); color: #fff; font-size: 1.5rem;
  transition: background .25s ease;
}
.lightbox-nav:hover { background: var(--pink); }
.lightbox-prev { left: 22px; }
.lightbox-next { right: 22px; }
.lightbox-cap {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  color: #fff; font-weight: 600; letter-spacing: .04em;
  background: rgba(255,255,255,.14); padding: 10px 22px; border-radius: 40px;
  backdrop-filter: blur(6px);
}

/* ---------- customize ---------- */
.customize { position: relative; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-bottom: 60px; }
.step {
  background: var(--surface); border-radius: var(--radius); padding: 32px 26px;
  box-shadow: var(--shadow-sm); position: relative; text-align: center;
  transition: transform .35s ease, box-shadow .35s ease;
  border: 1.5px solid transparent;
}
.step:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); border-color: #ffd7e2; }
.step-num {
  position: absolute; top: 16px; left: 20px;
  font-family: var(--font-head); font-size: 1.6rem; color: #f3d9e0;
}
.step-emoji { font-size: 2.6rem; margin: 6px 0 14px; }
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .92rem; }
.customize-cta {
  background: var(--grad-soft); border-radius: var(--radius);
  padding: 36px 46px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px;
  border: 1.5px solid #ffd7e2;
}
.customize-cta p { font-weight: 600; font-size: 1.1rem; color: var(--ink); }

/* ---------- live stall ---------- */
.stall { background: transparent; }
.stall-card {
  background: linear-gradient(135deg, #43336b, #2a2140);
  color: #fbeef2; border-radius: 34px; padding: 54px;
  display: grid; grid-template-columns: auto 1fr auto; gap: 36px; align-items: center;
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.stall-card::before {
  content: ''; position: absolute; width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,111,145,.35), transparent 65%);
  top: -120px; right: -80px; pointer-events: none;
}
.stall-icon {
  width: 92px; height: 92px; border-radius: 26px;
  background: rgba(255,255,255,.08); border: 1.5px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center; color: var(--coral);
}
.stall-icon svg { width: 48px; height: 48px; }
.stall-card h2 { margin: 6px 0 12px; color: #fff; }
.stall-card p { color: #d6c9e8; max-width: 520px; }
.stall-meta { display: grid; gap: 14px; }
.stall-meta div { display: flex; gap: 10px; align-items: center; font-size: .93rem; }
.stall-meta strong { font-size: 1.15rem; }
.stall-card .eyebrow { color: var(--coral); }

/* ---------- order ---------- */
.order-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-bottom: 50px; perspective: 1400px; }
.order-card {
  background: var(--surface); border-radius: var(--radius); padding: 40px;
  box-shadow: var(--shadow-sm); position: relative; transition: transform .35s ease, box-shadow .35s ease;
}
.order-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.order-card.featured {
  background: linear-gradient(160deg, #fff3f6, #fff);
  border: 2px solid var(--grad);
  box-shadow: var(--shadow-lg);
}
.order-badge {
  position: absolute; top: 20px; right: 20px;
  font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  background: var(--grad); color: #fff; padding: 6px 12px; border-radius: 30px;
}
.flag { font-size: 2.2rem; margin-bottom: 10px; }
.order-card h3 { font-size: 1.5rem; margin-bottom: 10px; }
.order-card p { color: var(--muted); margin-bottom: 18px; }
.order-card ul { display: grid; gap: 10px; margin-bottom: 26px; }
.order-card li { display: flex; align-items: center; gap: 10px; font-weight: 500; font-size: .95rem; }
.quick-order {
  background: var(--surface); border-radius: var(--radius);
  padding: 30px 40px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px;
  box-shadow: var(--shadow-sm);
}
.quick-order p { font-weight: 600; }

/* ---------- testimonials ---------- */
.testi { background: transparent; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi blockquote {
  background: var(--surface); border-radius: var(--radius); padding: 32px 30px;
  box-shadow: var(--shadow-sm); position: relative; transition: transform .35s ease, box-shadow .35s ease;
}
.testi blockquote:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.stars { color: #f5a623; letter-spacing: 3px; margin-bottom: 14px; }
.testi blockquote p { color: var(--muted); font-size: .98rem; margin-bottom: 20px; }
.testi footer strong { display: block; }
.testi footer span { font-size: .82rem; color: var(--muted); }

/* ---------- contact ---------- */
.contact { background: transparent; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.contact-info h2 { margin-bottom: 14px; }
.contact-info p { color: var(--muted); margin-bottom: 26px; max-width: 440px; }
.contact-info ul { display: grid; gap: 16px; margin-bottom: 30px; }
.contact-info li { display: flex; align-items: center; gap: 12px; font-weight: 500; }
.contact-info li span { font-size: 1.25rem; }
.contact-info li a:hover { color: var(--pink); }
.socials { display: flex; gap: 14px; }
.socials a {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--surface); border: 1.5px solid #f3d9e0;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink); transition: transform .3s ease, background .3s ease, color .3s ease;
}
.socials a svg { width: 20px; height: 20px; }
.socials a:hover { transform: translateY(-4px); background: var(--grad); border-color: transparent; color: #fff; }
.contact-form {
  background: var(--surface); border-radius: var(--radius); padding: 36px;
  box-shadow: var(--shadow-md); display: grid; gap: 18px;
}
.field { display: grid; gap: 7px; }
.field label { font-weight: 600; font-size: .9rem; }
.field input, .field select, .field textarea {
  background: var(--bg); border: 1.8px solid #f3d9e0; border-radius: 14px;
  padding: 13px 16px; font-size: .98rem; color: var(--ink);
  outline: none; transition: border-color .25s ease, box-shadow .25s ease; resize: vertical;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--pink); box-shadow: 0 0 0 4px rgba(255, 111, 145, .15);
}

/* ---------- footer ---------- */
.footer { background: #241c38; color: #cfc4e0; padding-top: 70px; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 44px; }
.footer .footer-brand .brand-text { color: #fff; font-size: 1.5rem; display: block; margin-bottom: 12px; }
.footer-logo { width: 60px; height: 60px; margin-bottom: 14px; border-radius: 50%; box-shadow: 0 10px 26px rgba(255, 111, 145, .35); }
.footer-brand p { color: #a799bd; font-size: .93rem; max-width: 280px; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.footer-links h4 { color: #fff; font-family: var(--font-body); font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 14px; }
.footer-links a { display: block; color: #a799bd; font-size: .92rem; padding: 4px 0; transition: color .25s ease; }
.footer-links a:hover { color: var(--coral); }
.footer-cta p { font-family: var(--font-head); font-size: 1.3rem; color: #fff; margin-bottom: 16px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 20px 24px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px;
  font-size: .82rem; color: #8f83a5;
}
.heart { color: var(--pink); }

/* back to top */
.back-top {
  position: fixed; bottom: 26px; right: 26px; z-index: 80;
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--grad); color: #fff; font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg); cursor: pointer;
  opacity: 0; transform: translateY(20px); pointer-events: none;
  transition: opacity .3s ease, transform .3s ease; border: none;
}
.back-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-top:hover { transform: translateY(-4px); }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); transition-delay: var(--d, 0s); }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .grid-cards { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .stall-card { grid-template-columns: 1fr; text-align: center; }
  .stall-icon { margin: 0 auto; }
  .stall-meta { justify-items: center; }
  .hero-grid { grid-template-columns: 1fr; gap: 10px; }
  .stage-wrap { height: 440px; max-width: 560px; margin: 0 auto; order: -1; }
  .hero { padding-top: 140px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-visual { height: 420px; }
  .ph-a { width: 140px; height: 110px; }
  .ph-b { width: 100px; height: 100px; }
  .logo-medallion { width: 120px; height: 120px; margin: -60px 0 0 -60px; }
  .lm-inner img { width: 68px; height: 68px; }
}
@media (max-width: 768px) {
  .links {
    position: fixed; top: 0; right: -100%; width: min(320px, 80vw); height: 100vh;
    background: #fff; flex-direction: column; gap: 8px;
    padding: 90px 32px; box-shadow: var(--shadow-lg);
    transition: right .4s cubic-bezier(.2,.7,.3,1); z-index: 85;
    border-radius: 24px 0 0 24px;
  }
  .links.open { right: 0; }
  .links a { font-size: 1.2rem; }
  .burger { display: flex; }
  .nav-cta { display: none; }
  .grid-cards { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .g-feat { grid-column: span 2; grid-row: span 2; }
  .testi-grid { grid-template-columns: 1fr; }
  .order-cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
  .hero-stats { gap: 26px; }
  .stat:not(:last-child)::after { right: -13px; }
  .back-top { bottom: 18px; right: 18px; width: 44px; height: 44px; }
}
@media (max-width: 480px) {
  .grid-cards { grid-template-columns: 1fr; }
  .brand-text { font-size: 1.1rem; }
  .customize-cta { padding: 28px 26px; justify-content: center; }
  .quick-order { padding: 24px 22px; justify-content: center; }
  .logo-medallion { width: 104px; height: 104px; margin: -52px 0 0 -52px; }
  .lm-inner img { width: 60px; height: 60px; }
  .stage-ring { width: 210px; height: 210px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001s !important; transition-duration: .001s !important; }
  html { scroll-behavior: auto; }
}