/* styles.css */
:root{
  --primary:#0000FF;

  --bg:#0b0b0b;
  --bg-2:#101010;
  --text:#f5f6f8;
  --muted:rgba(245,246,248,.72);

  --paper:#ffffff;
  --ink:#0b0b0b;
  --ink-2:#151515;

  --stroke:rgba(255,255,255,.14);
  --stroke-2:rgba(0,0,0,.10);

  --radius:22px;
  --radius-sm:16px;

  --shadow: 0 18px 40px rgba(0,0,0,.18);
  --shadow-soft: 0 14px 30px rgba(0,0,0,.10);

  --container: 1120px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: "Karla", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background:#ffffff;
  line-height:1.35;
}

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

a{ color:inherit; text-decoration:none; }
a:focus-visible, button:focus-visible, input:focus-visible{
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 10px;
}

.container{
  width: min(var(--container), calc(100% - 40px));
  margin-inline:auto;
}

/* ---------------- HEADER ---------------- */
.site-header{
  position:sticky;
  top:0;
  z-index:30;
  background:rgba(11,11,11,.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
  gap:16px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-family: "Space Grotesk", Inter, sans-serif;
  letter-spacing:-.02em;
}
.brand-mark{
  width:14px; height:14px;
  border-radius:4px;
  background:var(--primary);
  box-shadow: 0 0 0 6px rgba(0,0,255,.12);
}
.brand-name{ font-weight:700; }

.nav{
  display:flex;
  gap:22px;
  align-items:center;
  font-family: "Karla", sans-serif;
  font-weight:600;
  font-size:14px;
  opacity:.9;
}
.nav a{
  padding:10px 8px;
  border-radius:12px;
}
.nav a:hover{
  background:rgba(255,255,255,.06);
}

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

.menu-btn{
  display:none;
  width:44px; height:44px;
  background:transparent;
  border:1px solid rgba(255,255,255,.12);
  border-radius:14px;
}
.menu-btn span{
  display:block;
  height:2px;
  margin:6px 10px;
  background:rgba(245,246,248,.9);
  border-radius:999px;
}

/* ---------------- BUTTONS ---------------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight:700;
  font-family: "Karla", sans-serif;
  font-size:14px;
  border:1px solid transparent;
  transition: transform .16s ease, background .16s ease, border-color .16s ease, opacity .16s ease;
  cursor:pointer;
  user-select:none;
}
.btn:hover{ transform: translateY(-1px); }

.btn-primary{
  background:var(--primary);
  color:white;
  border-color: rgba(255,255,255,.14);
}
.btn-primary:hover{ opacity:.95; }

.btn-ghost{
  background: transparent;
  color: var(--primary);                 /* visible en fondo blanco */
  border: 1px solid rgba(0, 0, 255, 0.25);
}

/* hover */
.btn-ghost:hover{
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

/* estado seleccionado / activo */
.btn-ghost.is-active,
.btn-ghost:active,
.btn-ghost[aria-current="true"]{
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}
.btn-invert{
  background: var(--paper);
  color: var(--ink);
  border-color: rgba(0,0,0,.08);
}
.btn-invert:hover{ background: rgba(255,255,255,.94); }

.btn-invert-ghost{
  background: transparent;
  color: rgba(255,255,255,.92);
  border-color: rgba(255,255,255,.26);
}
.btn-invert-ghost:hover{ background: rgba(255,255,255,.10); }

/* ---------------- HERO ---------------- */
.hero{
  padding: 34px 0 0;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 28px;
  align-items:stretch;
}

.hero-copy{
  padding: 34px 0 12px;
}
.kicker{
  margin:0 0 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--primary);
  font-size: 12px;
}

.hero h1{
  margin:0 0 14px;
  font-family: "Karla", sans-serif;
  font-weight:700;
  letter-spacing:-.04em;
  line-height:.95;
  font-size: clamp(42px, 4.4vw, 70px);
}
.lead{
  margin:0 0 22px;
  color: var(--muted);
  max-width: 52ch;
  font-size: 16px;
}

.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom: 22px;
}

.hero-meta{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,.06);
  max-width: 520px;
}
.meta-item{
  display:flex;
  flex-direction:column;
  gap:4px;
}
.meta-label{
  font-size:12px;
  color: var(--primary);
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.08em;
}
.meta-value{
  font-family: "Karla", sans-serif;
  font-weight:700;
}

