:root {
  --bg-main: #eceae6;
  --bg-soft: #f6f4f1;
  --paper: #faf9f7;
  --ink: #131313;
  --muted: #4b4a46;
  --line: rgba(19, 19, 19, 0.25);
  --line-soft: rgba(19, 19, 19, 0.12);
  --green-strong: #0b7e4b;
  --green-dark: #0b5d32;
  --green-soft: #1a9e62;
  --lime: #c8d71e;
  --lime-dark: #a7b412;
  --radius: 3px;
  --shadow-soft: 0 18px 36px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  background: var(--bg-main);
  color: var(--ink);
  font-family: "Figtree", sans-serif;
  line-height: 1.5;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 85% 22%, rgba(200, 215, 30, 0.1), transparent 46%),
    radial-gradient(circle at 12% 68%, rgba(11, 126, 75, 0.08), transparent 40%),
    linear-gradient(180deg, #eceae6 0, #eceae6 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(236, 234, 230, 0.97);
  backdrop-filter: blur(7px);
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.site-header.home-hero-mode .header-wrap {
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}

.site-header.home-hero-mode {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  border-bottom-color: transparent;
  background: transparent;
  backdrop-filter: none;
}

.site-header.home-hero-top {
  background: rgba(13, 18, 26, 0.42);
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.site-header.home-hero-top .main-nav a,
.site-header.home-hero-top .drop-trigger,
.site-header.home-hero-top .main-nav .active-link,
.site-header.home-hero-top .drop-trigger.active {
  color: #f5f5f2;
}

.site-header.home-hero-top .main-nav a:hover,
.site-header.home-hero-top .main-nav a:focus-visible,
.site-header.home-hero-top .drop-trigger:hover,
.site-header.home-hero-top .drop-trigger:focus-visible {
  color: #ffffff;
  background: rgba(200, 215, 30, 0.2);
}

.site-header.home-hero-top .dropdown {
  background: rgba(15, 19, 27, 0.96);
  border-color: rgba(255, 255, 255, 0.26);
}

.site-header.home-hero-top .dropdown a {
  color: #f2f3ef;
}

.site-header.home-hero-top .dropdown a:hover,
.site-header.home-hero-top .dropdown a:focus-visible {
  background: rgba(200, 215, 30, 0.22);
  color: #fff;
}

.site-header.home-hero-top .menu-toggle {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(14, 19, 27, 0.45);
}

.site-header.home-hero-top .menu-toggle span {
  background: #f5f5f2;
}

.site-header.home-hero-scrolled {
  background: rgba(236, 234, 230, 0.97);
  border-bottom-color: var(--line-soft);
  backdrop-filter: blur(7px);
}

.header-wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 6px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  height: 116px;
  width: auto;
  max-width: 640px;
  object-fit: contain;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav li {
  position: relative;
}

.main-nav a,
.drop-trigger {
  font-family: "Figtree", sans-serif;
  font-size: 0.96rem;
  font-weight: 500;
  color: #181818;
  border: 0;
  background: transparent;
  padding: 9px 11px;
  border-radius: 2px;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.drop-trigger:hover,
.drop-trigger:focus-visible {
  color: var(--green-strong);
  background: rgba(11, 126, 75, 0.09);
  outline: none;
}

.drop-trigger::after {
  content: "▼";
  font-size: 0.56rem;
  margin-left: 6px;
  vertical-align: middle;
}

.main-nav .active-link,
.drop-trigger.active {
  color: var(--green-strong);
}

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 320px;
  padding: 8px;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.18s ease;
}

.dropdown a {
  display: block;
  padding: 8px 10px;
  font-size: 0.95rem;
}

.dropdown a:hover,
.dropdown a:focus-visible {
  background: rgba(200, 215, 30, 0.17);
  color: #101010;
}

.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .dropdown,
.has-dropdown.open > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 34px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 2px;
  padding: 7px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: #151515;
}

main {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 20px 22px 70px;
  flex: 1 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 26px;
  align-items: center;
  min-height: 60vh;
}

.hero-copy {
  order: 1;
}

.hero-card {
  order: 2;
  background: transparent;
  border: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.hero-card img {
  width: min(100%, 620px);
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.08));
}

.hero-home-logo {
  border-radius: 28px;
}

.hero-glow {
  display: none;
}

.hero-media-slider {
  position: relative;
  width: min(100%, 760px);
  min-height: clamp(340px, 52vw, 620px);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 42px rgba(8, 10, 16, 0.22);
}

.hero-media-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.55s ease;
}

.hero-media-slider img.is-active {
  opacity: 1;
}

.hero-media-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(130deg, rgba(8, 12, 20, 0.14) 0, rgba(8, 12, 20, 0.03) 45%, rgba(8, 12, 20, 0.2) 100%);
  pointer-events: none;
}

.hero.hero--immersive {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 0;
  min-height: 100svh;
  display: block;
  position: relative;
  overflow: visible;
}

.hero.hero--immersive .hero-media-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  min-height: 100%;
  border-radius: 0;
  box-shadow: none;
}

.hero.hero--immersive .hero-media-overlay {
  background:
    linear-gradient(90deg, rgba(6, 10, 17, 0.46) 0, rgba(6, 10, 17, 0.28) 38%, rgba(6, 10, 17, 0.18) 60%, rgba(6, 10, 17, 0.36) 100%),
    linear-gradient(180deg, rgba(6, 10, 17, 0.16) 0, rgba(6, 10, 17, 0.34) 100%);
}

