/* ═══════════════════════════════════════════════
   ALEJANDRO M. DELGADO · ARQUITECTO
   Paleta extraída del logo · Mobile-first
   ═══════════════════════════════════════════════ */

:root {
  --black:        #121211;
  --black-2:      #1a1916;
  --black-3:      #211f1b;
  --line:         #2b2823;
  --greige:       #a89c8e;
  --greige-2:     #c8bcab;
  --cream:        #f3efe7;
  --cream-dim:    #b3aa9c;
  --moss:         #7e8763;
  --moss-2:       #9aa37c;
  --moss-dark:    #6a7253;

  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans:  "Jost", "Helvetica Neue", Arial, sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-2: cubic-bezier(0.65, 0, 0.35, 1);

  --pad: clamp(1.25rem, 5vw, 2.5rem);
  --maxw: 1280px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html.lenis { scroll-behavior: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
em { font-style: italic; }

::selection { background: var(--moss); color: var(--black); }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }

.section { padding-block: clamp(4.5rem, 12vw, 9rem); position: relative; }

/* ── Eyebrow / shared heads ────────────────── */
.eyebrow {
  font-size: 0.72rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--moss-2); margin-bottom: 1.4rem; display: flex; align-items: center; gap: 0.7rem;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--moss); display: inline-block; }
.eyebrow--center { justify-content: center; }
.eyebrow--center::before { display: none; }

.section__head { margin-bottom: clamp(2.5rem, 6vw, 4rem); }
.section__head--center { text-align: center; }
.section__head--center .eyebrow { justify-content: center; }
.section__title {
  font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(2rem, 6vw, 3.6rem); line-height: 1.08; color: var(--cream);
}
.section__title em { color: var(--greige-2); }
.section__head--split { display: grid; gap: 1.5rem; }
.section__lead { color: var(--cream-dim); max-width: 38ch; font-size: 1rem; }

/* ═══ PRELOADER ═══ */
.preloader {
  position: fixed; inset: 0; z-index: 1000; background: var(--black);
  display: flex; align-items: center; justify-content: center;
}
.preloader__inner { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.preloader__mono {
  font-family: var(--font-serif); font-size: clamp(3rem, 14vw, 6rem);
  letter-spacing: 0.2em; color: var(--greige-2); padding-left: 0.2em;
  animation: breathe 1.6s var(--ease-2) infinite;
}
.preloader__count { font-size: 0.78rem; letter-spacing: 0.3em; color: var(--cream-dim); }
@keyframes breathe { 50% { opacity: 0.45; } }
body.is-loaded .preloader { opacity: 0; visibility: hidden; transition: opacity 0.8s var(--ease), visibility 0.8s; }

/* ═══ GRAIN ═══ */
.grain {
  position: fixed; inset: 0; z-index: 900; pointer-events: none; opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}

/* ═══ CURSOR ═══ */
.cursor, .cursor-dot { display: none; }
@media (hover: hover) and (pointer: fine) {
  .cursor {
    position: fixed; top: 0; left: 0; z-index: 950; width: 46px; height: 46px;
    border: 1px solid var(--greige); border-radius: 50%; pointer-events: none;
    transform: translate(-50%, -50%); transition: width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s, border-color 0.3s; display: block;
    mix-blend-mode: difference;
  }
  .cursor-dot {
    position: fixed; top: 0; left: 0; z-index: 951; width: 5px; height: 5px;
    background: var(--cream); border-radius: 50%; pointer-events: none; transform: translate(-50%, -50%); display: block;
  }
  .cursor.is-hover { width: 70px; height: 70px; background: rgba(168,156,142,0.12); border-color: transparent; }
  .cursor.is-view { width: 96px; height: 96px; background: var(--moss); border-color: transparent; mix-blend-mode: normal; }
  .cursor.is-view::after { content: "Ver"; color: var(--black); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; }
  .cursor.is-hide { opacity: 0; }
  body.has-cursor, body.has-cursor * { cursor: none !important; }
}

/* ═══ WHATSAPP FLOAT ═══ */
.wa-float {
  position: fixed; right: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem); z-index: 800;
  width: 56px; height: 56px; border-radius: 50%; background: var(--moss);
  display: grid; place-items: center; color: var(--black);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4); transition: transform 0.4s var(--ease), background 0.3s;
  transform: translateY(120px);
}
.wa-float.is-in { transform: translateY(0); }
.wa-float:hover { background: var(--moss-2); transform: scale(1.08); }

