/* ============================================================
   ELFINITY – styles.css   (Clean rebuild)
   ============================================================ */
:root {
  --purple:       #7B2FBE;
  --purple-mid:   #9B59D6;
  --purple-light: #C49EE8;
  --purple-pale:  #F4EEFF;
  --purple-bg:    #FAF5FF;
  --gold:         #C9943A;
  --gold-light:   #F9EDD0;
  --gold-shine:   #E8C87A;
  --white:        #FFFFFF;
  --off-white:    #FDFBFF;
  --grey-pale:    #F3F0F7;
  --grey-light:   #E0D8EC;
  --grey-mid:     #B0A8BF;
  --grey-dark:    #6A5F7A;
  --charcoal:     #2A1F3D;
  --ink:          #1A0F2E;
  --font-h:       'Cormorant Garamond', Georgia, serif;
  --font-b:       'DM Sans', system-ui, sans-serif;
  --container:    1200px;
  --gap:          96px;
  --r:            16px;
  --rl:           24px;
  --sh-sm:        0 2px 12px rgba(74,14,143,.07);
  --sh-md:        0 8px 32px rgba(74,14,143,.12);
  --sh-lg:        0 20px 60px rgba(74,14,143,.16);
  --sh-gold:      0 8px 28px rgba(201,148,58,.28);
  --ease:         cubic-bezier(.25,.46,.45,.94);
  --spring:       cubic-bezier(.34,1.56,.64,1);
  --t:            .35s;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;font-size:16px}
body{font-family:var(--font-b);background:var(--off-white);color:var(--charcoal);line-height:1.7;overflow-x:hidden}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
ul{list-style:none}
button{cursor:pointer;border:none;background:none;font-family:inherit}