.hero.hero--immersive .hero-copy {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  min-height: 100svh;
  padding: clamp(120px, 15vh, 178px) 22px clamp(56px, 9vh, 94px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.hero.hero--immersive .eyebrow {
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.11em;
}

.hero.hero--immersive h1 {
  color: #fbfbf8;
  max-width: 10.8ch;
  font-size: clamp(2.6rem, 5.6vw, 5rem);
  line-height: 0.94;
  margin-bottom: clamp(10px, 2vw, 20px);
}

.hero.hero--immersive p {
  color: rgba(244, 244, 239, 0.95);
  font-size: clamp(1.03rem, 1.2vw, 1.42rem);
  max-width: 52ch;
}

.body-home-immersive main {
  padding-top: 0;
}

.eyebrow {
  margin: 0 0 8px;
  font-size: 0.82rem;
  color: var(--green-strong);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}

.hero h1 {
  margin: 0 0 12px;
  max-width: 11ch;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  line-height: 0.95;
  font-weight: 500;
}

.hero p {
  margin: 0;
  font-size: 1.18rem;
  color: var(--muted);
  max-width: 47ch;
}

.hero-cta {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  padding: 10px 18px;
  border: 1px solid #171717;
  border-radius: 0;
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

.btn-primary {
  background: #171717;
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: #171717;
}

.focus-orbit {
  margin-top: 42px;
}

.focus-orbit-head h2 {
  margin: 0;
  max-width: 30ch;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3.9vw, 3.1rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  font-weight: 500;
}

.focus-orbit-copy {
  margin-top: 20px;
  max-width: 860px;
}

.focus-orbit-copy p {
  margin: 0;
  max-width: 62ch;
  color: #2a2a26;
  font-size: 1.08rem;
  line-height: 1.62;
}

.focus-checklist {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 11px;
  max-width: 420px;
}

.focus-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #191916;
  font-size: 1.03rem;
  line-height: 1.35;
  opacity: 0;
  transform: translateY(10px);
}

.focus-orbit.is-visible .focus-checklist li {
  animation: focusItemIn 0.55s ease forwards;
}

.focus-orbit.is-visible .focus-checklist li:nth-child(1) { animation-delay: 0.08s; }
.focus-orbit.is-visible .focus-checklist li:nth-child(2) { animation-delay: 0.16s; }
.focus-orbit.is-visible .focus-checklist li:nth-child(3) { animation-delay: 0.24s; }
.focus-orbit.is-visible .focus-checklist li:nth-child(4) { animation-delay: 0.32s; }
.focus-orbit.is-visible .focus-checklist li:nth-child(5) { animation-delay: 0.40s; }
.focus-orbit.is-visible .focus-checklist li:nth-child(6) { animation-delay: 0.48s; }

@keyframes focusItemIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.focus-checklist svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-top: 1px;
  fill: none;
  stroke: #10100f;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-panels {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.menu-panels article {
  background: var(--bg-soft);
  border: 1px solid var(--line-soft);
  padding: 18px;
}

.menu-panels h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  line-height: 1.08;
  font-weight: 500;
}

.menu-panels p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.panel-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--green-dark);
  border-bottom: 1px solid var(--green-dark);
  font-size: 0.94rem;
  font-weight: 600;
}

.activities-showcase {
  margin-top: clamp(60px, 8vw, 96px);
}

.activities-showcase .section-head h2 {
  max-width: 18ch;
}

.activities-showcase-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.activity-showcase-card {
  position: relative;
  display: block;
  min-height: 465px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: #111827;
}

.activity-showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform 0.45s ease;
}

.activity-showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 10, 20, 0.42) 0%, rgba(7, 10, 20, 0.12) 32%, rgba(7, 10, 20, 0.06) 58%, rgba(7, 10, 20, 0) 76%);
  pointer-events: none;
}

.activity-showcase-card span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 1;
  min-height: 76px;
  display: grid;
  place-items: center;
  padding: 10px 14px;
  background: rgba(250, 249, 247, 0.96);
  color: var(--green-dark);
  font-family: "Figtree", sans-serif;
  font-size: 0.97rem;
  letter-spacing: 0.01em;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}

.activity-showcase-card:hover img {
  transform: scale(1.05);
}

.partners-marquee {
  margin-top: clamp(42px, 6vw, 72px);
}

.section-head--compact h2 {
  max-width: 24ch;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.04;
}

.partners-marquee-viewport {
  margin-top: 18px;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 14px 0;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0, #000 4%, #000 96%, transparent 100%);
}

.partners-marquee-viewport--row-z {
  margin-top: 10px;
}

.partners-marquee-track {
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
}

.partners-marquee-track--left {
  animation: sociosMarqueeLeft 90s linear infinite;
}

.partners-marquee-track--right {
  animation: sociosMarqueeRight 90s linear infinite;
}

.partners-marquee-viewport:hover .partners-marquee-track {
  animation-play-state: paused;
}

.partners-marquee-item {
  flex: 0 0 auto;
  width: 170px;
  height: 88px;
  border: 1px solid #dfe1d7;
  border-radius: 8px;
  background: rgba(250, 249, 247, 0.9);
  display: grid;
  place-items: center;
  padding: 10px 12px;
  transition: border-color 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.partners-marquee-item img {
  max-width: 100%;
  max-height: 62px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) contrast(0.95) brightness(0.55);
  opacity: 0.92;
  transition: filter 0.24s ease, opacity 0.24s ease;
}

.partners-marquee-item:hover {
  border-color: #bec8a8;
  transform: translateY(-1px);
  background: rgba(252, 252, 250, 0.98);
}

.partners-marquee-item:hover img {
  filter: grayscale(0.15) contrast(1);
  opacity: 1;
}

@keyframes sociosMarqueeLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes sociosMarqueeRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.news-section,
.events-section {
  margin-top: 64px;
}

.section-head h2 {
  margin: 0;
  max-width: 18ch;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
  line-height: 1;
  font-weight: 500;
}

.news-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.news-card {
  border: 1px solid var(--line-soft);
  background: var(--paper);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.news-cover {
  width: 100%;
  height: 205px;
  object-fit: cover;
}

.news-card .tag {
  display: inline-block;
  align-self: flex-start;
  color: var(--green-strong);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.news-card h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 2.02rem;
  line-height: 1.02;
  font-weight: 500;
}

.news-card p {
  margin: 0;
  color: var(--muted);
}

.news-card a {
  margin-top: auto;
  display: inline-block;
  border-bottom: 1px solid var(--line);
  width: fit-content;
  font-weight: 600;
  font-size: 0.94rem;
}

.events-list {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

.event-item {
  display: grid;
  grid-template-columns: 112px 1fr 210px;
  gap: 18px;
  border: 1px solid var(--line-soft);
  background: var(--paper);
  padding: 16px;
}

.event-date span {
  color: var(--green-strong);
  text-transform: lowercase;
  font-size: 0.9rem;
}

.event-date strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 2.35rem;
  line-height: 1;
}

.event-date small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.84rem;
}

.event-copy h3 {
  margin: 0 0 8px;
  font-family: "Playfair Display", serif;
  font-size: 2.05rem;
  line-height: 1.02;
  font-weight: 500;
}

.event-copy p {
  margin: 0 0 8px;
  color: var(--muted);
}

.event-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.event-list-image {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line-soft);
  background: #fff;
}

.pill {
  border: 1px solid var(--line);
  background: #fffdfb;
  padding: 7px 10px;
  font-size: 0.84rem;
}

.link-inline {
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════
   CONOCENOS PAGE — Redesign (airy, editorial layout)
   ═══════════════════════════════════════════════════ */

.conocenos-page {
  margin-top: 0;
  display: grid;
  gap: 0;
}

/* ─── Hero ─── */
.conocenos-hero {
  padding: clamp(60px, 10vw, 140px) 0 clamp(48px, 8vw, 100px);
  max-width: 820px;
}

.conocenos-eyebrow {
  margin: 0 0 20px;
  font-family: "Figtree", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green-strong);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.conocenos-title {
  margin: 0 0 28px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  line-height: 1.02;
  font-weight: 500;
  color: #0f0f0f;
  max-width: 16ch;
}

.conocenos-lead {
  margin: 0;
  font-family: "Figtree", sans-serif;
  font-size: clamp(1.15rem, 1.4vw, 1.4rem);
  line-height: 1.7;
  color: #3d3d38;
  max-width: 54ch;
}

/* ─── Era sections ─── */
.conocenos-era {
  padding: clamp(40px, 6vw, 80px) 0;
}

.conocenos-era-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}

