/* ==========================================================================
   OPTICRAFT — Premium Eyewear Showcase
   ========================================================================== */

:root {
  --bg:            #141416;
  --bg-2:          #1A1A1C;
  --surface:       #202024;
  --surface-2:     #272728;
  --line:          rgba(201,162,75,0.18);
  --line-soft:     rgba(255,255,255,0.07);

  --gold:          #C9A24B;
  --gold-light:    #E0C074;
  --gold-deep:     #A9863A;

  --text:          #F5F5F0;
  --muted:         #9A9A95;
  --muted-2:       #6E6E69;

  --whatsapp:      #25D366;
  --whatsapp-dark: #1da851;

  --serif: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --maxw: 1200px;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 18px 50px rgba(0,0,0,0.45);
  --shadow-soft: 0 10px 30px rgba(0,0,0,0.35);
  --ease: cubic-bezier(0.22,1,0.36,1);
  --header-h: 70px;
}

/* Light mode overrides */
[data-theme="light"] {
  --bg:        #F5F5F3;
  --bg-2:      #EDEDEB;
  --surface:   #FFFFFF;
  --surface-2: #F0F0EE;
  --line:      rgba(0,0,0,0.1);
  --line-soft: rgba(0,0,0,0.07);
  --text:      #1A1A18;
  --muted:     #666662;
  --muted-2:   #999994;
}
[data-theme="light"] .site-header { background: rgba(245,245,243,0.88); }
[data-theme="light"] .site-header.scrolled { background: rgba(245,245,243,0.97); }
[data-theme="light"] .nav-links { background: rgba(245,245,243,0.98); }
[data-theme="light"] .product-modal { background: rgba(0,0,0,0.55); }
[data-theme="light"] .modal-gallery { background: linear-gradient(150deg, var(--bg-2) 0%, var(--bg) 60%, var(--bg-2) 100%); }
[data-theme="light"] .img-zoom-overlay .izov-bar { background: linear-gradient(to bottom, rgba(245,245,243,0.8) 0%, transparent 100%); }
[data-theme="light"] .izov-close { background: rgba(0,0,0,0.12); border-color: rgba(0,0,0,0.15); color: #1a1a18; }
[data-theme="light"] .izov-counter { color: rgba(26,26,24,0.7); }
/* Hero always stays dark so text is readable regardless of theme */
[data-theme="light"] .hero__bg img { opacity: 0.72; }
[data-theme="light"] .hero__bg::after {
  background:
    radial-gradient(120% 90% at 75% 30%, rgba(201,162,75,0.1), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,0.52) 0%, rgba(0,0,0,0.68) 55%, rgba(0,0,0,0.45) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.62) 5%, rgba(0,0,0,0.22) 60%, rgba(0,0,0,0.52));
}
/* All hero text + CTA always white — dark overlay is always present */
[data-theme="light"] .hero h1,
[data-theme="light"] .hero .tagline,
[data-theme="light"] .hero p.sub { color: #F5F5F0; }
[data-theme="light"] .hero .btn-outline { color: #F5F5F0; border-color: rgba(245,245,240,0.45); }
[data-theme="light"] .hero .btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }

/* Category cards always have a dark gradient overlay — keep text white */
[data-theme="light"] .cat-card__body h3 { color: #F5F5F0; }
[data-theme="light"] .cat-card__body p { color: rgba(245,245,240,0.72); }

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans); background: var(--bg); color: var(--text);
  line-height: 1.65; font-size: 16px;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden; transition: background 0.3s, color 0.3s;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.15; letter-spacing: 0.2px; }
h1 { font-size: clamp(2.4rem,6vw,4.2rem); }
h2 { font-size: clamp(1.9rem,4.2vw,3rem); }
h3 { font-size: clamp(1.25rem,2.4vw,1.6rem); }

.eyebrow {
  font-family: var(--sans); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold);
  display: inline-block; margin-bottom: 14px;
}
.lead { color: var(--muted); font-size: 1.05rem; max-width: 60ch; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }
.section { padding: clamp(56px,9vw,110px) 0; }
.section--tight { padding: clamp(40px,6vw,70px) 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto clamp(34px,5vw,56px); }
.section-head .lead { margin-inline: auto; }

.divider {
  width: 64px; height: 1px; margin: 18px auto;
  background: linear-gradient(90deg,transparent,var(--gold),transparent);
}
.divider--left { margin-inline: 0; }

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 13px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: var(--pad-y) 24px; border: 1px solid transparent; border-radius: 999px;
  font-size: 0.92rem; font-weight: 600; letter-spacing: 0.02em;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
              color 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:active { transform: translateY(1px) scale(0.99); }

