:root {
  --paper: #eee9df;
  --paper-light: #f7f3eb;
  --ink: #282823;
  --ink-soft: #4b4a43;
  --taupe: #9f917c;
  --olive: #6f7456;
  --sage: #a8aa91;
  --water: #6f8b89;
  --line: rgba(40, 40, 35, .16);
  --white: #fff;
  --container: min(1240px, calc(100% - 48px));
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}

body.locked,
body.modal-open {
  overflow: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(110px, 13vw, 200px) 0;
  scroll-snap-align: start;
}

.section--paper {
  background: var(--paper-light);
}

.section--dark {
  background: var(--ink);
  color: var(--paper-light);
}

.section-index {
  margin-bottom: 22px;
  color: var(--taupe);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.section-index--light {
  color: #c7b99f;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 10000;
  padding: 10px 14px;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
}

.skip-link:focus {
  transform: translateY(0);
}

.hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

/* Entrada */
.entry {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 30px;
  background:
    radial-gradient(circle at 80% 20%, rgba(168,170,145,.24), transparent 34%),
    radial-gradient(circle at 8% 82%, rgba(111,139,137,.15), transparent 31%),
    var(--ink);
  color: var(--paper-light);
  transition: opacity .8s ease, visibility .8s ease;
}

.entry::before {
  content: "";
  position: absolute;
  width: 780px;
  height: 780px;
  top: -370px;
  right: -250px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 50%;
}

.entry::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  left: -210px;
  bottom: -260px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
}

.entry.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.entry__mark {
  position: absolute;
  top: 30px;
  right: 36px;
  color: rgba(255,255,255,.55);
  font-size: .74rem;
  letter-spacing: .14em;
}

.entry__content {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  text-align: center;
}

.entry__logo {
  width: 138px;
  height: 84px;
  margin: 0 auto 30px;
  object-fit: contain;
}

.kicker {
  color: #c7b99f;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.entry h1 {
  margin-bottom: 24px;
  font-size: clamp(4rem, 9vw, 8rem);
  line-height: .88;
  letter-spacing: -.045em;
}

.entry__copy {
  max-width: 570px;
  margin-inline: auto;
  color: rgba(255,255,255,.64);
}

.entry__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}

/* Botones */
.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  transition: transform .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button--dark {
  background: var(--ink);
  color: var(--white);
}

.entry .button--dark {
  background: var(--paper-light);
  color: var(--ink);
}

.button--line-light {
  border-color: rgba(255,255,255,.4);
  background: transparent;
  color: var(--white);
}

.button--light {
  background: var(--paper-light);
  color: var(--ink);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  padding: 12px max(24px, calc((100vw - 1240px) / 2));
  transform: translateY(-110%);
  border-bottom: 1px solid rgba(40,40,35,.09);
  background: rgba(238,233,223,.86);
  backdrop-filter: blur(18px);
  transition: transform .5s ease;
}

.header.is-visible {
  transform: translateY(0);
}

.header__brand img {
  width: 76px;
  height: 46px;
  object-fit: contain;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sound,
.menu-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.sound {
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(40,40,35,.05);
}

.sound[aria-pressed="true"] {
  color: var(--olive);
}

.sound__wave {
  font-size: 1.35rem;
}

.menu-button {
  padding: 0 6px 0 14px;
}

.menu-button i {
  position: relative;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(40,40,35,.2);
  border-radius: 50%;
}

.menu-button i::before,
.menu-button i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1px;
  background: currentColor;
  transform: translate(-50%, -3px);
  transition: transform .25s ease;
}

.menu-button i::after {
  transform: translate(-50%, 3px);
}

.menu-button[aria-expanded="true"] i::before {
  transform: translate(-50%, 0) rotate(45deg);
}

.menu-button[aria-expanded="true"] i::after {
  transform: translate(-50%, 0) rotate(-45deg);
}

/* Menú */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: grid;
  place-items: center;
  padding: 100px 24px 40px;
  opacity: 0;
  visibility: hidden;
  background: rgba(238,233,223,.97);
  backdrop-filter: blur(20px);
  transition: opacity .35s ease, visibility .35s ease;
}

.menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.menu-overlay__inner {
  display: grid;
  width: min(780px, 100%);
}

.menu-overlay a {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(2.1rem, 5vw, 4.8rem);
  line-height: 1;
  text-decoration: none;
}

.menu-overlay a span {
  color: var(--taupe);
  font-family: var(--sans);
  font-size: .7rem;
  letter-spacing: .15em;
}

/* Imágenes */
.editorial-image {
  position: relative;
  overflow: hidden;
  margin: 0;
}

