
:root {
  --bg: #14100d;
  --bg-2: #1c1613;
  --bg-3: #241d19;
  --ivory: #f2ead9;
  --ivory-soft: #ddd2b8;
  --muted: #a29a8b;
  --gold: #d5b26b;
  --gold-2: #e8c98a;
  --gold-ink: #1a140f;
  --terracotta: #c96f4a;
  --olive: #8a9163;
  --whatsapp: #25d366;
  --border: rgba(242,234,217,.14);
  --border-strong: rgba(242,234,217,.22);
  --shadow-soft: 0 10px 30px -12px rgba(0,0,0,.55);
  --shadow-elev: 0 24px 60px -24px rgba(0,0,0,.65);
  --radius: 1rem;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ivory);
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: var(--ivory); text-decoration: none; }
a:hover { color: var(--gold); }
h1, h2, h3, h4, h5 { font-family: "Fraunces", ui-serif, Georgia, serif; letter-spacing: -0.02em; font-weight: 500; margin: 0 0 .5em; }
h1 { font-size: clamp(2rem, 4.6vw, 3.6rem); line-height: 1.05; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); line-height: 1.1; }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }
.container { width: 100%; max-width: 80rem; margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 768px) { .container { padding: 0 2rem; } }
.container.narrow { max-width: 48rem; }
.section { padding: 4rem 0; }
.section-alt { background: var(--bg-2); }
.section-head { text-align: center; margin-bottom: 2.5rem; }
.eyebrow { display:inline-block; text-transform: uppercase; letter-spacing: .28em; font-size: .7rem; font-weight: 600; color: var(--gold); margin-bottom: .5rem; }
.muted { color: var(--muted); }
.gold { color: var(--gold); }
.lead { font-size: 1.15rem; color: var(--ivory-soft); }

/* Buttons */
.btn { display:inline-flex; align-items:center; justify-content:center; gap:.5rem; padding: .75rem 1.25rem; border-radius: 999px; font-weight: 600; font-size: .9rem; border: 1px solid transparent; cursor: pointer; transition: all .2s ease; white-space: nowrap; }
.btn-lg { padding: 1rem 1.75rem; font-size: 1rem; }
.btn-primary { background: var(--gold); color: var(--gold-ink); }
.btn-primary:hover { background: var(--gold-2); color: var(--gold-ink); transform: translateY(-1px); box-shadow: var(--shadow-soft); }
.btn-ghost { background: transparent; color: var(--ivory); border-color: var(--border-strong); }
.btn-ghost:hover { background: var(--bg-3); color: var(--gold); }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(20,16,13,.9); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.hdr { display:flex; align-items:center; justify-content:space-between; gap: 1rem; padding: .9rem 1.25rem; }
.brand { display:flex; align-items:center; gap:.75rem; }
.brand img { height: 40px; width: auto; }
.brand-name { font-family: "Fraunces", serif; font-size: 1.05rem; font-weight: 600; }
.brand-sub { font-size: .72rem; color: var(--muted); letter-spacing: .1em; text-transform: uppercase; }
.nav-desktop { display: none; gap: 1.5rem; }
.nav-desktop a { font-size: .92rem; font-weight: 500; }
.nav-desktop a.active, .nav-desktop a:hover { color: var(--gold); }
.hdr-cta { display: none; gap: .5rem; }
.menu-toggle { background: transparent; border: 1px solid var(--border); color: var(--ivory); border-radius: .5rem; padding: .5rem .75rem; font-size: 1.2rem; cursor: pointer; }
.nav-mobile { display: none; flex-direction: column; padding: 1rem 1.25rem 1.5rem; gap: .75rem; border-top: 1px solid var(--border); }
.nav-mobile a { padding: .5rem 0; border-bottom: 1px solid var(--border); }
body.menu-open .nav-mobile { display: flex; }
@media (min-width: 1024px) {
  .nav-desktop, .hdr-cta { display: flex; }
  .menu-toggle { display: none; }
}