/* Utils */
.container{max-width:var(--container);margin:0 auto;padding:0 24px}
.section-pad{padding:var(--gap) 0}
.section-header{text-align:center;max-width:680px;margin:0 auto 56px}
.section-eyebrow{display:inline-flex;align-items:center;gap:8px;font-size:.75rem;font-weight:600;letter-spacing:.14em;text-transform:uppercase;color:var(--gold);background:var(--gold-light);border:1px solid rgba(201,148,58,.3);padding:6px 16px;border-radius:50px;margin-bottom:14px}
.section-heading{font-family:var(--font-h);font-size:clamp(2rem,4vw,2.8rem);font-weight:700;line-height:1.2;color:var(--ink);margin-bottom:14px}
.section-heading em{font-style:italic;color:var(--purple);font-weight:500}
.section-subtext{font-size:1rem;color:var(--grey-dark);font-weight:300;max-width:540px;margin:0 auto}
.open-tag{display:inline-block;font-size:.72rem;font-weight:600;color:#2D8A4E;background:#E8F5ED;border-radius:50px;padding:3px 10px;margin-top:5px}

/* Buttons */
.btn{display:inline-flex;align-items:center;gap:9px;font-family:var(--font-b);font-weight:600;font-size:.9rem;padding:12px 26px;border-radius:50px;transition:all var(--t) var(--ease);cursor:pointer;white-space:nowrap}
.btn-gold{background:linear-gradient(135deg,var(--gold),#E8A83C);color:var(--white);box-shadow:0 4px 18px rgba(201,148,58,.38)}
.btn-gold:hover{transform:translateY(-2px);box-shadow:0 8px 28px rgba(201,148,58,.55)}
.btn-outline{background:transparent;color:var(--charcoal);border:2px solid var(--grey-light)}
.btn-outline:hover{border-color:var(--purple-mid);color:var(--purple);transform:translateY(-2px)}
.btn-white{background:var(--white);color:var(--charcoal);box-shadow:0 4px 18px rgba(0,0,0,.12)}
.btn-white:hover{transform:translateY(-2px);box-shadow:0 8px 28px rgba(0,0,0,.18)}
.directions-btn{width:100%;justify-content:center;margin-top:14px}

/* Reveal animation */
.reveal{opacity:0;transform:translateY(30px);transition:opacity .65s var(--ease),transform .65s var(--ease)}
.reveal.visible{opacity:1;transform:translateY(0)}

/* ── NAVBAR ── */
#navbar{position:fixed;top:0;left:0;right:0;z-index:1000;background:rgba(253,251,255,.94);backdrop-filter:blur(16px);border-bottom:1px solid transparent;transition:border-color .3s,box-shadow .3s}
#navbar.scrolled{border-bottom-color:var(--grey-light);box-shadow:var(--sh-sm)}
.nav-container{max-width:var(--container);margin:0 auto;padding:0 24px;height:68px;display:flex;align-items:center;justify-content:space-between;gap:20px}

/* Logo: controlled height, auto width, never overflows */
.nav-logo{display:flex;align-items:center;flex-shrink:0}
.nav-logo-img{height:42px;width:auto;max-width:160px;object-fit:contain;display:block;transition:opacity var(--t) ease}
.nav-logo:hover .nav-logo-img{opacity:.82}

.nav-links{display:flex;align-items:center;gap:4px;list-style:none}
.nav-links li a{font-size:.875rem;font-weight:500;color:var(--grey-dark);padding:7px 13px;border-radius:8px;transition:color var(--t) ease,background var(--t) ease}
.nav-links li a:hover,.nav-links li a.active{color:var(--purple);background:var(--purple-pale)}
.nav-right{display:flex;align-items:center;gap:14px;flex-shrink:0}
.nav-cta{font-size:.85rem;padding:9px 20px}

.hamburger{display:none;flex-direction:column;gap:5px;padding:7px;border-radius:8px;transition:background var(--t) ease}
.hamburger:hover{background:var(--grey-pale)}
.hamburger span{display:block;width:22px;height:2px;background:var(--charcoal);border-radius:2px;transition:all .3s ease}
.hamburger.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.hamburger.open span:nth-child(2){opacity:0;transform:scaleX(0)}
.hamburger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

.mobile-nav{max-height:0;overflow:hidden;border-top:1px solid transparent;transition:max-height .4s var(--ease),border-color .3s ease;background:rgba(253,251,255,.97)}
.mobile-nav.open{max-height:460px;border-top-color:var(--grey-light)}
.mobile-nav ul{display:flex;flex-direction:column;gap:2px;padding:16px 24px 24px}
.mobile-nav ul li{border-bottom:1px solid var(--grey-pale)}
.mobile-link{display:block;padding:12px 4px;font-size:1rem;font-weight:500;color:var(--grey-dark);transition:color var(--t) ease,padding-left var(--t) ease}
.mobile-link:hover{color:var(--purple);padding-left:10px}
.mobile-cta{display:block;margin-top:16px;text-align:center;border-bottom:none!important}

/* ── HERO ── */
.hero{min-height:100vh;padding-top:68px;background:linear-gradient(145deg,var(--purple-bg) 0%,#FEF9FF 50%,#FAF4FF 100%);display:flex;flex-direction:row;align-items:center;justify-content:space-between;position:relative;overflow:hidden;gap:40px}
.hero-blob{position:absolute;border-radius:50%;filter:blur(90px);pointer-events:none;z-index:0}
.blob-1{width:500px;height:500px;top:-150px;left:-100px;background:radial-gradient(circle,rgba(155,89,214,.14) 0%,transparent 70%);animation:blobDrift 14s ease-in-out infinite}
.blob-2{width:400px;height:400px;bottom:-100px;right:-60px;background:radial-gradient(circle,rgba(201,148,58,.12) 0%,transparent 70%);animation:blobDrift 18s ease-in-out infinite reverse}
@keyframes blobDrift{0%,100%{transform:translate(0,0) scale(1)}33%{transform:translate(20px,-15px) scale(1.04)}66%{transform:translate(-10px,20px) scale(.96)}}

.hero-content{flex:1;max-width:540px;padding:60px 0 60px 5vw;position:relative;z-index:1}
.hero-visual{flex:1;max-width:480px;height:460px;display:grid;grid-template-columns:3fr 2fr;grid-template-rows:1fr 1fr;gap:14px;margin:60px 5vw 60px 0;position:relative;z-index:1}

.hero-eyebrow{display:inline-block;font-size:.78rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:var(--purple-mid);background:var(--purple-pale);border:1px solid rgba(155,89,214,.3);padding:7px 16px;border-radius:50px;margin-bottom:22px}
.hero-heading{font-family:var(--font-h);font-size:clamp(2.4rem,5vw,3.8rem);font-weight:700;line-height:1.1;color:var(--ink);margin-bottom:20px}
.hero-heading em{font-style:italic;color:var(--purple);font-weight:500}
.hero-subtext{font-size:1rem;color:var(--grey-dark);font-weight:300;line-height:1.8;max-width:460px;margin-bottom:32px}
.hero-ctas{display:flex;flex-wrap:wrap;gap:14px;margin-bottom:44px}
.hero-stats{display:flex;align-items:center;gap:24px}
.stat{text-align:center}
.stat-num{display:block;font-family:var(--font-h);font-size:1.8rem;font-weight:700;color:var(--ink);line-height:1}
.stat-num sup{font-size:.8rem;color:var(--gold)}
.stat-label{font-size:.72rem;color:var(--grey-dark);text-transform:uppercase;letter-spacing:.06em}
.stat-divider{width:1px;height:32px;background:var(--grey-light)}

.hero-img-frame{border-radius:var(--r);overflow:hidden;box-shadow:var(--sh-md);position:relative}
.hero-img-frame img{width:100%;height:100%;object-fit:cover;transition:transform .7s var(--ease)}
.hero-img-frame:hover img{transform:scale(1.05)}
.main-frame{grid-column:1;grid-row:1/3;border-radius:var(--rl);box-shadow:var(--sh-lg)}
.side-frame-1{grid-column:2;grid-row:1}
.side-frame-2{grid-column:2;grid-row:2}
.frame-badge{position:absolute;bottom:16px;left:16px;background:rgba(255,255,255,.95);backdrop-filter:blur(8px);border-radius:50px;padding:8px 16px;font-size:.78rem;font-weight:600;color:var(--charcoal);box-shadow:var(--sh-sm)}
.hero-float-tag{position:absolute;top:-10px;right:-10px;background:linear-gradient(135deg,var(--gold),#E8A83C);color:var(--white);border-radius:50px;padding:9px 18px;font-size:.8rem;font-weight:600;box-shadow:var(--sh-gold);white-space:nowrap;z-index:2}
.scroll-hint{position:absolute;bottom:28px;left:50%;transform:translateX(-50%);display:flex;flex-direction:column;align-items:center;gap:8px;font-size:.7rem;font-weight:600;letter-spacing:.14em;text-transform:uppercase;color:var(--grey-mid);animation:scrollBounce 2.5s ease-in-out infinite;z-index:1}
.scroll-line{width:1px;height:32px;background:linear-gradient(to bottom,var(--grey-mid),transparent)}
@keyframes scrollBounce{0%,100%{transform:translateX(-50%) translateY(0)}50%{transform:translateX(-50%) translateY(6px)}}

/* ── MARQUEE ── */
.marquee-strip{background:var(--charcoal);padding:13px 0;overflow:hidden}
.marquee-track{display:inline-flex;align-items:center;animation:marquee 28s linear infinite;white-space:nowrap}
.marquee-track span{font-size:.78rem;font-weight:500;letter-spacing:.08em;text-transform:uppercase;color:var(--grey-light);padding:0 18px}
.marquee-track .dot{color:var(--gold-shine);padding:0;font-size:.6rem}
.marquee-strip:hover .marquee-track{animation-play-state:paused}
@keyframes marquee{from{transform:translateX(0)}to{transform:translateX(-50%)}}

/* ── ABOUT ── */
.about{background:var(--white)}
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:72px;align-items:center}

.about-visual{position:relative}
.about-slideshow{position:relative;width:100%;height:420px;border-radius:var(--rl);overflow:hidden;box-shadow:var(--sh-lg)}
.aslide{position:absolute;inset:0;opacity:0;transition:opacity .7s ease}
.aslide.active{opacity:1}
.aslide img{width:100%;height:100%;object-fit:cover}
.aslide-label{position:absolute;bottom:0;left:0;right:0;background:linear-gradient(to top,rgba(26,15,46,.75),transparent);color:var(--white);padding:40px 24px 20px;font-family:var(--font-h);font-size:1.25rem;font-weight:600}
.aslide-prev,.aslide-next{position:absolute;top:50%;transform:translateY(-50%);z-index:10;width:36px;height:36px;border-radius:50%;background:rgba(255,255,255,.92);color:var(--charcoal);display:flex;align-items:center;justify-content:center;font-size:.8rem;box-shadow:var(--sh-sm);transition:all var(--t) ease}
.aslide-prev{left:12px}.aslide-next{right:12px}
.aslide-prev:hover,.aslide-next:hover{background:var(--purple);color:var(--white)}
.aslide-dots{position:absolute;bottom:14px;left:50%;transform:translateX(-50%);display:flex;gap:7px;z-index:10}
.aslide-dot{width:7px;height:7px;border-radius:50%;background:rgba(255,255,255,.5);cursor:pointer;transition:all var(--t) ease}
.aslide-dot.active{background:var(--white);transform:scale(1.3)}
.about-badge{position:absolute;bottom:-16px;right:-16px;background:linear-gradient(135deg,var(--purple),var(--purple-mid));color:var(--white);border-radius:var(--r);padding:12px 18px;display:flex;align-items:center;gap:10px;font-size:.83rem;font-weight:600;box-shadow:0 8px 28px rgba(123,47,190,.38);z-index:5}
.about-badge i{color:#FFB3C6}

.about-text p{font-size:.95rem;color:var(--grey-dark);line-height:1.85;margin-bottom:14px}
.about-pillars{display:flex;flex-direction:column;gap:10px;margin:22px 0 0}
.about-pillars li{display:flex;align-items:flex-start;gap:12px;font-size:.9rem;color:var(--charcoal)}
.about-pillars li i{color:var(--purple);margin-top:3px;flex-shrink:0}
.about-btn-row{margin-top:28px}

/* ── CATEGORIES ── */
.categories{background:var(--grey-pale)}
.cat-tabs{display:flex;justify-content:center;gap:12px;margin-bottom:28px}
.cat-tab{display:inline-flex;align-items:center;gap:8px;font-size:.95rem;font-weight:600;padding:11px 28px;border-radius:50px;color:var(--grey-dark);background:var(--white);border:2px solid var(--grey-light);transition:all var(--t) ease}
.cat-tab.active{background:linear-gradient(135deg,var(--purple),var(--purple-mid));color:var(--white);border-color:transparent;box-shadow:0 6px 22px rgba(123,47,190,.35)}
.cat-tab:hover:not(.active){border-color:var(--purple-light);color:var(--purple)}
.cat-panel{display:none}
.cat-panel.active{display:block}

.cat-slideshow{position:relative;height:320px;border-radius:var(--rl);overflow:hidden;box-shadow:var(--sh-md);margin-bottom:24px;background:var(--charcoal)}
.cslide{position:absolute;inset:0;opacity:0;transition:opacity .7s ease}
.cslide.active{opacity:1}
.cslide img{width:100%;height:100%;object-fit:cover}
.cslide-caption{position:absolute;bottom:0;left:0;right:0;background:linear-gradient(to top,rgba(26,15,46,.82),transparent);padding:48px 28px 24px;color:var(--white)}
.cslide-caption h3{font-family:var(--font-h);font-size:1.5rem;font-weight:700;margin-bottom:4px}
.cslide-caption p{font-size:.85rem;opacity:.85}
.cslide-prev,.cslide-next{position:absolute;top:50%;transform:translateY(-50%);z-index:10;width:40px;height:40px;border-radius:50%;background:rgba(255,255,255,.9);color:var(--charcoal);display:flex;align-items:center;justify-content:center;font-size:.85rem;box-shadow:var(--sh-sm);transition:all var(--t) ease}
.cslide-prev{left:16px}.cslide-next{right:16px}
.cslide-prev:hover,.cslide-next:hover{background:var(--purple);color:var(--white)}
.cslide-dots{position:absolute;bottom:14px;right:20px;display:flex;gap:7px;z-index:10}
.cslide-dot{width:7px;height:7px;border-radius:50%;background:rgba(255,255,255,.45);cursor:pointer;transition:all var(--t) ease}
.cslide-dot.active{background:var(--white);transform:scale(1.3)}

.cat-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.cat-card{background:var(--white);border-radius:var(--r);padding:24px 18px;text-align:center;border:1px solid var(--grey-light);transition:all var(--t) var(--ease)}
.cat-card:hover{transform:translateY(-5px);box-shadow:var(--sh-md);border-color:var(--purple-pale)}
.cat-icon-wrap{width:52px;height:52px;border-radius:14px;background:var(--purple-pale);display:flex;align-items:center;justify-content:center;font-size:1.25rem;color:var(--purple);margin:0 auto 13px;transition:transform var(--t) var(--spring)}
.cat-icon-wrap.kids{background:#FFF0FA;color:#C050A0}
.cat-card:hover .cat-icon-wrap{transform:scale(1.1) rotate(-6deg)}
.cat-card h3{font-family:var(--font-h);font-size:1rem;font-weight:600;color:var(--ink);margin-bottom:5px}
.cat-card p{font-size:.77rem;color:var(--grey-dark);line-height:1.5}

/* ── WHY US ── */
.why-us{background:var(--white)}

.why-card:hover 

.why-card:hover 

/* ── PROMO ── */
.promo-banner{background:linear-gradient(135deg,#2A0F50,#4A1A90,#2E1060);padding:var(--gap) 0;position:relative;overflow:hidden;display:flex;align-items:center;justify-content:center}
.promo-content{position:relative;z-index:2;text-align:center;max-width:640px;padding:0 24px}
.promo-sparkle{font-size:1.8rem;color:var(--gold-shine);margin-bottom:14px;animation:sparkSpin 4s ease-in-out infinite}
@keyframes sparkSpin{0%,100%{transform:scale(1) rotate(0deg)}50%{transform:scale(1.2) rotate(20deg)}}
.promo-eyebrow{display:inline-block;font-size:.74rem;font-weight:600;letter-spacing:.14em;text-transform:uppercase;color:var(--gold-shine);background:rgba(201,148,58,.18);border:1px solid rgba(201,148,58,.35);padding:6px 16px;border-radius:50px;margin-bottom:14px}
.promo-content h2{font-family:var(--font-h);font-size:clamp(2rem,4vw,3rem);font-weight:700;color:var(--white);margin-bottom:14px}
.promo-content h2 em{font-style:italic;color:var(--gold-shine)}
.promo-content p{font-size:1rem;color:rgba(255,255,255,.72);line-height:1.8;margin-bottom:28px}
.promo-badges{display:flex;justify-content:center;flex-wrap:wrap;gap:18px;margin-top:22px}
.promo-badges span{font-size:.82rem;color:rgba(255,255,255,.75);display:flex;align-items:center;gap:6px}
.promo-badges i{color:var(--gold-shine)}
.promo-visual{position:absolute;inset:0;z-index:1;pointer-events:none}
.promo-circle{position:absolute;border-radius:50%}
.c1{width:400px;height:400px;top:-150px;right:-100px;background:rgba(155,89,214,.12)}
.c2{width:300px;height:300px;bottom:-100px;left:-80px;background:rgba(201,148,58,.1)}
.c3{width:200px;height:200px;top:30%;left:15%;background:rgba(255,255,255,.04)}

/* ── GALLERY ── */
.gallery{background:var(--off-white)}

/* ── TESTIMONIALS ── */
.testimonials{background:var(--purple-pale)}
.testi-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.testi-card{background:var(--white);border-radius:var(--rl);padding:28px;border:1px solid var(--grey-light);transition:all var(--t) ease}
.testi-card:hover{transform:translateY(-4px);box-shadow:var(--sh-md)}
.testi-stars{display:flex;gap:3px;font-size:.8rem;color:var(--gold);margin-bottom:13px}
.testi-card p{font-size:.88rem;color:var(--grey-dark);line-height:1.8;font-style:italic;margin-bottom:20px}
.testi-author{display:flex;align-items:center;gap:12px}
.testi-avatar{width:40px;height:40px;border-radius:50%;background:var(--purple-pale);color:var(--purple);display:flex;align-items:center;justify-content:center;font-family:var(--font-h);font-size:1rem;font-weight:700;flex-shrink:0}
.testi-author strong{display:block;font-size:.88rem;font-weight:600;color:var(--ink)}
.testi-author span{font-size:.74rem;color:var(--grey-mid)}

/* ── CONTACT ── */
.contact{background:var(--white)}
.contact-grid{display:grid;grid-template-columns:1fr 1.6fr;gap:44px;align-items:start}
.contact-card{background:var(--purple-bg);border:1px solid var(--grey-light);border-radius:var(--rl);padding:10px;overflow:hidden}
.contact-item{display:flex;align-items:flex-start;gap:16px;padding:16px;border-radius:var(--r);transition:background var(--t) ease}
.contact-item:hover{background:var(--purple-pale)}
.contact-icon{width:42px;height:42px;flex-shrink:0;border-radius:12px;background:linear-gradient(135deg,var(--purple),var(--purple-mid));color:var(--white);display:flex;align-items:center;justify-content:center;font-size:.95rem}
.contact-icon.whatsapp{background:linear-gradient(135deg,#128C7E,#25D366)}
.contact-icon.email-ic{background:linear-gradient(135deg,#C9943A,#E8A83C)}
.contact-item h4{font-family:var(--font-h);font-size:.93rem;font-weight:600;color:var(--ink);margin-bottom:3px}
.contact-item p{font-size:.84rem;color:var(--grey-dark);line-height:1.7}
.contact-item a{color:var(--grey-dark);transition:color var(--t) ease}
.contact-item a:hover{color:var(--purple)}
.contact-social{display:flex;gap:10px;padding:12px 16px}
.social-btn{display:inline-flex;align-items:center;gap:8px;padding:8px 16px;border-radius:50px;font-size:.8rem;font-weight:600;transition:all var(--t) ease}
.social-btn.instagram{background:linear-gradient(135deg,#833AB4,#E1306C,#F77737);color:var(--white)}
.social-btn.facebook{background:#1877F2;color:var(--white)}
.social-btn:hover{transform:translateY(-2px);opacity:.9}
.map-wrap{position:relative;height:380px;border-radius:var(--rl);overflow:hidden;box-shadow:var(--sh-md);border:1px solid var(--grey-light)}
.map-wrap iframe{width:100%;height:100%;border:0}
.map-pin-overlay{position:absolute;top:14px;left:14px}
.map-pin-tag{background:rgba(255,255,255,.96);backdrop-filter:blur(8px);border-radius:50px;padding:7px 14px;display:flex;align-items:center;gap:7px;font-size:.78rem;font-weight:600;color:var(--charcoal);box-shadow:var(--sh-sm)}
.map-pin-tag i{color:var(--purple)}

/* ── FOOTER ── */
.footer{background:var(--ink)}
.footer .container{padding-top:60px;padding-bottom:0}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1.4fr;gap:40px;padding-bottom:48px}

/* Footer logo: white-inverted, controlled height */
.footer-logo-wrap{display:inline-block;margin-bottom:14px}
.footer-logo-img{height:46px;width:auto;max-width:160px;object-fit:contain;filter:brightness(0) invert(1);opacity:.9;transition:opacity var(--t) ease}
.footer-logo-wrap:hover .footer-logo-img{opacity:1}

.footer-brand p{font-size:.84rem;color:rgba(255,255,255,.5);line-height:1.8;max-width:260px;margin-bottom:20px}
.footer-socials{display:flex;gap:9px}
.footer-socials a{width:36px;height:36px;border-radius:10px;background:rgba(255,255,255,.08);color:rgba(255,255,255,.6);display:flex;align-items:center;justify-content:center;font-size:.88rem;transition:all var(--t) ease}
.footer-socials a:hover{background:var(--purple);color:var(--white);transform:translateY(-3px)}
.footer-links h5,.footer-contact h5{font-family:var(--font-h);font-size:1rem;font-weight:600;color:var(--white);margin-bottom:18px;padding-bottom:10px;border-bottom:1px solid rgba(255,255,255,.1)}
.footer-links ul{display:flex;flex-direction:column;gap:8px}
.footer-links ul li a{font-size:.83rem;color:rgba(255,255,255,.5);transition:all var(--t) ease;display:inline-block}
.footer-links ul li a:hover{color:var(--gold-shine);padding-left:6px}
.footer-contact p{font-size:.81rem;color:rgba(255,255,255,.5);line-height:1.7;margin-bottom:8px;display:flex;align-items:flex-start;gap:8px}
.footer-contact i{color:var(--gold-shine);flex-shrink:0;margin-top:3px}
.footer-contact a{color:rgba(255,255,255,.5);transition:color var(--t) ease}
.footer-contact a:hover{color:var(--gold-shine)}
.footer-bottom{border-top:1px solid rgba(255,255,255,.08);padding:18px 0;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:12px}
.footer-bottom p{font-size:.8rem;color:rgba(255,255,255,.38)}
.footer-bottom p i{color:var(--purple-mid)}
.footer-bottom-links{display:flex;gap:20px}
.footer-bottom-links a{font-size:.78rem;color:rgba(255,255,255,.35);transition:color var(--t) ease}
.footer-bottom-links a:hover{color:var(--gold-shine)}

/* ── FLOATING BUTTONS ── */
.whatsapp-fab{position:fixed;bottom:76px;right:22px;width:52px;height:52px;border-radius:50%;background:#25D366;color:var(--white);display:flex;align-items:center;justify-content:center;font-size:1.4rem;box-shadow:0 6px 20px rgba(37,211,102,.42);z-index:900;transition:all var(--t) var(--spring);animation:fabPulse 3s ease-in-out infinite}
.whatsapp-fab:hover{transform:scale(1.1) translateY(-2px)}
@keyframes fabPulse{0%,100%{box-shadow:0 6px 20px rgba(37,211,102,.42)}50%{box-shadow:0 6px 20px rgba(37,211,102,.42),0 0 0 10px rgba(37,211,102,.1)}}
.back-to-top{position:fixed;bottom:18px;right:22px;width:42px;height:42px;border-radius:10px;background:var(--charcoal);color:var(--white);display:flex;align-items:center;justify-content:center;font-size:.85rem;box-shadow:var(--sh-md);z-index:900;opacity:0;transform:translateY(14px);transition:all var(--t) var(--ease)}
.back-to-top.visible{opacity:1;transform:translateY(0)}
.back-to-top:hover{background:var(--purple);transform:translateY(-3px)}

/* ── RESPONSIVE ── */

/* ============================================================
   GALLERY — 18-Category Editorial Grid
   ============================================================ */

.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 250px;
  gap: 14px;
}

/* Base card */
.gi {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  background: #1a0f2e;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
  height: 100%;
  min-height: 250px;
}
.gi:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.22);
}

/* Image */
.gi img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(.25,.46,.45,.94),
              filter 0.4s ease;
  filter: brightness(0.82);
}
.gi:hover img {
  transform: scale(1.08);
  filter: brightness(0.55);
}

/* Elegant fallback shown when image file is missing (or before it loads) */
.gi-fallback {
  position: absolute;
  inset: 0;
  background: var(--grad, linear-gradient(145deg, #2D1B4E, #6B2D6B));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.18);
  z-index: 0;
  transition: opacity 0.4s ease;
}
.gi img {
  position: relative;
  z-index: 1;
}
.gi img[src=""],
.gi img:not([src]) { display: none; }

/* Size modifiers */
.gi-tall { grid-row: span 2; }
.gi-wide { grid-column: span 2; }

/* Overlay — gradient always visible at bottom */
.gi-over {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 18px;
  background: linear-gradient(
    to top,
    rgba(10,5,20,0.88) 0%,
    rgba(10,5,20,0.3) 45%,
    transparent 100%
  );
  transition: background 0.4s ease;
}
.gi:hover .gi-over {
  background: linear-gradient(
    to top,
    rgba(10,5,20,0.95) 0%,
    rgba(10,5,20,0.65) 55%,
    rgba(10,5,20,0.15) 100%
  );
}

/* USP badge */
.gi-usp {
  display: inline-block;
  width: fit-content;
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #E8C87A;
  background: rgba(232,200,122,0.16);
  border: 1px solid rgba(232,200,122,0.5);
  border-radius: 50px;
  padding: 3px 10px;
  margin-bottom: 6px;
}

/* Category title — always visible */
.gi-over h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0;
  line-height: 1.2;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
  transition: margin 0.3s ease;
}
.gi:hover .gi-over h4 { margin-bottom: 6px; }
.gi-tall .gi-over h4,
.gi-wide .gi-over h4 { font-size: 1.3rem; }

/* Detail text — slides in on hover */
.gi-over p {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.55;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(5px);
  transition: max-height 0.4s ease,
              opacity 0.3s ease 0.06s,
              transform 0.3s ease 0.06s;
}
.gi:hover .gi-over p {
  max-height: 60px;
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
}

/* ============================================================
   📱 RESPONSIVE — MOBILE & TABLET
   Single clean block, no conflicting older rules
   ============================================================ */

/* Universal safety — no horizontal scroll anywhere */
html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

/* ════════════════════════════════════════════════
   LARGE TABLETS (≤1100px)
   ════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

/* ════════════════════════════════════════════════
   TABLETS (≤900px)
   ════════════════════════════════════════════════ */
@media (max-width: 900px) {
  :root { --gap: 64px; }

  /* Show hamburger, hide desktop nav */
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Hero stacks vertically */
  .hero { flex-direction: column; align-items: stretch; }
  .hero-content {
    max-width: 100%;
    padding: 80px 24px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-visual {
    max-width: 440px;
    height: 340px;
    margin: 0 auto 60px;
  }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { order: -1; }
  .about-badge { right: 0; bottom: -12px; }

  /* Collections */
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-slideshow { height: 260px; }

  /* Why us */
  

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }

  /* Testimonials */
  .testi-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  /* Gallery 2 columns */
  .gal-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
  }
}

/* ════════════════════════════════════════════════
   PHONES (≤640px) — main mobile breakpoint
   ════════════════════════════════════════════════ */
@media (max-width: 640px) {
  :root { --gap: 52px; }

  .container { padding: 0 16px; }
  .section-header { margin-bottom: 36px; }
  .section-heading { font-size: 1.7rem; line-height: 1.2; }
  .section-subtext { font-size: 0.9rem; }

  /* ── NAVBAR ── */
  .nav-container { height: 58px; padding: 0 16px; gap: 12px; }
  .nav-logo-img { height: 34px; max-width: 120px; }
  .nav-right { gap: 8px; }
  .nav-right .nav-cta { display: none; }
  .hamburger { padding: 8px; }

  /* Mobile drawer */
  .mobile-nav.open { max-height: 75vh; }
  .mobile-link { padding: 14px 6px; font-size: 0.98rem; }

  /* ── HERO ── */
  .hero { padding: 0; min-height: auto; }
  .hero-content {
    padding: 80px 18px 20px;
  }
  .hero-eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    padding: 5px 12px;
    margin-bottom: 14px;
  }
  .hero-heading {
    font-size: 2rem;
    line-height: 1.15;
    margin-bottom: 14px;
  }
  .hero-subtext {
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 24px;
    max-width: 100%;
  }
  .hero-ctas {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    gap: 10px;
    margin-bottom: 28px;
  }
  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  /* Hero stats — 3 columns, smaller */
  .hero-stats { gap: 12px; }
  .stat-num { font-size: 1.3rem; }
  .stat-label { font-size: 0.6rem; }
  .stat-divider { height: 22px; }

  /* Hero image collage — simplify on mobile */
  .hero-visual {
    width: calc(100% - 36px);
    max-width: 100%;
    margin: 0 18px 50px;
    height: 260px;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    gap: 0;
  }
  .side-frame-1, .side-frame-2, .hero-float-tag { display: none; }
  .main-frame { grid-column: 1; grid-row: 1; }

  /* Scroll hint hidden on mobile */
  .scroll-hint { display: none; }

  /* ── MARQUEE ── */
  .marquee-strip { padding: 10px 0; }
  .marquee-track span { font-size: 0.7rem; padding: 0 12px; }

  /* ── ABOUT ── */
  .about-grid { gap: 36px; }
  .about-slideshow { height: 240px; }
  .aslide-label { font-size: 1rem; padding: 28px 18px 16px; }
  .about-text p { font-size: 0.92rem; }
  .about-pillars li { font-size: 0.86rem; }
  .about-btn-row { margin-top: 22px; }
  .about-btn-row .btn { width: 100%; justify-content: center; }

  /* ── COLLECTIONS ── */
  .cat-tabs { gap: 8px; margin-bottom: 22px; }
  .cat-tab { font-size: 0.85rem; padding: 9px 22px; }
  .cat-slideshow { height: 200px; margin-bottom: 16px; }
  .cslide-caption { padding: 24px 16px 16px; }
  .cslide-caption h3 { font-size: 1.1rem; }
  .cslide-caption p { font-size: 0.78rem; }
  .cat-grid { gap: 10px; }
  .cat-card { padding: 16px 10px; }
  .cat-icon-wrap {
    width: 42px; height: 42px;
    font-size: 1rem;
    margin-bottom: 9px;
  }
  .cat-card h3 { font-size: 0.86rem; margin-bottom: 3px; }
  .cat-card p { font-size: 0.7rem; line-height: 1.4; }

  /* ── WHY US ── */
  
  
  
  
  
  

  /* ── PROMO BANNER ── */
  .promo-content { padding: 0 18px; }
  .promo-content h2 { font-size: 1.6rem; }
  .promo-content p { font-size: 0.9rem; line-height: 1.7; }
  .promo-badges {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
  }
  .promo-badges span { font-size: 0.8rem; }
  .promo-sparkle { font-size: 1.5rem; }

  /* ── GALLERY — KEY MOBILE FIX ── */
  .gal-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
    gap: 8px;
  }
  .gi-tall { grid-row: span 2; }
  .gi-wide { grid-column: span 2; }
  .gi-over { padding: 12px 10px; }
  .gi-over h4 { font-size: 0.84rem; margin: 0; }
  .gi-tall .gi-over h4, .gi-wide .gi-over h4 { font-size: 0.95rem; }
  .gi-over p { display: none; }
  .gi-usp {
    font-size: 0.5rem;
    padding: 2px 7px;
    margin-bottom: 5px;
  }
  .gi-fallback { font-size: 3.5rem; }

  /* ── TESTIMONIALS ── */
  .testi-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 14px;
  }
  .testi-card { padding: 22px 20px; }
  .testi-card p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 16px; }
  .testi-avatar { width: 38px; height: 38px; font-size: 0.9rem; }
  .testi-author strong { font-size: 0.84rem; }
  .testi-author span { font-size: 0.7rem; }

  /* ── CONTACT ── */
  .contact-grid { gap: 30px; }
  .contact-card { padding: 6px; }
  .contact-item { padding: 14px 12px; gap: 12px; }
  .contact-icon {
    width: 38px; height: 38px;
    font-size: 0.88rem;
  }
  .contact-item h4 { font-size: 0.87rem; }
  .contact-item p { font-size: 0.82rem; line-height: 1.55; }
  .contact-social {
    flex-direction: column;
    gap: 8px;
    padding: 12px;
  }
  .social-btn {
    width: 100%;
    justify-content: center;
    padding: 10px 16px;
    font-size: 0.82rem;
  }
  .map-wrap { height: 280px; }

  /* ── FOOTER ── */
  .footer .container { padding-top: 40px; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 32px;
  }
  .footer-brand { grid-column: span 1; }
  .footer-brand p { max-width: 100%; font-size: 0.85rem; }
  .footer-logo-img { height: 40px; }
  .footer-links h5, .footer-contact h5 {
    font-size: 0.95rem;
    margin-bottom: 14px;
    padding-bottom: 8px;
  }
  .footer-links ul li a { font-size: 0.84rem; }
  .footer-contact p { font-size: 0.82rem; }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding: 16px 0;
  }

  /* ── FLOATING BUTTONS ── */
  .whatsapp-fab {
    bottom: 70px;
    right: 14px;
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }
  .back-to-top {
    bottom: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
  }
}

/* ════════════════════════════════════════════════
   SMALL PHONES (≤400px) — iPhone SE, older androids
   ════════════════════════════════════════════════ */
@media (max-width: 400px) {
  :root { --gap: 44px; }
  .container { padding: 0 14px; }

  .section-heading { font-size: 1.5rem; }

  .hero-content { padding: 70px 14px 16px; }
  .hero-heading { font-size: 1.75rem; }
  .hero-subtext { font-size: 0.88rem; }
  .hero-visual {
    width: calc(100% - 28px);
    margin: 0 14px 40px;
    height: 220px;
  }
  .hero-stats { gap: 10px; }
  .stat-num { font-size: 1.15rem; }
  .stat-label { font-size: 0.56rem; }

  /* Marquee */
  .marquee-track span { font-size: 0.65rem; padding: 0 10px; }

  /* Categories: stay 2-col but tighter */
  .cat-grid { gap: 8px; }
  .cat-card { padding: 14px 8px; }
  .cat-card h3 { font-size: 0.82rem; }
  .cat-card p { font-size: 0.66rem; }

  /* Why: 1 column on tiny phones */
  

  /* Gallery — still 2 columns but smaller rows */
  .gal-grid {
    grid-auto-rows: 140px;
    gap: 7px;
  }
  .gi-over { padding: 10px 8px; }
  .gi-over h4 { font-size: 0.78rem; }

  /* Promo */
  .promo-content h2 { font-size: 1.4rem; }
}

/* ════════════════════════════════════════════════
   TOUCH DEVICES — better tap targets
   ════════════════════════════════════════════════ */
@media (hover: none) and (pointer: coarse) {
  .btn, .mobile-link, .cat-tab, .social-btn, .nav-link {
    min-height: 44px;
  }
}

/* ============================================================
   🚨 MOBILE OVERLAP FIX — DEFINITIVE
   Targets actual classes used in HTML (not generic ones)
   Forces correct stacking with !important
   ============================================================ */

@media (max-width: 768px) {

  /* ────────────────────────────────────────────
     ABOUT SECTION IMAGES — they overlap because
     about-img-main + about-img-accent have no
     mobile rules. FORCE them to stack normally.
     ──────────────────────────────────────────── */
  .about-img-wrap {
    position: relative !important;
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
  }
  .about-img-main,
  .about-img-accent {
    position: static !important;
    width: 100% !important;
    height: auto !important;
    max-height: 280px !important;
    object-fit: cover !important;
    border-radius: 16px !important;
    transform: none !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    margin: 0 !important;
  }
  .about-img-accent {
    max-height: 200px !important;
    width: 80% !important;
    margin: 0 auto !important;
  }
  .about-badge {
    position: relative !important;
    bottom: auto !important;
    right: auto !important;
    left: auto !important;
    top: auto !important;
    margin: 0 auto !important;
    width: fit-content !important;
  }

  /* ────────────────────────────────────────────
     HERO IMAGE COLLAGE — same problem,
     3 images overlap. Show only the main one.
     ──────────────────────────────────────────── */
  .hero-visual {
    display: block !important;
    position: relative !important;
    height: auto !important;
    width: calc(100% - 32px) !important;
    max-width: 420px !important;
    margin: 0 auto 40px !important;
  }
  .hero-img-frame.main-frame {
    position: relative !important;
    width: 100% !important;
    height: 260px !important;
    top: auto !important; left: auto !important;
    right: auto !important; bottom: auto !important;
    transform: none !important;
    display: block !important;
  }
  .hero-img-frame.main-frame img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 16px !important;
  }
  .hero-img-frame.side-frame-1,
  .hero-img-frame.side-frame-2,
  .hero-float-tag {
    display: none !important;
  }

  /* ────────────────────────────────────────────
     CATEGORY SLIDESHOW IMAGES — kids/women
     If any slideshow images overlap, fix them
     ──────────────────────────────────────────── */
  .cat-slideshow,
  .about-slideshow {
    position: relative !important;
    height: 240px !important;
  }
  .cat-slideshow .cslide,
  .about-slideshow .aslide {
    position: absolute !important;
    inset: 0 !important;
  }
  .cat-slideshow .cslide img,
  .about-slideshow .aslide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  /* ────────────────────────────────────────────
     ENSURE ALL IMG ELEMENTS FIT THEIR CONTAINER
     ──────────────────────────────────────────── */
  img {
    max-width: 100% !important;
    height: auto;
  }
  .gi img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  /* ────────────────────────────────────────────
     PARENT FLEX/GRID CONTAINERS — ensure they
     don't have leftover positioning from desktop
     ──────────────────────────────────────────── */
  .about-visual,
  .hero-visual,
  .hero-content,
  .about-text,
  .about-grid,
  .hero {
    position: relative !important;
  }

  /* About grid stacks cleanly */
  .about-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 32px !important;
  }
  .about-visual { order: 1 !important; }
  .about-text { order: 2 !important; }

  /* Hero stacks vertically */
  .hero {
    display: flex !important;
    flex-direction: column !important;
    min-height: auto !important;
    padding-top: 70px !important;
    padding-bottom: 30px !important;
  }
  .hero-content {
    width: 100% !important;
    padding: 24px 18px 20px !important;
    text-align: center !important;
    align-items: center !important;
  }

  /* Gallery cards — ensure no overlap */
  .gal-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    grid-auto-rows: 150px !important;
  }
  .gi {
    position: relative !important;
    overflow: hidden !important;
  }
  .gi-tall { grid-row: span 2 !important; }
  .gi-wide { grid-column: span 2 !important; }

  /* Reveal animation: don't keep things invisible if JS fails */
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Extra small phones */
@media (max-width: 420px) {
  .about-img-main { max-height: 240px !important; }
  .about-img-accent { max-height: 160px !important; }
  .hero-img-frame.main-frame { height: 220px !important; }
  .gal-grid { grid-auto-rows: 130px !important; }
  .gi-over h4 { font-size: 0.75rem !important; }
}

/* ============================================================
   🎯 MOBILE GALLERY FIX — UNIFORM CARDS, NO OVERLAP
   Solves: titles hidden, images bleeding across cards
   ============================================================ */

@media (max-width: 768px) {

  /* Reset gallery grid completely on mobile */
  .gal-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    grid-auto-rows: auto !important;  /* let content decide height */
    gap: 12px !important;
    align-items: stretch !important;
  }

  /* All cards equal size — kill tall/wide variants on mobile */
  .gi,
  .gi.gi-tall,
  .gi.gi-wide {
    grid-row: auto !important;
    grid-column: auto !important;
    aspect-ratio: 3 / 4 !important;  /* fixed shape for every card */
    height: auto !important;
    min-height: 0 !important;
    position: relative !important;
    overflow: hidden !important;
    border-radius: 14px !important;
    display: flex !important;
    flex-direction: column !important;
  }

  /* Image takes the top portion of the card */
  .gi img {
    width: 100% !important;
    height: 65% !important;          /* image: top 65% */
    object-fit: cover !important;
    display: block !important;
    position: relative !important;
    inset: auto !important;
    flex-shrink: 0 !important;
  }

  /* Caption sits in the bottom 35% — solid background, always visible */
  .gi-over {
    position: relative !important;
    inset: auto !important;
    height: 35% !important;          /* caption: bottom 35% */
    background: linear-gradient(180deg, #1a0f2e 0%, #2a1f3d 100%) !important;
    padding: 8px 10px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
    opacity: 1 !important;
    flex-shrink: 0 !important;
  }

  /* Title — always visible, properly sized */
  .gi-over h4 {
    font-size: 0.78rem !important;
    line-height: 1.2 !important;
    color: #fff !important;
    margin: 0 !important;
    font-weight: 600 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  /* USP badge for Jewellery card */
  .gi-usp {
    font-size: 0.5rem !important;
    padding: 2px 6px !important;
    margin-bottom: 4px !important;
    background: rgba(232,200,122,0.2) !important;
    border: 1px solid rgba(232,200,122,0.5) !important;
    color: #E8C87A !important;
    border-radius: 50px !important;
    line-height: 1.2 !important;
  }

  /* Hide hover-only description text on mobile */
  .gi-over p {
    display: none !important;
  }

  /* Disable hover transforms that could cause shift */
  .gi:hover,
  .gi:active {
    transform: none !important;
  }
  .gi:hover img,
  .gi:active img {
    transform: none !important;
  }

  /* Remove the dark overlay over images (was making them dark) */
  .gi-over::before,
  .gi-over::after {
    display: none !important;
  }
}

/* Small phones get an even tighter layout */
@media (max-width: 420px) {
  .gal-grid { gap: 10px !important; }
  .gi-over h4 { font-size: 0.72rem !important; }
  .gi-over { padding: 7px 8px !important; }
}


/* ============================================================
   ✨ WHY US — Vertical Timeline (Premium Storytelling Layout)
   Completely distinct from the Collections card grid
   ============================================================ */

.why-us { background: linear-gradient(180deg, #fff 0%, #FAF5FF 100%); }

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0;
}

/* Central vertical line — flowing gold gradient */
.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--gold-shine) 10%,
    var(--gold) 50%,
    var(--gold-shine) 90%,
    transparent 100%
  );
  transform: translateX(-50%);
  z-index: 1;
}

/* Each timeline item */
.tl-item {
  position: relative;
  width: 50%;
  padding: 30px 50px 30px 0;
  margin-bottom: 10px;
  z-index: 2;
}

/* Right-side items (even numbers) flip to the right */
.tl-item.tl-right {
  margin-left: 50%;
  padding: 30px 0 30px 50px;
  text-align: left;
}

/* Left-side items align text to the right (closer to center) */
.tl-item.tl-left {
  text-align: right;
}

/* The numbered marker — gold circle on the timeline */
.tl-marker {
  position: absolute;
  top: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-shine) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 6px 24px rgba(201,148,58,0.45);
  z-index: 3;
  transition: transform 0.4s var(--spring), box-shadow 0.4s ease;
}

/* Left items: marker sits on the right edge (touching the line) */
.tl-item.tl-left .tl-marker {
  right: -30px;
}

/* Right items: marker sits on the left edge (touching the line) */
.tl-item.tl-right .tl-marker {
  left: -30px;
}

.tl-num {
  font-family: var(--font-h);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  opacity: 0.95;
}
.tl-marker i {
  font-size: 1.1rem;
  margin-top: 3px;
}

.tl-item:hover .tl-marker {
  transform: scale(1.12) rotate(-6deg);
  box-shadow: 0 10px 32px rgba(201,148,58,0.6);
}

/* Content card */
.tl-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--rl);
  padding: 24px 26px;
  box-shadow: var(--sh-sm);
  transition: transform var(--t) var(--ease), box-shadow var(--t) ease, border-color var(--t) ease;
  position: relative;
}

/* Arrow pointing toward the timeline */
.tl-card::before {
  content: '';
  position: absolute;
  top: 32px;
  width: 16px;
  height: 16px;
  background: var(--white);
  border: 1px solid var(--grey-light);
  transform: rotate(45deg);
  transition: border-color var(--t) ease;
}
.tl-item.tl-left .tl-card::before {
  right: -9px;
  border-left: none;
  border-bottom: none;
}
.tl-item.tl-right .tl-card::before {
  left: -9px;
  border-right: none;
  border-top: none;
}

.tl-item:hover .tl-card {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
  border-color: var(--gold-light);
}
.tl-item:hover .tl-card::before {
  border-color: var(--gold-light);
}

.tl-card h3 {
  font-family: var(--font-h);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
  line-height: 1.2;
}
.tl-card p {
  font-size: 0.92rem;
  color: var(--grey-dark);
  line-height: 1.7;
  margin: 0;
}

/* ────────────────────────────────────────
   MOBILE: stack everything to the right side
   ──────────────────────────────────────── */
@media (max-width: 768px) {
  .timeline {
    padding: 10px 0 10px 30px;
    max-width: 100%;
  }

  /* Line moves to the left */
  .timeline-line {
    left: 30px;
    transform: none;
  }

  /* All items become right-aligned (text on right of line) */
  .tl-item,
  .tl-item.tl-left,
  .tl-item.tl-right {
    width: 100%;
    margin-left: 0;
    padding: 20px 0 20px 50px;
    text-align: left;
  }

  /* Marker always on the left edge */
  .tl-item.tl-left .tl-marker,
  .tl-item.tl-right .tl-marker {
    left: -25px;
    right: auto;
    width: 50px;
    height: 50px;
  }

  .tl-num { font-size: 0.7rem; }
  .tl-marker i { font-size: 0.95rem; }

  /* Card arrow always on the left */
  .tl-item.tl-left .tl-card::before,
  .tl-item.tl-right .tl-card::before {
    left: -9px;
    right: auto;
    border-right: none;
    border-top: none;
    border-left: 1px solid var(--grey-light);
    border-bottom: 1px solid var(--grey-light);
  }

  .tl-card {
    padding: 18px 20px;
  }
  .tl-card h3 { font-size: 1.1rem; }
  .tl-card p { font-size: 0.85rem; }
}

/* Very small phones */
@media (max-width: 420px) {
  .timeline { padding-left: 24px; }
  .timeline-line { left: 24px; }
  .tl-item,
  .tl-item.tl-left,
  .tl-item.tl-right {
    padding-left: 40px;
  }
  .tl-item.tl-left .tl-marker,
  .tl-item.tl-right .tl-marker {
    left: -22px;
    width: 44px;
    height: 44px;
  }
  .tl-num { font-size: 0.62rem; }
  .tl-marker i { font-size: 0.82rem; }
  .tl-card { padding: 14px 16px; }
  .tl-card h3 { font-size: 1rem; }
  .tl-card p { font-size: 0.8rem; line-height: 1.6; }
}


/* ============================================================
   SAFETY NET: ensure .reveal content always becomes visible
   ============================================================ */
.reveal {
  animation: revealFallback 0.01s ease-in 1.8s forwards;
}
@keyframes revealFallback {
  to { opacity: 1; transform: none; }
}
/* When .visible is added by JS, override the fallback so transition still works */
.reveal.visible {
  animation: none;
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   🚨 PROMO BANNER VISIBILITY FIX — FORCE DARK BACKGROUND
   Ensures white text is readable on dark purple background
   ============================================================ */

.promo-banner {
  background: linear-gradient(135deg, #2A0F50 0%, #4A1A90 50%, #2E1060 100%) !important;
  background-color: #3A1570 !important;
  color: #fff !important;
  position: relative !important;
  overflow: hidden !important;
  padding: var(--gap) 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.promo-content {
  position: relative !important;
  z-index: 10 !important;
  text-align: center !important;
  max-width: 640px !important;
  padding: 0 24px !important;
  color: #fff !important;
  opacity: 1 !important;
  transform: none !important;
}

.promo-content h2 {
  color: #fff !important;
  margin-bottom: 14px !important;
}
.promo-content h2 em {
  color: #E8C87A !important;
}
.promo-content p {
  color: rgba(255,255,255,0.82) !important;
  line-height: 1.8 !important;
  margin-bottom: 28px !important;
}
.promo-eyebrow {
  color: #E8C87A !important;
  background: rgba(201,148,58,0.18) !important;
  border: 1px solid rgba(201,148,58,0.4) !important;
}
.promo-badges span {
  color: rgba(255,255,255,0.85) !important;
}
.promo-badges i {
  color: #E8C87A !important;
}
.promo-sparkle {
  color: #E8C87A !important;
}
.btn-white {
  background: #fff !important;
  color: #2A0F50 !important;
}


/* ============================================================
   ✨ COLLECTIONS — Compact Pill Grid (Redesigned)
   Clean, icon-led, minimal text — visually distinct from Why Us
   ============================================================ */

/* Grid: more columns since pills are compact */
.cat-grid {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 920px;
  margin: 0 auto;
}
.cat-grid.active {
  display: grid;
}

/* Pill card — horizontal: icon left, name right */
.cat-pill {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--grey-light);
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--t) var(--ease);
  overflow: visible;
}

.cat-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(123,47,190,0.18);
  border-color: var(--purple-light);
  background: linear-gradient(135deg, #fff 0%, var(--purple-pale) 100%);
}

/* Icon — circular, branded color */
.cat-pill-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--purple-pale);
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  transition: all var(--t) var(--spring);
}
.cat-pill-icon.kids {
  background: linear-gradient(135deg, #FFE4F0, #FFD0E5);
  color: #C040A0;
}

.cat-pill:hover .cat-pill-icon {
  background: linear-gradient(135deg, var(--purple), var(--purple-mid));
  color: #fff;
  transform: scale(1.1) rotate(-6deg);
}
.cat-pill:hover .cat-pill-icon.kids {
  background: linear-gradient(135deg, #C040A0, #FF6B9D);
  color: #fff;
}

/* Category name — no more bulky paragraph descriptions */
.cat-pill-name {
  font-family: var(--font-h);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: 0.01em;
}

/* Tooltip on hover — shows the short description */
.cat-pill::after {
  content: attr(data-tip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translateX(-50%) translateY(4px);
  background: var(--ink);
  color: #fff;
  font-family: var(--font-b);
  font-size: 0.74rem;
  font-weight: 400;
  white-space: nowrap;
  padding: 7px 14px;
  border-radius: 8px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 10;
  box-shadow: 0 6px 20px rgba(26,15,46,0.25);
}
.cat-pill::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: calc(100% + 2px);
  transform: translateX(-50%) translateY(4px);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--ink);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 10;
}
.cat-pill:hover::after,
.cat-pill:hover::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ─── Mobile: 2 columns, slightly smaller ─── */
@media (max-width: 768px) {
  .cat-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }
  .cat-pill {
    padding: 12px 14px !important;
    gap: 10px !important;
  }
  .cat-pill-icon {
    width: 36px !important;
    height: 36px !important;
    font-size: 0.95rem !important;
  }
  .cat-pill-name {
    font-size: 0.88rem !important;
  }
  /* Hide tooltip on mobile (no hover) */
  .cat-pill::after,
  .cat-pill::before {
    display: none !important;
  }
}

@media (max-width: 420px) {
  .cat-grid { gap: 8px !important; }
  .cat-pill {
    padding: 10px 12px !important;
    gap: 8px !important;
  }
  .cat-pill-icon {
    width: 32px !important;
    height: 32px !important;
    font-size: 0.85rem !important;
  }
  .cat-pill-name {
    font-size: 0.78rem !important;
  }
}

/* Hide old cat-card styles to prevent conflicts */
.cat-grid .cat-card { display: none !important; }


/* ============================================================
   🔧 LOGO BACKGROUND FIX
   The logo.jpg has a white background that shows through on
   coloured surfaces. Use blend modes to make it disappear.
   ============================================================ */

/* ── NAVBAR LOGO ── make purple section blend with light bg */
.nav-logo-img {
  /* Multiply blend mode makes white pixels invisible against
     the light background, keeping only the purple logo visible */
  mix-blend-mode: multiply !important;
  background: transparent !important;
}

/* Header itself — slightly more solid background for cleaner look */
#navbar {
  background: rgba(253, 251, 255, 0.96) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
}

