/* =================================================================
   JLP ZINGUERÍA · v2 · Editorial Industrial
   References: catálogos industriales alemanes, revistas Domus,
               manifiesto suizo. Black/white/red, sin redondeos.
   ================================================================= */

:root {
  --ink:        #0a0a0a;
  --paper:      #ffffff;
  --bone:       #f4f0e8;
  --bone-2:     #ebe5d8;
  --rule:       #1a1a1a;
  --rule-soft:  #d8d2c4;
  --muted:      #6e6e6e;
  --red:        #d11820;
  --red-deep:   #a3131a;
  --green:      #25d366;

  --display: 'Anton', 'Oswald', 'Arial Narrow', sans-serif;
  --body:    'DM Sans', 'Helvetica Neue', system-ui, sans-serif;
  --mono:    'IBM Plex Mono', 'Courier New', monospace;

  --maxw: 1440px;
  --pad:  clamp(20px, 4vw, 64px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color .25s ease; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  line-height: .88;
  letter-spacing: -.005em;
  text-transform: uppercase;
}
p { margin-bottom: 1em; }
.container {
  width: 100%; max-width: var(--maxw);
  margin: 0 auto; padding: 0 var(--pad);
}

/* ═════════════════ EDITORIAL UTILITIES ═════════════════ */
.mono {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.section-label {
  display: flex; align-items: center; gap: 16px;
  font-family: var(--mono);
  font-size: 12px; font-weight: 500;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule-soft);
  margin-bottom: 60px;
}
.section-label .num {
  color: var(--red);
  font-weight: 600;
}
.section-label .grow { flex: 1; height: 1px; background: var(--rule-soft); }

/* ═════════════════ TICKER MARQUEE ═════════════════ */
.ticker {
  background: var(--ink); color: #fff;
  border-bottom: 1px solid #222;
  overflow: hidden; padding: 10px 0;
  position: relative;
}
.ticker-track {
  display: flex; gap: 48px;
  white-space: nowrap;
  animation: ticker 38s linear infinite;
  width: max-content;
}
.ticker span {
  font-family: var(--mono);
  font-size: 12px; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.85);
  display: inline-flex; align-items: center; gap: 48px;
}
.ticker span::after {
  content: "✕";
  color: var(--red);
  font-family: var(--display);
  font-size: 11px;
  display: inline-block;
  margin-left: 48px;
}
@keyframes ticker {
  to { transform: translateX(-50%); }
}

/* ═════════════════ HEADER ═════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--ink);
}
.nav-bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 18px 0;
}
.brand img { height: 60px; width: auto; }
.nav-list {
  list-style: none;
  display: flex; gap: 38px;
  justify-self: center;
}
.nav-list a {
  font-family: var(--mono);
  font-size: 12px; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  position: relative; padding: 4px 0;
}
.nav-list a::before {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.nav-list a:hover::before, .nav-list a[aria-current="page"]::before { transform: scaleX(1); }

.nav-cta {
  display: flex; align-items: center; gap: 14px;
}
.nav-phone {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: .04em;
  display: inline-flex; align-items: center; gap: 8px;
}
.nav-phone .dot {
  width: 7px; height: 7px; background: var(--red);
  display: inline-block; border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(209,24,32,.18);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.7;transform:scale(.9)}
}

.nav-toggle {
  display: none; width: 44px; height: 44px;
}
.nav-toggle span {
  display: block; width: 26px; height: 2px;
  background: var(--ink); margin: 6px auto;
  transition: transform .3s ease, opacity .3s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ═════════════════ BUTTONS ═════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 28px;
  font-family: var(--mono);
  font-size: 12px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  border: 1px solid var(--ink);
  background: var(--ink); color: var(--paper);
  transition: all .3s cubic-bezier(.4,0,.2,1);
  position: relative; overflow: hidden;
}
.btn .arrow {
  display: inline-block; transition: transform .3s ease;
}
.btn:hover .arrow { transform: translateX(6px); }
.btn-red { background: var(--red); border-color: var(--red); }
.btn-red:hover { background: var(--red-deep); border-color: var(--red-deep); }
.btn-ghost {
  background: transparent; color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink); color: var(--paper);
}
.btn-ghost.on-dark {
  color: var(--paper); border-color: rgba(255,255,255,.5);
}
.btn-ghost.on-dark:hover {
  background: var(--paper); color: var(--ink); border-color: var(--paper);
}

/* ═════════════════ HERO MAGAZINE COVER ═════════════════ */
.hero {
  padding: clamp(40px, 6vw, 80px) 0 clamp(60px, 8vw, 100px);
  position: relative;
  overflow: hidden;
}
.hero-meta-top {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: clamp(40px, 6vw, 80px);
}
.hero-meta-top .left {
  display: flex; align-items: center; gap: 24px;
  font-family: var(--mono); font-size: 12px;
  letter-spacing: .22em; text-transform: uppercase;
}
.hero-meta-top .left .dot {
  width: 8px; height: 8px; background: var(--red); border-radius: 50%;
}
.hero-meta-top .right {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
}