.hero-media{
  position:relative;
  border-radius: var(--radius);
  overflow:hidden;
  min-height: 420px;
  background: var(--bg-2);
  box-shadow: var(--shadow);
  border:1px solid rgba(255,255,255,.10);
}
.hero-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform: scale(1.02);
}
.hero-media-overlay{
  position: 20px;;
  inset:0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.58), rgba(0,0,0,.18) 45%, rgba(0,0,0,.10)),
    radial-gradient(900px 420px at 20% 10%, rgba(0,0,255,.28), transparent 60%);
  pointer-events:none;
}

/* ===== HERO BADGE — PRO VERSION ===== */
.hero-badge{
  position: absolute;
  left: 18px;
  bottom: 18px;

  display: flex;
  align-items: center;
  gap: 12px;

  padding: 12px 16px;
  border-radius: 999px;

  background: #ffffff;
  border: 1px solid rgba(0,0,0,.12);

  box-shadow:
    0 10px 24px rgba(0,0,0,.14),
    0 2px 6px rgba(0,0,0,.06);

  z-index: 5;
}

/* punto azul */
.hero-badge .dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(0,0,255,.18);
}

/* texto */
.hero-badge strong{
  display: block;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #0b0b0b;
  line-height: 1.1;
}

.hero-badge small{
  display: block;
  margin-top: 2px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(0,0,0,.60);
}


.dot{
  width:10px; height:10px;
  border-radius:999px;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(0,0,255,.18);
}

/* ---------------- MARQUEE ---------------- */
.marquee{
  margin-top: 24px;
  background: var(--primary);
  color: #fff;
  overflow:hidden;
  border-top: none;
  border-bottom: 1px solid rgba(255,255,255,.24);
}
.marquee-track{
  display:flex;
  white-space:nowrap;
}
.marquee-row{
  display:inline-flex;
  align-items:center;
  gap:16px;
  padding: 12px 0;
  font-family: "Karla", sans-serif;
  font-weight:700;
  letter-spacing:.02em;
  animation: marquee 18s linear infinite;
}
.marquee .star{ opacity:.9; }
@keyframes marquee{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* ---------------- SECTIONS ---------------- */
.section{
  padding: 76px 0;
  background: var(--paper);
  color: var(--ink);
}
.section:nth-of-type(even){
  background: #fafafa;
}
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
  margin-bottom: 26px;
}
.section-head.center{
  text-align:center;
  justify-content:center;
  flex-direction:column;
  align-items:center;
}
.section h2{
  margin:0;
  font-family: "Karla", sans-serif;
  font-weight:700;
  letter-spacing:-.04em;
  line-height:1.02;
  font-size: clamp(30px, 3vw, 46px);
}
.muted{ color: rgba(11,11,11,.62); }

/* ---------------- CARDS ---------------- */
.grid{ display:grid; gap:16px; }
.cards-2x2{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.card{
  background:#fff;
  border:1px solid var(--stroke-2);
  border-radius: var(--radius);
  padding: 18px 18px 16px;
  box-shadow: var(--shadow-soft);
  transition: transform .16s ease, box-shadow .16s ease;
}
.card:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(0,0,0,.10);
}
.card-icon{
  width:42px; height:42px;
  border-radius:14px;
  display:grid;
  place-items:center;
  font-weight:900;
  background: rgba(0,0,255,.10);
  color: var(--primary);
  border:1px solid rgba(0,0,255,.18);
  margin-bottom: 12px;
  font-family: "Karla", sans-serif;
}
.card h3{
  margin:0 0 8px;
  font-family: "Karla", sans-serif;
  letter-spacing:-.02em;
}
.card p{ margin:0 0 10px; }

.card-link{
  display:inline-block;
  font-family: "Karla", sans-serif;
  font-weight:700;
  color: var(--ink);
  opacity:.9;
}
.card-link:hover{ color: var(--primary); }

