:root {
  --brand-dark: #00526e;
  --brand: #007199;
  --brand-deep: #055e7c;
  --brand-mid: #005e7f;
  --accent: #ef4d48;
  --text: #2c3e50;
  --muted: #5a6a7a;
  --bg: #f4f8fa;
  --bg-secondary: #e8f1f5;
  --white: #fff;
  --border: #d7e3ea;
  --max: 1140px;
  --radius: 8px;
  --shadow: 0 10px 28px rgba(0, 82, 110, 0.14);
  --font-body: "Lato", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Montserrat", "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-dark); text-decoration: underline; }
.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }

/* —— Header (familiar secondary bar + sticky main) —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  box-shadow: 1px 2px 8px rgba(0, 0, 0, 0.18);
}
.header-top {
  background: var(--bg-secondary);
  color: var(--brand-deep);
  font-size: .88rem;
  padding: .4rem 0;
  border-bottom: 1px solid var(--border);
}
.header-top .container {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  justify-content: space-between;
  align-items: center;
}
.header-top a {
  color: var(--accent);
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: .02em;
}
.header-top a:hover { color: var(--brand-dark); }
.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .65rem 0;
}
.logo img { height: 64px; width: auto; }
.nav {
  display: flex;
  flex-wrap: wrap;
  gap: .15rem 1.1rem;
  align-items: center;
}
.nav a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--brand-deep);
  text-decoration: none;
  padding: .35rem 0;
  border-bottom: 2px solid transparent;
}
.nav a:hover, .nav a.is-active {
  color: var(--accent);
  border-bottom-color: var(--accent);
  text-decoration: none;
}
.nav .btn {
  margin-left: .35rem;
  border-bottom: 0 !important;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .7rem 1.25rem;
  border-radius: 2px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  border: 0;
  cursor: pointer;
  text-decoration: none !important;
  transition: filter .15s ease, background .15s ease;
}
.btn-primary {
  background: var(--accent);
  color: var(--white) !important;
}
.btn-primary:hover { filter: brightness(1.06); color: var(--white) !important; }
.btn-secondary {
  background: var(--brand);
  color: var(--white) !important;
}
.btn-secondary:hover { background: var(--brand-dark); color: var(--white) !important; }
.btn-outline {
  background: transparent;
  color: var(--white) !important;
  border: 2px solid rgba(255,255,255,.9);
}
.btn-outline:hover { background: rgba(255,255,255,.12); }
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 1.55rem;
  color: var(--brand-dark);
  cursor: pointer;
  line-height: 1;
}

/* —— Hero (gradient like production) —— */
.hero {
  position: relative;
  background: #00526e;
  background: linear-gradient(45deg, #00526e 0%, #007199 100%);
  color: var(--white);
  padding: 4.25rem 0 3.75rem;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 2rem;
  align-items: center;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.85rem, 4.2vw, 2.75rem);
  line-height: 1.2;
  margin: 0 0 1rem;
  text-shadow: 1px 1px 1px rgba(0,0,0,.3);
  text-transform: uppercase;
  letter-spacing: .02em;
}
.hero h1 strong,
.hero h1 .type-bold {
  font-weight: 700;
}
.hero .lead {
  font-size: 1.08rem;
  max-width: 36rem;
  opacity: .96;
  font-style: italic;
  text-shadow: 1px 1px 1px rgba(0,0,0,.25);
  margin: 0;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.6rem;
}
.hero-visual {
  justify-self: end;
  max-width: 360px;
}
.hero-visual img {
  width: 100%;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,.25));
}

/* —— Sections —— */
.section { padding: 3.25rem 0; }
.section-alt { background: var(--bg); }
.section-tight { padding: 2.25rem 0; }
.section h2 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--brand-dark);
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  margin: 0 0 1.25rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.section-intro {
  color: var(--muted);
  max-width: 40rem;
  margin: -0.5rem 0 1.75rem;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.35rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem 1.35rem;
  box-shadow: var(--shadow);
  text-align: center;
}
.card-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 1rem;
  object-fit: contain;
}
.card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: var(--brand-deep);
  margin: 0 0 .55rem;
}
.card p {
  color: var(--muted);
  margin: 0 0 1rem;
  font-size: .95rem;
}
.card a {
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.cta-band {
  background: linear-gradient(45deg, #00526e 0%, #007199 100%);
  color: var(--white);
  padding: 2.75rem 0;
  text-align: center;
}
.cta-band h2 {
  color: var(--white);
  margin-bottom: .75rem;
}
.cta-band p {
  margin: 0 auto 1.25rem;
  max-width: 34rem;
  opacity: .95;
}

.prose :is(h1,h2,h3) {
  color: var(--brand-dark);
  font-family: var(--font-display);
  font-weight: 500;
}
.prose p { margin: 0 0 1rem; }
.page-header {
  background: linear-gradient(45deg, #00526e 0%, #007199 100%);
  color: var(--white);
  padding: 2.35rem 0;
}
.page-header h1 {
  font-family: var(--font-display);
  font-weight: 500;
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.05rem);
  text-transform: uppercase;
  letter-spacing: .03em;
  text-shadow: 1px 1px 1px rgba(0,0,0,.25);
}
.page-header .meta { color: rgba(255,255,255,.85); margin: 0 0 .5rem; }
.meta { color: var(--muted); font-size: .95rem; }
.news-list { display: grid; gap: 1rem; }
.news-item {
  display: grid;
  gap: .55rem;
  padding: 1.35rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 4px 14px rgba(0,82,110,.06);
}
.news-item h2 {
  margin: 0;
  font-size: 1.15rem;
  text-transform: none;
  letter-spacing: 0;
}

/* —— Footer —— */
.site-footer {
  background: var(--brand-dark);
  color: #d7e8ef;
  padding: 2.75rem 0 1.5rem;
  margin-top: 0;
}
.site-footer a { color: #fff; }
.site-footer a:hover { color: #ffe9e8; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.75rem;
  margin-bottom: 1.75rem;
}
.site-footer h3 {
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0 0 .85rem;
  color: #fff;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .45rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 1rem;
  font-size: .85rem;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.25rem;
  justify-content: space-between;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { justify-self: center; max-width: 280px; order: -1; }
}
@media (max-width: 800px) {
  .menu-toggle { display: block; }
  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: .85rem;
  }
  .nav.is-open { display: flex; }
  .header-main { flex-wrap: wrap; }
  .nav .btn { margin-left: 0; }
  .logo img { height: 52px; }
}
