/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:          #faf8f4;
  --bg-2:        #eef3ef; /* pale tint of the green accent, not an independent sand tone */
  --paper:       #ffffff;
  --ink:         #17211b;
  --ink-soft:    #2d362f;
  --ink-mute:    #6b6f66;
  --accent:      #005d43;
  --accent-2:    #0a7a58;
  --accent-soft: #dfe9e2;
  --pink:        #ff8fa3;
  --pink-soft:   #ffe1e7;
  --line:        rgba(23, 33, 27, 0.12);
  --line-soft:   rgba(23, 33, 27, 0.07);
  --shadow-1:    0 1px 2px rgba(23, 33, 27, 0.06);
  --shadow-2:    0 18px 40px -20px rgba(23, 33, 27, 0.35);
  --shadow-green: 0 20px 44px -18px rgba(0, 93, 67, 0.45);

  /* Display: Noto Serif Display, italic, extracondensed — approximated with
     font-stretch (real condensed metrics when the browser honours the
     variable width axis) plus a slightly tight tracking, since a global
     scaleX() on headings of very different alignments would misalign them. */
  --display: "Noto Serif Display", "Noto Serif", Georgia, serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-soft:   cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --nav-h: 76px;
  --container: 1180px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  overflow-x: clip;
  scroll-behavior: smooth;
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em; /* Helvetica, slightly open tracking */
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
p { text-wrap: pretty; }
h1, h2, h3, h4 {
  font-family: var(--display); font-style: italic; font-stretch: 62.5%; letter-spacing: -0.02em;
  font-style: italic;
  font-stretch: 62.5%;
  text-wrap: balance;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 500;
}
::selection { background: var(--pink); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 9999;
  padding: .7rem 1.1rem; background: var(--ink); color: var(--bg);
  border-radius: 8px; font-weight: 600; font-size: .9rem;
  transition: top .2s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: .5em;
  font-size: .78rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent);
}
.eyebrow::before {
  content: ""; width: 16px; height: 1px; background: var(--accent);
  display: inline-block;
}

.section {
  padding-block: clamp(64px, 9vw, 112px);
  position: relative;
}
.section--soft { background: var(--bg-2); }
.section--ink {
  background: var(--ink);
  color: var(--bg);
}
.section-head {
  max-width: 640px;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 {
  margin-top: 14px;
  font-family: var(--display); font-style: italic; font-stretch: 62.5%; letter-spacing: -0.02em;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
}
.section-head p {
  margin-top: 16px;
  max-width: 46ch;
  color: var(--ink-mute);
  font-size: 1.02rem;
}
.section--ink .section-head p { color: rgba(247, 243, 234, .72); }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 70ms; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 140ms; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 210ms; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 280ms; }

/* =============================================================
   4. Buttons
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: 15px 26px;
  border-radius: 100px;
  font-weight: 600; font-size: .95rem;
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-green);
  transition: transform .16s var(--ease-out), box-shadow .25s var(--ease-out), background .25s var(--ease-out);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:hover { background: var(--accent-2); box-shadow: 0 22px 48px -16px rgba(0,93,67,.55); }
.btn:active { transform: scale(.97); }

.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  padding: 14px 25px;
  border-radius: 100px;
  border: 1px solid var(--line);
  font-weight: 600; font-size: .95rem;
  color: var(--ink);
  transition: transform .16s var(--ease-out), border-color .25s var(--ease-out), background .25s var(--ease-out);
  white-space: nowrap;
}
.btn-ghost:hover { border-color: var(--accent); background: var(--accent-soft); }
.btn-ghost:active { transform: scale(.97); }
.section--ink .btn-ghost { border-color: rgba(247,243,234,.3); color: var(--bg); }
.section--ink .btn-ghost:hover { border-color: rgba(247,243,234,.6); background: rgba(247,243,234,.08); }

.btn-white {
  background: var(--bg);
  color: var(--accent);
  box-shadow: 0 18px 40px -18px rgba(0,0,0,.45);
}
.btn-white:hover { background: #fff; color: var(--accent-2); }

.link-arrow {
  display: inline-flex; align-items: center; gap: .4em;
  font-weight: 600; font-size: .92rem;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: border-color .2s var(--ease-out), color .2s var(--ease-out), gap .2s var(--ease-out);
}
.link-arrow:hover { border-color: var(--accent); color: var(--accent); gap: .6em; }
.link-arrow svg { width: 15px; height: 15px; transition: transform .2s var(--ease-out); }
.link-arrow:hover svg { transform: translateX(2px); }

/* =============================================================
   5. Nav
   ============================================================= */
