/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:          #EDE6D4;
  --bg-2:        #E2D8C4;
  --bg-3:        #D8CEBC;
  --cream:       #FAFAF5;
  --cream-2:     #EDE4CC;
  --cream-3:     #D8CCAE;
  --dark:        #2C1E14;
  --dark-2:      #4A3828;
  --dark-3:      #6B5540;
  --orange:      #D4621A;
  --orange-2:    #B85016;
  --orange-glow: rgba(212, 98, 26, 0.18);
  --gold:        #C9963C;
  --gold-soft:   rgba(201, 150, 60, 0.15);
  --line:        rgba(58, 46, 35, 0.15);
  --line-orange: rgba(212, 98, 26, 0.40);
  --sans:        'Inter', system-ui, sans-serif;
  --serif:       'Playfair Display', Georgia, serif;
  --mono:        'JetBrains Mono', monospace;
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --nav-h:       72px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  background: var(--bg);
  color: var(--dark);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.05; letter-spacing: -0.02em; font-family: var(--serif); }
h1 em, h2 em, h3 em { font-style: italic; color: var(--orange); }
::selection { background: var(--orange); color: var(--cream); }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 4px; }

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .5rem 1rem; background: var(--cream); color: var(--bg);
  z-index: 9999; border-radius: 6px; font-weight: 500; font-size: .875rem;
}
.skip-link:focus { top: 1rem; }

.section-kicker {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .9rem;
}
.section-kicker--light { color: var(--gold); }

.section-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--dark);
  margin-bottom: 1.5rem;
}
.section-title--light { color: var(--dark); }

/* =============================================================
   4. Buttons
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .04em;
  border-radius: 4px;
  transition: background .3s var(--ease-out), color .3s var(--ease-out),
              transform .25s var(--ease-out), box-shadow .3s var(--ease-out);
  cursor: pointer;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 24px rgba(212,98,26,.35);
}
.btn-primary:hover {
  background: var(--orange-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212,98,26,.50);
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245,237,216,.3);
}
.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}
.materias .btn-ghost,
.suaza .btn-ghost,
.historia .btn-ghost,
.contacto .btn-ghost,
.galeria .btn-ghost {
  color: var(--dark);
  border-color: rgba(44, 30, 20, 0.35);
}
.materias .btn-ghost:hover,
.suaza .btn-ghost:hover,
.historia .btn-ghost:hover,
.contacto .btn-ghost:hover,
.galeria .btn-ghost:hover {
  color: var(--orange);
  border-color: var(--orange);
}

/* =============================================================
   5. Splash
   ============================================================= */
.splash {
  position: fixed; inset: 0; z-index: 9000;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s var(--ease-out), visibility .6s;
  animation: splashSafety .01s 4.5s forwards;
}
@keyframes splashSafety { to { opacity: 0; pointer-events: none; visibility: hidden; } }
.splash.is-out { opacity: 0; pointer-events: none; visibility: hidden; }
.splash-inner { display: flex; flex-direction: column; align-items: center; gap: 2rem; }
.splash-logo { width: clamp(160px, 30vw, 260px); }
.splash-bar {
  width: 160px; height: 2px; background: rgba(245,237,216,.1); border-radius: 2px; overflow: hidden;
}
.splash-fill {
  height: 100%; width: 0; background: var(--orange);
  animation: splashLoad 1.8s var(--ease-soft) forwards;
}
@keyframes splashLoad { to { width: 100%; } }

/* =============================================================
   6. Nav
   ============================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 800;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(1rem, 2.5vw, 2rem);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .4s var(--ease-out), border-color .4s var(--ease-out),
              box-shadow .4s var(--ease-out);
}
.nav.is-scrolled {
  background: rgba(13,13,13,.96);
  border-color: var(--line-orange);
  box-shadow: 0 2px 32px rgba(0,0,0,.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-logo { height: 52px; width: auto; object-fit: contain; }
.nav-menu {
  display: flex; align-items: center; gap: clamp(.4rem, 1.2vw, 1.4rem);
}
.nav-link {
  font-size: .78rem;
  font-weight: 400;
  color: var(--cream-2);
  letter-spacing: .02em;
  position: relative;
  transition: color .25s;
  white-space: nowrap;
}
.nav-link::after {
  content: ''; position: absolute; left: 0; bottom: -3px;
  width: 0; height: 1px; background: var(--orange);
  transition: width .3s var(--ease-out);
}
.nav-link:hover { color: var(--cream); }
.nav-link:hover::after { width: 100%; }
.nav-cta {
  padding: .45rem 1rem;
  background: var(--orange);
  color: #fff;
  border-radius: 4px;
  font-size: .78rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background .25s, transform .2s var(--ease-out);
}
.nav-cta:hover { background: var(--orange-2); transform: translateY(-1px); }

/* Mobile toggle */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  width: 28px; padding: 4px 0; cursor: pointer;
  background: none; border: none;
}
.nav-toggle span {
  display: block; height: 2px; background: var(--cream);
  border-radius: 2px; transition: all .3s var(--ease-out);
}
.nav-toggle.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* =============================================================
   7. Hero
   ============================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 65%;
  transform: scale(1.08);
  transition: transform 8s ease-out;
}
.hero.is-loaded .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,13,13,.55) 0%,
    rgba(13,13,13,.70) 50%,
    rgba(13,13,13,.88) 100%
  );
}
.hero-grain {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  opacity: .04; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}
.hero-particles {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
}
.hero-content {
  position: relative; z-index: 3;
  text-align: center;
  padding: calc(var(--nav-h) + 3rem) clamp(1.25rem, 5vw, 4rem) 5rem;
  max-width: 860px;
}
.hero-kicker {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.hero-title em { font-style: italic; color: var(--orange); }
.hero-sub {
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  color: var(--cream-2);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-inline: auto;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: .5rem;
  animation: scrollBob 2.4s ease-in-out infinite;
}
.hero-scroll-line {
  display: block; width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--orange), transparent);
}
.hero-scroll-label {
  font-family: var(--mono); font-size: .6rem;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--cream-3);
}
@keyframes scrollBob {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: .7; }
  50%       { transform: translateX(-50%) translateY(6px); opacity: 1; }
}

