/* ============================================================
   Mahi Mehendi Art — Design System
   Palette: deep maroon · antique gold · henna brown · ivory
   ============================================================ */
:root {
  --maroon: #4a1c2a;
  --maroon-2: #6b2737;
  --maroon-3: #8a3448;
  --henna: #7a4a2a;
  --henna-2: #a3673b;
  --gold: #c9a24a;
  --gold-2: #e2c275;
  --gold-3: #f3e3b3;
  --ivory: #fbf6ee;
  --cream: #f4ebdd;
  --sand: #ead9c0;
  --ink: #2b1b1e;
  --muted: #6f5f62;
  --white: #ffffff;
  --shadow: 0 20px 60px -20px rgba(74, 28, 42, .35);
  --radius: 18px;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-script: 'Playball', 'Great Vibes', cursive;
  --font-sans: 'Jost', system-ui, sans-serif;
  --font-display: 'Marcellus', 'Cormorant Garamond', serif;
  --container: 1200px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--font-sans); font-weight: 300; color: var(--ink); background: var(--ivory); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 600; line-height: 1.15; margin: 0; color: var(--maroon); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 em, h1 em { font-style: italic; color: var(--henna-2); }
h3 { font-size: 1.5rem; }
p { margin: 0 0 1rem; }
strong { font-weight: 500; }
.container { width: min(var(--container), 92%); margin-inline: auto; }
.container.narrow { max-width: 820px; }
.center { text-align: center; margin-top: 2.5rem; }
section { position: relative; padding: clamp(4rem, 8vw, 7rem) 0; }

/* ---- Kicker / titles / ornaments ---- */
.kicker { font-family: var(--font-sans); font-size: .78rem; letter-spacing: .32em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: .8rem; }
.section-title { text-align: center; max-width: 760px; margin: 0 auto 3.5rem; }
.section-title .sub, .sub { color: var(--muted); font-size: 1.05rem; margin-top: 1rem; }
.ornament { display: flex; align-items: center; justify-content: center; gap: .8rem; margin: 1.1rem 0; color: var(--gold); }
.ornament span { display: block; height: 1px; width: 64px; background: linear-gradient(90deg, transparent, var(--gold)); }
.ornament span:last-child { background: linear-gradient(90deg, var(--gold), transparent); }
.ornament i { font-size: .9rem; }
.about-copy .ornament, .contact-info .ornament { justify-content: flex-start; }
.about-copy .ornament span:first-child, .contact-info .ornament span:first-child { display: none; }

