:root {
  --gold: #b8935f;
  --gold-dark: #96723f;
  --black: #1a1816;
  --black-rich: #121110;
  --cream: #ebe3d8;
  --cream-warm: #e3d9cc;
  --surface: #ddd3c8;
  --img-well: #ddd3c8;
  --ink: #1a1816;
  --muted: #8a8378;
  --scroll-track: #e3d9cc;
  --scroll-thumb: #b8935f;
  --scroll-thumb-hover: #96723f;
}

/* Scrollbars — crema/dorado, nunca blanco */
html {
  scroll-behavior: smooth;
  scrollbar-color: var(--scroll-thumb) var(--scroll-track);
  scrollbar-width: thin;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scrollbar-color: var(--scroll-thumb) var(--scroll-track);
  scrollbar-width: thin;
}
*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
*::-webkit-scrollbar-track {
  background: var(--scroll-track);
  border-radius: 999px;
}
*::-webkit-scrollbar-thumb {
  background: var(--scroll-thumb);
  border-radius: 999px;
  border: 2px solid var(--scroll-track);
}
*::-webkit-scrollbar-thumb:hover {
  background: var(--scroll-thumb-hover);
}
*::-webkit-scrollbar-corner {
  background: var(--scroll-track);
}
body {
  font-family: 'Poppins', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}
