:root {
  --yellow: #e8e000;
  --yellow-2: #f7f05a;
  --brown-950: #201107;
  --brown-900: #2d190f;
  --brown-800: #3d2314;
  --brown-650: #664027;
  --brown-400: #9a714a;
  --beige: #c4a574;
  --cream: #faf8f3;
  --paper: #fffdf7;
  --white: #fff;
  --ink: #201b16;
  --muted: #6f665f;
  --cold: #bff8ff;
  --green: #7fa34a;
  --line: rgba(255, 255, 255, .18);
  --shadow: 0 32px 90px rgba(45, 25, 15, .18);
  --radius: 8px;
  --max: 1200px;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }

html {
  background: var(--cream);
  color: var(--ink);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  line-height: 1.5;
  overflow-x: hidden;
}

body.is-leaving .page-curtain { transform: translateY(0); }
body.is-leaving main { transform: scale(.985); filter: blur(5px); opacity: .6; }

main { transition: transform .45s ease, filter .45s ease, opacity .45s ease; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.page-curtain {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  transform: translateY(100%);
  transition: transform .62s cubic-bezier(.76, 0, .24, 1);
  background:
    linear-gradient(90deg, transparent, rgba(232,224,0,.28), transparent),
    radial-gradient(circle at 50% 18%, rgba(232,224,0,.28), transparent 24%),
    var(--brown-950);
}

.page-curtain::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 6px;
  background: var(--yellow);
  box-shadow: 0 0 34px rgba(232,224,0,.75);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,.13);
  background: rgba(32, 17, 7, .68);
  backdrop-filter: blur(20px);
}

.nav {
  width: min(var(--max), calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 154px;
}

.brand::before {
  content: "";
  width: 9px;
  height: 38px;
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 0 0 28px rgba(232,224,0,.65);
}

.brand img {
  width: 118px;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.42)) saturate(1.2) brightness(1.08);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  color: rgba(255,255,255,.84);
  font-size: .88rem;
  font-weight: 800;
}

.nav-links a {
  padding: 11px 12px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--white);
  background: rgba(255,255,255,.12);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.nav-cta,
.btn-primary {
  color: var(--brown-950);
  background: var(--yellow);
  box-shadow: 0 18px 38px rgba(232,224,0,.28);
}

.btn-dark {
  color: var(--white);
  background: var(--brown-950);
  border-color: var(--brown-950);
}

.btn-ghost {
  color: var(--white);
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.3);
  backdrop-filter: blur(16px);
}

.btn-light {
  color: var(--brown-950);
  background: var(--white);
}

.btn:hover,
.nav-cta:hover { transform: translateY(-2px); }

.menu-button {
  display: block;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255,255,255,.08);
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hero,
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: var(--brown-950);
}

.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(32,17,7,.98), rgba(45,25,15,.76) 44%, rgba(45,25,15,.2)),
    linear-gradient(0deg, rgba(32,17,7,.88), rgba(32,17,7,.06) 54%),
    var(--hero-image, url("/assets/images/hero_campo.jpg")) center / cover;
  transform: scale(1.04);
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255,255,255,.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.15) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 76%);
  opacity: .38;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: .9;
}

.hero-inner,
.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.hero-inner {
  padding: 112px 0 28px;
}

.hero-copy {
  max-width: 810px;
  padding-bottom: 0;
}

.hero-showcase {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .46fr);
  gap: 36px;
  align-items: center;
}

.hero-copy.hero-copy-premium {
  max-width: 850px;
}

.hero-proof-panel {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.07)),
    rgba(32,17,7,.38);
  backdrop-filter: blur(22px);
  box-shadow: 0 38px 110px rgba(0,0,0,.3);
}

.hero-proof-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(130deg, rgba(232,224,0,.22), transparent 32%),
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
  opacity: .8;
}

.proof-panel-inner {
  position: relative;
  z-index: 1;
}

.proof-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--cold);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.proof-status::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 18px rgba(232,224,0,.9);
}

.proof-panel-inner h2 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(1.65rem, 2.45vw, 2.45rem);
  line-height: .96;
}

.proof-panel-inner p {
  color: rgba(255,255,255,.76);
}

.proof-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.proof-list div {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  background: rgba(32,17,7,.34);
}

