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

/* ==========================================================================
   Variables de diseño: colores, tipografía y movimiento
   ========================================================================== */
:root {
  --red: #e52329;
  --red-dark: #be1820;
  --ink: #181a1b;
  --muted: #606569;
  --paper: #f4f5f3;
  --line: #d7d9d6;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* ==========================================================================
   Estilos base y accesibilidad
   ========================================================================== */
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  font-family: Manrope, Arial, sans-serif;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
  background: #fff;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
}
button {
  color: inherit;
}
::selection {
  background: var(--red);
  color: white;
}
:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 5px;
}
.wrap {
  width: min(1280px, 88%);
  margin-inline: auto;
}

/* ==========================================================================
   Cabecera y navegación
   ========================================================================== */
.header {
  height: 100px;
  padding: 0 4.2%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid #e9e9e9;
}
.brand {
  width: 223px;
  flex-shrink: 0;
}
.brand img {
  height: auto;
}
.header nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 700;
}
.header nav > a {
  position: relative;
  padding: 12px 0;
}
.header nav > a:after {
  content: "";
  height: 2px;
  background: var(--red);
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 0;
  transition: width 0.25s;
}
.header nav > a:hover:after,
.header nav > a.active:after {
  width: 100%;
}
.header .report-nav {
  border-left: 1px solid var(--line);
  padding-left: 28px;
  margin-left: 8px;
  font-size: 13px;
}
.report-nav span {
  color: var(--red);
  margin-left: 12px;
}
.menu-toggle {
  display: none;
}
.skip {
  position: fixed;
  left: 20px;
  top: -100px;
  z-index: 100;
  background: white;
  padding: 12px;
}
.skip:focus {
  top: 10px;
}

/* ==========================================================================
   Inicio: video de fondo y contenido principal
   ========================================================================== */
.hero {
  height: calc(100svh - 100px);
  min-height: 650px;
  max-height: 960px;
  position: relative;
  color: #fff;
  overflow: hidden;
  background: #242a2b;
}
.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}
.hero-media {
  overflow: hidden;
}
.hero-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 52%;
}
.hero-media iframe {
  position: absolute;
  left: 50%;
  top: 50%;
  width: max(100vw, 177.78vh);
  height: max(56.25vw, 100vh);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 1.2s;
  pointer-events: none;
}
.hero-media.playing iframe {
  opacity: 1;
}
.hero-shade {
  background:
    linear-gradient(
      90deg,
      rgba(8, 17, 22, 0.78) 0%,
      rgba(8, 17, 22, 0.4) 65%,
      rgba(8, 17, 22, 0.22)
    ),
    linear-gradient(0deg, rgba(8, 17, 22, 0.68), transparent 45%);
}
.hero-content {
  position: relative;
  padding-top: clamp(70px, 12vh, 150px);
  z-index: 2;
}
.eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 28px;
}
.eyebrow:before {
  content: "";
  height: 2px;
  width: 30px;
  background: var(--red);
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-weight: 600;
  font-size: clamp(70px, 7.8vw, 120px);
  letter-spacing: -1.6px;
  line-height: 0.98;
  margin-bottom: 30px;
}
h1 em {
  font-style: normal;
  color: #ff4449;
}
.hero-description {
  font-size: 17px;
  line-height: 1.75;
  color: #e4e6e6;
  margin-bottom: 32px;
}
.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding: 16px 25px;
  font-size: 14px;
  font-weight: 800;
  border: 1px solid transparent;
  transition:
    background 0.25s,
    transform 0.25s;
}
.button:hover {
  transform: translateY(-3px);
}
.button span {
  font-size: 23px;
  font-weight: 500;
  line-height: 1;
}
.red {
  background: var(--red);
  color: #fff;
}
.red:hover {
  background: var(--red-dark);
}
.hero-bottom {
  position: absolute;
  bottom: 30px;
  left: 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #ffffff38;
  padding-top: 22px;
  font-size: 12px;
  z-index: 3;
}
.scroll-cue {
  display: flex;
  align-items: center;
  gap: 13px;
}
.scroll-cue > span {
  font-size: 23px;
}
.hero-location {
  letter-spacing: 1.8px;
}
.hero-location span {
  margin-left: 24px;
  color: #d0d2d3;
  font-size: 11px;
}
.video-toggle {
  background: transparent;
  border: 1px solid #ffffff70;
  padding: 8px 12px;
  font-size: 12px;
}
.video-toggle[hidden] {
  display: none;
}

