:root {
  --bg: #050505;
  --surface: #111;
  --text: #f6f4ee;
  --muted: #c6c6c6;
  --line: #272727;
  --max: 1200px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: "Arial Black", "Segoe UI", sans-serif;
  background: radial-gradient(circle at 50% 0, #171717 0%, var(--bg) 58%);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(92%, var(--max)); margin: 0 auto; }
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(5, 5, 5, 0.88); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap { min-height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.logo { letter-spacing: 2px; font-size: 1.7rem; font-weight: 900; }
.menu { display: flex; gap: 10px; flex-wrap: wrap; }
.menu a {
  font-size: .85rem; text-transform: uppercase; letter-spacing: 1px;
  padding: 12px 18px; border: 1px solid #2f2f2f; background: #1a1a1a;
  transition: .25s ease;
}
.menu a:hover, .menu a:focus-visible { transform: translateY(-2px); background: #2a2a2a; }
.cta { background: #fff !important; color: #000 !important; border-color: #fff !important; }
.hero {
  min-height: 78vh; display: flex; align-items: flex-end; padding: 70px 0 48px;
  background: linear-gradient(180deg, rgba(0,0,0,.44), rgba(0,0,0,.9)), url("../assets/img/hero.webp") center/cover no-repeat;
}
.hero-top { display: flex; justify-content: space-between; font-size: clamp(1.2rem, 3vw, 2.4rem); text-transform: uppercase; }
.hero h1 { font-size: clamp(2.1rem, 10vw, 8.6rem); line-height: .92; text-transform: uppercase; letter-spacing: 2px; }
.wave {
  margin-top: 18px; height: 72px;
  background: repeating-linear-gradient(90deg, #fff 0 10px, transparent 10px 18px);
  animation: wave 2.6s linear infinite;
}
@keyframes wave { from { transform: translateX(0); } to { transform: translateX(40px); } }
.section { padding: 68px 0; }
.about-section {
  background: #000;
  padding: 88px 0 110px;
  border-top: 1px solid #1a1a1a;
}
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.5fr) minmax(0, 0.55fr);
  grid-template-rows: auto auto minmax(120px, auto) auto;
  gap: 22px 26px;
  align-items: start;
}
.about-col-text {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  max-width: 520px;
}
.about-label {
  font-family: "Segoe UI", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 18px;
}
.about-headline {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(2rem, 5.2vw, 4.35rem);
  line-height: 0.94;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}
.about-img-a {
  grid-column: 2 / 4;
  grid-row: 1 / 3;
  justify-self: end;
  align-self: start;
  width: min(100%, 440px);
  max-height: min(72vh, 560px);
}
.about-img-a img {
  height: min(72vh, 560px);
  width: auto;
  max-width: 100%;
  margin-left: auto;
}
.about-img-b {
  grid-column: 1;
  grid-row: 2;
  margin-top: 28px;
  width: min(100%, 300px);
  aspect-ratio: 1;
  max-height: 300px;
}
.about-img-c {
  grid-column: 2;
  grid-row: 2 / 5;
  width: min(100%, 340px);
  margin-top: 72px;
  justify-self: center;
  min-height: 320px;
}
.about-copy {
  grid-column: 3;
  grid-row: 4;
  align-self: end;
  font-family: "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: #fff;
  max-width: 380px;
  justify-self: end;
}
.about-copy p {
  margin: 0;
}
.about-link {
  display: inline-block;
  margin-top: 22px;
  padding: 14px 26px;
  border: 1px solid #fff;
  font-family: "Segoe UI", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.about-link:hover,
.about-link:focus-visible {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
}
.title { font-size: clamp(1.4rem, 3vw, 2.5rem); text-transform: uppercase; margin-bottom: 28px; }
.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.grid.grid-articles { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.card { background: #101010; border: 1px solid #262626; overflow: hidden; transition: .25s ease; }
.card:hover { transform: translateY(-6px); border-color: #4a4a4a; box-shadow: 0 14px 28px rgba(0,0,0,.36); }
.content { padding: 20px; font-family: "Segoe UI", sans-serif; }
.content h3 { font-family: "Arial Black", "Segoe UI", sans-serif; text-transform: uppercase; margin-bottom: 10px; font-size: 1.16rem; }
.content p { color: var(--muted); margin-bottom: 12px; }
.page-header { padding: 114px 0 38px; background: linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,.9)); }
.page-header h1 { font-size: clamp(2rem, 7vw, 5.4rem); line-height: 1; text-transform: uppercase; }
.page-header p { margin-top: 12px; color: #d7d7d7; font-family: "Segoe UI", sans-serif; max-width: 760px; }
.panel { background: var(--surface); border: 1px solid #2a2a2a; padding: 24px; }
/* Lead image in articulos: full width, band height tied to viewport */
.section.container > img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: min(44vh, 560px);
  object-fit: cover;
  object-position: center;
  margin: 0 auto 28px;
}
@media (max-width: 760px) {
  .section.container > img {
    height: min(36vh, 380px);
  }
}
.article-neighbors-section {
  padding-top: 40px;
  margin-top: 8px;
  border-top: 1px solid var(--line);
}
.article-neighbors-section .article-neighbors-grid {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
@media (min-width: 720px) {
  .article-neighbors-section .article-neighbors-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.article { font-family: "Segoe UI", sans-serif; }
.article h2, .article h3 { font-family: "Arial Black", "Segoe UI", sans-serif; margin: 26px 0 12px; line-height: 1.2; text-transform: uppercase; }
.article p { margin-bottom: 14px; color: #e6e6e6; }
.article-lead {
  font-size: 1.08rem;
  line-height: 1.75;
  color: #f1f1f1;
  margin-bottom: 22px;
}
.article-brief {
  margin: 18px 0 24px;
  padding: 14px 16px;
  border: 1px solid #2f2f2f;
  background: #0d0d0d;
}
.article-brief-title {
  margin: 0 0 10px;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #bdbdbd;
}
.article-brief-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
}
.article-brief-list li {
  color: #d7d7d7;
}
.article-divider {
  width: 64px;
  height: 2px;
  margin: 26px 0 12px;
  background: linear-gradient(90deg, #fff 0%, #5e5e5e 100%);
  opacity: 0.7;
}
.article-note {
  background: #121212;
  border: 1px solid #292929;
  padding: 12px 14px;
}
.two-col { display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px; }
.form { display: grid; gap: 12px; }
.form input, .form textarea { background: #0f0f0f; border: 1px solid #2d2d2d; padding: 12px; color: #fff; font-family: "Segoe UI", sans-serif; }
.form button { border: 1px solid #fff; background: #fff; color: #000; padding: 12px; font-weight: 700; cursor: pointer; }
.footer { margin-top: 50px; border-top: 1px solid var(--line); background: #080808; }
.footer-grid { padding: 34px 0; display: grid; gap: 20px; grid-template-columns: 1.2fr 1fr 1fr; }
.footer-principles {
  border-top: 1px solid #222;
  background: #050505;
  padding: 22px 0 8px;
}
.footer-principles-inner {
  max-width: 920px;
}
.footer-principles-p {
  font-family: "Segoe UI", sans-serif;
  font-size: 0.78rem;
  line-height: 1.65;
  color: #8f8f8f;
  margin: 0 0 14px;
}
.footer-principles-meta {
  font-size: 0.72rem;
  color: #7a7a7a;
  margin-bottom: 0;
  padding-top: 4px;
}
.footer h3 { text-transform: uppercase; margin-bottom: 8px; font-size: 1rem; }
.footer p, .footer li, .footer a { font-family: "Segoe UI", sans-serif; color: #cccccc; font-size: .95rem; }
.footer ul { list-style: none; display: grid; gap: 6px; }
.cookie {
  position: fixed; right: 18px; bottom: 18px; max-width: 360px; z-index: 100;
  background: #141414; border: 1px solid #2d2d2d; padding: 16px; transform: translateY(120%); transition: transform .35s ease;
}
.cookie.visible { transform: translateY(0); }
.cookie p { font-family: "Segoe UI", sans-serif; color: #d4d4d4; margin-bottom: 12px; }
.cookie-actions { display: flex; gap: 10px; }
.cookie button { flex: 1; border: 1px solid #fff; padding: 10px; cursor: pointer; }
.accept { background: #fff; color: #000; }
.reject { background: transparent; color: #fff; }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
.reveal.show { opacity: 1; transform: translateY(0); }
.showcase-wrap {
  position: relative;
  background: #000;
}
.showcase-slide {
  position: relative;
  display: block;
  min-height: 100vh;
  min-height: 100dvh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}
.showcase-slide:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}
.showcase-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.82) 100%);
  pointer-events: none;
}
.showcase-inner {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding: 100px 0 42px;
  flex-wrap: wrap;
}
.showcase-title {
  font-size: clamp(2.4rem, 8vw, 6.2rem);
  line-height: 0.92;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  max-width: 14ch;
  text-shadow: 0 8px 30px rgba(0,0,0,.55);
}
.showcase-date {
  font-family: "Segoe UI", sans-serif;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  align-self: flex-end;
  text-shadow: 0 4px 18px rgba(0,0,0,.55);
}
.showcase-after {
  padding-top: 48px;
  padding-bottom: 48px;
}
.read-cursor {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 105;
  transform: translate(-50%, -50%);
  padding: 14px 24px;
  background: #f4f2ec;
  color: #000;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.22s ease;
  border: 1px solid #fff;
  box-shadow: 0 12px 28px rgba(0,0,0,.35);
}
.read-cursor.is-on {
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .read-cursor { transition: none; }
}
@media (max-width: 980px) {
  .grid, .footer-grid, .two-col { grid-template-columns: 1fr 1fr; }
  .grid.grid-articles { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
  .about-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .about-col-text {
    grid-column: 1 / -1;
    max-width: none;
  }
  .about-headline {
    max-width: none;
  }
  .about-img-a {
    grid-column: 1 / -1;
    grid-row: auto;
    justify-self: stretch;
    width: 100%;
    max-height: none;
  }
  .about-img-a img {
    height: auto;
    min-height: 320px;
    width: 100%;
    margin-left: 0;
  }
  .about-img-b {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
    max-width: none;
  }
  .about-img-c {
    grid-column: 2;
    grid-row: auto;
    width: 100%;
    margin-top: 0;
    min-height: 260px;
  }
  .about-copy {
    grid-column: 1 / -1;
    grid-row: auto;
    justify-self: start;
    max-width: none;
    padding-top: 8px;
  }
}
@media (max-width: 760px) {
  .nav-wrap { flex-direction: column; align-items: flex-start; padding: 12px 0; }
  .grid, .footer-grid, .two-col { grid-template-columns: 1fr; }
  .hero { min-height: 62vh; }
  .showcase-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding-bottom: 56px;
  }
  .showcase-date { align-self: flex-start; }
  .cookie { left: 10px; right: 10px; max-width: none; }
  .about-section { padding: 64px 0 80px; }
  .about-grid {
    display: flex;
    flex-direction: column;
    gap: 22px;
  }
  .about-col-text { order: 1; }
  .about-img-a { order: 2; }
  .about-img-b { order: 3; }
  .about-img-c { order: 4; min-height: 280px; }
  .about-copy { order: 5; }
}