h1, h2, h3, .logo { font-family: 'Poppins', sans-serif; font-weight: 600; }
img { display: block; max-width: 100%; }
.hidden { display: none !important; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(235, 227, 216, .94);
  backdrop-filter: blur(12px);
  border-top: 3px solid var(--black);
  border-bottom: 1px solid rgba(26, 24, 22, .1);
}
.header-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}
.logo img {
  height: 52px;
  width: auto;
  display: block;
}
.main-nav { display: flex; gap: 6px; flex-wrap: wrap; }
.main-nav a {
  text-decoration: none; color: var(--ink); font-size: 14px;
  padding: 8px 14px; border-radius: 999px; transition: .25s;
}
.main-nav a:hover { background: var(--black); color: #fff; }
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(150,114,63,.28);
  background: rgba(255,255,255,.55);
  color: var(--ink);
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.nav-toggle:hover { background: var(--gold); color: #fff; border-color: var(--gold); }

/* Hero */
.hero {
  padding: 48px 24px 32px;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(184,147,95,.12) 0%, transparent 60%),
    var(--cream);
}
.hero-grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: center;
}
.hero-copy { text-align: left; }
.eyebrow {
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: 12px;
}
.hero h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 16px; line-height: 1.15; }
.hero-lead { color: var(--muted); font-size: 1.02rem; margin-bottom: 24px; max-width: 420px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-visual .carousel,
.hero-carousel {
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 20px 50px rgba(43,41,38,.12);
  aspect-ratio: 4 / 3;
  width: 100%;
  background: var(--cream);
  position: relative;
}
.hero-visual .carousel .carousel-track,
.hero-carousel .carousel-track { height: 100%; align-items: stretch; }
.hero-visual .carousel .carousel-slide,
.hero-carousel .carousel-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: var(--img-well);
}
.hero-visual .carousel .carousel-slide-media,
.hero-carousel .carousel-slide-media {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

/* Stats */
.stats-bar {
  max-width: 1180px; margin: 0 auto 8px; padding: 0 24px 32px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.stat {
  text-align: center; padding: 18px 12px;
  background: var(--surface); border-radius: 14px;
  border: 1px solid rgba(184,147,95,.2);
  border-top: 2px solid var(--black);
}
.stat strong { display: block; font-size: 1.5rem; color: var(--black); font-family: 'Poppins', sans-serif; font-weight: 600; }
.stat span { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 24px; border-radius: 999px; font-weight: 500;
  text-decoration: none; font-size: 14px; transition: .25s; border: 2px solid transparent;
  cursor: pointer;
}
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); }
.btn-wa { background: #25D366; color: #fff; gap: 8px; }
.btn-wa:hover { background: #1ebe57; transform: translateY(-2px); }
.btn-outline { border-color: var(--gold); color: var(--gold-dark); background: transparent; }
.btn-outline:hover { background: var(--gold); color: #fff; }
/* Categories scroll row */
.categories-scroll { max-width: 1180px; margin: 0 auto; padding: 8px 24px 24px; }
.categories-label {
  text-align: center; font-size: 13px; color: var(--muted);
  margin-bottom: 14px; letter-spacing: .03em;
}
.seo-intro { max-width: 720px; margin-left: auto; margin-right: auto; line-height: 1.55; }
.seo-intro a { color: var(--gold-dark); text-decoration: underline; text-underline-offset: 2px; }
.seo-intro a:hover { color: var(--gold); }
.categories {
  display: flex; gap: 12px; overflow-x: auto; padding-bottom: 8px;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
}
.categories .cat-card {
  flex: 0 0 180px;
  width: 180px;
  aspect-ratio: 4 / 3;
  min-height: unset;
  scroll-snap-align: start;
}
.cat-card {
  position: relative; border-radius: 16px; overflow: hidden;
  cursor: pointer; border: 1px solid rgba(184,147,95,.25);
  transition: transform .3s, box-shadow .3s;
  background: var(--img-well);
}
.cat-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(43,41,38,.12); }
.cat-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain;
  transition: transform .5s;
}
.cat-card:hover .cat-bg { transform: scale(1.06); }
.cat-card span {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 12px; color: #fff; font-family: 'Poppins', sans-serif;
  font-size: .88rem; line-height: 1.25;
  background: linear-gradient(transparent, rgba(43,41,38,.78));
}

/* Value strip */
.value-strip {
  max-width: 1180px; margin: 0 auto; padding: 8px 24px 32px;
}
.value-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.value-card {
  padding: 22px 20px; border-radius: 14px;
  background: var(--surface); border: 1px solid rgba(184,147,95,.18);
  text-align: center;
}
.value-card h3 {
  font-size: 1.05rem; margin-bottom: 8px; color: var(--black);
  font-family: 'Poppins', sans-serif;
}
.value-card p {
  font-size: 14px; color: var(--muted); line-height: 1.5;
  max-width: 28ch; margin-left: auto; margin-right: auto;
}

.panel-count {
  text-align: center; font-size: 12px; color: var(--gold-dark);
  margin-bottom: 12px; letter-spacing: .04em; text-transform: uppercase;
}

/* Custom / medida */
.custom-section {
  background: var(--cream-warm);
  border-top: 1px solid rgba(184,147,95,.12);
  padding: 48px 24px;
}
.custom-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.custom-copy h2 { font-size: 2rem; margin-bottom: 14px; }
.custom-copy p { color: var(--muted); margin-bottom: 12px; }
.custom-visual img {
  width: 100%; border-radius: 16px;
  box-shadow: 0 16px 40px rgba(43,41,38,.1);
  aspect-ratio: 4/3; object-fit: contain; background: var(--img-well);
}

/* Carousel core — viewport fijo, img normal (sin absolute) */
.carousel { position: relative; overflow: hidden; background: var(--img-well); display: block; }
.carousel-track {
  display: flex;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.carousel-slide {
  flex: 0 0 100%;
  min-width: 100%;
  position: relative;
  overflow: hidden;
  background: var(--img-well);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual .carousel .carousel-slide,
.about-visual .carousel .carousel-slide,
.gallery-carousel .carousel-slide {
  height: 100%;
}
.carousel-slide-media {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(150,114,63,.22);
  background: rgba(255,255,255,.88); color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 2;
  box-shadow: 0 4px 14px rgba(43,41,38,.12);
  transition: background .2s, color .2s, border-color .2s;
}
.carousel-btn:hover { background: var(--gold); color: #fff; }
.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }
.carousel-dots {
  position: absolute; bottom: 12px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 8px; z-index: 2;
}
.carousel-dot {
  width: 8px; height: 8px; border-radius: 50%; border: none;
  background: rgba(255,255,255,.5); cursor: pointer; padding: 0;
}
.carousel-dot.active { background: var(--gold); transform: scale(1.2); }

/* Featured */
.featured-section {
  max-width: 1180px; margin: 0 auto; padding: 24px 24px 48px;
}
.section-head { text-align: center; margin-bottom: 24px; }
.section-head h2 {
  font-size: 2rem; margin-bottom: 6px; color: var(--black);
}
.section-head h2::after {
  content: "";
  display: block;
  width: 44px;
  height: 2px;
  background: var(--black);
  margin: 10px auto 0;
  opacity: .85;
}
.section-lead { color: var(--muted); font-size: 15px; max-width: 520px; margin: 0 auto; }

.featured-carousel .carousel-slide { flex: 0 0 min(280px, 78vw); min-width: min(280px, 78vw); padding: 0 8px; }
.featured-carousel .carousel-track { align-items: stretch; }
.featured-carousel .carousel-slide {
  align-items: stretch;
  justify-content: flex-start;
}
.featured-slide > .card-link,
.featured-slide > .card,
.featured-slide > article {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}
.featured-carousel {
  border-radius: 18px;
  overflow: hidden;
  background: var(--img-well);
}
.featured-carousel .carousel-slide { background: transparent; }

/* Catalog */
.catalog-section {
  max-width: 1180px; margin: 0 auto; padding: 48px 24px;
  border-top: 1px solid rgba(184,147,95,.12);
}
.catalog-toolbar { margin-bottom: 28px; }
#catalog-search {
  width: 100%; max-width: 480px; display: block; margin: 0 auto 16px;
  padding: 14px 20px; border-radius: 999px; border: 1px solid rgba(184,147,95,.35);
  background: var(--surface); font-family: inherit; font-size: 15px;
  outline: none; transition: border-color .2s;
}
#catalog-search:focus { border-color: var(--gold); }
.cat-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.cat-tab {
  padding: 10px 18px; border-radius: 999px; border: 1px solid var(--gold);
  background: transparent; color: var(--ink); font-family: inherit;
  font-size: 13px; cursor: pointer; transition: .2s;
}
.cat-tab.active, .cat-tab:hover { background: var(--gold); color: #fff; }
.catalog-panel { display: none; animation: fadeIn .35s ease; }
.catalog-panel.active { display: block; }
.panel-intro { text-align: center; color: var(--muted); margin-bottom: 20px; font-size: 14px; }
.catalog-carousel .carousel-slide { flex: 0 0 min(260px, 76vw); min-width: min(260px, 76vw); padding: 0 10px; }
.catalog-carousel .carousel-track { align-items: stretch; }
.catalog-carousel .carousel-slide {
  align-items: stretch;
  justify-content: flex-start;
}
.catalog-slide > .card-link,
.catalog-slide > .card,
.catalog-slide > article {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}
.catalog-carousel {
  padding: 8px 0 24px;
  border-radius: 18px;
  overflow: hidden;
  background: var(--img-well);
}
.catalog-carousel .carousel-slide { background: transparent; }
.catalog-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px; margin-bottom: 20px;
}
.search-results { padding: 24px 0; animation: fadeIn .35s ease; }
.search-results h3 { text-align: center; margin-bottom: 20px; font-size: 1.2rem; }
.catalog-hint { text-align: center; color: var(--muted); font-size: 13px; min-height: 1.2em; }
.toggle-grid { display: block; margin: 8px auto 0; }

.card-link,
.card-link:link,
.card-link:visited,
.card-link:hover,
.card-link:active {
  display: block;
  text-decoration: none;
  color: var(--ink);
}
.card-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.card-link .code { color: var(--gold-dark); }
.card-link h4 { color: var(--ink); }
.card {
  background: var(--img-well); border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(184,147,95,.15);
  box-shadow: 0 4px 18px rgba(43,41,38,.06); transition: .3s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(43,41,38,.1); border-color: rgba(184,147,95,.3); }
.card-img-wrap {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--img-well);
  position: relative;
  border-bottom: 1px solid rgba(184,147,95,.1);
}
.card-img-wrap img,
.card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 10px;
  box-sizing: border-box;
  transition: transform .4s;
}
.card:hover img { transform: scale(1.04); }
.card .info { padding: 14px; text-align: center; background: var(--surface); }
.featured-carousel .card-img-wrap,
.catalog-carousel .card-img-wrap {
  flex-shrink: 0;
  width: 100%;
}
.featured-carousel .card .info,
.catalog-carousel .card .info,
.featured-carousel .card-link .info,
.catalog-carousel .card-link .info {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 5.25rem;
}
.featured-carousel .card h4,
.catalog-carousel .card h4,
.featured-carousel .card-link h4,
.catalog-carousel .card-link h4 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.38em;
}
.card .code { font-size: 11px; color: var(--gold-dark); letter-spacing: .08em; text-transform: uppercase; }
.card h4 { font-size: .88rem; margin-top: 6px; line-height: 1.35; font-weight: 500; }