/* =============================================================
   8. Stats band
   ============================================================= */
.stats-band {
  background: var(--bg-2);
  border-top: 1px solid var(--line-orange);
  border-bottom: 1px solid var(--line);
}
.stats-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: stretch;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}
.stat-item {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  padding: 2.5rem 1rem; gap: .4rem; text-align: center;
}
.stat-num {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}
.stat-label {
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--dark-2);
  font-family: var(--mono);
}
.stat-divider {
  width: 1px; background: var(--line); align-self: stretch; margin: 1.5rem 0;
}

/* =============================================================
   9. Nosotros
   ============================================================= */
.nosotros {
  background: var(--cream);
  padding: clamp(5rem, 10vw, 8rem) clamp(1.25rem, 5vw, 4rem);
}
.nosotros-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
.nosotros .section-kicker { color: var(--orange); }
.nosotros .section-title { color: var(--dark); }
.nosotros .section-title em { color: var(--orange); }
.nosotros-body { color: #3a2e24; }
.nosotros-body p { margin-bottom: 1.1rem; font-size: 1.025rem; line-height: 1.75; }
.nosotros-body p strong { color: var(--dark); }
.nosotros-body em { font-style: italic; color: var(--orange-2); }
.nosotros .btn-primary { margin-top: .5rem; }

/* Founder frame */
.nosotros-figure { position: relative; display: flex; align-items: flex-start; }
.founder-frame {
  position: relative;
  max-width: 340px; width: 100%;
}
.founder-photo {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top;
  border-radius: 4px;
  filter: sepia(.15) contrast(1.05);
  box-shadow: 8px 8px 0 var(--orange), 0 24px 60px rgba(0,0,0,.2);
}
.founder-caption {
  position: absolute; bottom: -1.5rem; right: -1rem;
  background: var(--orange);
  color: #fff;
  padding: .75rem 1.25rem;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(212,98,26,.45);
}
.founder-name { display: block; font-weight: 600; font-size: .95rem; }
.founder-year { display: block; font-family: var(--mono); font-size: .72rem; opacity: .85; margin-top: .15rem; }

.nosotros-deco { position: absolute; inset: 0; pointer-events: none; overflow: visible; }
.deco-line {
  position: absolute;
  background: var(--orange);
  opacity: .25;
  border-radius: 2px;
}
.deco-line--h { width: 80px; height: 2px; top: -1.5rem; left: 0; }
.deco-line--v { width: 2px; height: 60px; bottom: 2rem; right: -2rem; }
.deco-oval {
  position: absolute;
  width: 120px; height: 120px;
  border: 1px solid rgba(212,98,26,.15);
  border-radius: 50%;
  bottom: -3rem; right: -3rem;
}

/* =============================================================
   10. Productos
   ============================================================= */
.productos {
  background: var(--bg-3);
  padding: clamp(5rem, 10vw, 8rem) clamp(1.25rem, 5vw, 4rem);
}
.productos-header {
  max-width: 1100px; margin: 0 auto 3.5rem;
  text-align: center;
}
.productos-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.product-card {
  background: #3A2A1C;
  border: 1px solid rgba(245, 237, 216, 0.12);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color .3s, transform .4s var(--ease-out),
              box-shadow .4s var(--ease-out);
  cursor: pointer;
}
.product-card:hover {
  border-color: var(--line-orange);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(212,98,26,.18);
}
.product-img-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3;
}
.product-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease-out), filter .6s;
}
.product-card:hover .product-img {
  transform: scale(1.06);
  filter: saturate(1.15) brightness(1.05);
}
.product-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,.7) 0%, transparent 50%);
  opacity: 0; transition: opacity .4s;
}
.product-card:hover .product-overlay { opacity: 1; }
.product-info { padding: 1.75rem; }
.product-tag {
  font-family: var(--mono); font-size: .68rem;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--orange); margin-bottom: .6rem;
}
.product-name {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 700;
  color: var(--cream); margin-bottom: .75rem;
}
.product-desc { font-size: .9rem; color: var(--cream-3); line-height: 1.65; margin-bottom: 1.25rem; }
.product-materials { list-style: none; padding: 0; margin: 0 0 1.1rem; display: grid; grid-template-columns: 1fr 1fr; gap: .3rem .5rem; }
.product-materials li { font-size: .78rem; color: var(--cream-3); font-family: var(--font-mono); padding-left: .9rem; position: relative; }
.product-materials li::before { content: "›"; position: absolute; left: 0; color: var(--orange); font-weight: 700; }
.product-cta {
  display: inline-block;
  font-size: .85rem; font-weight: 500;
  color: var(--orange);
  letter-spacing: .04em;
  transition: letter-spacing .25s, color .25s;
}
.product-cta:hover { letter-spacing: .1em; color: var(--gold); }

/* =============================================================
   10b. Product card — featured & white-bg variant
   ============================================================= */