.conocenos-era-row.is-reverse {
  direction: rtl;
}

.conocenos-era-row.is-reverse > * {
  direction: ltr;
}

.conocenos-era-copy {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.conocenos-era-label {
  display: inline-block;
  margin-bottom: 16px;
  font-family: "Figtree", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-strong);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.conocenos-era-title {
  margin: 0 0 24px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 1.08;
  font-weight: 500;
  color: #111;
}

.conocenos-era-copy p {
  margin: 0 0 18px;
  font-family: "Figtree", sans-serif;
  font-size: clamp(1.02rem, 1.1vw, 1.14rem);
  line-height: 1.78;
  color: #2f2f2c;
  max-width: 52ch;
}

.conocenos-era-copy p:last-child {
  margin-bottom: 0;
}

.conocenos-bullet-list {
  margin: 8px 0 0;
  padding: 0 0 0 6px;
  list-style: none;
  display: grid;
  gap: 14px;
}

.conocenos-bullet-list li {
  position: relative;
  padding-left: 22px;
  font-family: "Figtree", sans-serif;
  font-size: 1.02rem;
  line-height: 1.72;
  color: #2f2f2c;
}

.conocenos-bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-strong);
  opacity: 0.55;
}

.conocenos-era-media {
  margin: 0;
  overflow: hidden;
}

.conocenos-era-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(320px, 28vw, 520px);
  object-fit: cover;
  transition: transform 0.5s ease;
}

.conocenos-era:hover .conocenos-era-media img {
  transform: scale(1.03);
}

/* ─── Divider ─── */
.conocenos-divider {
  border: none;
  border-top: 1px solid var(--line-soft);
  margin: 0 auto;
  width: min(100%, 680px);
}

/* ─── Section titles (shared) ─── */
.conocenos-section-title {
  margin: 0 0 clamp(32px, 4vw, 56px);
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.05;
  font-weight: 500;
  color: #111;
  text-align: center;
}

/* ─── Identity (Mission/Vision/Values) ─── */
.conocenos-identity {
  padding: clamp(48px, 7vw, 100px) 0;
}

.conocenos-identity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.8vw, 36px);
}

.conocenos-identity-card {
  padding: clamp(28px, 3vw, 42px) clamp(24px, 2.6vw, 36px);
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-left: 3px solid var(--green-strong);
  display: grid;
  align-content: start;
  gap: 16px;
}

.conocenos-identity-card h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  line-height: 1.1;
  font-weight: 500;
  color: #111;
}

.conocenos-identity-card p {
  margin: 0;
  font-family: "Figtree", sans-serif;
  font-size: 1.04rem;
  line-height: 1.76;
  color: #3a3a36;
}

.conocenos-identity-card ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.conocenos-identity-card ul li {
  position: relative;
  padding-left: 20px;
  font-family: "Figtree", sans-serif;
  font-size: 1.04rem;
  line-height: 1.72;
  color: #3a3a36;
}

.conocenos-identity-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-strong);
  opacity: 0.5;
}

/* ─── Highlight / Blockquote ─── */
.conocenos-highlight {
  padding: clamp(48px, 7vw, 100px) clamp(24px, 5vw, 80px);
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.conocenos-quote {
  margin: 0 0 32px;
  padding: 0;
  border: none;
}

.conocenos-quote p {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  line-height: 1.55;
  color: #1a1a18;
  font-style: italic;
  font-weight: 400;
}

.conocenos-highlight-body {
  margin: 0 0 16px;
  font-family: "Figtree", sans-serif;
  font-size: 1.06rem;
  line-height: 1.78;
  color: #3d3d38;
  text-align: left;
}

.conocenos-highlight-body:last-child {
  margin-bottom: 0;
}

/* ─── Funding ─── */
.conocenos-funding-section {
  padding: clamp(40px, 6vw, 80px) 0;
}

.conocenos-funding-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 40px);
}

.conocenos-funding-item {
  padding: clamp(24px, 2.6vw, 36px);
  background: var(--paper);
  border: 1px solid var(--line-soft);
  display: grid;
  gap: 16px;
}

.conocenos-funding-item img {
  width: 100%;
  max-width: 320px;
  height: auto;
}

.conocenos-funding-item p {
  margin: 0;
  font-family: "Figtree", sans-serif;
  font-size: 0.98rem;
  line-height: 1.72;
  color: #3a3a36;
}

/* ─── CTA download ─── */
.conocenos-cta-wrap {
  display: flex;
  justify-content: center;
  padding: clamp(24px, 4vw, 56px) 0 clamp(32px, 5vw, 64px);
}

.conocenos-cta-card {
  width: min(100%, 780px);
  border: 1px solid var(--line-soft);
  background: var(--paper);
  display: grid;
  grid-template-columns: 0.4fr 0.6fr;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(10, 17, 28, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.conocenos-cta-media {
  min-height: 180px;
  background: #0f1420;
  overflow: hidden;
}

.conocenos-cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform 0.5s ease;
}

.conocenos-cta-copy {
  padding: clamp(28px, 3.5vw, 48px);
  display: grid;
  align-content: center;
  gap: 18px;
}

.conocenos-cta-copy h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  line-height: 1.05;
  font-weight: 500;
  color: #1a1a18;
}

.conocenos-cta-copy span {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 28px;
  border: 1px solid #1a1a18;
  font-family: "Figtree", sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  color: #1a1a18;
  transition: all 0.25s ease;
}

.conocenos-cta-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(10, 17, 28, 0.12);
}

.conocenos-cta-card:hover .conocenos-cta-media img {
  transform: scale(1.06);
}

.conocenos-cta-card:hover .conocenos-cta-copy span {
  background: #1a1a18;
  color: #fff;
}

.contact-page {
  margin-top: 16px;
  display: grid;
  gap: 18px;
}

.contact-header h1 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 4.8vw, 4.2rem);
  line-height: 0.97;
  font-weight: 500;
  max-width: 14ch;
}

.contact-header p {
  margin: 12px 0 0;
  max-width: 78ch;
  color: #31322e;
  font-size: 1.08rem;
  line-height: 1.62;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 14px;
}

.contact-card {
  border: 1px solid var(--line-soft);
  background: var(--bg-main);
  padding: clamp(16px, 2.1vw, 26px);
}

.contact-card h2 {
  margin: 0 0 12px;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3.1vw, 2.7rem);
  line-height: 1;
  font-weight: 500;
}

.contact-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.contact-links li {
  display: grid;
  gap: 4px;
}

.contact-links span {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--green-strong);
  font-weight: 700;
}

.contact-links a {
  font-size: 1.08rem;
  line-height: 1.42;
  color: #151514;
  border-bottom: 1px solid rgba(17, 17, 17, 0.22);
  width: fit-content;
}

.contact-links a:hover {
  color: var(--green-dark);
  border-bottom-color: rgba(11, 93, 50, 0.48);
}