/* ==========================================================================
   Secciones y tipografía compartida
   ========================================================================== */
.section {
  padding-top: 100px;
  padding-bottom: 100px;
}
.section-label {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.6px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
  margin-bottom: 55px;
}
.section-label > span:last-child {
  color: var(--muted);
  font-size: 11px;
}
h2 {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(46px, 5vw, 72px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.8px;
}
.text-red {
  color: var(--red);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11%;
}
.intro-copy {
  padding-top: 8px;
  color: var(--muted);
}
.lead {
  font-size: 24px;
  line-height: 1.45;
  color: var(--ink);
  font-weight: 600;
}
.text-link {
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  display: inline-flex;
  gap: 35px;
  align-items: center;
  border-bottom: 1px solid var(--ink);
  padding: 8px 0;
}
.text-link span {
  color: var(--red);
  font-size: 22px;
}

/* ==========================================================================
   Pie de página
   ========================================================================== */
.footer {
  background: var(--ink);
  color: white;
  padding: 35px 0;
}

/* ==========================================================================
   Animaciones de entrada
   ========================================================================== */
.reveal {
  opacity: 1;
}
.motion .reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.motion .reveal.visible {
  opacity: 1;
  transform: none;
}

/* Adaptación responsive: (min-width: 1700px) */
@media (min-width: 1700px) {
  .hero-bottom {
    left: calc((100% - 1280px) / 2);
  }
}

/* Adaptación responsive: (max-width: 1100px) */
@media (max-width: 1100px) {
  .header nav {
    gap: 19px;
  }
  .brand {
    width: 180px;
  }
  .header .report-nav {
    padding-left: 18px;
    margin-left: 0;
  }
  .hero-location span {
    display: none;
  }
}

/* Adaptación responsive: (max-width: 850px) */
@media (max-width: 850px) {
  .header {
    height: 80px;
    padding: 0 6%;
  }
  .brand {
    width: 185px;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 7px;
    background: none;
    border: 0;
    padding: 14px 0 14px 14px;
  }
  .menu-toggle span {
    width: 26px;
    height: 2px;
    background: var(--ink);
    transition: transform 0.25s;
  }
  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
  }
  .header nav {
    display: none;
    position: absolute;
    top: 79px;
    left: 0;
    width: 100%;
    background: white;
    padding: 25px 6% 35px;
    box-shadow: 0 20px 25px #0001;
  }
  .header nav.open {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 6px;
  }
  .header nav > a {
    font-size: 18px;
    padding: 10px 0;
  }
  .header .report-nav {
    border: 0;
    border-top: 1px solid var(--line);
    padding-top: 20px;
    margin-top: 10px;
  }
  .hero {
    height: calc(100svh - 80px);
    min-height: 650px;
  }
  .hero-content {
    padding-top: 100px;
  }
  h1 {
    font-size: 82px;
  }
  .hero-bottom {
    bottom: 24px;
  }
  .hero-location {
    display: none;
  }
  .section {
    padding-block: 72px;
  }
  .intro-grid {
    gap: 7%;
  }
  .lead {
    font-size: 21px;
  }
  .section-label > span:last-child {
    display: none;
  }
  h2 {
    font-size: 55px;
  }
}