.btn-gold {
  background: linear-gradient(135deg,var(--gold-light),var(--gold));
  color: #1a1505; box-shadow: 0 8px 24px rgba(201,162,75,0.22);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(201,162,75,0.34); }

.btn-outline { background: transparent; color: var(--text); border-color: var(--gold); }
.btn-outline:hover { background: rgba(201,162,75,0.1); color: var(--gold-light); transform: translateY(-2px); }

.btn-whatsapp { background: var(--whatsapp); color: #04210f; box-shadow: 0 8px 22px rgba(37,211,102,0.22); }
.btn-whatsapp:hover { background: var(--whatsapp-dark); color: #022; transform: translateY(-2px); }

.btn-ghost { background: rgba(245,245,240,0.04); color: var(--text); border-color: var(--line-soft); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); }

.btn-sm { --pad-y: 10px; padding: 10px 16px; font-size: 0.82rem; gap: 7px; }
.btn-block { display: flex; width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(20,20,22,0.72);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.site-header.scrolled { background: rgba(18,18,20,0.96); border-bottom-color: var(--line); }
.nav {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.brand { display: inline-flex; align-items: center; }
.brand svg, .brand img { height: 30px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 0.9rem; font-weight: 500; color: var(--muted);
  position: relative; padding: 6px 0; letter-spacing: 0.02em;
  transition: color 0.2s var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold); transition: width 0.28s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 10px; }

/* Theme toggle */
.theme-toggle {
  width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--line-soft);
  background: transparent; color: var(--muted); display: grid; place-items: center;
  transition: 0.22s var(--ease); flex: none;
}
.theme-toggle:hover { border-color: var(--gold); color: var(--gold); }
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .icon-moon { display: block; }
.theme-toggle .icon-sun  { display: none; }
[data-theme="light"] .theme-toggle .icon-moon { display: none; }
[data-theme="light"] .theme-toggle .icon-sun  { display: block; }

.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line-soft);
  background: transparent; border-radius: 10px; position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 20px; height: 2px;
  background: var(--text); transform: translate(-50%,-50%); transition: 0.25s var(--ease);
}
.nav-toggle span::before { transform: translate(-50%,-7px); }
.nav-toggle span::after  { transform: translate(-50%,5px); }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { transform: translate(-50%,-50%) rotate(45deg); }
.nav-toggle.open span::after  { transform: translate(-50%,-50%) rotate(-45deg); }