.proof-list strong {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--brown-950);
  background: var(--yellow);
  font-family: var(--serif);
}

.proof-list span {
  color: rgba(255,255,255,.78);
  font-weight: 800;
  font-size: .9rem;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--yellow);
  font-size: .77rem;
  font-weight: 950;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 32px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 18px currentColor;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: clamp(3.15rem, 6.1vw, 6rem);
  line-height: .92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 15px;
  color: var(--brown-950);
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: .98;
  letter-spacing: 0;
}

h3 { letter-spacing: 0; }

.hero-lede,
.page-lede {
  max-width: 650px;
  margin-bottom: 26px;
  color: rgba(255,255,255,.82);
  font-size: clamp(1.02rem, 1.65vw, 1.18rem);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.telemetry {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 44px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-reel {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 12px;
  margin-top: 22px;
}

.reel-image,
.reel-mini {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  background: var(--brown-950);
}

.reel-image img,
.reel-mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .9;
  transition: transform .8s ease;
}

.reel-image {
  min-height: 204px;
}

.reel-mini-grid {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
}

.reel-mini {
  min-height: 96px;
}

.reel-image:hover img,
.reel-mini:hover img {
  transform: scale(1.05);
}

.reel-caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  padding: 13px 14px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  color: rgba(255,255,255,.82);
  background: rgba(32,17,7,.68);
  backdrop-filter: blur(14px);
  font-size: .86rem;
  font-weight: 850;
}

.sector-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(61,35,20,.12);
  border-radius: var(--radius);
  background: rgba(61,35,20,.12);
  box-shadow: 0 18px 54px rgba(45,25,15,.08);
}

.sector {
  min-height: 172px;
  padding: 24px;
  background: var(--paper);
}

.sector small {
  display: block;
  margin-bottom: 18px;
  color: var(--brown-650);
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.sector strong {
  display: block;
  margin-bottom: 8px;
  color: var(--brown-950);
  font-size: 1.14rem;
}

.sector p {
  margin: 0;
  color: var(--muted);
}

.operations-board {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(61,35,20,.12);
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(255,255,255,.88), rgba(250,248,243,.94)),
    linear-gradient(rgba(61,35,20,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61,35,20,.07) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
  box-shadow: var(--shadow);
}

.operations-board::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 12%, rgba(232,224,0,.22), transparent 26%),
    radial-gradient(circle at 88% 18%, rgba(191,248,255,.2), transparent 24%);
}

.operations-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 24px;
  align-items: stretch;
}

.operations-media {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: var(--radius);
  background: var(--brown-950);
}

.operations-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  opacity: .94;
}

.operations-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  width: min(360px, calc(100% - 36px));
  padding: 18px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(32,17,7,.76);
  backdrop-filter: blur(16px);
}

.operations-badge strong {
  display: block;
  color: var(--yellow);
  font-family: var(--serif);
  font-size: 2.5rem;
  line-height: .95;
}

.operations-badge span {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,.78);
  font-weight: 800;
}

.operations-copy {
  display: grid;
  align-content: center;
  gap: 18px;
}

.operations-copy h2 {
  margin-bottom: 0;
}

.operations-copy > p {
  color: var(--muted);
  font-size: 1.05rem;
}

.operations-list {
  display: grid;
  gap: 12px;
}

.operations-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(61,35,20,.11);
  border-radius: var(--radius);
  background: rgba(255,255,255,.72);
}

.operations-item b {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--brown-950);
  background: var(--yellow);
  font-family: var(--serif);
  font-size: 1.05rem;
}

.operations-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--brown-950);
}

.operations-item span {
  display: block;
  color: var(--muted);
  font-size: .93rem;
}

.process-studio {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px),
    rgba(255,255,255,.06);
  background-size: 42px 42px;
  box-shadow: 0 34px 90px rgba(0,0,0,.22);
}

.process-studio-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.process-node {
  min-height: 190px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  background: rgba(32,17,7,.34);
}

.process-node .number {
  margin-bottom: 42px;
}

.process-node h3 {
  margin-bottom: 6px;
  color: var(--white);
}

.process-node p {
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: .88rem;
}