.hero-title {
  font-size: clamp(64px, 12vw, 184px);
  line-height: .82;
  margin-bottom: 32px;
  letter-spacing: -.02em;
}
.hero-title .line { display: block; }
.hero-title .red {
  color: var(--red);
}
.hero-title .indent { padding-left: clamp(40px, 8vw, 140px); }
.hero-title .strike {
  position: relative;
  display: inline-block;
}
.hero-title .strike::after {
  content: ""; position: absolute; left: -8px; right: -8px;
  top: 52%; height: 8px;
  background: var(--red);
}

.hero-foot {
  display: flex; justify-content: space-between; align-items: end;
  flex-wrap: wrap; gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}
.hero-foot .lead {
  max-width: 38ch;
  font-size: 17px; line-height: 1.55;
  color: var(--ink);
}
.hero-foot .actions {
  display: flex; gap: 12px; flex-wrap: wrap;
}

/* hero side: photo card + caption */
.hero-side {
  display: flex; flex-direction: column; gap: 20px;
  align-self: stretch;
  justify-content: flex-end;
}
.hero-photo {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--ink);
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(.1) contrast(1.05);
}
.hero-photo .caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 14px 16px;
  background: var(--ink); color: #fff;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: .2em;
  text-transform: uppercase;
  display: flex; justify-content: space-between;
}
.hero-photo .caption .red { color: var(--red); }
.hero-side .desc {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted); line-height: 1.7;
}
.hero-side .desc strong { color: var(--ink); }

/* ═════════════════ MANIFESTO ═════════════════ */
.manifesto {
  background: var(--bone);
  padding: clamp(70px, 10vw, 140px) 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.manifesto-label {
  font-family: var(--mono);
  font-size: 12px; letter-spacing: .25em;
  text-transform: uppercase;
  position: sticky; top: 110px;
}
.manifesto-label .num { color: var(--red); display: block; font-size: 14px; margin-bottom: 6px; }
.manifesto p {
  font-family: var(--display);
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.05;
  letter-spacing: -.005em;
  text-transform: none;
  margin-bottom: 0;
}
.manifesto p em {
  font-style: normal;
  color: var(--red);
}
.manifesto-sign {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--ink);
  display: flex; justify-content: space-between;
  font-family: var(--mono);
  font-size: 12px; letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ═════════════════ SERVICES (editorial blocks alternating) ═════════════════ */
.services {
  padding: clamp(80px, 10vw, 140px) 0 0;
}
.services .head {
  margin-bottom: clamp(60px, 8vw, 100px);
}
.services .head h2 {
  font-size: clamp(56px, 9vw, 152px);
  line-height: .85;
  letter-spacing: -.015em;
}
.services .head h2 .red { color: var(--red); }
.services .head .sub {
  margin-top: 24px;
  max-width: 56ch;
  font-size: 17px; line-height: 1.55;
}

.svc-list { display: grid; }

.svc-item {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--ink);
  position: relative;
}
.svc-item:last-child { border-bottom: 1px solid var(--ink); }
.svc-item:nth-child(even) { grid-template-columns: 1fr 1.1fr; }
.svc-item:nth-child(even) .svc-photo { order: 2; }
.svc-item:nth-child(even) .svc-info { order: 1; border-right: 1px solid var(--ink); border-left: 0; }

.svc-photo {
  position: relative;
  aspect-ratio: 5/4;
  overflow: hidden;
  background: var(--ink);
}
.svc-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.8,.2,1), filter .8s ease;
  filter: grayscale(.15);
}
.svc-item:hover .svc-photo img {
  transform: scale(1.06);
  filter: grayscale(0);
}