.contact-map iframe {
  width: 100%;
  min-height: 372px;
  border: 0;
}

.contact-form-block .contact-card {
  background: var(--paper);
}

.contact-form-intro {
  margin: 0 0 14px;
  color: #33332f;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.contact-form label {
  display: grid;
  gap: 6px;
}

.contact-form label > span {
  font-size: 0.87rem;
  font-weight: 600;
  color: #252521;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #ffffff;
  padding: 11px 12px;
  font-family: "Figtree", sans-serif;
  font-size: 1rem;
  color: #171715;
}

.contact-form textarea {
  resize: vertical;
  min-height: 138px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(11, 126, 75, 0.72);
  box-shadow: 0 0 0 3px rgba(11, 126, 75, 0.14);
}

.contact-consent {
  display: flex !important;
  align-items: flex-start;
  gap: 8px;
}

.contact-consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  flex: 0 0 auto;
}

.contact-consent a {
  color: var(--green-dark);
  border-bottom: 1px solid rgba(11, 93, 50, 0.38);
}

.contact-submit-btn {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(11, 93, 50, 0.45);
  background: linear-gradient(150deg, var(--lime), var(--green-dark));
  color: #111f13;
  font-size: 1.14rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.contact-submit-btn:hover {
  transform: translateY(-1px);
  filter: saturate(1.04);
  box-shadow: 0 10px 24px rgba(11, 93, 50, 0.25);
}

.contact-form-feedback {
  margin: 2px 0 0;
  min-height: 20px;
  font-size: 0.92rem;
  color: var(--green-dark);
}

.org-page {
  margin-top: 16px;
  display: grid;
  gap: 18px;
}

.org-header h1 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 4.8vw, 4.2rem);
  line-height: 0.98;
  font-weight: 500;
  max-width: 14ch;
}

.org-section {
  background: var(--bg-main);
  border: 1px solid var(--line-soft);
  padding: clamp(16px, 2.3vw, 28px);
}

.org-section h2 {
  margin: 0 0 12px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 0.98;
  font-weight: 500;
}

.org-history-copy {
  max-width: 92ch;
  display: grid;
  gap: 8px;
}

.org-history-copy p,
.org-lead {
  margin: 0;
  color: #2f2f2b;
  line-height: 1.62;
  font-size: 1.03rem;
}

.org-timeline {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.org-timeline-item {
  border: 1px solid var(--line-soft);
  background: var(--bg-main);
  padding: 10px;
}

.org-timeline-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.org-timeline-item h3 {
  margin: 9px 0 2px;
  font-size: 0.95rem;
  line-height: 1.22;
  font-weight: 700;
}

.org-timeline-item p {
  margin: 0;
  color: var(--green-dark);
  font-size: 0.88rem;
  font-weight: 600;
}

.org-feature {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(0, 1.2fr);
  gap: 16px;
  align-items: start;
}

.org-feature-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.org-feature-copy {
  display: grid;
  gap: 9px;
}

.org-feature-copy p {
  margin: 0;
  color: #2f2f2b;
  line-height: 1.58;
}

.org-mini-gallery {
  margin-top: 4px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.org-mini-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.org-secretaria {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 16px;
  align-items: start;
}

.org-checks {
  margin: 12px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 7px;
}

.org-checks li {
  line-height: 1.5;
}

.org-secretaria-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.org-responsibilities {
  margin: 10px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 7px;
}

.org-tree {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

.org-tree-row {
  display: grid;
  gap: 12px;
}

.org-tree-root {
  justify-items: center;
  position: relative;
  padding-bottom: 14px;
}

.org-tree-root::after {
  content: "";
  width: 1px;
  height: 14px;
  background: rgba(15, 15, 15, 0.25);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.org-tree-level-two {
  position: relative;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 760px;
  margin: 0 auto;
  padding-top: 14px;
}

.org-tree-level-two::before {
  content: "";
  position: absolute;
  left: 24%;
  right: 24%;
  top: 0;
  height: 1px;
  background: rgba(15, 15, 15, 0.24);
}

.org-tree-level-two::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -14px;
  width: 1px;
  height: 14px;
  background: rgba(15, 15, 15, 0.24);
}

.org-tree-divider {
  display: flex;
  justify-content: center;
}

.org-tree-divider span {
  display: inline-block;
  padding: 5px 12px;
  border: 1px solid var(--line-soft);
  background: var(--bg-main);
  color: var(--green-dark);
  font-size: 0.86rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
}

.org-tree-grid-five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.org-person-card {
  border: 1px solid var(--line-soft);
  background: var(--bg-main);
  padding: 9px;
  display: grid;
  gap: 6px;
  justify-items: center;
  text-align: center;
}

.org-person-card.is-root {
  max-width: 260px;
}

.org-person-card img {
  width: 108px;
  height: 108px;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.org-role {
  margin: 2px 0 0;
  color: var(--green-dark);
  font-size: 0.75rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.org-person-card h3 {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.3;
  font-weight: 600;
}

.assembly-page {
  margin-top: 0;
  display: grid;
  gap: clamp(24px, 4vw, 46px);
  padding: clamp(26px, 5vw, 54px) 0 clamp(24px, 5vw, 60px);
}

.assembly-hero h1 {
  margin: 0;
  max-width: 15ch;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 5vw, 4.1rem);
  line-height: 0.98;
  font-weight: 500;
}

.assembly-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

.assembly-copy p {
  margin: 0 0 16px;
  max-width: 58ch;
  font-family: "Figtree", sans-serif;
  font-size: clamp(1.02rem, 1.18vw, 1.16rem);
  line-height: 1.78;
  color: #2f2f2c;
}

.assembly-copy p:last-of-type {
  margin-bottom: 0;
}

.assembly-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  max-width: 58ch;
}

.assembly-list li {
  position: relative;
  padding-left: 24px;
  font-family: "Figtree", sans-serif;
  font-size: 1rem;
  line-height: 1.68;
  color: #252523;
}

.assembly-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--lime), var(--green-strong));
}

.assembly-media {
  margin: 0;
}

.assembly-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
}

.awards-page {
  margin-top: 0;
  display: grid;
  gap: clamp(24px, 4vw, 46px);
  padding: clamp(26px, 5vw, 54px) 0 clamp(24px, 5vw, 60px);
}

.awards-hero h1 {
  margin: 0;
  max-width: 16ch;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 5vw, 4.1rem);
  line-height: 0.98;
  font-weight: 500;
}

.awards-top {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(22px, 3.8vw, 48px);
  align-items: center;
}

.awards-top-media {
  margin: 0;
}

.awards-top-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
}

.awards-top-copy p {
  margin: 0 0 16px;
  max-width: 60ch;
  font-family: "Figtree", sans-serif;
  font-size: clamp(1.02rem, 1.16vw, 1.14rem);
  line-height: 1.76;
  color: #2f2f2c;
}

.awards-top-copy p:last-child {
  margin-bottom: 0;
}