.section.process-experience {
  position: relative;
  overflow: visible;
  min-height: 235svh;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 10%, rgba(232,224,0,.16), transparent 28%),
    linear-gradient(180deg, var(--brown-950), var(--brown-800));
}

.section.process-experience h2,
.section.process-experience h3 { color: var(--white); }

.section.process-experience .section-head p { color: rgba(255,255,255,.74); }

.factory-flow {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 28px;
  align-items: start;
  min-height: 215svh;
}

.factory-steps {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 8px;
}

.factory-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
  opacity: .58;
  transform: translateX(-8px);
  transition: opacity .25s ease, transform .25s ease, background .25s ease, border-color .25s ease;
}

.factory-step.is-active {
  opacity: 1;
  transform: translateX(0);
  border-color: rgba(232,224,0,.7);
  background: rgba(255,255,255,.12);
}

.factory-step b {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--brown-950);
  background: rgba(255,255,255,.22);
  font-family: var(--serif);
  transition: background .25s ease, box-shadow .25s ease;
}

.factory-step.is-active b {
  background: var(--yellow);
  box-shadow: 0 0 24px rgba(232,224,0,.38);
}

.factory-step strong {
  display: block;
  margin-bottom: 2px;
  color: var(--white);
  font-size: .95rem;
}

.factory-step span {
  display: block;
  color: rgba(255,255,255,.68);
  font-size: .82rem;
  line-height: 1.35;
}

.factory-stage {
  position: sticky;
  top: 108px;
  height: min(620px, calc(100svh - 124px));
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px),
    rgba(255,255,255,.06);
  background-size: 42px 42px;
  box-shadow: 0 34px 90px rgba(0,0,0,.24);
}

.factory-stage::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 46%;
  height: 18px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent 0 12%, rgba(255,255,255,.24) 12% 18%, transparent 18% 30%),
    linear-gradient(90deg, var(--brown-400), var(--yellow), var(--cold));
  background-size: 170px 100%, 100% 100%;
  animation: beltMove 1.15s linear infinite;
}