/* ---------------- BAND (BLUE) ---------------- */
.band{
  background: var(--primary);
  color: #fff;
  padding: 70px 0;
}
.band-grid{
  display:grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 22px;
  align-items:stretch;
}
.band-media{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.22);
  box-shadow: 0 20px 44px rgba(0,0,0,.25);
  min-height: 320px;
}
.band-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter: saturate(1.05) contrast(1.05);
}
.band-content{
  padding: 18px 6px;
}
.band-content h2{
  margin:0 0 12px;
  font-family: "Karla", sans-serif;
  letter-spacing:-.04em;
  line-height:1.02;
  font-size: clamp(30px, 3.2vw, 46px);
}
.band-lead{
  margin:0 0 18px;
  max-width: 55ch;
  color: rgba(255,255,255,.86);
}
.band-list{
  list-style:none;
  padding:0;
  margin: 0 0 18px;
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.band-list li{
  display:flex;
  align-items:center;
  gap: 12px;
  font-family: "Karla", sans-serif;
  font-weight:700;
  letter-spacing:-.01em;
}
.band-line{
  flex:1;
  height:1px;
  background: rgba(255,255,255,.28);
}
.band-tag{
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  color: rgba(255,255,255,.88);
  background: rgba(0,0,0,.14);
  padding: 6px 10px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.18);
}
.band-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 10px;
}

/* ---------------- WORK GRID ---------------- */
.work-grid{
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}
.work-card{
  position:relative;
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid rgba(0,0,0,.10);
  background:#fff;
  box-shadow: var(--shadow-soft);
  transition: transform .16s ease, box-shadow .16s ease;
}
.work-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(0,0,0,.12);
}
.work-card img{
  width:100%;
  height: 240px;
  object-fit: cover;
}
.work-meta{
  position:absolute;
  left:14px;
  right:14px;
  bottom:14px;
  padding: 12px 12px;
  border-radius: 18px;
  background: rgba(255,255,255,.88);
  border:1px solid rgba(0,0,0,.08);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  backdrop-filter: blur(10px);
}
.work-meta strong{
  font-family: "Karla", sans-serif;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0,0,255,.10);
  color: var(--primary);
  border: 1px solid rgba(0,0,255,.16);
  font-weight:900;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-family: "Karla", sans-serif;
}
.pill-outline{
  background: transparent;
  border-color: rgba(0,0,0,.14);
  color: rgba(0,0,0,.72);
}

/* ---------------- LIST BLOCK ---------------- */
.list-block{
  margin-top: 26px;
  border-top: 1px solid rgba(0,0,0,.10);
  padding-top: 22px;
}
.list-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom: 12px;
}
.list-head h3{
  margin:0;
  font-family: "Karla", sans-serif;
  letter-spacing:-.02em;
}
.list{
  border: 1px solid rgba(0,0,0,.10);
  border-radius: var(--radius);
  overflow:hidden;
  background:#fff;
}
.list-row{
  display:grid;
  grid-template-columns: 80px 1fr 120px;
  gap:16px;
  align-items:center;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.list-row:last-child{ border-bottom:none; }
.year{
  font-family: "Karla", sans-serif;
  font-weight:800;
  color: rgba(0,0,0,.72);
}
.list-main strong{
  display:block;
  font-family: "Karla", sans-serif;
  letter-spacing:-.02em;
}
.list-link{
  justify-self:end;
  font-weight:800;
  font-family: "Karla", sans-serif;
  opacity:.85;
}
.list-link:hover{ color: var(--primary); }

/* ---------------- VIDEO STRIP ---------------- */
.video-strip{
  background: #fff;
  padding: 0 0 76px;
}
.video-inner{ }
.video-frame{
  position:relative;
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: var(--shadow);
  background:#000;
  min-height: 300px;
}
.video-frame img{
  width:100%;
  height: 360px;
  object-fit:cover;
  opacity:.92;
  filter: contrast(1.05) saturate(1.05);
}
.play-btn{
  position:absolute;
  inset:auto;
  left:50%;
  top:50%;
  transform: translate(-50%,-50%);
  width: 88px;
  height: 88px;
  border-radius:999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.88);
  cursor:pointer;
  display:grid;
  place-items:center;
  transition: transform .16s ease;
}
.play-btn:hover{
  transform: translate(-50%,-50%) scale(1.03);
}
.play-btn span{
  color: var(--primary);
  font-weight:900;
  font-size: 22px;
  margin-left: 3px;
}