/* ═══ HEADER / NAV ═══ */
.header {
  position: fixed; top: 0; inset-inline: 0; z-index: 700;
  transition: background 0.5s var(--ease), backdrop-filter 0.5s, border-color 0.5s, padding 0.5s;
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  background: rgba(18,18,17,0.82); backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}
.header.is-hidden { transform: translateY(-100%); transition: transform 0.4s var(--ease); }
.nav { display: flex; align-items: center; justify-content: space-between; padding-block: clamp(1rem, 2.5vw, 1.5rem); }
.nav__logo { display: flex; align-items: center; gap: 0.7rem; }
.nav__mono { font-family: var(--font-serif); font-size: 1.5rem; letter-spacing: 0.16em; color: var(--greige-2); padding-left: 0.16em; }
.nav__name { font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cream); display: none; }
.nav__menu { display: none; gap: clamp(1.4rem, 3vw, 2.6rem); }
.nav__link {
  font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cream-dim);
  position: relative; padding-block: 0.3rem; transition: color 0.3s;
}
.nav__link::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--moss-2); transition: width 0.4s var(--ease); }
.nav__link:hover { color: var(--cream); }
.nav__link:hover::after { width: 100%; }
.header .nav__cta { display: none; }

.nav__burger { display: flex; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav__burger span { width: 26px; height: 1.5px; background: var(--cream); transition: transform 0.4s var(--ease), opacity 0.3s; transform-origin: center; }
body.menu-open .nav__burger span:nth-child(1) { transform: translateY(3.7px) rotate(45deg); }
body.menu-open .nav__burger span:nth-child(2) { transform: translateY(-3.7px) rotate(-45deg); }

/* ═══ MOBILE MENU ═══ */
.mobile-menu {
  position: fixed; inset: 0; z-index: 650; background: var(--black-2);
  display: flex; flex-direction: column; justify-content: center; padding: var(--pad);
  clip-path: inset(0 0 100% 0); transition: clip-path 0.7s var(--ease); visibility: hidden;
}
body.menu-open .mobile-menu { clip-path: inset(0 0 0 0); visibility: visible; }
.mobile-menu__list { display: flex; flex-direction: column; gap: 0.4rem; }
.mobile-menu__link {
  font-family: var(--font-serif); font-size: clamp(2.4rem, 11vw, 3.6rem); color: var(--cream);
  display: flex; align-items: baseline; gap: 1rem; padding-block: 0.4rem; opacity: 0; transform: translateY(30px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), color 0.3s;
}
.mobile-menu__link span { font-family: var(--font-sans); font-size: 0.8rem; color: var(--moss-2); letter-spacing: 0.1em; }
.mobile-menu__link:hover { color: var(--greige-2); }
body.menu-open .mobile-menu__link { opacity: 1; transform: translateY(0); }
body.menu-open .mobile-menu__link:nth-child(1){ transition-delay: 0.15s; }
body.menu-open .mobile-menu__link:nth-child(2){ transition-delay: 0.22s; }
body.menu-open .mobile-menu__link:nth-child(3){ transition-delay: 0.29s; }
body.menu-open .mobile-menu__link:nth-child(4){ transition-delay: 0.36s; }
body.menu-open .mobile-menu__link:nth-child(5){ transition-delay: 0.43s; }
.mobile-menu__foot { margin-top: 3rem; display: flex; gap: 2rem; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cream-dim); }

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem; font-size: 0.82rem; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 1rem 1.8rem; border-radius: 2px; transition: all 0.4s var(--ease);
  position: relative; overflow: hidden; white-space: nowrap;
}
.btn__arrow { transition: transform 0.4s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(5px); }
.btn--solid { background: var(--moss); color: var(--black); }
.btn--solid:hover { background: var(--cream); }
.btn--line, .btn--ghost { border: 1px solid var(--line); color: var(--cream); }
.btn--line:hover, .btn--ghost:hover { border-color: var(--greige); background: rgba(168,156,142,0.07); }
.btn--lg { padding: 1.15rem 2.4rem; font-size: 0.86rem; }