/* Adaptación responsive: (max-width: 560px) */
@media (max-width: 560px) {
  html {
    scroll-padding-top: 90px;
  }
  .hero {
    min-height: 650px;
    max-height: 900px;
  }
  .hero-content {
    padding-top: 90px;
  }
  .eyebrow {
    font-size: 10px;
    letter-spacing: 1.1px;
    gap: 10px;
  }
  .eyebrow:before {
    width: 20px;
  }
  h1 {
    font-size: clamp(55px, 13.5vw, 76px);
    letter-spacing: -0.7px;
    line-height: 1.02;
  }
  .hero-description {
    font-size: 15px;
    max-width: 320px;
  }
  .desktop-break {
    display: none;
  }
  .hero-poster {
    object-position: 40% center;
  }
  .hero-shade {
    background:
      linear-gradient(90deg, #091319d9, #09131966), linear-gradient(0deg, #09131999, transparent);
  }
  .button {
    padding: 15px 20px;
    gap: 24px;
  }
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  h2 {
    font-size: 50px;
  }
  .section-label {
    margin-bottom: 35px;
  }
  .section {
    padding-block: 60px;
  }
  .hero-bottom {
    font-size: 11px;
  }
  .hero-bottom .video-toggle {
    font-size: 10px;
  }
  .lead {
    font-size: 22px;
  }
}

/* ==========================================================================
   Nosotros: cifras y experiencia
   ========================================================================== */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-bottom: 90px;
}
.stat {
  border-left: 1px solid var(--line);
  padding-left: 40px;
}
.stat:first-child {
  padding-left: 0;
  border: 0;
}
.stat strong {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 88px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -2px;
}
.stat strong span {
  color: var(--red);
  font-size: 60px;
}
.stat p {
  font-size: 14px;
  color: var(--muted);
  margin: 12px 0 0;
}

/* ==========================================================================
   Nosotros: fotografía y compromiso
   ========================================================================== */
.about-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 470px;
}
.about-photo {
  overflow: hidden;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.about-photo:hover img {
  transform: scale(1.04);
}
.about-statement {
  background: var(--red);
  color: white;
  padding: 70px max(45px, 8vw) 60px 60px;
}
.about-statement .eyebrow:before {
  background: white;
}
.about-statement h3 {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 43px;
  font-weight: 500;
  line-height: 1.1;
}
.about-statement > p:not(.eyebrow) {
  font-size: 15px;
  color: #fff;
  line-height: 1.8;
}
.about-statement details {
  border-top: 1px solid #ffffff60;
  padding-top: 14px;
  margin-top: 25px;
}
.about-statement summary {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
}
.about-statement details p {
  padding-top: 15px;
  font-size: 14px;
}
.about-statement details[open] summary span {
  transform: rotate(45deg);
}

/* ==========================================================================
   Proyectos: tarjetas y galería
   ========================================================================== */
.projects {
  background: var(--paper);
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 45px;
}
.section-heading h2 {
  margin: 0;
}
.section-heading p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 5px;
}
.project-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 20px;
}
.project-card {
  position: relative;
  min-height: 430px;
  padding: 0;
  border: 0;
  overflow: hidden;
  text-align: left;
  color: #fff;
  background: var(--ink);
  isolation: isolate;
}
.project-card img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition:
    transform 1s var(--ease),
    filter 0.8s;
  filter: saturate(0.75);
}
.project-card:hover img {
  transform: scale(1.055);
  filter: saturate(1);
}
.project-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #07111de8 0%, #07111d55 50%, #07111d05 100%);
}
.project-info {
  position: absolute;
  left: 25px;
  right: 25px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
}
.tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
}
.tag:before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 2px;
  background: var(--red);
  margin-right: 9px;
  vertical-align: middle;
}
.project-title {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-weight: 500;
  font-size: 35px;
  line-height: 1.08;
  margin-bottom: 14px;
}
.project-main .project-title {
  font-size: 42px;
}
.project-caption {
  font-size: 11px;
  line-height: 1.6;
  max-width: 85%;
  color: #e0e3e5;
}
.project-arrow {
  position: absolute;
  right: 22px;
  top: 22px;
  width: 40px;
  height: 40px;
  border: 1px solid #ffffff70;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 22px;
  transition:
    background 0.25s,
    transform 0.25s;
}
.project-card:hover .project-arrow {
  background: var(--red);
  border-color: var(--red);
  transform: rotate(45deg);
}
.project-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  gap: 25px;
}
.project-more p {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}
.project-more button {
  background: none;
  border: 0;
  border-bottom: 1px solid var(--ink);
  white-space: nowrap;
}
.secondary-projects {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 30px;
}
.secondary-projects[hidden] {
  display: none;
}
.secondary-projects .project-card {
  min-height: 340px;
}

