/* SCU — editorial education design system */
:root {
  --ink: #0E1621;
  --ink-2: #2A3441;
  --muted: #5A6876;
  --accent: #0D9A8A;
  --accent-deep: #0A7D70;
  --accent-soft: #E6F5F3;
  --blue: #0870B8;
  --paper: #F4F6F7;
  --paper-2: #E8ECEF;
  --white: #FFFFFF;
  --line: rgba(14, 22, 33, 0.10);
  --line-strong: rgba(14, 22, 33, 0.16);
  --max: 1280px;
  --pad: clamp(1.25rem, 4vw, 2rem);
  --sec: clamp(4rem, 8vw, 7.5rem);
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --r: 6px;
  --r-btn: 4px;
  --shadow: 0 1px 2px rgba(14, 22, 33, 0.04), 0 12px 32px rgba(14, 22, 33, 0.07);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.125rem);
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
body.is-locked { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-deep); text-underline-offset: 3px; }
a:hover { color: var(--accent); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 10000;
  background: var(--ink); color: #fff; padding: .75rem 1rem;
}
.skip:focus { left: 1rem; top: 1rem; }

.shell {
  width: min(100% - (var(--pad) * 2), var(--max));
  margin-inline: auto;
}

.kicker {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin: 0 0 0.85rem;
}
.h1 {
  font-size: clamp(2.5rem, 2rem + 3vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 1.1rem;
  max-width: 14ch;
}
.h2 {
  font-size: clamp(2rem, 1.5rem + 2vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 1rem;
  max-width: 22ch;
}
.h3 {
  font-size: clamp(1.25rem, 1.1rem + 0.5vw, 1.65rem);
  line-height: 1.22;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 0.5rem;
}
.lead {
  margin: 0;
  font-size: clamp(1.0625rem, 1rem + 0.25vw, 1.25rem);
  line-height: 1.6;
  color: var(--muted);
  max-width: 40rem;
}
.sec-head { margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.sec-head .lead { margin-top: 0.75rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.7rem 1.4rem;
  border-radius: var(--r-btn);
  border: 1.5px solid transparent;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s var(--ease), background .2s, border-color .2s, color .2s;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn-fill {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-fill:hover { background: var(--accent-deep); border-color: var(--accent-deep); color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); }
.btn-block { width: 100%; }
.btn-light {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.btn-light:hover { background: var(--accent-soft); color: var(--ink); }
.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.45);
}
.btn-outline-light:hover { border-color: #fff; color: #fff; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--accent-deep);
}
.link-arrow::after {
  content: "→";
  transition: transform .2s var(--ease);
}
.link-arrow:hover::after { transform: translateX(3px); }

/* Header */
.hdr {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(244, 246, 247, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.hdr-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: var(--header-h);
}
.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo img { height: 36px; width: auto; }
.nav {
  display: none;
  align-items: center;
  gap: 0.15rem;
}
.nav > a,
.nav-item > button {
  appearance: none;
  background: none;
  border: 0;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-2);
  text-decoration: none;
  padding: 0.55rem 0.7rem;
  cursor: pointer;
  border-radius: var(--r-btn);
  position: relative;
}
.nav > a:hover,
.nav-item > button:hover,
.nav > a[aria-current="page"] {
  color: var(--ink);
}
.nav > a:hover::after,
.nav-item > button:hover::after,
.nav-item.is-open > button::after {
  content: "";
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.25rem;
  height: 2px;
  background: var(--accent);
}
.nav-item { position: relative; }
.mega {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-40%) translateY(6px);
  width: min(720px, 70vw);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--r);
  padding: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
  z-index: 50;
}
.nav-item.is-open .mega,
.nav-item:focus-within .mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-40%) translateY(0);
}
.mega-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.65rem;
}
.mega-col a {
  display: block;
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.925rem;
  padding: 0.35rem 0;
}
.mega-col a:hover { color: var(--accent-deep); }
.mega-col a span {
  display: block;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--muted);
  margin-top: 0.1rem;
}
.hdr-act {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hdr-contact {
  display: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-2);
  text-decoration: none;
}
.hdr-contact:hover { color: var(--accent-deep); }
.btn-menu {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  padding: 0;
}
.btn-menu svg { width: 24px; height: 24px; }
.hdr-cta { display: none; }