/* ═══ HERO ═══ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; padding-bottom: clamp(3rem, 9vh, 6rem); overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: -1; }
.hero__img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.12); animation: kenburns 18s ease-out forwards; }
@keyframes kenburns { to { transform: scale(1); } }
.hero__veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(18,18,17,0.55) 0%, rgba(18,18,17,0.25) 35%, rgba(18,18,17,0.92) 100%); }
.hero__content { position: relative; }
.hero__eyebrow { font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--greige-2); margin-bottom: 1.5rem; }
.hero__title {
  font-family: var(--font-serif); font-weight: 300; font-size: clamp(2.8rem, 12vw, 8rem);
  line-height: 0.98; letter-spacing: -0.01em; color: var(--cream); margin-bottom: 1.6rem;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .word { display: inline-block; }
.hero__title em { color: var(--greige-2); font-weight: 300; }
.hero__sub { max-width: 46ch; color: var(--cream-dim); font-size: 1.02rem; margin-bottom: 2.2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__side { display: none; }
.hero__scroll { position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.6rem; }
.hero__scroll-line { width: 1px; height: 46px; background: linear-gradient(var(--greige), transparent); position: relative; overflow: hidden; }
.hero__scroll-line::after { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 50%; background: var(--cream); animation: scrolldot 1.8s var(--ease-2) infinite; }
@keyframes scrolldot { 0%{transform:translateY(-100%)} 100%{transform:translateY(200%)} }
.hero__scroll-text { font-size: 0.66rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--cream-dim); }

/* ═══ MARQUEE ═══ */
.marquee { border-block: 1px solid var(--line); padding-block: 1.3rem; overflow: hidden; white-space: nowrap; }
.marquee__track { display: inline-flex; align-items: center; gap: 2.5rem; animation: marquee 28s linear infinite; }
.marquee__track span { font-family: var(--font-serif); font-style: italic; font-size: clamp(1.4rem, 4vw, 2.4rem); color: var(--greige); }
.marquee__track .dot { color: var(--moss-2); font-style: normal; font-size: 0.9rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ═══ MANIFIESTO ═══ */
.manifesto__text { font-family: var(--font-serif); font-weight: 300; font-size: clamp(1.8rem, 6vw, 4rem); line-height: 1.18; color: var(--cream); max-width: 22ch; }
.manifesto__text em { color: var(--moss-2); }
.manifesto__text .m-line { display: block; }
.manifesto__sign { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0.2rem; }
.manifesto__name { font-family: var(--font-serif); font-size: 1.3rem; font-style: italic; color: var(--greige-2); }
.manifesto__role { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--cream-dim); }

/* ═══ SERVICIOS ═══ */
.services__list { border-top: 1px solid var(--line); }
.service {
  display: grid; grid-template-columns: auto 1fr auto; gap: 1.2rem; align-items: start;
  padding-block: clamp(1.6rem, 4vw, 2.6rem); border-bottom: 1px solid var(--line);
  transition: padding-left 0.5s var(--ease); position: relative; will-change: transform;
}
.service::before { content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 0; background: var(--black-2); z-index: -1; transition: width 0.5s var(--ease); }
.service:hover { padding-left: 1.5rem; }
.service:hover::before { width: 100%; }
.service__num { font-size: 0.8rem; letter-spacing: 0.1em; color: var(--moss-2); padding-top: 0.5rem; }
.service__title { font-family: var(--font-serif); font-weight: 400; font-size: clamp(1.5rem, 4.5vw, 2.4rem); color: var(--cream); margin-bottom: 0.5rem; }
.service__desc { color: var(--cream-dim); max-width: 52ch; font-size: 0.96rem; }
.service__plus { font-size: 1.5rem; color: var(--greige); transition: transform 0.5s var(--ease), color 0.3s; }
.service:hover .service__plus { transform: rotate(90deg); color: var(--moss-2); }