.product-card--featured { border-color: var(--line-orange); }
.product-card--featured:hover { box-shadow: 0 20px 56px rgba(212,98,26,.28); }
.product-img--white { background: #f8f5f0; object-fit: contain; padding: .5rem; }
.product-img--cover { object-fit: cover; object-position: center 38%; padding: 0; }
.product-img--suaza { object-position: center 55%; }
.product-badge {
  position: absolute; top: .85rem; left: .85rem;
  background: var(--orange); color: #fff;
  font-family: var(--mono); font-size: .65rem;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .3rem .7rem; border-radius: 2px;
  z-index: 2;
}
.product-cta--featured { color: var(--orange); font-weight: 600; }
.nav-link--highlight { color: var(--orange) !important; font-weight: 500; white-space: nowrap; }
.nav-link--highlight::after { background: var(--orange); }
.lang-toggle {
  display: inline-flex; align-items: center; gap: .25rem;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px; padding: .28rem .7rem; cursor: pointer;
  font-family: var(--mono); font-size: .68rem; letter-spacing: .08em;
  color: var(--cream-3); transition: border-color .2s;
  white-space: nowrap;
}
.lang-toggle:hover { border-color: var(--orange); }
.lang-opt { cursor: pointer; transition: color .2s; }
.lang-opt.is-active { color: var(--orange); font-weight: 600; }
.lang-sep { opacity: .4; }

/* =============================================================
   10b2. Diseños Únicos
   ============================================================= */
.disenos {
  background: #0f0d0b;
  color: var(--cream);
  padding: 0 0 80px;
}

/* Hero portada */
.disenos-hero {
  position: relative;
  height: clamp(340px, 55vw, 520px);
  overflow: hidden;
  margin-bottom: 70px;
}
.disenos-hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.disenos-hero-img.is-active {
  opacity: 1;
}
.disenos-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,8,6,.35) 0%, rgba(10,8,6,.72) 100%);
}
.disenos-hero-text {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: center;
  text-align: left;
  padding: 2rem 2rem 2rem 4rem;
}
.disenos-hero-kicker {
  color: var(--amber);
  margin-bottom: .6rem;
}
.disenos-hero-title {
  color: var(--cream);
  font-size: clamp(2.4rem, 7vw, 5rem);
  line-height: 1.1;
}
.disenos-hero-title em { color: var(--amber); }
.disenos-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 5vw, 3rem);
}
.disenos-header {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}
.disenos-header .section-kicker { color: var(--amber); }
.disenos-header .section-title { color: var(--cream); }
.disenos-header .section-title em { color: var(--amber); }
.disenos-intro {
  color: rgba(244,236,220,.72);
  font-size: clamp(.95rem, 1.6vw, 1.1rem);
  line-height: 1.75;
  margin-top: 1.2rem;
}

/* Gallery grid */
.disenos-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 10px;
  margin-bottom: 72px;
}
.dis-item { overflow: hidden; border-radius: 6px; }
.dis-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
  display: block;
}
.dis-item:hover img { transform: scale(1.06); } /* handled by .dis-zoom:hover img */
.dis-item--wide { grid-column: span 2; grid-row: span 2; }

/* Logos de clientes */
.clientes-label {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .8rem;
  color: var(--orange);
  margin-bottom: 2rem;
}
.clientes-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem 2rem;
  margin-bottom: 56px;
}
.cliente-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 18px 28px;
  transition: background .3s ease, transform .3s ease;
}
.cliente-logo:hover { background: rgba(255,255,255,0.15); transform: translateY(-3px); }
.cliente-logo img {
  max-height: 60px;
  max-width: 160px;
  width: auto;
  object-fit: contain;
}
.cliente-logo--dark img { max-height: 70px; max-width: 180px; }

/* Dis-zoom button */
.dis-zoom {
  position: relative; display: block; width: 100%; height: 100%;
  background: none; border: none; padding: 0; cursor: zoom-in;
}
.dis-zoom img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.dis-zoom:hover img { transform: scale(1.06); }
.dis-zoom-icon {
  position: absolute; bottom: 10px; right: 10px;
  background: rgba(0,0,0,0.55); color: #fff; border-radius: 50%;
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  font-size: 16px; opacity: 0; transition: opacity 0.25s ease; pointer-events: none;
}
.dis-zoom:hover .dis-zoom-icon { opacity: 1; }

/* Zoom sobre imagen principal de tarjeta */
.ban-main-zoom {
  position: absolute; bottom: 10px; right: 10px;
  background: none; border: none; padding: 0; cursor: zoom-in;
  z-index: 2;
}
.ban-main-zoom .dis-zoom-icon { position: static; opacity: 0; transition: opacity 0.25s ease; }
.ban-main-wrap:hover .ban-main-zoom .dis-zoom-icon { opacity: 1; }

/* Lightbox */
.lb-overlay {
  display: none; position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,0.97); align-items: center; justify-content: center;
  padding: 24px;
}
.lb-overlay.lb-active { display: flex; }
.lb-img {
  max-width: 92vw; max-height: 88vh;
  border-radius: 4px; box-shadow: 0 8px 40px rgba(0,0,0,0.7);
  object-fit: contain;
}
.lb-close {
  position: fixed; top: 18px; right: 24px;
  background: none; border: none; color: #fff; font-size: 40px;
  line-height: 1; cursor: pointer; z-index: 9001; opacity: 0.85;
  transition: opacity 0.2s;
}
.lb-close:hover { opacity: 1; }

/* Texto unificado */
.disenos-text {
  max-width: 780px;
  margin: 0 auto 64px;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 56px;
  text-align: center;
}
.disenos-text h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  color: var(--cream);
  margin-bottom: 1.4rem;
  line-height: 1.25;
}
.disenos-text p {
  color: rgba(244,236,220,.72);
  font-size: clamp(.92rem, 1.5vw, 1.05rem);
  line-height: 1.85;
  margin-bottom: 1rem;
}
.disenos-text p:last-child { margin-bottom: 0; }
.disenos-text p strong { color: var(--cream); }