/* Hero */
.hero { position: relative; padding: 4rem 0 5rem; overflow: hidden; background: radial-gradient(at 20% 10%, rgba(213,178,107,.16), transparent 55%), radial-gradient(at 80% 90%, rgba(201,111,74,.14), transparent 60%), var(--bg); }
.hero-grid { display: grid; gap: 3rem; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1.1fr 1fr; } }
.hero-copy p.lead { max-width: 34rem; }
.hero-cta { display:flex; flex-wrap:wrap; gap: .75rem; margin-top: 1.5rem; }
.hero-badges { display:flex; flex-wrap:wrap; gap: .5rem 1.25rem; margin-top: 1.5rem; color: var(--muted); font-size: .88rem; }
.hero-media { position: relative; aspect-ratio: 4/5; }
.hero-img-1 { position: absolute; inset: 0; width: 82%; height: 82%; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-elev); }
.hero-img-2 { position: absolute; right: 0; bottom: 0; width: 55%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius); border: 6px solid var(--bg); box-shadow: var(--shadow-elev); }

/* Grids */
.cat-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.cat-card { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform .25s ease, border-color .25s ease; }
.cat-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.cat-card img { aspect-ratio: 16/10; object-fit: cover; }
.cat-body { padding: 1.25rem; }
.cat-emoji { font-size: 1.6rem; margin-bottom: .25rem; }

.prod-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.prod-card { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform .25s ease, border-color .25s ease; display: block; }
.prod-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.prod-img { position: relative; }
.prod-img img { aspect-ratio: 4/3; object-fit: cover; }
.badge { position: absolute; top: .75rem; left: .75rem; background: var(--gold); color: var(--gold-ink); font-size: .72rem; font-weight: 700; padding: .3rem .6rem; border-radius: 999px; letter-spacing: .04em; text-transform: uppercase; }
.badge.inline { position: static; display: inline-block; margin-bottom: .5rem; }
.prod-body { padding: 1.25rem; }
.link-arrow { color: var(--gold); font-weight: 600; font-size: .9rem; display: inline-block; margin-top: .5rem; }

.adv-grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.adv-card { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }
.adv-icon { font-size: 1.8rem; margin-bottom: .5rem; }

.process-list { list-style: none; padding: 0; display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); counter-reset: none; }
.process-list li { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; }
.process-step { display:inline-block; font-family: "Fraunces", serif; font-size: 2rem; color: var(--gold); line-height: 1; margin-bottom: .5rem; }

.testi-grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.testi-card { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; margin: 0; }
.stars { color: var(--gold); letter-spacing: .1em; margin-bottom: .5rem; }
.testi-card footer { margin-top: 1rem; font-size: .9rem; color: var(--ivory-soft); }

.stats-band { background: var(--bg-2); padding: 3rem 0; border-block: 1px solid var(--border); }
.stats-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); text-align: center; }
.stat-value { font-family: "Fraunces", serif; font-size: 2.4rem; color: var(--gold); line-height: 1; }

.blog-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.blog-card { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; display: block; transition: transform .25s ease, border-color .25s ease; }
.blog-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.blog-card img { aspect-ratio: 16/10; object-fit: cover; }
.blog-body { padding: 1.25rem; }
.center-mt { text-align: center; margin-top: 2rem; }
.blog-cover { aspect-ratio: 16/9; object-fit: cover; margin: 1rem 0 2rem; }

/* Bulk band */
.bulk-band { background: linear-gradient(135deg, var(--gold) 0%, #b8934c 100%); color: var(--gold-ink); padding: 3rem 0; }
.bulk-band .eyebrow { color: var(--gold-ink); opacity: .7; }
.bulk-band .muted { color: rgba(26,20,15,.7); }
.bulk-band h2 { color: var(--gold-ink); }
.bulk-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 800px) { .bulk-grid { grid-template-columns: 1.5fr 1fr; } }
.bulk-cta { display:flex; flex-wrap:wrap; gap: .75rem; }
.bulk-band .btn-primary { background: var(--gold-ink); color: var(--gold); }
.bulk-band .btn-ghost { border-color: rgba(26,20,15,.35); color: var(--gold-ink); }

/* Contact strip */
.contact-strip { display: grid; gap: 2rem; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 800px) { .contact-strip { grid-template-columns: 1fr 1fr; } }
.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; }
.map-wrap.tall iframe { height: 500px; }