/* ---------------- BLOG ---------------- */
.blog-grid{
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}
.post-card{
  background:#fff;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .16s ease, box-shadow .16s ease;
}
.post-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(0,0,0,.12);
}
.post-card img{
  width:100%;
  height: 190px;
  object-fit: cover;
}
.post-body{
  padding: 14px 16px 16px;
}
.post-meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom: 10px;
}
.post-body h3{
  margin:0 0 10px;
  font-family: "Karla", sans-serif;
  letter-spacing:-.02em;
  line-height:1.15;
}

/* ---------------- LOGOS ---------------- */
.logos{
  margin-top: 30px;
  display:grid;
  grid-template-columns: repeat(6, minmax(0,1fr));
  gap: 10px;
  align-items:center;
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,.10);
}
.logo-item{
  display:flex;
  align-items:center;
  justify-content:center;
  height: 56px;
  border-radius: 16px;
  background: rgba(0,0,0,.03);
  border: 1px solid rgba(0,0,0,.06);
  font-family: "Karla", sans-serif;
  font-weight:900;
  letter-spacing:-.02em;
  color: rgba(0,0,0,.74);
  text-transform:uppercase;
}
.logo-item span{
  opacity:.55;
  margin-left:6px;
  font-weight:900;
}

/* ---------------- CTA ---------------- */
.cta{
  background: var(--primary);
  color: #fff;
  padding: 80px 0;
}
.cta-inner{
  text-align:center;
  max-width: 860px;
}
.cta h2{
  margin:0 0 10px;
  font-family: "Karla", sans-serif;
  font-weight:800;
  letter-spacing:-.04em;
  line-height:1.0;
  font-size: clamp(40px, 4.6vw, 76px);
}
.cta p{
  margin: 0 auto 18px;
  max-width: 62ch;
  color: rgba(255,255,255,.88);
}
.cta-actions{
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
}

/* ---------------- FOOTER ---------------- */
.footer{
  background: var(--paper);
  color: var(--ink);
  padding: 54px 0 22px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.25fr .8fr .9fr;
  gap: 22px;
  align-items:start;
}
.footer-brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-family: "Karla", sans-serif;
  font-weight:900;
}
.footer h4{
  margin: 0 0 10px;
  font-family: "Karla", sans-serif;
  letter-spacing:-.02em;
}
.footer a{
  display:block;
  padding: 6px 0;
  color: rgba(11,11,11,.72);
  font-weight:700;
  font-family: "Karla", sans-serif;
}
.footer a:hover{ color: var(--primary); }

.newsletter{
  margin-top: 14px;
}
.newsletter-row{
  display:flex;
  gap:10px;
  margin-top: 8px;
}
.newsletter input{
  flex:1;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.14);
  font: inherit;
}
.social{
  display:flex;
  gap:12px;
  margin-top: 12px;
}
.social a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.14);
  background:#fff;
  padding:0;
}
.footer-bottom{
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,.10);
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-media{ min-height: 360px; }
  .cards-2x2{ grid-template-columns: 1fr; }
  .band-grid{ grid-template-columns: 1fr; }
  .work-grid{ grid-template-columns: 1fr; }
  .blog-grid{ grid-template-columns: 1fr; }
  .logos{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-grid{ grid-template-columns: 1fr; }
  .nav, .header-cta{ display:none; }
  .menu-btn{ display:inline-block; }
  .list-row{ grid-template-columns: 64px 1fr; }
  .list-link{ justify-self:start; }
}

@media (prefers-reduced-motion: reduce){
  .marquee-row{ animation: none; }
  .btn, .card, .work-card, .post-card{ transition:none; }
}
/* ===== HEADER BLANCO (override) ===== */
.site-header{
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,.10);
}

.brand-name{ color: rgba(0,0,0,.92); }

/* links del nav en negro */
.nav a{
  color: rgba(0,0,0,.78);
}
.nav a:hover{
  background: rgba(0,0,0,.06);
}

/* botones en header */
.header-cta .btn-ghost{
  color: rgba(0,0,0,.82);
  border-color: rgba(0,0,0,.14);
}
.header-cta .btn-ghost:hover{
  background: rgba(0,0,0,.06);
}

/* icono hamburguesa */
.menu-btn{
  border-color: rgba(0,0,0,.14);
}
.menu-btn span{
  background: rgba(0,0,0,.78);
}