.svc-info {
  padding: clamp(40px, 5vw, 80px) clamp(32px, 4vw, 64px);
  display: flex; flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--ink);
  position: relative;
}
.svc-num {
  font-family: var(--display);
  font-size: clamp(80px, 11vw, 180px);
  line-height: .85;
  color: var(--ink);
  opacity: .08;
  position: absolute; top: 24px; right: 32px;
  pointer-events: none;
  transition: color .3s ease, opacity .3s ease;
}
.svc-item:hover .svc-num { color: var(--red); opacity: .9; }
.svc-tag {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
}
.svc-title {
  font-size: clamp(38px, 5vw, 72px);
  line-height: .9;
  margin-bottom: 22px;
}
.svc-desc {
  max-width: 46ch;
  font-size: 16.5px; line-height: 1.55;
  color: #2a2a2a;
  margin-bottom: 26px;
}
.svc-features {
  list-style: none;
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 28px;
}
.svc-features li {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: .15em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid var(--ink);
  color: var(--ink);
}
.svc-link {
  font-family: var(--mono);
  font-size: 12px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 0;
  border-bottom: 2px solid var(--ink);
  width: max-content;
  transition: color .25s ease, border-color .25s ease;
}
.svc-link:hover { color: var(--red); border-color: var(--red); }
.svc-link .arrow { transition: transform .25s ease; }
.svc-link:hover .arrow { transform: translateX(6px); }

/* ═════════════════ STATS BIG NUMBERS ═════════════════ */
.stats-big {
  background: var(--ink); color: var(--paper);
  padding: clamp(60px, 8vw, 100px) 0;
  margin-top: clamp(80px, 10vw, 140px);
}
.stats-big .head {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 32px; margin-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.18);
  flex-wrap: wrap; gap: 20px;
}
.stats-big .head .t {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
}
.stats-big .head .t em { color: var(--red); font-style: normal; }
.stats-big .head .label {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.15);
}
.stat-cell {
  padding: 36px 24px 0 0;
  border-right: 1px solid rgba(255,255,255,.15);
  position: relative;
  min-width: 0; overflow: hidden;
}
.stat-cell:last-child { border-right: 0; }
.stat-cell .num {
  font-family: var(--display);
  font-size: clamp(64px, 8.5vw, 124px);
  line-height: .9;
  letter-spacing: -.02em;
  white-space: nowrap;
}
.stat-cell .num sup {
  font-size: .35em; color: var(--red);
  vertical-align: super;
}
.stat-cell .num em {
  font-style: normal; color: var(--red);
}
.stat-cell .lbl {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-top: 16px;
  max-width: 22ch; line-height: 1.6;
}
.stat-cell .idx {
  position: absolute; top: 0; left: 0;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: .2em;
  color: var(--red);
}

/* ═════════════════ MARQUEE OF MATERIALS ═════════════════ */
.marquee-mat {
  background: var(--paper); color: var(--ink);
  padding: 38px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  overflow: hidden;
}
.marquee-track {
  display: flex; gap: 64px;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -.005em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 64px;
}
.marquee-track span::after {
  content: "／";
  color: var(--red);
  font-size: .9em;
  display: inline-block;
  margin-left: 64px;
}
.marquee-mat .marquee-track span:nth-child(2n) { color: var(--red); }

/* ═════════════════ GALLERY MASONRY ═════════════════ */
.gallery {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--paper);
}
.gallery .head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 60px; gap: 24px; flex-wrap: wrap;
}
.gallery h2 {
  font-size: clamp(48px, 7vw, 112px);
  line-height: .9;
  letter-spacing: -.015em;
}
.gallery h2 em { color: var(--red); font-style: normal; }
.gallery .head .r {
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
  text-align: right;
}
.gallery .head .r .lbl {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: .22em; text-transform: uppercase; color: var(--muted);
}
.gallery .head .r .count {
  font-family: var(--display);
  font-size: 64px; line-height: 1; color: var(--red);
}

.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 8px;
  grid-auto-flow: dense;
}
.gal-item {
  overflow: hidden;
  position: relative; cursor: pointer;
  background: #1a1a1a;
}
.gal-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s cubic-bezier(.2,.8,.2,1), filter .6s ease;
  filter: grayscale(.1);
}
.gal-item:hover img { transform: scale(1.06); filter: grayscale(0); }
.gal-item .meta {
  position: absolute; left: 16px; bottom: 16px;
  background: var(--ink); color: #fff;
  padding: 8px 12px;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: .15em;
  text-transform: uppercase;
  opacity: 0; transform: translateY(10px);
  transition: opacity .35s ease, transform .35s ease;
}
.gal-item:hover .meta { opacity: 1; transform: translateY(0); }