.editorial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(.2,.7,.2,1);
}

.editorial-image:hover img {
  transform: scale(1.025);
}

.editorial-image figcaption {
  margin-top: 10px;
  color: var(--taupe);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* Manifiesto */
.manifesto-scene {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 120px 0 70px;
  scroll-snap-align: start;
}

.scene-grid {
  display: grid;
  grid-template-columns: 1.15fr .7fr;
  gap: clamp(50px, 9vw, 130px);
  align-items: center;
}

.scene-copy h2 {
  max-width: 820px;
  margin-bottom: 40px;
  font-size: clamp(3.8rem, 7.5vw, 8.1rem);
  line-height: .92;
  letter-spacing: -.045em;
}

.word-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--taupe);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.editorial-image--portrait {
  height: min(67vh, 780px);
}

.corner-signature {
  position: absolute;
  right: 34px;
  bottom: 26px;
  color: var(--taupe);
  font-size: .72rem;
  letter-spacing: .14em;
}

.manifesto-scene--view {
  background: var(--paper-light);
}

.view-composition {
  position: relative;
  min-height: 74vh;
}

.view-title {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.view-title h2 {
  margin: 0;
  font-size: clamp(5.5rem, 12vw, 13rem);
  line-height: .72;
  letter-spacing: -.06em;
}

.editorial-image--landscape {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 51%;
  height: 62%;
}

.view-note {
  position: absolute;
  left: 7%;
  bottom: 5%;
  z-index: 3;
  width: min(330px, 38%);
  padding-left: 22px;
  border-left: 1px solid var(--taupe);
}

.manifesto-scene--hearing {
  overflow: hidden;
  color: var(--paper-light);
  background: var(--ink);
}

.scene-background,
.scene-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.scene-background {
  object-fit: cover;
}

.scene-shade {
  background:
    linear-gradient(90deg, rgba(24,25,21,.88), rgba(24,25,21,.22)),
    linear-gradient(to top, rgba(24,25,21,.5), transparent 50%);
}

.hearing-copy {
  position: relative;
  z-index: 2;
}

.hearing-copy h2 {
  max-width: 1000px;
  margin-bottom: 34px;
  font-size: clamp(4.2rem, 8.5vw, 9.5rem);
  line-height: .88;
  letter-spacing: -.05em;
}

.hearing-copy > p:last-child {
  max-width: 600px;
  color: rgba(255,255,255,.72);
  font-size: 1.15rem;
}

.manifesto-scene--statement {
  background:
    radial-gradient(circle at 80% 20%, rgba(168,170,145,.2), transparent 35%),
    var(--paper);
}

.statement-layout h2 {
  margin-bottom: 58px;
  font-size: clamp(5rem, 12vw, 13rem);
  line-height: .78;
  letter-spacing: -.065em;
}

.statement-footer {
  display: flex;
  max-width: 780px;
  justify-content: space-between;
  gap: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--taupe);
  font-size: .82rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.scroll-link {
  display: inline-block;
  margin-top: 60px;
  text-decoration: none;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* Video */
.video-section {
  background: var(--ink);
  color: var(--paper-light);
}

.video-heading {
  display: grid;
  grid-template-columns: .35fr 1fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 60px;
}

.video-heading h2 {
  margin: 0;
  font-size: clamp(3.8rem, 7vw, 7.6rem);
  line-height: .9;
}

.video-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #111;
}

.video-shell video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 10px;
  border: 0;
  background: rgba(10,10,8,.18);
  color: var(--white);
  cursor: pointer;
  text-align: center;
  transition: opacity .25s ease;
}

.video-shell.is-playing .video-play {
  opacity: 0;
  pointer-events: none;
}

.video-play span {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  margin: auto;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 50%;
  background: rgba(0,0,0,.2);
  backdrop-filter: blur(8px);
  font-size: 1.4rem;
}