/* ── FOOTER LOGO ── hide the white box in dark footer */
.footer-logo-img {
  /* Screen blend mode makes white pixels invisible against
     the dark footer, plus the brightness/invert filter
     turns the logo white for visibility on dark */
  mix-blend-mode: screen !important;
  filter: brightness(0) invert(1) !important;
  background: transparent !important;
  opacity: 0.95 !important;
}

/* Footer brand area — clean appearance */
.footer-brand .footer-logo-wrap {
  display: inline-block !important;
  background: transparent !important;
  padding: 0 !important;
  margin-bottom: 16px !important;
}

/* Make sure footer logo container doesn't have any white box */
.footer-brand a.footer-logo-wrap {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
}

/* Mobile-specific logo tweaks */
@media (max-width: 768px) {
  .nav-logo-img {
    height: 38px !important;
    max-width: 130px !important;
    mix-blend-mode: multiply !important;
  }
  .footer-logo-img {
    height: 44px !important;
    mix-blend-mode: screen !important;
    filter: brightness(0) invert(1) !important;
  }
}


/* ============================================================
   ✨ TRANSPARENT PNG LOGO + TOP UTILITY BAR
   ============================================================ */

/* ── PNG logo: no blend modes needed, no filters ── */
.nav-logo-img {
  mix-blend-mode: normal !important;
  filter: none !important;
  background: transparent !important;
}