/* ===== MODIFIED styles.css (Hero + Header fixes) ===== */
:root{
  --primary:#0000FF;

  --bg:#0b0b0b;
  --bg-2:#101010;
  --text:#f5f6f8;
  --muted:rgba(245,246,248,.72);

  --paper:#ffffff;
  --ink:#0b0b0b;
  --ink-2:#151515;

  --stroke:rgba(255,255,255,.14);
  --stroke-2:rgba(0,0,0,.10);

  --radius:22px;
  --radius-sm:16px;

  --shadow: 0 18px 40px rgba(0,0,0,.18);
  --shadow-soft: 0 14px 30px rgba(0,0,0,.10);

  --container: 1120px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background:#ffffff;
  line-height:1.35;
}

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

/* ---------------- HEADER (WHITE) ---------------- */
.site-header{
  position:sticky;
  top:0;
  z-index:30;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,.10);
}

.brand-name{ color: rgba(0,0,0,.92); }

.nav a{
  color: rgba(0,0,0,.78);
}
.nav a:hover{
  background: rgba(0,0,0,.06);
}

.header-cta .btn-ghost{
  color: rgba(0,0,0,.82);
  border-color: rgba(0,0,0,.14);
}
.header-cta .btn-ghost:hover{
  background: rgba(0,0,0,.06);
}

.menu-btn{
  border-color: rgba(0,0,0,.14);
}
.menu-btn span{
  background: rgba(0,0,0,.78);
}

/* ---------------- HERO (WHITE / CLEAN) ---------------- */
.hero{
  background: var(--paper);
  color: var(--ink);
  padding: 46px 0 24px; /* important fix */
}

.hero .kicker{ color: rgba(0,0,0,.55); }
.hero .lead{ color: rgba(0,0,0,.62); }

.hero-meta{
  border-top: none; /* removes black divider */
}

/* ---------------- MARQUEE FIX ---------------- */
.marquee{
  margin-top: 0;
  border-top: none;
}
/* Video dentro del hero */
.hero-video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-section{
  padding: 56px 0;
  background: #fff;
}

.about-section + .about-section{
  border-top: 1px solid rgba(0,0,0,.08);
}

.about-section-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.about-section--reverse .about-section-grid .about-visual{
  order: 2;
}

.about-visual{
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 360px;           /* altura del cuadro */
  border-radius: var(--radius);
  overflow: hidden;            /* CLAVE */
}

.about-visual img{
  position: absolute;
  inset: 0;                    /* top:0 right:0 bottom:0 left:0 */
  width: 100%;
  height: 100%;
  object-fit: cover;           /* CLAVE */
  object-position: center;
  display: block;
}

.about-text{
  max-width: 70ch;
}

.about-eyebrow{
  margin: 0 0 8px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--primary);
  font-size: 12px;
}

.about-text h2{
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.about-text p{
  color: rgba(0,0,0,.72);
  line-height: 1.75;
  margin: 0 0 12px;
}

.about-text p:last-child{
  margin-bottom: 0;
}

@media (max-width: 980px){
  .about-section-grid{
    grid-template-columns: 1fr;
  }
  .about-section--reverse .about-section-grid .about-visual{
    order: 0;
  }
  .about-visual{
    min-height: 240px;
  }
}
/* ===== LIGHTBOX ===== */
.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.88);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 9999;
}

.lightbox.is-open{
  opacity: 1;
  pointer-events: auto;
}

.lightbox-img{
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
}