/* CTA */
.disenos-cta {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 52px;
}
.disenos-cta > p {
  color: rgba(244,236,220,.75);
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  margin-bottom: 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.disenos-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

@media (max-width: 768px) {
  .disenos-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .dis-item--wide { grid-column: span 2; }
  .disenos-cols { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .disenos-gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 140px;
  }
}

/* =============================================================
   10c. Materias Primas
   ============================================================= */
.materias { background: var(--cream); }
.materias-header {
  background: var(--bg-2);
  background-image: radial-gradient(ellipse at 20% 50%, rgba(212,98,26,.08) 0%, transparent 60%),
                    radial-gradient(ellipse at 80% 50%, rgba(201,150,60,.05) 0%, transparent 60%);
  padding: 5rem 2rem 4rem;
  text-align: center;
}
.materias-header-inner { max-width: 760px; margin: 0 auto; }
.materias-badge {
  display: inline-block; font-family: var(--mono); font-size: .68rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--orange);
  border: 1px solid rgba(212,98,26,.35); padding: .4rem 1.1rem;
  border-radius: 2px; margin-bottom: 1.5rem;
}
.materias-intro {
  font-size: 1rem; color: var(--dark-2); line-height: 1.75;
  max-width: 640px; margin: 1.25rem auto 0;
}
.materias-grid-wrap { padding: 3.5rem 2rem; max-width: 1200px; margin: 0 auto; }
.materias-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  align-items: start;
}
.mat-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color .3s, transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.mat-card:hover {
  border-color: var(--orange);
  transform: translateY(-5px);
  box-shadow: 0 14px 44px rgba(212,98,26,.14);
}
.mat-images {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
  height: 220px;
}
.mat-img-main {
  position: relative; overflow: hidden;
}
.mat-img-main img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease-out);
}
.mat-card:hover .mat-img-main img { transform: scale(1.05); }
.mat-img-thumb {
  width: 90px; position: relative; overflow: hidden;
  border-left: 2px solid #fff;
}
.mat-img-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease-out);
}
.mat-card:hover .mat-img-thumb img { transform: scale(1.05); }
.mat-img-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  font-family: var(--mono); font-size: .58rem; letter-spacing: .08em;
  text-transform: uppercase; color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 100%);
  padding: .5rem .5rem .35rem; text-align: center;
}
/* Bangora gallery card */
.mat-card--gallery .ban-main-wrap {
  position: relative; overflow: hidden; height: 300px;
  background: #f5f0ea;
}
.mat-card--gallery .ban-main-img {
  width: 100%; height: 100%; object-fit: contain;
  transition: opacity .25s ease;
}
.mat-card--fieltro .ban-main-wrap {
  position: relative; overflow: hidden; height: 380px; background: #f5f0ea;
}
.mat-card--fieltro .ban-main-img {
  object-position: center 8%;
}
.mat-card--shantung .ban-main-img,
.mat-card--valencia .ban-main-img,
.mat-card--tepe .ban-main-img,
.mat-card--bangora .ban-main-img,
.mat-card--fieltro .ban-main-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity .25s ease;
}
.mat-card--shantung .ban-main-wrap {
  position: relative; overflow: hidden; height: 460px;
}
.mat-card--shantung .ban-main-img {
  object-fit: cover;
  object-position: center 61%;
}
.mat-card--gallery .mat-img-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  font-family: var(--mono); font-size: .58rem; letter-spacing: .08em;
  text-transform: uppercase; color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 100%);
  padding: .5rem .5rem .35rem; text-align: center;
}
.ban-thumbs {
  display: flex; gap: .4rem; padding: .6rem .6rem .2rem;
  background: #f5f0ea; overflow-x: auto;
  scrollbar-width: thin; scrollbar-color: rgba(0,0,0,.15) transparent;
}
.ban-thumb {
  flex: 0 0 60px; height: 72px; border-radius: 4px; overflow: hidden;
  border: 2px solid transparent; cursor: pointer; padding: 0;
  background: none; transition: border-color .2s, transform .15s;
  display: flex; flex-direction: column;
}
.ban-thumb img { width: 100%; flex: 1; object-fit: contain; background: #f5f0ea; display: block; }
.ban-thumb:hover { transform: scale(1.05); border-color: rgba(212,98,26,.4); }
.ban-thumb.is-active { border-color: var(--orange); }
.ban-thumb-code {
  display: block; width: 100%;
  font-family: var(--mono); font-size: .48rem; letter-spacing: .08em;
  text-align: center; color: #8a7a6a;
  background: #ede8e0; padding: .18rem 0;
  line-height: 1;
}

/* Fieltro color palette */
.fie-colors {
  padding: .7rem 1rem .5rem;
  background: #f0ebe4;
  border-top: 1px solid rgba(0,0,0,.06);
}
.fie-colors-title {
  font-family: var(--mono); font-size: .58rem; letter-spacing: .1em;
  text-transform: uppercase; color: #8a7a6a; margin-bottom: .55rem;
}
.fie-swatches {
  display: flex; flex-wrap: wrap; gap: .4rem;
}
.fie-swatch {
  position: relative; width: 36px; height: 36px; border-radius: 50%;
  background: var(--c); cursor: default;
  box-shadow: 0 1px 4px rgba(0,0,0,.18), inset 0 0 0 1px rgba(255,255,255,.15);
  transition: transform .15s;
}
.fie-swatch:hover { transform: scale(1.18); z-index: 1; }
.fie-swatch span {
  position: absolute; bottom: calc(100% + 6px); left: 50%; transform: translateX(-50%);
  font-family: var(--mono); font-size: .5rem; color: #fff;
  background: rgba(30,20,10,.75); border-radius: 3px;
  padding: 2px 5px; white-space: nowrap;
  opacity: 0; transition: opacity .15s;
  pointer-events: none;
}
.fie-swatch:hover span { opacity: 1; }
/* Split thumbnail (modelo | sombrero) */
.mat-card--tepe .ban-main-wrap {
  position: relative; overflow: hidden; height: 300px; background: #f5f0ea;
}
.mat-card--tepe .ban-main-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity .25s ease;
}
.ban-thumb--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex: 0 0 110px;
  width: 110px;
  gap: 1px;
  background: #e8e0d6;
}
.ban-thumb--split .tsp-model {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.ban-thumb--split .tsp-hat {
  width: 100%; height: 100%; object-fit: contain; display: block;
  background: #f5f0ea;
  filter: drop-shadow(0 5px 4px rgba(0,0,0,.28));
}

.fie-colors-note {
  font-family: var(--mono); font-size: .58rem; letter-spacing: .06em;
  color: #8a7a6a; margin-top: .8rem; line-height: 1.5;
}

.mat-card-info { padding: 1.2rem 1.4rem 1.4rem; }
.mat-name {
  font-family: var(--serif); font-size: 1.35rem; font-weight: 700;
  color: #1a1208; margin-bottom: .5rem;
}
.mat-desc {
  font-size: .86rem; color: #6a5a4a; line-height: 1.6; margin-bottom: 1rem;
}
.mat-cta {
  display: inline-block; font-family: var(--mono); font-size: .72rem;
  letter-spacing: .08em; text-transform: uppercase; color: var(--orange);
  border-bottom: 1px solid rgba(212,98,26,.3);
  padding-bottom: .15rem;
  transition: border-color .2s, color .2s;
}
.mat-cta:hover { border-color: var(--orange); color: #b8511a; }
.materias-cta-box {
  background: var(--bg-2); padding: 4rem 2rem;
}
.materias-cta-inner {
  max-width: 900px; margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 2rem; justify-content: space-between;
}
.materias-cta-text h3 {
  font-family: var(--serif); font-size: 1.6rem; color: var(--dark);
  margin-bottom: .6rem;
}
.materias-cta-text p { font-size: .95rem; color: var(--dark-2); line-height: 1.65; max-width: 520px; }
.materias-cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
@media (max-width: 600px) {
  .materias-grid { grid-template-columns: 1fr; }
  .mat-images { height: 200px; }
  .mat-img-thumb { width: 75px; }
  .materias-cta-inner { flex-direction: column; }
}

   /* ============================================================
   10d. Línea Suaza 2026
   ============================================================= */
.suaza {
  background: var(--cream);
  color: var(--dark);
}

/* Header oscuro */
.suaza-header {
  background: var(--bg-2);
  padding: clamp(4rem, 8vw, 6rem) clamp(1.25rem, 5vw, 4rem) clamp(3rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}
.suaza-header::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 90% 50%, rgba(212,98,26,.08), transparent),
    radial-gradient(ellipse 30% 50% at 10% 80%, rgba(201,150,60,.05), transparent);
  pointer-events: none;
}
.suaza-header::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--orange) 40%, var(--orange) 60%, transparent);
  opacity: .4;
}
.suaza-header-inner { max-width: 900px; margin: 0 auto; position: relative; }
.suaza-badge {
  display: inline-block;
  font-family: var(--mono); font-size: .65rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--orange); border: 1px solid var(--line-orange);
  padding: .35rem .9rem; border-radius: 2px; margin-bottom: 1rem;
}
.suaza-new-badge {
  display: inline-block;
  font-family: var(--mono); font-size: .62rem; letter-spacing: .14em; text-transform: uppercase;
  color: #fff; background: var(--orange);
  padding: .3rem .85rem; border-radius: 2px;
  margin-bottom: 1rem; margin-left: .6rem;
  animation: pulse-new 2s ease-in-out infinite;
}
@keyframes pulse-new {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .8; transform: scale(1.04); }
}
.suaza-intro {
  font-size: clamp(.95rem, 1.4vw, 1.05rem);
  color: var(--dark-2); line-height: 1.75;
  max-width: 680px; margin-bottom: 2.5rem;
}
.suaza-specs-band {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 0; border: 1px solid var(--line);
  border-radius: 4px; overflow: hidden;
  background: rgba(255,255,255,.03);
}
.suaza-spec {
  flex: 1 1 120px;
  display: flex; flex-direction: column; align-items: center;
  padding: 1.1rem 1.25rem; text-align: center; gap: .25rem;
}
.suaza-spec-val {
  font-family: var(--serif); font-size: 1.1rem; font-weight: 700;
  color: var(--orange); line-height: 1;
}
.suaza-spec-key {
  font-family: var(--mono); font-size: .62rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--dark-3);
}
.suaza-spec-div { width: 1px; background: var(--line); align-self: stretch; margin: .75rem 0; }