/* Footer logo: PNG is already transparent. Just invert colors
   so the dark purple logo shows up white on the dark footer */
.footer-logo-img {
  mix-blend-mode: normal !important;
  filter: brightness(0) invert(1) !important;
  background: transparent !important;
  opacity: 0.95 !important;
}

/* Make absolutely sure no white box appears around the logo */
.nav-logo,
.footer-logo-wrap,
.nav-logo-img,
.footer-logo-img {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* ── TOP UTILITY BAR ── fills empty space, adds info & class ── */
.top-bar {
  background: linear-gradient(135deg, #2A0F50 0%, #4A1A90 50%, #2E1060 100%);
  color: #fff;
  padding: 9px 0;
  font-size: 0.78rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.top-bar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.top-info {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255,255,255,0.85);
}

.top-info span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-info i {
  color: var(--gold-shine);
  font-size: 0.82rem;
}

.top-divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.25);
}

.top-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-social a {
  color: rgba(255,255,255,0.85);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  font-size: 0.78rem;
  transition: color var(--t) ease;
}

.top-social a:hover {
  color: var(--gold-shine);
}

.top-social a i {
  font-size: 0.9rem;
}

/* Push navbar down to make room for top bar */
#navbar {
  top: 38px !important;
}

/* Push hero down too */
.hero {
  padding-top: 110px !important;
}