/* ═══ PROYECTOS ═══ */
.projects__grid { display: grid; gap: clamp(1rem, 2.5vw, 1.6rem); }
.project { display: block; position: relative; }
.project__media { overflow: hidden; border-radius: 3px; aspect-ratio: 4/3; background: var(--black-2); }
.project--lg .project__media { aspect-ratio: 16/10; }
.project__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease), filter 0.6s; transform: scale(1.02); filter: grayscale(0.3) brightness(0.85); }
.project:hover .project__media img { transform: scale(1.08); filter: grayscale(0) brightness(1); }
.project__meta { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; padding-top: 1.1rem; border-top: 1px solid var(--line); margin-top: 1.1rem; }
.project__name { font-family: var(--font-serif); font-size: clamp(1.3rem, 3.5vw, 1.9rem); color: var(--cream); transition: color 0.3s; }
.project:hover .project__name { color: var(--greige-2); }
.project__tag { font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cream-dim); white-space: nowrap; }

/* ═══ COMPARE (innovador) ═══ */
.compare__frame {
  position: relative; aspect-ratio: 16/10; max-height: 70vh; margin-inline: auto; overflow: hidden;
  border-radius: 3px; user-select: none; touch-action: pan-y; cursor: ew-resize;
}
.compare__img { position: absolute; inset: 0; }
.compare__img img { width: 100%; height: 100%; object-fit: cover; }
.compare__img--before { width: 50%; overflow: hidden; border-right: 2px solid var(--cream); }
.compare__img--before img { width: 100vw; max-width: var(--maxw); }
.compare__label {
  position: absolute; bottom: 1rem; font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.5rem 1rem; background: rgba(18,18,17,0.7); backdrop-filter: blur(6px); border-radius: 2px; color: var(--cream);
}
.compare__label--before { left: 1rem; }
.compare__label--after { right: 1rem; }
.compare__handle {
  position: absolute; top: 0; left: 50%; height: 100%; width: 44px; transform: translateX(-50%);
  display: flex; align-items: center; justify-content: center; cursor: ew-resize;
}
.compare__handle-line { position: absolute; width: 2px; height: 100%; background: var(--cream); }
.compare__handle-grip {
  width: 44px; height: 44px; border-radius: 50%; background: var(--cream); color: var(--black);
  display: grid; place-items: center; font-size: 1.1rem; z-index: 2; box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}

/* ═══ STATS ═══ */
.stats { border-block: 1px solid var(--line); }
.stats__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(2rem, 5vw, 3rem) 1rem; }
.stat { display: flex; flex-direction: column; gap: 0.4rem; }
.stat__num { font-family: var(--font-serif); font-weight: 400; font-size: clamp(2.6rem, 8vw, 4.4rem); line-height: 1; color: var(--greige-2); }
.stat__label { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream-dim); }

/* ═══ PROCESO ═══ */
.process__list { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 3px; overflow: hidden; }
.process__step { background: var(--black); padding: clamp(1.8rem, 5vw, 2.8rem); transition: background 0.4s; }
.process__step:hover { background: var(--black-2); }
.process__num { font-family: var(--font-serif); font-size: 2.4rem; color: var(--moss); display: block; margin-bottom: 1rem; }
.process__title { font-family: var(--font-serif); font-weight: 400; font-size: 1.5rem; color: var(--cream); margin-bottom: 0.6rem; }
.process__desc { color: var(--cream-dim); font-size: 0.94rem; }

/* ═══ ABOUT ═══ */
.about__grid { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.about__media { overflow: hidden; border-radius: 3px; aspect-ratio: 4/5; }
.about__media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.2); transition: transform 1.2s var(--ease); }
.about__media:hover img { transform: scale(1.05); }
.about__title { font-family: var(--font-serif); font-weight: 400; font-size: clamp(1.8rem, 5.5vw, 3rem); line-height: 1.12; color: var(--cream); margin-bottom: 1.5rem; }
.about__title em { color: var(--moss-2); }
.about__text { color: var(--cream-dim); margin-bottom: 1.2rem; max-width: 50ch; }
.about__body .btn { margin-top: 0.8rem; }

/* ═══ QUOTES ═══ */
.quotes__grid { display: grid; gap: clamp(1.5rem, 4vw, 2.5rem); margin-top: 2.5rem; }
.quote { border: 1px solid var(--line); border-radius: 3px; padding: clamp(1.8rem, 5vw, 2.8rem); background: var(--black-2); }
.quote p { font-family: var(--font-serif); font-style: italic; font-size: clamp(1.2rem, 3.5vw, 1.7rem); line-height: 1.4; color: var(--cream); margin-bottom: 1.6rem; }
.quote footer { display: flex; flex-direction: column; gap: 0.1rem; }
.quote__name { color: var(--greige-2); font-size: 0.95rem; letter-spacing: 0.05em; }
.quote__detail { font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cream-dim); }

