@font-face {
  font-family: "Golos Text";
  src: url("Golos_Text/GolosText-VariableFont_wght.ttf") format("truetype");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --blue: #0975b6;
  --blue-dark: #07517f;
  --lime: #d7d16c;
  --ink: #33383d;
  --muted: #6d7175;
  --line: #d8dadd;
  --paper: #ffffff;
  --soft: #f4f7f8;
  --radius: 5px;
  --content: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Golos Text", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: white;
  border-radius: 6px;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid rgba(0, 0, 0, .04);
}

.header-inner {
  width: min(100% - 48px, 1220px);
  min-height: 118px;
  margin: auto;
  display: grid;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  gap: 36px;
}

.brand img { width: 154px; }
.main-nav { display: flex; align-items: center; gap: 30px; }
.nav-item { position: relative; }
.nav-trigger, .nav-link {
  border: 0;
  padding: 15px 0;
  background: transparent;
  font-size: 17px;
  font-weight: 650;
  cursor: pointer;
}

.nav-trigger::after {
  content: "";
  display: inline-block;
  margin-left: 8px;
  border: 4px solid transparent;
  border-top-color: var(--blue);
  transform: translateY(3px);
}

.dropdown {
  position: absolute;
  top: calc(100% - 2px);
  left: -18px;
  width: 250px;
  padding: 10px 0;
  background: rgba(255,255,255,.98);
  box-shadow: 0 16px 35px rgba(26, 47, 61, .16);
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .2s ease;
}
.dropdown-wide { width: 285px; }
.dropdown a { display: block; padding: 9px 18px; font-size: 14px; }
.dropdown a:hover, .dropdown a:focus-visible { color: var(--blue); background: #eef7fc; }
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown,
.nav-item.open .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

.utility-nav { display: flex; align-items: center; gap: 18px; align-self: center; padding-top: 0; }
.utility-nav a, .utility-nav button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 14px;
  cursor: pointer;
}
.utility-nav svg { width: 19px; height: 19px; flex: 0 0 auto; }
.icon-stroke {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon-fill { fill: currentColor; stroke: none; }
.icon-stroke .icon-dot { fill: currentColor; stroke: none; }
.utility-nav a:hover, .utility-nav button:hover { color: var(--blue); }
.social-link { width: 22px; height: 22px; justify-content: center; }
.menu-toggle { display: none; }

.hero {
  min-height: 785px;
  background: #056ba8 url("degrade@1920x-100.jpg") center / cover no-repeat;
  color: white;
}
.hero-inner { width: min(100% - 48px, 960px); margin: auto; padding: 115px 0 54px; text-align: center; }
.hero-search {
  height: 72px;
  display: flex;
  align-items: center;
  margin: 0 40px 88px;
  padding: 0 18px 0 28px;
  border-radius: 40px;
  background: white;
  box-shadow: 0 10px 35px rgba(20, 32, 40, .11);
}
.hero-search input { flex: 1; min-width: 0; border: 0; outline: 0; color: var(--ink); font-style: italic; font-size: 16px; }
.hero-search button { width: 48px; height: 48px; display: grid; place-items: center; border: 0; background: transparent; cursor: pointer; }
.hero-search svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.search-results {
  display: none;
  margin: -72px 40px 40px;
  padding: 18px 22px;
  color: var(--ink);
  background: white;
  text-align: left;
  border-radius: var(--radius);
}
.search-results.show { display: block; }

.news-grid { display: grid; grid-template-columns: 1.03fr 1fr; gap: 22px; text-align: left; }
.news-card { position: relative; overflow: hidden; border-radius: var(--radius); background: white; color: var(--ink); transition: transform .25s ease, box-shadow .25s ease; }
.news-card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(22, 32, 38, .22); }
.news-featured { min-height: 410px; color: white; }
.news-featured img, .feature-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.news-card:hover img, .feature-card:hover img { transform: scale(1.035); }
.news-shade, .card-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(6, 18, 28, .86)); }
.news-copy { position: absolute; inset: auto 32px 30px; }
.news-copy small, .feature-copy small { display: block; margin-bottom: 7px; font-size: 13px; }
.news-copy strong { display: block; font-size: 26px; line-height: 1.04; }
.news-stack { display: grid; grid-template-rows: 1fr 1fr; gap: 20px; }
.news-horizontal { display: grid; grid-template-columns: 46% 54%; min-height: 195px; }
.news-horizontal img { width: 100%; height: 100%; object-fit: cover; }
.news-side-copy { display: flex; flex-direction: column; justify-content: center; padding: 20px 24px; }
.news-side-copy small { margin-bottom: 9px; color: var(--muted); font-size: 12px; }
.news-side-copy strong { font-size: 17px; line-height: 1.05; }