.awards-interactive {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.awards-nav {
  border-right: 1px solid var(--line-soft);
}

.awards-tab-btn {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line-soft);
  background: transparent;
  text-align: left;
  padding: 18px 16px;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.42rem, 2.1vw, 2.2rem);
  line-height: 1.05;
  font-weight: 500;
  color: #111;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.awards-tab-btn:hover,
.awards-tab-btn:focus-visible {
  background: rgba(11, 126, 75, 0.06);
  outline: none;
}

.awards-tab-btn.is-active {
  background: rgba(200, 215, 30, 0.14);
  color: #0f0f0f;
}

.awards-panels {
  min-height: 420px;
}

.awards-panel {
  display: none;
  padding: clamp(22px, 3.4vw, 46px);
}

.awards-panel.is-active {
  display: block;
}

.awards-panel h2 {
  margin: 0 0 18px;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  line-height: 1.06;
  font-weight: 500;
}

.awards-panel p {
  margin: 0 0 14px;
  max-width: 56ch;
  font-family: "Figtree", sans-serif;
  font-size: 1.03rem;
  line-height: 1.74;
  color: #2f2f2c;
}

.awards-panel p:last-child {
  margin-bottom: 0;
}

.forum-page {
  margin-top: 0;
  display: grid;
  gap: clamp(24px, 4vw, 46px);
  padding: clamp(26px, 5vw, 54px) 0 clamp(24px, 5vw, 60px);
}

.forum-hero h1 {
  margin: 0;
  max-width: 16ch;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 5vw, 4.1rem);
  line-height: 0.98;
  font-weight: 500;
}

.forum-main {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 4.8vw, 64px);
  align-items: start;
}

.forum-map-wrap {
  margin: 0;
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(180px, 1fr);
  align-items: center;
  gap: clamp(10px, 1.8vw, 18px);
  max-width: 100%;
}

.forum-map-wrap img {
  display: block;
  width: 100%;
  height: auto;
}

.forum-map-lines {
  display: grid;
  gap: clamp(24px, 4.2vw, 54px);
}

.forum-map-lines p {
  margin: 0;
  font-family: "Figtree", sans-serif;
  font-size: clamp(1.02rem, 1.5vw, 1.55rem);
  font-weight: 600;
  line-height: 1.24;
  color: #b4ce00;
  white-space: normal;
  overflow-wrap: anywhere;
}

.forum-content p {
  margin: 0 0 18px;
  max-width: 56ch;
  font-family: "Figtree", sans-serif;
  font-size: clamp(1.02rem, 1.16vw, 1.14rem);
  line-height: 1.74;
  color: #7f7576;
}

.forum-content {
  min-width: 0;
}

.forum-content p:last-of-type {
  margin-bottom: 0;
}

.forum-photo {
  margin: 14px 0 0;
}

.forum-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.breakfast-page {
  margin-top: 0;
  display: grid;
  gap: clamp(22px, 4vw, 44px);
  padding: clamp(26px, 5vw, 54px) 0 clamp(26px, 5vw, 62px);
}

.breakfast-hero h1 {
  margin: 0 0 12px;
  max-width: 15ch;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 5vw, 4.1rem);
  line-height: 0.98;
  font-weight: 500;
}

.breakfast-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
}

.breakfast-copy p {
  margin: 0;
  max-width: 66ch;
  font-family: "Figtree", sans-serif;
  font-size: clamp(1.02rem, 1.14vw, 1.14rem);
  line-height: 1.72;
  color: #645f5b;
}

.breakfast-hero-media {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
}

.breakfast-hero-media img {
  width: 100%;
  height: auto;
  display: block;
}

.breakfast-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(10px, 1.4vw, 16px);
}

.breakfast-shot {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #d9d8d5;
}

.breakfast-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.breakfast-shot:hover img {
  transform: scale(1.035);
}

.breakfast-shot.shot-1 {
  grid-column: span 8;
  min-height: clamp(250px, 34vw, 460px);
}

.breakfast-shot.shot-2 {
  grid-column: span 4;
  min-height: clamp(250px, 34vw, 460px);
}

.breakfast-shot.shot-3,
.breakfast-shot.shot-4,
.breakfast-shot.shot-5 {
  grid-column: span 4;
  min-height: clamp(170px, 20vw, 250px);
}

.breakfast-shot.shot-6,
.breakfast-shot.shot-7,
.breakfast-shot.shot-8 {
  grid-column: span 4;
  min-height: clamp(170px, 20vw, 250px);
}

.sie-page {
  margin-top: 0;
  display: grid;
  gap: clamp(22px, 4vw, 44px);
  padding: clamp(26px, 5vw, 54px) 0 clamp(24px, 5vw, 58px);
}

.sie-hero h1 {
  margin: 0;
  max-width: 16ch;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 5vw, 4.1rem);
  line-height: 0.98;
  font-weight: 500;
}

.sie-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  gap: clamp(20px, 3vw, 34px);
  align-items: center;
}

.sie-copy p {
  margin: 0;
  max-width: 62ch;
  font-family: "Figtree", sans-serif;
  font-size: clamp(1.02rem, 1.15vw, 1.14rem);
  line-height: 1.72;
  color: #5f5a57;
}

.sie-points {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.sie-points li {
  position: relative;
  padding-left: 22px;
  font-family: "Figtree", sans-serif;
  font-size: 0.98rem;
  line-height: 1.62;
  color: #2d2d2b;
}

.sie-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--lime), var(--green-strong));
}

.sie-media-primary,
.sie-media-secondary {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
}

.sie-media-primary img,
.sie-media-secondary img {
  width: 100%;
  height: auto;
  display: block;
}

.sie-lower {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(20px, 3vw, 34px);
  align-items: stretch;
}

.sie-events {
  border: 1px solid var(--line-soft);
  background: var(--paper);
  padding: clamp(16px, 2.4vw, 28px);
  display: grid;
  align-content: start;
  gap: 10px;
}

.sie-events h2 {
  margin: 0 0 2px;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.06;
  font-weight: 500;
  color: #101010;
}

.sie-events a {
  border: 1px solid var(--line-soft);
  padding: 10px 12px;
  font-family: "Figtree", sans-serif;
  font-size: 0.97rem;
  line-height: 1.45;
  color: #20201f;
  background: #fff;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.sie-events a:hover,
.sie-events a:focus-visible {
  background: rgba(200, 215, 30, 0.16);
  border-color: rgba(200, 215, 30, 0.55);
  outline: none;
}

.content-page {
  margin-top: 16px;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  padding: clamp(16px, 2.3vw, 32px);
}

.content-hero h1 {
  margin: 0;
  max-width: 18ch;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.97;
  font-weight: 500;
}

.content-source {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.content-source a {
  border-bottom: 1px solid var(--line);
}

.content-body {
  margin-top: 22px;
}

.content-body h2 {
  margin: 18px 0 8px;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3.3vw, 2.9rem);
  line-height: 1.05;
  font-weight: 500;
}

.content-body p {
  margin: 0 0 12px;
  color: #222;
  font-size: 1.06rem;
}

.content-list {
  margin: 0 0 12px;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.press-item {
  padding: 14px 0;
  border-top: 1px solid var(--line-soft);
}

.press-item:first-of-type {
  border-top: 0;
}

.press-item h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 1.82rem;
  line-height: 1.07;
  font-weight: 500;
}

.press-item p {
  margin: 8px 0;
  color: var(--muted);
}

.press-item a {
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}

.press-page {
  margin-top: 16px;
  display: grid;
  gap: 16px;
}

.press-header h1 {
  margin: 0;
  max-width: 15ch;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 4.8vw, 4.1rem);
  line-height: 0.98;
  font-weight: 500;
}