.lightbox-close{
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 32px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}
 .project-hero{ padding:56px 0 18px; background:#fff; color:var(--ink); }
    .project-hero-grid{ display:grid; grid-template-columns:1.05fr .95fr; gap:26px; align-items:start; }

    .project-kicker{
      margin:0 0 10px; font-weight:800; letter-spacing:.18em; text-transform:uppercase;
      color:var(--primary); font-size:12px;
    }
    .project-title{
      margin:0 0 12px; letter-spacing:-0.03em; line-height:1.02;
      font-size:clamp(34px, 4.2vw, 64px); font-weight:800;
    }
    .project-lead{
      margin:0 0 18px; color:rgba(0,0,0,.70); line-height:1.7; max-width:74ch;
    }
    .project-actions{ display:flex; gap:10px; flex-wrap:wrap; margin-top:6px; }

    .project-meta{
      margin-top:20px; display:grid; grid-template-columns:repeat(2,minmax(0,1fr));
      gap:12px; padding-top:14px; border-top:1px solid rgba(0,0,0,.08);
    }
    .project-meta .meta-item{ display:flex; flex-direction:column; gap:4px; }
    .project-meta .meta-label{
      font-size:12px; letter-spacing:.12em; text-transform:uppercase;
      color:rgba(0,0,0,.50); font-weight:800;
    }
    .project-meta .meta-value{ color:rgba(0,0,0,.86); font-weight:700; }

    .project-cover{
      border-radius:var(--radius); overflow:hidden; border:1px solid rgba(0,0,0,.10);
      box-shadow:var(--shadow-soft); min-height:360px; position:relative; background:#f6f7fb;
    }
    .project-cover img, .project-cover video{
      position:absolute; inset:0; width:100%; height:100%; object-fit:cover; display:block;
    }
    .project-cover-badge{
      position:absolute; left:14px; bottom:14px; display:flex; align-items:center; gap:10px;
      padding:10px 14px; border-radius:999px; background:rgba(255,255,255,.95);
      border:1px solid rgba(0,0,0,.12);
      box-shadow:0 10px 24px rgba(0,0,0,.12), 0 2px 6px rgba(0,0,0,.06);
    }
    .project-cover-badge strong{ font-weight:800; color:rgba(0,0,0,.90); line-height:1.1; white-space:nowrap; }

    .project-section{ padding:56px 0; background:#fff; }
    .project-section.alt{ background:#fafafa; }

    .project-two-col{
      display:grid; grid-template-columns:1fr 1fr; gap:22px; align-items:start;
    }
    .project-card{
      background:#fff; border:1px solid rgba(0,0,0,.10); border-radius:var(--radius);
      padding:18px; box-shadow:var(--shadow-soft);
    }
    .project-card h3{ margin:0 0 10px; font-size:18px; font-weight:800; letter-spacing:-0.02em; }
    .project-card p{ margin:0; color:rgba(0,0,0,.70); line-height:1.75; }

    .chips{ display:flex; flex-wrap:wrap; gap:8px; margin-top:10px; }
    .chip{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 12px; border-radius:999px;
      border:1px solid rgba(0,0,0,.10); background:#fff;
      color:rgba(0,0,0,.78); font-weight:700; font-size:12px;
    }
    .chip .dot{ width:8px; height:8px; border-radius:999px; background:var(--primary); box-shadow:0 0 0 5px rgba(0,0,255,.14); }

    /* Galería (imágenes/videos) */
    .project-gallery{
      display:grid;
      grid-template-columns:repeat(3, minmax(0, 1fr));
      gap:12px;
      margin-top:16px;
    }
    .project-shot{
      border-radius:18px; overflow:hidden; border:1px solid rgba(0,0,0,.10);
      background:#fff; box-shadow:var(--shadow-soft);
      min-height:210px; position:relative;
      cursor: zoom-in;
    }
    .project-shot img{
      position:absolute; inset:0; width:100%; height:100%; object-fit:cover; display:block;
      transition: transform .25s ease;
    }
    .project-shot:hover img{ transform: scale(1.02); }

    /* Video cards: conservan el formato original (contain) */
    .project-shot.video-shot{ cursor: pointer; padding:10px; display:flex; align-items:center; justify-content:center; }
    .project-shot.video-shot video{
      width:100%;
      height:auto;                 /* conserva proporción */
      max-height:420px;
      object-fit:contain;          /* NO recorta */
      border-radius:12px;
      background:#000;
      display:block;
    }

    /* Sección: título + descripción cortita */
    .subhead{
      display:flex; justify-content:space-between; align-items:flex-end; gap:14px; flex-wrap:wrap;
      margin-top:10px; padding-top:18px; border-top:1px solid rgba(0,0,0,.08);
    }
    .subhead h3{ margin:0; font-size:18px; font-weight:800; letter-spacing:-0.02em; }
    .subhead p{ margin:0; color:rgba(0,0,0,.62); max-width:70ch; line-height:1.6; }

    .project-nav{
      display:flex; justify-content:space-between; align-items:center; gap:12px;
      margin-top:18px; padding-top:18px; border-top:1px solid rgba(0,0,0,.08);
    }

    /* LIGHTBOX (imagen grande) */
    .lightbox{
      position:fixed; inset:0; background:rgba(0,0,0,.88);
      display:flex; align-items:center; justify-content:center;
      opacity:0; pointer-events:none; transition:opacity .25s ease; z-index:9999;
    }
    .lightbox.is-open{ opacity:1; pointer-events:auto; }
    .lightbox-img{
      max-width:92vw; max-height:92vh; object-fit:contain;
      border-radius:16px; box-shadow:0 30px 80px rgba(0,0,0,.45); background:#111;
    }
    .lightbox-close{
      position:absolute; top:22px; right:26px; font-size:34px;
      color:#fff; background:none; border:none; cursor:pointer; line-height:1;
    }

    @media (max-width: 980px){
      .project-hero-grid{ grid-template-columns:1fr; }
      .project-cover{ min-height:260px; }
      .project-two-col{ grid-template-columns:1fr; }
      .project-gallery{ grid-template-columns:1fr; }
    }
    .subhead{
  display:flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,.08);
}
.subhead h3{
  margin:0;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.subhead p{
  margin:0;
  color: rgba(0,0,0,.62);
  max-width: 70ch;
  line-height: 1.6;
}
/* =========================
   CONTACTO
   ========================= */

.contact-grid{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: flex-start;
}

/* Texto / copy */
.contact-copy h2{
  margin: 0 0 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.contact-copy p{
  color: rgba(0,0,0,.70);
  line-height: 1.75;
  max-width: 52ch;
}

/* Lista de datos */
.contact-list{
  margin-top: 22px;
  list-style: none;
  padding: 0;
}

.contact-list li{
  margin-bottom: 10px;
  color: rgba(0,0,0,.75);
  font-weight: 500;
}

/* Formulario */
.contact-form{
  background: #fff;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

/* Rows */
.form-row{
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.form-row label{
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 800;
  margin-bottom: 6px;
  color: rgba(0,0,0,.55);
}

/* Inputs */
.form-row input,
.form-row select,
.form-row textarea{
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.14);
  font-family: inherit;
  font-size: 15px;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.form-row textarea{
  resize: vertical;
  min-height: 120px;
}

/* Focus */
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus{
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,0,255,.08);
}

/* Placeholder */
.form-row input::placeholder,
.form-row textarea::placeholder{
  color: rgba(0,0,0,.35);
}

/* Botón del formulario */
.contact-form .btn{
  margin-top: 10px;
  width: 100%;
}

/* Responsive */
@media (max-width: 900px){
  .contact-grid{
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-copy p{
    max-width: 100%;
  }

  .contact-form{
    padding: 22px;
  }
}
.form-message{
  display: none;
  padding: 14px 16px;
  border-radius: 12px;
  margin-bottom: 16px;
  font-weight: 600;
}

.form-message.is-success{
  display:block;
  color:#0a7a3d;
  background:#e7f6ee;
  border: 1px solid rgba(10,122,61,.18);
}

.form-message.is-error{
  display:block;
  color:#a40000;
  background:#fdeaea;
  border: 1px solid rgba(164,0,0,.18);
}
/* =========================
   CARTA EDITORIAL
   ========================= */

.letter-wrap{
  max-width: 980px;
  margin-inline: auto;
}

.letter-card{
  position: relative;
  background: #fff;
  border-radius: 22px;
  padding: clamp(22px, 3vw, 36px);
  box-shadow:
    0 30px 80px rgba(0,0,0,.08),
    0 10px 24px rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.08);
}

/* Línea editorial lateral */
.letter-card::before{
  content:"";
  position:absolute;
  left: -1px;
  top: 22px;
  bottom: 22px;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(
    to bottom,
    var(--primary),
    rgba(0,0,255,.35)
  );
}

/* Tipografía y ritmo */
.letter-card p{
  line-height: 1.85;
  color: rgba(0,0,0,.78);
  margin-bottom: 14px;
}

.letter-card p strong{
  color: rgba(0,0,0,.92);
}

.letter-salute{
  font-weight: 700;
  margin-bottom: 6px;
}

.letter-highlight{
  font-weight: 700;
  color: rgba(0,0,0,.9);
}

/* Firma */
.letter-signature{
  margin-top: 26px;
  display: grid;
  gap: 6px;
}

.letter-name{
  font-weight: 800;
}

.letter-role{
  font-size: 14px;
  color: rgba(0,0,0,.55);
}

/* Acciones */
.letter-actions{
  margin-top: 22px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 640px){
  .letter-card{
    border-radius: 18px;
  }
}