/* WhatsApp flotante */
.wa-widget {
  position: fixed; bottom: 24px; right: 24px; z-index: 200;
}
.wa-float {
  background: #25D366; color: #fff; width: 58px; height: 58px;
  border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 22px rgba(37,211,102,.45);
  cursor: pointer; transition: transform .2s, box-shadow .2s;
}
.wa-float:hover { transform: scale(1.06); box-shadow: 0 8px 28px rgba(37,211,102,.55); }
.wa-menu {
  position: absolute; bottom: 70px; right: 0;
  width: min(280px, calc(100vw - 48px));
  background: var(--surface); border-radius: 16px;
  box-shadow: 0 12px 40px rgba(43,41,38,.18);
  border: 1px solid rgba(184,147,95,.2);
  padding: 16px; animation: fadeIn .2s ease;
}
.wa-menu[hidden] { display: none; }
.wa-menu-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem; color: var(--ink); margin-bottom: 2px;
}
.wa-menu-sub { font-size: 12px; color: var(--muted); margin-bottom: 12px; }
.wa-menu-item {
  display: flex; flex-direction: column; gap: 2px;
  padding: 12px 14px; border-radius: 10px;
  text-decoration: none; color: var(--ink);
  border: 1px solid rgba(184,147,95,.15);
  margin-bottom: 8px; transition: .2s;
}
.wa-menu-item:last-child { margin-bottom: 0; }
.wa-menu-item:hover {
  background: rgba(37,211,102,.08);
  border-color: #25D366;
}
.wa-menu-name { font-weight: 600; font-size: 14px; }
.wa-menu-num { font-size: 12px; color: var(--muted); }

