:root {
  --ink: #12304a;
  --muted: #607386;
  --line: #dbe6ee;
  --paper: #ffffff;
  --mist: #f4f8fb;
  --navy: #07376b;
  --blue: #0d71bd;
  --teal: #009f98;
  --silver: #eef3f6;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #f5f7f9;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: clamp(28px, 4vw, 58px);
  min-height: 76px;
  width: 100%;
  margin: 0;
  padding: 14px clamp(36px, 6vw, 72px);
  border-bottom: 1px solid rgba(219, 230, 238, .9);
  background: #fff;
  box-shadow: 0 8px 28px rgba(16, 38, 58, .08);
}
.brand img { width: clamp(220px, 22vw, 300px); max-width: 100%; height: auto; display: block; }
.nav-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.nav-toggle:focus-visible + .nav-toggle-button {
  outline: 3px solid rgba(13, 113, 189, .28);
  outline-offset: 3px;
}
.nav-toggle-button {
  display: none;
  width: 42px;
  height: 38px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(7, 55, 107, .16);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(16, 38, 58, .08);
  cursor: pointer;
}
.nav-toggle-button span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}
.main-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(20px,2.2vw,34px);
  color: var(--ink);
  font-size: .98rem;
  font-weight: 700;
  white-space: nowrap;
}
.main-nav a:hover, .site-footer a:hover { color: var(--blue); }

.admin-link, .primary-action, .secondary-action, .contact-form button, .editor-panel button[type="submit"], .login-card button, .logout-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
}
.admin-link {
  gap: 8px;
  min-height: 36px;
  padding: 0 14px;
  background: linear-gradient(135deg, #07376b 0%, #0d71bd 54%, #009f98 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(13, 113, 189, .24);
}
.admin-link span {
  position: relative;
  width: 13px;
  height: 11px;
  border: 2px solid currentColor;
  border-radius: 2px;
}
.admin-link span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -9px;
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  transform: translateX(-50%);
}
.main-nav .admin-link:hover {
  color: #fff;
  background: linear-gradient(135deg, #052f5c 0%, #0b63a6 48%, #008c86 100%);
}

.hero {
  position: relative;
  min-height: 590px;
  width: 100%;
  margin: 0 0 34px;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-top: 0;
  box-shadow: 0 18px 34px rgba(23, 39, 55, .14);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(2,38,78,.98) 0%, rgba(2,57,105,.92) 34%, rgba(4,80,130,.62) 58%, rgba(4,31,72,.4) 100%),
    url("../img/hero-prsc-bg.png") center / cover no-repeat;
  background-attachment: fixed;
}
.hero::after {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: -70px;
  height: 190px;
  background:
    radial-gradient(70% 150% at 82% 0%, rgba(0,159,152,.76), rgba(0,159,152,.18) 58%, transparent 59%),
    #fff;
  border-radius: 50% 50% 0 0 / 34% 34% 0 0;
  z-index: 1;
}
.hero {
  display: block;
  min-height: 0;
  aspect-ratio: 1983 / 793;
  background: #fff;
}
.hero::before,
.hero::after {
  content: none;
}
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  visibility: hidden;
  transition: opacity .45s ease, visibility .45s ease;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}
.hero-banner {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 20px;
  z-index: 4;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}
