/* =========================================================
   PERFECT CHOICE COSMETICS & BANGLES
   Design tokens
   ========================================================= */
:root{
  --void:        #0A0806;
  --panel:       #15110D;
  --panel-2:     #1D1712;
  --panel-3:     #241C15;
  --hairline:    rgba(201,162,39,0.16);

  --gold:        #C9A227;
  --gold-bright: #E9C86B;
  --gold-dim:    #8A712A;
  --gold-soft:   rgba(201,162,39,0.14);

  --ivory:       #F4EEE1;
  --ivory-dim:   #C9C0AE;
  --ivory-faint: #8B8375;

  --rose:        #8C5A56;

  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Jost', sans-serif;

  --radius: 2px;
  --ease: cubic-bezier(.22,.9,.32,1);
  --nav-h: 84px;
}

/* =========================================================
   RESET
   ========================================================= */
*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body{
  margin:0;
  background: var(--void);
  color: var(--ivory);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
ul{ list-style:none; margin:0; padding:0; }
button{ font-family: inherit; cursor:pointer; }
h1,h2,h3,h4{ font-family: var(--font-display); font-weight:600; margin:0; color: var(--ivory); }
p{ margin:0; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important; }
}

::selection{ background: var(--gold); color: var(--void); }

/* thin gold scrollbar */
::-webkit-scrollbar{ width:10px; }
::-webkit-scrollbar-track{ background: var(--void); }
::-webkit-scrollbar-thumb{ background: var(--gold-dim); border-radius: 6px; }

/* =========================================================
   LAYOUT HELPERS
   ========================================================= */
.section-inner{ max-width: 1180px; margin: 0 auto; padding: 0 clamp(20px,5vw,48px); }
.eyebrow{
  font-family: var(--font-body);
  font-size: 12.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
}
.eyebrow.center{ text-align:center; }
h2{ font-size: clamp(30px,4vw,44px); letter-spacing:0.01em; }
h2.center{ text-align:center; }
h2 span{ color: var(--gold); }
.section-sub{
  color: var(--ivory-dim);
  max-width: 560px;
  margin: 14px auto 0;
  font-size: 15.5px;
}
.section-sub.center{ text-align:center; }

section{ position: relative; padding: 110px 0; }
section.categories, section.why, section.faq{ background: var(--panel); }
section.brands, section.gallery, section.contact{ background: var(--void); }
section.showcase.alt{ background: var(--panel); }

/* reveal-on-scroll */
.reveal{ opacity:0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in{ opacity:1; transform: translateY(0); }

/* buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 13px 28px;
  font-size: 13.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all .35s var(--ease);
  white-space: nowrap;
}
.btn-gold{ background: linear-gradient(135deg, var(--gold-bright), var(--gold)); color:#1A1305; font-weight:500; }
.btn-gold:hover{ filter: brightness(1.1); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(201,162,39,0.28); }
.btn-outline{ border-color: var(--gold-dim); color: var(--ivory); }
.btn-outline:hover{ border-color: var(--gold); background: var(--gold-soft); }
.btn-ghost{ color: var(--ivory-dim); padding: 13px 18px; }
.btn-ghost:hover{ color: var(--gold-bright); }
.btn-lg{ padding: 16px 36px; font-size: 14px; }
.btn-full{ width:100%; }

/* gold ring signature element, reused throughout */
.ring-mark{
  width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid var(--gold);
  position: relative;
}

/* =========================================================
   PRELOADER
   ========================================================= */
#preloader{
  position: fixed; inset:0; z-index: 9999;
  background: var(--void);
  display:flex; align-items:center; justify-content:center;
  transition: opacity .6s ease, visibility .6s ease;
}
#preloader.done{ opacity:0; visibility:hidden; }
.loader-ring{ width:64px; height:64px; }
.loader-ring circle{
  fill:none; stroke: var(--gold); stroke-width: 3;
  stroke-dasharray: 220; stroke-dashoffset: 220;
  stroke-linecap: round;
  animation: draw-ring 1.4s var(--ease) infinite;
  transform-origin: center;
}
@keyframes draw-ring{
  0%{ stroke-dashoffset: 220; transform: rotate(0deg); }
  60%{ stroke-dashoffset: 20; }
  100%{ stroke-dashoffset: 220; transform: rotate(360deg); }
}