/* ── MOBILE: simplify the top bar ── */
@media (max-width: 768px) {
  .top-bar {
    padding: 7px 0;
    font-size: 0.7rem;
  }
  .top-bar-inner {
    padding: 0 14px;
    gap: 10px;
  }
  /* Hide the address text on mobile, keep timing + social */
  .top-info {
    gap: 8px;
    flex: 1;
    overflow: hidden;
  }
  .top-info span:first-child { display: none; }
  .top-divider { display: none; }
  .top-info span:last-child {
    font-size: 0.7rem;
    white-space: nowrap;
  }
  /* Hide phone number, keep just icons */
  .top-social { gap: 12px; }
  .top-social a:first-child { display: none; }
  .top-social a i { font-size: 1rem; }

  #navbar { top: 32px !important; }
  .hero { padding-top: 100px !important; }
}

@media (max-width: 420px) {
  .top-bar { font-size: 0.65rem; }
  .top-bar-inner { padding: 0 12px; }
  .top-info span:last-child { font-size: 0.66rem; }
}


/* ============================================================
   🎯 NAVBAR REDESIGN — Integrated logo + brand text + icons
   FOOTER REDESIGN — Text-based brand (no more white box)
   ============================================================ */

/* Hide the disconnected top bar completely */
.top-bar { display: none !important; }