/* feature sizes */
.gal-item.f-2x2 { grid-column: span 2; grid-row: span 2; }
.gal-item.f-1x2 { grid-row: span 2; }
.gal-item.f-2x1 { grid-column: span 2; }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(10,10,10,.96);
  display: none; align-items: center; justify-content: center;
  padding: 40px;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: 92vw; max-height: 86vh;
}
.lightbox-close {
  position: absolute; top: 24px; right: 28px;
  width: 48px; height: 48px;
  border: 1px solid rgba(255,255,255,.4);
  color: #fff; font-family: var(--mono); font-size: 18px;
}
.lightbox-close:hover { background: var(--red); border-color: var(--red); }

/* ═════════════════ PROCESS — horizontal timeline ═════════════════ */
.process {
  background: var(--bone);
  padding: clamp(80px, 10vw, 140px) 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.process .head {
  margin-bottom: 80px;
}
.process h2 {
  font-size: clamp(56px, 8vw, 128px);
  line-height: .88;
  letter-spacing: -.015em;
}
.process h2 em { color: var(--red); font-style: normal; }

.proc-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.proc-rail::before {
  content: ""; position: absolute; left: 0; right: 0; top: 50px;
  height: 1px; background: var(--ink);
}
.proc-step {
  padding: 0 32px 0 0;
  position: relative;
}
.proc-step .marker {
  width: 14px; height: 14px;
  background: var(--ink);
  position: relative; margin-bottom: 28px;
  margin-left: 0;
  z-index: 1;
}
.proc-step .marker::before {
  content: ""; position: absolute; inset: -6px;
  border: 1px solid var(--ink);
}
.proc-step:hover .marker { background: var(--red); }
.proc-step:hover .marker::before { border-color: var(--red); }
.proc-step .num {
  font-family: var(--mono);
  font-size: 12px; letter-spacing: .25em;
  color: var(--red);
  margin-bottom: 14px;
}
.proc-step h4 {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.proc-step p {
  font-size: 15px; line-height: 1.55;
  color: #2a2a2a;
  max-width: 28ch;
}

/* ═════════════════ CTA ═════════════════ */
.cta-block {
  background: var(--ink); color: var(--paper);
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative; overflow: hidden;
}
.cta-block::before {
  content: ""; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent 0 40px, rgba(255,255,255,.03) 40px 41px);
  pointer-events: none;
}
.cta-grid {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px;
  align-items: end;
  position: relative;
}
.cta-block h2 {
  font-size: clamp(64px, 11vw, 184px);
  line-height: .85;
  letter-spacing: -.015em;
  margin-bottom: 36px;
}
.cta-block h2 em { color: var(--red); font-style: normal; }
.cta-block h2 .strike {
  display: inline-block; position: relative;
}
.cta-block h2 .strike::after {
  content: ""; position: absolute; left: -8px; right: -8px;
  top: 52%; height: 6px;
  background: var(--red);
}
.cta-block .lead {
  max-width: 50ch;
  font-size: 17px; line-height: 1.55;
  color: rgba(255,255,255,.85);
  margin-bottom: 32px;
}
.cta-block .actions { display: flex; gap: 12px; flex-wrap: wrap; }

.cta-side {
  display: grid; gap: 18px; align-content: end;
  min-width: 0;
}
.cta-card {
  border: 1px solid rgba(255,255,255,.2);
  padding: 22px 24px;
  display: flex; gap: 18px; align-items: center;
  transition: all .25s ease;
  min-width: 0;
}
.cta-card > span:last-child { min-width: 0; flex: 1; }
.cta-card:hover {
  border-color: var(--red);
  background: rgba(209,24,32,.08);
}
.cta-card .ic {
  width: 42px; height: 42px;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cta-card .ic svg { width: 20px; height: 20px; fill: #fff; }
.cta-card .lbl { font-family: var(--mono); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: 4px; display: block; }
.cta-card .v {
  font-family: var(--display); font-size: 18px; line-height: 1.1;
  display: block;
  word-break: break-word; overflow-wrap: anywhere;
}

/* ═════════════════ FOOTER ═════════════════ */
.site-footer {
  background: var(--ink); color: rgba(255,255,255,.7);
  padding: 80px 0 0;
  border-top: 1px solid #1a1a1a;
}
.foot-marquee {
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
  padding: 28px 0;
  margin-bottom: 70px;
  overflow: hidden;
}
.foot-marquee .marquee-track span {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 72px);
  color: rgba(255,255,255,.15);
  -webkit-text-stroke: 1px rgba(255,255,255,.4);
  display: inline-flex; align-items: center; gap: 60px;
}
.foot-marquee .marquee-track span::after { content: "✕"; color: var(--red); margin-left: 60px; }

.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.foot-brand img { height: 70px; margin-bottom: 24px; opacity: .95; }
.foot-brand p { font-size: 14.5px; color: rgba(255,255,255,.6); max-width: 38ch; }
.foot-col h5 {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: .25em; color: var(--red);
  margin-bottom: 24px; text-transform: uppercase;
}
.foot-col ul { list-style: none; display: grid; gap: 12px; }
.foot-col a {
  font-family: var(--display); font-size: 18px;
  color: #fff;
  display: inline-block;
  position: relative;
  padding-left: 16px;
}
.foot-col a::before {
  content: "→"; color: var(--red); position: absolute; left: 0;
  transition: transform .25s ease;
}
.foot-col a:hover { color: var(--red); }
.foot-col a:hover::before { transform: translateX(4px); }

.foot-contact .item {
  font-family: var(--body);
  font-size: 14.5px;
  color: rgba(255,255,255,.85);
  margin-bottom: 14px; line-height: 1.5;
}
.foot-contact .item .lbl {
  display: block;
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--red);
  margin-bottom: 4px;
}
.foot-contact a:hover { color: var(--red); }

.foot-social {
  display: flex; gap: 8px; margin-top: 24px;
}
.foot-social a {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  transition: all .25s ease;
}
.foot-social a::before { content: ""; }
.foot-social a:hover {
  background: var(--red); border-color: var(--red);
}
.foot-social svg { width: 18px; height: 18px; fill: currentColor; }

.foot-bottom {
  padding: 28px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.foot-bottom a { color: rgba(255,255,255,.7); }
.foot-bottom a:hover { color: var(--red); }
.foot-bottom .legal { display: flex; gap: 22px; }

/* ═════════════════ WHATSAPP FLOAT ═════════════════ */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 60;
  width: 64px; height: 64px;
  background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 40px rgba(37,211,102,.45);
  transition: transform .25s ease;
}
.wa-float:hover { transform: scale(1.08); color: #fff; }
.wa-float svg { width: 32px; height: 32px; fill: currentColor; }
.wa-float::before {
  content: ""; position: absolute; inset: -4px;
  border: 2px solid var(--green);
  animation: wa-pulse 2.4s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(.9); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ═════════════════ CONTACT PAGE ═════════════════ */
.page-hero {
  padding: clamp(60px, 8vw, 100px) 0 0;
  background: var(--paper);
}
.page-hero h1 {
  font-size: clamp(72px, 14vw, 220px);
  line-height: .85;
  letter-spacing: -.025em;
  padding: 40px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.page-hero h1 em { color: var(--red); font-style: normal; }
.page-hero .meta {
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 12px;
  letter-spacing: .22em; text-transform: uppercase;
  padding-bottom: 28px;
}
.page-hero .meta .right { color: var(--muted); }
.page-hero .meta .right a { color: var(--red); }

.contact-block {
  padding: clamp(80px, 10vw, 140px) 0;
}
.contact-grid {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 80px;
}
.contact-form {
  border: 1px solid var(--ink);
  padding: clamp(36px, 4vw, 56px);
  background: var(--paper);
}
.contact-form .label {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .25em; color: var(--red);
  margin-bottom: 14px;
}
.contact-form h2 {
  font-size: clamp(40px, 5vw, 72px);
  line-height: .9; margin-bottom: 12px;
}
.contact-form .sub { color: var(--muted); margin-bottom: 36px; font-size: 15.5px; }
.field { margin-bottom: 20px; display: grid; gap: 8px; }
.field label {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--ink);
}
.field input, .field textarea {
  width: 100%; padding: 14px 0;
  border: 0; border-bottom: 1px solid var(--ink);
  font-family: var(--body); font-size: 16px;
  background: transparent; color: var(--ink);
  transition: border-color .2s ease;
}
.field input:focus, .field textarea:focus {
  outline: 0; border-bottom: 2px solid var(--red);
}
.field textarea { resize: vertical; min-height: 100px; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.info-stack { display: grid; gap: 0; align-content: start; }
.info-row {
  border-top: 1px solid var(--ink);
  padding: 26px 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 18px;
}
.info-row:last-child { border-bottom: 1px solid var(--ink); }
.info-row .l {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--muted);
}
.info-row .v {
  font-family: var(--display);
  font-size: clamp(20px, 2.4vw, 32px);
  line-height: 1;
  text-align: right;
}
.info-row .v small { font-family: var(--body); font-size: 13px; color: var(--muted); display: block; margin-top: 6px; text-transform: none; letter-spacing: 0; }
.info-row.green .v { color: var(--green); }
.info-row.red .v { color: var(--red); }

.map-area iframe {
  width: 100%; height: 480px; border: 0; display: block;
  filter: grayscale(.4) contrast(1.05);
}

/* ═════════════════ RESPONSIVE ═════════════════ */
@media (max-width: 1100px) {
  .nav-list { gap: 24px; }
  .nav-phone { display: none; }
  .hero-grid { grid-template-columns: 1fr 320px; gap: 40px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(1), .stat-cell:nth-child(2) {
    border-bottom: 1px solid rgba(255,255,255,.15); padding-bottom: 32px; margin-bottom: 32px;
  }
  .stat-cell:nth-child(2) { border-right: 0; }
  .proc-rail { grid-template-columns: repeat(2, 1fr); gap: 50px; }
  .proc-rail::before { display: none; }
  .gal-grid { grid-template-columns: repeat(4, 1fr); }
  .gal-item.f-2x2 { grid-column: span 2; grid-row: span 2; }
  .gal-item.f-3x2 { grid-column: span 4; grid-row: span 2; }
}

@media (max-width: 800px) {
  .nav-list { display: none; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
  .brand img { height: 50px; }
  .ticker { padding: 8px 0; }
  .ticker span { font-size: 10.5px; gap: 32px; }

  .site-header.is-open .nav-list {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper); padding: 30px var(--pad);
    border-bottom: 1px solid var(--ink);
    align-items: flex-start; gap: 22px; z-index: 60;
  }
  .site-header.is-open .nav-list a { font-family: var(--display); font-size: 28px; letter-spacing: -.005em; }
  .site-header.is-open .nav-list a::before { display: none; }

  .hero { padding-top: 24px; }
  .hero-meta-top { padding-bottom: 18px; margin-bottom: 24px; flex-direction: column; align-items: flex-start; gap: 8px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-title { font-size: clamp(56px, 16vw, 96px); }
  .hero-title .indent { padding-left: 0; }
  .hero-foot { flex-direction: column; align-items: flex-start; }
  .hero-side { max-width: 320px; }

  .manifesto-grid { grid-template-columns: 1fr; gap: 24px; }
  .manifesto-label { position: static; }

  .svc-item, .svc-item:nth-child(even) { grid-template-columns: 1fr; }
  .svc-item:nth-child(even) .svc-photo { order: 0; }
  .svc-item:nth-child(even) .svc-info { order: 0; border-left: 0; border-right: 0; }
  .svc-info { border-left: 0; border-top: 1px solid var(--ink); padding: 40px 24px; }
  .svc-num { font-size: 96px; top: 16px; right: 20px; }
  .svc-title { font-size: 36px; }

  .stats-row { grid-template-columns: 1fr; gap: 0; }
  .stat-cell { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.15); padding-bottom: 24px; padding-right: 0; padding-top: 28px; }
  .stat-cell:last-child { border-bottom: 0; }

  .gallery .head { flex-direction: column; align-items: flex-start; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gal-item.f-2x2, .gal-item.f-3x2 { grid-column: span 2; grid-row: span 2; }
  .gal-item.f-1x2 { grid-row: span 1; }
  .gal-item.f-2x1 { grid-column: span 2; }

  .cta-grid { grid-template-columns: 1fr; gap: 50px; }

  .foot-grid { grid-template-columns: 1fr; gap: 40px; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .row-2 { grid-template-columns: 1fr; gap: 0; }

  .page-hero h1 { font-size: clamp(56px, 16vw, 96px); padding: 24px 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