.press-grid-rich {
  display: grid;
  gap: 12px;
}

.press-rich-card {
  border: 1px solid var(--line-soft);
  background: var(--bg-main);
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  min-height: 210px;
  overflow: hidden;
}

.press-rich-media {
  display: block;
  overflow: hidden;
}

.press-rich-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform 0.35s ease;
}

.press-rich-copy {
  padding: clamp(14px, 2vw, 24px);
  display: grid;
  align-content: start;
  gap: 10px;
}

.press-rich-copy h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.55rem, 2.6vw, 2.2rem);
  line-height: 1.05;
  font-weight: 500;
}

.press-rich-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.press-rich-link {
  margin-top: auto;
  width: fit-content;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
  font-size: 0.95rem;
}

.press-rich-card:hover .press-rich-media img {
  transform: scale(1.06);
}

.muted {
  color: var(--muted);
}

.detail-cover {
  width: 100%;
  margin: 18px 0;
}

.detail-content {
  color: #212121;
}

.detail-content p,
.detail-content li {
  font-size: 1.03rem;
  line-height: 1.65;
}

.detail-content h2,
.detail-content h3,
.detail-content h4 {
  font-family: "Playfair Display", serif;
  line-height: 1.12;
  font-weight: 500;
}

.detail-content img {
  max-width: 100%;
  height: auto;
}

.event-filters {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-pill {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 1px solid var(--line);
  padding: 6px 12px;
  font-size: 0.88rem;
}

.filter-pill.is-on {
  background: #171717;
  color: #fff;
}

.event-detail-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 16px;
}

.event-detail-grid > div {
  min-width: 0;
}

.event-detail-grid .detail-content {
  overflow-wrap: anywhere;
}

.event-detail-grid .detail-content img,
.event-detail-grid .detail-content svg,
.event-detail-grid .detail-content video,
.event-detail-grid .detail-content iframe,
.event-detail-grid .detail-content canvas {
  display: block;
  width: auto;
  max-width: 100% !important;
  max-height: 560px;
  height: auto !important;
  margin: 16px auto;
}

.event-detail-grid .detail-content figure {
  margin: 16px 0;
  max-width: 100%;
}

.event-detail-grid .detail-content [style*="width"] {
  max-width: 100% !important;
}

.event-side {
  border: 1px solid var(--line-soft);
  padding: 14px;
  background: #fffdfb;
}

.event-side h3 {
  margin: 0 0 8px;
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  line-height: 1.1;
  font-weight: 500;
}

.event-detail-featured {
  display: block;
  width: 100%;
  max-width: 100%;
  max-height: 620px;
  object-fit: cover;
  border: 1px solid var(--line-soft);
  background: #fff;
  margin: 0 0 16px;
}

.event-side-register {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 13px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(200, 215, 30, 0.16), rgba(11, 126, 75, 0.14));
  color: #0b5d32;
  font-weight: 700;
  text-decoration: none;
}

.event-side-register:hover,
.event-side-register:focus-visible {
  background: linear-gradient(160deg, rgba(200, 215, 30, 0.24), rgba(11, 126, 75, 0.22));
  outline: none;
}

.event-side-register-icon {
  width: 26px;
  height: 26px;
  border: 1px solid rgba(11, 93, 50, 0.3);
  background: #fff;
  display: inline-grid;
  place-items: center;
}

.event-side-register-icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: #0b5d32;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.legal-page .detail-content {
  margin-top: 14px;
}

.legal-content h1,
.legal-content h2,
.legal-content h3,
.legal-content h4 {
  font-family: "Playfair Display", serif;
  line-height: 1.1;
}

.legal-content p,
.legal-content li {
  color: #222;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 22px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.legal-content table th,
.legal-content table td {
  text-align: left;
  vertical-align: top;
  padding: 10px 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  line-height: 1.4;
}

.legal-content table th {
  background: #f1f0ec;
  font-weight: 700;
  color: #191919;
}

.legal-content table tr:nth-child(even) td {
  background: #fbfaf8;
}

code {
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 1px 6px;
  font-size: 0.85em;
}

.site-footer {
  background: #030916;
  color: #f4f7ff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: auto;
}

.footer-lead-wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 28px 22px 12px;
  transform: none;
}

.footer-lead-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: 20px clamp(18px, 3vw, 30px);
  background:
    radial-gradient(circle at 88% 18%, rgba(200, 215, 30, 0.18) 0, rgba(200, 215, 30, 0.03) 28%, transparent 48%),
    linear-gradient(160deg, rgba(8, 20, 42, 0.9) 0%, rgba(5, 19, 44, 0.98) 100%);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 14px 22px;
  align-items: center;
  position: relative;
}

.footer-lead-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 12px 0 0 12px;
  background: linear-gradient(180deg, var(--lime), #2eaa66);
}

.footer-lead-copy h3 {
  margin: 0;
  max-width: 23ch;
  color: #f5f7ff;
  font-size: clamp(1.25rem, 2.1vw, 2rem);
  font-family: "Figtree", sans-serif;
  line-height: 1.15;
  font-weight: 600;
}

.footer-lead-form {
  display: grid;
  gap: 9px;
}

.footer-lead-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.footer-lead-row input[type="email"] {
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  color: #f8f9ff;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  padding: 0 12px;
  border-radius: 6px;
  font-size: 1rem;
}

.footer-lead-row input[type="email"]::placeholder {
  color: rgba(243, 247, 255, 0.7);
}

.footer-lead-row input[type="email"]:focus {
  outline: none;
  border-color: rgba(200, 215, 30, 0.62);
  box-shadow: 0 0 0 3px rgba(200, 215, 30, 0.2);
}

.footer-lead-row button {
  min-height: 46px;
  border: 1px solid rgba(200, 215, 30, 0.44);
  background: linear-gradient(145deg, rgba(200, 215, 30, 0.95), rgba(11, 126, 75, 0.9));
  color: #10220f;
  padding: 0 14px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.98rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.18s ease, filter 0.18s ease;
}

.footer-lead-row button:hover,
.footer-lead-row button:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.03);
  outline: none;
}

.footer-lead-privacy {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: rgba(242, 246, 255, 0.92);
  font-size: 0.98rem;
  line-height: 1.35;
}