/* About */
.about {
  max-width: none; padding: 56px 24px;
  background: var(--cream-warm);
  border-top: 1px solid rgba(184,147,95,.12);
}
.about-grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.about-visual .carousel,
.about-carousel {
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 16px 40px rgba(43,41,38,.1);
  aspect-ratio: 4/3;
  width: 100%;
  background: var(--cream);
}
.about-visual .carousel .carousel-track { height: 100%; align-items: stretch; }
.about-visual .carousel .carousel-slide,
.about-carousel .carousel-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--img-well);
}
.about-visual .carousel .carousel-slide-media,
.about-carousel .carousel-slide-media {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}
.about-copy h2 { font-size: 2rem; margin-bottom: 16px; }
.about-copy p { color: var(--muted); margin-bottom: 14px; }
.values {
  display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0 24px;
}
.values span {
  padding: 7px 16px; border: 1px solid var(--gold); border-radius: 999px;
  font-size: 12px; letter-spacing: .04em;
}

/* Gallery */
.gallery {
  max-width: 1180px; margin: 0 auto; padding: 56px 24px;
}
.gallery-stage { margin-top: 8px; }
.gallery-carousel {
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 16px 44px rgba(43,41,38,.1);
  aspect-ratio: 16/10;
  width: 100%;
  background: var(--cream);
}
.gallery-carousel .carousel-track { height: 100%; align-items: stretch; }
.gallery-carousel .carousel-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--img-well);
}
.gallery-carousel .carousel-slide-media {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  cursor: zoom-in;
}
.gallery-thumbs {
  display: flex; gap: 10px; margin-top: 14px; overflow-x: auto;
  padding-bottom: 8px; scroll-snap-type: x mandatory;
}
.gallery-thumb {
  flex: 0 0 72px; height: 72px; border-radius: 10px; overflow: hidden;
  border: 2px solid rgba(184,147,95,.15); padding: 0; cursor: pointer; opacity: .65;
  transition: .2s; scroll-snap-align: start; background: var(--img-well);
}
.gallery-thumb.active, .gallery-thumb:hover { opacity: 1; border-color: var(--gold); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: contain; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(43,41,38,.88); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
}
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 8px; object-fit: contain; }
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none; color: #fff; font-size: 2.2rem; cursor: pointer;
}
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.15); border: none; color: #fff;
  width: 48px; height: 48px; border-radius: 50%; font-size: 1.6rem; cursor: pointer;
}
.lightbox-nav.prev { left: 20px; }
.lightbox-nav.next { right: 20px; }