/* ==========================================================================
   Servicios: listado desplegable
   ========================================================================== */
.services {
  background: #191d1f;
  color: white;
}
.services .section-label {
  border-color: #ffffff30;
}
.services .section-label > span:last-child {
  color: #aeb3b5;
}
.services-layout {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 10%;
}
.services-intro {
  position: sticky;
  top: 140px;
  align-self: start;
}
.services-intro h2 {
  font-size: 76px;
}
.services-intro p {
  font-size: 15px;
  color: #b6bdc0;
  max-width: 280px;
}
.services-intro .button {
  margin-top: 20px;
}
.service-list details {
  border-top: 1px solid #ffffff38;
}
.service-list details:last-child {
  border-bottom: 1px solid #ffffff38;
}
.service-list summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px 0;
  cursor: pointer;
}
.service-list summary::-webkit-details-marker {
  display: none;
}
.service-number {
  color: #fa494f;
  font-size: 12px;
  align-self: flex-start;
  padding-top: 7px;
  min-width: 25px;
}
.service-list h3 {
  font-size: 25px;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}
.expand {
  margin-left: auto;
  font-size: 30px;
  font-weight: 400;
  color: #abb0b2;
  transition: transform 0.3s;
}
.service-list details[open] .expand {
  transform: rotate(45deg);
  color: #ff494f;
}
.service-body {
  padding: 0 40px 30px 45px;
  color: #b6bdc0;
  font-size: 15px;
}
.service-body .text-link {
  color: white;
  border-color: #73797c;
  font-size: 12px;
}

/* ==========================================================================
   Contacto: información y formularios
   ========================================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 9%;
}
.contact-copy > p {
  color: var(--muted);
  max-width: 350px;
  font-size: 15px;
}
.contact-copy h2 {
  font-size: 67px;
}
.contact-details {
  margin-top: 45px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.contact-details > a,
.contact-details > div {
  font-size: 16px;
  line-height: 1.6;
}
.contact-details small {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.6px;
  color: var(--muted);
  margin-bottom: 6px;
}
.contact-details > a > span {
  margin-left: 12px;
  color: var(--red);
}
.form-intro {
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
  margin-bottom: 27px;
}
.form-intro span {
  font-size: 10px;
  font-weight: 400;
  color: var(--muted);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 20px;
}
.form-grid > label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
}
.form-grid .full {
  grid-column: 1/-1;
}
.form-grid input,
.form-grid textarea,
.form-grid select {
  width: 100%;
  min-width: 0;
  border: 1px solid #d9dcd9;
  background: var(--paper);
  padding: 13px 14px;
  color: var(--ink);
  border-radius: 0;
  font-size: 14px;
  font-weight: 400;
  transition:
    border-color 0.25s,
    background 0.25s;
}
.form-grid input,
.form-grid select {
  height: 51px;
}
.form-grid input:focus,
.form-grid textarea:focus,
.form-grid select:focus {
  border-color: var(--red);
  outline: 1px solid var(--red);
  outline-offset: 0;
  background: white;
}
.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: #747a7c;
}
.form-grid textarea {
  resize: vertical;
  min-height: 130px;
}
.form-grid small {
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
}
.check-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 24px 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}
.check-label input {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  accent-color: var(--red);
  margin: 2px 0 0;
}
.submit {
  width: 100%;
  justify-content: space-between;
}
.submit:disabled {
  opacity: 0.6;
  cursor: wait;
}
.form-status {
  margin: 15px 0 0;
  font-size: 13px;
  line-height: 1.6;
}
.form-status:not(:empty) {
  background: #f1f3f1;
  padding: 18px;
  border-left: 3px solid var(--red);
}
.email-fallback {
  font-size: 13px;
  text-decoration: underline;
}
.honey {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ==========================================================================
   Acceso al canal de denuncias
   ========================================================================== */