.nav {
  position: fixed; inset-inline: 0; top: 0; z-index: 500;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .35s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(247, 243, 234, .88);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px -20px rgba(23,33,27,.3);
}
.nav-inner {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 30px; width: auto; display: block; }
.nav-links {
  display: flex; align-items: center; gap: 30px;
  list-style: none; padding: 0; margin: 0;
}
.nav-links a {
  font-size: .92rem; font-weight: 500; color: var(--ink-soft);
  position: relative; padding-block: 4px;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--accent);
  transition: right .25s var(--ease-out);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { right: 0; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 12px 22px; font-size: .88rem; }

.burger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  place-items: center;
  gap: 5px;
  flex-direction: column;
}
.burger span {
  display: block; width: 20px; height: 1.6px; border-radius: 2px;
  background: var(--ink);
  transition: transform .28s var(--ease-in-out), opacity .18s var(--ease-out);
}
.nav.is-open .burger span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.nav.is-open .burger span:nth-child(2) { opacity: 0; }
.nav.is-open .burger span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

/* =============================================================
   6. Hero
   ============================================================= */
.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + clamp(48px, 8vw, 96px));
  padding-bottom: clamp(56px, 8vw, 96px);
  overflow: clip;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.hero-copy .eyebrow { margin-bottom: 22px; }
.hero-copy h1 {
  font-family: var(--display); font-style: italic; font-stretch: 62.5%; letter-spacing: -0.02em;
  font-size: clamp(2.6rem, 6.4vw, 4.6rem);
  font-weight: 500;
  line-height: .98;
  max-width: 12ch;
}
.hero-copy h1 em {
  font-style: italic;
  color: var(--accent);
}
.hero-lead {
  margin-top: 22px;
  max-width: 42ch;
  font-size: 1.08rem;
  color: var(--ink-soft);
}
.hero-actions {
  margin-top: 34px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px;
}
.hero-trust {
  margin-top: 34px;
  display: flex; flex-wrap: wrap; gap: 10px 22px;
  font-size: .82rem; color: var(--ink-mute);
}
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust span::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--accent);
}

.hero-visual {
  position: relative;
  height: clamp(320px, 42vw, 460px);
}
.hero-card {
  position: absolute;
  border-radius: 20px;
  box-shadow: var(--shadow-2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
}
.hero-card__label {
  font-family: var(--display); font-style: italic; font-stretch: 62.5%; letter-spacing: -0.02em;
  font-style: italic;
  font-size: 1rem;
  color: inherit;
}
.hero-card--a {
  width: 62%; aspect-ratio: 3/4;
  left: 0; top: 6%;
  background: linear-gradient(150deg, #0a2a1f 0%, var(--accent) 62%, #0b7a58 100%);
  color: #eafff2;
  transform: rotate(-4deg);
  z-index: 2;
}
.hero-card--b {
  width: 48%; aspect-ratio: 4/5;
  right: 0; bottom: 4%;
  background: linear-gradient(155deg, var(--pink-soft) 0%, var(--pink) 100%);
  color: #6b0f28;
  transform: rotate(5deg);
  z-index: 1;
}
.hero-card--c {
  width: 34%; aspect-ratio: 1/1;
  right: 10%; top: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
  transform: rotate(-8deg);
  z-index: 3;
  justify-content: center;
  align-items: center;
  padding: 16px;
}
.hero-card--c img { width: 58%; }

.hero-badge {
  position: absolute;
  left: -6%;
  bottom: 8%;
  z-index: 4;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: var(--shadow-1);
  display: flex; align-items: center; gap: 10px;
  font-size: .82rem; font-weight: 600;
}
.hero-badge svg { width: 20px; height: 20px; color: var(--accent); flex: none; }

/* =============================================================
   7. Marquee
   ============================================================= */
.marquee {
  border-block: 1px solid var(--line);
  overflow: hidden;
  padding-block: 16px;
  background: var(--paper);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding-inline: 20px;
  font-family: var(--display); font-style: italic; font-stretch: 62.5%; letter-spacing: -0.02em;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-mute);
  white-space: nowrap;
}
.marquee-track span::after { content: "✦"; color: var(--accent); font-style: normal; font-size: .8rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =============================================================
   8. Manifesto ("qué hace")
   ============================================================= */
.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.manifesto-num {
  font-family: var(--display); font-style: italic; font-stretch: 62.5%; letter-spacing: -0.02em;
  font-style: italic;
  font-size: clamp(3rem, 7vw, 4.6rem);
  color: var(--pink);
  line-height: 1;
}
.manifesto-text {
  font-family: var(--display); font-style: italic; font-stretch: 62.5%; letter-spacing: -0.02em;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.35;
  color: var(--ink-soft);
  max-width: 26ch;
}
.manifesto-text strong { color: var(--ink); font-weight: 600; }

/* =============================================================
   9. Trabajos (portfolio)
   ============================================================= */
.work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.work-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: block;
  isolation: isolate;
  box-shadow: var(--shadow-1);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.work-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-2); }