/* Reset navbar positioning since top-bar is gone */
#navbar {
  top: 0 !important;
  background: rgba(253, 251, 255, 0.96) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
}

/* Hero no longer needs extra padding for the removed top bar */
.hero {
  padding-top: 80px !important;
}

/* ════════════════════════════════════════════════
   NAVBAR — Logo image + brand text together
   ════════════════════════════════════════════════ */
.nav-container {
  height: 78px !important;
  gap: 24px !important;
}

.nav-logo {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  flex-shrink: 0;
  background: transparent !important;
}

.nav-logo-img {
  height: 48px !important;
  width: auto !important;
  max-width: 60px !important;
  object-fit: contain !important;
  background: transparent !important;
  mix-blend-mode: multiply !important;  /* hides any residual white */
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}

.nav-brand-name {
  font-family: var(--font-h);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--purple);
  letter-spacing: 0.01em;
  line-height: 1;
}

.nav-brand-tag {
  font-family: var(--font-h);
  font-size: 0.7rem;
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 4px;
  line-height: 1;
}

/* ────────────────────────────────────────
   Contact icons in navbar (replaces top bar)
   ──────────────────────────────────────── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px !important;
}

.nav-contact-icons {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-right: 8px;
  border-right: 1px solid var(--grey-light);
}

.nav-contact-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--purple);
  background: var(--purple-pale);
  transition: all var(--t) ease;
}

.nav-contact-icons a:hover {
  background: var(--purple);
  color: #fff;
  transform: translateY(-2px);
}

/* ════════════════════════════════════════════════
   FOOTER BRAND — Text instead of logo image
   No more white box because no image is being inverted
   ════════════════════════════════════════════════ */