.video-play small {
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.video-bar {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: flex;
  gap: 8px;
}

.video-bar button {
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  background: rgba(0,0,0,.28);
  color: var(--white);
  cursor: pointer;
  font-size: .7rem;
  backdrop-filter: blur(10px);
}

/* Qué hacemos */
.what-layout {
  display: grid;
  grid-template-columns: 1.05fr .75fr;
  gap: 56px 90px;
  align-items: start;
}

.what-title h2 {
  margin: 0;
  font-size: clamp(4rem, 8vw, 8.5rem);
  line-height: .88;
  letter-spacing: -.05em;
}

.what-image {
  height: 620px;
}

.what-copy {
  grid-column: 1;
  max-width: 720px;
  font-size: clamp(1.4rem, 2.7vw, 2.45rem);
  line-height: 1.35;
}

.what-copy strong {
  color: var(--olive);
  font-weight: 600;
}

.clarity-line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 80px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.clarity-line span {
  padding: 24px 24px 24px 0;
  border-right: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 1.8rem;
}

.clarity-line span:last-child {
  border-right: 0;
  padding-left: 24px;
}

/* Problema */
.problem-layout {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 50px 90px;
}

.problem-title h2 {
  margin: 0;
  font-size: clamp(5rem, 10vw, 11rem);
  line-height: .75;
  letter-spacing: -.06em;
}

.problem-image {
  height: 610px;
}

.problem-copy {
  grid-column: 2;
  max-width: 760px;
  color: rgba(255,255,255,.7);
  font-size: 1.12rem;
}

.sound-contrast {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  margin-top: 45px;
}

.sound-contrast > div {
  display: flex;
  flex-direction: column;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.2);
}

.sound-contrast small {
  margin-bottom: 15px;
  color: #c7b99f;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.sound-contrast span {
  font-family: var(--serif);
  font-size: 1.8rem;
}

.problem-statement {
  grid-column: 1 / -1;
  max-width: 1050px;
  margin: 70px 0 0;
  color: #d9cdbb;
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 6.5rem);
  line-height: .95;
}

/* Espacios */
.spaces-heading {
  max-width: 920px;
  margin-bottom: 60px;
}

.spaces-heading h2 {
  margin: 0;
  font-size: clamp(4rem, 8vw, 8.5rem);
  line-height: .88;
}

.spaces-stage {
  position: relative;
  min-height: 720px;
  overflow: hidden;
}

.spaces-stage > img {
  width: 100%;
  height: 720px;
  object-fit: cover;
}

.space-labels {
  position: absolute;
  inset: 0;
}

.space-labels span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  padding: 9px 14px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255,255,255,.36);
  border-radius: 999px;
  background: rgba(28,28,24,.45);
  color: var(--white);
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

/* Proceso */
.process {
  background: var(--paper);
}

.process-heading {
  display: grid;
  grid-template-columns: .35fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 60px;
}

.process-heading h2 {
  margin: 0;
  font-size: clamp(5rem, 10vw, 11rem);
  line-height: .76;
  letter-spacing: -.06em;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}

.process-item {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 10px 24px;
  min-height: 260px;
  padding: 34px 34px 34px 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-item:nth-child(even) {
  padding-left: 34px;
  border-right: 0;
}

.process-item > span {
  color: var(--taupe);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
}

.process-item h3 {
  margin-bottom: 20px;
  font-size: 2.3rem;
  line-height: 1;
}

.process-item p {
  grid-column: 2;
  max-width: 500px;
  color: var(--ink-soft);
}

.process-image {
  height: 590px;
  margin-top: 70px;
}

.process-closing {
  margin: 100px 0 0;
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 7vw, 7.2rem);
  line-height: .92;
}

.process-closing strong {
  color: var(--olive);
  font-weight: 500;
}

/* Rescate */
.rescue-layout {
  display: grid;
  grid-template-columns: 1.05fr .7fr;
  gap: 90px;
  align-items: center;
}

.rescue-image {
  height: 690px;
}

.rescue-copy h2 {
  margin: 0 0 40px;
  font-size: clamp(5rem, 10vw, 10.5rem);
  line-height: .75;
  letter-spacing: -.06em;
}

.rescue-copy > p:last-child {
  max-width: 560px;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

/* Día */
.day-section {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 130px 0 85px;
  color: var(--white);
  scroll-snap-align: start;
}

.day-section__image,
.day-section__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.day-section__image {
  object-fit: cover;
}

.day-section__shade {
  background:
    linear-gradient(to top, rgba(20,22,17,.9), rgba(20,22,17,.06) 60%),
    linear-gradient(90deg, rgba(20,22,17,.52), transparent 65%);
}

.day-section__content {
  position: relative;
  z-index: 2;
}

.day-section h2 {
  max-width: 1050px;
  margin-bottom: 55px;
  font-size: clamp(4rem, 8vw, 8.5rem);
  line-height: .88;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  max-width: 1080px;
  margin-bottom: 45px;
  padding-top: 27px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 5px;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(255,255,255,.48);
}

.timeline span {
  position: relative;
  font-size: .67rem;
  letter-spacing: .11em;
  text-align: center;
  text-transform: uppercase;
}

.timeline span::before {
  content: "";
  position: absolute;
  top: -26px;
  left: 50%;
  width: 9px;
  height: 9px;
  transform: translateX(-50%);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 50%;
  background: #566049;
}

.day-copy {
  max-width: 750px;
  color: rgba(255,255,255,.74);
  font-size: 1.12rem;
}

.day-signature {
  margin: 28px 0 0;
  color: #d9cdbb;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  line-height: 1;
}

/* Valor */
.value-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px 90px;
  align-items: start;
}