.outline-button { display: inline-flex; gap: 9px; align-items: center; justify-content: center; padding: 12px 28px; border: 2px solid currentColor; border-radius: 28px; font-weight: 700; transition: .2s ease; }
.outline-button.on-color { margin-top: 26px; color: white; }
.outline-button:hover { background: white; color: var(--blue); }

.section-inner { width: min(100% - 64px, var(--content)); margin: auto; padding: 120px 0; }
.section-inner.wide { width: min(100% - 40px, 1280px); }
.eyebrow { margin: 0 0 9px; color: var(--blue); text-align: center; text-transform: uppercase; letter-spacing: .13em; font-size: 12px; font-weight: 800; }
.eyebrow.light { color: white; text-align: left; opacity: .8; }
.services h2, .feature-section h2 { margin: 0 0 62px; text-align: center; font-size: clamp(46px, 5vw, 65px); line-height: 1; letter-spacing: -.045em; }
.service-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px 24px; }
.service-pills a { padding: 11px 20px; border: 1px solid var(--ink); border-radius: 28px; transition: .2s ease; }
.service-pills a:hover { color: white; background: var(--blue); border-color: var(--blue); transform: translateY(-2px); }

.feature-section { overflow: hidden; }
.feature-section.soft { background: var(--soft); }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 300px; gap: 18px; }
.feature-grid.four { grid-template-columns: repeat(4, 1fr); }
.feature-card { position: relative; min-width: 0; overflow: hidden; border-radius: var(--radius); color: white; background: #ccd4d7; }
.feature-card.feature-tall { grid-row: span 1; }
.feature-copy { position: absolute; inset: auto 25px 24px; }
.feature-copy strong, .graphic-card strong { display: block; font-size: 25px; line-height: 1.04; }
.graphic-card { display: flex; padding: 30px; align-items: flex-end; }
.graphic-card small { display: block; margin-bottom: 8px; font-size: 13px; }
.graphic-card em { display: block; margin-top: 26px; font-style: normal; font-weight: 650; }
.blue-card { background: var(--blue); }
.blue-card .graphic-mark { position: absolute; top: -80px; right: -6px; font-size: 300px; line-height: 1; font-weight: 900; color: rgba(255,255,255,.11); }
.lime-card { color: #26343b; background: var(--lime); }
.dark-card { background: #273d4c; }
.outline-card { color: var(--blue-dark); background: white; border: 3px solid var(--blue); }

.participation { padding: 86px 32px; color: white; background: #056ba8 url("degrade@1920x-100.jpg") center 58% / cover no-repeat; }
.participation-inner { width: min(100%, 1120px); margin: auto; display: flex; align-items: end; justify-content: space-between; gap: 50px; }
.participation h2 { margin: 0; font-size: clamp(44px, 6vw, 72px); letter-spacing: -.05em; }
.participation p:not(.eyebrow) { max-width: 640px; margin: 18px 0 0; font-size: 19px; line-height: 1.5; }
.participation .outline-button { flex: 0 0 auto; }

.site-footer { color: white; background: #18303e; }
.footer-inner { width: min(100% - 64px, 1180px); margin: auto; display: grid; grid-template-columns: 1.6fr 1fr 1.25fr .8fr; gap: 54px; padding: 78px 0; }
.footer-brand img { width: 245px; margin-bottom: 22px; }
.footer-brand p { color: var(--lime); font-weight: 700; }
.footer-inner h2 { margin: 0 0 18px; color: var(--lime); font-size: 15px; text-transform: uppercase; letter-spacing: .08em; }
.footer-inner a, .footer-inner span { display: block; margin: 10px 0; color: rgba(255,255,255,.82); font-size: 14px; }
.footer-inner a:hover { color: white; text-decoration: underline; }
.footer-bottom { padding: 20px 32px; color: rgba(255,255,255,.68); text-align: center; border-top: 1px solid rgba(255,255,255,.12); font-size: 13px; }

.floating-button { position: fixed; z-index: 90; bottom: 24px; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; color: white; border: 3px solid white; box-shadow: 0 5px 18px rgba(0,0,0,.22); font-weight: 800; cursor: pointer; }
.whatsapp { right: 22px; background: #26c763; }
.whatsapp svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.search-dialog { width: min(90vw, 680px); padding: 46px; border: 0; border-radius: 10px; box-shadow: 0 25px 80px rgba(0,0,0,.25); }
.search-dialog::backdrop { background: rgba(10, 28, 38, .75); backdrop-filter: blur(4px); }
.search-dialog h2 { margin: 0 0 28px; text-align: center; font-size: 45px; }
.close-dialog { position: absolute; top: 13px; right: 17px; border: 0; background: transparent; font-size: 32px; cursor: pointer; }
.dialog-search { display: flex; gap: 10px; }
.dialog-search input { flex: 1; min-width: 0; padding: 14px 18px; border: 1px solid var(--line); border-radius: 30px; outline: 0; }
.dialog-search input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(9,117,182,.12); }
.dialog-search button { padding: 12px 25px; color: white; background: var(--blue); border: 0; border-radius: 28px; font-weight: 700; cursor: pointer; }
.dialog-results { margin-top: 22px; }

@media (max-width: 1080px) {
  .header-inner { grid-template-columns: 145px 1fr auto; gap: 24px; }
  .main-nav { gap: 18px; }
  .nav-trigger, .nav-link { font-size: 15px; }
  .utility-nav span { display: none; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid.four { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 780px) {
  .header-inner { width: min(100% - 32px, 720px); min-height: 82px; grid-template-columns: 1fr auto; }
  .brand img { width: 144px; }
  .menu-toggle { width: 44px; height: 44px; display: grid; place-content: center; gap: 5px; border: 0; background: transparent; }
  .menu-toggle span { width: 26px; height: 2px; display: block; background: var(--ink); transition: .2s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav { position: fixed; inset: 82px 0 0; display: none; padding: 28px 24px 120px; overflow: auto; background: white; align-items: stretch; flex-direction: column; gap: 0; }
  body.menu-open .main-nav { display: flex; }
  .nav-trigger, .nav-link { width: 100%; display: block; padding: 17px 4px; text-align: left; border-bottom: 1px solid var(--line); font-size: 20px; }
  .dropdown { position: static; width: 100%; display: none; padding: 3px 0 10px 14px; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
  .nav-item.open .dropdown { display: block; }
  .dropdown a { padding: 9px 4px; }
  .utility-nav { position: fixed; z-index: 101; right: 82px; top: 22px; padding: 0; }
  .utility-nav > *:not(.open-search) { display: none; }
  .utility-nav .open-search { display: inline-flex; }
  .hero { min-height: 0; }
  .hero-inner { width: min(100% - 30px, 650px); padding: 64px 0 46px; }
  .hero-search { height: 62px; margin: 0 0 52px; padding-left: 22px; }
  .search-results { margin: -38px 0 30px; }
  .news-grid { grid-template-columns: 1fr; }
  .news-featured { min-height: 390px; }
  .news-horizontal { min-height: 160px; }
  .section-inner { width: min(100% - 34px, 650px); padding: 85px 0; }
  .services h2, .feature-section h2 { margin-bottom: 45px; }
  .service-pills { gap: 12px; }
  .service-pills a { padding: 9px 14px; font-size: 14px; }
  .feature-grid, .feature-grid.four { grid-template-columns: 1fr 1fr; grid-auto-rows: 260px; }
  .participation-inner { align-items: flex-start; flex-direction: column; }
  .footer-inner { width: min(100% - 40px, 650px); grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .hero-inner { width: min(100% - 24px, 480px); padding-top: 44px; }
  .hero-search { margin-bottom: 36px; }
  .news-featured { min-height: 360px; }
  .news-copy { inset: auto 22px 24px; }
  .news-copy strong { font-size: 22px; }
  .news-horizontal { grid-template-columns: 43% 57%; min-height: 165px; }
  .news-side-copy { padding: 15px; }
  .news-side-copy strong { font-size: 15px; }
  .section-inner { padding: 72px 0; }
  .services h2, .feature-section h2 { font-size: 45px; }
  .feature-grid, .feature-grid.four { grid-template-columns: 1fr; grid-auto-rows: 290px; }
  .participation { padding: 70px 22px; }
  .footer-inner { grid-template-columns: 1fr; gap: 34px; padding: 62px 0; }
  .floating-button { width: 50px; height: 50px; bottom: 16px; }
  .whatsapp { right: 14px; }
  .search-dialog { padding: 42px 22px 28px; }
  .search-dialog h2 { font-size: 34px; }
  .dialog-search { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