@media (min-width: 1100px) {
  .nav { display: flex; }
  .hdr-contact { display: inline; }
  .hdr-cta { display: inline-flex; }
  .btn-menu { display: none; }
  .logo img { height: 40px; }
}

/* Mobile sheet */
.sheet {
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  visibility: hidden;
}
.sheet.is-open {
  pointer-events: auto;
  visibility: visible;
}
.sheet-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 22, 33, 0.45);
  opacity: 0;
  transition: opacity .25s var(--ease);
}
.sheet.is-open .sheet-backdrop { opacity: 1; }
.sheet-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 420px);
  height: 100%;
  background: var(--white);
  padding: 1.25rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s var(--ease);
  overflow-y: auto;
}
.sheet.is-open .sheet-panel { transform: translateX(0); }
.sheet-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.sheet-top img { height: 32px; width: auto; }
.sheet-close {
  width: 44px; height: 44px;
  border: 0; background: transparent; cursor: pointer; color: var(--ink);
}
.sheet-nav {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
}
.sheet-nav > a,
.sheet-toggle {
  font: inherit;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  padding: 0.85rem 0;
  border: 0;
  background: none;
  text-align: left;
  cursor: pointer;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 48px;
}
.sheet-sub {
  display: none;
  flex-direction: column;
  padding: 0.25rem 0 0.75rem 0.75rem;
  gap: 0.15rem;
}
.sheet-sub.is-open { display: flex; }
.sheet-sub a {
  text-decoration: none;
  color: var(--ink-2);
  font-weight: 500;
  padding: 0.65rem 0;
  min-height: 44px;
}
.sheet-meta {
  margin: 1.5rem 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.925rem;
  color: var(--muted);
}
.sheet-meta a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  font-size: 1.05rem;
}

/* Hero */
.hero {
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(3rem, 5vw, 4rem);
}
.hero-grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 1.25rem;
}
.trust {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 0.5rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.925rem;
}
.trust li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}
.trust li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.hero-media {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0.75rem;
  align-items: end;
}
.hero-photo {
  border-radius: var(--r);
  overflow: hidden;
  background: var(--paper-2);
  aspect-ratio: 4/5;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-photo-sm {
  border-radius: var(--r);
  overflow: hidden;
  background: var(--paper-2);
  aspect-ratio: 3/4;
  margin-bottom: 12%;
}
.hero-photo-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 900px) {
  .hero {
    min-height: calc(100svh - var(--header-h));
    display: flex;
    align-items: center;
    padding: 2.5rem 0 3.5rem;
  }
  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 1.25rem 4rem;
    align-items: center;
  }
  .hero-copy { grid-column: 1; grid-row: 1; }
  .trust {
    grid-column: 1;
    grid-row: 2;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 0;
    align-self: start;
  }
  .hero-media {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
  }
  .trust li {
    padding-right: 1.25rem;
    margin-right: 1.25rem;
    border-right: 1px solid var(--line-strong);
  }
  .trust li:last-child {
    border-right: 0;
    margin-right: 0;
    padding-right: 0;
  }
}