/* ---------- Page banner ---------- */
.page-banner { width: 100%; overflow: hidden; line-height: 0; text-align: center; }
.page-banner a, .page-banner span { display: block; }
.page-banner img {
  display: block; width: 100%; max-width: 1200px;
  height: auto; margin: 0 auto;
  transition: transform 0.6s var(--ease);
}
.page-banner a:hover img { transform: scale(1.02); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: calc(100vh - var(--header-h));
  display: flex; align-items: center; padding: 80px 0 60px; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 75% 30%,rgba(201,162,75,0.12),transparent 55%),
    linear-gradient(180deg,rgba(14,14,16,0.6) 0%,rgba(14,14,16,0.82) 55%,var(--bg) 100%),
    linear-gradient(90deg,var(--bg) 5%,rgba(14,14,16,0.35) 60%,rgba(14,14,16,0.7));
}
.hero__inner { position: relative; z-index: 1; max-width: 760px; }
.hero h1 { margin: 6px 0 4px; }
.hero h1 .gold { color: var(--gold); }
.hero .tagline {
  font-family: var(--serif); font-style: italic; font-size: clamp(1.1rem,2.6vw,1.5rem);
  color: var(--gold-light); margin-bottom: 16px;
}
.hero p.sub { color: var(--muted); font-size: 1.08rem; max-width: 48ch; margin-bottom: 30px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__scroll {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  z-index: 1; color: var(--muted-2); font-size: 0.72rem; letter-spacing: 0.2em;
  text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero__scroll .mouse { width: 22px; height: 34px; border: 1px solid var(--line); border-radius: 12px; position: relative; }
.hero__scroll .mouse::after {
  content: ""; position: absolute; left: 50%; top: 7px; width: 3px; height: 6px;
  border-radius: 2px; background: var(--gold); transform: translateX(-50%); animation: scrolldot 1.7s infinite;
}
@keyframes scrolldot { 0%{opacity:0;top:7px;} 40%{opacity:1;} 80%{opacity:0;top:16px;} 100%{opacity:0;} }

/* ---------- Trust badges ---------- */
.trust { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); background: var(--bg-2); }
.trust__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; padding: 30px 0; text-align: center; }
.trust__item { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.trust__item .ti-top { display: flex; align-items: center; gap: 8px; font-family: var(--serif); font-size: 1.5rem; color: var(--gold); }
.trust__item .ti-top svg { width: 22px; height: 22px; }
.trust__item .ti-label { font-size: 0.82rem; color: var(--muted); letter-spacing: 0.04em; }

/* ---------- Category grid ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.cat-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  min-height: 230px; display: flex; align-items: flex-end;
  border: 1px solid var(--line-soft); background: var(--surface); isolation: isolate;
}
.cat-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  z-index: -2; transition: transform 0.7s var(--ease); opacity: 0.85;
}
.cat-card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg,rgba(14,14,16,0.1) 0%,rgba(14,14,16,0.55) 55%,rgba(14,14,16,0.92) 100%);
}
.cat-card:hover img { transform: scale(1.07); }
.cat-card__body { padding: 22px; width: 100%; }
.cat-card__body h3 { font-size: 1.35rem; margin-bottom: 4px; }
.cat-card__body p { color: var(--muted); font-size: 0.88rem; margin-bottom: 14px; }
.cat-card__link {
  display: inline-flex; align-items: center; gap: 8px; color: var(--gold);
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em;
}
.cat-card__link svg { width: 16px; height: 16px; transition: transform 0.25s var(--ease); }
.cat-card:hover .cat-card__link svg { transform: translateX(4px); }

/* ---------- Why strip ---------- */
.why { background: var(--bg-2); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.why-item { text-align: center; padding: 14px; }
.why-item .why-ico {
  width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 50%; display: grid; place-items: center;
  background: radial-gradient(circle at 30% 30%,rgba(201,162,75,0.22),rgba(201,162,75,0.05));
  border: 1px solid var(--line); color: var(--gold);
}
.why-item .why-ico svg { width: 26px; height: 26px; }
.why-item h3 { font-size: 1.12rem; margin-bottom: 8px; }
.why-item p { color: var(--muted); font-size: 0.9rem; }

/* ---------- Product grid / cards ---------- */
.product-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.product-grid.cols-3 { grid-template-columns: repeat(3,1fr); }

.product-card {
  background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
  cursor: pointer;
}
.product-card:hover { transform: translateY(-6px); border-color: var(--line); box-shadow: var(--shadow); }

.product-card__media {
  position: relative; height: 150px; overflow: hidden; background: #fff; flex-shrink: 0;
}
.product-card__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.6s var(--ease);
}
.product-card:hover .product-card__media img { transform: scale(1.06); }

/* Quick View overlay */
.pv-overlay {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0); transition: background 0.3s var(--ease); pointer-events: none;
}
.product-card:hover .pv-overlay { background: rgba(0,0,0,0.42); }
.pv-btn {
  padding: 9px 20px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.12); backdrop-filter: blur(8px);
  color: #fff; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em;
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease);
  pointer-events: auto; cursor: pointer;
}
.product-card:hover .pv-btn { opacity: 1; transform: none; }