.work-card:active { transform: translateY(-6px) scale(.99); }
.work-cover {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  transition: transform .6s var(--ease-out);
}
.work-card:hover .work-cover { transform: scale(1.05); }
.work-mark {
  font-family: var(--display); font-style: italic; font-stretch: 62.5%; letter-spacing: -0.02em;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-align: center;
  line-height: 1;
}
.work-info {
  position: absolute; inset-inline: 0; bottom: 0;
  padding: 22px 24px;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 12px;
  background: linear-gradient(0deg, rgba(0,0,0,.55) 0%, transparent 100%);
  color: #fff;
}
.work-info .name { font-family: var(--display); font-style: italic; font-stretch: 62.5%; letter-spacing: -0.02em; font-size: 1.15rem; }
.work-info .cat {
  display: block; margin-top: 4px;
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  opacity: .82;
}
.work-arrow {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.35);
  flex: none;
  transition: transform .25s var(--ease-out), background .25s var(--ease-out);
}
.work-card:hover .work-arrow { transform: rotate(45deg); background: rgba(255,255,255,.3); }
.work-arrow svg { width: 16px; height: 16px; }

/* project palettes */
.work-card--lopez .work-cover { background: linear-gradient(160deg, #1c1a16 0%, #2a2620 100%); }
.work-card--lopez .work-mark { color: #d9c08a; font-size: clamp(2.4rem, 5vw, 3.4rem); }
.work-card--bunker .work-cover { background: linear-gradient(160deg, #0c0c0c 0%, #241304 100%); }
.work-card--bunker .work-mark { color: #ff7a2e; font-family: var(--sans); font-weight: 800; font-size: clamp(1.6rem, 3.6vw, 2.4rem); letter-spacing: -.02em; text-transform: uppercase; }
.work-card--alma .work-cover { background: linear-gradient(160deg, #e9ecdf 0%, #b9c2a6 100%); }
.work-card--alma .work-mark { color: #46543a; font-style: italic; font-size: clamp(2.2rem, 4.6vw, 3.2rem); }
.work-card--vitalis .work-cover { background: linear-gradient(160deg, #ffffff 0%, #ece7fb 100%); }
.work-card--vitalis .work-mark { color: #6a44c9; font-size: clamp(2.4rem, 5vw, 3.4rem); }
.work-card--vitalis .work-info,
.work-card--alma .work-info { color: var(--ink); background: linear-gradient(0deg, rgba(255,255,255,.82) 0%, transparent 100%); }
.work-card--vitalis .work-arrow,
.work-card--alma .work-arrow { background: rgba(23,33,27,.08); border-color: rgba(23,33,27,.18); }

.work-more {
  margin-top: 40px;
  text-align: center;
}

/* =============================================================
   10. Servicios (numbered rows)
   ============================================================= */
.services {
  border-top: 1px solid var(--ink);
}
.service-row {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 20px;
  padding-block: 30px;
  border-bottom: 1px solid var(--line);
  transition: padding-left .3s var(--ease-out);
}
.service-row:hover { padding-left: 10px; }
.service-num {
  font-family: var(--display); font-style: italic; font-stretch: 62.5%; letter-spacing: -0.02em; font-style: italic; font-weight: 600;
  color: var(--accent); font-size: 1.05rem;
}
.service-main { display: grid; gap: 6px; }
.service-title {
  font-family: var(--display); font-style: italic; font-stretch: 62.5%; letter-spacing: -0.02em; font-size: clamp(1.35rem, 3vw, 1.9rem);
}
.service-desc { max-width: 52ch; color: var(--ink-mute); font-size: .96rem; }

/* =============================================================
   11. Feature (Landing pages) & pricing box
   ============================================================= */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.feature-visual {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-2);
  background: var(--paper);
}
.mock-browser { display: block; }
.mock-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
}
.mock-bar i { width: 9px; height: 9px; border-radius: 50%; background: var(--accent-soft); }
.mock-bar .mock-url {
  margin-left: 10px; flex: 1;
  height: 20px; border-radius: 5px;
  background: rgba(23,33,27,.06);
}
.mock-body {
  padding: 26px 24px 34px;
  display: grid; gap: 14px;
}
.mock-body .l1 { height: 30px; width: 60%; border-radius: 6px; background: var(--accent-soft); }
.mock-body .l2 { height: 12px; width: 88%; border-radius: 6px; background: rgba(23,33,27,.08); }
.mock-body .l3 { height: 12px; width: 70%; border-radius: 6px; background: rgba(23,33,27,.08); }
.mock-body .l-btn {
  margin-top: 10px; height: 38px; width: 148px; border-radius: 100px;
  background: var(--accent);
}
.mock-grid { margin-top: 16px; display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.mock-grid div { aspect-ratio: 1; border-radius: 10px; background: var(--pink-soft); }
.mock-grid div:nth-child(2) { background: var(--accent-soft); }
.mock-grid div:nth-child(3) { background: var(--bg-2); }

.price-box {
  padding: clamp(30px, 4vw, 46px);
  border-radius: 26px;
  border: 1px solid var(--line);
  background: var(--paper);
}
.price-box ul { display: grid; gap: 10px; margin: 24px 0; }
.price-box li {
  display: flex; align-items: baseline; gap: 10px;
  font-size: .95rem; color: var(--ink-soft);
}
.price-box li::before { content: "—"; color: var(--accent); flex: none; }
.price-row {
  display: flex; align-items: baseline; gap: 14px;
  margin-top: 6px;
}
.price-now {
  font-family: var(--display); font-style: italic; font-stretch: 62.5%; letter-spacing: -0.02em; font-size: 2.4rem; color: var(--accent);
}
.price-note {
  font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-mute);
}
.price-delivery {
  margin-top: 6px;
  font-size: .82rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  color: var(--accent);
}
.price-box .btn { margin-top: 26px; width: 100%; }

/* =============================================================
   12. Branding tiers
   ============================================================= */
.tiers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.tier {
  padding: clamp(28px, 3.4vw, 38px);
  border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--paper);
  display: flex;
  flex-direction: column;
}
.tier--premium {
  border-color: var(--accent);
  box-shadow: var(--shadow-green);
  position: relative;
}
.tier--premium::before {
  content: "MÁS ELEGIDO";
  position: absolute; top: -12px; right: 28px;
  background: var(--accent); color: #fff;
  font-size: .66rem; font-weight: 700; letter-spacing: .08em;
  padding: 5px 12px; border-radius: 100px;
}
.tier-name { font-family: var(--display); font-style: italic; font-stretch: 62.5%; letter-spacing: -0.02em; font-size: 1.4rem; }
.tier-price { margin-top: 10px; font-family: var(--display); font-style: italic; font-stretch: 62.5%; letter-spacing: -0.02em; font-size: 2.1rem; color: var(--accent); }
.tier-meta { margin-top: 4px; font-size: .82rem; color: var(--ink-mute); }
.tier ul { margin-top: 20px; display: grid; gap: 9px; flex: 1; }
.tier li {
  display: flex; align-items: baseline; gap: 10px;
  font-size: .92rem; color: var(--ink-soft);
}
.tier li::before { content: "—"; color: var(--accent); flex: none; }
.tier .btn, .tier .btn-ghost { margin-top: 24px; }

/* =============================================================
   14. Sobre Valen
   ============================================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.about-photo {
  aspect-ratio: 4/5;
  border-radius: 24px;
  background: linear-gradient(160deg, var(--accent) 0%, #0a2a1f 100%);
  display: grid; place-items: center;
  position: relative;
  overflow: hidden;
}
.about-photo span {
  font-family: var(--display); font-style: italic; font-stretch: 62.5%; letter-spacing: -0.02em; font-style: italic; font-weight: 600;
  font-size: clamp(5rem, 12vw, 7rem);
  color: rgba(247,243,234,.92);
}
.about-photo::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 20% 10%, rgba(255,255,255,.12), transparent 60%);
}
.about-copy .kicker-name { font-size: .92rem; color: var(--ink-mute); margin-bottom: 8px; }
.about-copy h2 {
  font-family: var(--display); font-style: italic; font-stretch: 62.5%; letter-spacing: -0.02em; font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem);
}
.about-copy p { margin-top: 18px; max-width: 46ch; color: var(--ink-soft); font-size: 1.03rem; }
.about-tags { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 10px; }
.about-tags span {
  font-size: .78rem; font-weight: 600; letter-spacing: .04em;
  padding: 7px 14px; border-radius: 100px;
  background: var(--accent-soft); color: var(--accent);
}

/* =============================================================
   15. Proceso
   ============================================================= */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
.process-step { text-align: left; }
.process-num {
  width: 50px; height: 50px; border-radius: 50%;
  border: 1.5px solid rgba(247,243,234,.35);
  display: grid; place-items: center;
  font-family: var(--display); font-style: italic; font-stretch: 62.5%; letter-spacing: -0.02em; font-style: italic; font-size: 1.15rem;
  margin-bottom: 16px;
}
.process-step h3 { font-family: var(--display); font-style: italic; font-stretch: 62.5%; letter-spacing: -0.02em; font-size: 1.2rem; font-weight: 500; }
.process-step p { margin-top: 8px; font-size: .92rem; color: rgba(247,243,234,.68); }

/* =============================================================
   16. CTA final
   ============================================================= */
.cta-final { text-align: center; }
.cta-final .eyebrow { justify-content: center; color: rgba(247,243,234,.8); }
.cta-final .eyebrow::before { background: rgba(247,243,234,.6); }
.cta-final h2 {
  margin-top: 16px;
  font-family: var(--display); font-style: italic; font-stretch: 62.5%; letter-spacing: -0.02em;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  color: var(--bg);
  max-width: 14ch;
  margin-inline: auto;
}
.cta-final .sub {
  margin-top: 14px;
  font-size: .84rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(247,243,234,.7);
}
.cta-final .btn { margin-top: 32px; padding: 18px 32px; font-size: 1rem; }

/* =============================================================
   17. Footer
   ============================================================= */
.footer {
  background: var(--ink);
  color: rgba(247,243,234,.75);
  padding-block: 48px 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(247,243,234,.14);
}
.footer-logo img { height: 26px; }
.footer-tag { margin-top: 12px; font-size: .86rem; max-width: 30ch; color: rgba(247,243,234,.6); }
.footer-col h4 {
  font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(247,243,234,.5); margin-bottom: 14px;
}
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { font-size: .9rem; transition: color .2s var(--ease-out); }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  padding-top: 24px;
  display: flex; flex-wrap: wrap; gap: 12px;
  align-items: center; justify-content: space-between;
  font-size: .8rem; color: rgba(247,243,234,.5);
}

/* =============================================================
   17.5 Case study page (/trabajos/*.html)
   ============================================================= */
.case-back {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 20px;
  font-size: .85rem; font-weight: 600; color: var(--ink-mute);
  transition: gap .2s var(--ease-out), color .2s var(--ease-out);
}
.case-back:hover { color: var(--accent); }
.case-back:hover { gap: 12px; border-color: var(--accent); }
.case-back svg { width: 16px; height: 16px; transition: transform .2s var(--ease-out); }
.case-back:hover svg { transform: translateX(-2px); }

.case-hero { padding-top: clamp(88px, 12vw, 128px); padding-bottom: clamp(40px, 6vw, 64px); }
.case-hero .eyebrow { margin-bottom: 18px; }
.case-hero h1 {
  font-family: var(--display); font-size: clamp(2.4rem, 6vw, 4.2rem); max-width: 16ch;
}
.case-tagline { margin-top: 18px; max-width: 52ch; font-size: 1.1rem; color: var(--ink-soft); }

.case-meta {
  margin-top: 40px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px 16px;
  padding-top: 28px; border-top: 1px solid var(--line);
}
.case-meta dt { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-mute); }
.case-meta dd { margin-top: 6px; font-size: .98rem; font-weight: 600; }

.case-cover {
  margin-top: clamp(36px, 6vw, 60px);
  border-radius: 26px;
  overflow: hidden;
  aspect-ratio: 16/10;
  box-shadow: var(--shadow-2);
}
.case-cover img { width: 100%; height: 100%; object-fit: cover; }

.case-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
.case-toc { display: none; }
.case-toc a {
  display: block; padding: 8px 0 8px 14px;
  border-left: 2px solid var(--line);
  font-size: .85rem; color: var(--ink-mute);
  transition: color .2s var(--ease-out), border-color .2s var(--ease-out);
}
.case-toc a:hover { color: var(--ink); border-left-color: var(--accent); }
.case-section + .case-section { margin-top: 40px; }
.case-section h2 {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
}
.case-section p { margin-top: 14px; max-width: 62ch; color: var(--ink-soft); font-size: 1rem; }
.case-section ul { margin-top: 16px; display: grid; gap: 9px; }
.case-section li { display: flex; gap: 10px; font-size: .95rem; color: var(--ink-soft); }
.case-section li::before { content: "—"; color: var(--accent); flex: none; }

.case-gallery { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 44px; }
.case-shot {
  border-radius: 18px; overflow: hidden; aspect-ratio: 3/4;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-1);
}
.case-shot img { width: 100%; height: 100%; object-fit: cover; }

.case-quote {
  margin-block: clamp(48px, 7vw, 76px);
  padding: clamp(32px, 5vw, 52px);
  border-radius: 24px;
  background: var(--bg-2);
  text-align: center;
}
.case-quote p {
  font-family: var(--display); font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  color: var(--ink-soft); max-width: 32ch; margin-inline: auto;
}
.case-quote cite { display: block; margin-top: 16px; font-style: normal; font-size: .82rem; color: var(--ink-mute); }

/* =============================================================
   18. Responsive (mobile-first)
   ============================================================= */
@media (min-width: 720px) {
  .hero-grid { grid-template-columns: 1.05fr .95fr; gap: 64px; }
  .manifesto-grid { grid-template-columns: 180px 1fr; align-items: start; }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .service-row { grid-template-columns: 60px 1fr auto; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .tiers { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: .85fr 1.15fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1.3fr repeat(3, 1fr); }
  .case-meta { grid-template-columns: repeat(4, 1fr); }
  .case-gallery { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .burger { display: none !important; }
  .process-grid { grid-template-columns: repeat(4, 1fr); }
  .case-body { grid-template-columns: 200px 1fr; align-items: start; }
  .case-toc { display: block; position: sticky; top: 100px; }
}

@media (max-width: 959px) {
  .nav-links {
    position: absolute; top: calc(var(--nav-h) - 4px); left: 16px; right: 16px;
    display: flex; flex-direction: column; align-items: stretch; gap: 2px;
    padding: 14px;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: rgba(247,243,234,.98);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    box-shadow: 0 26px 60px -20px rgba(23,33,27,.35);
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity .22s var(--ease-out), transform .28s var(--ease-out), visibility .28s;
  }
  .nav.is-open .nav-links { opacity: 1; visibility: visible; transform: none; }
  .nav-links a {
    padding: 13px 12px; border-radius: 12px;
  }
  .nav-links a:hover { background: var(--accent-soft); }
  .nav-links a::after { display: none; }
  .nav-cta .link-arrow { display: none; }
  .burger { display: grid; }
}

@media (min-width: 1280px) {
  .hero-copy h1 { max-width: 13ch; }
}

/* =============================================================
   19. Reduced motion — only the genuinely intrusive stuff
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation-duration: 60s; }
  .reveal, .reveal-stagger > * { transition-duration: .25s; }
}