/* =========================================================
   NAVBAR
   ========================================================= */
.navbar{
  position: fixed; top:0; left:0; right:0; z-index: 900;
  height: var(--nav-h);
  display:flex; align-items:center;
  background: transparent;
  transition: background .45s var(--ease), height .45s var(--ease), border-color .45s var(--ease);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled{
  height: 68px;
  background: rgba(10,8,6,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline);
}
.nav-inner{
  width:100%; max-width: 1280px; margin:0 auto;
  padding: 0 clamp(20px,4vw,44px);
  display:flex; align-items:center; justify-content:space-between; gap: 24px;
}
.brand{ display:flex; align-items:center; gap:14px; }
.brand-ring{
  width: 38px; height: 38px; border-radius:50%;
  border: 1.6px solid var(--gold);
  position: relative; flex-shrink:0;
}
.brand-ring::after{
  content:''; position:absolute; inset: 7px;
  border: 1.6px solid var(--gold-dim); border-radius:50%;
}
.brand-text{ display:flex; flex-direction:column; line-height:1.15; }
.brand-text strong{ font-family: var(--font-display); font-size: 20px; letter-spacing:0.02em; color: var(--ivory); }
.brand-text em{ font-style:normal; font-size: 10.5px; letter-spacing:0.18em; text-transform:uppercase; color: var(--gold); }

.nav-links{ display:flex; align-items:center; gap: 30px; }
.nav-links a{
  font-size: 13px; letter-spacing:0.08em; text-transform:uppercase;
  color: var(--ivory-dim); position:relative; padding: 6px 0;
}
.nav-links a::after{
  content:''; position:absolute; left:0; bottom:0; width:0; height:1px;
  background: var(--gold); transition: width .35s var(--ease);
}
.nav-links a:hover{ color: var(--ivory); }
.nav-links a:hover::after{ width:100%; }

.nav-cta{ display:flex; align-items:center; gap: 6px; }
.nav-toggle{
  display:none; flex-direction:column; justify-content:center; gap:5px;
  width: 40px; height:40px; background:none; border:none;
}
.nav-toggle span{ width: 100%; height:1.5px; background: var(--gold); transition: all .35s var(--ease); }
.nav-toggle.open span:nth-child(1){ transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity:0; }
.nav-toggle.open span:nth-child(3){ transform: translateY(-6.5px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position: relative;
  min-height: 100svh;
  display:flex; align-items:center; justify-content:center;
  text-align:center;
  overflow:hidden;
}
.hero-media{ position:absolute; inset:0; z-index:0; }
.hero-media img{ width:100%; height:100%; object-fit:cover; object-position: center; transform: scale(1.06); animation: hero-zoom 18s var(--ease) infinite alternate; }
@keyframes hero-zoom{ from{ transform: scale(1.06);} to{ transform: scale(1);} }
.hero-scrim{
  position:absolute; inset:0;
  background:
    radial-gradient(ellipse at center, rgba(10,8,6,0.55) 0%, rgba(10,8,6,0.86) 68%, rgba(10,8,6,0.97) 100%),
    linear-gradient(180deg, rgba(10,8,6,0.55) 0%, rgba(10,8,6,0.35) 30%, rgba(10,8,6,0.9) 100%);
}
.hero-content{ position:relative; z-index:1; padding: 0 24px; max-width: 780px; }
.hero-emblem{ width: 96px; height:96px; margin: 0 auto 22px; display:block; }
.hero-emblem .ring{ fill:none; stroke: var(--gold); stroke-width:1; }
.hero-emblem .ring-1{ stroke-dasharray: 6 10; animation: spin 40s linear infinite; transform-origin:center; }
.hero-emblem .ring-2{ stroke: var(--gold-bright); opacity:.6; animation: spin 30s linear infinite reverse; transform-origin:center; }
@keyframes spin{ to{ transform: rotate(360deg); } }

.hero .eyebrow{ text-align:center; }
.hero h1{
  font-size: clamp(38px, 7vw, 72px);
  line-height: 1.05;
  color: var(--ivory);
  display:flex; flex-direction:column; gap: 6px;
}
.hero h1 span{
  font-size: clamp(16px, 2.6vw, 22px);
  font-family: var(--font-body);
  font-weight:300;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-bright);
}
.hero-tagline{
  margin: 22px auto 0;
  max-width: 460px;
  font-size: 17px;
  color: var(--ivory-dim);
  font-style: italic;
  font-family: var(--font-display);
}
.hero-actions{ margin-top: 40px; display:flex; gap: 16px; justify-content:center; flex-wrap:wrap; }

.scroll-cue{
  position:absolute; bottom: 34px; left:50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 1.4px solid var(--gold-dim); border-radius: 20px;
  z-index:1;
}
.scroll-cue span{
  position:absolute; top:8px; left:50%; width:4px; height:4px; margin-left:-2px;
  background: var(--gold-bright); border-radius:50%;
  animation: scroll-dot 1.8s ease infinite;
}
@keyframes scroll-dot{ 0%{ opacity:1; top:8px; } 80%{ opacity:0; top:24px; } 100%{ opacity:0; top:8px; } }

/* =========================================================
   ABOUT
   ========================================================= */
.about-grid{
  display:grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,6vw,80px);
  align-items:center;
}
.about-media{ position:relative; }
.about-media img{ border-radius: var(--radius); width:100%; height: 480px; object-fit:cover; }
.about-frame{
  position:absolute; top:18px; left:18px; right:-18px; bottom:-18px;
  border: 1px solid var(--gold-dim); z-index:-1;
}
.about-copy p{ color: var(--ivory-dim); margin-bottom: 16px; font-size: 15.5px; }
.about-copy strong{ color: var(--gold-bright); font-weight:500; }
.about-points{
  display:flex; gap: 30px; margin-top: 30px; flex-wrap:wrap;
  border-top: 1px solid var(--hairline); padding-top: 26px;
}
.about-points li{ display:flex; flex-direction:column; }
.about-points span{ font-family: var(--font-display); font-size: 30px; color: var(--gold); font-weight:600; }