.tag-por {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: rgba(14,14,16,0.78); color: var(--gold-light); border: 1px solid var(--line);
  padding: 5px 11px; border-radius: 999px; font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; backdrop-filter: blur(6px);
}
.cat-pill {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  background: rgba(14,14,16,0.6); color: var(--muted); border: 1px solid var(--line-soft);
  padding: 4px 10px; border-radius: 999px; font-size: 0.66rem; letter-spacing: 0.04em;
  backdrop-filter: blur(6px);
}
.badge-pill {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  background: var(--gold); color: #1a1505;
  padding: 4px 10px; border-radius: 999px; font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.product-card__body { padding: 16px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.product-card__brand { font-size: 0.76rem; color: var(--gold); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.product-card__body h3 { font-size: 1rem; line-height: 1.25; }
.product-card__body p { color: var(--muted); font-size: 0.82rem; margin-bottom: 4px; flex: 1; }
.product-card__meta { display: flex; gap: 6px; flex-wrap: wrap; margin: 4px 0; }
.meta-tag {
  padding: 2px 8px; border-radius: 999px; font-size: 0.68rem; font-weight: 500;
  background: var(--surface-2); border: 1px solid var(--line-soft); color: var(--muted);
}
.product-card__actions { display: grid; grid-template-columns: 1fr auto; gap: 8px; margin-top: 8px; }

/* ---------- Filter chips (homepage) ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.filter-chip {
  padding: 9px 18px; border-radius: 999px; border: 1px solid var(--line-soft);
  background: transparent; color: var(--muted); font-size: 0.85rem; font-weight: 500;
  transition: 0.22s var(--ease);
}
.filter-chip:hover { color: var(--text); border-color: var(--gold); }
.filter-chip.active { background: linear-gradient(135deg,var(--gold-light),var(--gold)); color: #1a1505; border-color: transparent; font-weight: 600; }

/* ---------- Catalog page layout ---------- */
.catalog-page { padding: clamp(28px,5vw,48px) 0 clamp(48px,8vw,80px); }

.catalog-topbar {
  display: flex; align-items: center; gap: 14px; margin-bottom: 22px; flex-wrap: wrap;
}
.filter-open-btn {
  display: none; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 999px;
  border: 1px solid var(--line-soft); background: transparent; color: var(--text);
  font-size: 0.88rem; font-weight: 600;
}
.filter-open-btn svg { width: 16px; height: 16px; color: var(--gold); }
.catalog-topbar-right { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.result-count { font-size: 0.88rem; color: var(--muted); }
.sort-select {
  padding: 9px 14px; border-radius: 10px; border: 1px solid var(--line-soft);
  background: var(--surface); color: var(--text); font-family: var(--sans); font-size: 0.88rem;
  outline: none; cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239A9A95' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 10px center;
  padding-right: 32px;
}

.catalog-layout { display: grid; grid-template-columns: 240px 1fr; gap: 28px; align-items: start; }

/* Filter sidebar */
.filter-sidebar {
  position: sticky; top: calc(var(--header-h) + 14px);
  background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius);
  overflow: hidden;
}
.filter-sidebar__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px; border-bottom: 1px solid var(--line-soft);
}
.filter-sidebar__head span { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text); }
.clear-all-btn {
  font-size: 0.76rem; color: var(--gold); background: none; border: none;
  font-weight: 600; cursor: pointer; opacity: 0; transition: opacity 0.2s;
}
.clear-all-btn.visible { opacity: 1; }
.filter-sidebar__close {
  display: none; width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--line-soft); background: var(--surface-2); color: var(--muted);
  cursor: pointer; align-items: center; justify-content: center;
  font-size: 0.9rem; line-height: 1; flex-shrink: 0;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.filter-sidebar__close:hover { background: var(--line-soft); color: var(--text); border-color: var(--line); }

.filter-group { padding: 14px 18px; border-bottom: 1px solid var(--line-soft); }
.filter-group:last-child { border-bottom: 0; }
.filter-group-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 10px; display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; user-select: none;
}
.filter-group-label svg { width: 14px; height: 14px; transition: transform 0.2s; }
.filter-group.collapsed .filter-group-label svg { transform: rotate(-90deg); }
.filter-group-items { display: flex; flex-direction: column; gap: 6px; }
.filter-group.collapsed .filter-group-items { display: none; }

/* Brands list gets a scroll container */
.filter-group-items.brands-list { max-height: 220px; overflow-y: auto; }
.filter-group-items.brands-list::-webkit-scrollbar { width: 4px; }
.filter-group-items.brands-list::-webkit-scrollbar-track { background: transparent; }
.filter-group-items.brands-list::-webkit-scrollbar-thumb { background: var(--line); border-radius: 2px; }

.filter-check { display: flex; align-items: center; gap: 9px; cursor: pointer; }
.filter-check input[type="checkbox"] { display: none; }
.check-box {
  width: 16px; height: 16px; border-radius: 4px; border: 1.5px solid var(--line-soft);
  background: transparent; flex: none; display: grid; place-items: center;
  transition: 0.18s var(--ease);
}
.filter-check input:checked + .check-box {
  background: var(--gold); border-color: var(--gold);
}
.filter-check input:checked + .check-box::after {
  content: ""; width: 8px; height: 5px; border-left: 2px solid #1a1505; border-bottom: 2px solid #1a1505;
  transform: translateY(-1px) rotate(-45deg); display: block;
}
.filter-check span { font-size: 0.86rem; color: var(--muted); transition: color 0.18s; }
.filter-check:hover span, .filter-check input:checked ~ span { color: var(--text); }

/* Filter sidebar overlay + mobile drawer */
.filter-backdrop {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 290; backdrop-filter: blur(3px);
}
.filter-backdrop.open { display: block; }

/* ---------- No results state ---------- */
.no-results {
  grid-column: 1/-1; text-align: center; padding: 60px 20px;
  color: var(--muted); font-size: 1.05rem;
}
.no-results button { margin-top: 14px; }