.footer-lead-privacy input {
  margin-top: 2px;
  accent-color: var(--lime);
}

.footer-lead-privacy a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-lead-feedback {
  margin: 2px 0 0;
  font-size: 0.9rem;
  font-weight: 600;
}

.footer-lead-feedback.is-ok {
  color: #dfffd7;
}

.footer-lead-feedback.is-error {
  color: #ffd4d4;
}

.lead-hp {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  border: 0 !important;
}

.footer-top {
  max-width: 1320px;
  margin: 0 auto;
  padding: 18px 22px 34px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 24px;
}

.footer-top h4 {
  margin: 0 0 12px;
  font-size: 2rem;
  line-height: 1;
  font-family: "Playfair Display", serif;
  font-weight: 500;
}

.footer-top p {
  margin: 0;
  color: rgba(244, 247, 255, 0.86);
  max-width: 30ch;
}

.footer-top article a {
  display: block;
  color: rgba(244, 247, 255, 0.92);
  margin-bottom: 8px;
}

.footer-top article a:hover {
  color: var(--lime);
}

.footer-social {
  margin-top: 14px;
  width: 40px;
  height: 40px;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--lime), var(--green-strong));
  color: #0b1021;
  font-weight: 700;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1320px;
  margin: 0 auto;
  padding: 24px 22px 28px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 20px;
  align-items: center;
}

.footer-bottom img {
  height: 84px;
  width: auto;
  filter: brightness(1.06);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-legal a {
  color: rgba(244, 247, 255, 0.9);
  border-bottom: 1px solid rgba(244, 247, 255, 0.4);
}

.footer-consent-btn {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(140deg, var(--lime), var(--green-strong));
  color: #09120f;
  padding: 10px 16px;
  font-size: 1.02rem;
  cursor: pointer;
}

.consent-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(8, 8, 8, 0.45);
}

.consent-overlay.is-open {
  display: flex;
}

.consent-modal {
  width: min(100%, 890px);
  max-height: calc(100vh - 28px);
  overflow: auto;
  background: #efefef;
  border-radius: 14px;
  padding: 18px 18px 14px;
  box-shadow: 0 30px 55px rgba(0, 0, 0, 0.3);
}

.consent-brand {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 14px;
  padding: 0 2px 4px;
}

.consent-brand img {
  height: 56px;
  width: auto;
}

.consent-brand h3 {
  margin: 0;
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  line-height: 1;
  font-family: "Playfair Display", serif;
  font-weight: 500;
}

.consent-intro {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.consent-body p {
  margin: 0;
  color: #1f1f1f;
  line-height: 1.45;
  font-size: 1.01rem;
}

.consent-accordion {
  margin-top: 6px;
}

.consent-group {
  border: 1px solid rgba(0, 0, 0, 0.11);
  background: #f7f7f7;
  margin-bottom: 8px;
}

.consent-group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0;
}

.consent-group-toggle {
  width: 100%;
  border: 0;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 12px 10px;
  cursor: pointer;
  font-size: 1.06rem;
  font-weight: 700;
  text-align: left;
}

.consent-group-head.has-switch .consent-group-toggle {
  width: auto;
  flex: 1;
}