.ethics-strip {
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: 38px 0;
}
.ethics-strip .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.ethics-strip .eyebrow {
  font-size: 10px;
  margin-bottom: 10px;
}
.ethics-strip p {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
}
.ethics-strip a {
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 35px;
}
.ethics-strip a span {
  color: var(--red);
  font-size: 30px;
}
.footer {
  padding: 50px 0 22px;
  background: #111618;
}
.footer-top {
  display: flex;
  align-items: center;
  gap: 80px;
  padding-bottom: 42px;
}
.footer-brand {
  display: block;
  width: 210px;
  background: white;
  padding: 10px;
}
.footer-top p {
  font-size: 14px;
  color: #b2b8bb;
  margin: 0;
  line-height: 1.7;
}
.back-top {
  margin-left: auto;
  font-size: 12px;
  display: flex;
  gap: 24px;
  align-items: center;
}
.back-top span {
  font-size: 24px;
  color: #ff484d;
}
.footer-bottom {
  border-top: 1px solid #ffffff22;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #a5adaf;
  font-size: 10px;
}

/* ==========================================================================
   Página independiente del canal de denuncias
   ========================================================================== */
.report-hero {
  position: relative;
  padding: 38px 0 65px;
  background: #191d1f;
  color: white;
  overflow: hidden;
}
.breadcrumb {
  display: inline-block;
  font-size: 12px;
  color: #c5cbcd;
  margin-bottom: 52px;
}
.report-hero h1 {
  font-size: 88px;
}
.report-hero > div > p:last-child {
  color: #c5cbcd;
  margin-bottom: 0;
  font-size: 17px;
}
.report-hero-line {
  position: absolute;
  right: 13%;
  top: 0;
  height: 100%;
  width: 2px;
  background: #e523293b;
  transform: skew(-20deg);
}
.report-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 10%;
}
.report-explanation h2 {
  font-size: 58px;
}
.report-explanation > p {
  font-size: 15px;
  color: var(--muted);
}
.report-note {
  border-top: 1px solid var(--line);
  margin-top: 26px;
  padding-top: 24px;
}
.report-note h3 {
  font-size: 16px;
  margin-bottom: 8px;
}
.report-note p {
  font-size: 14px;
  color: var(--muted);
}
.report-explanation .report-other {
  font-size: 13px;
  margin-top: 30px;
}
.report-other a {
  color: var(--red);
  text-decoration: underline;
}
.report-form {
  background: var(--paper);
  padding: 40px;
  align-self: start;
  border-top: 3px solid var(--red);
}
.report-form input,
.report-form select,
.report-form textarea {
  background: white;
}
.form-heading h3 {
  font-size: 25px;
  margin-bottom: 5px;
}
.form-heading p {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 30px;
}

/* ==========================================================================
   Ventana de detalle de proyectos
   ========================================================================== */
dialog {
  padding: 0;
  border: 0;
  width: min(840px, 90%);
  max-height: 90svh;
  overflow: auto;
  box-shadow: 0 20px 100px #0006;
}
dialog::backdrop {
  background: #091115bb;
  backdrop-filter: blur(5px);
}
dialog > img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.dialog-close {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  background: white;
  color: var(--ink);
  font-size: 30px;
  z-index: 2;
}
.dialog-copy {
  padding: 38px;
}
.dialog-copy h2 {
  font-size: 42px;
}
.dialog-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 15px;
}
body:has(dialog[open]) {
  overflow: hidden;
}
.hero-content {
  animation: hero-enter 1s var(--ease) both;
}
@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--red);
  z-index: 50;
  pointer-events: none;
}