/* ---------- Featured row ---------- */
.featured-foot { text-align: center; margin-top: 44px; }

/* ---------- About teaser ---------- */
.about-teaser { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px,5vw,64px); align-items: center; }
.about-teaser__media { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 5/4; border: 1px solid var(--line-soft); }
.about-teaser__media img { width: 100%; height: 100%; object-fit: cover; }
.about-teaser__media::after { content:""; position:absolute; inset:0; background:linear-gradient(120deg,transparent,rgba(14,14,16,0.35)); }
.about-teaser h2 { margin-bottom: 10px; }
.about-teaser p { color: var(--muted); margin-bottom: 16px; }
.about-stats { display: flex; gap: 30px; margin: 24px 0 28px; }
.about-stats .num { font-family: var(--serif); font-size: 2rem; color: var(--gold); line-height: 1; }
.about-stats .lbl { font-size: 0.8rem; color: var(--muted); letter-spacing: 0.03em; }

/* ---------- Testimonials ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.review-card {
  background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 28px 26px; display: flex; flex-direction: column; gap: 14px;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}
.review-card:hover { transform: translateY(-4px); border-color: var(--line); }
.review-card .stars { color: var(--gold); letter-spacing: 2px; font-size: 0.95rem; }
.review-card blockquote { font-family: var(--serif); font-size: 1.18rem; line-height: 1.5; color: var(--text); font-style: italic; }
.review-card .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review-card .avatar {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg,var(--gold),var(--gold-deep)); color: #1a1505;
  font-weight: 700; font-family: var(--serif); font-size: 1.05rem; flex: none;
}
.review-card .who .name { font-weight: 600; font-size: 0.95rem; }
.review-card .who .src { font-size: 0.76rem; color: var(--muted); }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.service-card {
  background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 30px 26px; display: flex; flex-direction: column; gap: 12px;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease); text-align: left;
}
.service-card:hover { transform: translateY(-6px); border-color: var(--line); box-shadow: var(--shadow-soft); }
.service-card .svc-ico {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  background: radial-gradient(circle at 30% 30%,rgba(201,162,75,0.22),rgba(201,162,75,0.05));
  border: 1px solid var(--line); color: var(--gold); margin-bottom: 4px;
}
.service-card .svc-ico svg { width: 28px; height: 28px; }
.service-card h3 { font-size: 1.25rem; }
.service-card p { color: var(--muted); font-size: 0.9rem; flex: 1; }

/* ---------- Visit / Map ---------- */
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px,4vw,44px); align-items: stretch; }
.map-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); min-height: 380px; box-shadow: var(--shadow-soft); background: var(--surface); }
.map-frame iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; filter: grayscale(0.25) contrast(1.05); }
.visit-info { display: flex; flex-direction: column; gap: 22px; }
.info-row { display: flex; gap: 16px; align-items: flex-start; }
.info-row .info-ico { width: 46px; height: 46px; border-radius: 12px; flex: none; display: grid; place-items: center; background: var(--surface); border: 1px solid var(--line); color: var(--gold); }
.info-row .info-ico svg { width: 22px; height: 22px; }
.info-row h4 { font-family: var(--sans); font-weight: 600; font-size: 0.95rem; margin-bottom: 3px; }
.info-row p, .info-row a { color: var(--muted); font-size: 0.92rem; }
.info-row a:hover { color: var(--gold-light); }
.visit-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 6px; }
.hours-list { list-style: none; padding: 0; margin: 6px 0 0; display: flex; flex-direction: column; gap: 4px; }
.hours-list li { display: flex; justify-content: space-between; gap: 16px; font-size: 0.88rem; color: var(--muted); padding: 3px 0; border-bottom: 1px solid var(--line-soft); }
.hours-list li:last-child { border-bottom: none; }
.hours-list li span:first-child { font-weight: 500; color: var(--text); white-space: nowrap; }
.hours-list li.today { background: rgba(201,162,75,0.08); border-radius: 6px; padding: 3px 6px; margin: 0 -6px; }
.hours-list li.today span:first-child { color: var(--gold-light); }

/* ---------- Page hero (sub pages) ---------- */
.page-hero { position: relative; padding: clamp(40px,7vw,80px) 0 clamp(28px,4vw,44px); border-bottom: 1px solid var(--line-soft); overflow: hidden; }
.page-hero__bg { position: absolute; inset: 0; z-index: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: 0.32; }
.page-hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(14,14,16,0.45) 0%, var(--bg) 85%);
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2rem,5vw,3.2rem); margin-bottom: 8px; }
.page-hero p { color: var(--muted); max-width: 60ch; margin-top: 14px; }
.breadcrumb { font-size: 0.8rem; color: var(--muted-2); margin-bottom: 10px; letter-spacing: 0.04em; display: flex; align-items: center; gap: 6px; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: var(--muted-2); }

