/* ==========================================================================
   Pinturas G-3 — V1 static site stylesheet
   Organized top to bottom to match page layout: reset/tokens, layout
   helpers, header/nav, buttons & shared components, page sections,
   forms, footer, responsive overrides.
   ========================================================================== */

/* ---- Reset ------------------------------------------------------------- */
html { -webkit-text-size-adjust: 100%; }
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  text-wrap: pretty;
}
img { max-width: 100%; }
a { color: var(--accent-dark); }
a:hover { color: var(--accent); }
h1, h2, h3, h4, p, ul, table { margin: 0; }
button { font: inherit; }

/* ---- Design tokens ------------------------------------------------------ */
:root {
  /* brand */
  --gold: #FFC20E;
  --orange: #F58220;
  --gradient-brand: linear-gradient(100deg, var(--gold), var(--orange));
  --accent: #F58220;       /* hover accent on dark backgrounds */
  --accent-dark: #C96A00;  /* accent on light backgrounds */

  /* neutrals */
  --ink: #141412;          /* near-black panels */
  --near-black: #0F0F0F;   /* header/footer topbar black */
  --text: #3C3C39;         /* body copy on light bg */
  --text-muted: #5C5C57;   /* secondary copy on light bg */
  --text-faint: #9A9A92;   /* tertiary / labels on light bg */
  --text-on-dark: #A9A9A2; /* secondary copy on dark bg */
  --text-on-dark-faint: #8E8E87; /* tertiary copy on dark bg */
  --bg: #FAFAF8;           /* page background */
  --white: #fff;
  --border: #E4E4DF;
  --border-soft: #E9E9E3;
  --border-input: #DDDDD7;
  --border-dark: #2A2A27;
  --border-dark-soft: #26261F;
  --panel-dark-2: #1C1C1A;

  /* type */
  --font-display: 'Archivo', system-ui, sans-serif;
  --font-body: 'IBM Plex Sans', system-ui, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, monospace;
}

/* ---- Layout helpers ------------------------------------------------------ */
.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 28px;
}
.section { padding: clamp(56px, 6vw, 110px) 0; }
.section--tight { padding: clamp(40px, 4.5vw, 80px) 0; }
.section--hero { padding: clamp(48px, 5.5vw, 96px) 0; }
.section--cta { padding: clamp(48px, 5vw, 84px) 0; }
.section-bleed { padding-left: 28px; padding-right: 28px; }

.bg-black { background: var(--near-black); color: var(--white); }
.bg-ink { background: var(--ink); color: var(--white); }
.bg-white { background: var(--white); }
.bg-page { background: var(--bg); }
.bg-brand { background: var(--gradient-brand); }
.border-top { border-top: 1px solid var(--border-soft); }
.border-bottom { border-bottom: 1px solid var(--border-soft); }
.border-top-dark { border-top: 1px solid var(--border-dark-soft); }