.head-right {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.always-on {
  color: var(--green-strong);
  font-weight: 600;
  white-space: nowrap;
}

.consent-caret {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.consent-group:not(.is-open) .consent-caret {
  transform: rotate(180deg);
}

.consent-group-body {
  padding: 0 12px 12px;
  display: block;
}

.consent-group:not(.is-open) .consent-group-body {
  display: none;
}

.consent-group-body p {
  color: #2a2a2a;
}

.switch {
  position: relative;
  width: 46px;
  height: 26px;
  margin-top: 0;
  margin-right: 12px;
  flex: 0 0 auto;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch span {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #b3b3b3;
  transition: 0.2s ease;
}

.switch span::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  top: 3px;
  border-radius: 50%;
  background: #fff;
  transition: 0.2s ease;
}

.switch input:checked + span {
  background: #2f78bf;
}

.switch input:checked + span::before {
  transform: translateX(20px);
}

.consent-actions {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.consent-btn {
  min-height: 50px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 1.08rem;
  cursor: pointer;
}

.consent-btn.accept,
.consent-btn.save {
  background: linear-gradient(160deg, var(--lime), var(--green-dark));
  color: #101010;
}

.consent-btn.deny {
  background: linear-gradient(160deg, #8ea315, var(--green-dark));
  color: #101010;
}

.consent-links {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.consent-links a {
  color: #0f4e96;
  border-bottom: 1px solid rgba(15, 78, 150, 0.4);
  font-size: 0.95rem;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1150px) {
  .focus-checklist {
    max-width: 460px;
  }

  .conocenos-identity-grid {
    grid-template-columns: 1fr 1fr;
  }

  .conocenos-funding-grid {
    grid-template-columns: 1fr;
  }

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

  .org-timeline,
  .org-tree-grid-five {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .org-tree-level-two {
    max-width: 640px;
  }

  .menu-panels {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .activities-showcase-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .press-rich-card {
    grid-template-columns: minmax(210px, 0.5fr) minmax(0, 1fr);
  }

  .event-item {
    grid-template-columns: 95px 1fr;
  }

  .event-meta {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }

  .event-list-image {
    width: min(100%, 420px);
  }

  .event-detail-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    padding-top: 0;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: flex-start;
  }
}

@media (max-width: 900px) {
  .focus-checklist {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 9px;
  }

  .partners-marquee-item {
    width: 152px;
    height: 82px;
  }

  .partners-marquee-item img {
    max-height: 56px;
  }

  .conocenos-era-row,
  .conocenos-era-row.is-reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .assembly-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .awards-top {
    grid-template-columns: 1fr;
  }

  .forum-main {
    grid-template-columns: 1fr;
  }

  .breakfast-hero-grid {
    grid-template-columns: 1fr;
  }

  .breakfast-shot.shot-1,
  .breakfast-shot.shot-2 {
    grid-column: span 6;
  }

  .breakfast-shot.shot-3,
  .breakfast-shot.shot-4,
  .breakfast-shot.shot-5,
  .breakfast-shot.shot-6,
  .breakfast-shot.shot-7,
  .breakfast-shot.shot-8 {
    grid-column: span 6;
  }

  .sie-main,
  .sie-lower {
    grid-template-columns: 1fr;
  }

  .forum-map-wrap {
    grid-template-columns: 1fr;
    max-width: 540px;
  }

  .forum-map-lines {
    gap: 10px;
  }

  .forum-map-lines p {
    font-size: clamp(1rem, 4.5vw, 1.25rem);
    white-space: normal;
  }

  .awards-interactive {
    grid-template-columns: 1fr;
  }

  .awards-nav {
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .conocenos-era-media img {
    min-height: 220px;
  }

  .conocenos-cta-card {
    grid-template-columns: 1fr;
  }

  .conocenos-cta-media {
    min-height: 180px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .conocenos-identity-grid {
    grid-template-columns: 1fr;
  }

  .conocenos-funding-grid {
    grid-template-columns: 1fr;
  }

  .org-feature,
  .org-secretaria {
    grid-template-columns: 1fr;
  }

  .org-timeline,
  .org-tree-grid-five {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-toggle {
    display: inline-block;
  }

  .main-nav {
    position: fixed;
    left: 12px;
    right: 12px;
    top: 112px;
    border: 1px solid var(--line);
    background: var(--paper);
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
    pointer-events: none;
    transition: all 0.22s ease;
    max-height: calc(100vh - 92px);
    overflow-y: auto;
  }

  /* En móvil, el panel del menú es claro; forzamos texto oscuro aunque el header esté en modo hero */
  .site-header.home-hero-top .main-nav {
    background: var(--paper);
    border-color: var(--line);
  }

  .site-header.home-hero-top .main-nav a,
  .site-header.home-hero-top .drop-trigger,
  .site-header.home-hero-top .main-nav .active-link,
  .site-header.home-hero-top .drop-trigger.active {
    color: #161616;
  }

  .site-header.home-hero-top .main-nav a:hover,
  .site-header.home-hero-top .main-nav a:focus-visible,
  .site-header.home-hero-top .drop-trigger:hover,
  .site-header.home-hero-top .drop-trigger:focus-visible {
    color: var(--green-strong);
    background: rgba(11, 126, 75, 0.1);
  }

  .site-header.home-hero-top .dropdown {
    background: transparent;
    border-color: transparent;
  }

  .site-header.home-hero-top .dropdown a {
    color: #1d1d1d;
  }

  .main-nav.open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav ul {
    padding: 8px;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }

  .main-nav a,
  .drop-trigger {
    width: 100%;
    text-align: left;
  }

  .dropdown {
    position: static;
    width: auto;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    padding: 0 0 6px 12px;
  }

  .has-dropdown.open > .dropdown {
    display: block;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 22px;
  }

  .hero-copy,
  .hero-card {
    order: 0;
  }

  .hero-card {
    justify-content: flex-start;
  }

  .hero.hero--immersive .hero-copy {
    padding-top: clamp(110px, 16vh, 150px);
    padding-bottom: clamp(30px, 7vh, 56px);
  }

  .hero.hero--immersive h1 {
    max-width: 10.6ch;
    font-size: clamp(2.2rem, 9.8vw, 3.8rem);
  }

  .hero.hero--immersive p {
    max-width: 34ch;
    font-size: clamp(0.98rem, 4.3vw, 1.18rem);
  }

  .site-header.home-hero-mode .header-wrap {
    justify-content: space-between;
  }

  .site-header.home-hero-mode .menu-toggle {
    margin-left: auto;
  }
}

@media (max-width: 700px) {
  .header-wrap,
  main {
    padding-left: 14px;
    padding-right: 14px;
  }

  .brand img {
    height: 92px;
  }

  .conocenos-era-copy {
    padding: 0;
  }

  .assembly-hero h1 {
    max-width: 100%;
  }

  .awards-hero h1 {
    max-width: 100%;
  }

  .forum-hero h1 {
    max-width: 100%;
  }

  .forum-content p {
    max-width: 100%;
  }

  .breakfast-gallery {
    grid-template-columns: 1fr;
  }

  .breakfast-shot.shot-1,
  .breakfast-shot.shot-2,
  .breakfast-shot.shot-3,
  .breakfast-shot.shot-4,
  .breakfast-shot.shot-5,
  .breakfast-shot.shot-6,
  .breakfast-shot.shot-7,
  .breakfast-shot.shot-8 {
    grid-column: 1 / -1;
    min-height: 220px;
  }

  .sie-events {
    padding: 14px 12px;
  }

  .awards-tab-btn {
    font-size: clamp(1.2rem, 6vw, 1.55rem);
    padding: 14px 12px;
  }

  .awards-panel {
    padding: 16px 12px 20px;
  }

  .conocenos-cta-copy {
    padding: 18px 14px;
  }

  .conocenos-cta-copy span {
    width: 100%;
  }

  .org-header h1 {
    font-size: clamp(2rem, 9vw, 2.7rem);
  }

  .org-timeline,
  .org-tree-level-two,
  .org-tree-grid-five {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .org-tree-level-two::before,
  .org-tree-level-two::after,
  .org-tree-root::after {
    display: none;
  }

  .org-mini-gallery {
    grid-template-columns: 1fr;
  }

  .activities-showcase-grid,
  .menu-panels,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .partners-marquee-track--left,
  .partners-marquee-track--right {
    animation-duration: 90s;
  }

  .partners-marquee-item {
    width: 136px;
    height: 76px;
    padding: 8px 10px;
  }

  .partners-marquee-item img {
    max-height: 48px;
  }

  .press-rich-card {
    grid-template-columns: 1fr;
  }

  .press-rich-media {
    min-height: 220px;
  }

  .event-item {
    grid-template-columns: 1fr;
  }

  .event-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .event-list-image {
    width: 100%;
  }

  .footer-top {
    grid-template-columns: 1fr;
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 0;
  }

  .footer-bottom {
    padding-left: 14px;
    padding-right: 14px;
  }

  .consent-modal {
    padding: 12px;
  }

  .consent-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) {
  .footer-lead-wrap {
    transform: none;
    padding-top: 22px;
  }

  .footer-lead-card {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-lead-copy h3 {
    max-width: 100%;
  }
}

@media (max-width: 700px) {
  .footer-lead-wrap {
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 18px;
    transform: none;
  }

  .footer-lead-card {
    padding: 22px 16px;
  }

  .footer-lead-row {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .focus-orbit.is-visible .focus-checklist li {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .partners-marquee-track--left,
  .partners-marquee-track--right {
    animation: none;
  }
}

.socios-page {
  display: grid;
  gap: 2rem;
}

.socios-header h1 {
  margin: 0;
}

.socios-intro {
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}

.socios-intro h2 {
  margin: 0 0 0.7rem;
}

.socios-intro p {
  margin: 0;
}

.socios-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.2rem 1.5rem;
}

.socio-logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 120px;
  text-decoration: none;
  color: #2e2f2a;
  padding: 0.7rem 0.4rem;
  border: 1px solid #e5e7df;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.7);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.socio-logo-card:hover {
  transform: translateY(-2px);
  border-color: #b8c99c;
  box-shadow: 0 8px 20px rgba(26, 33, 45, 0.08);
}

.socio-logo-card img {
  max-width: 170px;
  max-height: 68px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.socio-logo-card img.is-boost {
  max-width: 220px;
  max-height: 94px;
}

.socio-logo-card span {
  font-size: .84rem;
  text-align: center;
  line-height: 1.25;
}

.socios-empty {
  grid-column: 1 / -1;
  text-align: center;
  border: 1px dashed #cfd8c1;
  border-radius: 12px;
  padding: 1.1rem;
}

@media (max-width: 1180px) {
  .socios-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .socios-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .socios-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