/* ═══ CTA ═══ */
.cta { position: relative; overflow: hidden; text-align: center; }
.cta__media { position: absolute; inset: 0; z-index: -1; }
.cta__media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.4); }
.cta__veil { position: absolute; inset: 0; background: rgba(18,18,17,0.82); }
.cta__title { font-family: var(--font-serif); font-weight: 300; font-size: clamp(2.2rem, 8vw, 5rem); line-height: 1.05; color: var(--cream); margin-bottom: 1.4rem; }
.cta__sub { color: var(--cream-dim); max-width: 50ch; margin: 0 auto 2.4rem; font-size: 1.02rem; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.cta__contacts { margin-top: 2.6rem; display: flex; flex-wrap: wrap; gap: 0.7rem; justify-content: center; align-items: center; font-size: 0.86rem; letter-spacing: 0.08em; color: var(--cream-dim); }
.cta__contacts a { transition: color 0.3s; }
.cta__contacts a:hover { color: var(--greige-2); }
.cta__sep { color: var(--moss); }

/* ═══ FOOTER ═══ */
.footer { border-top: 1px solid var(--line); padding-block: clamp(3rem, 7vw, 5rem) 2rem; }
.footer__grid { display: grid; gap: 2.5rem; margin-bottom: 3rem; }
.footer__mono { font-family: var(--font-serif); font-size: 2.2rem; letter-spacing: 0.16em; color: var(--greige-2); }
.footer__tag { font-size: 0.82rem; letter-spacing: 0.08em; color: var(--cream-dim); margin-top: 0.6rem; line-height: 1.6; }
.footer__nav { display: flex; flex-direction: column; gap: 0.8rem; }
.footer__nav a, .footer__social a { font-size: 0.84rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cream-dim); transition: color 0.3s; }
.footer__nav a:hover, .footer__social a:hover { color: var(--cream); }
.footer__social { display: flex; flex-direction: column; gap: 0.8rem; }
.footer__base { display: flex; flex-direction: column; gap: 0.6rem; padding-top: 1.8rem; border-top: 1px solid var(--line); font-size: 0.74rem; letter-spacing: 0.06em; color: var(--cream-dim); }

/* ═══ REVEAL (default visible — JS añade animación) ═══ */
.js .reveal, .js .reveal-fade { opacity: 0; }
.js .reveal { transform: translateY(40px); }
.js .reveal-fade { transform: translateY(20px); }

/* ════════════ RESPONSIVE ════════════ */
@media (min-width: 600px) {
  .stats__grid { grid-template-columns: repeat(4, 1fr); }
  .quotes__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__base { flex-direction: row; justify-content: space-between; }
  .cta__contacts { gap: 1.2rem; }
}

@media (min-width: 768px) {
  .nav__name { display: inline; }
  .projects__grid { grid-template-columns: repeat(2, 1fr); }
  .process__list { grid-template-columns: repeat(2, 1fr); }
  .about__grid { grid-template-columns: 0.85fr 1fr; }
  .section__head--split { grid-template-columns: 1fr 1fr; align-items: end; }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .hero__side {
    display: block; position: absolute; top: 50%; font-size: 0.72rem; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--cream-dim);
  }
  .hero__side--left { left: 1.6rem; transform: rotate(-90deg) translateX(50%); transform-origin: left center; }
  .hero__side--right { right: 1.6rem; transform: rotate(90deg) translateX(-50%); transform-origin: right center; }
  .hero__side--right a:hover { color: var(--greige-2); }
}

@media (min-width: 980px) {
  .nav__menu { display: flex; }
  .header .nav__cta { display: inline-flex; }
  .nav__burger { display: none; }
  .process__list { grid-template-columns: repeat(4, 1fr); }
  .projects__grid { grid-template-columns: repeat(2, 1fr); }
  .marquee__track { gap: 3.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
  .js .reveal, .js .reveal-fade { opacity: 1; transform: none; }
  .hero__img { transform: scale(1); }
}