/* =========================================================
   CATEGORIES
   ========================================================= */
.cat-grid{
  display:grid; grid-template-columns: repeat(6, 1fr); gap: 22px 18px;
  margin-top: 56px;
}
.cat-card{ display:flex; flex-direction:column; align-items:center; gap: 14px; text-align:center; }
.cat-ring{
  width: 78px; height:78px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size: 28px;
  border: 1.4px solid var(--gold-dim);
  background: var(--panel-2);
  transition: all .4s var(--ease);
}
.cat-card:hover .cat-ring{
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(201,162,39,0.18);
  background: var(--gold-soft);
}
.cat-card p{ font-size: 13px; letter-spacing:0.04em; color: var(--ivory-dim); }

/* =========================================================
   BRANDS MARQUEE
   ========================================================= */
.marquee{
  margin-top: 46px;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 26px 0;
  overflow:hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track{
  display:flex; gap: 60px; width:max-content;
  animation: marquee 34s linear infinite;
}
.marquee-track span{
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--ivory-faint);
  white-space:nowrap;
  transition: color .3s ease;
}
.marquee:hover .marquee-track{ animation-play-state: paused; }
.marquee-track span:hover{ color: var(--gold-bright); }
@keyframes marquee{ from{ transform: translateX(0);} to{ transform: translateX(-50%);} }

/* =========================================================
   SHOWCASE (arrivals / bestsellers)
   ========================================================= */