.footer-brand-text {
  display: flex !important;
  flex-direction: column !important;
  line-height: 1 !important;
  margin-bottom: 18px !important;
  text-decoration: none !important;
  background: transparent !important;
}

.footer-brand-name {
  font-family: var(--font-h) !important;
  font-size: 2.2rem !important;
  font-weight: 700 !important;
  color: #fff !important;
  letter-spacing: 0.01em !important;
  line-height: 1 !important;
}

.footer-brand-tag {
  font-family: var(--font-h) !important;
  font-size: 0.85rem !important;
  font-style: italic !important;
  font-weight: 500 !important;
  color: var(--gold-shine) !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  margin-top: 8px !important;
  line-height: 1 !important;
}

.footer-brand-text:hover .footer-brand-name {
  color: var(--gold-shine) !important;
  transition: color 0.3s ease;
}

/* Permanently hide the old logo image (in case it's still in HTML somewhere) */
.footer-logo-img,
.footer-logo-wrap { display: none !important; }

/* ════════════════════════════════════════════════
   MOBILE — Adjust integrated navbar
   ════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav-container { height: 62px !important; gap: 12px !important; }

  .nav-logo { gap: 8px !important; }
  .nav-logo-img { height: 38px !important; max-width: 44px !important; }
  .nav-brand-name { font-size: 1.2rem !important; }
  .nav-brand-tag { font-size: 0.55rem !important; letter-spacing: 0.14em !important; margin-top: 2px !important; }

  /* Hide contact icons on mobile — they're in the drawer + FAB */
  .nav-contact-icons { display: none !important; }
  .nav-right .nav-cta { display: none !important; }

  .hero { padding-top: 80px !important; }

  /* Footer brand stays text */
  .footer-brand-name { font-size: 1.8rem !important; }
  .footer-brand-tag { font-size: 0.75rem !important; }
}

