@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');

/* ─── TOKENS ─────────────────────────────── */
:root {
  --bg:      #D9D9D9;
  --text:    #1a1a18;
  --muted:   #5c5a57;
  --dark:    #141412;
  --white:   #ffffff;

  --font:    'Manrope', system-ui, sans-serif;

  --max-w:   1600px;
  --pad:     clamp(24px, 5vw, 80px);
  --section: clamp(80px, 12vw, 160px);
}

/* ─── SCROLL REVEAL ─────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1.9s cubic-bezier(.16,1,.3,1),
              transform 1.9s cubic-bezier(.16,1,.3,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
/* imágenes: movimiento más sutil, duración ligeramente más corta */
.reveal--img {
  transform: translateY(16px);
  transition-duration: 1.5s;
}

/* ─── RESET ──────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html  { scroll-behavior: smooth; }
body  {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none;
}
a, button { cursor: none; }
a   { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul  { list-style: none; }

/* ─── CUSTOM CURSOR ──────────────────────── */
.cursor {
  position: fixed;
  width: 24px;
  height: 24px;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  will-change: left, top;
  transition: opacity .2s;
}
.cursor::before,
.cursor::after {
  content: '';
  position: absolute;
  background: #fff;
  transition: transform .25s cubic-bezier(.16,1,.3,1);
}
.cursor::before {
  width: 24px;
  height: 1px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.cursor::after {
  width: 1px;
  height: 24px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.cursor--expanded::before { transform: translateY(-50%) scaleX(1.6) scaleY(2.5); }
.cursor--expanded::after  { transform: translateX(-50%) scaleY(1.6) scaleX(2.5); }

/* ─── LAYOUT HELPERS ─────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--muted);
  display: block;
  margin-bottom: 40px;
}

/* ─── BUTTONS ────────────────────────────── */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--text);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .01em;
  transition: transform .35s cubic-bezier(.16,1,.3,1);
  white-space: nowrap;
}
.btn-cta:hover { transform: scale(1.05); }
.btn-cta--light {
  background: var(--white);
  color: var(--text);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(0,0,0,.2);
  color: var(--text);
  background: transparent;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  transition: background .3s, color .3s, transform .35s cubic-bezier(.16,1,.3,1);
}
.btn-outline:hover {
  background: var(--text);
  color: var(--white);
  transform: scale(1.03);
}

/* ─── HEADER ─────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 28px 0;
}
.header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.logo {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--white);
  line-height: 1;
}
.nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  transition: opacity .45s ease;
}
.nav.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.nav__link {
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--white);
  line-height: 1.9;
  transition: opacity .2s;
}
.nav__link:hover { opacity: .45; }

/* botón CTA del header — cuadrado, negro, icono sobre, se oculta al bajar */
.header .btn-cta {
  background: #0e0e0c;
  color: var(--white);
  border-radius: 6px;
  padding: 11px 18px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .01em;
  gap: 9px;
  transform: translateY(0);
  opacity: 1;
  transition: transform .45s cubic-bezier(.16,1,.3,1),
              opacity .35s ease;
}
.header .btn-cta svg { flex-shrink: 0; }
.header .btn-cta:hover { transform: scale(1.03); }
.header .btn-cta.is-hidden {
  transform: translateY(-160%);
  opacity: 0;
  pointer-events: none;
}

/* ─── HERO ────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  background: #000;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .72;
  transform-origin: center;
  will-change: transform;
  transform: scale(1.08);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,.65) 0%, rgba(0,0,0,.08) 55%, transparent 100%),
    radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,.2) 100%);
}
.hero__words {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 var(--pad);
  pointer-events: none;
  z-index: 1;
}
.hero__words span {
  font-size: clamp(11px, 1.1vw, 15px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: rgba(255,255,255,.3);
  will-change: transform;
}
.hero__bottom {
  position: relative;
  z-index: 1;
  padding: 0 var(--pad) clamp(48px, 8vw, 100px);
}
.hero__title {
  font-size: clamp(36px, 4.6vw, 68px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -.035em;
  color: var(--white);
  max-width: 44%;
}

/* ─── ABOUT ──────────────────────────────── */
.about {
  padding: var(--section) 0;
}
.about__text {
  font-size: clamp(26px, 4.2vw, 62px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -.03em;
  text-indent: 33%;
}

/* ─── PROJECTS ───────────────────────────── */
.projects {
  padding-bottom: var(--section);
}
.projects__header {
  margin-bottom: clamp(40px, 5vw, 64px);
}

.project {
  overflow: hidden;
  margin-bottom: clamp(56px, 7vw, 100px);
}
.project__link { display: block; }

/* First project: image right, ~65% */
.project--right .project__img-wrap {
  margin-left: 35%;
  height: clamp(460px, 74vh, 880px);
}
/* Second project: image left, ~44% */
.project--left .project__img-wrap {
  margin-right: 56%;
  height: clamp(360px, 58vh, 700px);
}
/* Third project: full bleed */
.project--full .project__img-wrap {
  height: clamp(320px, 54vh, 620px);
}

.project__img-wrap {
  overflow: hidden;
  position: relative;
}
.project__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.88);
  transition: transform 1.6s cubic-bezier(.16,1,.3,1);
}
.project:hover .project__img { transform: scale(1.06); }