/* ---------- About page ---------- */
.prose { max-width: 760px; margin: 0 auto; }
.prose p { color: var(--muted); margin-bottom: 20px; font-size: 1.05rem; }
.prose p strong { color: var(--text); }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 10px; }
.value-card { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 26px; }
.value-card .v-num { font-family: var(--serif); color: var(--gold); font-size: 1.2rem; margin-bottom: 8px; }
.value-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.value-card p { color: var(--muted); font-size: 0.9rem; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--bg-2); border-top: 1px solid var(--line); }
.cta-band__inner { text-align: center; max-width: 680px; margin: 0 auto; position: relative; z-index: 1; }
.cta-band__inner p { color: var(--muted); margin: 12px 0 26px; }
.cta-band__cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cta-band__glow { position: absolute; inset: 0; background: radial-gradient(60% 120% at 50% 0%,rgba(201,162,75,0.14),transparent 60%); z-index: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--line-soft); padding: clamp(48px,7vw,72px) 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; }
.footer-col h4 { font-family: var(--sans); font-size: 0.82rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-brand svg { height: 30px; margin-bottom: 16px; }
.footer-brand p { color: var(--muted); font-size: 0.9rem; max-width: 32ch; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col a, .footer-col p { color: var(--muted); font-size: 0.9rem; transition: color 0.2s var(--ease); }
.footer-col a:hover { color: var(--gold-light); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 13px; }
.footer-contact svg { width: 17px; height: 17px; color: var(--gold); flex: none; margin-top: 3px; }
.socials { display: flex; gap: 12px; margin-top: 16px; }
.socials a {
  width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center;
  border: 1px solid var(--line-soft); color: var(--muted); transition: 0.22s var(--ease);
}
.socials a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.socials svg { width: 18px; height: 18px; }
.footer-bottom {
  margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line-soft);
  display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap;
  color: var(--muted-2); font-size: 0.82rem;
}
.footer-bottom a:hover { color: var(--gold); }

/* ---------- Floating WhatsApp ---------- */
.fab-whatsapp {
  position: fixed; right: 20px; bottom: 20px; z-index: 200;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--whatsapp); color: #fff; display: grid; place-items: center;
  box-shadow: 0 10px 28px rgba(37,211,102,0.4);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  animation: fab-pulse 2.6s infinite;
}
.fab-whatsapp svg { width: 30px; height: 30px; }
.fab-whatsapp:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 14px 34px rgba(37,211,102,0.5); }
.fab-whatsapp .fab-label {
  position: absolute; right: 70px; white-space: nowrap; background: var(--surface);
  border: 1px solid var(--line); color: var(--text); font-size: 0.82rem; font-weight: 500;
  padding: 8px 14px; border-radius: 10px; opacity: 0; transform: translateX(8px);
  pointer-events: none; transition: 0.25s var(--ease); box-shadow: var(--shadow-soft);
}
.fab-whatsapp:hover .fab-label { opacity: 1; transform: translateX(0); }
@keyframes fab-pulse {
  0%  { box-shadow: 0 10px 28px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 10px 28px rgba(37,211,102,0.4), 0 0 0 16px rgba(37,211,102,0); }
  100%{ box-shadow: 0 10px 28px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------- Product modal ---------- */
.product-modal {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 16px; opacity: 0; pointer-events: none; transition: opacity 0.28s var(--ease);
}
.product-modal.open { opacity: 1; pointer-events: auto; }

.modal-inner {
  background: var(--surface); border: 1px solid var(--line-soft); border-radius: 20px;
  border-top: 2px solid var(--gold);
  width: 100%; max-width: min(92vw, 1080px); max-height: 92vh;
  display: grid; grid-template-columns: 1fr; grid-template-rows: auto 1fr;
  overflow: hidden; position: relative;
  transform: scale(0.95) translateY(12px);
  transition: transform 0.32s var(--ease);
  box-shadow: 0 32px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(201,162,75,0.08);
}
.product-modal.open .modal-inner { transform: none; }

.modal-close {
  position: absolute; top: 14px; right: 14px; z-index: 10;
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line-soft);
  background: var(--surface-2); color: var(--text); font-size: 1.2rem; line-height: 1;
  display: grid; place-items: center; cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.modal-close:hover { background: var(--bg); border-color: var(--gold); color: var(--gold); }

/* Gallery side */
.modal-gallery {
  background: linear-gradient(150deg, #0e0e10 0%, var(--surface-2) 60%, #16161a 100%);
  position: relative; display: flex; flex-direction: column; overflow: hidden;
  height: clamp(340px, 52vh, 520px); flex-shrink: 0;
}
.gallery-main {
  flex: 1; position: relative; overflow: hidden; min-height: 0;
  display: flex; align-items: center; justify-content: center;
}
.gallery-main img {
  width: 100%; height: 100%; object-fit: contain; padding: 10px;
  transition: opacity 0.25s var(--ease), transform 0.4s var(--ease);
  cursor: zoom-in;
}
.gallery-main img.fade { opacity: 0; transform: scale(0.97); }

/* ── Amazon-style fullscreen gallery overlay ────────────────── */
.img-zoom-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--bg); display: flex; flex-direction: column;
  opacity: 0; transition: opacity 0.2s; pointer-events: none;
}
.img-zoom-overlay.open { opacity: 1; pointer-events: auto; }

/* Top bar: close button + counter */
.izov-bar {
  position: absolute; top: 0; left: 0; right: 0; z-index: 3;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px; flex-shrink: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%, transparent 100%);
}
.izov-close {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.22);
  color: #fff; font-size: 19px; display: grid; place-items: center;
  cursor: pointer; transition: background 0.18s;
}
.izov-close:hover { background: rgba(255,255,255,0.18); }
.izov-counter {
  color: rgba(255,255,255,0.8); font-size: 0.88rem; font-weight: 500;
  font-family: var(--sans); letter-spacing: .04em;
}