.factory-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.factory-data {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.factory-data div {
  padding: 13px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  background: rgba(32,17,7,.72);
  backdrop-filter: blur(14px);
}

.factory-data strong {
  display: block;
  color: var(--yellow);
  font-family: var(--serif);
  font-size: 1.6rem;
  line-height: 1;
}

.factory-data span {
  display: block;
  margin-top: 5px;
  color: rgba(255,255,255,.72);
  font-size: .78rem;
  font-weight: 800;
}

.factory-label {
  position: absolute;
  left: 18px;
  top: 18px;
  padding: 11px 13px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: var(--cold);
  background: rgba(32,17,7,.64);
  backdrop-filter: blur(14px);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.spec {
  padding: 20px;
  border: 1px solid rgba(61,35,20,.12);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 42px rgba(45,25,15,.07);
}

.spec b {
  display: block;
  margin-bottom: 8px;
  color: var(--brown-950);
}

.spec span {
  color: var(--muted);
  font-size: .92rem;
}

.cut-detail {
  display: grid;
  grid-template-columns: minmax(0, .62fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 24px;
  border: 1px solid rgba(61,35,20,.12);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 20px 58px rgba(45,25,15,.08);
}

.cut-detail img {
  width: 100%;
  aspect-ratio: 1 / .74;
  object-fit: contain;
  padding: 18px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fffdf5, #f0eadc);
}

.cut-detail h3 {
  margin-bottom: 8px;
  color: var(--brown-950);
  font-size: 1.35rem;
}

.cut-detail p {
  color: var(--muted);
}

.cut-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cut-tags span {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--brown-950);
  background: rgba(232,224,0,.28);
  font-size: .82rem;
  font-weight: 850;
}

.metric {
  min-height: 98px;
  padding: 18px;
  background: rgba(32,17,7,.36);
}

.metric strong {
  display: block;
  margin-bottom: 7px;
  color: var(--yellow);
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: .9;
}

.metric span {
  color: rgba(255,255,255,.72);
  font-size: .9rem;
  font-weight: 800;
}

.section {
  position: relative;
  padding: 96px 0;
  background: var(--cream);
}

.section-white { background: var(--white); }
.section-dark { color: var(--white); background: var(--brown-950); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,.74); }

.section-head {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head.center .section-kicker { justify-content: center; }

.section-head p {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-dark .section-head p { color: rgba(255,255,255,.74); }

.page-hero {
  min-height: 72svh;
  display: grid;
  align-items: end;
}

.page-hero .wrap { padding: 148px 0 76px; }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: rgba(255,255,255,.72);
  font-size: .88rem;
  font-weight: 750;
}

.breadcrumb a { color: var(--yellow); }

.page-grid,
.two-col,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.cards-3,
.cards-4 {
  display: grid;
  gap: 18px;
}

.cards-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.seo-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.seo-link {
  display: block;
  padding: 20px;
  border: 1px solid rgba(61,35,20,.12);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 16px 42px rgba(45,25,15,.07);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.seo-link:hover {
  transform: translateY(-4px);
  border-color: rgba(232,224,0,.72);
  box-shadow: 0 24px 58px rgba(45,25,15,.12);
}

.seo-link strong {
  display: block;
  margin-bottom: 8px;
  color: var(--brown-950);
}

.seo-link span {
  display: block;
  color: var(--muted);
  font-size: .92rem;
}

.content-stack {
  display: grid;
  gap: 20px;
}

.content-stack p,
.content-stack li {
  color: var(--muted);
  font-size: 1.02rem;
}

.content-stack ul {
  margin: 0;
  padding-left: 1.2rem;
}

.answer-box {
  padding: 24px;
  border-left: 5px solid var(--yellow);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(45,25,15,.08);
}

.answer-box p:last-child { margin-bottom: 0; }

.coverage-notice {
  margin-top: 18px;
  max-width: 680px;
  padding: 14px 20px;
  border-left: 4px solid var(--yellow);
  border-radius: var(--radius);
  background: rgba(32, 17, 7, .58);
  box-shadow: 0 18px 48px rgba(45, 25, 15, .18);
  backdrop-filter: blur(3px);
}

.coverage-notice p {
  margin: 0;
  font-size: .96rem;
  color: rgba(255, 255, 255, .92);
}

.card,
.product-card,
.process-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(61,35,20,.12);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 18px 54px rgba(45,25,15,.08);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.card:hover,
.product-card:hover,
.process-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232,224,0,.72);
  box-shadow: 0 30px 72px rgba(45,25,15,.14);
}

.card { padding: 26px; }

.card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--brown-950);
  font-size: 1.04rem;
}

.card p { margin-bottom: 0; color: var(--muted); }

.product-card img {
  width: 100%;
  aspect-ratio: 1 / .82;
  object-fit: contain;
  padding: 22px;
  background: linear-gradient(135deg, #fffdf5, #f0eadc);
}

.product-card div,
.process-card div { padding: 22px; }

.product-card h3,
.process-card h3 {
  margin-bottom: 8px;
  color: var(--brown-950);
  font-size: 1.08rem;
}

.product-card p,
.process-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .93rem;
}

.process-card img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
}

.number {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--brown-950);
  background: var(--yellow);
  font-family: var(--serif);
  font-weight: 900;
}

.image-panel {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--brown-900);
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  opacity: .94;
}

.image-panel .floating-stat {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(340px, calc(100% - 36px));
  padding: 20px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  background: rgba(32,17,7,.78);
  color: var(--white);
  backdrop-filter: blur(16px);
}

.floating-stat strong {
  display: block;
  color: var(--yellow);
  font-family: var(--serif);
  font-size: 3rem;
  line-height: .92;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  padding: 20px;
  border: 1px solid rgba(61,35,20,.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,.7);
}

.section-dark .timeline-item {
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
}

.section-dark .timeline-item p {
  color: rgba(255,255,255,.72);
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 78px 0;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(32,17,7,.96), rgba(61,35,20,.82)),
    url("/assets/images/patatas_caja.jpg") center / cover;
}

.cta-band h2 { color: var(--white); }
.cta-band p { max-width: 650px; color: rgba(255,255,255,.75); }