/* ---- Typography ----------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font: 600 12.5px/1 var(--font-body);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--gradient-brand);
  flex: none;
}
.eyebrow--on-dark { color: var(--gold); }

.h1 {
  font: 800 clamp(34px, 4.4vw, 66px)/1.06 var(--font-display);
  letter-spacing: -0.02em;
  color: inherit;
}
.h1--xl { font-size: clamp(40px, 5.4vw, 86px); line-height: 1.02; }
.h2 {
  font: 800 clamp(30px, 3.4vw, 52px)/1.08 var(--font-display);
  letter-spacing: -0.015em;
  color: var(--ink);
}
.h2--on-dark { color: var(--white); }
.h2--sm { font: 800 clamp(26px, 2.8vw, 42px)/1.12 var(--font-display); letter-spacing: -0.015em; }
.h2--md { font-size: clamp(26px, 2.6vw, 40px); line-height: 1.12; letter-spacing: -0.015em; }
.h3 { font: 700 clamp(20px, 1.8vw, 26px)/1.2 var(--font-display); color: var(--ink); }
.lead { font-size: clamp(16px, 1.15vw, 19px); line-height: 1.7; color: var(--text-muted); }
.lead--on-dark { color: var(--text-on-dark); }
.lead--sm { font-size: 16.5px; }

.breadcrumb {
  font: 500 13px/1 var(--font-body);
  color: var(--text-on-dark-faint);
  margin-bottom: 22px;
}
.breadcrumb a { color: var(--text-on-dark-faint); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--orange); }

/* ---- Buttons --------------------------------------------------------------- */
.btn {
  display: inline-block;
  text-decoration: none;
  font: 700 15px/1 var(--font-display);
  padding: 19px 30px;
  letter-spacing: .02em;
  border: none;
  cursor: pointer;
  text-align: center;
}
.btn--sm { font-size: 14px; padding: 17px 26px; }
.btn--gradient { background: var(--gradient-brand); color: #111; border: 1px solid #E0A200; }
.btn--gradient:hover { filter: brightness(1.08); color: #111; }
.btn--dark { background: var(--ink); color: var(--white); }
.btn--dark:hover { background: #000; color: var(--white); }
.btn--outline-dark { border: 1px solid var(--ink); color: var(--ink); background: transparent; }
.btn--outline-dark:hover { background: var(--ink); color: var(--white); }
.btn--outline-light { border: 1px solid #3A3A36; color: var(--white); background: transparent; }
.btn--outline-light:hover { border-color: var(--gold); color: var(--gold); }
.btn--outline-soft { border: 1px solid var(--border-input); color: var(--ink); background: var(--white); }
.btn--outline-soft:hover { border-color: var(--orange); color: var(--accent-dark); }
.btn--link {
  display: inline-block;
  font: 700 14px/1 var(--font-display);
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 5px;
}
.btn--link--on-dark { color: var(--white); border-bottom-color: var(--orange); }
.btn--link:hover { color: var(--accent-dark); }
.btn--link--on-dark:hover { color: var(--gold); }
.btn--block { display: block; text-align: center; }

/* ---- Header / navigation ---------------------------------------------------- */
.topbar {
  background: var(--near-black);
  color: #9C9C95;
  font: 500 12.5px/1.4 var(--font-body);
}
.topbar__row {
  padding: 11px 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  align-items: center;
  justify-content: space-between;
}
.topbar__note { display: flex; align-items: center; gap: 10px; }
.topbar__note::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gradient-brand);
  flex: none;
}
.topbar__links { display: flex; flex-wrap: wrap; gap: 8px 22px; align-items: center; }
.topbar__links a { color: #E9E9E4; text-decoration: none; }
.topbar__links a:hover { color: var(--gold); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.site-header__row {
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 40px);
  min-height: 84px;
}
.site-header__logo { flex: none; display: block; }
.site-header__logo img { height: 52px; width: auto; display: block; }

.nav-desktop {
  display: none;
  align-items: center;
  gap: clamp(8px, 1.1vw, 22px);
  margin-left: auto;
  font-family: var(--font-display);
}
.nav-desktop__link {
  color: #141414;
  text-decoration: none;
  font-weight: 600;
  font-size: 14.5px;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}
.nav-desktop__link:hover,
.nav-desktop__link.is-active { color: var(--accent-dark); }
.nav-desktop__link.is-active { border-bottom-color: var(--orange); }
.nav-desktop__quote { flex: none; }

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  align-self: stretch;
}
.nav-item__trigger {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-item__caret { font-size: 9px; color: #9A9A92; }
.nav-item__panel {
  position: absolute;
  top: 100%;
  left: -14px;
  min-width: 300px;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--orange);
  box-shadow: 0 18px 40px rgba(20, 20, 18, .13);
  padding: 8px 0;
  display: none;
  flex-direction: column;
  z-index: 70;
}
.nav-item__panel--wide { min-width: 320px; }
.nav-item:hover .nav-item__panel,
.nav-item:focus-within .nav-item__panel { display: flex; }
.nav-item__panel a {
  padding: 12px 22px;
  color: #141414;
  text-decoration: none;
  font-weight: 600;
  font-size: 14.5px;
}
.nav-item__panel a:hover { background: #FDFBF4; color: var(--accent-dark); }
.nav-item__panel a.nav-item__panel-cta {
  margin-top: 6px;
  padding: 13px 22px;
  border-top: 1px solid var(--border-soft);
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 13.5px;
}
.nav-item__panel-product { display: flex; align-items: center; gap: 12px; font-weight: 400; }
.nav-item__panel-swatch { width: 5px; height: 22px; flex: none; }
.nav-item__panel-product strong { font-weight: 600; }
.nav-item__panel-product span.line { color: #9A9A92; font-size: 12.5px; }

.nav-toggle {
  margin-left: auto;
  flex: none;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  gap: 5px;
  background: var(--near-black);
  border: none;
  cursor: pointer;
}
.nav-toggle__bar { width: 20px; height: 2px; display: block; }
.nav-toggle__bar:first-child { background: var(--gold); }
.nav-toggle__bar:not(:first-child) { background: var(--white); }

.nav-mobile {
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--border);
  background: var(--bg);
  padding: 8px 28px 20px;
  font-family: var(--font-display);
}
.nav-mobile.is-open { display: flex; }
.nav-mobile__link {
  color: #141414;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border-soft);
}
.nav-mobile__group { border-bottom: 1px solid var(--border-soft); }
.nav-mobile__group-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  padding: 13px 0;
  color: #141414;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  text-align: left;
}
.nav-mobile__group-toggle .caret { color: var(--orange); font-size: 12px; transition: transform .15s ease; }
.nav-mobile__group.is-open .caret { transform: rotate(180deg); }
.nav-mobile__submenu {
  display: none;
  flex-direction: column;
  padding: 4px 0 14px 16px;
  border-left: 2px solid #F3E3C8;
  margin: 0 0 6px;
}
.nav-mobile__group.is-open .nav-mobile__submenu { display: flex; }
.nav-mobile__submenu a {
  color: #5C5C57;
  text-decoration: none;
  font-weight: 500;
  font-size: 14.5px;
  padding: 9px 0;
}
.nav-mobile__quote {
  margin-top: 16px;
  text-align: center;
  font: 700 15px/1 var(--font-display);
  padding: 16px 22px;
}

[data-nav-desktop-only] { display: none; }

/* Product accent colors, reused in the Productos nav dropdown */
.swatch-vin3 { background: #D0242C; }
.swatch-intervin { background: #1E8A3C; }
.swatch-govin { background: #1A4FD0; }
.swatch-esmalte600 { background: #F58220; }
.swatch-trafico { background: #141412; }
.swatch-basecolor { background: #8A1B2E; }
.swatch-imper { background: #0E9BB5; }

@media (min-width: 1180px) {
  .nav-desktop { display: flex; }
  [data-nav-desktop-only] { display: inline-block; }
  .nav-toggle, .nav-mobile { display: none !important; }
}

/* ---- Shared components ------------------------------------------------------ */

/* Photo placeholder blocks — "FOTO ·" markers, left as-is per spec */
.photo-placeholder {
  display: grid;
  place-items: center;
  text-align: center;
  color: #8A8A82;
  font: 500 12px/1.6 var(--font-mono);
  background: repeating-linear-gradient(135deg, #EDEDE8 0 12px, #E5E5DF 12px 24px);
  padding: 20px;
}
.photo-placeholder--dark {
  color: #77776F;
  background: repeating-linear-gradient(135deg, #232320 0 12px, #1B1B19 12px 24px);
}
.photo-placeholder--soft-dark {
  color: #7A7A72;
  background: repeating-linear-gradient(135deg, #242421 0 12px, #1C1C1A 12px 24px);
}
.photo-placeholder--process { aspect-ratio: 4/3; }
.u-ar-1x1 { aspect-ratio: 1; }
.u-ar-4-3 { aspect-ratio: 4/3; }
.u-ar-16-9 { aspect-ratio: 16/9; }
.u-ar-16-10 { aspect-ratio: 16/10; }
.u-ar-16-11 { aspect-ratio: 16/11; }
.photo-stack { display: grid; gap: 16px; }
.photo-duo { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 16px; }
.photo-placeholder--tiles {
  background: repeating-linear-gradient(135deg, #EDEDE8 0 10px, #E5E5DF 10px 20px);
  color: #9A9A92;
  font-size: 11px;
  padding: 10px;
}
.photo-placeholder small,
.photo-placeholder span.dim { color: #4C4C46; }

/* Seam grids: bordered card grids with a 1px "seam" gap */
.seam-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.seam-grid--dark { background: var(--border-dark); border-color: var(--border-dark); }
.card-grid--4up { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.card-grid--3up { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.seam-grid--160 { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }

/* Blog post article */
.post-meta { margin: 0; font: 500 14px/1 var(--font-body); color: var(--text-on-dark-faint); }
.post-eyebrow { display: inline-block; font: 600 12px/1 var(--font-body); letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.post-article { flex: 1 1 620px; min-width: min(100%, 320px); }
.post-article .prose h2 { margin: 40px 0 14px; font-size: clamp(24px, 2.2vw, 32px); line-height: 1.2; }
.post-article .prose p { font-size: 17px; line-height: 1.85; }
.post-article .prose p:first-of-type { font-size: 19px; line-height: 1.8; color: var(--text); }
.post-article .prose ul { font-size: 17px; line-height: 1.95; }
.post-share { border-top: 1px solid var(--border-soft); padding-top: 28px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.post-share__label { font: 600 13px/1 var(--font-body); color: var(--text-faint); letter-spacing: .1em; text-transform: uppercase; }
.post-aside { flex: 0 1 33%; min-width: min(100%, 280px); max-width: min(100%, 520px); }
.seam-grid__cell { background: var(--white); }
.seam-grid--dark .seam-grid__cell { background: var(--ink); }
.seam-grid__cell--link { text-decoration: none; color: inherit; display: block; }
.seam-grid__cell--link:hover { background: #FDFBF4; }
.seam-grid--dark .seam-grid__cell--link:hover { background: var(--panel-dark-2); }

/* Stat strips (numbers in a row) */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1px;
  background: var(--border-dark);
  border: 1px solid var(--border-dark);
  max-width: 640px;
}
.stat-strip--wide { max-width: none; }
.stat-strip__cell { background: var(--near-black); padding: 18px 16px; }
.stat-strip--panel .stat-strip__cell { background: var(--ink); padding: clamp(26px, 2.4vw, 40px); }
.stat-strip__num { font: 800 30px/1 var(--font-display); color: var(--gold); }
.stat-strip--panel .stat-strip__num { font-size: clamp(34px, 3.6vw, 54px); }
.stat-strip__label { font-size: 12.5px; color: #8E8E87; margin-top: 6px; }
.stat-strip--panel .stat-strip__label { font-size: 14px; color: var(--text-on-dark); margin-top: 10px; }

/* Category strip (Hogar / Comercio / Industria …) */
.category-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.category-strip__item {
  padding: 26px 8px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #E3E3DD;
  font: 700 15px/1.3 var(--font-display);
}
.category-strip__dot { width: 8px; height: 8px; background: var(--gold); flex: none; }

/* Tags / pills (static labels, not filters) */
.tag {
  display: inline-block;
  font: 600 12.5px/1 var(--font-body);
  background: #F4F4EF;
  color: var(--text-muted);
  padding: 9px 13px;
}

.filter-bar-section--sticky { position: sticky; top: 84px; z-index: 40; }

/* Filter pills (Blog categories, Carta de colores families) — JS driven */
.filter-bar {
  padding: 18px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.filter-bar__label {
  font: 600 12px/1 var(--font-body);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-right: 8px;
}
.filter-pill {
  font: 600 13.5px/1 var(--font-display);
  padding: 11px 17px;
  border: 1px solid var(--border-input);
  background: var(--white);
  color: var(--text);
  cursor: pointer;
}
.filter-pill:hover { border-color: var(--orange); }
.filter-pill.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

/* Cards: blog posts, product highlight cards, distributor rows */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.card:hover { border-color: var(--orange); }
.card__media { aspect-ratio: 16/10; }
.card__body { padding: clamp(22px, 1.8vw, 30px); display: flex; flex-direction: column; flex: 1; }
.card__eyebrow {
  font: 600 11.5px/1 var(--font-body);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-dark);
}
.card__title { margin: 14px 0 10px; font: 700 21px/1.3 var(--font-display); color: var(--ink); }
.card__excerpt { margin: 0 0 18px; font-size: 15px; line-height: 1.7; color: var(--text-muted); flex: 1; }
.card__excerpt--static { flex: none; }
.card__date { font: 500 13px/1 var(--font-body); color: var(--text-faint); }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(20px, 2.2vw, 32px);
}
.card-grid--fill { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }

/* Color swatches (Carta de colores) — JS driven */
.swatch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.swatch { background: var(--white); }
.swatch__color { aspect-ratio: 1; }
.swatch__meta { padding: 14px 16px 18px; }
.swatch__name { font: 700 14px/1.3 var(--font-display); color: var(--ink); }
.swatch__code { font: 500 12px/1 var(--font-mono); color: var(--text-faint); margin-top: 6px; }

/* Section heading row with trailing CTA link */
.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(32px, 3.5vw, 52px);
}
.section-head__title { max-width: 720px; }

/* Forms (static UI only — no backend in V1) */
input,
select,
textarea {
  font-family: inherit;
  font-size: 15px;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border-input);
  background: var(--white);
  color: var(--ink);
  border-radius: 0;
}
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--orange);
  outline-offset: -1px;
  border-color: var(--orange);
}
input[type="checkbox"] { width: 18px; height: 18px; flex: none; margin-top: 2px; padding: 0; }
input[type="file"] { padding: 11px 16px; }
.form label {
  display: block;
  font: 600 13px/1 var(--font-display);
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: .02em;
}
.form__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}
.form__field { margin-bottom: 22px; }
.form__consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font: 400 14px/1.6 var(--font-body);
  color: var(--text-muted);
  margin-bottom: 26px;
}
.form__submit {
  background: var(--gradient-brand);
  color: #111;
  border: none;
  cursor: pointer;
  font: 700 15px/1 var(--font-display);
  padding: 19px 34px;
  width: auto;
}
.form__submit:hover { filter: brightness(1.08); }
.form__note {
  margin: 22px 0 0;
  padding: 16px 18px;
  background: #F4FAF4;
  border-left: 3px solid #1E8A3C;
  font-size: 15px;
  color: #2A5B36;
  display: none;
}
.form-panel {
  background: var(--white);
  border: 1px solid var(--border);
  padding: clamp(28px, 2.6vw, 44px);
}
.form-panel__title { font: 700 clamp(22px, 2vw, 30px)/1.2 var(--font-display); color: var(--ink); margin: 0 0 26px; }

/* Technical spec table */
.spec-table { border-collapse: collapse; width: 100%; }
.spec-table th,
.spec-table td { text-align: left; padding: 15px 16px; border-bottom: 1px solid var(--border-soft); font-size: 15px; }
.spec-table th { font-family: var(--font-display); font-weight: 700; color: var(--ink); width: 42%; }

/* FAQ accordion (native <details>) */
.faq details { background: var(--white); border: 1px solid var(--border); margin-bottom: -1px; }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 24px 28px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--orange); font-size: 24px; line-height: 1; flex: none; }
.faq details[open] summary::after { content: '\2013'; }
.faq details[open] summary { color: var(--accent-dark); }
.faq details p { margin: 0; padding: 0 28px 26px; font-size: 16px; line-height: 1.8; color: var(--text-muted); max-width: 900px; }

/* Pagination */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: clamp(36px, 4vw, 64px); }
.pagination a,
.pagination span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  font: 700 14px/1 var(--font-display);
  text-decoration: none;
}
.pagination span { background: var(--ink); color: var(--white); }
.pagination a { background: var(--white); border: 1px solid var(--border-input); color: var(--ink); }
.pagination a:hover { border-color: var(--orange); }
.pagination a.pagination__next { padding: 0 20px; width: auto; }

/* Icon badges (services) */
.icon-badge {
  width: 44px;
  height: 44px;
  border: 2px solid var(--orange);
  display: grid;
  place-items: center;
  font: 800 15px/1 var(--font-display);
  color: var(--gold);
  margin-bottom: 24px;
}
.icon-badge--lg { width: 48px; height: 48px; color: var(--accent-dark); margin-bottom: 26px; }

/* Numbered step list */
.step {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding: clamp(24px, 2.2vw, 36px);
}
.step__num { font: 800 20px/1 var(--font-display); color: var(--orange); flex: none; width: 44px; }
.step__num--sm { font-size: 18px; margin-bottom: 16px; width: auto; }
.step__title { margin: 0 0 8px; font: 700 20px/1.25 var(--font-display); color: var(--ink); }
.step__body { margin: 0; font-size: 15px; line-height: 1.7; color: var(--text-muted); }

/* Simple bordered info panel list (contact aside, sidebars) */
.info-stack { display: flex; flex-direction: column; gap: 1px; background: var(--border); border: 1px solid var(--border); }
.info-stack__cell { background: var(--bg); padding: clamp(26px, 2.2vw, 36px); }
.info-stack__label {
  margin: 0 0 8px;
  font: 700 15px/1 var(--font-display);
  color: var(--ink);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.info-stack__phone { display: block; color: var(--ink); text-decoration: none; font: 800 26px/1.2 var(--font-display); margin-bottom: 6px; }
.info-stack__phone:hover { color: var(--accent-dark); }
.info-stack__text { margin: 0; font-size: 15px; line-height: 1.7; color: var(--text-muted); }
.u-text-15 { font-size: 15px; }

/* Sidebar link list */
.link-list { display: flex; flex-direction: column; }
.link-list a {
  padding: 13px 0;
  border-bottom: 1px solid #EDEDE7;
  color: var(--text);
  text-decoration: none;
  font: 600 15px/1.4 var(--font-display);
}
.link-list a:last-child { border-bottom: none; }
.link-list a:hover { color: var(--accent-dark); }
.link-list--stacked { gap: 16px; }
.link-list--stacked a { padding: 0; border-bottom: none; font-size: 15px; line-height: 1.45; }

/* Social icon buttons */
.social-row { display: flex; gap: 10px; }
.social-btn {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border-dark);
  color: #E9E9E4;
  text-decoration: none;
  font: 600 12px/1 var(--font-display);
}
.social-btn:hover { background: var(--orange); color: #111; border-color: var(--orange); }
.social-btn--light { border-color: var(--border-input); color: var(--text); }
.social-btn--light:hover { border-color: var(--orange); color: var(--accent-dark); }

/* Color chip strip (home page teaser) */
.chip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
  gap: 1px;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
}
.chip-grid__cell { aspect-ratio: 1; }

/* Job / vacancy row */
.vacancy-row {
  padding: clamp(26px, 2.2vw, 36px);
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}
.vacancy-row__title { margin: 0 0 8px; font: 700 21px/1.25 var(--font-display); color: var(--ink); }
.vacancy-row__body { margin: 0; font-size: 15px; line-height: 1.7; color: var(--text-muted); }

/* Callout note (privacy notice banner) */
.callout {
  margin: 0 0 26px;
  padding: 18px 22px;
  background: #FFF8E6;
  border-left: 4px solid var(--gold);
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
}
.blockquote {
  margin: 32px 0;
  padding: 26px 30px;
  background: var(--bg);
  border-left: 4px solid var(--orange);
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 500;
}

/* 404 page */
.error-hero { min-height: 60vh; display: flex; align-items: center; }
.error-hero__row { padding: clamp(56px, 7vw, 120px) 0; width: 100%; display: flex; flex-wrap: wrap; gap: clamp(32px, 4vw, 72px); align-items: center; }
.error-links a {
  background: var(--ink);
  padding: 24px 28px;
  color: var(--white);
  text-decoration: none;
  font: 700 17px/1.3 var(--font-display);
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.error-links a:hover { background: var(--panel-dark-2); color: var(--gold); }
.error-links a span { color: var(--orange); }
/* 404 big number */
.error-code {
  font: 900 clamp(90px, 14vw, 220px)/0.85 var(--font-display);
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 26px;
}

/* Prose (legal / long-form text pages) */
.prose h2 { font: 700 clamp(22px, 2vw, 28px)/1.25 var(--font-display); color: var(--ink); margin: 0 0 14px; }
.prose h2:not(:first-child) { margin-top: 8px; }
.prose p { margin: 0 0 28px; font-size: 16.5px; line-height: 1.85; color: var(--text-muted); }
.prose ul { margin: 0 0 28px; padding-left: 20px; font-size: 16.5px; line-height: 1.9; color: var(--text-muted); }
.prose-date { font: 500 14px/1 var(--font-body); color: var(--text-on-dark-faint); }

/* Map / embed placeholders */
.map-placeholder {
  min-height: clamp(360px, 44vw, 620px);
  border: 1px solid var(--border);
}
.map-placeholder--contact {
  min-height: clamp(280px, 32vw, 440px);
  margin-top: clamp(48px, 5vw, 90px);
}
.map-placeholder .dim { color: #AFAFA7; }

/* Distributor search panel */
.locator { flex: 1 1 340px; min-width: min(100%, 280px); }
.locator__title { font: 700 clamp(22px, 2vw, 30px)/1.2 var(--font-display); color: var(--ink); margin: 0 0 22px; }
.locator__fields { display: grid; gap: 16px; margin-bottom: 22px; }
.locator__results { margin-top: 32px; display: flex; flex-direction: column; gap: 1px; background: var(--border); border: 1px solid var(--border); }
.locator__result { background: var(--bg); padding: 24px; }
.locator__result-name { font: 700 17px/1.3 var(--font-display); color: var(--ink); margin-bottom: 6px; }
.locator__result-addr { margin: 0 0 10px; font-size: 14.5px; line-height: 1.65; color: var(--text-muted); }
.locator__result-phone { font-size: 14px; }
.locator__map { flex: 2 1 520px; min-width: min(100%, 300px); }

/* ---- Footer ---------------------------------------------------------------- */
.site-footer {
  background: var(--near-black);
  color: var(--text-on-dark);
  font-family: var(--font-body);
}
.site-footer__grid {
  padding: clamp(48px, 6vw, 84px) 28px clamp(28px, 3vw, 44px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(28px, 4vw, 56px);
}
.site-footer__col { min-width: 230px; }
.site-footer__logo { height: 56px; width: auto; display: block; margin-bottom: 20px; }
.site-footer__about { margin: 0 0 18px; font-size: 14.5px; line-height: 1.7; max-width: 340px; text-wrap: pretty; }
.site-footer__heading {
  margin: 0 0 20px;
  font: 700 15px/1 var(--font-display);
  color: var(--white);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.site-footer__links { display: flex; flex-direction: column; gap: 11px; font-size: 14.5px; }
.site-footer__links a,
.site-footer__contact a.plain { color: var(--text-on-dark); text-decoration: none; }
.site-footer__links a:hover,
.site-footer__contact a.plain:hover { color: var(--gold); }
.site-footer__contact { display: flex; flex-direction: column; gap: 14px; font-size: 14.5px; line-height: 1.6; }
.site-footer__phone { color: var(--white); text-decoration: none; font: 700 18px/1 var(--font-display); }
.site-footer__phone:hover { color: var(--gold); }
.site-footer__hours { color: #6E6E68; }
.site-footer__bottom { border-top: 1px solid var(--border-dark-soft); }
.site-footer__bottom-row {
  padding: 22px 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}
.site-footer__legal { display: flex; flex-wrap: wrap; gap: 10px 22px; align-items: center; }
.site-footer__legal a { color: var(--text-on-dark); text-decoration: none; }
.site-footer__legal a:hover { color: var(--gold); }
.site-footer__paintflow {
  color: #111;
  background: var(--gradient-brand);
  text-decoration: none;
  padding: 8px 14px;
  font: 700 12.5px/1 var(--font-display);
}

/* ---- Utility flex/grid combos used across pages ----------------------------- */
.split { display: flex; flex-wrap: wrap; gap: clamp(32px, 4vw, 72px); }
.split--tight { gap: clamp(28px, 3vw, 56px); }
.split--align-start { align-items: flex-start; }
.split--align-center { align-items: center; }
.col { flex: 1 1 420px; min-width: min(100%, 340px); }
.col--narrow { flex: 1 1 320px; min-width: min(100%, 280px); }
.col--wide { flex: 2 1 480px; min-width: min(100%, 300px); }
.sticky-aside { position: sticky; top: 110px; display: flex; flex-direction: column; gap: 22px; }

/* ---- Home page -------------------------------------------------------------- */
.home-hero__row { display: flex; flex-wrap: wrap; align-items: stretch; }
.home-hero__copy {
  flex: 1 1 520px;
  min-width: min(100%, 420px);
  padding: clamp(56px, 6vw, 104px) clamp(0px, 3vw, 56px) clamp(56px, 6vw, 104px) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home-hero__visual { flex: 1 1 460px; min-width: min(100%, 380px); display: flex; align-items: stretch; }
.home-hero__visual .photo-placeholder { flex: 1; min-height: clamp(320px, 42vw, 660px); border-left: 3px solid var(--orange); }
.home-hero__title { margin: 0 0 24px; }
.home-hero__title .accent {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.home-hero__lead { margin: 0 0 36px; max-width: 560px; }
.home-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }

.split-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: clamp(20px, 2.4vw, 34px); }
.split-card { text-decoration: none; color: inherit; display: flex; flex-direction: column; }
.split-card__media { aspect-ratio: 16/10; }
.split-card__body { padding: clamp(26px, 2.4vw, 40px); }
.split-card__title { margin: 16px 0 12px; font: 700 clamp(24px, 2.2vw, 32px)/1.15 var(--font-display); }
.split-card__text { margin: 0 0 20px; font-size: 16px; line-height: 1.7; }
.split-card--light { background: var(--white); border: 1px solid var(--border); }
.split-card--light:hover { border-color: var(--orange); }
.split-card--light .split-card__title { color: var(--ink); }
.split-card--light .split-card__text { color: var(--text-muted); }
.split-card--dark { background: var(--ink); border: 1px solid var(--ink); }
.split-card--dark:hover { border-color: var(--orange); }
.split-card--dark .split-card__title { color: var(--white); }
.split-card--dark .split-card__text { color: var(--text-on-dark); }

.product-cell { padding: clamp(24px, 2vw, 34px); }
.product-cell__bar { height: 6px; width: 56px; margin-bottom: 22px; }
.product-cell__title { margin: 0 0 6px; font: 700 22px/1.2 var(--font-display); color: var(--ink); }
.product-cell__line {
  font: 600 12px/1 var(--font-body);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 14px;
}
.product-cell__text { margin: 0; font-size: 14.5px; line-height: 1.65; color: var(--text-muted); }
.product-cell--cta {
  background: var(--ink);
  padding: clamp(24px, 2vw, 34px);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-cell--cta:hover { background: #000; }
.product-cell--cta .product-cell__title { color: var(--white); font-size: 22px; font-weight: 800; margin-bottom: 10px; }
.product-cell--cta .product-cell__text { color: var(--text-on-dark); margin-bottom: 18px; }
.product-cell--cta .btn--link--on-dark { border-bottom: none; padding-bottom: 0; color: var(--gold); }

/* ---- Utilities (small, one-off layout tweaks reused across pages) ------------ */
.u-mb-0 { margin-bottom: 0 !important; }
.u-mt-lg { margin-top: 32px; }
.u-mt-0 { margin-top: 0 !important; }
.u-mb-section { margin-bottom: clamp(32px, 3.5vw, 52px); }
.u-mb-sm { margin-bottom: 14px; }
.u-max-560 { max-width: 560px; }
.u-max-620 { max-width: 620px; }
.u-max-640 { max-width: 640px; }
.u-max-720 { max-width: 720px; }
.u-max-760 { max-width: 760px; }
.u-max-820 { max-width: 820px; }
.u-max-900 { max-width: 900px; }
.u-max-960 { max-width: 960px; }
.h1--blog { font-size: clamp(32px, 3.8vw, 58px); line-height: 1.08; }
.u-align-self-start { align-self: flex-start; }
.u-flex-basis-320 { flex: 1 1 320px; min-width: min(100%, 280px); }
.u-flex-basis-340 { flex: 1 1 340px; min-width: min(100%, 280px); }
.u-flex-basis-380 { flex: 1 1 380px; min-width: min(100%, 300px); }
.u-flex-basis-420 { flex: 1 1 420px; min-width: min(100%, 300px); }
.u-flex-basis-480 { flex: 1 1 480px; min-width: min(100%, 300px); }
.u-flex-basis-560 { flex: 1 1 560px; min-width: min(100%, 320px); }
.u-flex-basis-640 { flex: 1 1 640px; min-width: min(100%, 320px); max-width: 1000px; }
.faq__group-title { margin: 44px 0 20px; }
.faq h2.h3:first-child { margin-bottom: 20px; }
.u-cta-row { display: flex; flex-wrap: wrap; gap: 14px; }
.u-cta-row--between { display: flex; flex-wrap: wrap; gap: 28px; align-items: center; justify-content: space-between; }

/* Gradient CTA band (repeats on several pages) */
.cta-band { display: flex; flex-wrap: wrap; gap: 28px; align-items: center; justify-content: space-between; }
.cta-band__copy { max-width: 760px; }
.cta-band__copy--sm { max-width: 720px; }
.cta-band__copy p { margin: 0; font-size: clamp(16px, 1.1vw, 18px); color: #3A2E10; line-height: 1.65; }
.cta-band__copy h2 { margin: 0 0 10px; color: var(--ink); }

/* Dark seam-grid service/feature cards (icon badge + title + text + link) */
.feature-card { padding: clamp(28px, 2.4vw, 42px); }
.feature-card__title { margin: 0 0 10px; font: 700 21px/1.25 var(--font-display); color: var(--white); }
.feature-card__text { margin: 0 0 18px; font-size: 15px; line-height: 1.7; color: var(--text-on-dark); }
.feature-card .btn--link--on-dark { border-bottom: none; padding-bottom: 0; color: var(--gold); }

/* Section intro block (eyebrow + heading + lead, capped width, bottom margin) */
.section-intro { margin-bottom: clamp(32px, 3.5vw, 52px); }

/* Padded seam-grid cell + large card title, used for mission/vision/values,
   ficha técnica highlight boxes, etc. */
.seam-grid__cell--pad-lg { padding: clamp(28px, 2.4vw, 44px); }
.card-title-lg { margin: 0 0 12px; font: 700 22px/1.25 var(--font-display); color: var(--ink); }
.card-title-lg--on-dark { color: var(--white); }
.card-title-lg--sm { font-size: 17px; margin-bottom: 8px; }
.feature-text { margin: 0 0 20px; font-size: 15.5px; line-height: 1.75; color: var(--text-muted); }

/* Detail page body copy (Servicio-Detalle, Producto-Detalle) */
.detail-lead { margin: 0 0 22px; font-size: 18px; line-height: 1.8; color: var(--text); }
.detail-h2 { font: 700 clamp(24px, 2.2vw, 34px)/1.2 var(--font-display); color: var(--ink); margin: 36px 0 14px; }
.detail-h2--first { margin-top: 0; }
.detail-text { margin: 0 0 22px; font-size: 16.5px; line-height: 1.8; color: var(--text-muted); }
.detail-main { flex: 1 1 560px; min-width: min(100%, 340px); }

/* Product listing rows (Productos page) */
.product-article { display: flex; flex-wrap: wrap; }
.product-article__media {
  flex: 1 1 320px;
  min-width: min(100%, 260px);
  min-height: 260px;
}
.product-article__body {
  flex: 2 1 480px;
  min-width: min(100%, 300px);
  padding: clamp(28px, 2.6vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-article__title { margin: 0 0 6px; font: 800 clamp(26px, 2.4vw, 36px)/1.15 var(--font-display); color: var(--ink); }
.product-article__line {
  font: 600 12.5px/1 var(--font-body);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 16px;
}
.product-article__text { margin: 0 0 20px; font-size: 16px; line-height: 1.75; color: var(--text-muted); max-width: 640px; }
.product-article__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.product-article .product-cell__bar { margin-bottom: 20px; }

/* Producto-Detalle page */
.product-hero__title { margin: 0 0 10px; }
.product-hero__line { margin: 0; font: 600 13px/1 var(--font-body); letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }
.photo-duo--4up { grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); }
.info-box { background: var(--bg); padding: 22px; }
.feature-highlight__title { font: 700 15px/1.3 var(--font-display); color: var(--ink); margin-bottom: 5px; }
.feature-highlight__text { font-size: 13.5px; color: #6C6C66; }
.feature-card__title--accent { color: var(--gold); }
.ideal-grid .seam-grid__cell { padding: clamp(26px, 2.2vw, 38px); }
.detail-list { margin: 0 0 32px; padding-left: 20px; font-size: 16.5px; line-height: 1.95; color: var(--text-muted); }
.mini-step { padding: 26px; }
.mini-step__text { margin: 0; font-size: 15px; line-height: 1.7; color: var(--text-muted); }

.sidebar-card { padding: clamp(26px, 2.2vw, 36px); }
.sidebar-card--dark { background: var(--ink); color: var(--white); }
.sidebar-card--light { background: var(--white); border: 1px solid var(--border); padding: clamp(24px, 2vw, 32px); }
.sidebar-card__title { margin: 0 0 12px; font: 700 21px/1.25 var(--font-display); }
.sidebar-card__text { margin: 0 0 22px; font-size: 15px; line-height: 1.7; color: var(--text-on-dark); }
.sidebar-card__label {
  margin: 0 0 18px;
  font: 700 16px/1 var(--font-display);
  color: var(--ink);
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* Homepage color chip teaser (decorative, matches carta de colores palette) */
.chip-1 { background: #1FB6C8; }
.chip-2 { background: #F2E9D8; }
.chip-3 { background: #C9563C; }
.chip-4 { background: #2E4A6B; }
.chip-5 { background: #7E8C5A; }
.chip-6 { background: #E8B23A; }
.chip-7 { background: #8E5A8C; }
.chip-8 { background: #3B3B38; }
.chip-9 { background: #D9CFC0; }
.chip-10 { background: #4E7C5B; }
.chip-11 { background: #B03A4A; }
.chip-12 { background: #F5F3EE; }

/* ---- Responsive -------------------------------------------------------------- */
@media (max-width: 640px) {
  .site-footer__bottom-row { justify-content: flex-start; }
}