/* Grid de modelos */
.suaza-grid-wrap {
  background: #f0ebe2;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 5vw, 4rem);
}
.suaza-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.suaza-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color .3s, transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
  cursor: default;
}
.suaza-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(212,98,26,.14);
}
.suaza-img-wrap {
  background: #fafaf8;
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  padding: 1rem;
  position: relative;
}
.suaza-img-wrap::after {
  content: "NEW";
  position: absolute; top: .6rem; right: .6rem;
  font-family: var(--mono); font-size: .52rem; letter-spacing: .12em;
  font-weight: 700; color: #fff;
  background: var(--orange);
  padding: .22rem .55rem; border-radius: 2px;
  pointer-events: none;
}
.suaza-img-wrap img {
  width: 100%; height: 100%;
  object-fit: contain;
  transition: transform .5s var(--ease-out);
}
.suaza-card:hover .suaza-img-wrap img { transform: scale(1.05); }
.suaza-card-info {
  padding: .8rem 1rem;
  display: flex; flex-direction: column;
  border-top: 1px solid rgba(0,0,0,.06);
  gap: .4rem;
}
.suaza-material {
  font-size: .82rem; font-weight: 600;
  color: #2a1f14; letter-spacing: .01em;
}
.suaza-ref {
  font-family: var(--mono); font-size: .65rem;
  color: var(--orange); letter-spacing: .1em;
  background: rgba(212,98,26,.08); padding: .2rem .5rem; border-radius: 2px;
  white-space: nowrap; flex-shrink: 0;
}
.suaza-specs {
  list-style: none; padding: .4rem .5rem; margin: .5rem 0 0;
  display: flex; flex-direction: column; gap: .12rem;
  background: rgba(0,0,0,.04); border-radius: 3px;
}
.suaza-specs li {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: .56rem; gap: .3rem;
}
.suaza-specs li span { color: #9a8070; font-family: var(--mono); letter-spacing: .02em; text-transform: uppercase; }
.suaza-specs li strong { color: #2a1f14; font-weight: 600; text-align: right; }

/* Nota más modelos */
.suaza-colors-note {
  font-family: var(--mono); font-size: .58rem; letter-spacing: .06em;
  text-transform: uppercase; color: var(--orange-2);
  margin-top: .6rem; padding-top: .5rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.suaza-more-note {
  max-width: 1100px; margin: 1.75rem auto 0;
  text-align: center;
  font-size: .88rem; color: #7a6a58; line-height: 1.65;
}
.suaza-more-note span { font-weight: 600; color: var(--orange-2); }

/* CTA box distribuidores */
.suaza-cta-box {
  background: var(--bg);
  padding: clamp(3rem, 6vw, 4.5rem) clamp(1.25rem, 5vw, 4rem);
  position: relative;
}
.suaza-cta-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, transparent, var(--orange) 30%, var(--orange) 70%, transparent);
}
.suaza-cta-inner {
  max-width: 900px; margin: 0 auto;
  display: flex; flex-direction: column;
  gap: 2rem; align-items: flex-start;
}
.suaza-cta-text h3 {
  font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700; color: var(--dark); margin-bottom: .75rem;
}
.suaza-cta-text p { font-size: .97rem; color: var(--dark-2); line-height: 1.75; max-width: 600px; }
.suaza-cta-text strong { color: var(--orange); }
.suaza-cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .85rem 2rem; font-size: .9rem; font-weight: 600;
  background: #25D366; color: #fff; border-radius: 4px;
  transition: background .25s, transform .25s var(--ease-out), box-shadow .25s;
  box-shadow: 0 4px 20px rgba(37,211,102,.3);
}
.btn-whatsapp:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,.4); }
.btn-whatsapp--intl { background: #128C7E; box-shadow: 0 4px 20px rgba(18,140,126,.3); }
.btn-whatsapp--intl:hover { background: #075E54; box-shadow: 0 8px 28px rgba(18,140,126,.4); }
.btn-outline-light {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .85rem 2rem; font-size: .9rem; font-weight: 600;
  border: 1.5px solid rgba(44,30,20,.35); color: var(--dark);
  border-radius: 4px; transition: border-color .25s, background .25s;
}
.btn-outline-light:hover { border-color: var(--orange); color: var(--orange); background: rgba(212,98,26,.06); }

/* =============================================================
   11. Historia / Timeline
   ============================================================= */
.historia {
  background: var(--bg-2);
  padding: clamp(5rem, 10vw, 8rem) clamp(1.25rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}
.historia::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(212,98,26,.06), transparent),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(201,150,60,.04), transparent);
  pointer-events: none;
}
.historia-inner { max-width: 860px; margin: 0 auto; position: relative; }
.historia-header { text-align: center; margin-bottom: 4rem; }