.hero-dots button {
  width: 12px;
  height: 12px;
  border: 1px solid rgba(255,255,255,.88);
  border-radius: 50%;
  padding: 0;
  background: rgba(255,255,255,.42);
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(5,30,56,.24);
}
.hero-dots button.is-active {
  background: #fff;
}
.hero-content {
  display: none;
}
.hero-content {
  position: relative;
  width: min(1110px, calc(100% - 56px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 54px;
  align-items: center;
  color: #fff;
  min-height: 590px;
  padding-bottom: 58px;
}
.hero-copy { max-width: 610px; padding: 36px 0 92px; }
.hero-copy, .hero-panel { position: relative; z-index: 2; }
.eyebrow, .section-kicker {
  display: block;
  margin-bottom: 14px;
  color: var(--teal);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}
.hero .eyebrow {
  color: #72f2e5;
  font-size: .86rem;
}
.hero .eyebrow::after {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  margin-top: 14px;
  background: #72f2e5;
}
h1, h2, h3, p { margin-top: 0; }
.hero h1 {
  max-width: 650px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 5.4vw, 4.25rem);
  line-height: 1.08;
  letter-spacing: 0;
}
.hero h1 span { color: #72f2e5; }
.hero p {
  max-width: 610px;
  color: rgba(255,255,255,.86);
  font-size: 1.08rem;
  line-height: 1.62;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 24px; }
.primary-action,
.secondary-action {
  gap: 10px;
  min-height: 42px;
  padding: 0 18px;
}
.primary-action { background: #08b9ad; color: #fff; box-shadow: 0 14px 26px rgba(0,159,152,.24); }
.secondary-action { border: 1px solid rgba(255,255,255,.58); color: #fff; background: rgba(255,255,255,.05); }
.hero-panel {
  display: grid;
  gap: 0;
  align-self: center;
  margin: 40px 0 74px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 8px;
  background: rgba(7,43,76,.68);
  box-shadow: 0 18px 45px rgba(0,0,0,.22);
  backdrop-filter: blur(4px);
}
.hero-panel div {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.hero-panel div:last-child { border-bottom: 0; }
.hero-panel i {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
  color: #fff;
  font-style: normal;
  font-size: 1.35rem;
}
.hero-panel p { margin: 0; }
.hero-panel strong { display: block; font-size: 2rem; line-height: 1; }
.hero-panel span { color: rgba(255,255,255,.82); }

.region-visual {
  position: absolute;
  left: 51%;
  top: 72px;
  z-index: 1;
  width: 260px;
  height: 255px;
  transform: translateX(-50%);
  opacity: .82;
  pointer-events: none;
}
.map-line {
  position: absolute;
  display: grid;
  place-items: center;
  color: rgba(160,224,235,.82);
  font-size: 3.1rem;
  font-weight: 900;
  letter-spacing: 0;
  background: rgba(0,159,152,.08);
  border: 1.5px solid rgba(16,213,221,.66);
  box-shadow: inset 0 0 26px rgba(0,159,152,.18), 0 0 22px rgba(0,159,152,.12);
}
.parana-map {
  top: 0;
  left: 18px;
  width: 170px;
  height: 142px;
  clip-path: polygon(18% 20%, 50% 4%, 87% 16%, 95% 49%, 70% 82%, 35% 96%, 7% 72%);
}
.santa-map {
  left: 94px;
  top: 122px;
  width: 154px;
  height: 112px;
  clip-path: polygon(7% 42%, 43% 6%, 91% 21%, 95% 61%, 58% 94%, 16% 80%);
}

.hero-features {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 38px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.hero-features article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  min-width: 0;
}
.hero-features i {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255,255,255,.13);
  color: #fff;
  font-style: normal;
  font-size: 1.45rem;
}
.hero-features strong,
.hero-features span {
  display: block;
}
.hero-features strong {
  margin-bottom: 3px;
  color: #fff;
  font-size: .9rem;
}
.hero-features span {
  color: rgba(255,255,255,.76);
  font-size: .78rem;
  line-height: 1.35;
}

.section { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 92px 0; }
.home-news {
  padding-top: 74px;
  padding-bottom: 78px;
}
.two-column { display: grid; grid-template-columns: .85fr 1.15fr; gap: 64px; }
.section h1, .section h2, .contact-section h2, .admin-topbar h2 {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: 0;
}
.prose p, .contact-section p, .news-card p, .feature-card p, .timeline p, .admin-topbar p {
  color: var(--muted);
  line-height: 1.72;
}

.mission-band { display: grid; grid-template-columns: repeat(3,1fr); background: var(--ink); color: #fff; }
.mission-band article { min-height: 235px; padding: clamp(32px,5vw,64px); border-right: 1px solid rgba(255,255,255,.15); }
.mission-band span { display: block; margin-bottom: 18px; color: #7ef0e2; font-weight: 800; text-transform: uppercase; }
.mission-band p { max-width: 390px; margin-bottom: 0; font-size: 1.25rem; line-height: 1.45; }
.section-heading { max-width: 760px; margin-bottom: 42px; }
.feature-grid, .director-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.feature-card, .director-grid article, .news-card, .editor-panel, .publication-panel, .metric-grid article, .login-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.feature-card { min-height: 210px; padding: 26px; }
.feature-card span { display: block; width: 38px; height: 4px; margin-bottom: 28px; background: linear-gradient(90deg,var(--teal),var(--blue)); }
.feature-card h3 { font-size: 1.2rem; }

.parallax-section {
  min-height: 440px;
  display: flex;
  align-items: center;
  padding: 70px clamp(20px,8vw,120px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7,55,107,.88), rgba(7,55,107,.5)),
    radial-gradient(circle at 78% 26%, rgba(37,165,111,.48), transparent 24%),
    linear-gradient(135deg, #07376b, #0d71bd 54%, #009f98);
  background-attachment: fixed;
}
.parallax-section div { max-width: 820px; }
.parallax-section h2 { margin: 0; font-size: clamp(2.4rem,5vw,5rem); line-height: 1.02; letter-spacing: 0; }

.timeline {
  position: relative;
  display: grid;
  gap: 0;
  max-width: 980px;
  margin: 0 auto;
  padding: 18px 0;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  transform: translateX(-50%);
  background: linear-gradient(var(--teal), var(--blue));
}
.timeline article {
  position: relative;
  width: calc(50% - 42px);
  min-height: 0;
  padding: 0 0 46px;
  background: transparent;
}
.timeline article:nth-child(odd) {
  justify-self: start;
  text-align: right;
}
.timeline article:nth-child(even) {
  justify-self: end;
}
.timeline article::before {
  content: "";
  position: absolute;
  top: 8px;
  width: 18px;
  height: 18px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,159,152,.24);
}
.timeline article:nth-child(odd)::before { right: -53px; }
.timeline article:nth-child(even)::before { left: -53px; }
.timeline time {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 2rem;
  font-weight: 900;
}
.timeline h3 { margin: 0 0 10px; }
.associates { width: 100%; max-width: none; padding-right: clamp(20px,6vw,90px); padding-left: clamp(20px,6vw,90px); background: var(--mist); }
.associate-list { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.associate-card {
  min-height: 150px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 16px;
  padding: 22px 18px;
  border: 1px solid rgba(219, 230, 238, .9);
  border-bottom: 4px solid var(--teal);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(16, 38, 58, .06);
  text-align: center;
}
.associate-logo {
  width: min(190px, 100%);
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(13,113,189,.12);
  border-radius: 7px;
  background:
    linear-gradient(135deg, rgba(244,248,251,.96), rgba(255,255,255,.96)),
    #fff;
  color: var(--navy);
  font-size: clamp(.9rem, 1.4vw, 1.2rem);
  font-weight: 900;
  line-height: 1.05;
}
.associate-card h3 {
  margin: 0;
  color: #29485d;
  font-size: .86rem;
  line-height: 1.35;
}
.associate-logo img {
  display: block;
  width: 100%;
  max-height: 52px;
  object-fit: contain;
}

.supplier-carousel-section {
  overflow: hidden;
  padding: 82px 0 90px;
  background: #fff;
}
.supplier-carousel-heading {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 36px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}
.supplier-carousel-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: 0;
}
.supplier-indication-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(0,159,152,.28);
  border-radius: 6px;
  background: #f6fbfb;
  color: var(--navy);
  font-weight: 800;
  white-space: nowrap;
}
.supplier-indication-link:hover {
  border-color: var(--teal);
  color: var(--blue);
}
.supplier-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.supplier-carousel::before,
.supplier-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(120px, 16vw);
  pointer-events: none;
}
.supplier-carousel::before {
  left: 0;
  background: linear-gradient(90deg, #fff, rgba(255,255,255,0));
}
.supplier-carousel::after {
  right: 0;
  background: linear-gradient(270deg, #fff, rgba(255,255,255,0));
}
.supplier-track {
  display: flex;
  width: max-content;
  gap: 14px;
  padding: 6px 14px 16px;
  animation: supplier-scroll 34s linear infinite;
}
.supplier-carousel:hover .supplier-track,
.supplier-carousel:focus-within .supplier-track {
  animation-play-state: paused;
}
.supplier-card {
  flex: 0 0 220px;
  min-height: 118px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 22px 18px;
  border: 1px solid rgba(219, 230, 238, .95);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(244,248,251,.9), rgba(255,255,255,.98)),
    #fff;
  box-shadow: 0 14px 28px rgba(16, 38, 58, .07);
  text-align: center;
}
.supplier-logo {
  width: min(190px, 100%);
  height: 72px;
  display: grid;
  place-items: center;
  padding: 8px 10px;
  border: 1px solid rgba(13,113,189,.1);
  border-radius: 7px;
  background: #fff;
  color: var(--navy);
  font-size: .92rem;
  font-weight: 900;
  line-height: 1.05;
}
.supplier-logo img {
  display: block;
  width: 100%;
  max-height: 58px;
  object-fit: contain;
}
@keyframes supplier-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 7px)); }
}
.director-grid article { padding: 24px; }
.director-grid span, .news-card span, .publication-list span { color: var(--teal); font-size: .78rem; font-weight: 800; text-transform: uppercase; }
.director-grid h3, .news-card h3, .publication-list h4 { margin: 10px 0; }
.news-list { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.news-heading {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}
.news-heading h2 { max-width: 760px; }
.view-more-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(13,113,189,.22);
  border-radius: 6px;
  background: #fff;
  color: var(--blue);
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(16, 38, 58, .08);
}
.view-more-link:hover {
  border-color: var(--blue);
  color: var(--navy);
}
.news-card {
  display: block;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(16, 38, 58, .08);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.news-card:hover {
  border-color: rgba(13,113,189,.38);
  box-shadow: 0 18px 38px rgba(16, 38, 58, .12);
  transform: translateY(-2px);
}
.news-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--silver);
}
.news-card:nth-child(2) img { object-position: 50% 28%; }
.news-card:nth-child(3) img { object-position: 74% 50%; }
.news-card-body { padding: 22px; }
.news-card p { margin-bottom: 0; }
.news-detail {
  max-width: 920px;
}
.news-detail h1 {
  margin-bottom: 28px;
}
.news-detail-image {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  margin-bottom: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--silver);
  box-shadow: 0 14px 30px rgba(16, 38, 58, .08);
}
.news-detail-content {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(16, 38, 58, .06);
}
.news-detail-content p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.78;
}
.news-detail-content p:last-child {
  margin-bottom: 0;
}

