/* ============ MARMO — Glassmorphism / Modern ============ */
:root {
  --ink: #10120f;
  --ink-2: #1a1d19;
  --paper: #f5f4f0;
  --card: #ffffff;
  --line: rgba(16, 18, 15, 0.1);
  --line-strong: rgba(16, 18, 15, 0.16);
  --accent: #1e5b49;
  --accent-deep: #163f33;
  --accent-bright: #3f8a72;
  --gold: #c9a86a;
  --muted: #6b6b64;
  --on-accent: #f5f4f0;
  --radius: 22px;
  --radius-inner: 14px;
  --shadow-soft: 0 30px 70px -34px rgba(16, 18, 15, 0.4);
  --shadow-card: 0 20px 44px -26px rgba(16, 18, 15, 0.3);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.4, 0.4, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 0.6rem;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1rem; }
a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }

.container { width: min(1180px, 92%); margin: 0 auto; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--accent); color: var(--on-accent); padding: 0.7rem 1.1rem;
  border-radius: 0 0 10px 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

body.no-scroll { overflow: hidden; }

::selection { background: var(--accent); color: var(--on-accent); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Grain overlay (fixed, pointer-events none) */
.grain {
  position: fixed;
  inset: 0;
  z-index: 300;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.95rem 1.8rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  transition: transform 0.45s var(--ease), background 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
.btn:active { transform: translateY(1px) scale(0.98); }

.btn-accent {
  background: linear-gradient(135deg, var(--accent-bright), var(--accent) 55%, var(--accent-deep));
  color: var(--on-accent);
  box-shadow: 0 16px 32px -16px rgba(31, 91, 73, 0.7);
}
.btn-accent::before {
  content: "";
  position: absolute;
  top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s var(--ease);
}
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 22px 40px -18px rgba(31, 91, 73, 0.8); }
.btn-accent:hover::before { left: 130%; }

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  font-size: 0.9rem;
  transition: transform 0.45s var(--ease), background 0.3s ease;
}
.btn:hover .btn-icon { transform: translateX(3px); background: rgba(255, 255, 255, 0.3); }

.btn-glass {
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper);
  border-color: rgba(245, 244, 240, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn-glass:hover { background: rgba(255, 255, 255, 0.16); border-color: rgba(245, 244, 240, 0.5); transform: translateY(-2px); }

.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* ---------- Badge ---------- */
.badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold);
  border: 1px solid rgba(201, 168, 106, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.badge-light {
  background: rgba(245, 244, 240, 0.08);
  color: var(--gold);
  border-color: rgba(201, 168, 106, 0.4);
}

/* ---------- Top bar ---------- */
.top-bar {
  background: linear-gradient(90deg, var(--ink), var(--ink-2));
  color: rgba(245, 244, 240, 0.75);
  font-size: 0.8rem;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.55rem 0;
}
.top-contact { display: flex; gap: 1.4rem; }
.top-contact a { color: var(--paper); text-decoration: none; transition: color 0.25s ease; }
.top-contact a:hover { color: var(--gold); }

/* ---------- Floating glass nav ---------- */
.site-header {
  position: sticky;
  top: 12px;
  z-index: 150;
  display: flex;
  justify-content: center;
  padding: 0 14px;
  transition: top 0.4s var(--ease);
}
.site-header.scrolled { top: 6px; }

.nav-pill {
  position: relative;
  width: min(1100px, 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0.5rem 0.5rem 1.3rem;
  border-radius: 999px;
  background: rgba(245, 244, 240, 0.75);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--line);
  box-shadow: 0 16px 44px -24px rgba(16, 18, 15, 0.4);
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s var(--ease);
}
.site-header.scrolled .nav-pill {
  background: rgba(245, 244, 240, 0.92);
  box-shadow: 0 22px 52px -26px rgba(16, 18, 15, 0.5);
}

.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 50px; width: auto; }
@media (max-width: 640px) { .brand-logo { height: 40px; } }