.project__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,8,6,0.09);
  pointer-events: none;
  z-index: 1;
}

.project__info {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 18px var(--pad) 0;
  gap: 20px;
}
.project--right .project__info { padding-left: calc(35% + var(--pad)); }

.project__title {
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 400;
  letter-spacing: -.02em;
}
.project__tags {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  flex-shrink: 0;
}
.project__tags .sep { opacity: .35; }

.projects__more {
  display: flex;
  justify-content: center;
  padding: clamp(16px, 3vw, 40px) var(--pad) 0;
}

/* Ticker */
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker {
  overflow: hidden;
  padding: 28px 0;
  border-top: 1px solid rgba(0,0,0,.07);
  border-bottom: 1px solid rgba(0,0,0,.07);
  white-space: nowrap;
  margin-top: clamp(40px, 6vw, 80px);
}
.ticker__track {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  animation: ticker-scroll 30s linear infinite;
  width: max-content;
}
.ticker__track span {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--muted);
  opacity: .45;
}
.ticker__track .sep { opacity: .2; }

/* ─── SERVICES ───────────────────────────── */
.services {
  background: var(--dark);
  color: var(--white);
}
.services__header {
  padding-top: var(--section);
  padding-bottom: clamp(56px, 8vw, 100px);
}
.services__header .label { color: rgba(255,255,255,.28); }
.services__intro {
  font-size: clamp(20px, 3.2vw, 44px);
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: -.025em;
  color: rgba(255,255,255,.5);
  max-width: 860px;
}

.service {
  display: grid;
  grid-template-columns: 46% 54%;
  border-top: 1px solid rgba(255,255,255,.06);
  min-height: 150vh;
  position: relative;
  /* sin overflow:hidden — rompería position:sticky en .service__left */
}
.service:last-child {
  border-bottom: 1px solid rgba(255,255,255,.06);
  min-height: 120vh;
}

/* wrapper que aísla el overflow:hidden del fondo sin romper sticky */
.service__bg-clip {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

/* fondo dinámico por servicio — misma imagen blurred */
.service__bg {
  position: absolute;
  inset: -40px;
  background-image: var(--svc-bg);
  background-size: cover;
  background-position: center;
  filter: blur(18px) brightness(.42) saturate(.7);
  z-index: 0;
  pointer-events: none;
}

.service__left {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 60px var(--pad);
  z-index: 1;
  background: var(--dark); /* tapa la imagen borrosa — solo se ve en columna derecha */
}
.service__num {
  font-size: clamp(80px, 13vw, 168px);
  font-weight: 800;
  line-height: 1;
  opacity: .06;
  color: var(--white);
  letter-spacing: -.04em;
  margin-bottom: 28px;
  flex-shrink: 0;
}
.service__index {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: auto;
}
.service__index li {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,.22);
  letter-spacing: .04em;
  line-height: 1.8;
}
.service__index li.is-active {
  color: rgba(255,255,255,.7);
  font-weight: 500;
}
.service__includes {
  margin-bottom: 40px;
}
.service__inc-label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: rgba(255,255,255,.22);
  margin-bottom: 14px;
}
.service__includes ul {
  display: flex;
  flex-direction: column;
}
.service__includes li {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,.45);
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  line-height: 1.5;
}
.service__name {
  font-size: clamp(36px, 5.5vw, 76px);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1;
  color: var(--white);
}

/* panel derecho — una sola foto grande y estable */
.service__images {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 48px 60px 24px;
  min-height: inherit;
}

.service__card {
  overflow: hidden;
  border-radius: 4px;
  width: 92%;
  height: clamp(380px, 58vh, 580px);
  flex-shrink: 0;
}

.service__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .92;
  filter: contrast(1.05) saturate(0.88);
  transition: transform 1.6s cubic-bezier(.16,1,.3,1);
}
.service__card:hover img { transform: scale(1.04); }