.timeline { position: relative; }
.timeline::before {
  content: '';
  position: absolute; left: 50%; top: 0; bottom: 0;
  width: 1px; transform: translateX(-50%);
  background: linear-gradient(to bottom, transparent, var(--orange) 10%, var(--orange) 90%, transparent);
  opacity: .35;
}
.timeline-item {
  display: grid;
  grid-template-columns: 1fr 32px 1fr;
  align-items: start;
  gap: 0 1.5rem;
  margin-bottom: 3.5rem;
}
.timeline-item:nth-child(even) .timeline-year { order: 3; text-align: left; }
.timeline-item:nth-child(even) .timeline-dot  { order: 2; }
.timeline-item:nth-child(even) .timeline-content { order: 1; text-align: right; }

.timeline-year {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--orange);
  text-align: right;
  padding-top: .1rem;
  line-height: 1;
}
.timeline-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px var(--bg-2), 0 0 0 6px rgba(212,98,26,.3);
  margin: .2rem auto 0;
  justify-self: center;
  position: relative;
  z-index: 1;
}
.timeline-content h3 {
  font-family: var(--serif); font-size: 1.1rem; font-weight: 700;
  color: var(--dark); margin-bottom: .5rem;
}
.timeline-content p { font-size: .9rem; color: var(--dark-2); line-height: 1.65; }

/* =============================================================
   12. Galería
   ============================================================= */
