/* Fundación Patagonia Fiel — v2 styles (photo-driven) */

:root {
  --accent: #c9a14a;
  --ink: #14181c;
  --ink-soft: #4a4f54;
  --ink-mute: #7a7f84;
  --paper: #faf6ee;
  --paper-warm: #f3ebd9;
  --line: rgba(20, 24, 28, 0.10);
  --navy: #14365b;
  --navy-deep: #0c2240;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --density: 1;
  --pad-x: clamp(20px, 5vw, 96px);
}

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

.v2-site {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
.v2-site a { color: inherit; text-decoration: none; }
.v2-site em {
  font-style: italic;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--accent);
}
.v2-site strong { font-weight: 600; color: var(--navy-deep); }

/* ── SPLASH ── */
.v2-splash {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(12, 34, 64, 0.94);
  opacity: 1;
  transition: opacity 0.8s ease;
}
.v2-splash--fading {
  opacity: 0;
  pointer-events: none;
}
.v2-splash__logo {
  width: clamp(140px, 22vw, 260px);
  height: auto;
  animation: v2-splash-in 1s ease;
}
.v2-splash__word {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  color: var(--paper);
  text-align: center;
  animation: v2-splash-in 1s ease;
}
.v2-splash__word small {
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 6px;
}
.v2-splash__word b {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.02em;
}
@keyframes v2-splash-in {
  from { opacity: 0; transform: scale(0.94); }
  to { opacity: 1; transform: scale(1); }
}

/* ── NAV ── */
.v2-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--pad-x);
  transition: background .3s, padding .25s, backdrop-filter .3s;
}
.v2-nav--scrolled {
  background: rgba(250, 246, 238, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding: 12px var(--pad-x);
}
.v2-nav .v2-nav__brand { display: flex; align-items: center; gap: 12px; color: #ffffff; }
.v2-nav--scrolled .v2-nav__brand { color: #000000; }
.v2-nav__brand img { width: 42px; height: 42px; object-fit: contain; }
.v2-nav__brand span { display: flex; flex-direction: column; line-height: 1; }
.v2-nav__brand small {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.78;
  margin-bottom: 3px;
}
.v2-nav__brand b {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.v2-nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0; padding: 0;
}
.v2-nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: opacity .2s;
}
.v2-nav__links a:hover { opacity: 0.7; }
.v2-nav--scrolled .v2-nav__links a { color: var(--ink-soft); }
.v2-nav__cta {
  background: var(--accent);
  color: var(--navy-deep) !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.v2-nav__cta:hover { opacity: 1 !important; transform: translateY(-1px); }
.v2-nav__burger { display: none; }
#proposito, #equipo, [id^="proyecto-"], [id^="noticia-"] { scroll-margin-top: 100px; }
.v2-nav__item--dropdown { position: relative; }
.v2-nav__submenu {
  position: absolute;
  top: 100%; left: 50%;
  transform: translate(-50%, 6px);
  min-width: 160px;
  list-style: none;
  margin: 0; padding: 10px 0;
  background: var(--paper);
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(12,34,64,0.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s, transform .2s, visibility .2s;
}
.v2-nav__item--dropdown:hover .v2-nav__submenu,
.v2-nav__item--dropdown:focus-within .v2-nav__submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.v2-nav__submenu a {
  display: block;
  padding: 8px 20px;
  color: var(--ink-soft) !important;
  font-size: 13px;
  white-space: nowrap;
}
.v2-nav__submenu a:hover { opacity: 1; background: var(--paper-warm); }

/* ── HERO ── */
.v2-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--pad-x) 0;
  color: var(--paper);
  overflow: hidden;
}
.v2-hero__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.v2-hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(12,34,64,0.65) 0%, rgba(12,34,64,0.35) 35%, rgba(12,34,64,0.78) 100%);
  z-index: 1;
}
.v2-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin-top: auto;
  padding-bottom: 80px;
}
.v2-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 9px 16px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.v2-hero__dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(201, 161, 74, 0.35);
}
.v2-hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(48px, 7vw, 112px);
  line-height: 0.96;
  letter-spacing: -0.018em;
  margin: 0 0 28px;
  text-wrap: balance;
}
.v2-hero__lede {
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.55;
  max-width: 580px;
  margin: 0 0 36px;
  color: rgba(255,255,255,0.88);
  text-wrap: pretty;
}
.v2-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.v2-hero__meta {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 60px;
  padding: 28px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.v2-hero__meta div { display: flex; flex-direction: column; gap: 4px; }
.v2-hero__meta span {
  font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.v2-hero__meta b {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ── BUTTONS ── */
.v2-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .15s, background .2s;
  text-decoration: none;
}
.v2-btn:hover { transform: translateY(-1px); }
.v2-btn--primary { background: var(--accent); color: var(--navy-deep); }
.v2-btn--primary:hover { background: #d6ad55; }
.v2-btn--ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(255,255,255,0.4);
}
.v2-btn--ghost:hover { background: rgba(255,255,255,0.1); }
.v2-btn--block { width: 100%; justify-content: center; }

/* ── SECTIONS ── */
.v2-section {
  padding: calc(120px * var(--density)) var(--pad-x);
  position: relative;
}
.v2-section--manifiesto { padding-top: calc(140px * var(--density)); }

/* ── SCROLL REVEAL ── */
.v2-reveal {
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}
.v2-reveal--left { transform: translateX(-90px); }
.v2-reveal--right { transform: translateX(90px); }
.v2-reveal--visible { opacity: 1; transform: translateX(0); }
@media (prefers-reduced-motion: reduce) {
  .v2-reveal { opacity: 1; transform: none; transition: none; }
}
.v2-section--programa { padding: 0 0 calc(120px * var(--density)); }
.v2-section--plan { background: var(--paper-warm); }
.v2-section--colab { padding: 0; }
.v2-section--contact { padding: calc(120px * var(--density)) var(--pad-x); background: var(--paper-warm); }

.v2-section__head { max-width: 920px; margin-bottom: calc(64px * var(--density)); }
.v2-section__head--light { color: var(--paper); }

.v2-label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  font-weight: 700;
}
.v2-label--light { color: var(--accent); }

.v2-h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(36px, 4.8vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.014em;
  margin: 0 0 16px;
  color: var(--navy-deep);
  text-wrap: balance;
}
.v2-h2--light { color: var(--paper); }
.v2-h2--light em { color: var(--accent); }
.v2-h2-sub {
  font-size: 19px;
  color: var(--ink-soft);
  margin: 0;
  max-width: 640px;
  text-wrap: pretty;
}
.v2-h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.1;
  margin: 0 0 8px;
  color: var(--navy-deep);
}