@media (max-width: 420px) {
  .nav-logo-img { height: 34px !important; max-width: 38px !important; }
  .nav-brand-name { font-size: 1.05rem !important; }
  .nav-brand-tag { font-size: 0.5rem !important; }
}


/* ============================================================
   📱 MOBILE NAVBAR — Show contact icons next to logo
   Fills the empty space, gives instant tap-to-call/chat access
   ============================================================ */

@media (max-width: 768px) {
  /* Override the previous hide rule — SHOW the contact icons on mobile */
  .nav-contact-icons {
    display: flex !important;
    gap: 4px !important;
    padding-right: 0 !important;
    border-right: none !important;
  }

  /* Compact circular icons */
  .nav-contact-icons a {
    width: 36px !important;
    height: 36px !important;
    font-size: 0.9rem !important;
    background: var(--purple-pale) !important;
    color: var(--purple) !important;
    border-radius: 50% !important;
  }

  /* Hide Visit Store button (kept in hamburger drawer) */
  .nav-right .nav-cta { display: none !important; }

  /* Tighten spacing in the right group */
  .nav-right {
    gap: 8px !important;
  }

  /* Slightly smaller hamburger to balance the layout */
  .hamburger { padding: 6px !important; }
  .hamburger span { width: 20px !important; }
}

@media (max-width: 420px) {
  /* Smaller icons on tiny phones */
  .nav-contact-icons a {
    width: 32px !important;
    height: 32px !important;
    font-size: 0.82rem !important;
  }
  .nav-contact-icons { gap: 3px !important; }
  .nav-right { gap: 6px !important; }
}

/* Icon hover/tap feedback on mobile */
@media (max-width: 768px) {
  .nav-contact-icons a:active {
    background: var(--purple) !important;
    color: #fff !important;
    transform: scale(0.92);
  }

  /* Brand colors for each icon for visual interest */
  .nav-contact-icons a[aria-label="WhatsApp"] {
    background: rgba(37, 211, 102, 0.12) !important;
    color: #25D366 !important;
  }
  .nav-contact-icons a[aria-label="Instagram"] {
    background: rgba(225, 48, 108, 0.12) !important;
    color: #E1306C !important;
  }
}


/* ============================================================
   📱 MOBILE LOGO — Larger, fully utilizes header space
   ============================================================ */

@media (max-width: 768px) {
  /* Taller header to accommodate bigger logo */
  .nav-container {
    height: 76px !important;
    padding: 0 14px !important;
    gap: 10px !important;
  }

  /* Bigger logo image */
  .nav-logo {
    gap: 10px !important;
  }
  .nav-logo-img {
    height: 56px !important;
    max-width: 64px !important;
  }

  /* Slightly bigger brand text to match the larger logo */
  .nav-brand-name {
    font-size: 1.4rem !important;
  }
  .nav-brand-tag {
    font-size: 0.62rem !important;
    letter-spacing: 0.16em !important;
    margin-top: 3px !important;
  }

  /* Push hero content down to clear the taller header */
  .hero {
    padding-top: 96px !important;
  }
}

@media (max-width: 420px) {
  .nav-container {
    height: 70px !important;
    padding: 0 12px !important;
  }
  .nav-logo-img {
    height: 48px !important;
    max-width: 54px !important;
  }
  .nav-brand-name {
    font-size: 1.2rem !important;
  }
  .nav-brand-tag {
    font-size: 0.56rem !important;
  }

  /* Slightly smaller icons to make room for bigger logo */
  .nav-contact-icons a {
    width: 30px !important;
    height: 30px !important;
    font-size: 0.78rem !important;
  }

  .hero {
    padding-top: 90px !important;
  }
}

@media (max-width: 360px) {
  /* Tiny screens — keep logo prominent, hide brand text */
  .nav-brand-tag { display: none !important; }
  .nav-brand-name { font-size: 1.1rem !important; }
  .nav-logo-img {
    height: 44px !important;
    max-width: 50px !important;
  }
}