.galeria {
  background: var(--bg);
  padding: clamp(5rem, 10vw, 8rem) clamp(1.25rem, 5vw, 4rem);
}
.galeria-header {
  max-width: 1100px; margin: 0 auto 3rem;
  text-align: center;
}
.galeria-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 200px;
  gap: .75rem;
}
.galeria-item {
  overflow: hidden; border-radius: 4px;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: border-color .3s, transform .4s var(--ease-out);
}
.galeria-item:hover { border-color: var(--line-orange); transform: scale(1.02); }
.galeria-item--tall { grid-row: span 2; }
.galeria-item--wide { grid-column: span 2; }
.galeria-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease-out), filter .5s;
}
.gal-zoom {
  display: block; width: 100%; height: 100%;
  background: none; border: none; padding: 0; cursor: zoom-in; position: relative;
}
.gal-zoom img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s var(--ease-out); }
.gal-zoom:hover img { transform: scale(1.05); }
.gal-zoom .dis-zoom-icon { opacity: 0; transition: opacity 0.25s ease; }
.gal-zoom:hover .dis-zoom-icon { opacity: 1; }
.galeria-item:hover img { transform: scale(1.08); filter: saturate(1.12) brightness(1.06); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 8000;
  background: rgba(0,0,0,.93);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(6px);
  animation: lbFadeIn .3s var(--ease-out);
}
.lightbox[hidden] { display: none; }
@keyframes lbFadeIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox-img {
  max-width: 90vw; max-height: 85vh;
  object-fit: contain; border-radius: 4px;
  box-shadow: 0 32px 80px rgba(0,0,0,.8);
}
.lightbox-close {
  position: fixed; top: 1.5rem; right: 1.5rem;
  font-size: 2rem; color: var(--cream-2); line-height: 1;
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: color .2s, background .2s;
}
.lightbox-close:hover { color: var(--orange); background: rgba(212,98,26,.1); }
.lightbox-prev, .lightbox-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--cream-2);
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: color .2s, background .2s;
}
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-prev:hover, .lightbox-next:hover { color: var(--orange); background: rgba(212,98,26,.1); }

/* =============================================================
   13. Contacto
   ============================================================= */
.contacto {
  background: var(--bg-2);
  padding: clamp(5rem, 10vw, 8rem) clamp(1.25rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}
.contacto::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--orange), transparent);
}
.contacto-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr;
  gap: 4rem;
}
.contacto-desc { font-size: .95rem; color: var(--dark-2); line-height: 1.7; margin: 1.25rem 0 0; }
.contact-list {
  list-style: none; margin: 1.5rem 0; display: flex; flex-direction: column; gap: .9rem;
}
.contact-list li {
  display: flex; align-items: center; gap: .9rem;
  font-size: .95rem; color: var(--dark);
}
.contact-icon { color: var(--orange); font-size: 1.1rem; width: 20px; flex-shrink: 0; }
.contact-list a { transition: color .2s; }
.contact-list a:hover { color: var(--orange); }
.social-links { display: flex; gap: 1rem; margin-top: .5rem; }
.social-link {
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--dark-3);
  transition: color .25s, border-color .25s, background .25s, transform .25s var(--ease-out);
}
.social-link:hover {
  color: var(--orange); border-color: var(--orange);
  background: var(--orange-glow); transform: translateY(-2px);
}

/* Form */
.contacto-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .45rem; }
.form-group label {
  font-size: .82rem; letter-spacing: .05em; color: var(--dark-3);
  font-family: var(--mono); text-transform: uppercase;
}
.form-optional { opacity: .6; font-size: .7em; }
.form-group input, .form-group textarea {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: .85rem 1rem;
  color: var(--dark);
  font-family: var(--sans);
  font-size: .95rem;
  transition: border-color .25s, box-shadow .25s;
  outline: none;
  resize: vertical;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--dark-3); }
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(212,98,26,.15);
}
.btn-submit { width: 100%; justify-content: center; margin-top: .5rem; }

/* =============================================================
   14. Footer
   ============================================================= */
.footer {
  background: var(--bg);
  padding: 3rem clamp(1.25rem, 4vw, 3rem) 2rem;
}
.footer-top-line {
  height: 2px;
  background: linear-gradient(to right, transparent, var(--orange) 30%, var(--orange) 70%, transparent);
  margin-bottom: 3rem;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; flex-direction: column;
  align-items: center; gap: 2rem; text-align: center;
}
.footer-logo { height: 48px; width: auto; margin-inline: auto; }
.footer-tagline { font-family: var(--serif); font-style: italic; color: var(--dark-3); font-size: .95rem; margin-top: .4rem; }
.footer-nav {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem 1.75rem;
}
.footer-nav a {
  font-size: .85rem; color: var(--dark-2);
  transition: color .2s;
  letter-spacing: .03em;
}
.footer-nav a:hover { color: var(--orange); }
.footer-copy { font-size: .78rem; color: var(--dark-3); opacity: .6; }

/* =============================================================
   15. Reveal animations
   ============================================================= */
[data-reveal] {
  opacity: 0;
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
[data-reveal="fade-up"]    { transform: translateY(32px); }
[data-reveal="fade-right"] { transform: translateX(-32px); }
[data-reveal="fade-left"]  { transform: translateX(32px); }
[data-reveal].is-visible   { opacity: 1; transform: none; }

/* Defensive: data-split elements never hidden */
.reveal[data-split] { opacity: 1; transform: none; }

/* =============================================================
   16. Responsive
   ============================================================= */
@media (min-width: 720px) {
  .nosotros-inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  .productos-grid { grid-template-columns: repeat(3, 1fr); }
  .suaza-grid { grid-template-columns: repeat(4, 1fr); }
  .suaza-cta-inner { flex-direction: row; align-items: center; justify-content: space-between; }
  .suaza-cta-text { flex: 1; }
  .suaza-cta-actions { flex-direction: column; flex-shrink: 0; }
  .galeria-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
  }
  .contacto-inner { grid-template-columns: 1fr 1fr; }
  .stats-inner { flex-direction: row; }
  .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; }
  .footer-logo { margin-inline: 0; }
}