.v2-lede {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 18px;
  text-wrap: pretty;
}

/* ── MANIFIESTO ── */
.v2-grid--manifiesto {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(80px * var(--density));
  align-items: center;
}
.v2-mani__photos {
  position: relative;
  height: 640px;
}
.v2-mani__photo {
  position: absolute;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 24px 60px -28px rgba(12,34,64,0.45);
}
.v2-mani__photo--1 { width: 62%; height: 62%; top: 0; left: 0; }
.v2-mani__photo--2 { width: 55%; height: 44%; bottom: 0; right: 0; border: 6px solid var(--paper); }
.v2-mani__map { border: 0; background: var(--paper-warm); }
.v2-mani__sig {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  color: var(--navy-deep);
}
.v2-mani__sig span {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── PHOTO QUOTE ── */
.v2-quote {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 100px var(--pad-x);
  color: var(--paper);
  overflow: hidden;
}
.v2-quote__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.v2-quote__veil {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(12,34,64,0.78), rgba(12,34,64,0.4));
}
.v2-quote--right .v2-quote__veil { background: linear-gradient(240deg, rgba(12,34,64,0.78), rgba(12,34,64,0.4)); }
.v2-quote__inner {
  position: relative;
  max-width: 760px;
}
.v2-quote--right .v2-quote__inner { margin-left: auto; }
.v2-quote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.2;
  letter-spacing: -0.005em;
  margin: 0 0 22px;
  color: var(--paper);
  text-wrap: balance;
  position: relative;
}
.v2-quote__mark {
  font-size: 1.4em;
  color: var(--accent);
  margin-right: 6px;
  line-height: 0;
}
.v2-quote cite {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* ── QUIENES ── */
.v2-objetivo {
  position: relative;
  max-width: 760px;
  margin: 0 0 calc(72px * var(--density));
  padding: 8px 0 8px 32px;
  border-left: 3px solid var(--accent);
}
.v2-objetivo p {
  margin: 10px 0 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.35;
  color: var(--navy-deep);
}
.v2-fines-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: calc(72px * var(--density));
  align-items: stretch;
}
.v2-fines {
  background: var(--paper-warm);
  border-radius: 6px;
  padding: 44px 40px;
}
.v2-fines__head {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.v2-fines__list {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 16px;
}
.v2-fines__list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
}
.v2-fines__list span {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  font-weight: 700;
  padding-top: 4px;
}
.v2-fines__list p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.v2-fines__photo {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 6px;
}