/* Stage: the zoomable image lives here */
.izov-stage {
  flex: 1; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.izov-img {
  width: 100%; height: 100%; object-fit: contain;
  touch-action: none; transform-origin: center center;
  user-select: none; -webkit-user-select: none;
  cursor: grab;
}
.izov-img:active { cursor: grabbing; }

/* Prev / Next arrows */
.izov-prev, .izov-next {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; font-size: 26px; font-weight: 300;
  display: grid; place-items: center; cursor: pointer;
  transition: background 0.18s, opacity 0.18s;
}
.izov-prev { left: 10px; }
.izov-next { right: 10px; }
.izov-prev:hover, .izov-next:hover { background: rgba(255,255,255,0.2); }
.izov-prev.hidden, .izov-next.hidden { opacity: 0; pointer-events: none; }

/* Thumbnail strip at bottom */
.izov-dots {
  display: flex; align-items: center;
  gap: 6px; padding: 10px 14px; flex-shrink: 0;
  background: rgba(0,0,0,0.72);
  overflow-x: auto; scrollbar-width: none;
}
.izov-dots::-webkit-scrollbar { display: none; }
.izov-dot {
  width: 58px; height: 44px; border-radius: 5px; flex-shrink: 0;
  overflow: hidden; cursor: pointer;
  border: 2px solid transparent; opacity: 0.55;
  transition: opacity 0.2s, border-color 0.2s;
}
.izov-dot img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; display: block; }
.izov-dot.active { border-color: var(--gold); opacity: 1; }

.gallery-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line-soft);
  background: rgba(20,20,22,0.7); backdrop-filter: blur(6px); color: var(--text);
  display: grid; place-items: center; cursor: pointer; z-index: 5;
  transition: background 0.2s, border-color 0.2s, opacity 0.2s;
  opacity: 0;
}
.gallery-arrow:hover { background: var(--gold); border-color: var(--gold); color: #1a1505; }
.gallery-arrow.prev { left: 10px; }
.gallery-arrow.next { right: 10px; }
.gallery-arrow svg { width: 16px; height: 16px; }
.modal-gallery:hover .gallery-arrow { opacity: 1; }
.gallery-arrow.hidden { display: none; }

.gallery-dots {
  display: flex; align-items: center;
  gap: 6px; padding: 8px 12px; flex-shrink: 0;
  overflow-x: auto; scrollbar-width: none;
  background: rgba(0,0,0,0.3);
}
.gallery-dots::-webkit-scrollbar { display: none; }
.gallery-dot {
  width: 54px; height: 40px; border-radius: 4px; flex-shrink: 0;
  overflow: hidden; cursor: pointer;
  border: 2px solid transparent; opacity: 0.55;
  transition: opacity 0.2s, border-color 0.2s;
}
.gallery-dot img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; display: block; }
.gallery-dot.active { border-color: var(--gold); opacity: 1; }