@media (min-width: 960px) {
  .galeria-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
  }
}

@media (max-width: 719px) {
  .nav-menu {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: rgba(13,13,13,.98);
    flex-direction: column; align-items: center; gap: 0;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--line-orange);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform .4s var(--ease-out), opacity .4s var(--ease-out);
    backdrop-filter: blur(12px);
  }
  .nav-menu.is-open { transform: translateY(0); opacity: 1; }
  .nav-link, .nav-cta {
    padding: .85rem 2rem; width: 100%; text-align: center;
    border-bottom: 1px solid var(--line);
  }
  .nav-cta { margin: .75rem 2rem 0; width: calc(100% - 4rem); border-radius: 4px; border: none; }
  .nav-toggle { display: flex; }
  .stats-inner { flex-wrap: wrap; }
  .stat-item { flex: 1 1 calc(50% - 2rem); }
  .stat-divider { display: none; }
  .timeline::before { left: 20px; }
  .timeline-item {
    grid-template-columns: 20px 1fr;
    grid-template-rows: auto auto;
  }
  .timeline-item .timeline-year { grid-column: 2; grid-row: 1; text-align: left; font-size: 1.2rem; order: 1; }
  .timeline-item .timeline-dot  { grid-column: 1; grid-row: 1 / 3; order: 0; margin-top: .25rem; }
  .timeline-item .timeline-content { grid-column: 2; grid-row: 2; text-align: left; order: 2; }
  .timeline-item:nth-child(even) .timeline-year { order: 1; text-align: left; }
  .timeline-item:nth-child(even) .timeline-dot  { order: 0; }
  .timeline-item:nth-child(even) .timeline-content { order: 2; text-align: left; }
}

/* =============================================================
   17. Reduced motion — only intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-bg { transition: none; transform: scale(1); }
  .hero-scroll { animation: none; }
  .splash-fill { animation: splashLoad .1s forwards; }
  @keyframes scrollBob { 0%, 100% { transform: translateX(-50%); } }
}

/* =============================================
   CHATBOT MONTANA AI
   ============================================= */
.chat-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  font-family: var(--font-body, 'Lato', sans-serif);
}

.chat-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--orange);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(212,98,26,0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}
.chat-toggle:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(212,98,26,0.6);
}
.chat-toggle svg { width: 28px; height: 28px; fill: #fff; }
.chat-toggle-close { display: none; }
.chat-widget.is-open .chat-toggle-open { display: none; }
.chat-widget.is-open .chat-toggle-close { display: block; }

.chat-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 18px;
  height: 18px;
  background: #e53e3e;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}
.chat-badge.hidden { display: none; }

.chat-panel {
  position: absolute;
  bottom: 74px;
  right: 0;
  width: 340px;
  max-height: 520px;
  background: var(--cream, #FAFAF5);
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(44,30,20,0.22);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.chat-widget.is-open .chat-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.chat-header {
  background: #2C1E14;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.chat-header-info { display: flex; align-items: center; gap: 10px; }
.chat-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}
.chat-header-info strong { color: #fff; font-size: 14px; display: block; line-height: 1.2; }
.chat-status { color: #9debb4; font-size: 11px; display: flex; align-items: center; gap: 4px; }
.chat-status::before { content: '●'; font-size: 8px; }
.chat-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 20px;
  cursor: pointer;
  padding: 2px 6px;
  line-height: 1;
  border-radius: 4px;
  transition: color 0.15s;
}
.chat-close:hover { color: #fff; }

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  scroll-behavior: smooth;
}
.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-track { background: transparent; }
.chat-messages::-webkit-scrollbar-thumb { background: rgba(44,30,20,0.15); border-radius: 2px; }

.chat-msg {
  max-width: 82%;
  padding: 10px 13px;
  border-radius: 14px;
  font-size: 13.5px;
  line-height: 1.5;
  word-wrap: break-word;
}
.chat-msg--bot {
  background: #EDE6D4;
  color: #2C1E14;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.chat-msg--user {
  background: var(--orange);
  color: #fff;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}
.chat-msg--typing {
  background: #EDE6D4;
  color: #2C1E14;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  padding: 12px 16px;
}
.typing-dots { display: flex; gap: 4px; align-items: center; }
.typing-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6B5540;
  animation: typingBounce 1.2s infinite;
}
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-5px); opacity: 1; }
}

.chat-input-area {
  display: flex;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid rgba(44,30,20,0.1);
  background: #fff;
  flex-shrink: 0;
}
.chat-input {
  flex: 1;
  border: 1.5px solid rgba(44,30,20,0.18);
  border-radius: 22px;
  padding: 9px 14px;
  font-size: 13.5px;
  outline: none;
  background: var(--cream, #FAFAF5);
  color: #2C1E14;
  transition: border-color 0.15s;
}
.chat-input:focus { border-color: var(--orange); }
.chat-input::placeholder { color: #6B5540; opacity: 0.7; }
.chat-send {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--orange);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s, transform 0.15s;
}
.chat-send:hover { background: var(--orange-2); transform: scale(1.05); }
.chat-send:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.chat-send svg { width: 17px; height: 17px; fill: #fff; }

@media (max-width: 480px) {
  .chat-widget { bottom: 16px; right: 16px; }
  .chat-panel { width: calc(100vw - 32px); right: 0; }
}