.v2-team__head { margin-bottom: 40px; }
.v2-team__paged {
  display: flex;
  align-items: center;
  gap: 20px;
}
.v2-team__arrow {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  transition: background .2s, transform .2s, color .2s;
}
.v2-team__arrow:hover {
  background: var(--accent);
  color: var(--navy-deep);
  transform: scale(1.06);
}
.v2-team__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.v2-team__dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--line);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}
.v2-team__dot--active { background: var(--accent); transform: scale(1.2); }
.v2-team__grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.v2-team__card { margin: 0; }
.v2-team__photo {
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  margin-bottom: 16px;
  background: var(--paper-warm);
  perspective: 1200px;
}
.v2-team__flip {
  position: relative;
  width: 100%; height: 100%;
  transition: transform 1.1s cubic-bezier(.4,.2,.2,1);
  transform-style: preserve-3d;
}
.v2-team__card:hover .v2-team__flip { transform: rotateY(180deg); }
.v2-team__face {
  position: absolute; inset: 0;
  backface-visibility: hidden;
  border-radius: 6px;
  overflow: hidden;
}
.v2-team__face--front img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.92);
}
.v2-team__face--back {
  transform: rotateY(180deg);
  background: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
}
.v2-team__face--back p {
  margin: 0;
  color: var(--paper);
  font-size: 13.5px;
  line-height: 1.6;
  text-align: center;
}
.v2-team__card figcaption { display: flex; flex-direction: column; gap: 4px; }
.v2-team__card b {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy-deep);
}
.v2-team__card span {
  font-size: 13px;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
}

/* ── QUIENES COVER ── */
.v2-qcover {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  padding: 0 var(--pad-x) 64px;
  overflow: hidden;
}
.v2-qcover__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.v2-qcover__veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,34,64,0.25) 0%, rgba(12,34,64,0.8) 100%);
}
.v2-qcover__inner { position: relative; max-width: 800px; }

/* ── PROGRAMA ── */
.v2-prog__hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  padding: 0 var(--pad-x) 80px;
  margin-bottom: calc(96px * var(--density));
  overflow: hidden;
}
.v2-prog__hero img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.v2-prog__hero-veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,34,64,0.3) 0%, rgba(12,34,64,0.85) 100%);
}
.v2-prog__hero-copy { position: relative; max-width: 800px; }
.v2-prog__sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 28px);
  color: rgba(255,255,255,0.88);
  margin: 12px 0 0;
}

.v2-prog__body {
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1fr;
  gap: calc(72px * var(--density));
  max-width: 1400px;
  margin: 0 auto;
}
.v2-prog__intro { max-width: 760px; }

.v2-prog__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.v2-prog__cell {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: center;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  padding: 10px;
  margin: -10px;
  border-radius: 10px;
  transition: background .2s, transform .2s;
}
.v2-prog__cell:hover {
  background: var(--paper-warm);
  transform: translateY(-2px);
}
.v2-prog__cell-photo { position: relative; }
.v2-prog__cell img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
}
.v2-prog__cell-num {
  position: absolute;
  top: 8px; left: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--navy-deep);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
}
.v2-prog__cell h4 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--navy-deep);
  margin: 0 0 8px;
}
.v2-prog__cell p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
}

.v2-prog__team {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 40px;
  background: var(--paper-warm);
  border-radius: 6px;
}
.v2-prog__team p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
}

/* ── PROYECTO DETALLE ── */
.v2-proydet {
  min-height: 100vh;
  padding: 32px var(--pad-x);
  display: flex;
  align-items: center;
}
.v2-proydet__card {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 0;
  background: var(--paper);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 18px 48px -28px rgba(12,34,64,0.25);
}
.v2-proydet--rev .v2-proydet__card { direction: rtl; }
.v2-proydet--rev .v2-proydet__card > * { direction: ltr; }
.v2-proydet__photo { position: relative; height: 100%; min-height: 420px; }
.v2-proydet__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.v2-proydet__num {
  position: absolute;
  top: 24px; left: 24px;
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 1;
  font-weight: 500;
  color: var(--accent);
  text-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.v2-proydet__body {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 16px;
}
.v2-proydet__body h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 36px;
  margin: 0;
  color: var(--navy-deep);
  line-height: 1.1;
}
.v2-proydet__bhead {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--navy-deep);
  margin-top: 8px;
  line-height: 1.15;
}
.v2-proydet__body ul {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 12px;
}
.v2-proydet__body li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.v2-proydet__body li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 10px; height: 1px;
  background: var(--accent);
}
.v2-proydet__back {
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  margin-top: 8px;
}
.v2-proydet__back:hover { opacity: 0.75; }