.value-title h2 {
  margin: 0;
  font-size: clamp(5rem, 10vw, 10.5rem);
  line-height: .75;
  letter-spacing: -.06em;
}

.value-number {
  padding-top: 55px;
}

.value-number strong {
  display: block;
  margin-bottom: 18px;
  color: var(--olive);
  font-family: var(--serif);
  font-size: clamp(4.5rem, 9vw, 9rem);
  font-weight: 500;
  line-height: .8;
}

.value-number p {
  max-width: 500px;
}

.value-number small {
  color: var(--taupe);
}

.value-image {
  grid-column: 1;
  height: 590px;
}

.value-statement {
  align-self: end;
  margin: 0;
  font-size: clamp(3rem, 6vw, 6.2rem);
  line-height: .88;
}

.value-benefits {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.value-benefits span {
  padding: 24px 18px 24px 0;
  border-right: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 1.75rem;
}

.value-benefits span:not(:first-child) {
  padding-left: 18px;
}

.value-benefits span:last-child {
  border-right: 0;
}

/* Aplicaciones */
.applications-layout {
  display: grid;
  grid-template-columns: .8fr 1.1fr;
  gap: 60px 90px;
  align-items: start;
}

.applications-copy h2 {
  margin: 0;
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: .88;
}

.applications-image {
  height: 620px;
}

.application-list {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 20px;
  border-top: 1px solid rgba(255,255,255,.2);
}

.application-list span {
  padding: 24px 24px 24px 0;
  border-right: 1px solid rgba(255,255,255,.2);
  border-bottom: 1px solid rgba(255,255,255,.2);
  font-family: var(--serif);
  font-size: 2.2rem;
}

.application-list span:nth-child(even) {
  padding-left: 24px;
  border-right: 0;
}

/* Proyectos */
.project {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 130px 0 80px;
  scroll-snap-align: start;
}

.project--cactus {
  background: var(--paper-light);
}

.project--turia {
  background: var(--ink);
  color: var(--paper-light);
}

.project-layout {
  display: grid;
  grid-template-columns: .7fr 1.15fr;
  gap: 90px;
  align-items: center;
}

.project-layout--reverse {
  grid-template-columns: 1.15fr .7fr;
}

.project-copy h2 {
  margin: 0 0 36px;
  font-size: clamp(5.5rem, 11vw, 12rem);
  line-height: .72;
  letter-spacing: -.06em;
}

.project-image {
  height: min(76vh, 780px);
}

.text-link {
  display: inline-block;
  margin-top: 30px;
  padding-bottom: 8px;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link--light {
  color: var(--paper-light);
}

/* Equipo */
.team-title h2 {
  margin: 0 0 70px;
  font-size: clamp(5rem, 10vw, 10.5rem);
  line-height: .74;
  letter-spacing: -.06em;
}

.team-composition {
  position: relative;
  min-height: 990px;
}

.person {
  position: absolute;
}

.person img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.person h3 {
  margin: 24px 0 14px;
  font-size: 2.8rem;
  line-height: 1;
}

.person p {
  color: var(--ink-soft);
}

.person small {
  color: var(--taupe);
}

.person--primary {
  top: 0;
  left: 0;
  width: 58%;
}

.person--primary img {
  height: 590px;
}

.person--secondary {
  right: 0;
  bottom: 0;
  width: 37%;
}

.person--secondary img {
  height: 440px;
}

/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 90px;
}

.faq-title h2 {
  margin: 0;
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: .88;
}

.accordion details {
  padding: 25px 0;
  border-top: 1px solid var(--line);
}

.accordion details:last-child {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  position: relative;
  padding-right: 42px;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1.1;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::after {
  content: "+";
  position: absolute;
  top: 0;
  right: 0;
  color: var(--taupe);
}

.accordion details[open] summary::after {
  content: "−";
}

.accordion p {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--ink-soft);
}

/* Contacto */
.contact {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 130px 0 80px;
  color: var(--white);
  scroll-snap-align: start;
}

.contact__image,
.contact__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.contact__image {
  object-fit: cover;
}

.contact__shade {
  background:
    linear-gradient(90deg, rgba(21,23,18,.92), rgba(21,23,18,.28)),
    linear-gradient(to top, rgba(21,23,18,.45), transparent);
}

.contact__content {
  position: relative;
  z-index: 2;
}

.contact h2 {
  margin: 0 0 42px;
  font-size: clamp(5.5rem, 11vw, 12rem);
  line-height: .72;
  letter-spacing: -.06em;
}

.contact__lead {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.contact__statement {
  margin: 32px 0 38px;
  color: #d9cdbb;
  font-size: 1.12rem;
}

.contact__direct {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 34px;
}

.contact__direct a {
  text-decoration: none;
}

/* Footer */
.footer {
  padding: 28px 0;
  background: #1c1d19;
  color: rgba(255,255,255,.64);
}

.footer__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.footer img {
  width: 70px;
  height: 44px;
  object-fit: contain;
}

.footer p {
  margin: 0;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: grid;
  place-items: center;
  padding: 18px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(20,21,18,.72);
  backdrop-filter: blur(12px);
}

.modal__panel {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
  max-height: calc(100svh - 36px);
  overflow-y: auto;
  padding: clamp(30px, 6vw, 64px);
  background: var(--paper-light);
}

.modal__close {
  position: absolute;
  top: 18px;
  right: 20px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 2rem;
}

.modal h2 {
  margin: 0 0 36px;
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: .88;
}

.modal label {
  display: block;
  margin-bottom: 18px;
  color: var(--taupe);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.modal input,
.modal textarea {
  width: 100%;
  margin-top: 7px;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  text-transform: none;
}

.modal textarea {
  resize: vertical;
}

/* Aparición */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s ease, transform .9s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 980px) {
  html {
    scroll-snap-type: none;
  }

  .scene-grid,
  .what-layout,
  .problem-layout,
  .process-heading,
  .rescue-layout,
  .value-layout,
  .applications-layout,
  .project-layout,
  .project-layout--reverse,
  .faq-layout,
  .video-heading {
    grid-template-columns: 1fr;
  }

  .editorial-image--portrait,
  .what-image,
  .problem-image,
  .process-image,
  .rescue-image,
  .applications-image,
  .project-image {
    height: 560px;
  }

  .view-composition {
    min-height: auto;
  }

  .editorial-image--landscape,
  .view-note {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
  }

  .editorial-image--landscape {
    height: 520px;
    margin-top: 45px;
  }

  .view-note {
    margin-top: 28px;
  }

  .what-copy,
  .problem-copy {
    grid-column: auto;
  }

  .value-image,
  .value-benefits,
  .application-list {
    grid-column: auto;
  }

  .process-heading {
    gap: 20px;
  }

  .team-composition {
    display: grid;
    min-height: auto;
    gap: 50px;
  }

  .person {
    position: relative;
    width: 100%;
  }

  .person--primary img,
  .person--secondary img {
    height: 560px;
  }
}

@media (max-width: 700px) {
  :root {
    --container: min(100% - 28px, 1240px);
  }

  .header {
    min-height: 66px;
    padding-inline: 14px;
  }

  .sound__text,
  .menu-button span {
    display: none;
  }

  .entry__actions {
    display: grid;
  }

  .entry__actions .button {
    width: 100%;
  }

  .manifesto-scene,
  .project,
  .contact {
    min-height: auto;
    padding: 110px 0 70px;
  }

  .scene-copy h2,
  .hearing-copy h2,
  .what-title h2,
  .spaces-heading h2,
  .applications-copy h2,
  .faq-title h2 {
    font-size: clamp(3.4rem, 16vw, 5.4rem);
  }

  .view-title h2,
  .statement-layout h2,
  .problem-title h2,
  .process-heading h2,
  .rescue-copy h2,
  .value-title h2,
  .project-copy h2,
  .team-title h2,
  .contact h2 {
    font-size: clamp(4rem, 20vw, 7rem);
  }

  .clarity-line,
  .value-benefits,
  .application-list,
  .process-list,
  .sound-contrast {
    grid-template-columns: 1fr;
  }

  .clarity-line span,
  .value-benefits span,
  .application-list span,
  .process-item,
  .process-item:nth-child(even) {
    padding: 22px 0;
    border-right: 0;
  }

  .process-item {
    grid-template-columns: 42px 1fr;
  }

  .spaces-stage,
  .spaces-stage > img {
    min-height: 620px;
    height: 620px;
  }

  .space-labels {
    position: relative;
    inset: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
  }

  .space-labels span {
    position: static;
    transform: none;
    border-color: var(--line);
    background: transparent;
    color: var(--ink);
  }

  .timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 35px 0;
  }

  .timeline::before {
    display: none;
  }

  .timeline span {
    padding-top: 18px;
  }

  .timeline span::before {
    top: 0;
  }

  .video-shell {
    aspect-ratio: 4 / 3;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer img {
    margin-inline: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