/* ---- Buttons ---- */
.btn { display: inline-flex; align-items: center; gap: .55rem; padding: .85rem 1.6rem; border-radius: 999px; font-family: var(--font-sans); font-weight: 500; font-size: .92rem; letter-spacing: .04em; border: 1.5px solid transparent; cursor: pointer; transition: all .35s var(--ease); white-space: nowrap; }
.btn-sm { padding: .55rem 1.1rem; font-size: .82rem; }
.btn-lg { padding: 1.05rem 2.1rem; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }
.btn-gold { background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: var(--maroon); box-shadow: 0 10px 30px -10px rgba(201,162,74,.7); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -10px rgba(201,162,74,.85); }
.btn-outline { border-color: rgba(255,255,255,.5); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,.12); }
.btn-outline-dark { border-color: var(--maroon); color: var(--maroon); }
.btn-outline-dark:hover { background: var(--maroon); color: #fff; }
.btn-ghost { border-color: rgba(255,255,255,.4); color: #fff; backdrop-filter: blur(6px); background: rgba(255,255,255,.06); }
.btn-ghost:hover { background: rgba(255,255,255,.16); }
.btn-maroon { background: var(--maroon); color: #fff; }
.btn-maroon:hover { background: var(--maroon-2); transform: translateY(-2px); }
.btn-red { background: #e0322e; color: #fff; }
.btn-red:hover { background: #c4241f; transform: translateY(-2px); }
.btn-insta { background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af); color: #fff; }
.btn-insta:hover { transform: translateY(-2px); filter: brightness(1.05); }

/* ---- Loader ---- */
#loader { position: fixed; inset: 0; z-index: 9999; background: var(--maroon); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.5rem; transition: opacity .6s var(--ease), visibility .6s; }
#loader img { width: 150px; height: 150px; object-fit: contain; filter: drop-shadow(0 10px 30px rgba(0,0,0,.5)); animation: pulse 1.6s ease-in-out infinite; }
#loader .loader-bar { width: 160px; height: 2px; background: rgba(255,255,255,.15); overflow: hidden; border-radius: 2px; }
#loader .loader-bar span { display: block; height: 100%; width: 40%; background: var(--gold); animation: slide 1.2s ease-in-out infinite; }
#loader.done { opacity: 0; visibility: hidden; }
@keyframes pulse { 0%,100% { transform: scale(1);} 50% { transform: scale(1.05);} }
@keyframes slide { 0% { transform: translateX(-100%);} 100% { transform: translateX(350%);} }

/* ---- Cursor glow ---- */
#cursor-glow { position: fixed; width: 300px; height: 300px; border-radius: 50%; pointer-events: none; z-index: 1; background: radial-gradient(circle, rgba(201,162,74,.16), transparent 65%); transform: translate(-50%,-50%); left: -999px; top: -999px; transition: left .15s, top .15s; }
@media (hover: none) { #cursor-glow { display: none; } }

/* ---- Navbar ---- */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 1rem 0; transition: all .4s var(--ease); }
.navbar.scrolled { background: rgba(74,28,42,.92); backdrop-filter: blur(12px); padding: .55rem 0; box-shadow: 0 10px 30px -15px rgba(0,0,0,.5); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: flex; align-items: center; gap: .7rem; color: #fff; }
.brand img { width: 48px; height: 48px; object-fit: contain; filter: drop-shadow(0 4px 10px rgba(0,0,0,.35)); transition: transform .5s var(--ease); }
.brand:hover img { transform: rotate(12deg) scale(1.05); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.bt-name { font-family: var(--font-script); font-size: 1.55rem; color: var(--gold-2); line-height: .95; letter-spacing: .01em; }
.bt-sub { font-family: var(--font-display); font-size: .66rem; letter-spacing: .3em; text-transform: uppercase; color: rgba(255,255,255,.92); margin-top: .1em; }
.nav-links { display: flex; gap: 1.8rem; }
.nav-links a { color: rgba(255,255,255,.85); font-size: .88rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 400; position: relative; padding: .3rem 0; }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: 0; height: 1px; width: 0; background: var(--gold); transition: width .3s var(--ease); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; gap: .6rem; }

/* ---- Hero ---- */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 7rem 0 4rem; color: #fff; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.05); animation: kenburns 30s ease-in-out infinite alternate; }
@keyframes kenburns { to { transform: scale(1.15) translate(-1%, 1%);} }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(110deg, rgba(74,28,42,.96) 0%, rgba(74,28,42,.88) 45%, rgba(43,27,30,.7) 100%); }
.mandala { position: absolute; border-radius: 50%; pointer-events: none; opacity: .18;
  background: repeating-conic-gradient(from 0deg, var(--gold) 0 3deg, transparent 3deg 15deg), radial-gradient(circle, transparent 48%, var(--gold) 49%, transparent 51%, transparent 62%, var(--gold) 63%, transparent 64%);
  -webkit-mask: radial-gradient(circle, #000 0 60%, transparent 62%, #000 64%, #000 78%, transparent 80%);
          mask: radial-gradient(circle, #000 0 60%, transparent 62%, #000 64%, #000 78%, transparent 80%);
  animation: spin 90s linear infinite; }
.mandala-l { width: 620px; height: 620px; left: -300px; top: -200px; }
.mandala-r { width: 520px; height: 520px; right: -230px; bottom: -220px; animation-direction: reverse; }
.mandala-c { width: 900px; height: 900px; left: 50%; top: 50%; opacity: .07; animation: spinc 120s linear infinite; }
@keyframes spin { to { transform: rotate(360deg);} }
@keyframes spinc { from { transform: translate(-50%,-50%) rotate(0);} to { transform: translate(-50%,-50%) rotate(360deg);} }

.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center; }
.hero-kicker { color: var(--gold-2); letter-spacing: .25em; text-transform: uppercase; font-size: .78rem; font-weight: 500; }
.hero h1 { display: flex; flex-direction: column; color: #fff; line-height: .95; }
.hero h1 .h1-name { font-family: var(--font-script); font-weight: 400; font-size: clamp(4.4rem, 8.5vw, 7.4rem); line-height: 1; margin-left: -.03em; background: linear-gradient(120deg, #fff2c9 0%, var(--gold-2) 45%, #b8892c 100%); -webkit-background-clip: text; background-clip: text; color: transparent; filter: drop-shadow(0 10px 30px rgba(0,0,0,.4)); padding-right: .15em; }
.hero h1 .h1-sub { font-family: var(--font-display); font-size: clamp(1.25rem, 2.4vw, 2.1rem); font-weight: 400; letter-spacing: .38em; text-transform: uppercase; color: #fff; margin-top: -.15em; padding-left: .38em; display: flex; align-items: center; gap: .8em; }
.hero h1 .h1-sub i { flex: 0 0 auto; width: 2.2em; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); opacity: .9; }
.hero h1 .h1-sub i:last-child { background: linear-gradient(90deg, var(--gold), transparent); }
.hero h1 .h1-sub i:first-child { display: none; }
.hero-tagline { font-family: var(--font-serif); font-style: italic; font-size: 1.6rem; color: var(--gold-3); margin: 1.2rem 0 .8rem; }
.hero-desc { color: rgba(255,255,255,.8); max-width: 540px; font-size: 1.05rem; }
.hero-actions { display: flex; gap: .9rem; flex-wrap: wrap; margin-top: 1.8rem; }
.hero-badges { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 2.2rem; }
.hero-badges li { font-size: .85rem; color: rgba(255,255,255,.85); display: flex; align-items: center; gap: .5rem; }
.hero-badges i { color: var(--gold); }

.hero-visual { position: relative; height: 560px; }
.hero-frame { position: absolute; border-radius: 200px 200px 24px 24px; overflow: hidden; box-shadow: 0 40px 80px -30px rgba(0,0,0,.7); border: 4px solid rgba(255,255,255,.12); }
.hero-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.hero-frame:hover img { transform: scale(1.06); }
.frame-a { width: 56%; height: 100%; left: 8%; top: 0; z-index: 2; animation: float 7s ease-in-out infinite; }
.frame-b { width: 38%; height: 62%; right: 0; top: 4%; z-index: 1; border-radius: 24px 24px 200px 200px; animation: float 8s ease-in-out infinite 1s; }
.frame-c { width: 34%; height: 44%; right: 6%; bottom: 0; z-index: 3; border-radius: 24px; animation: float 6s ease-in-out infinite 2s; }
@keyframes float { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-12px);} }
.hero-stamp { position: absolute; left: -16px; bottom: 30px; z-index: 4; width: 130px; height: 130px; filter: drop-shadow(0 20px 30px rgba(0,0,0,.55)); animation: spin-slow 40s linear infinite; }
.hero-stamp img { width: 100%; height: 100%; object-fit: contain; }
@keyframes spin-slow { to { transform: rotate(360deg);} }
.scroll-hint { position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%); width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.5); border-radius: 14px; z-index: 3; }
.scroll-hint span { position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; background: var(--gold); border-radius: 2px; transform: translateX(-50%); animation: scrolldot 1.8s ease-in-out infinite; }
@keyframes scrolldot { 0% { opacity: 1; top: 8px;} 100% { opacity: 0; top: 24px;} }

/* ---- Stats ---- */
.stats { padding: 0; background: var(--maroon); color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { text-align: center; padding: 2.2rem 1rem; border-right: 1px solid rgba(255,255,255,.08); }
.stat:last-child { border-right: 0; }
.stat-value { font-family: var(--font-serif); font-size: 2.8rem; font-weight: 600; color: var(--gold-2); line-height: 1; }
.stat-label { font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; margin-top: .5rem; color: rgba(255,255,255,.85); }
.stat-sub { font-size: .78rem; color: rgba(255,255,255,.55); margin-top: .2rem; }

/* ---- About ---- */
.about { background: var(--ivory); }
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 4.5rem; align-items: center; }
.about-visual { position: relative; padding-bottom: 3rem; }
.about-img-main { border-radius: 300px 300px 24px 24px; overflow: hidden; width: 78%; box-shadow: var(--shadow); border: 8px solid #fff; }
.about-img-main img { aspect-ratio: 3/4.2; object-fit: cover; width: 100%; }
.about-img-small { position: absolute; right: 0; bottom: 0; width: 44%; border-radius: 24px; overflow: hidden; border: 8px solid #fff; box-shadow: var(--shadow); }
.about-img-small img { aspect-ratio: 3/4; object-fit: cover; width: 100%; }
.about-badge { position: absolute; left: -10px; top: 12%; background: var(--white); border-radius: 16px; padding: .8rem 1rem; display: flex; align-items: center; gap: .8rem; box-shadow: var(--shadow); border: 1px solid var(--sand); }
.about-badge img { width: 48px; height: 48px; object-fit: contain; }
.about-badge strong { display: block; font-family: var(--font-serif); color: var(--maroon); font-size: 1.1rem; }
.about-badge span { font-size: .72rem; color: var(--muted); line-height: 1.3; display: block; }
.about-copy h2 { margin-bottom: .5rem; }
.about-copy p { color: #4b3b3e; }
.about-points { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem 1rem; margin: 1.5rem 0 2rem; }
.about-points li { display: flex; align-items: center; gap: .6rem; font-size: .95rem; font-weight: 400; }
.about-points i { color: var(--gold); font-size: .8rem; width: 22px; height: 22px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: var(--gold-3); }
.about-actions { display: flex; gap: .8rem; flex-wrap: wrap; }

/* ---- Marquee ---- */
.marquee { background: var(--gold); color: var(--maroon); overflow: hidden; padding: .9rem 0; border-block: 1px solid rgba(74,28,42,.15); }
.marquee-track { display: flex; gap: 2rem; width: max-content; animation: marquee 40s linear infinite; font-family: var(--font-serif); font-size: 1.15rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.marquee-track i { font-style: normal; color: var(--maroon-3); }
@keyframes marquee { to { transform: translateX(-50%);} }

/* ---- Services ---- */
.services { background: linear-gradient(180deg, var(--cream) 0%, var(--ivory) 100%); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.service-card { background: #fff; border-radius: var(--radius); padding: 2rem 1.6rem 1.6rem; position: relative; border: 1px solid var(--sand); transition: transform .4s var(--ease), box-shadow .4s var(--ease); display: flex; flex-direction: column; overflow: hidden; }
.service-card::before { content: ''; position: absolute; inset: 0 0 auto 0; height: 4px; background: linear-gradient(90deg, var(--gold), var(--henna-2)); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.service-card:hover::before { transform: scaleX(1); }
.service-card.featured { background: var(--maroon); color: rgba(255,255,255,.85); border-color: var(--maroon); }
.service-card.featured h3 { color: var(--gold-2); }
.service-card.featured .service-icon { background: rgba(201,162,74,.15); color: var(--gold-2); }
.service-card.featured .service-tags span { background: rgba(255,255,255,.1); color: #fff; }
.service-card.featured .service-link { color: var(--gold-2); }
.service-icon { width: 60px; height: 60px; border-radius: 16px; background: var(--gold-3); color: var(--henna); display: grid; place-items: center; font-size: 1.5rem; margin-bottom: 1.2rem; }
.service-card h3 { font-size: 1.35rem; margin-bottom: .6rem; }
.service-card p { font-size: .92rem; flex: 1; color: inherit; opacity: .85; }
.service-tags { display: flex; gap: .4rem; flex-wrap: wrap; margin-bottom: 1rem; }
.service-tags span { font-size: .7rem; letter-spacing: .06em; text-transform: uppercase; background: var(--cream); color: var(--henna); padding: .25rem .6rem; border-radius: 999px; font-weight: 500; }
.service-link { font-weight: 500; font-size: .88rem; color: var(--maroon); display: inline-flex; gap: .4rem; align-items: center; }
.service-link i { transition: transform .3s; }
.service-link:hover i { transform: translateX(4px); }

/* ---- Why ---- */
.why { background: var(--maroon); color: #fff; overflow: hidden; }
.why .section-title h2, .why h3 { color: #fff; }
.why .section-title h2 em { color: var(--gold-2); }
.why .sub { color: rgba(255,255,255,.7); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; position: relative; z-index: 1; }
.why-item { display: flex; gap: 1.1rem; padding: 1.6rem; border-radius: var(--radius); background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); transition: background .3s, transform .3s; }
.why-item:hover { background: rgba(255,255,255,.08); transform: translateY(-4px); }
.why-icon { flex: none; width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: var(--maroon); display: grid; place-items: center; font-size: 1.2rem; }
.why-item h3 { font-size: 1.2rem; margin-bottom: .4rem; }
.why-item p { font-size: .9rem; color: rgba(255,255,255,.7); margin: 0; }

/* ---- Gallery ---- */
.gallery { background: var(--ivory); }
.gallery-filters { display: flex; gap: .5rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2.2rem; }
.gallery-filters button { border: 1.5px solid var(--sand); background: #fff; color: var(--henna); padding: .5rem 1.1rem; border-radius: 999px; font-family: var(--font-sans); font-size: .82rem; letter-spacing: .06em; cursor: pointer; transition: .3s; font-weight: 400; }
.gallery-filters button:hover { border-color: var(--gold); }
.gallery-filters button.active { background: var(--maroon); color: #fff; border-color: var(--maroon); }
.gallery-filters-track { display: flex; gap: .5rem; flex-wrap: wrap; justify-content: center; }
/* Masonry (CSS columns) — gap-free, portrait-friendly */
.gallery-mosaic { columns: 4; column-gap: 1rem; }
.gallery-item { position: relative; display: block; break-inside: avoid; margin: 0 0 1rem; border-radius: 18px; overflow: hidden; cursor: zoom-in; background: var(--sand); opacity: 0; transform: translateY(20px); animation: gin .6s var(--ease) forwards; box-shadow: 0 16px 34px -22px rgba(74,28,42,.5); isolation: isolate; transition: box-shadow .4s var(--ease), transform .4s var(--ease); }
.gallery-item:hover { box-shadow: 0 26px 50px -24px rgba(74,28,42,.6); }
.gallery-item.r-a { aspect-ratio: 3 / 4; }
.gallery-item.r-b { aspect-ratio: 9 / 14; }
.gallery-item.r-c { aspect-ratio: 4 / 5; }
.gallery-item.r-d { aspect-ratio: 1 / 1; }
@keyframes gin { to { opacity: 1; transform: none; } }
.gallery-item img { position: absolute; inset: 0; display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.gallery-item:hover img { transform: scale(1.06); }
.g-overlay { position: absolute; inset: 0; padding: .75rem; display: flex; flex-direction: column; justify-content: space-between; pointer-events: none; }
.g-overlay::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(43,27,30,.0) 40%, rgba(43,27,30,.85) 100%); opacity: .75; transition: opacity .4s; }
.gallery-item:hover .g-overlay::before { opacity: 1; }
.gallery-item .cat { position: relative; align-self: flex-start; background: rgba(255,255,255,.88); backdrop-filter: blur(6px); color: var(--maroon); font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; padding: .26rem .6rem; border-radius: 999px; font-weight: 500; }
.gallery-item .cap { position: relative; color: #fff; font-family: var(--font-serif); font-size: 1.02rem; font-weight: 600; margin: 0; line-height: 1.25; text-shadow: 0 2px 10px rgba(0,0,0,.4); transform: translateY(6px); opacity: .95; transition: all .45s var(--ease); }
.gallery-item .g-zoom { position: absolute; right: .75rem; top: .75rem; width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,.9); color: var(--maroon); display: grid; place-items: center; font-size: .75rem; transform: scale(0); transition: transform .35s var(--ease); }
.gallery-item:hover .cap, .gallery-item:hover .g-zoom { transform: none; opacity: 1; }
.gallery-item.hidden { display: none; }
.gallery-more { display: flex; gap: .8rem; justify-content: center; align-items: center; margin-top: 2.5rem; flex-wrap: wrap; }
.gallery-count { width: 100%; text-align: center; color: var(--muted); font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; }

/* ---- Process ---- */
.process { background: var(--cream); }
.process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.2rem; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 34px; left: 10%; right: 10%; height: 1px; background: repeating-linear-gradient(90deg, var(--gold) 0 8px, transparent 8px 16px); }
.process-steps li { text-align: center; padding: 0 .6rem; position: relative; }
.step-no { display: inline-grid; place-items: center; width: 68px; height: 68px; border-radius: 50%; background: #fff; border: 2px solid var(--gold); color: var(--maroon); font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700; margin-bottom: 1.1rem; position: relative; z-index: 1; box-shadow: 0 10px 30px -12px rgba(201,162,74,.6); }
.process-steps h3 { font-size: 1.25rem; margin-bottom: .4rem; }
.process-steps p { font-size: .9rem; color: var(--muted); }

/* ---- Videos ---- */
.videos { background: var(--ivory); }
.videos-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.video-card { position: relative; border: 0; padding: 0; background: var(--maroon); border-radius: 14px; overflow: hidden; aspect-ratio: 9/14; cursor: pointer; box-shadow: 0 20px 40px -20px rgba(74,28,42,.5); }
.video-card img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .8s var(--ease), opacity .3s; }
.video-card:hover img { transform: scale(1.06); opacity: .8; }
.video-card .play { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 62px; height: 62px; border-radius: 50%; background: rgba(255,255,255,.92); color: var(--maroon); display: grid; place-items: center; font-size: 1.2rem; padding-left: 4px; box-shadow: 0 10px 30px rgba(0,0,0,.4); transition: transform .3s; }
.video-card:hover .play { transform: translate(-50%,-50%) scale(1.1); }
.video-card .video-title { position: absolute; inset: auto 0 0 0; padding: 2rem .9rem .9rem; background: linear-gradient(0deg, rgba(43,27,30,.9), transparent); color: #fff; font-family: var(--font-sans); font-size: .9rem; text-align: left; font-weight: 400; }

/* ---- Testimonials ---- */
.testimonials { background: linear-gradient(180deg, var(--cream), var(--ivory)); }
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.testi-card { margin: 0; background: #fff; border-radius: var(--radius); padding: 2rem 2rem 1.6rem; position: relative; border: 1px solid var(--sand); transition: transform .3s, box-shadow .3s; }
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.testi-card::before { content: '\201C'; position: absolute; top: -.2rem; right: 1.4rem; font-family: var(--font-serif); font-size: 6rem; color: var(--gold-3); line-height: 1; }
.testi-card .stars { color: var(--gold); letter-spacing: .15em; margin-bottom: .8rem; }
.testi-card p { font-family: var(--font-serif); font-size: 1.15rem; font-style: italic; color: #3d2c30; }
.testi-card footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px dashed var(--sand); padding-top: .9rem; font-size: .85rem; }
.testi-card footer strong { color: var(--maroon); font-weight: 500; }
.testi-card footer span { color: var(--muted); }

/* ---- Instagram ---- */
.insta { background: var(--ivory); padding-top: 0; }
.insta-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 1.5rem; margin-bottom: 1.8rem; flex-wrap: wrap; }
.insta-head h2 { font-size: 2rem; }
.insta-head h2 i { background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af); -webkit-background-clip: text; background-clip: text; color: transparent; margin-right: .3rem; }
.insta-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: .6rem; }
.insta-grid a { position: relative; aspect-ratio: 1; overflow: hidden; border-radius: 10px; display: block; }
.insta-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.insta-grid a::after { content: '\f16d'; font-family: 'Font Awesome 6 Brands'; position: absolute; inset: 0; display: grid; place-items: center; color: #fff; font-size: 1.6rem; background: rgba(74,28,42,.55); opacity: 0; transition: opacity .3s; }
.insta-grid a:hover::after { opacity: 1; }
.insta-grid a:hover img { transform: scale(1.08); }

/* ---- FAQ ---- */
.faq { background: var(--cream); }
.faq-list details { background: #fff; border: 1px solid var(--sand); border-radius: 14px; margin-bottom: .8rem; overflow: hidden; }
.faq-list summary { list-style: none; cursor: pointer; padding: 1.1rem 1.4rem; font-family: var(--font-serif); font-size: 1.2rem; font-weight: 600; color: var(--maroon); display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary i { color: var(--gold); font-size: .85rem; transition: transform .3s; }
.faq-list details[open] summary i { transform: rotate(45deg); }
.faq-list details p { padding: 0 1.4rem 1.2rem; color: #4b3b3e; margin: 0; }

/* ---- Contact ---- */
.contact { background: var(--maroon); color: #fff; padding-bottom: 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; padding-bottom: 4rem; }
.contact-info h2 { color: #fff; }
.contact-info h2 em { color: var(--gold-2); }
.contact-info > p { color: rgba(255,255,255,.75); }
.contact-list { display: grid; gap: 1.3rem; margin: 2rem 0; }
.contact-list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact-list i { flex: none; width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: rgba(201,162,74,.15); color: var(--gold-2); }
.contact-list span { display: block; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: .15rem; }
.contact-list a, .contact-list p { color: #fff; font-size: 1rem; margin: 0; }
.contact-list a:hover { color: var(--gold-2); }
.socials { display: flex; gap: .7rem; }
.socials a { width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25); display: grid; place-items: center; color: #fff; font-size: 1.1rem; transition: .3s; }
.socials a:hover { background: var(--gold); color: var(--maroon); border-color: var(--gold); transform: translateY(-3px); }
.contact-form-wrap { background: #fff; border-radius: 24px; padding: 2.2rem; color: var(--ink); box-shadow: 0 40px 80px -30px rgba(0,0,0,.6); }
.contact-form h3 { font-size: 1.7rem; margin-bottom: .3rem; }
.contact-form h3 i { color: #25d366; }
.form-sub { color: var(--muted); font-size: .9rem; margin-bottom: 1.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form label { display: block; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--henna); font-weight: 500; margin-bottom: 1rem; }
.contact-form input, .contact-form select, .contact-form textarea { display: block; width: 100%; margin-top: .4rem; padding: .8rem 1rem; border: 1.5px solid var(--sand); border-radius: 12px; font-family: var(--font-sans); font-size: .95rem; background: var(--ivory); color: var(--ink); transition: border .3s, box-shadow .3s; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: 0; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(201,162,74,.18); }
.form-note { margin: .8rem 0 0; font-size: .85rem; color: var(--muted); text-align: center; min-height: 1.2em; }
.form-note.error { color: #b3261e; }
.form-note.ok { color: #1c7c3a; }
.map-wrap { height: 380px; filter: grayscale(.4) sepia(.25) contrast(1.05); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---- Footer ---- */
.footer { background: var(--ink); color: rgba(255,255,255,.7); padding-top: 4rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer .brand-text { color: #fff; }
.footer p { margin-top: 1rem; font-size: .9rem; }
.footer h4 { color: var(--gold-2); font-size: 1.2rem; margin-bottom: 1rem; letter-spacing: .05em; }
.footer ul li { margin-bottom: .5rem; font-size: .9rem; }
.footer ul a:hover { color: var(--gold-2); }
.footer-social i { width: 20px; color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.2rem 0; font-size: .8rem; }
.footer-bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; }
.footer-bottom i { color: #e25563; }
.credit a { color: var(--gold-2); font-weight: 500; }
.credit a:hover { text-decoration: underline; }
.credit i { color: #25d366 !important; }

/* ---- WhatsApp float ---- */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 90; display: flex; align-items: center; gap: .6rem; background: #25d366; color: #fff; padding: .8rem 1rem .8rem .9rem; border-radius: 999px; box-shadow: 0 15px 40px -10px rgba(37,211,102,.7); font-weight: 500; font-size: .9rem; transition: transform .3s; }
.wa-float i { font-size: 1.6rem; }
.wa-float:hover { transform: translateY(-3px) scale(1.03); }
.wa-float::before { content: ''; position: absolute; inset: -6px; border-radius: inherit; border: 2px solid #25d366; opacity: .6; animation: ring 2s ease-out infinite; }
@keyframes ring { 0% { transform: scale(.9); opacity: .7;} 100% { transform: scale(1.25); opacity: 0;} }

/* ---- Mobile bottom tab bar ---- */
/* Floating glass tab bar (mobile) */
.tabbar { display: none; position: fixed; left: 12px; right: 12px; bottom: calc(10px + env(safe-area-inset-bottom)); z-index: 95; background: rgba(52,18,30,.9); -webkit-backdrop-filter: blur(18px) saturate(1.4); backdrop-filter: blur(18px) saturate(1.4); border: 1px solid rgba(201,162,74,.28); border-radius: 26px; padding: .4rem .35rem; box-shadow: 0 18px 40px -14px rgba(0,0,0,.65), inset 0 1px 0 rgba(255,255,255,.08); }
.tabbar a { flex: 1; display: flex; flex-direction: column; align-items: center; gap: .16rem; color: rgba(255,255,255,.62); font-size: .6rem; letter-spacing: .06em; font-weight: 500; padding: .32rem 0 .28rem; position: relative; transition: color .3s var(--ease); -webkit-tap-highlight-color: transparent; }
.tab-ico { position: relative; width: 44px; height: 30px; display: grid; place-items: center; border-radius: 14px; transition: background .35s var(--ease); }
.tab-ico i { grid-area: 1 / 1; font-size: 1.35rem; line-height: 1; transition: opacity .3s, transform .35s var(--ease); }
.tab-ico i:last-child { opacity: 0; transform: scale(.75); }
.tabbar a.active { color: var(--gold-2); }
.tabbar a.active .tab-ico { background: rgba(201,162,74,.18); }
.tabbar a.active .tab-ico i:first-child { opacity: 0; transform: scale(.75); }
.tabbar a.active .tab-ico i:last-child { opacity: 1; transform: none; }
.tab-center .tab-logo { width: 56px; height: 56px; margin-top: -30px; border-radius: 50%; background: radial-gradient(circle at 30% 25%, #6a2a3c, var(--maroon) 70%); border: 2px solid var(--gold); display: grid; place-items: center; box-shadow: 0 12px 26px -8px rgba(0,0,0,.7), 0 0 0 4px rgba(52,18,30,.9); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.tab-center .tab-logo img { width: 44px; height: 44px; object-fit: contain; }
.tab-center.active .tab-logo { transform: translateY(-3px) scale(1.04); box-shadow: 0 0 0 4px rgba(52,18,30,.9), 0 0 0 7px rgba(201,162,74,.35), 0 14px 28px -8px rgba(0,0,0,.7); }

/* ---- Lightbox / Video Modal ---- */
.lightbox, .video-modal { position: fixed; inset: 0; z-index: 500; background: rgba(20,10,13,.94); display: none; align-items: center; justify-content: center; backdrop-filter: blur(6px); }
.lightbox.open, .video-modal.open { display: flex; animation: fade .3s; }
@keyframes fade { from { opacity: 0;} }
.lightbox figure { margin: 0; max-height: 92vh; max-width: 92vw; display: flex; flex-direction: column; align-items: center; gap: .8rem; }
.lightbox img { max-height: 84vh; max-width: 92vw; border-radius: 12px; box-shadow: 0 40px 100px rgba(0,0,0,.7); object-fit: contain; }
.lightbox figcaption { color: #fff; font-family: var(--font-serif); font-size: 1.2rem; }
.lb-close, .lb-prev, .lb-next { position: absolute; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: #fff; width: 48px; height: 48px; border-radius: 50%; cursor: pointer; display: grid; place-items: center; font-size: 1.1rem; transition: .3s; z-index: 2; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--gold); color: var(--maroon); }
.lb-close { top: 20px; right: 20px; }
.lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 20px; top: 50%; transform: translateY(-50%); }
.video-frame { width: min(420px, 92vw); aspect-ratio: 9/16; max-height: 90vh; border-radius: 18px; overflow: hidden; background: #000; box-shadow: 0 40px 100px rgba(0,0,0,.7); }
.video-frame iframe { width: 100%; height: 100%; border: 0; }

/* ---- Reveal animations ---- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .hero-bg, .mandala, .marquee-track, .hero-frame, .hero-stamp { animation: none !important; } }

/* ---- Responsive ---- */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-mosaic { columns: 3; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(3, 1fr); row-gap: 2.5rem; }
  .process-steps::before { display: none; }
  .nav-links { gap: 1.2rem; }
  .nav-cta .btn-outline { display: none; }
}
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .navbar { padding: .55rem 0; background: linear-gradient(180deg, rgba(43,27,30,.75), transparent); }
  .navbar.scrolled { background: rgba(74,28,42,.94); }
  .nav-inner { justify-content: center; }
  .tabbar { display: flex; }
  body { padding-bottom: 84px; }
  .wa-float { bottom: 96px; right: 14px; }
  .wa-float span { display: none; }
  .wa-float { padding: .8rem; }

  /* Hero: images first, then text */
  .hero { min-height: auto; padding: 5.2rem 0 3rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 1.6rem; text-align: center; }
  .hero-visual { order: -1; height: auto; width: 100%; display: grid; grid-template-columns: 1.15fr 1fr; grid-template-rows: 190px 150px; gap: .7rem; }
  .hero-frame, .hero-stamp { position: static; animation: none; width: auto; height: auto; }
  .hero-frame { border-width: 3px; border-radius: 18px; }
  .frame-a { grid-row: 1 / 3; border-radius: 120px 120px 18px 18px; }
  .frame-b { border-radius: 18px 18px 18px 90px; }
  .frame-c { border-radius: 18px; }
  .hero-stamp { position: absolute; left: 50%; top: 4.6rem; transform: translateX(-50%); width: 88px; height: 88px; z-index: 5; filter: drop-shadow(0 12px 20px rgba(0,0,0,.6)); animation: spin-slow 40s linear infinite; }
  @keyframes spin-slow { from { transform: translateX(-50%) rotate(0);} to { transform: translateX(-50%) rotate(360deg);} }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-kicker { font-size: .68rem; letter-spacing: .18em; }
  .hero h1 { align-items: center; }
  .hero h1 .h1-name { font-size: 4.4rem; margin: 0; padding: 0 .15em; }
  .hero h1 .h1-sub { font-size: 1.05rem; letter-spacing: .32em; margin-top: -.1em; padding-left: 0; gap: .6em; }
  .hero h1 .h1-sub i, .hero h1 .h1-sub i:first-child { display: block; width: 1.6em; }
  .hero-tagline { font-size: 1.25rem; margin: .6rem 0 .4rem; }
  .hero-desc { font-size: .95rem; margin-inline: auto; }
  .hero-actions { justify-content: center; gap: .6rem; margin-top: 1.2rem; width: 100%; }
  .hero-actions .btn { flex: 1; justify-content: center; padding: .9rem 1rem; font-size: .9rem; }
  .hero-badges { justify-content: center; gap: .6rem .9rem; margin-top: 1.4rem; }
  .hero-badges li { font-size: .75rem; background: rgba(255,255,255,.08); padding: .3rem .7rem; border-radius: 999px; border: 1px solid rgba(255,255,255,.12); }
  .scroll-hint { display: none; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat { border-bottom: 1px solid rgba(255,255,255,.08); }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { max-width: 520px; margin: 0 auto; }
  .testi-grid { grid-template-columns: 1fr; }
  .videos-grid { grid-template-columns: repeat(2, 1fr); }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }

  /* Gallery filters scroll horizontally */
  .gallery-filters { justify-content: flex-start; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; margin-inline: -4%; padding: .2rem 4%; }
  .gallery-filters::-webkit-scrollbar { display: none; }
  .gallery-filters-track { flex-wrap: nowrap; justify-content: flex-start; }
  .gallery-filters button { white-space: nowrap; }
  .gallery-mosaic { columns: 3; column-gap: .6rem; }
  .gallery-item { margin-bottom: .6rem; border-radius: 14px; }
  .gallery-item .cat { font-size: .52rem; padding: .2rem .5rem; }
  .gallery-item .cap { font-size: .8rem; }
  .g-overlay { padding: .5rem; }
  .gallery-more { margin-top: 1.6rem; gap: .6rem; }
  .gallery-more .btn { flex: 1; justify-content: center; min-width: 45%; }

  /* Compact footer */
  .footer { padding-top: 2.2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.4rem 1.2rem; padding-bottom: 1.6rem; }
  .footer-grid > div:first-child { grid-column: 1 / -1; text-align: center; }
  .footer-grid > div:first-child .brand { justify-content: center; }
  .footer p { font-size: .82rem; margin-top: .6rem; }
  .footer h4 { font-size: 1rem; margin-bottom: .5rem; }
  .footer ul li { margin-bottom: .3rem; font-size: .82rem; }
  .footer-grid > div:nth-child(3) { display: none; }
  .footer-bottom { padding: .9rem 0 2.2rem; font-size: .75rem; }
  .footer-bottom .container { flex-direction: column; align-items: center; text-align: center; gap: .3rem; }
}
@media (max-width: 600px) {
  section { padding: 3.5rem 0; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-mosaic { columns: 2; column-gap: .6rem; }
  .gallery-item .cap { font-size: .88rem; }
  .gallery-item .cat { font-size: .56rem; }
  .why-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-points { grid-template-columns: 1fr; }
  .hero-visual { grid-template-rows: 170px 130px; }
  .about-badge { left: 0; top: auto; bottom: 0; }
  .contact-form-wrap { padding: 1.5rem; }
  .bt-name { font-size: 1.4rem; }
  .bt-sub { font-size: .58rem; letter-spacing: .26em; }
  .brand img { width: 42px; height: 42px; }
  .tabbar { left: 8px; right: 8px; }
  .marquee-track { font-size: .95rem; }
}