/* ─── AWARDS ─────────────────────────────── */
.awards {
  padding: var(--section) 0;
}
.awards__intro {
  font-size: clamp(24px, 3.8vw, 54px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -.03em;
  text-indent: 33%;
  margin-bottom: clamp(56px, 8vw, 110px);
}
.awards__table {
  border-top: 1px solid rgba(0,0,0,.1);
}
.awards__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 36px 0;
  border-bottom: 1px solid rgba(0,0,0,.1);
  gap: 40px;
  align-items: start;
}
.awards__pub {
  font-size: clamp(14px, 1.4vw, 19px);
  font-weight: 500;
  color: var(--text);
}
.awards__items {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.awards__items span {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.75;
}

/* ─── PROCESS ────────────────────────────── */
.process {
  padding: var(--section) 0;
  border-top: 1px solid rgba(0,0,0,.07);
}
.process__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(56px, 8vw, 130px);
  align-items: start;
}
.process__left {
  position: sticky;
  top: clamp(80px, 10vw, 120px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}
.process__heading {
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 400;
  letter-spacing: -.03em;
  line-height: .96;
}
.process__sub {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 340px;
}
.process__steps {
  display: flex;
  flex-direction: column;
}
.process__step {
  padding: 40px 0;
  border-top: 1px solid rgba(0,0,0,.08);
}
.process__step:last-child { border-bottom: 1px solid rgba(0,0,0,.08); }
.process__step-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.process__badge {
  width: 36px; height: 36px;
  background: var(--text);
  color: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
}
.process__step-title {
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -.01em;
}
.process__step-sub {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  margin-bottom: 8px;
}
.process__step-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}

/* ─── DARK CARD — contenedor redondeado de CTA + footer ── */
.dark-card {
  margin: 0 clamp(12px, 1.4vw, 20px) clamp(12px, 1.4vw, 20px);
  border-radius: 20px;
  overflow: hidden;
}

/* ─── CTA ────────────────────────────────── */
.cta {
  background: var(--dark);
  color: var(--white);
  padding: clamp(80px, 11vw, 140px) 0;
}
.cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}
.cta__title {
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1.08;
}

/* ─── FOOTER ─────────────────────────────── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.45);
  padding: 64px 0 48px;
  border-top: 1px solid rgba(255,255,255,.05);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 72px;
}
.footer__logo {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.02em;
  margin-bottom: 10px;
}
.footer__addr {
  font-size: 13px;
  line-height: 1.75;
}
.footer__col-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: rgba(255,255,255,.22);
  display: block;
  margin-bottom: 20px;
}
.footer__col li { margin-bottom: 10px; }
.footer__col a {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  transition: opacity .2s;
}
.footer__col a:hover { opacity: .8; }
.footer__email {
  font-size: 13px;
  color: rgba(255,255,255,.8);
  font-weight: 500;
  display: block;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.05);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.footer__bottom a { color: rgba(255,255,255,.35); }

/* ─── HEADER — variante fondo claro (página proyectos) ── */
.header--light .logo,
.header--light .nav__link { color: var(--text); }

/* ─── PAGE HERO (proyectos) ──────────────── */
.page-hero {
  padding: clamp(120px, 14vw, 180px) var(--pad) clamp(32px, 4vw, 56px);
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.page-hero__date {
  display: block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .06em;
  color: var(--muted);
  margin-bottom: 10px;
}
.page-hero__title {
  font-size: clamp(56px, 10vw, 140px);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1;
}

/* ─── GRID TOGGLE ────────────────────────── */
.grid-toggle {
  display: flex;
  gap: 4px;
  align-items: center;
  padding-bottom: 12px;
}
.grid-toggle__btn {
  background: none;
  border: none;
  cursor: none;
  padding: 7px;
  opacity: .22;
  transition: opacity .2s;
  border-radius: 4px;
}
.grid-toggle__btn.is-active { opacity: 1; }
.grid-toggle__btn:hover { opacity: .55; }

/* ─── PROJECTS GRID (página de proyectos) ── */
.projects-full {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(14px, 1.8vw, 22px);
  padding: 0 var(--pad) clamp(60px, 8vw, 100px);
}
.projects-full.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.pg-item {
  display: block;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .38s ease, transform .45s cubic-bezier(.16,1,.3,1);
}
.pg-item.is-visible {
  opacity: 1;
  transform: none;
}
.pg-item__img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #c8c6c1;
  position: relative;
  border-radius: 6px;
}

/* overlay editorial sutil */
.pg-item__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,8,6,.08);
  pointer-events: none;
  z-index: 1;
}

.pg-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.88);
  transition: transform 1.4s cubic-bezier(.16,1,.3,1);
}
.pg-item:hover .pg-item__img img { transform: scale(1.05); }

.pg-item__meta {
  padding: 12px 4px 20px;
}
.pg-item__name {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--text);
  line-height: 1.3;
}
.pg-item__cat {
  display: block;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: .05em;
  margin-top: 3px;
}