.contact-card,
.contact-form {
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-card {
  color: var(--white);
  background: var(--brown-950);
}

.contact-card h2 { color: var(--white); }
.contact-card p { color: rgba(255,255,255,.74); }

.contact-list {
  display: grid;
  gap: 11px;
  margin: 25px 0;
  color: rgba(255,255,255,.84);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 15px;
  border: 1px solid rgba(61,35,20,.12);
  background: var(--white);
}

.field { display: grid; gap: 7px; }

.field label {
  color: var(--brown-950);
  font-size: .82rem;
  font-weight: 900;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid rgba(61,35,20,.17);
  border-radius: var(--radius);
  padding: 13px 14px;
  background: #fffdfa;
  outline: none;
}

.field textarea {
  min-height: 126px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--brown-650);
  box-shadow: 0 0 0 4px rgba(232,224,0,.17);
}

.form-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 28px 0 26px;
  color: rgba(255,255,255,.72);
  background:
    radial-gradient(circle at 14% 0%, rgba(232,224,0,.16), transparent 28%),
    linear-gradient(180deg, var(--brown-900), var(--brown-950));
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, #000, transparent 82%);
}

.footer-shell {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.footer-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 4px 0 24px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.footer-mark {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-mark img {
  width: 126px;
  filter: brightness(0) invert(1);
}

.footer-mark span {
  color: var(--yellow);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.footer-mini-cta {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--brown-950);
  background: var(--yellow);
  font-size: .9rem;
  font-weight: 950;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(300px, 1.25fr) repeat(3, minmax(150px, .65fr));
  gap: clamp(24px, 4vw, 54px);
  padding: 34px 0 30px;
}

.footer-brand p {
  max-width: 420px;
  margin: 0 0 20px;
  color: rgba(255,255,255,.66);
  line-height: 1.7;
}

.footer-contact {
  display: grid;
  gap: 8px;
  max-width: 360px;
}

.footer-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  color: rgba(255,255,255,.72);
  font-size: .86rem;
  font-weight: 850;
}

.footer-col strong {
  display: block;
  margin-bottom: 14px;
  color: #fff;
  font-size: .78rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
  font-weight: 800;
}

.footer-links a,
.footer-links button {
  width: fit-content;
  padding: 0;
  border: 0;
  color: rgba(255,255,255,.66);
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.footer-links a:hover,
.footer-links button:hover,
.footer-bottom a:hover {
  color: var(--yellow);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.46);
  font-size: .88rem;
}

.footer-bottom a {
  color: rgba(255,255,255,.62);
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 120;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  width: min(560px, calc(100% - 36px));
  padding: 12px;
  border: 1px solid rgba(232,224,0,.2);
  border-radius: 12px;
  color: rgba(255,255,255,.82);
  background: rgba(32,17,7,.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 48px rgba(0,0,0,.28);
}

.cookie-banner.is-hidden { display: none; }
.cookie-banner.is-visible { display: grid; }

.cookie-banner h2 {
  margin: 0 0 3px;
  color: #fff;
  font-size: .9rem;
  line-height: 1.25;
}

.cookie-banner p {
  margin: 0;
  max-width: 360px;
  color: rgba(255,255,255,.68);
  font-size: .78rem;
  line-height: 1.35;
}

.cookie-actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 9px;
  margin-top: 0;
}

.cookie-actions .btn {
  min-height: 36px;
  padding: 0 14px;
  font-size: .82rem;
}

.cookie-text-btn,
.cookie-text-link {
  padding: 0;
  border: 0;
  color: rgba(255,255,255,.66);
  background: transparent;
  font: inherit;
  font-size: .78rem;
  font-weight: 900;
  cursor: pointer;
}

.cookie-text-btn:hover,
.cookie-text-link:hover { color: var(--yellow); }

.cookie-preferences {
  grid-column: 1 / -1;
  display: none;
  margin-top: 2px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.14);
}

.cookie-banner.is-configuring .cookie-preferences { display: grid; gap: 10px; }

.cookie-toggle {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
}

.cookie-toggle span {
  display: block;
  color: #fff;
  font-weight: 900;
}

