:root {
  --pr-ink: #182125;
  --pr-ink-soft: #4a5558;
  --pr-night: #101719;
  --pr-night-soft: #1a2427;
  --pr-paper: #efeee8;
  --pr-stone: #deddd5;
  --pr-line: rgba(24, 33, 37, .2);
  --pr-line-light: rgba(239, 238, 232, .22);
  --pr-orange: #d36d46;
  --pr-orange-soft: #eea584;
  --pr-lime: #bacb74;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; background: var(--pr-paper); }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--pr-paper);
  color: var(--pr-ink);
  font-family: "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

img { max-width: 100%; }
a { color: inherit; }

.pr-shell {
  width: min(1320px, calc(100% - 88px));
  margin: 0 auto;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 25px;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1320px, calc(100% - 88px));
  height: 66px;
  padding: 0 26px;
  transform: translateX(-50%);
  border-bottom: 1px solid rgba(239, 238, 232, .48);
  color: var(--pr-paper);
}

.brand { display: inline-flex; align-items: center; color: inherit; text-decoration: none; }
.brand-logo { display: block; width: 34px; height: 34px; object-fit: contain; }
.site-nav { display: flex; align-items: center; gap: clamp(20px, 3vw, 44px); }
.site-nav a { position: relative; color: rgba(239, 238, 232, .92); font-size: 13px; text-decoration: none; transition: color .25s ease; }
.site-nav a::after { position: absolute; right: 0; bottom: -8px; left: 0; height: 1px; background: var(--pr-orange-soft); content: ""; transform: scaleX(0); transform-origin: right center; transition: transform .3s ease; }
.site-nav a:hover, .site-nav a:focus-visible { color: #fff; }
.site-nav a:hover::after, .site-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left center; }

.pr-section { position: relative; overflow: hidden; }