/* ─── BLOG — listado ─────────────────────── */
.blog-list {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad) clamp(80px, 10vw, 140px);
}
.blog-post-row {
  display: grid;
  grid-template-columns: 1fr clamp(240px, 30vw, 400px);
  gap: clamp(32px, 4vw, 56px);
  padding: clamp(32px, 4vw, 52px) 0;
  align-items: center;
  text-decoration: none;
  color: inherit;
  border-top: 1px solid rgba(0,0,0,.09);
}
.blog-post-row:last-child { border-bottom: 1px solid rgba(0,0,0,.09); }
.blog-post-row:hover .blog-post-row__img img { transform: scale(1.05); }
.blog-post-row:hover .blog-post-row__arrow { transform: translateX(5px); }

.blog-post-row__left {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}
.blog-post-row__date {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .04em;
}
.blog-post-row__title {
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: 1.18;
}
.blog-post-row__excerpt {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-post-row__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}
.blog-post-row__cat {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--muted);
}
.blog-post-row__sep { color: rgba(0,0,0,.2); font-size: 11px; }
.blog-post-row__read {
  font-size: 11px;
  color: var(--muted);
}
.blog-post-row__arrow {
  font-size: 16px;
  color: var(--text);
  margin-left: auto;
  transition: transform .3s cubic-bezier(.16,1,.3,1);
}

.blog-post-row__img {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 6px;
  position: relative;
  background: #c8c6c1;
}
.blog-post-row__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,8,6,.08);
  pointer-events: none;
  z-index: 1;
}
.blog-post-row__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.88);
  transition: transform 1.4s cubic-bezier(.16,1,.3,1);
  display: block;
}

/* ─── POST INDIVIDUAL ────────────────────── */
.post-top {
  padding: clamp(110px, 13vw, 160px) var(--pad) clamp(40px, 5vw, 64px);
  max-width: var(--max-w);
  margin: 0 auto;
}
.post-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  margin-bottom: 40px;
  transition: color .2s;
}
.post-back:hover { color: var(--text); }
.post-back:hover svg { transform: translateX(-4px); }
.post-back svg { transition: transform .25s cubic-bezier(.16,1,.3,1); }
.post-top__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.post-top__cat {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--muted);
}
.post-top__date,
.post-top__read {
  font-size: 11px;
  color: var(--muted);
}
.post-top__sep { color: rgba(0,0,0,.2); }
.post-top__title {
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: .98;
  max-width: 860px;
}

.post-hero-img {
  max-width: var(--max-w);
  margin: 0 auto clamp(48px, 6vw, 80px);
  padding: 0 var(--pad);
}
.post-hero-img img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  border-radius: 8px;
  filter: contrast(1.04) saturate(0.9);
}

.post-body {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 var(--pad) clamp(80px, 10vw, 140px);
}
.post-body p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 28px;
}
.post-body h2 {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: 1.15;
  margin: 52px 0 18px;
}

/* ─── PROYECTO DETALLE ───────────────────── */
.proj-top {
  padding: clamp(110px, 13vw, 160px) var(--pad) clamp(48px, 6vw, 80px);
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.proj-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  transition: color .2s;
}
.proj-back:hover { color: var(--text); }
.proj-back svg { transition: transform .25s cubic-bezier(.16,1,.3,1); }
.proj-back:hover svg { transform: translateX(-4px); }
.proj-cat {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--muted);
}
.proj-title {
  font-size: clamp(48px, 8vw, 110px);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: .96;
}

.proj-gallery {
  padding: 0 var(--pad) clamp(80px, 10vw, 140px);
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2.5vw, 32px);
  width: 100%;
  box-sizing: border-box;
}
.proj-gallery__img {
  width: 100%;
  display: block;
  border-radius: 6px;
  filter: contrast(1.04) saturate(0.9);
}
/* cada 3ª imagen: más pequeña y centrada para ritmo visual */
.proj-gallery__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(12px, 2vw, 24px);
}

/* ─── RESPONSIVE ─────────────────────────── */
@media (max-width: 1100px) {
  .service { grid-template-columns: 50% 50%; }
  .project--right .project__img-wrap { margin-left: 22%; }
  .project--left  .project__img-wrap { margin-right: 48%; }
}
@media (max-width: 900px) {
  body { cursor: auto; }
  .cursor { display: none; }
  .nav { display: none; }
  .about__text  { text-indent: 0; }
  .awards__intro { text-indent: 0; }
  .project--right .project__img-wrap { margin-left: 0; }
  .project--left  .project__img-wrap { margin-right: 0; }
  .project--right .project__info { padding-left: var(--pad); }
  .service { grid-template-columns: 1fr; min-height: auto; }
  .service__left {
    position: static;
    height: auto;
    padding-bottom: 0;
  }
  .service__images { padding: 20px var(--pad) 60px; }
  .process__grid { grid-template-columns: 1fr; }
  .process__left { position: static; }
  .footer__grid  { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 580px) {
  .hero__words { display: none; }
  .awards__row { grid-template-columns: 1fr; }
  .project__info { flex-direction: column; gap: 6px; }
  .footer__grid  { grid-template-columns: 1fr; }
}