.cookie-toggle small {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,.6);
  line-height: 1.45;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--brown-950);
  background: #25d366;
  font-weight: 950;
  box-shadow: 0 18px 46px rgba(0,0,0,.2);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .78s ease, transform .78s cubic-bezier(.22,1,.36,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes beltMove {
  to { background-position: 170px 0, 0 0; }
}

@media (max-width: 1040px) {
  .nav-links,
  .nav-cta { display: none; }
  .menu-button { display: inline-block; }
  .nav-links.is-open {
    position: absolute;
    top: 82px;
    left: 20px;
    right: 20px;
    display: grid;
    padding: 12px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: var(--radius);
    background: rgba(32,17,7,.96);
    box-shadow: var(--shadow);
  }
  .telemetry,
  .cards-4,
  .cards-3,
  .sector-strip,
  .process-studio-grid,
  .spec-grid,
  .seo-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .page-grid,
  .two-col,
  .contact-grid,
  .hero-showcase,
  .operations-grid,
  .factory-flow { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .section.process-experience { min-height: auto; }
  .factory-flow { min-height: auto; }
  .factory-steps,
  .factory-stage { position: relative; top: auto; }
  .hero-proof-panel { max-width: 620px; }
}

@media (max-width: 680px) {
  .nav,
  .hero-inner,
  .wrap,
  .footer-inner { width: min(var(--max), calc(100% - 28px)); }
  .nav { min-height: 72px; }
  .brand img { width: 86px; }
  .nav-links.is-open { top: 72px; left: 14px; right: 14px; }
  .hero-inner { padding: 116px 0 26px; }
  h1 { font-size: clamp(2.85rem, 12vw, 3.75rem); line-height: .94; }
  .page-hero .wrap { padding: 126px 0 54px; }
  .section { padding: 68px 0; }
  .telemetry,
  .cards-4,
  .cards-3,
  .sector-strip,
  .process-studio-grid,
  .spec-grid,
  .seo-links,
  .footer-inner,
  .footer-main,
  .hero-reel,
  .form-grid-2,
  .cut-detail { grid-template-columns: 1fr; }
  .footer-shell { width: min(var(--max), calc(100% - 28px)); }
  .site-footer {
    padding: 24px 0 22px;
  }
  .footer-topline {
    display: grid;
    gap: 16px;
    padding-bottom: 22px;
  }
  .footer-mark {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }
  .footer-mark img {
    width: 112px;
  }
  .footer-mark span {
    max-width: 260px;
    font-size: .7rem;
    line-height: 1.45;
    letter-spacing: .12em;
  }
  .footer-main {
    gap: 0;
    padding: 22px 0 18px;
  }
  .footer-brand,
  .footer-col {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .footer-brand { padding-top: 0; }
  .footer-brand p {
    margin-bottom: 16px;
    font-size: .94rem;
    line-height: 1.6;
  }
  .footer-contact {
    gap: 7px;
    max-width: none;
  }
  .footer-pill {
    width: 100%;
    min-height: 40px;
    padding: 0 12px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 8px;
    background: rgba(255,255,255,.045);
  }
  .footer-col strong {
    margin-bottom: 12px;
    font-size: .72rem;
  }
  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px 12px;
  }
  .footer-links a,
  .footer-links button {
    width: 100%;
    min-height: 36px;
    overflow-wrap: anywhere;
  }
  .footer-bottom {
    gap: 8px;
    padding-top: 16px;
    font-size: .78rem;
    line-height: 1.45;
  }
  .footer-mini-cta {
    justify-content: center;
    width: 100%;
    min-height: 44px;
  }
  .hero-proof-panel { display: none; }
  .telemetry { margin-top: 36px; }
  .reel-mini-grid { grid-template-rows: none; grid-template-columns: 1fr; }
  .metric { min-height: 92px; }
  .image-panel,
  .image-panel img,
  .operations-media,
  .operations-media img {
    min-height: 0;
  }
  .operations-board {
    padding: 14px;
  }
  .operations-media,
  .image-panel {
    aspect-ratio: auto;
    overflow: visible;
    min-height: 0;
    height: auto;
    background: transparent;
  }
  .operations-media img,
  .image-panel img {
    aspect-ratio: 3 / 2;
    height: auto;
    min-height: 0;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius);
  }
  .operations-badge,
  .image-panel .floating-stat {
    position: static;
    width: auto;
    margin-top: 10px;
    padding: 13px;
    border-color: rgba(61,35,20,.12);
    color: var(--ink);
    background: rgba(255,255,255,.92);
    backdrop-filter: none;
  }
  .operations-badge strong,
  .floating-stat strong {
    font-size: 1.55rem;
  }
  .operations-badge span {
    color: var(--muted);
  }
  .factory-flow { gap: 18px; }
  .factory-steps { gap: 8px; }
  .factory-step {
    grid-template-columns: 40px 1fr;
    gap: 10px;
    padding: 11px;
  }
  .factory-step b {
    width: 40px;
    height: 40px;
  }
  .factory-stage {
    height: 430px;
    min-height: 430px;
  }
  .factory-stage::before { top: 66%; }
  .factory-label {
    left: 12px;
    right: 12px;
    width: fit-content;
    max-width: calc(100% - 24px);
    font-size: .68rem;
    white-space: nowrap;
  }
  .factory-data {
    left: 10px;
    right: 10px;
    bottom: 10px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }
  .factory-data div { padding: 9px 7px; }
  .factory-data strong { font-size: 1.05rem; }
  .factory-data span {
    overflow-wrap: anywhere;
    font-size: .62rem;
    line-height: 1.15;
  }
  .footer-bottom { display: grid; }
  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 72px;
    grid-template-columns: 1fr;
    gap: 8px;
    width: auto;
    padding: 10px;
    max-height: calc(100svh - 88px);
    overflow: auto;
  }
  .cookie-banner h2 {
    font-size: .82rem;
  }
  .cookie-banner p {
    max-width: none;
    font-size: .72rem;
    line-height: 1.32;
  }
  .cookie-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    align-items: stretch;
  }
  .cookie-actions .btn {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 32px;
    padding: 0 11px;
    font-size: .78rem;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }
  .cookie-text-btn,
  .cookie-text-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 32px;
    padding: 0 4px;
    font-size: .74rem;
    text-align: center;
  }
  .cookie-toggle { display: grid; }
  .whatsapp-float {
    left: auto;
    right: 14px;
    bottom: 14px;
    min-height: 48px;
    padding: 0 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
  .hero-canvas { display: none; }
}

