/* =========================
   RESET / BASE GLOBAL
========================= */

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

html, body {
  width: 100%;
  height: 100%;
}

body {
  font-family: "Helvetica Neue", sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden; /* 🔴 evita scroll horizontal fantasma */
}

/* =========================
   MASTHEAD — EDITORIAL FIXED
========================= */

.masthead {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

  padding: 20px 40px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);

  border-bottom: 1px solid rgba(0,0,0,0.05);

  z-index: 1000;
}

/* LOGO */

.logo {
  font-size: 14px;
  letter-spacing: 4px;
  color: #111;
}

/* NAV DESKTOP */

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav a {
  text-decoration: none;
  color: #111;
  font-size: 12px;
  letter-spacing: 3px;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.nav a:hover {
  color: #d90000;
}

/* 🔴 INDEX BUTTON (REEMPLAZA HAMBURGUESA) */

.nav-index {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
}

/* DROPDOWN */

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 140%;
  left: 0;

  display: flex;
  flex-direction: column;

  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);

  padding: 12px 15px;

  opacity: 0;
  pointer-events: none;
  transform: translateY(5px);
  transition: all 0.2s ease;
}

.dropdown-menu a {
  color: #111;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.dropdown-menu a:hover {
  color: #d90000;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
/* =========================
   RESPONSIVE (CORREGIDO)
========================= */

@media (max-width: 900px) {

  .masthead {
    padding: 20px;
  }

  .nav {
    gap: 15px;
  }

  .nav a {
    font-size: 11px;
    letter-spacing: 2px;
  }

}

/* SOLO EN MÓVILES MUY PEQUEÑOS */

@media (max-width: 600px) {

  .masthead {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .logo {
    width: 100%;
    margin-bottom: 10px;
  }

  .nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 10px;
  }

  .nav a {
    font-size: 10px;
  }

}

/* =========================
   HERO (PORTADA FULL BLEED)
========================= */

.hero {
  position: relative;
  width: 100vw;       /* 🔴 fuerza ancho total */
  height: 100vh;
  overflow: hidden;
}

/* IMAGEN */

.hero img {
  position: absolute;
  top: 0;
  left: 0;

  width: 100vw;       /* 🔴 evita cortes laterales */
  height: 100vh;

  object-fit: cover;
}

/* TEXTO HERO */

.hero-text {
  position: absolute;
  bottom: 10%;
  right: 5%;

  text-align: right;
}

/* TITULAR */

.hero-text h1 {
  font-size: 140px;
  line-height: 0.9;
  letter-spacing: -2px;
}

/* META INFO */

.meta {
  margin-top: 20px;
}

.date {
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.featuring {
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 25px;
}

.cta {
  text-decoration: none;
  color: white;
  font-size: 12px;
  letter-spacing: 2px;
  transition: 0.2s ease;
}

.cta:hover {
  color: #ff2a00;
}

/* =========================
   BLOQUE EDITORIAL (NOISY RAIN)
========================= */

.brand-block {
  width: 100%;
  background: #fff;
  color: #000;

  padding: 10px 10px;
  text-align: center;
}

.brand-block h2 {
  font-size: 20px;
  letter-spacing: 10px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {
  .hero-text h1 {
    font-size: 100px;
  }
}

@media (max-width: 768px) {

  .masthead {
    padding: 15px 20px;
  }

  .nav {
    gap: 15px;
  }

  .nav a {
    font-size: 11px;
    letter-spacing: 2px;
  }

  .hero-text {
    bottom: 8%;
    right: 5%;
  }

  .hero-text h1 {
    font-size: 70px;
  }

  .brand-block h2 {
    font-size: 60px;
    letter-spacing: 6px;
  }
}
/* =========================
   SECTION 02
========================= */

.section-02 {
  position: relative;
  width: 100%;
  height: 100vh;
  background: #000;
  overflow: hidden;

  display: flex;
  align-items: center;
}

/* CONTENEDOR */

.section-02__inner {
  position: relative;
  width: 100%;
  height: 100%;
}

/* =========================
   IMAGEN (LADO DERECHO)
========================= */

.section-02__image {
  position: absolute;
  top: 0;
  right: 0;
  width: 65%;
  height: 100%;

  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
  overflow: hidden;
}

.section-02__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================
   CONTENIDO (IZQUIERDA)
========================= */

.section-02__content {
  position: relative;
  z-index: 2;

  width: 50%;
  padding-left: 8%;
}

/* LABEL */

.section-02__label {
  font-size: 11px;
  letter-spacing: 3px;
  margin-bottom: 30px;
  opacity: 0.6;
}

/* TITULAR */

.section-02__title {
  font-size: 110px;
  line-height: 0.9;
  letter-spacing: -2px;
  margin-bottom: 40px;
}

.section-02__title span {
  color: #ff2a00;
}

/* TEXTO */

.section-02__text {
  max-width: 360px;
  margin-bottom: 50px;
}

.section-02__text p {
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 1px;
  opacity: 0.75;
  margin-bottom: 10px;
}

/* CTA */

.section-02__cta {
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2px;
  color: #fff;
  transition: 0.2s ease;
}

.section-02__cta:hover {
  color: #ff2a00;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {

  .section-02__title {
    font-size: 80px;
  }

  .section-02__image {
    width: 70%;
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
  }
}

@media (max-width: 768px) {

  .section-02 {
    height: auto;
    padding: 100px 20px;
  }

  .section-02__inner {
    display: flex;
    flex-direction: column;
  }

  .section-02__image {
    position: relative;
    width: 100%;
    height: 400px;
    clip-path: none;
    margin-bottom: 40px;
  }

  .section-02__content {
    width: 100%;
    padding: 0;
  }

  .section-02__title {
    font-size: 50px;
  }
}

/* =========================
   SECTION 03
========================= */

.section-03 {
  position: relative;
  width: 100%;
  height: 100vh;
  background: #000;

  display: flex;
  align-items: center;
}

/* CONTENEDOR */

.section-03__inner {
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 8%;
}

/* =========================
   IMAGEN (IZQUIERDA)
========================= */

.section-03__image {
  width: 45%;
  height: 70vh;

  display: flex;
  align-items: center;
  justify-content: center;
}

.section-03__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================
   CONTENIDO (DERECHA)
========================= */

.section-03__content {
  width: 45%;
}

/* LABEL */

.section-03__label {
  font-size: 11px;
  letter-spacing: 3px;
  margin-bottom: 30px;
  opacity: 0.6;
}

/* TITULAR */

.section-03__title {
  font-size: 100px;
  line-height: 0.9;
  letter-spacing: -2px;
  margin-bottom: 40px;
}

.section-03__title span {
  color: #ff2a00;
}

/* TEXTO */

.section-03__text {
  max-width: 380px;
  margin-bottom: 50px;
}

.section-03__text p {
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 1px;
  opacity: 0.75;
  margin-bottom: 12px;
}

/* CTA */

.section-03__cta {
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2px;
  color: #fff;
  transition: 0.2s ease;
}

.section-03__cta:hover {
  color: #ff2a00;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {

  .section-03__title {
    font-size: 70px;
  }

  .section-03__image {
    height: 60vh;
  }
}

@media (max-width: 768px) {

  .section-03 {
    height: auto;
    padding: 100px 20px;
  }

  .section-03__inner {
    flex-direction: column;
    padding: 0;
  }

  .section-03__image {
    width: 100%;
    height: 350px;
    margin-bottom: 40px;
  }

  .section-03__content {
    width: 100%;
  }

  .section-03__title {
    font-size: 50px;
  }
}
/* =========================
   SECTION 04
========================= */

.section-04 {
  width: 100%;
  min-height: 100vh;
  background: #ffffff;
  color: #000000;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
}

/* CONTENEDOR */

.section-04__inner {
  max-width: 720px;
  padding: 120px 20px;
}

/* LABEL */

.section-04__label {
  font-size: 11px;
  letter-spacing: 3px;
  margin-bottom: 30px;
  opacity: 0.5;
}

/* TITULAR */

.section-04__title {
  font-size: 28px;
  letter-spacing: 4px;
  margin-bottom: 50px;
}

/* TEXTO */

.section-04__text {
  margin-bottom: 60px;
}

.section-04__text p {
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.5px;
  margin-bottom: 25px;
}

/* FIRMA */

.section-04__signature {
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 50px;
  opacity: 0.7;
}

/* CTA */

.section-04__cta {
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2px;
  color: #000;
  transition: 0.2s ease;
}

.section-04__cta:hover {
  color: #ff2a00;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

  .section-04__inner {
    padding: 80px 20px;
  }

  .section-04__title {
    font-size: 22px;
  }

  .section-04__text p {
    font-size: 14px;
  }
}

/* =========================
   SECTION 05 — EDITORIAL REDESIGN
========================= */

.section-05 {
  width: 100%;
  min-height: 100vh;
  background: #000;
  color: #fff;

  display: flex;
  align-items: center;
}

/* GRID */

.section-05__grid {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;

  align-items: center;
  padding: 120px 60px;
}

/* =========================
   LEFT SIDE
========================= */

.section-05__left {
  max-width: 520px;
}

/* TITLE */

.section-05__title {
  font-size: clamp(60px, 7vw, 110px);
  line-height: 0.9;
  letter-spacing: -2px;
  margin-bottom: 40px;
  font-weight: 500;
}

.section-05__title span {
  color: #ff2a00;
}

/* TEXT */

.section-05__text {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.4px;
}

.section-05__text--primary {
  margin-bottom: 40px;
  opacity: 0.9;
}

.section-05__text--secondary {
  margin-top: 30px;
  font-size: 12px;
  letter-spacing: 2px;
  opacity: 0.5;
}

/* CTA */

.section-05__cta {
  display: inline-block;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2px;
  color: #fff;

  margin-bottom: 10px;

  transition: color 0.25s ease;
}

.section-05__cta:hover {
  color: #ff2a00;
}

/* =========================
   RIGHT SIDE (IMAGE)
========================= */

.section-05__right {
  display: flex;
  justify-content: center;
}

.section-05__right img {
  width: 420px;
  max-width: 100%;
  height: auto;

  transition: transform 0.6s ease, opacity 0.6s ease;
  transform: scale(0.97);
  opacity: 0.95;
}

.section-05__right:hover img {
  transform: scale(1);
  opacity: 1;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

  .section-05__grid {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 80px 30px;
  }

  .section-05__left {
    order: 1;
  }

  .section-05__right {
    order: 2;
  }

  .section-05__title {
    font-size: 60px;
  }

  .section-05__right img {
    width: 260px;
  }

}
/* =========================
   SECTION 06
========================= */

.section-06 {
  width: 100%;
  min-height: 100vh;
  background: #000;
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
}

/* CONTENEDOR */

.section-06__inner {
  max-width: 800px;
  padding: 100px 20px;
}

/* LABEL */

.section-06__label {
  font-size: 11px;
  letter-spacing: 3px;
  margin-bottom: 40px;
  opacity: 0.4;
}

/* =========================
   TITULAR
========================= */

.section-06__title {
  font-size: 64px;
  line-height: 1.1;
  letter-spacing: 6px;
  margin-bottom: 50px;
}

.section-06__title span {
  display: inline-block;
}

/* ACENTO */

.section-06__title .accent {
  color: #ff2a00;
}

/* MICRO-RITMO TIPOGRÁFICO */

.section-06__title span:nth-child(1) {
  transform: translateX(-10px);
}

.section-06__title span:nth-child(3) {
  transform: translateX(10px);
}

/* =========================
   TEXTO
========================= */

.section-06__text {
  max-width: 500px;
  margin: 0 auto 40px;
}

.section-06__text p {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  opacity: 0.8;
}

/* =========================
   CTA
========================= */

.section-06__cta {
  display: inline-block;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2px;
  color: #fff;

  transition: 0.2s ease;
}

.section-06__cta:hover {
  color: #ff2a00;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

  .section-06__inner {
    padding: 80px 20px;
  }

  .section-06__title {
    font-size: 42px;
    letter-spacing: 4px;
  }

  .section-06__text p {
    font-size: 13px;
  }
}

/* =========================
   SECTION 07
========================= */

.section-07 {
  width: 100%;
  min-height: 60vh;
  background: #ffffff;
  color: #000;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
}

/* CONTENEDOR */

.section-07__inner {
  max-width: 600px;
  padding: 120px 20px 60px; /* más aire arriba, menos abajo para acercar al footer */
}

/* STATEMENT */

.section-07__statement {
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 1.6;

  opacity: 0.5;
}

/* =========================
   INTEGRACIÓN CON FOOTER
========================= */

/* Reduce separación visual con el footer */
.footer3,
footer {
  margin-top: -40px;
}

/* Ajuste opcional para que el footer respire igual */
.footer3 .mbr-text,
footer .mbr-text {
  opacity: 0.6;
  letter-spacing: 1px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

  .section-07 {
    min-height: 50vh;
  }

  .section-07__inner {
    padding: 100px 20px 40px;
  }

  .section-07__statement {
    font-size: 14px;
  }
}

/* =========================
   FOOTER
========================= */

.site-footer {
  width: 100%;
  background: #ffffff;
  color: #000;

  text-align: center;
}

/* CONTENEDOR */

.site-footer__inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px 20px 80px; /* poco arriba, más abajo para cierre limpio */
}

/* =========================
   COPYRIGHT
========================= */

.site-footer__copy {
  font-size: 12px;
  letter-spacing: 1.5px;
  line-height: 1.6;
  opacity: 0.5;

  margin-bottom: 30px;
}

/* =========================
   EMAIL
========================= */

.site-footer__email {
  margin-bottom: 30px;
}

.site-footer__email a {
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1.5px;
  color: #000;

  opacity: 0.7;
  transition: 0.2s ease;
}

.site-footer__email a:hover {
  color: #ff2a00;
  opacity: 1;
}

/* =========================
   NAV
========================= */

.site-footer__nav {
  display: flex;
  justify-content: center;
  gap: 25px;

  margin-bottom: 30px;
}

.site-footer__nav a {
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2px;
  color: #000;

  opacity: 0.6;
  transition: 0.2s ease;
}

.site-footer__nav a:hover {
  color: #ff2a00;
  opacity: 1;
}

/* =========================
   SOCIAL
========================= */

.site-footer__social {
  margin-bottom: 30px;
}

.instagram-icon {
  width: 18px;
  height: 18px;
  fill: #000;

  opacity: 0.6;
  transition: 0.2s ease;
}

.site-footer__social a:hover .instagram-icon {
  fill: #ff2a00;
  opacity: 1;
}

/* =========================
   PRIVACY
========================= */

.site-footer__privacy a {
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: #000;

  opacity: 0.4;
  transition: 0.2s ease;
}

.site-footer__privacy a:hover {
  opacity: 0.7;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

  .site-footer__inner {
    padding: 20px 20px 60px;
  }

  .site-footer__nav {
    flex-direction: column;
    gap: 10px;
  }
}

/* =========================
   REVEAL SYSTEM
========================= */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* DELAYS */

.reveal.delay-1 {
  transition-delay: 0.15s;
}

.reveal.delay-2 {
  transition-delay: 0.3s;
}

.reveal.delay-3 {
  transition-delay: 0.45s;
}
/* =========================
   ABOUT PAGE
========================= */

.about-page {
  background: #ffffff;
  padding: 180px 20px 120px;
  display: flex;
  justify-content: center;
}

.about-page__inner {
  max-width: 700px;
  text-align: center;
}

/* TITLE */

.about-page__title {
  font-size: 42px;
  letter-spacing: 6px;
  line-height: 1.2;
  color: #000;
  margin-bottom: 80px;
}

.about-page__title span {
  color: #ff2a00;
}

/* BLOCKS */

.about-page__block {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 1.5px;
  color: #000;
  margin-bottom: 60px;
}

.about-page__block p {
  margin-bottom: 20px;
}

/* DIVIDER */

.about-page__divider {
  width: 60px;
  height: 2px;
  background: #ff2a00;
  margin: 40px auto;
}

/* EDITOR */

.about-page__editor {
  opacity: 0.7;
  font-size: 13px;
}

/* CTA */

.about-page__cta {
  display: inline-block;
  margin-top: 60px;

  text-decoration: none;
  color: #000;

  font-size: 12px;
  letter-spacing: 3px;

  border-bottom: 1px solid #000;
  padding-bottom: 4px;

  transition: 0.3s ease;
}

.about-page__cta:hover {
  color: #ff2a00;
  border-color: #ff2a00;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

  .about-page {
    padding: 140px 20px 100px;
  }

  .about-page__title {
    font-size: 28px;
    letter-spacing: 4px;
  }

  .about-page__block {
    font-size: 13px;
    line-height: 1.7;
  }

}
/* =========================
   SUBMISSIONS PAGE
========================= */

.submission-page {
  background: #000;
  padding: 180px 20px 120px;
  display: flex;
  justify-content: center;
}

.submission-page__inner {
  max-width: 700px;
  text-align: center;
}

/* TITLE */

.submission-page__title {
  font-size: 42px;
  letter-spacing: 6px;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 80px;
}

.submission-page__title span {
  color: #ff2a00;
}

/* BLOCKS */

.submission-page__block {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 1.5px;
  color: #fff;
  margin-bottom: 60px;
}

.submission-page__block p {
  margin-bottom: 20px;
}

/* SUBTITLES */

.submission-page__subtitle {
  font-size: 13px;
  letter-spacing: 4px;
  margin-bottom: 20px;
  color: #ff2a00;
}

/* LIST */

.submission-page__block ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.submission-page__block li {
  margin-bottom: 10px;
}

/* DIVIDER */

.submission-page__divider {
  width: 60px;
  height: 2px;
  background: #ff2a00;
  margin: 40px auto;
}

/* PRIVACY */

.submission-page__privacy {
  display: inline-block;
  margin-top: 20px;
  font-size: 11px;
  letter-spacing: 2px;
  color: #888;
  text-decoration: none;
}

.submission-page__privacy:hover {
  color: #fff;
}

/* CTA GROUP */

.submission-page__cta-group {
  margin-top: 60px;
}

.submission-page__email {
  font-size: 13px;
  letter-spacing: 2px;
  color: #ccc;
  margin-bottom: 20px;
}

/* CTA */

.submission-page__cta {
  display: inline-block;
  text-decoration: none;
  color: #fff;

  font-size: 12px;
  letter-spacing: 3px;

  border-bottom: 1px solid #fff;
  padding-bottom: 4px;

  transition: 0.3s ease;
}

.submission-page__cta:hover {
  color: #ff2a00;
  border-color: #ff2a00;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

  .submission-page {
    padding: 140px 20px 100px;
  }

  .submission-page__title {
    font-size: 28px;
    letter-spacing: 4px;
  }

  .submission-page__block {
    font-size: 13px;
    line-height: 1.7;
  }

}
/* =========================
   PRIVACY PAGE
========================= */

.privacy-page {
  background: #ffffff;
  padding: 180px 20px 120px;
  display: flex;
  justify-content: center;
}

.privacy-page__inner {
  max-width: 700px;
  text-align: left;
}

/* TITLE */

.privacy-page__title {
  font-size: 22px;
  letter-spacing: 4px;
  margin-bottom: 60px;
  color: #000;
}

/* BLOCK */

.privacy-page__block {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 1.5px;
  color: #000;
  margin-bottom: 40px;
}

.privacy-page__block h3 {
  font-size: 13px;
  letter-spacing: 3px;
  margin-bottom: 15px;
}

/* EMAIL */

.privacy-page__email {
  margin-top: 10px;
  font-size: 13px;
  letter-spacing: 2px;
}

/* DIVIDER */

.privacy-page__divider {
  width: 40px;
  height: 1px;
  background: #000;
  margin: 30px 0;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

  .privacy-page {
    padding: 140px 20px 100px;
  }

  .privacy-page__title {
    font-size: 18px;
  }

  .privacy-page__block {
    font-size: 13px;
    line-height: 1.7;
  }

}
/* =========================
   EDITOR PAGE
========================= */

.editor-page {
  background: #ffffff;
  padding: 180px 20px 120px;
  display: flex;
  justify-content: center;
}

.editor-page__inner {
  max-width: 700px;
  text-align: left;
}

/* TITLE */

.editor-page__title {
  font-size: 26px;
  letter-spacing: 4px;
  margin-bottom: 60px;
  color: #000;
}

.editor-page__title span {
  color: #ff2a00;
}

/* TEXT BLOCK */

.editor-page__block {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 1.5px;
  color: #000;
  margin-bottom: 40px;
}

.editor-page__block p {
  margin-bottom: 20px;
}

/* SUBTITLE */

.editor-page__subtitle {
  font-size: 13px;
  letter-spacing: 3px;
  margin-bottom: 20px;
  color: #ff2a00;
}

/* DIVIDER */

.editor-page__divider {
  width: 40px;
  height: 1px;
  background: #000;
  margin: 40px 0;
}

/* CTA */

.editor-page__cta-group {
  margin-top: 40px;
  margin-bottom: 60px;
}

.editor-page__contact {
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.editor-page__cta {
  display: inline-block;
  text-decoration: none;
  color: #000;

  font-size: 12px;
  letter-spacing: 3px;

  border-bottom: 1px solid #000;
  padding-bottom: 4px;

  transition: 0.3s ease;
}

.editor-page__cta:hover {
  color: #ff2a00;
  border-color: #ff2a00;
}

/* IMAGE */

.editor-page__image {
  margin-top: 40px;
}

.editor-page__image img {
  width: 100%;
  max-width: 420px;
  display: block;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

  .editor-page {
    padding: 140px 20px 100px;
  }

  .editor-page__title {
    font-size: 20px;
  }

  .editor-page__block {
    font-size: 13px;
    line-height: 1.7;
  }

}
/* =========================
   CATALOGUE PAGE
========================= */

.catalogue-page {
  background: #000;
  height: 100vh;
  display: flex;
}

.catalogue-page__inner {
  display: flex;
  width: 100%;
}

/* PANELS */

.catalogue-page__panel {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
  overflow: hidden;

  transition: 0.4s ease;
}

/* CONTENT */

.catalogue-page__content {
  max-width: 420px;
  padding: 40px;
}

/* TITLE */

.catalogue-page__title {
  font-size: 42px;
  letter-spacing: 6px;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 30px;
}

.catalogue-page__title span {
  color: #ff2a00;
}

/* TEXT */

.catalogue-page__text {
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 1.5px;
  color: #ccc;
  margin-bottom: 30px;
}

/* CTA */

.catalogue-page__cta {
  text-decoration: none;
  color: #fff;

  font-size: 12px;
  letter-spacing: 3px;

  border-bottom: 1px solid #fff;
  padding-bottom: 4px;

  transition: 0.3s ease;
}

.catalogue-page__cta:hover {
  color: #ff2a00;
  border-color: #ff2a00;
}

/* =========================
   HOVER INTERACTION
========================= */

/* estado base: ligera opacidad */
.catalogue-page__panel {
  opacity: 0.7;
}

/* hover individual */
.catalogue-page__panel:hover {
  opacity: 1;
}

/* cuando se hace hover en el contenedor */
.catalogue-page__inner:hover .catalogue-page__panel {
  opacity: 0.3;
}

/* el activo se mantiene fuerte */
.catalogue-page__inner .catalogue-page__panel:hover {
  opacity: 1;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

  .catalogue-page {
    height: auto;
  }

  .catalogue-page__inner {
    flex-direction: column;
  }

  .catalogue-page__panel {
    width: 100%;
    padding: 80px 20px;
  }

  .catalogue-page__title {
    font-size: 28px;
    letter-spacing: 4px;
  }

  .catalogue-page__text {
    font-size: 13px;
  }

}
/* =========================
   SECTION ARCHIVE (ISSUES)
========================= */

.issues-archive {
  background: #ffffff;
  padding: 140px 40px;
}

.issues-archive__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
}

/* LEFT */

.issues-archive__title {
  font-size: 64px;
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 40px;
}

.issues-archive__volumes {
  font-size: 12px;
  letter-spacing: 2px;
  line-height: 1.8;
}

.issues-archive__volume {
  cursor: pointer;
  transition: 0.3s;
}

.issues-archive__volume:hover {
  color: red;
}

/* FIX COLOR CONTEXT */

.issues-archive {
  color: #000;
}

.issues-archive__title {
  color: #000;
}

/* RIGHT */

.issues-archive__search {
  margin-bottom: 60px;
}

.issues-archive__search input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #000;
  padding: 10px 0;
  font-size: 14px;
  letter-spacing: 2px;
  background: transparent;
  outline: none;
}

.issues-archive__search-hint {
  font-size: 10px;
  color: #777;
  margin-top: 8px;
  letter-spacing: 1px;
}

/* GRID */

.issues-archive__results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* COVER */

.issue-card {
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition: 0.6s ease;
}

.issue-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.issue-card img {
  width: 100%;
  display: block;
}

.issue-card__meta {
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 2px;
}

/* FEATURED VIEW */

.issue-feature {
  grid-column: span 3;
}

.issue-feature img {
  width: 260px;
}

.issue-feature__meta {
  margin-top: 20px;
}

/* ARTIST RESULT */

.artist-result {
  grid-column: span 3;
}

.artist-result h3 {
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.artist-result a {
  display: inline-block;
  margin-right: 10px;
  font-size: 12px;
  letter-spacing: 2px;
  text-decoration: none;
  color: #000;
}

.artist-result a:hover {
  color: red;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .issues-archive__inner {
    grid-template-columns: 1fr;
  }

  .issues-archive__results {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================
   ARTISTS ARCHIVE — EDITORIAL
========================= */

.artists-archive {
  background: #f4f4f4;
  color: #111;
  padding: 120px 40px;
}

.artists-archive__inner {
  max-width: 1400px;
  margin: 0 auto;
}

/* HEADER */

.artists-archive__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  margin-bottom: 120px;
}

.artists-archive__title {
  font-size: 100px;
  font-weight: 600;
  line-height: 0.9;
  text-align: right;
  letter-spacing: -2px;
}

/* SEARCH */

.artists-archive__search input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #aaa;
  background: transparent;
  font-size: 18px;
  padding: 10px 0;
  outline: none;
  color: #111;
}

.artists-archive__hint {
  font-size: 11px;
  color: #888;
  margin-top: 6px;
}

/* GRID */

.artists-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 40px;
}

/* LETTER BLOCK */

.artist-letter-block {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: start;
  margin-top: 80px;
}

.artist-letter {
  font-size: 80px;
  font-weight: 600;
  color: #d90000;
  line-height: 1;
}

/* LIST */

.artist-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 40px;
}

/* ITEM */

.artist-item {
  font-size: 14px;
  line-height: 1.4;
  cursor: pointer;
}

.artist-item:hover {
  opacity: 0.5;
}

/* NAME */

.artist-name {
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* META */

.artist-meta {
  font-size: 12px;
  color: #666;
}

/* REMOVE LINK STYLE */

.artist-item a {
  text-decoration: none;
  color: inherit;
}

/* MOBILE */

@media (max-width: 900px) {

  .artists-archive__header {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .artists-archive__title {
    text-align: left;
    font-size: 60px;
  }

  .artists-grid {
    grid-template-columns: 1fr;
  }

  .artist-letter-block {
    grid-template-columns: 1fr;
  }

  .artist-list {
    grid-template-columns: 1fr;
  }

}