.pr-hero {
  min-height: max(760px, 100vh);
  padding: 150px 0 46px;
  isolation: isolate;
  background:
    radial-gradient(circle at 83% 40%, rgba(211, 109, 70, .2), transparent 25%),
    linear-gradient(118deg, #0c1315 0%, #111c1f 58%, #253034 100%);
  color: var(--pr-paper);
}

.pr-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: linear-gradient(rgba(239, 238, 232, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(239, 238, 232, .045) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(90deg, transparent 0%, #000 32%, rgba(0, 0, 0, .75) 100%);
}

.pr-hero::after {
  position: absolute;
  z-index: -1;
  top: -10%;
  right: 12%;
  width: 34vw;
  height: 120%;
  border-left: 1px solid rgba(239, 238, 232, .11);
  border-right: 1px solid rgba(239, 238, 232, .11);
  content: "";
  transform: skewX(18deg);
  pointer-events: none;
}

.pr-hero-topline,
.pr-hero-footer,
.pr-project-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(239, 238, 232, .63);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.pr-hero-topline { padding-bottom: 17px; border-bottom: 1px solid var(--pr-line-light); }

.pr-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(330px, 1.1fr);
  align-items: center;
  gap: clamp(55px, 9vw, 145px);
  min-height: 575px;
}

.pr-hero-copy { position: relative; z-index: 1; max-width: 670px; }
.pr-overline { margin: 0 0 19px; color: var(--pr-orange-soft); font-size: 11px; font-weight: 700; letter-spacing: .18em; line-height: 1.3; text-transform: uppercase; }

.pr-hero h1 {
  max-width: 680px;
  margin: 0;
  color: #fff;
  font-size: clamp(72px, 11vw, 170px);
  font-weight: 400;
  letter-spacing: -.095em;
  line-height: .8;
  text-wrap: balance;
}

.pr-hero-lead { max-width: 580px; margin: 40px 0 0; color: rgba(239, 238, 232, .82); font-size: clamp(17px, 1.4vw, 21px); line-height: 1.55; }
.pr-hero-link { display: inline-flex; align-items: center; gap: 38px; margin-top: 31px; padding: 0 0 12px; border-bottom: 1px solid rgba(239, 238, 232, .64); color: #fff; font-size: 12px; font-weight: 700; text-decoration: none; transition: gap .3s ease, color .3s ease, border-color .3s ease; }
.pr-hero-link:hover, .pr-hero-link:focus-visible { gap: 48px; border-color: var(--pr-orange-soft); color: var(--pr-orange-soft); }

.pr-hero-visual {
  position: relative;
  width: min(100%, 620px);
  aspect-ratio: 1 / 1;
  justify-self: end;
  border: 1px solid rgba(239, 238, 232, .24);
  background: radial-gradient(circle at center, rgba(211, 109, 70, .16), transparent 42%);
  clip-path: polygon(0 6%, 92% 0, 100% 93%, 9% 100%);
}

.pr-visual-grid { position: absolute; inset: 8%; background-image: linear-gradient(rgba(239, 238, 232, .12) 1px, transparent 1px), linear-gradient(90deg, rgba(239, 238, 232, .12) 1px, transparent 1px); background-size: 51px 51px; transform: perspective(520px) rotateX(56deg) rotateZ(-12deg) scale(1.27); transform-origin: center; opacity: .48; }
.pr-visual-axis { position: absolute; background: rgba(239, 238, 232, .43); }
.pr-visual-axis-x { top: 50%; right: 10%; left: 10%; height: 1px; }
.pr-visual-axis-y { top: 10%; bottom: 10%; left: 50%; width: 1px; }
.pr-visual-ring { position: absolute; top: 50%; left: 50%; border: 1px solid rgba(211, 109, 70, .7); border-radius: 50%; transform: translate(-50%, -50%); }
.pr-visual-ring-a { width: 36%; height: 36%; opacity: .95; }
.pr-visual-ring-b { width: 74%; height: 74%; opacity: .45; }
.pr-visual-node { position: absolute; width: 11px; height: 11px; border: 2px solid var(--pr-orange-soft); border-radius: 50%; background: var(--pr-night); box-shadow: 0 0 0 7px rgba(211, 109, 70, .1); }
.pr-visual-node-a { top: 28%; left: 28%; }
.pr-visual-node-b { top: 63%; left: 67%; }
.pr-visual-node-c { top: 42%; right: 19%; }
.pr-visual-code { position: absolute; color: rgba(239, 238, 232, .63); font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }
.pr-visual-code-a { top: 13%; left: 15%; color: var(--pr-orange-soft); }
.pr-visual-code-b { right: 12%; bottom: 17%; }
.pr-visual-code-c { bottom: 10%; left: 15%; }

.pr-visual-mark { position: absolute; top: 50%; left: 50%; display: grid; width: 112px; height: 112px; place-items: center; border: 1px solid rgba(239, 238, 232, .78); border-radius: 50%; background: rgba(16, 23, 25, .76); box-shadow: 0 0 0 15px rgba(16, 23, 25, .18); transform: translate(-50%, -50%); }
.pr-visual-mark::before, .pr-visual-mark::after { position: absolute; width: 20px; height: 1px; background: var(--pr-orange-soft); content: ""; }
.pr-visual-mark::after { transform: rotate(90deg); }
.pr-visual-mark span { position: relative; z-index: 1; color: #fff; font-size: 38px; font-weight: 300; letter-spacing: -.08em; }
.pr-visual-counter { position: absolute; right: 11%; bottom: 12%; display: grid; align-items: end; grid-template-columns: auto 1fr; gap: 13px; max-width: 230px; }
.pr-visual-counter strong { color: var(--pr-orange-soft); font-size: clamp(49px, 5.5vw, 80px); font-weight: 300; letter-spacing: -.08em; line-height: .8; }
.pr-visual-counter span { align-self: end; max-width: 80px; color: rgba(239, 238, 232, .62); font-size: 9px; letter-spacing: .1em; line-height: 1.35; text-transform: uppercase; }

.pr-filter-row { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 30px; padding: 20px 0; border-top: 1px solid var(--pr-line-light); border-bottom: 1px solid var(--pr-line-light); }
.pr-filter-label { color: rgba(239, 238, 232, .6); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.pr-filters { display: flex; flex-wrap: wrap; gap: 7px; }
.pr-filters button { border: 1px solid rgba(239, 238, 232, .35); border-radius: 999px; padding: 8px 14px; background: transparent; color: rgba(239, 238, 232, .78); font: inherit; font-size: 11px; cursor: pointer; transition: background .25s ease, border-color .25s ease, color .25s ease; }
.pr-filters button:hover, .pr-filters button:focus-visible, .pr-filters button[aria-pressed="true"] { border-color: var(--pr-orange-soft); background: var(--pr-orange); color: #fff; }

.pr-hero-footer { justify-content: flex-start; padding-top: 16px; }
.pr-hero-footer > span:first-child { color: rgba(239, 238, 232, .86); }
.pr-hero-footer > span:last-child { margin-left: auto; }
.pr-hero-line { display: block; width: 80px; height: 1px; background: var(--pr-orange-soft); }

.pr-project { padding: 112px 0 116px; background: var(--pr-paper); }
.pr-project:nth-of-type(odd) { background: #e8e7e0; }
.pr-project-dark { background: var(--pr-night) !important; color: var(--pr-paper); }
.pr-project::before { position: absolute; top: 0; right: 5.5%; width: 1px; height: 100%; background: var(--pr-line); content: ""; opacity: .46; }
.pr-project-dark::before { background: var(--pr-line-light); }

.pr-project-topline { justify-content: flex-start; padding-bottom: 16px; border-bottom: 1px solid var(--pr-line); color: #9b5e48; }
.pr-project-dark .pr-project-topline { border-color: var(--pr-line-light); color: var(--pr-orange-soft); }
.pr-project-index { min-width: 34px; color: inherit; }
.pr-project-kind { margin-left: auto; color: var(--pr-ink-soft); opacity: .72; }
.pr-project-dark .pr-project-kind { color: rgba(239, 238, 232, .58); }

.pr-project-grid { display: grid; grid-template-columns: minmax(0, 1.07fr) minmax(300px, .93fr); align-items: center; gap: clamp(48px, 8vw, 128px); padding-top: 46px; }
.pr-project-reverse .pr-project-media { order: 2; }
.pr-project-reverse .pr-project-copy { order: 1; }

.pr-project-media { position: relative; overflow: hidden; aspect-ratio: 1.37 / 1; margin: 0; border: 1px solid var(--pr-line); background: #c4c3bb; }
.pr-project-dark .pr-project-media { border-color: var(--pr-line-light); background: var(--pr-night-soft); }
.pr-project-media img { display: block; width: 100%; height: 100%; object-fit: cover; image-rendering: auto; filter: saturate(.86) contrast(1.04); transition: filter .55s ease, transform .8s cubic-bezier(.2, .7, .2, 1); }
.pr-project-media:hover img { filter: saturate(1) contrast(1.05); transform: scale(1.035); }
.pr-media-corner { position: absolute; top: 16px; right: 16px; width: 25px; height: 25px; border-top: 1px solid rgba(255, 255, 255, .92); border-right: 1px solid rgba(255, 255, 255, .92); pointer-events: none; }
.pr-media-empty { display: grid; width: 100%; height: 100%; place-items: center; color: var(--pr-ink-soft); font-size: 11px; letter-spacing: .13em; text-transform: uppercase; }
.pr-project-dark .pr-media-empty { color: rgba(239, 238, 232, .56); }

.pr-project-copy { min-width: 0; max-width: 650px; }
.pr-project-copy .pr-overline { margin-bottom: 20px; color: #9b5e48; }
.pr-project-dark .pr-project-copy .pr-overline { color: var(--pr-orange-soft); }
.pr-project-copy h2 { max-width: 650px; margin: 0; color: inherit; font-size: clamp(34px, 4vw, 65px); font-weight: 400; letter-spacing: -.072em; line-height: .98; text-wrap: balance; }
.pr-project-description { max-width: 625px; margin-top: 31px; color: var(--pr-ink-soft); font-size: clamp(17px, 1.35vw, 20px); line-height: 1.58; }
.pr-project-description p { margin: 0 0 16px; }
.pr-project-description p:last-child { margin-bottom: 0; }
.pr-project-dark .pr-project-description { color: rgba(239, 238, 232, .77); }
.pr-project-caption { display: flex; justify-content: space-between; gap: 20px; margin-top: 44px; padding-top: 14px; border-top: 1px solid var(--pr-line); color: #9b5e48; font-size: 10px; font-weight: 700; letter-spacing: .14em; line-height: 1.3; text-transform: uppercase; }
.pr-project-dark .pr-project-caption { border-color: var(--pr-line-light); color: var(--pr-orange-soft); }
.pr-project-rule { height: 1px; margin-top: 82px; background: var(--pr-line); }
.pr-project-dark .pr-project-rule { background: var(--pr-line-light); }
.pr-project.is-filtered { display: none; }

.pr-empty { min-height: 680px; padding: 220px 0 120px; background: var(--pr-night); color: var(--pr-paper); }
.pr-empty h1 { max-width: 760px; margin: 0 0 18px; color: #fff; font-size: clamp(58px, 9vw, 126px); font-weight: 400; letter-spacing: -.08em; line-height: .88; }
.pr-empty > .pr-shell > p:last-child { color: rgba(239, 238, 232, .65); font-size: 18px; }

.proyectos-footer { padding: 0; border-top: 0; background: #0b1113; color: var(--pr-paper); }
.pr-footer-shell { display: grid; grid-template-columns: .75fr 1.1fr 1fr; align-items: end; gap: 36px; min-height: 210px; padding-top: 36px; padding-bottom: 30px; border-top: 1px solid rgba(239, 238, 232, .2); }
.footer-brand { display: flex; align-items: center; min-height: 52px; }
.footer-mark { display: block; width: 52px; height: 52px; object-fit: contain; }
.pr-footer-contact { display: grid; gap: 4px; color: rgba(239, 238, 232, .68); font-size: 13px; }
.pr-footer-contact span { margin-bottom: 8px; color: var(--pr-orange-soft); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.pr-footer-contact a { width: fit-content; color: rgba(239, 238, 232, .9); text-decoration: none; }
.pr-footer-contact a:hover { color: var(--pr-orange-soft); }
.pr-footer-legal { align-self: end; justify-self: end; color: rgba(239, 238, 232, .52); font-size: 11px; }

[data-pr-reveal] { opacity: 1; transform: none; }
.proyectos-ready [data-pr-reveal] { opacity: 0; transform: translateY(27px); transition: opacity .82s ease, transform .82s cubic-bezier(.2, .75, .2, 1); }
.proyectos-ready [data-pr-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .pr-shell, .site-header { width: min(100% - 48px, 780px); }
  .pr-hero { min-height: auto; padding-top: 138px; }
  .pr-hero-grid { grid-template-columns: 1fr; gap: 56px; min-height: 0; padding: 80px 0 65px; }
  .pr-hero-visual { width: min(100%, 560px); justify-self: start; }
  .pr-project-grid { gap: 50px; }
  .pr-footer-shell { grid-template-columns: .75fr 1.25fr; }
  .pr-footer-legal { grid-column: 1 / -1; justify-self: start; }
}

@media (max-width: 700px) {
  .pr-shell { width: calc(100% - 40px); }
  .site-header { top: 14px; width: calc(100% - 32px); height: 62px; padding: 0 17px; }
  .brand-logo { width: 29px; height: 29px; }
  .site-nav { gap: 14px; }
  .site-nav a { font-size: 11px; }
  .site-nav a::after { bottom: -5px; }

  .pr-hero { padding: 112px 0 32px; }
  .pr-hero-topline { display: grid; gap: 5px; }
  .pr-hero-grid { gap: 47px; padding: 64px 0 48px; }
  .pr-hero h1 { font-size: clamp(70px, 22vw, 122px); }
  .pr-hero-lead { margin-top: 31px; font-size: 17px; }
  .pr-hero-link { gap: 22px; margin-top: 27px; }
  .pr-hero-visual { width: 100%; aspect-ratio: 1 / .92; }
  .pr-visual-grid { background-size: 32px 32px; }
  .pr-visual-mark { width: 78px; height: 78px; }
  .pr-visual-mark span { font-size: 27px; }
  .pr-visual-counter strong { font-size: 54px; }
  .pr-visual-counter span { font-size: 8px; }
  .pr-filter-row { display: block; padding: 17px 0 18px; }
  .pr-filter-label { display: block; margin-bottom: 12px; }
  .pr-filters { gap: 6px; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 3px; scrollbar-width: none; }
  .pr-filters::-webkit-scrollbar { display: none; }
  .pr-filters button { flex: 0 0 auto; padding: 8px 12px; }
  .pr-hero-footer { display: grid; grid-template-columns: auto 1fr; gap: 10px 14px; }
  .pr-hero-footer > span:last-child { grid-column: 1 / -1; margin: 4px 0 0; }
  .pr-hero-line { width: 100%; }

  .pr-project { padding: 78px 0 84px; }
  .pr-project::before { right: 20px; }
  .pr-project-topline { display: grid; grid-template-columns: auto 1fr; gap: 9px 15px; }
  .pr-project-kind { grid-column: 1 / -1; margin-left: 0; }
  .pr-project-grid { display: flex; flex-direction: column; gap: 34px; padding-top: 31px; }
  .pr-project-reverse .pr-project-media, .pr-project-reverse .pr-project-copy { order: initial; }
  .pr-project-media { width: 100%; aspect-ratio: 1.2 / 1; }
  .pr-project-copy h2 { font-size: clamp(39px, 12vw, 60px); }
  .pr-project-description { margin-top: 25px; font-size: 18px; }
  .pr-project-caption { display: grid; gap: 7px; margin-top: 33px; }
  .pr-project-rule { margin-top: 56px; }

  .pr-empty { min-height: 560px; padding: 160px 0 90px; }
  .pr-empty h1 { font-size: clamp(60px, 18vw, 100px); }
  .pr-footer-shell { display: grid; grid-template-columns: 1fr; gap: 28px; min-height: 0; padding-top: 32px; padding-bottom: 28px; }
  .pr-footer-legal { grid-column: auto; justify-self: start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .proyectos-ready [data-pr-reveal] { opacity: 1; transform: none; }
}

/* Plantilla propia de Proyectos: conserva la composición editorial del sitio original. */
.proyectos-page { background: #fff; color: var(--pr-ink); }
.proyectos-page .site-header { color: var(--pr-ink); border-bottom-color: rgba(24, 33, 37, .4); }
.proyectos-page .site-nav a { color: rgba(24, 33, 37, .84); }
.proyectos-page .site-nav a:hover, .proyectos-page .site-nav a:focus-visible { color: var(--pr-ink); }
.proyectos-page .site-nav a::after { background: var(--pr-orange); }

.pr-page-head { padding: 176px 0 0; background: #fff; color: var(--pr-ink); }
.pr-page-title-row { display: flex; align-items: end; justify-content: space-between; gap: 28px; }
.pr-page-title-row h1 { margin: 0; font-size: clamp(52px, 7vw, 92px); font-weight: 400; letter-spacing: -.075em; line-height: .9; }
.pr-page-count { color: var(--pr-orange); font-size: 13px; font-weight: 600; letter-spacing: .12em; }
.pr-page-rule { height: 1px; margin-top: 32px; background: var(--pr-line); }
.pr-page-head .pr-filter-row { display: flex; align-items: center; gap: 24px; padding: 22px 0 27px; border-top: 0; border-bottom: 1px solid var(--pr-line); }
.pr-page-head .pr-filter-label { color: var(--pr-ink-soft); font-size: 12px; font-weight: 500; letter-spacing: .03em; text-transform: none; }
.pr-page-head .pr-filters { gap: 8px; }
.pr-page-head .pr-filters button { border-color: rgba(24, 33, 37, .35); border-radius: 2px; padding: 7px 13px; color: var(--pr-ink); font-size: 12px; }
.pr-page-head .pr-filters button:hover, .pr-page-head .pr-filters button:focus-visible, .pr-page-head .pr-filters button[aria-pressed="true"] { border-color: var(--pr-orange); background: var(--pr-orange); color: #fff; }

.pr-project { padding: 72px 0 78px; background: #fff !important; color: var(--pr-ink); }
.pr-project::before { display: none; }
.pr-project + .pr-project { border-top: 1px solid rgba(24, 33, 37, .14); }
.pr-project-grid { display: grid; grid-template-columns: 42px minmax(280px, .78fr) minmax(0, 1.22fr); align-items: start; gap: 0 clamp(24px, 3.8vw, 58px); padding-top: 0; }
.pr-project-index { grid-column: 1; padding-top: 5px; color: var(--pr-orange); font-size: 12px; font-weight: 500; letter-spacing: .12em; line-height: 1.2; }
.pr-project-media { grid-column: 2; width: 100%; aspect-ratio: 1.52 / 1; margin: 0; border: 0; border-radius: 7px; background: #e6e5df; }
.pr-project-media img { filter: none; }
.pr-project-media:hover img { filter: saturate(.96); }
.pr-project-copy { grid-column: 3; max-width: 680px; padding-top: 1px; }
.pr-project-category { margin: 0 0 13px; color: var(--pr-orange); font-size: 12px; font-weight: 500; letter-spacing: .03em; }
.pr-project-copy h2 { max-width: 650px; margin: 0; color: var(--pr-ink); font-size: clamp(23px, 2.25vw, 32px); font-weight: 500; letter-spacing: -.045em; line-height: 1.08; }
.pr-project-description { max-width: 650px; margin-top: 19px; color: var(--pr-ink-soft); font-size: 15px; line-height: 1.55; }
.pr-project-description p { margin: 0 0 12px; }
.pr-project-description p:last-child { margin-bottom: 0; }
.pr-project-rule { height: 1px; margin-top: 72px; background: var(--pr-line); }
.pr-project-dark { background: #fff !important; color: var(--pr-ink); }
.pr-project-dark .pr-project-description, .pr-project-dark .pr-project-copy h2 { color: var(--pr-ink-soft); }
.pr-project-dark .pr-project-copy h2 { color: var(--pr-ink); }

.proyectos-footer { background: #242424; }
.proyectos-footer .pr-footer-shell { border-top: 0; }

@media (max-width: 980px) {
  .pr-page-head { padding-top: 154px; }
  .pr-project-grid { grid-template-columns: 32px minmax(250px, .82fr) minmax(0, 1.18fr); gap: 0 26px; }
}

@media (max-width: 700px) {
  .pr-page-head { padding-top: 128px; }
  .pr-page-title-row h1 { font-size: clamp(54px, 16vw, 78px); }
  .pr-page-count { font-size: 11px; }
  .pr-page-head .pr-filter-row { display: block; padding: 19px 0 21px; }
  .pr-page-head .pr-filter-label { display: block; margin-bottom: 12px; }
  .pr-page-head .pr-filters { display: flex; flex-wrap: nowrap; overflow-x: auto; padding-bottom: 3px; scrollbar-width: none; }
  .pr-page-head .pr-filters::-webkit-scrollbar { display: none; }
  .pr-page-head .pr-filters button { flex: 0 0 auto; }
  .pr-project { padding: 45px 0 49px; }
  .pr-project-grid { grid-template-columns: 28px minmax(0, 1fr); gap: 0 15px; }
  .pr-project-index { grid-column: 1; }
  .pr-project-media { grid-column: 2; aspect-ratio: 1.25 / 1; }
  .pr-project-copy { grid-column: 2; padding-top: 24px; }
  .pr-project-copy h2 { font-size: clamp(24px, 8vw, 34px); }
  .pr-project-description { margin-top: 16px; font-size: 16px; }
  .pr-project-rule { margin-top: 45px; }
}

@media (prefers-reduced-motion: reduce) {
  .proyectos-ready [data-pr-reveal] { opacity: 1; transform: none; }
}