.showcase-grid{
  display:grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,6vw,80px);
  align-items:center;
}
.showcase-grid.reverse .showcase-media{ order:2; }
.showcase-grid.reverse .showcase-copy{ order:1; }
.showcase-media img{ border-radius: var(--radius); width:100%; height: 420px; object-fit:cover; }
.showcase-copy p{ color: var(--ivory-dim); margin: 18px 0 28px; font-size: 15.5px; max-width: 460px; }

/* =========================================================
   WHY CHOOSE US
   ========================================================= */
.why-grid{
  display:grid; grid-template-columns: repeat(4,1fr); gap: 26px;
  margin-top: 54px;
}
.why-card{
  padding: 36px 26px;
  background: var(--panel-2);
  border: 1px solid var(--hairline);
  text-align:center;
  transition: border-color .35s ease, transform .35s ease;
}
.why-card:hover{ border-color: var(--gold-dim); transform: translateY(-6px); }
.why-icon{
  display:inline-flex; align-items:center; justify-content:center;
  width: 56px; height:56px; border-radius:50%;
  border: 1.4px solid var(--gold);
  color: var(--gold-bright);
  font-family: var(--font-display); font-size: 22px;
  margin-bottom: 20px;
}
.why-card h3{ font-size: 20px; margin-bottom: 10px; }
.why-card p{ color: var(--ivory-dim); font-size: 14px; }

/* =========================================================
   GALLERY
   ========================================================= */