/* Contact form: honeypot, RGPD consent and submit status */
.hp-field { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }
.form-consent { display: flex; align-items: flex-start; gap: 10px; font-size: .82rem; line-height: 1.45; }
.form-consent input { flex: 0 0 auto; margin-top: 3px; accent-color: #e8e000; }
.form-consent a { color: inherit; text-decoration: underline; }
.form-status { margin: 0; font-size: .9rem; font-weight: 700; }
.form-status.is-success { color: #1e7d32; }
.form-status.is-error { color: #b3261e; }
button[type="submit"][disabled] { opacity: .65; cursor: wait; }

/* Contact form success panel: potato from ground to table */
.form-success { display: grid; justify-items: center; text-align: center; gap: 10px; padding: 18px 8px; }
.form-success svg { width: 100%; max-width: 420px; height: auto; }
.form-success h3 { margin: 0; font-size: 1.35rem; color: #1e7d32; }
.form-success p { margin: 0 0 6px; max-width: 46ch; }
.potato-hop { transform-box: fill-box; transform-origin: center; animation: potatoHop 2s cubic-bezier(.45,.05,.55,.95) .3s forwards; }
.success-check { opacity: 0; transform: scale(.3); transform-box: fill-box; transform-origin: center; animation: checkPop .55s cubic-bezier(.68,-.55,.27,1.55) 2.35s forwards; }
@keyframes potatoHop {
  0% { transform: translate(0,0) rotate(0deg); }
  18% { transform: translate(85px,-78px) rotate(60deg); }
  34% { transform: translate(165px,-6px) rotate(120deg); }
  52% { transform: translate(248px,-86px) rotate(200deg); }
  68% { transform: translate(318px,-6px) rotate(260deg); }
  84% { transform: translate(368px,-60px) rotate(330deg); }
  100% { transform: translate(395px,-18px) rotate(360deg); }
}
@keyframes checkPop { to { opacity: 1; transform: scale(1); } }
@media (prefers-reduced-motion: reduce) {
  .potato-hop { animation: none; transform: translate(395px,-18px); }
  .success-check { animation: none; opacity: 1; transform: scale(1); }
}