.nav-list {
  display: flex;
  gap: 0.3rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-list a {
  text-decoration: none;
  color: var(--ink-2);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  transition: color 0.25s ease, background 0.25s ease;
}
.nav-list a:hover { color: var(--accent); background: rgba(31, 91, 73, 0.1); }

.nav-cta { margin-left: 0.2rem; }

.nav-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  background: rgba(31, 91, 73, 0.12);
  border: 1px solid rgba(31, 91, 73, 0.25);
  border-radius: 50%;
  cursor: pointer;
}
.nav-toggle span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.25s ease;
}
.nav-toggle span:nth-child(1) { transform: translate(-50%, calc(-50% - 5px)); }
.nav-toggle span:nth-child(2) { transform: translate(-50%, -50%); }
.nav-toggle span:nth-child(3) { transform: translate(-50%, calc(-50% + 5px)); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translate(-50%, -50%) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: clamp(4rem, 8vw, 6.5rem) 0 clamp(3rem, 6vw, 4.5rem);
  background: radial-gradient(1200px 700px at 85% -10%, rgba(63, 138, 114, 0.28), transparent 60%),
              radial-gradient(900px 600px at -10% 110%, rgba(201, 168, 106, 0.16), transparent 55%),
              linear-gradient(180deg, #0f1210, #141a17);
  color: var(--paper);
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.6s var(--ease);
}
.hero-slide.is-active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.12);
  animation: slide-right 6s var(--ease) both;
}
.hero-slide.is-active img { animation: slide-right 6s var(--ease) both; }
@keyframes slide-right {
  from { transform: scale(1.12) translateX(-3%); }
  to { transform: scale(1.12) translateX(3%); }
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(11, 14, 12, 0.86) 0%, rgba(11, 14, 12, 0.55) 45%, rgba(11, 14, 12, 0.35) 100%),
    linear-gradient(180deg, rgba(11, 14, 12, 0.5), transparent 40%, transparent 60%, rgba(11, 14, 12, 0.6));
}
.hero-mesh {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(420px 420px at 18% 30%, rgba(63, 138, 114, 0.35), transparent 70%),
    radial-gradient(380px 380px at 80% 65%, rgba(201, 168, 106, 0.22), transparent 70%);
  filter: blur(30px);
  animation: mesh-drift 16s var(--ease) infinite alternate;
}
@keyframes mesh-drift {
  from { transform: translate3d(-2%, -1%, 0) scale(1); }
  to { transform: translate3d(2%, 2%, 0) scale(1.08); }
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}
.hero-copy { max-width: 34em; display: flex; flex-direction: column; align-items: center; }
.hero-title {
  font-size: clamp(2.8rem, 6vw, 4.7rem);
  color: var(--paper);
  margin: 1.2rem 0 1.1rem;
}
.hero-title em {
  font-style: italic;
  font-weight: 700;
  background: linear-gradient(120deg, var(--gold), #efe3c8 60%, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 1.08rem;
  color: rgba(245, 244, 240, 0.8);
  max-width: 30em;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; margin-bottom: 2.2rem; }
.hero-trust {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  color: rgba(245, 244, 240, 0.55);
}

/* ---------- Sections ---------- */
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section-light { background: var(--paper); }
.section-dark { background: var(--ink); color: var(--paper); }
.section-head {
  max-width: 40em;
  margin: 0 auto clamp(2.2rem, 4vw, 3.2rem);
  text-align: center;
}
.section-head h2 { font-size: clamp(2.1rem, 4vw, 3.1rem); }
.section-sub { color: var(--muted); font-size: 1rem; margin: 0.4rem 0 0; }
.section-head-dark .section-sub { color: rgba(245, 244, 240, 0.65); }
.section-head-dark h2 { color: var(--paper); }

/* ---------- Categories ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.cat-card {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.3s ease;
}
.cat-card::after {
  content: "";
  position: absolute;
  top: 0; left: -80%;
  width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  transition: left 0.8s var(--ease);
  z-index: 2;
  pointer-events: none;
}
.cat-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-soft); border-color: var(--line-strong); }
.cat-card:hover::after { left: 140%; }

.cat-img {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: linear-gradient(135deg, #e9e6dd, #d9d5ca);
}
.cat-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(16, 18, 15, 0.45));
  transition: opacity 0.4s ease;
}
.cat-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.cat-card:hover .cat-img img { transform: scale(1.08); }

.cat-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
}
.cat-body h3 { font-size: 1.35rem; margin: 0; }
.cat-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
  transition: transform 0.4s var(--ease);
}
.cat-card:hover .cat-link { transform: translateX(4px); }

/* ---------- Bestsellers ---------- */
.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.product {
  background: rgba(245, 244, 240, 0.06);
  border: 1px solid rgba(245, 244, 240, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.5s var(--ease), border-color 0.3s ease, box-shadow 0.5s var(--ease);
}
.product:hover {
  transform: translateY(-8px);
  border-color: rgba(63, 138, 114, 0.6);
  box-shadow: 0 26px 60px -28px rgba(0, 0, 0, 0.65);
}
.product-img {
  position: relative;
  height: 190px;
  overflow: hidden;
}
.product-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.product:hover .product-img img { transform: scale(1.08); }
.product-tag {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold), #e6cd9c);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
}
.product-tag-gold {
  color: #fff;
  background: linear-gradient(135deg, #b3863f, var(--gold));
}
.product-body { padding: 1.2rem 1.3rem 1.35rem; }
.product-body h3 { font-size: 1.3rem; color: var(--paper); margin: 0 0 0.2rem; }
.product-meta { font-size: 0.82rem; color: rgba(245, 244, 240, 0.6); margin: 0 0 1rem; }
.product-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.product-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.product-price small { font-size: 0.85rem; font-weight: 500; color: rgba(245, 244, 240, 0.6); }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 250px;
  gap: 1.3rem;
}
.g-item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.g-wide { grid-column: span 2; }
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.5s ease;
}
.g-open {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  cursor: zoom-in;
  background: none;
}
.g-open:hover img { transform: scale(1.06); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 10, 9, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-stage {
  margin: 0;
  max-width: min(1100px, 90vw);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.8);
  transform: scale(0.96);
  transition: transform 0.45s var(--ease);
}
.lightbox.open .lightbox-img { transform: scale(1); }
.lightbox-caption {
  color: rgba(245, 244, 240, 0.8);
  font-size: 0.9rem;
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 1px solid rgba(245, 244, 240, 0.2);
  background: rgba(245, 244, 240, 0.08);
  color: var(--paper);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, transform 0.25s ease;
}
.lightbox-close { top: 24px; right: 24px; width: 46px; height: 46px; font-size: 1.6rem; line-height: 1; }
.lightbox-close:hover { background: rgba(245, 244, 240, 0.2); transform: rotate(90deg); }
.lightbox-nav { top: 50%; transform: translateY(-50%); width: 50px; height: 50px; font-size: 2rem; }
.lightbox-nav:hover { background: rgba(245, 244, 240, 0.2); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
@media (max-width: 640px) {
  .lightbox-nav { width: 40px; height: 40px; font-size: 1.5rem; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-close { top: 14px; right: 14px; width: 40px; height: 40px; }
}

/* ---------- Contact ---------- */
.section-contact {
  position: relative;
  background: radial-gradient(1000px 600px at 12% 10%, rgba(63, 138, 114, 0.22), transparent 60%),
              radial-gradient(800px 500px at 95% 90%, rgba(201, 168, 106, 0.14), transparent 55%),
              linear-gradient(160deg, #12150f, #0e1210 70%);
  color: var(--paper);
  overflow: hidden;
}
.contact-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(500px 400px at 85% 20%, rgba(201, 168, 106, 0.14), transparent 70%);
  animation: mesh-drift 18s var(--ease) infinite alternate;
}
.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
.contact-info h2 { font-size: clamp(2rem, 3.6vw, 3rem); color: var(--paper); margin: 1rem 0 0.6rem; }
.contact-note { color: rgba(245, 244, 240, 0.7); margin-bottom: 2.2rem; }
.contact-rows { border-top: 1px solid rgba(245, 244, 240, 0.14); }
.contact-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(245, 244, 240, 0.14);
  transition: background 0.3s ease;
}
.contact-row:hover { background: rgba(245, 244, 240, 0.04); }
.contact-row span { color: rgba(245, 244, 240, 0.6); font-size: 0.85rem; }
.contact-row strong { color: var(--paper); font-weight: 500; font-size: 1.02rem; }

/* Glass form */
.glass-card {
  padding: clamp(1.5rem, 3vw, 2.3rem);
  border-radius: var(--radius);
}
.form-card {
  background: rgba(245, 244, 240, 0.08);
  border: 1px solid rgba(245, 244, 240, 0.16);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.6);
  display: grid;
  gap: 1.1rem;
}
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-size: 0.84rem; font-weight: 600; color: var(--paper); }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 1.05rem;
  border: 1px solid rgba(245, 244, 240, 0.18);
  border-radius: var(--radius-inner);
  font: inherit;
  font-size: 0.95rem;
  color: var(--paper);
  background: rgba(16, 18, 15, 0.45);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(245, 244, 240, 0.4); }