/* Info side — 2-column: details left, CTA right */
.modal-info { padding: 24px 28px; overflow-y: auto; display: grid; grid-template-columns: 1fr min(260px,40%); gap: 20px 28px; align-items: start; }
.modal-info::-webkit-scrollbar { width: 4px; }
.modal-info::-webkit-scrollbar-thumb { background: var(--line); border-radius: 2px; }
.modal-info-left { display: flex; flex-direction: column; gap: 12px; }
.modal-info-right { display: flex; flex-direction: column; gap: 14px; position: sticky; top: 0; }

.modal-brand { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.modal-name { font-family: var(--serif); font-size: 1.5rem; line-height: 1.2; }
.modal-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.modal-tag { padding: 3px 10px; border-radius: 999px; font-size: 0.72rem; font-weight: 500; background: var(--surface-2); border: 1px solid var(--line-soft); color: var(--muted); }
.modal-desc { color: var(--muted); font-size: 0.92rem; line-height: 1.6; }
.modal-por {
  display: inline-flex; align-items: center; width: fit-content;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(201,162,75,0.07); border: 1px solid rgba(201,162,75,0.25);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold);
}

/* Color swatches */
.modal-colors-label { font-size: 0.78rem; font-weight: 600; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 6px; }
.color-swatches { display: flex; gap: 10px; flex-wrap: wrap; }
.color-swatch {
  width: 32px; height: 32px; border-radius: 50%; cursor: pointer;
  border: 2.5px solid transparent; outline: 2px solid transparent;
  transition: outline-color 0.2s, border-color 0.2s, transform 0.2s;
  position: relative; overflow: hidden;
}
.color-swatch:hover { transform: scale(1.1); }
.color-swatch.active { border-color: #fff; outline-color: var(--gold); }
.color-swatch-inner { position: absolute; inset: 0; border-radius: 50%; box-shadow: inset 0 0 0 1.5px rgba(128,128,128,0.4); }

.modal-cta { display: flex; flex-direction: column; gap: 10px; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line-soft); }
.modal-cta .btn { width: 100%; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .product-grid, .product-grid.cols-3 { grid-template-columns: repeat(3,1fr); }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-brand { grid-column: 1/-1; }
  .catalog-layout { grid-template-columns: 210px 1fr; }
}
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(20,20,22,0.98); backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line); padding: 10px 22px 20px;
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: 0.28s var(--ease);
    max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 15px 0; border-bottom: 1px solid var(--line-soft); font-size: 1rem; }
  .nav-links a::after { display: none; }
  .nav-cta .btn-call-label { display: none; }

  .cat-grid { grid-template-columns: repeat(2,1fr); }
  .trust__grid { grid-template-columns: repeat(2,1fr); gap: 26px; }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .product-grid, .product-grid.cols-3 { grid-template-columns: repeat(2,1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .about-teaser { grid-template-columns: 1fr; }
  .about-teaser__media { order: -1; }
  .visit-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }

  /* Catalog: filter sidebar becomes drawer */
  .filter-open-btn { display: flex; }
  .filter-sidebar__close { display: flex; }
  .catalog-layout { grid-template-columns: 1fr; }
  .filter-sidebar {
    position: fixed; top: 0; left: 0; bottom: 0; width: 280px; z-index: 300;
    border-radius: 0; overflow-y: auto; transform: translateX(-100%);
    transition: transform 0.32s var(--ease); border: 0; border-right: 1px solid var(--line-soft);
  }
  .filter-sidebar.open { transform: none; }

  /* Modal stacks vertically on mobile */
  .modal-inner { grid-template-columns: 1fr; max-height: 92vh; overflow-y: auto; }
  .modal-gallery { min-height: 52vw; max-height: 55vh; }
  .modal-info { grid-template-columns: 1fr; }
  .modal-info-right { position: static; }
}
@media (max-width: 560px) {
  body { font-size: 15px; }
  .hero { min-height: auto; padding: 60px 0 50px; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
  .hero__scroll { display: none; }
  .cat-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .product-grid, .product-grid.cols-3 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .about-stats { gap: 22px; }
  .product-card__actions { grid-template-columns: 1fr; }
  .product-card__media { height: auto; aspect-ratio: 4/3; }
  .product-card__media img { object-fit: contain; }
  .fab-whatsapp { width: 54px; height: 54px; right: 16px; bottom: 16px; }
}

/* ---------- Utilities ---------- */
.center { text-align: center; }
.text-gold { color: var(--gold); }
.no-scroll { overflow: hidden; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