/* Sections */
.sec { padding-block: var(--sec); }
.sec-alt { background: var(--paper-2); }
.sec-dark {
  background: var(--ink);
  color: rgba(255,255,255,0.78);
}
.sec-dark .h2,
.sec-dark .h3 { color: #fff; }
.sec-dark .kicker { color: #7fd4c8; }
.sec-dark .lead { color: rgba(255,255,255,0.68); }

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* Finder */
.finder-tabs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}
.finder-tab {
  flex: 0 0 auto;
  appearance: none;
  border: 1px solid var(--line-strong);
  background: var(--white);
  color: var(--ink-2);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.65rem 1rem;
  min-height: 44px;
  border-radius: var(--r-btn);
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s, color .2s, border-color .2s;
}
.finder-tab:hover { border-color: var(--ink); }
.finder-tab[aria-selected="true"] {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.finder-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .finder-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .finder-grid { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
}
.pcard {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, box-shadow .2s;
}
.pcard:hover { border-color: var(--line-strong); box-shadow: var(--shadow); }
.pcard-media {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--paper-2);
}
.pcard-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s var(--ease);
}
.pcard:hover .pcard-media img { transform: scale(1.03); }
.pcard-body {
  padding: 1.15rem 1.2rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.4rem;
}
.pcard-meta {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-deep);
  letter-spacing: 0.02em;
}
.pcard-body .h3 { font-size: 1.2rem; margin: 0; }
.pcard-sum {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pcard-format {
  margin: 0.35rem 0 0.75rem;
  font-size: 0.85rem;
  color: var(--ink-2);
}
.pcard .link-arrow { margin-top: auto; }

.pcard[hidden] { display: none !important; }

/* Paths */
.paths-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 900px) {
  .paths-grid {
    grid-template-columns: 1.35fr 1fr 1fr;
    gap: 1.15rem;
    min-height: 520px;
  }
}
.path {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  background: var(--ink);
}
.path img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transition: transform .5s var(--ease), opacity .3s;
}
.path:hover img { transform: scale(1.04); opacity: 0.6; }
.path-content {
  position: relative;
  z-index: 1;
  padding: 1.75rem 1.5rem;
  color: #fff;
  background: linear-gradient(transparent, rgba(14,22,33,0.88) 45%);
  width: 100%;
}
.path-content .h3 { color: #fff; }
.path-content p {
  margin: 0 0 1rem;
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
  max-width: 32ch;
}
.path .link-arrow { color: #7fd4c8; }
.path .link-arrow:hover { color: #fff; }

/* Why */
.why-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 960px) {
  .why-grid {
    grid-template-columns: 1fr 0.9fr;
    gap: 4.5rem;
    align-items: start;
  }
}
.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.why-list li {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
}
.why-list li:first-child { border-top: 1px solid var(--line); }
.why-num {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  padding-top: 0.15rem;
}
.why-list h3 {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
  color: var(--ink);
}
.why-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.why-visual {
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--paper-2);
}
.why-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 959px) {
  .why-visual { aspect-ratio: 16/10; max-height: 360px; }
}

/* About */
.about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr 1.05fr;
    gap: 4rem;
  }
}
.about-copy .lead { margin: 1rem 0 1.25rem; }
.about-copy p { color: var(--muted); margin: 0 0 1rem; max-width: 38rem; }
.about-visual {
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 5/4;
  background: var(--paper-2);
}
.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.fact strong {
  display: block;
  font-size: clamp(1.75rem, 1.4rem + 1.2vw, 2.5rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.fact span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.875rem;
  color: var(--muted);
}

/* Projects */
.proj-layout {
  display: grid;
  gap: 1.15rem;
}
@media (min-width: 900px) {
  .proj-layout {
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: 1fr 1fr;
    min-height: 560px;
  }
  .proj-featured {
    grid-row: 1 / span 2;
  }
}
.proj-card {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 260px;
  text-decoration: none;
  color: inherit;
}
.proj-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: transform .5s var(--ease), opacity .3s;
}
.proj-card:hover img { transform: scale(1.04); opacity: 0.55; }
.proj-body {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(14,22,33,0.92));
  color: #fff;
}
.proj-cat {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #7fd4c8;
  margin-bottom: 0.4rem;
}
.proj-body .h3 { color: #fff; font-size: 1.25rem; }
.proj-featured .proj-body .h3 { font-size: clamp(1.4rem, 1.2rem + 0.8vw, 1.85rem); }
.proj-body p {
  margin: 0.4rem 0 0.75rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.925rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.proj-partners {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.75rem;
}
.proj-card .link-arrow { color: #7fd4c8; }
.proj-actions { margin-top: 2rem; }

/* Gallery */
.gallery {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 800px) {
  .gallery {
    grid-template-columns: 1.35fr 1fr 1fr;
    grid-template-rows: 220px 220px;
    gap: 1rem;
  }
  .gallery-item:nth-child(1) {
    grid-row: 1 / span 2;
  }
}
.gallery-item {
  border-radius: var(--r);
  overflow: hidden;
  background: var(--paper-2);
  min-height: 160px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.75rem;
}
.gallery-foot p {
  margin: 0;
  color: var(--muted);
  max-width: 40rem;
  font-size: 0.975rem;
}

/* Quotes */
.quotes-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 800px) {
  .quotes-grid { grid-template-columns: repeat(3, 1fr); }
}
.quote {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.5rem 1.4rem;
  display: flex;
  flex-direction: column;
}
.quote blockquote {
  margin: 0 0 1.25rem;
  padding: 0;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--ink-2);
  flex: 1;
}
.quote footer {
  font-size: 0.9rem;
}
.quote strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
}
.quote span {
  color: var(--muted);
  font-size: 0.85rem;
}