/* ── NOVEDADES ── */
.v2-news {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(56px * var(--density)) 40px;
}
.v2-news__photo {
  aspect-ratio: 16 / 11;
  border-radius: 6px;
  overflow: hidden;
  background: var(--paper-warm);
  margin-bottom: 20px;
}
.v2-news__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s;
}
.v2-news__card:hover .v2-news__photo img { transform: scale(1.04); }
.v2-news__card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  margin: 0 0 8px;
  color: var(--navy-deep);
}
.v2-news__card p {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.v2-news__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  transition: background .2s, color .2s;
}
.v2-news__btn:hover { background: var(--ink); color: var(--paper); }

/* ── NOTICIA DETALLE ── */
.v2-newsdet {
  min-height: 100vh;
  padding: 32px var(--pad-x);
  display: flex;
  align-items: center;
}
.v2-newsdet__card {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--paper);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 18px 48px -28px rgba(12,34,64,0.25);
}
.v2-newsdet--rev .v2-newsdet__card { direction: rtl; }
.v2-newsdet--rev .v2-newsdet__card > * { direction: ltr; }
.v2-newsdet__photo { position: relative; min-height: 420px; }
.v2-newsdet__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.v2-newsdet__body {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.v2-newsdet__body h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 36px;
  margin: 0;
  color: var(--navy-deep);
  line-height: 1.1;
}
.v2-newsdet__back {
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  margin-top: 8px;
}
.v2-newsdet__back:hover { opacity: 0.75; }

/* ── COLABORAR ── */
.v2-section--colab { position: relative; min-height: 80vh; overflow: hidden; }
.v2-colab__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.v2-colab__veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,34,64,0.85), rgba(12,34,64,0.78));
}
.v2-colab__inner {
  position: relative;
  padding: calc(120px * var(--density)) var(--pad-x);
  color: var(--paper);
}
.v2-ways {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.v2-ways__card {
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
  border-radius: 6px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background .25s;
}
.v2-ways__card:hover { background: rgba(255,255,255,0.08); }
.v2-ways__card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  margin: 0;
}
.v2-ways__card p {
  color: rgba(255,255,255,0.78);
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  flex: 1;
}
.v2-ways__card a {
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 16px;
  margin-top: 4px;
}

/* ── GALERÍA ── */
.v2-gallery {
  display: flex;
  align-items: center;
  gap: 20px;
}
.v2-gallery__frame {
  flex: 1;
  aspect-ratio: 16 / 8;
  max-height: 500px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--paper-warm);
}
.v2-gallery__img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.v2-gallery__arrow {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  transition: background .2s, transform .2s, color .2s;
}
.v2-gallery__arrow:hover {
  background: var(--accent);
  color: var(--navy-deep);
  transform: scale(1.06);
}
.v2-gallery__credit {
  text-align: center;
  margin-top: 14px;
  font-size: 13px;
  color: var(--ink-mute);
}
.v2-gallery__credit a {
  color: var(--ink-soft);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.v2-gallery__credit a:hover { color: var(--accent); }
.v2-gallery__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}
.v2-gallery__dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--line);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}
.v2-gallery__dot--active { background: var(--accent); transform: scale(1.2); }

@media (max-width: 640px) {
  .v2-gallery { gap: 10px; }
  .v2-gallery__arrow { width: 40px; height: 40px; }
  .v2-team__paged { gap: 10px; }
  .v2-team__arrow { width: 36px; height: 36px; }
}