.gallery-grid{
  display:grid; grid-template-columns: repeat(6,1fr); grid-auto-rows: 160px;
  gap: 14px; margin-top: 54px;
}
.gallery-item{
  position:relative; border:none; padding:0; overflow:hidden; border-radius: var(--radius);
  background: var(--panel-2);
}
.gallery-item:nth-child(1){ grid-column: span 3; grid-row: span 2; }
.gallery-item:nth-child(2){ grid-column: span 3; grid-row: span 2; }
.gallery-item:nth-child(3){ grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(4){ grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(5){ grid-column: span 2; grid-row: span 2; }
.gallery-item img{
  width:100%; height:100%; object-fit:cover;
  transition: transform .6s var(--ease), filter .6s var(--ease);
  filter: saturate(0.9) brightness(0.92);
}
.gallery-item:hover img{ transform: scale(1.08); filter: saturate(1) brightness(1); }
.gallery-item span{
  position:absolute; left:0; right:0; bottom:0; padding: 14px 16px 12px;
  background: linear-gradient(0deg, rgba(10,8,6,0.9), transparent);
  font-size: 12.5px; letter-spacing:0.08em; text-transform:uppercase; color: var(--gold-bright);
  text-align:left; opacity:0; transform: translateY(8px);
  transition: all .4s var(--ease);
}
.gallery-item:hover span{ opacity:1; transform: translateY(0); }

/* =========================================================
   REVIEWS
   ========================================================= */
.reviews-card{
  max-width: 480px; margin: 50px auto 0; text-align:center;
  padding: 50px 30px; border: 1px solid var(--hairline); background: var(--panel-2);
}
.reviews-ring{ display:block; font-size: 30px; color: var(--gold-dim); margin-bottom: 16px; }
.reviews-card p{ font-family: var(--font-display); font-size: 24px; color: var(--ivory); margin-bottom: 10px; }
.reviews-sub{ display:block; color: var(--ivory-faint); font-size: 13.5px; }

/* =========================================================
   INSTAGRAM
   ========================================================= */
.instagram{ background: linear-gradient(180deg, var(--void), var(--panel)); text-align:center; }
.instagram-inner{ display:flex; flex-direction:column; align-items:center; }
.insta-icon{
  width: 60px; height:60px; border-radius:50%;
  border: 1.4px solid var(--gold); color: var(--gold-bright);
  display:flex; align-items:center; justify-content:center; margin-bottom: 24px;
}
.insta-icon svg{ width:26px; height:26px; }
.instagram h2{ margin-bottom: 10px; }
.instagram p{ color: var(--ivory-dim); margin-bottom: 30px; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid{
  display:grid; grid-template-columns: 1fr 1.15fr; gap: clamp(30px,6vw,70px);
  margin-top: 54px;
}
.contact-info{ display:flex; flex-direction:column; gap: 22px; }
.contact-row{
  display:flex; align-items:center; gap: 18px;
  padding: 18px 0; border-bottom: 1px solid var(--hairline);
}
.contact-ring{
  width: 46px; height:46px; flex-shrink:0; border-radius:50%;
  border: 1.4px solid var(--gold-dim); color: var(--gold-bright);
  display:flex; align-items:center; justify-content:center; font-size: 17px;
}
.contact-row strong{ display:block; font-size: 13px; letter-spacing:0.06em; text-transform:uppercase; color: var(--ivory-faint); margin-bottom: 4px; }
.contact-row p{ color: var(--ivory); font-size: 15px; }
a.contact-row:hover .contact-ring{ border-color: var(--gold); color: var(--gold); }
.contact-social{ display:flex; gap: 16px; margin-top: 6px; }
.contact-social a{
  font-size: 12.5px; letter-spacing:0.1em; text-transform:uppercase;
  color: var(--gold); border: 1px solid var(--gold-dim); padding: 10px 18px;
  transition: all .3s ease;
}
.contact-social a:hover{ background: var(--gold-soft); border-color: var(--gold); }

.contact-form{
  background: var(--panel-2); border: 1px solid var(--hairline);
  padding: 36px; display:flex; flex-direction:column; gap: 18px;
}
.form-row{ display:flex; flex-direction:column; gap: 8px; }
.form-row label{ font-size: 12px; letter-spacing:0.1em; text-transform:uppercase; color: var(--ivory-faint); }
.form-row input, .form-row textarea{
  background: var(--panel-3); border: 1px solid var(--hairline); color: var(--ivory);
  padding: 12px 14px; font-family: var(--font-body); font-size: 14.5px; border-radius: var(--radius);
  outline:none; transition: border-color .3s ease;
  resize: vertical;
}
.form-row input:focus, .form-row textarea:focus{ border-color: var(--gold); }
.form-note{ font-size: 13px; color: var(--gold-bright); min-height: 18px; }

/* =========================================================
   MAP
   ========================================================= */
.map{ padding:0; line-height:0; }
.map iframe{ width:100%; height: 420px; border:0; filter: grayscale(0.35) invert(0.92) contrast(0.9); }

/* =========================================================
   FAQ
   ========================================================= */
.faq-inner{ max-width: 800px; }
.faq-list{ margin-top: 46px; display:flex; flex-direction:column; }
.faq-item{ border-bottom: 1px solid var(--hairline); }
.faq-q{
  width:100%; background:none; border:none; color: var(--ivory);
  display:flex; align-items:center; justify-content:space-between;
  padding: 22px 4px; font-family: var(--font-display); font-size: 18px; text-align:left;
}
.faq-q span{ color: var(--gold); font-size: 22px; transition: transform .35s var(--ease); flex-shrink:0; margin-left: 20px; }
.faq-q[aria-expanded="true"] span{ transform: rotate(45deg); }
.faq-a{ max-height:0; overflow:hidden; transition: max-height .45s var(--ease); }
.faq-a p{ padding: 0 4px 22px; color: var(--ivory-dim); font-size: 14.5px; max-width: 640px; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer{ background: var(--panel); padding-top: 80px; border-top: 1px solid var(--hairline); }
.footer-grid{
  display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 50px;
}
.footer-brand{ display:flex; flex-direction:column; gap:14px; }
.footer-brand > div{ display:flex; align-items:baseline; gap:8px; }
.footer-brand strong{ font-family: var(--font-display); font-size: 22px; }
.footer-brand p{ color: var(--gold); font-size: 12px; letter-spacing:0.1em; text-transform:uppercase; }
.footer-tag{ color: var(--ivory-faint); font-size: 13.5px; max-width: 240px; font-style:italic; font-family: var(--font-display); }
.footer-col h4{ font-family: var(--font-body); font-size: 12.5px; letter-spacing:0.12em; text-transform:uppercase; color: var(--gold); margin-bottom: 18px; font-weight:500; }
.footer-col{ display:flex; flex-direction:column; gap: 12px; }
.footer-col a{ color: var(--ivory-dim); font-size: 14px; transition: color .3s ease; }
.footer-col a:hover{ color: var(--gold-bright); }
.footer-bottom{
  border-top: 1px solid var(--hairline); padding: 22px clamp(20px,5vw,48px);
  text-align:center;
}
.footer-bottom p{ color: var(--ivory-faint); font-size: 12.5px; letter-spacing:0.02em; }

/* =========================================================
   FLOATING BUTTONS
   ========================================================= */
.float-btn{
  position: fixed; right: 22px; z-index: 500;
  width: 56px; height:56px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 10px 26px rgba(0,0,0,0.4);
  transition: transform .35s var(--ease);
}
.float-btn svg{ width:26px; height:26px; }
.float-btn:hover{ transform: translateY(-4px) scale(1.05); }
.float-whatsapp{ bottom: 90px; background: #25D366; color:#fff; }
.float-call{ bottom: 22px; background: linear-gradient(135deg, var(--gold-bright), var(--gold)); color:#1A1305; }

/* =========================================================
   LIGHTBOX
   ========================================================= */
.lightbox{
  position: fixed; inset:0; z-index: 2000;
  background: rgba(6,5,4,0.94);
  display:flex; align-items:center; justify-content:center;
  opacity:0; visibility:hidden; transition: opacity .4s ease, visibility .4s ease;
  padding: 40px;
}
.lightbox.open{ opacity:1; visibility:visible; }
.lightbox img{ max-width: 92vw; max-height: 86vh; border: 1px solid var(--gold-dim); object-fit:contain; }
.lightbox-close{
  position:absolute; top: 24px; right: 30px;
  background:none; border: 1px solid var(--gold-dim); color: var(--gold-bright);
  width: 44px; height:44px; border-radius:50%; font-size: 22px; line-height:1;
}
.lightbox-close:hover{ border-color: var(--gold); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px){
  .about-grid, .showcase-grid{ grid-template-columns: 1fr; }
  .showcase-grid.reverse .showcase-media{ order:1; }
  .showcase-grid.reverse .showcase-copy{ order:2; }
  .cat-grid{ grid-template-columns: repeat(4,1fr); }
  .why-grid{ grid-template-columns: repeat(2,1fr); }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 780px){
  .nav-links, .nav-cta{ display:none; }
  .nav-toggle{ display:flex; }
  .navbar.menu-open .nav-links{
    display:flex; flex-direction:column; position:fixed; top: var(--nav-h);
    left:0; right:0; background: rgba(10,8,6,0.98); padding: 30px; gap:22px;
    border-bottom: 1px solid var(--hairline);
  }
  .navbar.menu-open .nav-cta{
    display:flex; position:fixed; top: calc(var(--nav-h) + 260px); left:0; right:0;
    background: rgba(10,8,6,0.98); padding: 0 30px 30px; gap: 12px;
  }
  section{ padding: 80px 0; }
  .cat-grid{ grid-template-columns: repeat(3,1fr); }
  .gallery-grid{ grid-template-columns: repeat(2,1fr); grid-auto-rows: 200px; }
  .gallery-item:nth-child(n){ grid-column: span 1; }
  .why-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; gap: 30px; }
  .about-points{ gap: 22px; }
}

@media (max-width: 480px){
  .cat-grid{ grid-template-columns: repeat(2,1fr); }
  .hero-actions{ flex-direction:column; width: 100%; }
  .hero-actions .btn{ width:100%; }
  .float-btn{ width: 50px; height:50px; right:16px; }
  .float-whatsapp{ bottom: 78px; }
  .float-call{ bottom: 18px; }
}