/* Contact */
.contact {
  text-align: center; max-width: none; padding: 56px 24px;
  border-top: 1px solid rgba(184,147,95,.12);
}
.contact-inner {
  max-width: 560px; margin: 0 auto; padding: 36px 28px; border-radius: 18px;
  background: var(--surface); border: 1px solid rgba(184,147,95,.22);
}
.contact h2 { margin-bottom: 8px; }
.contact p { color: var(--muted); margin-bottom: 18px; }
.contact-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.contact-email a { color: var(--gold-dark); font-weight: 500; }
.contact-email { margin-top: 14px; }

.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
}
.social-links--footer { margin: 0 0 14px; }
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(150,114,63,.28);
  transition: background .25s, color .25s, transform .25s, border-color .25s;
}
.social-link:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}

.footer-catalog { margin: 0 0 14px; }
.footer-catalog-btn {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid rgba(184,147,95,.45);
  color: var(--gold-dark);
  background: rgba(255,255,255,.45);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .03em;
  text-decoration: none;
  transition: background .25s, color .25s, border-color .25s, transform .25s;
}
.footer-catalog-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-1px);
}

.site-footer {
  text-align: center; padding: 28px 24px;
  background: var(--cream-warm); color: var(--muted); font-size: 13px;
  border-top: 1px solid rgba(184,147,95,.12);
}
.footer-logo {
  display: block; margin: 0 auto 12px;
  opacity: .85;
}
.site-footer p + p { margin-top: 6px; }
.footer-credit {
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted);
  opacity: .85;
}
.footer-credit a {
  color: var(--gold-dark);
  text-decoration: none;
  font-weight: 500;
}
.footer-credit a:hover { color: var(--gold); text-decoration: underline; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
  .hero-grid, .about-grid, .custom-inner { grid-template-columns: 1fr; gap: 28px; }
  .value-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .about-copy { text-align: center; }
  .about-copy .values { justify-content: center; }
  .about-copy .btn { margin-left: auto; margin-right: auto; }
  .custom-copy { text-align: center; }
  .custom-copy .btn { margin-left: auto; margin-right: auto; }
  .hero-copy .eyebrow { margin-left: auto; margin-right: auto; }
  .catalog-toolbar { text-align: center; }
  #catalog-search { display: block; width: 100%; max-width: 340px; margin: 0 auto 16px; }
  .cat-tabs { justify-content: center; }
  .contact-inner { text-align: center; }
  .panel-intro, .panel-count { text-align: center; }
  .catalog-panel .toggle-grid { margin-left: auto; margin-right: auto; display: flex; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .main-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: center; background: var(--cream);
    padding: 12px 24px 20px; border-bottom: 1px solid rgba(184,147,95,.12);
  }
  .main-nav.open { display: flex; }
  .main-nav a { text-align: center; width: 100%; max-width: 280px; }
  .header-inner {
    position: relative; flex-wrap: wrap;
    justify-content: center;
  }
  .nav-toggle {
    position: absolute; right: 24px; top: 50%;
    transform: translateY(-50%);
  }
  .featured-carousel .carousel-slide,
  .catalog-carousel .carousel-slide { flex: 0 0 240px; min-width: 240px; }
  .contact-inner { padding: 28px 20px; }
  .hero,
  .stats-bar,
  .categories-scroll,
  .value-strip,
  .featured-section,
  .catalog-section,
  .about,
  .gallery,
  .custom-section,
  .contact,
  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }
  .header-inner { padding-left: 20px; padding-right: 20px; }
}

@media (max-width: 480px) {
  .stats-bar {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}