/* Page head */
.page-head { padding: 4rem 0 2rem; border-bottom: 1px solid var(--border); background: var(--bg-2); }
.chip-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.chip { padding: .45rem 1rem; border-radius: 999px; border: 1px solid var(--border); font-size: .85rem; color: var(--ivory-soft); }
.chip:hover, .chip.active { background: var(--gold); color: var(--gold-ink); border-color: var(--gold); }

.crumbs { font-size: .85rem; color: var(--muted); margin-bottom: 1.5rem; }
.crumbs a:hover { color: var(--gold); }

/* Product detail */
.prod-detail { display: grid; gap: 2.5rem; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 900px) { .prod-detail { grid-template-columns: 1fr 1fr; } }
.main-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-elev); }
.thumbs { display: grid; grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)); gap: .5rem; margin-top: .75rem; }
.thumbs img { aspect-ratio: 1; object-fit: cover; border-radius: .5rem; cursor: pointer; border: 2px solid transparent; transition: border-color .2s; }
.thumbs img:hover { border-color: var(--gold); }
.check-list { list-style: none; padding: 0; display: grid; gap: .5rem; margin: 1.5rem 0; }
.check-list li { color: var(--ivory-soft); }
.info-blocks { display: grid; gap: 1rem; margin-top: 2rem; }
.info-blocks > div { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; }
.info-blocks h4 { color: var(--gold); font-family: "Inter"; font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: .5rem; }