.field select { cursor: pointer; }
.field select option { color: var(--ink); background: var(--paper); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent-bright);
  box-shadow: 0 0 0 3px rgba(63, 138, 114, 0.3);
  background: rgba(16, 18, 15, 0.6);
}
.form-note {
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 600;
  min-height: 1.2em;
  margin: 0;
}

/* ---------- WhatsApp floating button ---------- */
.wa-btn {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 350;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, #2bd06f, #25d366 55%, #128c7e);
  box-shadow: 0 16px 36px -12px rgba(18, 140, 126, 0.65);
  transition: transform 0.4s var(--ease), box-shadow 0.3s ease;
}
.wa-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.7);
  animation: wa-pulse 2.6s var(--ease) infinite;
  pointer-events: none;
}
.wa-btn svg { width: 31px; height: 31px; }
.wa-btn:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 22px 44px -14px rgba(18, 140, 126, 0.8); }
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.9; }
  100% { transform: scale(1.6); opacity: 0; }
}
.wa-tip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  white-space: nowrap;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 0.45rem 0.85rem;
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50%) translateX(8px);
  transition: opacity 0.3s var(--ease), visibility 0.3s, transform 0.3s var(--ease);
}
.wa-btn:hover .wa-tip { opacity: 1; visibility: visible; transform: translateY(-50%) translateX(0); }
@media (max-width: 640px) {
  .wa-btn { width: 52px; height: 52px; right: 16px; bottom: 16px; }
  .wa-tip { display: none; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: linear-gradient(180deg, #0e1210, #0b0e0c);
  color: rgba(245, 244, 240, 0.7);
}
.footer-top {
  padding: 4.5rem 0 2.5rem;
  border-bottom: 1px solid rgba(245, 244, 240, 0.1);
  text-align: center;
}
.footer-wordmark {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: clamp(3.4rem, 10vw, 7rem);
  letter-spacing: 0.08em;
  line-height: 1;
  margin: 0 0 0.8rem;
  width: min(320px, 70vw);
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.footer-tag { margin: 0; font-size: 0.95rem; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  padding: 3rem 0;
}
.footer-col h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--paper);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin: 0.5rem 0; font-size: 0.92rem; }
.footer-col a { text-decoration: none; transition: color 0.25s ease; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.4rem 0 2rem;
  border-top: 1px solid rgba(245, 244, 240, 0.1);
  font-size: 0.85rem;
}
.footer-bottom p { margin: 0; }
.footer-top-link { text-decoration: none; transition: color 0.25s ease; }
.footer-top-link:hover { color: var(--gold); }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.99);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: calc(var(--i, 0) * 90ms);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.reveal-delay { --i: 2; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.8rem; }
  .cat-grid, .products { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .g-item { grid-column: span 3; }
}