/* ── CONTACTO ── */
.v2-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(72px * var(--density));
  align-items: start;
  max-width: 1300px;
  margin: 0 auto;
}
.v2-contact__data { display: grid; gap: 22px; margin-top: 36px; }
.v2-contact__data > div { border-top: 1px solid var(--line); padding-top: 16px; }
.v2-contact__data dt {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
  font-weight: 700;
}
.v2-contact__data dd { margin: 0; font-size: 16px; line-height: 1.5; }
.v2-contact__data a:hover { color: var(--navy); text-decoration: underline; }
.v2-contact__form {
  display: flex; flex-direction: column; gap: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 40px;
}
.v2-contact__form label { display: flex; flex-direction: column; gap: 6px; }
.v2-contact__form span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 700;
}
.v2-contact__form span i { font-style: italic; color: var(--ink-mute); font-weight: 400; text-transform: none; letter-spacing: 0; }
.v2-contact__form input,
.v2-contact__form textarea {
  font: inherit;
  font-size: 15px;
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 12px 14px;
  color: var(--ink);
  font-family: var(--font-body);
  resize: vertical;
}
.v2-contact__form input:focus,
.v2-contact__form textarea:focus { outline: none; border-color: var(--navy); }

/* ── FOOTER ── */
.v2-footer {
  position: relative;
  padding: 0;
  color: var(--paper);
  overflow: hidden;
}
.v2-footer__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.v2-footer__veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,34,64,0.7), rgba(12,34,64,0.95));
}
.v2-footer__inner {
  position: relative;
  padding: 100px var(--pad-x) 28px;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  gap: 40px;
}
.v2-footer__brand { display: flex; align-items: center; gap: 16px; }
.v2-footer__brand img {
  width: 56px; height: 56px;
  background: var(--paper);
  padding: 4px;
  border-radius: 50%;
}
.v2-footer__brand small {
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}
.v2-footer__brand b {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
}
.v2-footer__obj {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 30px);
  font-style: italic;
  line-height: 1.4;
  color: rgba(255,255,255,0.92);
  margin: 0;
  max-width: 920px;
  text-wrap: balance;
}
.v2-footer__bot {
  display: flex;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.14);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.55);
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .v2-nav__burger {
    display: flex; flex-direction: column; gap: 5px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    width: 40px; height: 40px; border-radius: 8px;
    align-items: center; justify-content: center;
    cursor: pointer;
  }
  .v2-nav__burger span { width: 18px; height: 1.5px; background: var(--paper); }
  .v2-nav--scrolled .v2-nav__burger { background: var(--paper-warm); border-color: var(--line); }
  .v2-nav--scrolled .v2-nav__burger span { background: var(--ink); }
  .v2-nav__links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--paper);
    padding: 24px var(--pad-x);
    gap: 20px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px -28px rgba(0,0,0,0.3);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: .25s;
  }
  .v2-nav__links--open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .v2-nav__links li { width: 100%; }
  .v2-nav__links a { display: block; padding: 6px 0; color: var(--ink-soft); }
  .v2-nav__submenu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    background: none;
    padding: 0 0 0 16px;
    margin-top: 4px;
  }
  .v2-nav__submenu a { padding: 6px 0; font-size: 13px; }

  .v2-hero { min-height: 90vh; }
  .v2-hero__inner { padding-bottom: 40px; }
  .v2-hero__meta { flex-direction: column; gap: 14px; padding: 18px 0 24px; }

  .v2-grid--manifiesto, .v2-fines-wrap, .v2-prog__grid,
  .v2-prog__team, .v2-ways, .v2-contact, .v2-footer__bot {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .v2-mani__photos { height: 380px; }
  .v2-team__grid { grid-template-columns: repeat(2, 1fr); }
  .v2-news { grid-template-columns: 1fr; gap: 48px; }
  .v2-proydet { min-height: 0; padding: 60px var(--pad-x); }
  .v2-proydet__card, .v2-proydet--rev .v2-proydet__card { grid-template-columns: 1fr; direction: ltr; }
  .v2-proydet__photo { min-height: 240px; }
  .v2-proydet__body { padding: 36px 28px; }
  .v2-newsdet { min-height: 0; padding: 60px var(--pad-x); }
  .v2-newsdet__card, .v2-newsdet--rev .v2-newsdet__card { grid-template-columns: 1fr; direction: ltr; }
  .v2-newsdet__photo { min-height: 240px; }
  .v2-newsdet__body { padding: 36px 28px; }
  .v2-prog__cell { grid-template-columns: 100px 1fr; gap: 16px; }
  .v2-prog__cell img { aspect-ratio: 1; }
  .v2-section { padding: 80px var(--pad-x); }
  .v2-quote { padding: 80px var(--pad-x); min-height: 60vh; }
  .v2-footer__bot { gap: 8px; }
}
@media (max-width: 520px) {
  .v2-team__grid { grid-template-columns: 1fr; }
  .v2-prog__cell { grid-template-columns: 1fr; }
  .v2-prog__cell img { aspect-ratio: 16/9; }
}