/* Adaptación responsive: (max-width: 1100px) */
@media (max-width: 1100px) {
  .project-grid {
    gap: 14px;
  }
  .project-title {
    font-size: 29px;
  }
  .project-main .project-title {
    font-size: 35px;
  }
  .project-info {
    left: 20px;
    right: 20px;
  }
  .section-heading {
    gap: 25px;
  }
  .section-heading p {
    max-width: 300px;
  }
  .contact-copy h2 {
    font-size: 58px;
  }
  .about-statement {
    padding: 50px 40px;
  }
  .contact-layout {
    gap: 6%;
  }
  .report-layout {
    gap: 6%;
  }
  .report-form {
    padding: 28px;
  }
  .contact-details > a {
    font-size: 14px;
  }
}

/* Adaptación responsive: (max-width: 850px) */
@media (max-width: 850px) {
  .stats {
    padding-bottom: 65px;
  }
  .stat {
    padding-left: 25px;
  }
  .stat strong {
    font-size: 70px;
  }
  .stat strong span {
    font-size: 45px;
  }
  .stat p {
    font-size: 12px;
  }
  .about-statement {
    padding: 40px 30px;
  }
  .about-statement h3 {
    font-size: 34px;
  }
  .about-statement .eyebrow {
    font-size: 10px;
  }
  .section-heading {
    display: block;
  }
  .section-heading p {
    max-width: none;
    margin-top: 25px;
  }
  .project-grid {
    grid-template-columns: 1fr 1fr;
  }
  .project-main {
    grid-column: 1/-1;
  }
  .project-card {
    min-height: 370px;
  }
  .project-main {
    min-height: 450px;
  }
  .project-title {
    font-size: 35px;
  }
  .project-main .project-title {
    font-size: 46px;
  }
  .project-more {
    align-items: flex-start;
  }
  .project-more p {
    max-width: 320px;
  }
  .secondary-projects {
    grid-template-columns: 1fr 1fr;
  }
  .services-layout {
    gap: 7%;
    grid-template-columns: 0.8fr 1.2fr;
  }
  .services-intro h2 {
    font-size: 60px;
  }
  .service-list h3 {
    font-size: 22px;
  }
  .service-list summary {
    gap: 14px;
  }
  .service-body {
    padding-left: 39px;
    padding-right: 0;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .contact-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 28px;
  }
  .contact-details > div {
    grid-column: 1/-1;
  }
  .contact-copy h2 {
    font-size: 60px;
  }
  .contact-copy > p {
    max-width: 450px;
  }
  .footer-top {
    gap: 35px;
  }
  .footer-bottom {
    flex-wrap: wrap;
  }
  .report-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .report-explanation {
    max-width: 650px;
  }
  .report-note {
    display: inline-block;
    width: 46%;
    vertical-align: top;
    margin-right: 3%;
  }
  .report-hero h1 {
    font-size: 78px;
  }
  .ethics-strip .wrap {
    gap: 20px;
  }
  .ethics-strip a {
    max-width: 240px;
    gap: 20px;
  }
}