.contact-section { display: grid; grid-template-columns: .75fr 1fr; gap: 56px; padding: 92px clamp(20px,6vw,90px); background: linear-gradient(135deg,#f7fbfd,#e8f6f3); }
.contact-section a { color: var(--blue); font-size: 1.15rem; font-weight: 800; }
.contact-form, .login-card form, .editor-panel { display: grid; gap: 16px; }
label { display: grid; gap: 8px; color: #385469; font-size: .92rem; font-weight: 700; }
.field-help {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 600;
  line-height: 1.35;
}
input, textarea, select {
  width: 100%;
  border: 1px solid #cfdde7;
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}
input:focus, textarea:focus, select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(13,113,189,.12); }
.check-row { grid-template-columns: 20px 1fr; align-items: start; }
.check-row input { width: 18px; height: 18px; margin-top: 2px; }
.contact-form button, .editor-panel button[type="submit"], .login-card button { width: 100%; background: var(--blue); color: #fff; }
.form-feedback {
  display: block;
  font-weight: 800;
  line-height: 1.45;
}
.form-feedback.success { color: #087451; }
.form-feedback.error { color: #b42318; }

.legal-page h1 {
  max-width: 780px;
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.08;
}
.legal-content {
  max-width: 860px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(16, 38, 58, .06);
}
.legal-content h2 {
  margin: 28px 0 10px;
  color: var(--ink);
  font-size: 1.25rem;
}
.legal-content h2:first-of-type {
  margin-top: 0;
}
.legal-content p {
  color: var(--muted);
  line-height: 1.72;
}
.legal-content p:last-child {
  margin-bottom: 0;
}
.legal-content a {
  color: var(--blue);
  font-weight: 800;
}

.site-footer {
  display: grid;
  border-top: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.35fr .8fr .9fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  padding: 44px clamp(20px,5vw,72px) 38px;
}
.site-footer h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: .92rem;
  line-height: 1.2;
  text-transform: uppercase;
}
.site-footer p {
  margin: 0;
  line-height: 1.6;
}
.site-footer a {
  color: var(--ink);
  font-weight: 800;
}
.site-footer .footer-brand {
  display: block;
  width: 220px;
  height: auto;
  margin-bottom: 18px;
}
.footer-about,
.footer-access,
.footer-links {
  display: grid;
  align-content: start;
  gap: 10px;
}
.footer-about p,
.footer-access p {
  max-width: 360px;
}
.footer-about a {
  color: var(--blue);
}
.footer-links a {
  color: #4f6578;
}
.footer-admin-link {
  display: inline-flex;
  width: fit-content;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  padding: 0 14px;
  border-radius: 6px;
  background: var(--mist);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px clamp(20px,5vw,72px);
  border-top: 1px solid var(--line);
  background: #fbfcfd;
  color: #7a8a98;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}
.footer-bottom img {
  display: block;
  width: 150px;
  height: auto;
}

.cookie-consent {
  position: fixed;
  left: clamp(14px, 3vw, 28px);
  right: clamp(14px, 3vw, 28px);
  bottom: 18px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid rgba(219, 230, 238, .96);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 52px rgba(5,30,56,.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.cookie-consent.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.cookie-consent p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}
.cookie-consent div {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}
.cookie-consent a,
.cookie-consent button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0 14px;
  font-weight: 800;
  white-space: nowrap;
}
.cookie-consent a {
  border: 1px solid rgba(13,113,189,.2);
  color: var(--blue);
}
.cookie-consent button {
  border: 0;
  background: var(--blue);
  color: #fff;
  cursor: pointer;
}

.newsletter-popup {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(7, 31, 52, .44);
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, visibility .22s ease;
}
.newsletter-popup.is-visible {
  opacity: 1;
  visibility: visible;
}
.newsletter-dialog {
  position: relative;
  width: min(520px, 100%);
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(219, 230, 238, .96);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(244,248,251,.98)),
    #fff;
  box-shadow: 0 28px 70px rgba(5,30,56,.28);
  transform: translateY(18px);
  transition: transform .22s ease;
}
.newsletter-dialog::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: linear-gradient(90deg, var(--navy), var(--blue), var(--teal));
}
.newsletter-popup.is-visible .newsletter-dialog { transform: translateY(0); }
.newsletter-dialog img {
  display: block;
  width: 220px;
  height: auto;
  margin-bottom: 20px;
}
.newsletter-dialog h2 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1.08;
}
.newsletter-dialog p {
  color: var(--muted);
  line-height: 1.62;
}
.newsletter-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
}
.newsletter-close:hover { color: var(--blue); }
.newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 176px;
  gap: 12px;
  align-items: end;
  margin-top: 18px;
}
.newsletter-form button {
  min-height: 47px;
  border: 0;
  border-radius: 6px;
  padding: 0 18px;
  background: linear-gradient(135deg, #07376b 0%, #0d71bd 54%, #009f98 100%);
  color: #fff;
  cursor: pointer;
  font-weight: 800;
  white-space: nowrap;
}
.newsletter-feedback {
  display: block;
  min-height: 20px;
  margin-top: 12px;
  color: #087451;
  font-weight: 700;
}

.admin-login {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: linear-gradient(135deg, rgba(7,55,107,.96), rgba(0,159,152,.72)), var(--navy);
}
.login-card { width: min(440px,100%); padding: 34px; box-shadow: 0 24px 80px rgba(5,30,56,.22); }
.login-card h1 { margin-bottom: 10px; font-size: 2.4rem; }
.back-link { display: inline-flex; margin-bottom: 26px; color: var(--blue); font-weight: 800; }
.admin-sidebar .back-link { color: #7ef0e2; }
.login-error, .notice.error { color: #b42318; line-height: 1.45; }

.admin-shell { min-height: 100vh; display: grid; grid-template-columns: 280px 1fr; background: #eef5f8; }
.admin-sidebar { position: sticky; top: 0; height: 100vh; display: flex; flex-direction: column; gap: 28px; padding: 28px; background: #102d45; color: #fff; }
.admin-sidebar .section-kicker { color: #7ef0e2; }
.admin-sidebar h1 { font-size: 2.4rem; }
.admin-sidebar nav { display: grid; gap: 10px; }
.admin-sidebar nav a { padding: 12px 14px; border-radius: 6px; background: rgba(255,255,255,.08); color: rgba(255,255,255,.86); font-weight: 700; transition: background .18s ease, color .18s ease, transform .18s ease; }
.admin-sidebar nav a:hover,
.admin-sidebar nav a.active { background: #fff; color: #102d45; transform: translateX(3px); }
.logout-button { margin-top: auto; background: #fff; color: var(--ink); }
.admin-content { width: min(1320px, 100%); padding: clamp(24px,4vw,54px); }
.admin-topbar { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 24px; padding: 24px 26px; border: 1px solid var(--line); border-radius: 8px; background: #fff; box-shadow: 0 16px 44px rgba(16, 45, 69, .07); }
.admin-topbar h2 { margin-bottom: 6px; }
.admin-topbar p { max-width: 640px; margin: 0; color: var(--muted); }
.admin-user-pill { flex: 0 0 auto; display: grid; gap: 3px; min-width: 190px; padding: 12px 14px; border-radius: 8px; background: var(--mist); border: 1px solid var(--line); }
.admin-user-pill span { color: var(--muted); font-size: .78rem; font-weight: 800; text-transform: uppercase; }
.admin-user-pill strong { color: var(--ink); }
.notice { padding: 14px 16px; border-radius: 8px; margin-bottom: 18px; background: #fff; border: 1px solid var(--line); font-weight: 700; }
.notice.success { color: #087451; background: #e8f8f1; border-color: #b9ead7; }
.metric-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-bottom: 20px; }
.metric-grid article { padding: 22px; border-top: 4px solid var(--teal); box-shadow: 0 14px 36px rgba(16, 45, 69, .06); }
.metric-grid strong { display: block; font-size: 2.2rem; line-height: 1; margin-bottom: 8px; }
.metric-grid span { color: var(--muted); }
.admin-dashboard-panel { padding: 26px; }
.admin-shortcuts { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; }
.admin-shortcuts a { display: grid; gap: 8px; min-height: 108px; padding: 18px; border: 1px solid var(--line); border-radius: 8px; background: #fff; transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease; }
.admin-shortcuts a:hover { border-color: rgba(0,159,152,.5); box-shadow: 0 14px 30px rgba(16,45,69,.08); transform: translateY(-2px); }
.admin-shortcuts span { color: var(--teal); font-size: .78rem; font-weight: 900; text-transform: uppercase; }
.admin-shortcuts strong { color: var(--ink); line-height: 1.35; }
.admin-grid { display: grid; grid-template-columns: minmax(320px, 420px) minmax(0,1fr); gap: 20px; align-items: start; margin-bottom: 28px; }
.editor-panel, .publication-panel { padding: 26px; box-shadow: 0 14px 36px rgba(16, 45, 69, .06); }
.editor-panel { position: sticky; top: 24px; }
.publication-list { display: grid; gap: 12px; }
.publication-list article { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 16px 18px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.publication-list article > div:first-child { min-width: 0; }
.publication-list span { display: inline-flex; margin-bottom: 8px; color: var(--teal); font-size: .78rem; font-weight: 900; text-transform: uppercase; }
.publication-list h4 { font-size: 1rem; }
.publication-list small { color: var(--muted); }
.publication-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 8px; }
.publication-actions form { margin: 0; }
.publication-actions button { min-height: 34px; border: 0; border-radius: 6px; padding: 0 10px; background: var(--silver); color: var(--ink); cursor: pointer; font-weight: 800; }
.publication-actions .danger { background: #fee4e2; color: #b42318; }
.published, .draft { flex: 0 0 auto; padding: 7px 10px; border-radius: 999px; font-size: .78rem; }
.published { background: #dff7ef; color: #087451; }
.draft { background: #fff3d6; color: #966915; }
.admin-table-section {
  margin-bottom: 28px;
  padding: 26px;
  box-shadow: 0 14px 36px rgba(16, 45, 69, .06);
}
.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.panel-heading h3 { margin: 0; }
.admin-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.admin-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: #fff;
}
.admin-table th,
.admin-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  text-align: left;
  vertical-align: top;
}
.admin-table th {
  background: var(--mist);
  color: var(--ink);
  font-size: .78rem;
  text-transform: uppercase;
}
.admin-table td:nth-child(4) {
  max-width: 360px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px 18px;
    min-height: auto;
    padding: 14px 24px;
  }
  .nav-toggle-button { display: flex; }
  .nav-toggle:checked + .nav-toggle-button span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle:checked + .nav-toggle-button span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked + .nav-toggle-button span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    border-top: 0 solid transparent;
    white-space: normal;
    transition: max-height .24s ease, padding .24s ease, border-color .24s ease;
  }
  .nav-toggle:checked ~ .main-nav {
    max-height: 360px;
    padding-top: 12px;
    border-top-width: 1px;
    border-top-color: var(--line);
  }
  .main-nav a {
    display: flex;
    min-height: 42px;
    align-items: center;
    padding: 10px 12px;
    border-radius: 6px;
    background: var(--mist);
  }
  .main-nav .admin-link {
    grid-column: 1 / -1;
    justify-content: center;
    min-height: 42px;
  }
  .hero-content, .two-column, .contact-section, .admin-shell, .admin-grid, .admin-shortcuts { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-content { min-height: 720px; padding-top: 48px; padding-bottom: 190px; }
  .region-visual { left: auto; right: -18px; top: 30px; width: 280px; opacity: .32; transform: none; }
  .hero-panel { width: min(360px, 100%); margin: 0 0 20px; }
  .hero-features { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .mission-band, .feature-grid, .director-grid, .associate-list, .news-list, .metric-grid { grid-template-columns: repeat(2,1fr); }
  .news-heading {
    align-items: flex-start;
    flex-direction: column;
  }
  .supplier-carousel-heading {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .admin-sidebar { position: relative; height: auto; }
  .admin-sidebar nav { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .admin-topbar { align-items: stretch; flex-direction: column; }
  .admin-user-pill { width: 100%; }
  .editor-panel { position: static; }
}

@media (max-width: 620px) {
  .site-header { gap: 14px; padding: 12px 18px; }
  .brand img { width: 170px; }
  .admin-link { padding: 0 12px; }
  .main-nav {
    grid-template-columns: 1fr;
    gap: 8px;
    font-size: .92rem;
  }
  .main-nav a { min-height: 40px; }
  .hero h1 { font-size: 2.65rem; }
  .hero-content { width: calc(100% - 32px); }
  .hero-copy { padding-top: 66px; }
  .region-visual { display: none; }
  .hero-features {
    position: relative;
    bottom: auto;
    grid-template-columns: 1fr;
    margin-top: -140px;
  }
  .hero-content { padding-bottom: 70px; }
  .hero-panel, .mission-band, .feature-grid, .director-grid, .associate-list, .news-list, .metric-grid, .admin-sidebar nav { grid-template-columns: 1fr; }
  .publication-list article { align-items: flex-start; flex-direction: column; }
  .publication-actions { justify-content: flex-start; width: 100%; }
  .timeline { padding-left: 28px; }
  .timeline::before { left: 9px; transform: none; }
  .timeline article,
  .timeline article:nth-child(odd),
  .timeline article:nth-child(even) {
    width: 100%;
    justify-self: stretch;
    text-align: left;
  }
  .timeline article:nth-child(odd)::before,
  .timeline article:nth-child(even)::before {
    left: -28px;
    right: auto;
  }
  .section, .contact-section { padding-top: 68px; padding-bottom: 68px; }
  .home-news { padding-top: 52px; }
  .view-more-link { width: 100%; }
  .supplier-carousel-section { padding: 64px 0 70px; }
  .supplier-indication-link { width: 100%; }
  .supplier-card { flex-basis: 190px; }
  .newsletter-popup {
    padding: 14px;
  }
  .newsletter-dialog { padding: 24px; }
  .newsletter-form { grid-template-columns: 1fr; }
  .newsletter-form button { width: 100%; }
  .footer-main {
    grid-template-columns: 1fr;
    padding-top: 34px;
    padding-bottom: 30px;
  }
  .footer-bottom {
    align-items: center;
    flex-direction: column;
    gap: 8px;
  }
  .cookie-consent {
    align-items: stretch;
    flex-direction: column;
  }
  .cookie-consent div {
    align-items: stretch;
    flex-direction: column;
  }
  .cookie-consent a,
  .cookie-consent button {
    width: 100%;
  }
}

.hero > .hero-content {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .supplier-track {
    width: auto;
    overflow-x: auto;
    animation: none;
  }
}