/* Gallery */
.gallery-grid { display: grid; gap: .75rem; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
.gal-item { border-radius: .75rem; overflow: hidden; aspect-ratio: 1; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.gal-item:hover img { transform: scale(1.05); }

/* Two col */
.two-col { display: grid; gap: 2.5rem; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 900px) { .two-col { grid-template-columns: 1.2fr 1fr; } }
.rounded { border-radius: var(--radius); box-shadow: var(--shadow-elev); }

/* CTA band */
.cta-band { display:flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; padding: 1.5rem; background: var(--bg-2); border-radius: var(--radius); border: 1px solid var(--border); justify-content: center; }

/* FAQ */
.faq { border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg-2); padding: 1rem 1.25rem; margin-bottom: .75rem; }
.faq summary { cursor: pointer; font-weight: 600; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq summary::after { content: "+"; color: var(--gold); font-size: 1.3rem; }
.faq[open] summary::after { content: "−"; }
.faq p { margin: .75rem 0 0; }

/* Prose */
.prose p { color: var(--ivory-soft); font-size: 1.05rem; line-height: 1.75; }

/* Footer */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--border); padding: 3rem 0 1.5rem; margin-top: 2rem; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.footer-grid h4 { color: var(--gold); font-family: "Inter"; font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 1rem; }
.footer-grid p { font-size: .9rem; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: .35rem; }
.footer-links a { font-size: .9rem; color: var(--ivory-soft); }
.footer-bottom { border-top: 1px solid var(--border); margin-top: 2rem; padding-top: 1.5rem; display:flex; flex-wrap:wrap; gap: 1rem; justify-content: space-between; font-size: .82rem; color: var(--muted); }

/* WhatsApp float */
.whatsapp-float { position: fixed; right: 1rem; bottom: 1rem; width: 56px; height: 56px; background: var(--whatsapp); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; box-shadow: 0 10px 25px -5px rgba(37,211,102,.4); z-index: 60; transition: transform .2s; }
.whatsapp-float:hover { transform: scale(1.08); color: white; }

/* ============ Scroll Reveal Animations ============ */
[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  filter: blur(6px);
  transition:
    opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 900ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform, filter;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}
[data-reveal="left"]  { transform: translate3d(-32px, 0, 0); }
[data-reveal="right"] { transform: translate3d(32px, 0, 0); }
[data-reveal="scale"] { transform: scale(0.94); }
[data-reveal="left"].is-visible,
[data-reveal="right"].is-visible { transform: translate3d(0, 0, 0); }
[data-reveal="scale"].is-visible { transform: scale(1); }

[data-reveal-stagger] > * {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  filter: blur(6px);
  transition:
    opacity 800ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 800ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 800ms cubic-bezier(0.22, 1, 0.36, 1);
}
[data-reveal-stagger].is-visible > * {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}
[data-reveal-stagger].is-visible > *:nth-child(1) { transition-delay: 0ms; }
[data-reveal-stagger].is-visible > *:nth-child(2) { transition-delay: 90ms; }
[data-reveal-stagger].is-visible > *:nth-child(3) { transition-delay: 180ms; }
[data-reveal-stagger].is-visible > *:nth-child(4) { transition-delay: 270ms; }
[data-reveal-stagger].is-visible > *:nth-child(5) { transition-delay: 360ms; }
[data-reveal-stagger].is-visible > *:nth-child(6) { transition-delay: 450ms; }
[data-reveal-stagger].is-visible > *:nth-child(7) { transition-delay: 540ms; }
[data-reveal-stagger].is-visible > *:nth-child(8) { transition-delay: 630ms; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-reveal-stagger] > * {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

/* Auto-reveal common section elements without needing markup changes */
.section > .container > h2,
.section > .container > .section-head,
.section > .container > .lead,
.section > .container > p,
.hero-copy > *,
.hero-media,
.prod-card, .cat-card, .blog-card, .adv-card,
.process-step, .bulk-band, .contact-strip,
.stats-grid > * {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  filter: blur(6px);
  transition:
    opacity 850ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 850ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 850ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.is-visible.section > .container > h2,
.is-visible.section > .container > .section-head,
.is-visible.section > .container > .lead,
.is-visible.section > .container > p,
.hero.is-visible .hero-copy > *,
.hero.is-visible .hero-media,
.prod-card.is-visible, .cat-card.is-visible,
.blog-card.is-visible, .adv-card.is-visible,
.process-step.is-visible, .bulk-band.is-visible,
.contact-strip.is-visible,
.stats-grid.is-visible > * {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

/* Stagger children inside grids when the grid becomes visible */
.prod-grid.is-visible > *:nth-child(1),
.cat-grid.is-visible > *:nth-child(1),
.blog-grid.is-visible > *:nth-child(1),
.adv-grid.is-visible > *:nth-child(1),
.stats-grid.is-visible > *:nth-child(1) { transition-delay: 0ms; }
.prod-grid.is-visible > *:nth-child(2),
.cat-grid.is-visible > *:nth-child(2),
.blog-grid.is-visible > *:nth-child(2),
.adv-grid.is-visible > *:nth-child(2),
.stats-grid.is-visible > *:nth-child(2) { transition-delay: 100ms; }
.prod-grid.is-visible > *:nth-child(3),
.cat-grid.is-visible > *:nth-child(3),
.blog-grid.is-visible > *:nth-child(3),
.adv-grid.is-visible > *:nth-child(3),
.stats-grid.is-visible > *:nth-child(3) { transition-delay: 200ms; }
.prod-grid.is-visible > *:nth-child(4),
.cat-grid.is-visible > *:nth-child(4),
.blog-grid.is-visible > *:nth-child(4),
.adv-grid.is-visible > *:nth-child(4),
.stats-grid.is-visible > *:nth-child(4) { transition-delay: 300ms; }
.prod-grid.is-visible > *:nth-child(5),
.cat-grid.is-visible > *:nth-child(5),
.blog-grid.is-visible > *:nth-child(5),
.adv-grid.is-visible > *:nth-child(5) { transition-delay: 400ms; }
.prod-grid.is-visible > *:nth-child(6),
.cat-grid.is-visible > *:nth-child(6),
.blog-grid.is-visible > *:nth-child(6),
.adv-grid.is-visible > *:nth-child(6) { transition-delay: 500ms; }

/* Hero copy stagger */
.hero.is-visible .hero-copy > *:nth-child(1) { transition-delay: 0ms; }
.hero.is-visible .hero-copy > *:nth-child(2) { transition-delay: 120ms; }
.hero.is-visible .hero-copy > *:nth-child(3) { transition-delay: 240ms; }
.hero.is-visible .hero-copy > *:nth-child(4) { transition-delay: 360ms; }
.hero.is-visible .hero-copy > *:nth-child(5) { transition-delay: 480ms; }
.hero.is-visible .hero-media { transition-delay: 200ms; }

@media (prefers-reduced-motion: reduce) {
  .section > .container > *,
  .hero-copy > *, .hero-media,
  .prod-card, .cat-card, .blog-card, .adv-card,
  .process-step, .bulk-band, .contact-strip,
  .stats-grid > * {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