/* Adaptación responsive: (max-width: 560px) */
@media (max-width: 560px) {
  .stats {
    gap: 18px;
    grid-template-columns: 1fr;
    padding-bottom: 55px;
  }
  .stat,
  .stat:first-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    border: 0;
    border-top: 1px solid var(--line);
    gap: 20px;
  }
  .stat strong {
    font-size: 68px;
    flex-shrink: 0;
  }
  .stat p {
    text-align: right;
    max-width: 160px;
    font-size: 13px;
    margin: 0;
  }
  .about-band {
    grid-template-columns: 1fr;
  }
  .about-photo {
    height: 290px;
  }
  .about-statement {
    padding: 40px 6%;
  }
  .about-statement h3 {
    font-size: 40px;
  }
  .section-heading h2 {
    font-size: 47px;
  }
  .section-heading p {
    font-size: 14px;
  }
  .section-heading p br {
    display: none;
  }
  .project-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .project-card,
  .project-main {
    min-height: 410px;
    grid-column: auto;
  }
  .project-main .project-title {
    font-size: 40px;
  }
  .project-title {
    font-size: 38px;
  }
  .project-info {
    left: 25px;
    bottom: 30px;
  }
  .project-caption {
    font-size: 12px;
  }
  .project-more {
    flex-direction: column;
    gap: 20px;
  }
  .project-more p {
    max-width: none;
  }
  .services-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .services-intro {
    position: static;
  }
  .services-intro h2 {
    font-size: 58px;
  }
  .services-intro p {
    max-width: none;
  }
  .services-intro .button {
    margin-top: 10px;
  }
  .service-list h3 {
    font-size: 23px;
  }
  .service-list summary {
    padding: 23px 0;
  }
  .service-body {
    font-size: 14px;
  }
  .contact-copy h2 {
    font-size: 50px;
  }
  .contact-details {
    grid-template-columns: 1fr;
  }
  .contact-details > div {
    grid-column: auto;
  }
  .contact-details > a {
    font-size: 15px;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .form-intro {
    display: block;
  }
  .form-intro span {
    display: block;
    margin-top: 5px;
    font-size: 11px;
  }
  .form-grid > label {
    font-size: 13px;
  }
  .form-grid input,
  .form-grid select,
  .form-grid textarea {
    font-size: 16px;
  }
  .check-label {
    font-size: 12px;
  }
  .ethics-strip .wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .ethics-strip a {
    max-width: none;
    font-size: 12px;
    gap: 20px;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
  .footer-brand {
    width: 180px;
    grid-column: 1/-1;
  }
  .footer-top p {
    font-size: 12px;
  }
  .back-top {
    font-size: 11px;
    gap: 12px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    font-size: 10px;
  }
  .report-hero {
    padding-bottom: 45px;
  }
  .report-hero h1 {
    font-size: 65px;
  }
  .breadcrumb {
    margin-bottom: 35px;
  }
  .report-hero-line {
    right: 5%;
    opacity: 0.4;
  }
  .report-hero > div > p:last-child {
    font-size: 15px;
  }
  .report-explanation h2 {
    font-size: 49px;
  }
  .report-note {
    display: block;
    width: 100%;
    margin-right: 0;
  }
  .report-form {
    padding: 25px 20px;
  }
  .form-heading h3 {
    font-size: 23px;
  }
  .dialog-copy {
    padding: 27px;
  }
  .dialog-copy h2 {
    font-size: 35px;
  }
  .dialog-copy .button {
    font-size: 12px;
    gap: 15px;
  }
  dialog > img {
    height: 230px;
  }
  .dialog-copy .eyebrow {
    font-size: 10px;
  }
}

/* ==========================================================================
   Ajustes finales de legibilidad y presentación
   ========================================================================== */
.footer-brand img {
  height: auto;
}
.form-grid > label {
  font-size: 14px;
}
.form-intro span,
.form-grid small,
.form-heading p {
  font-size: 12px;
}
.tag {
  font-size: 12px;
}
.project-caption {
  font-size: 12px;
}
.contact-copy > p,
.services-intro p,
.intro-copy > p:not(.lead),
.about-statement > p:not(.eyebrow),
.service-body,
.report-note p {
  font-size: 16px;
}
.check-label {
  font-size: 13px;
}
.footer-bottom {
  font-size: 12px;
}
.about-photo.reveal {
  transition-duration: 1.15s;
}
.motion .about-photo.reveal {
  transform: none;
  clip-path: inset(0 18% 0 0);
}
.motion .about-photo.reveal.visible {
  clip-path: inset(0);
}
.motion .about-photo.reveal {
  transition:
    opacity 1.15s var(--ease),
    clip-path 1.15s var(--ease);
}

/* Adaptación responsive: (max-width: 560px) */
@media (max-width: 560px) {
  h1 {
    font-size: clamp(39px, 12.5vw, 66px);
  }
  .report-hero h1 {
    font-size: clamp(43px, 14vw, 70px);
  }
  .hero-content {
    padding-top: 90px;
  }
  .hero-description {
    margin-top: 26px;
  }
  .hero .eyebrow {
    max-width: 330px;
  }
}

/* Adaptación responsive: (prefers-reduced-motion: reduce) */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .motion .reveal {
    opacity: 1;
    transform: none;
    clip-path: none;
  }
}