/* Events empty */
.events-empty {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
.events-empty p { margin: 0.4rem 0 0; color: var(--muted); max-width: 36rem; }

/* News */
.news-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 800px) {
  .news-grid { grid-template-columns: repeat(3, 1fr); }
}
.ncard {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: box-shadow .2s, border-color .2s;
}
.ncard:hover { box-shadow: var(--shadow); border-color: var(--line-strong); }
.ncard-media {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--paper-2);
}
.ncard-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s var(--ease);
}
.ncard:hover .ncard-media img { transform: scale(1.03); }
.ncard-body { padding: 1.15rem 1.2rem 1.4rem; }
.ncard-top {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.ncard-top .cat {
  color: var(--accent-deep);
  font-weight: 600;
}
.ncard-body .h3 {
  font-size: 1.1rem;
  margin-bottom: 0.45rem;
}
.ncard-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.925rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-actions { margin-top: 2rem; }

/* Partners */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 640px) {
  .partners-grid { grid-template-columns: repeat(4, 1fr); }
}
.partner {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.25rem;
}
.partner img {
  max-height: 48px;
  width: auto;
  max-width: 100%;
  filter: grayscale(1) contrast(0.9);
  opacity: 0.75;
  transition: filter .25s, opacity .25s;
}
.partner:hover img {
  filter: none;
  opacity: 1;
}
.partners-actions { margin-top: 1.75rem; }

/* CTA band */
.cta-band {
  padding-block: var(--sec);
  background:
    linear-gradient(135deg, rgba(14,22,33,0.88), rgba(10,125,112,0.82)),
    url("/assets/images/hero/cta-bg.webp") center/cover;
  color: #fff;
}
.cta-band .h2 { color: #fff; max-width: 18ch; }
.cta-band .lead { color: rgba(255,255,255,0.8); }
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 1.25rem;
}
.cta-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
}
.cta-meta a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}
.cta-meta a:hover { color: #7fd4c8; }

/* Contact */
.contact-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
  }
}
.form {
  display: grid;
  gap: 1rem;
}
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
}
.field input,
.field select,
.field textarea {
  font: inherit;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-btn);
  padding: 0.75rem 0.9rem;
  min-height: 48px;
  width: 100%;
}
.field textarea {
  min-height: 120px;
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
  border-color: var(--accent);
}
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-status {
  margin: 0;
  font-size: 0.925rem;
  min-height: 1.4em;
}
.form-status.is-ok { color: var(--accent-deep); }
.form-status.is-err { color: #b42318; }
.contact-info {
  background: var(--paper-2);
  border-radius: var(--r);
  padding: 1.75rem 1.5rem;
}
.contact-info h3 { margin-top: 0; }
.contact-info dl {
  margin: 1.25rem 0 0;
  display: grid;
  gap: 1rem;
}
.contact-info dt {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.2rem;
}
.contact-info dd {
  margin: 0;
  color: var(--ink);
  font-weight: 500;
}
.contact-info a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
}
.contact-info a:hover { color: var(--accent-deep); }

/* Footer */
.ftr {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: clamp(3.5rem, 6vw, 5rem) 0 2rem;
}
.ftr a { color: rgba(255,255,255,0.78); text-decoration: none; }
.ftr a:hover { color: #fff; }
.ftr-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 800px) {
  .ftr-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
    gap: 2rem;
  }
}
.ftr-brand img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
}
.ftr-brand p {
  margin: 0;
  font-size: 0.925rem;
  max-width: 28ch;
  line-height: 1.55;
}
.ftr h4 {
  margin: 0 0 1rem;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.ftr-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.ftr-contact p { margin: 0 0 0.5rem; font-size: 0.925rem; }
.ftr-contact a.phone {
  display: inline-block;
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}
.ftr-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.ftr-social a {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-btn);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ftr-social a:hover { border-color: #fff; }
.ftr-social svg { width: 18px; height: 18px; }
.ftr-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.85rem;
}
.ftr-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

[hidden] { display: none !important; }

@media (max-width: 639px) {
  .hero-cta .btn { width: 100%; }
  .cta-actions .btn { width: 100%; }
  .facts { gap: 0.75rem; }
  .hero-media { grid-template-columns: 1fr 0.85fr; }
}