@media (max-width: 720px) {
  .top-bar-inner { flex-direction: column; gap: 0.2rem; padding: 0.6rem 0; }
  .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav-pill { padding: 0.45rem; }
  .brand { padding-left: 0.55rem; }

  .nav-list {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 1;
    width: min(320px, 100vw - 24px);
    flex-direction: column;
    align-items: stretch;
    gap: 0.1rem;
    padding: 0.8rem;
    border-radius: 18px;
    background: rgba(14, 18, 16, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(245, 244, 240, 0.14);
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.65);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.35s var(--ease), visibility 0.35s, transform 0.35s var(--ease);
  }
  .nav-list.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-list a {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--paper);
    padding: 0.55rem 1rem;
    border-radius: 12px;
    text-align: left;
  }
  .nav-list a:hover { background: rgba(245, 244, 240, 0.08); color: var(--gold); }

  .cat-grid, .products { grid-template-columns: 1fr; }
  .cat-img { height: 200px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions .btn { flex: 1 1 100%; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-mesh, .contact-glow { animation: none; }
  .hero-slide img, .hero-slide.is-active img { animation: none; transform: none; }
  .wa-btn::before { animation: none; }
  .btn, .cat-card, .product, .g-item { transition: none; }
  .btn:hover, .cat-card:hover, .product:hover { transform: none; }
  .cat-card:hover::after, .btn-accent::before { display: none; }
  .cat-card:hover .cat-img img, .product:hover .product-img img, .g-open:hover img { transform: none; }
}