/* CONSISP — tokens */
:root {
  --color-ink: #212125;
  --color-navy: #1f2230;
  --color-navy-deep: #111113;
  --color-navy-mid: #222633;
  --color-accent: #cc0000;
  --color-accent-dark: #a30000;
  --color-accent-deeper: #800000;
  --color-accent-soft: #f5e400;
  --color-muted: #8c8e94;
  --color-muted-light: #8c8e94;
  --color-bg: #f5f5f5;
  --color-surface: #ffffff;
  --color-border: #e0e0e0;
  --color-border-strong: #c8c8c8;
  --color-border-soft: #ececec;
  --color-highlight: #f5e400;
  --max-width: 1200px;
  --page-pad-x: clamp(16px, 4vw, 32px);
  --font: "Archivo", system-ui, sans-serif;
  --radius-sm: 8px;
  --radius-md: 9px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-pill: 999px;
}

/* Base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--color-bg);
  font-family: var(--font);
  color: var(--color-ink);
}

a {
  color: var(--color-accent-dark);
  text-decoration: none;
}

a:hover {
  color: var(--color-accent-deeper);
}

::selection {
  background: var(--color-accent);
  color: #fff;
}

button {
  font-family: inherit;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--page-pad-x);
  padding-right: var(--page-pad-x);
}

.eyebrow {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--color-accent-dark);
}

.eyebrow--on-dark {
  color: var(--color-accent);
}

.eyebrow--on-accent {
  color: rgba(255, 255, 255, 0.8);
}

.section-title {
  margin: 0;
  font-size: clamp(26px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -0.8px;
  color: var(--color-navy);
  text-wrap: pretty;
}

.section-title--lg {
  font-size: clamp(26px, 3.5vw, 34px);
  color: #fff;
  max-width: 560px;
}

.section-title--white {
  color: #fff;
}

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

/* Buttons / links */
.btn {
  display: inline-block;
  padding: 15px 26px;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 700;
}

.btn--navy {
  background: var(--color-navy);
  color: #fff;
}

.btn--navy:hover {
  background: var(--color-navy-deep);
  color: #fff;
}

.btn--outline {
  border: 2px solid var(--color-border-strong);
  color: var(--color-navy);
  padding: 13px 24px;
}

.btn--outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent-dark);
}

.btn--outline-sm {
  padding: 12px 22px;
  font-size: 15px;
}

.btn--white {
  background: #fff;
  color: var(--color-navy);
}

.btn--white:hover {
  background: var(--color-bg);
  color: var(--color-navy);
}

.btn--accent {
  background: var(--color-accent);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
}

.btn--accent:hover {
  background: var(--color-accent-dark);
  color: #fff;
}

.btn--accent-block {
  display: block;
  margin-top: 16px;
  padding: 13px 18px;
  text-align: center;
}

/* Red/navy filled buttons always keep white label (beats nav/link rules) */
a.btn--accent,
a.btn--accent:hover,
a.btn--accent:focus-visible,
a.btn--accent-lg,
a.btn--accent-lg:hover,
a.btn--accent-lg:focus-visible,
a.btn--navy,
a.btn--navy:hover,
a.btn--navy:focus-visible,
.nav-desktop a.btn--accent,
.nav-desktop a.btn--accent:hover,
.nav-drawer a.btn--accent,
.nav-drawer a.btn--accent:hover {
  color: #fff;
  text-decoration: none;
}

.text-link {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-accent-dark);
}

.text-link:hover {
  color: var(--color-accent-deeper);
}

.text-link--accent {
  color: var(--color-accent);
}

.text-link--accent:hover {
  color: var(--color-accent-soft);
}

.text-link--underline {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.text-link--underline:hover {
  color: rgba(255, 255, 255, 0.85);
}

/* Image placeholders */
.img-slot {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  padding: 12px;
  color: var(--color-muted);
  font-size: 13px;
}

.img-slot--rounded {
  border-radius: var(--radius-xl);
}

.img-slot--ring {
  box-shadow: inset 0 0 0 1.5px dashed rgba(0, 0, 0, 0.25);
}

.img-slot svg {
  opacity: 0.45;
}

.img-slot__cap {
  max-width: 90%;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* Top bar */
.topbar {
  background: var(--color-navy-deep);
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
}

.topbar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 6px 20px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.topbar__meta {
  display: flex;
  gap: 20px;
}

.topbar__actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.topbar__mail {
  color: rgba(255, 255, 255, 0.75);
}

.topbar__mail:hover {
  color: #fff;
}

.topbar__lang {
  display: flex;
  gap: 8px;
  font-weight: 600;
}

.topbar__lang a {
  color: rgba(255, 255, 255, 0.55);
}

.topbar__lang a.is-active {
  color: #fff;
}

.topbar__lang a:hover {
  color: #fff;
}

.topbar__sep {
  color: rgba(255, 255, 255, 0.3);
}

.topbar__phone-mobile {
  display: none;
}

/* Site header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}

.site-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-navy);
  flex: none;
}

.brand:hover {
  color: var(--color-navy);
}

.brand__mark {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
  width: 34px;
  height: 34px;
}

.brand__mark span {
  border-radius: 3px;
}

.brand__mark span:nth-child(1) { background: var(--color-navy); }
.brand__mark span:nth-child(2) { background: var(--color-accent); }
.brand__mark span:nth-child(3) { background: var(--color-accent-soft); }
.brand__mark span:nth-child(4) { background: var(--color-navy-mid); }

.brand__name {
  display: block;
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1;
}

.brand__tag {
  display: block;
  font-size: 10.5px;
  font-weight: 500;
  color: var(--color-muted);
  letter-spacing: 0.2px;
  margin-top: 3px;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 24px);
  font-size: 15px;
  font-weight: 600;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-desktop a {
  color: var(--color-ink);
}

.nav-desktop a:hover {
  color: var(--color-accent-dark);
}

.menu-btn {
  display: none;
  place-items: center;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  width: 44px;
  height: 44px;
  font-size: 18px;
  color: var(--color-navy);
  cursor: pointer;
}

.nav-drawer {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  flex-direction: column;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 16px 32px rgba(13, 34, 55, 0.12);
  padding: 8px var(--page-pad-x) 20px;
}

.nav-drawer.is-open {
  display: flex;
}

.nav-drawer a {
  display: block;
  padding: 14px 2px;
  border-bottom: 1px solid var(--color-border-soft);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-ink);
}

@media (max-width: 940px) {
  .desktop-only {
    display: none !important;
  }

  .topbar__phone-mobile {
    display: inline;
  }

  .nav-desktop {
    display: none;
  }

  .menu-btn {
    display: grid;
  }
}

/* Hero */
.hero {
  background: var(--color-bg);
}

.hero__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(460px, 100%), 1fr));
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
  padding-top: clamp(44px, 6vw, 76px);
  padding-bottom: clamp(56px, 7vw, 92px);
}

.hero__eyebrow {
  margin: 0 0 18px;
}

.hero__title {
  margin: 0 0 22px;
  font-size: clamp(36px, 4.5vw, 54px);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--color-navy);
  text-wrap: pretty;
}

.hero__lead {
  margin: 0 0 34px;
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.6;
  color: var(--color-muted);
  max-width: 520px;
  text-wrap: pretty;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero__magazine {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-accent-dark);
}

.hero__magazine:hover {
  color: var(--color-accent-deeper);
}

.hero__media {
  position: relative;
  height: clamp(300px, 42vw, 470px);
}

.hero__shadow {
  position: absolute;
  top: 26px;
  left: 26px;
  right: -14px;
  bottom: -14px;
  background: var(--color-navy);
  border-radius: 18px;
}

.hero__accent {
  position: absolute;
  top: -16px;
  right: 22px;
  width: 64px;
  height: 64px;
  background: var(--color-accent);
  border-radius: 10px;
  z-index: 2;
}

.hero__photo {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Quick access */
.quick {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.quick__inner {
  padding-top: clamp(44px, 6vw, 64px);
  padding-bottom: clamp(48px, 6vw, 72px);
}

.quick__title {
  margin: 0 0 32px;
}

.quick__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 16px;
}

.quick-card {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 22px 22px 24px;
  color: var(--color-ink);
}

.quick-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 4px 16px rgba(22, 50, 76, 0.08);
  color: var(--color-ink);
}

.quick-card__label {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 6px;
}

.quick-card__desc {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-muted);
}

.quick-card__arrow {
  flex: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-bg);
  color: var(--color-accent-dark);
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 700;
}

/* Stats */
.stats {
  background: var(--color-navy);
}

.stats__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: 32px;
  padding-top: clamp(40px, 5vw, 56px);
  padding-bottom: clamp(40px, 5vw, 56px);
}

.stats__value {
  margin: 0;
  font-size: clamp(38px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--color-accent);
}

.stats__label {
  margin: 6px 0 0;
  font-size: 15px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.7);
}

/* News */
.news {
  background: var(--color-bg);
}

.news__inner {
  padding-top: clamp(48px, 7vw, 80px);
  padding-bottom: clamp(48px, 7vw, 80px);
}

.news__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 36px;
}

.news__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(440px, 100%), 1fr));
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

.news-featured {
  display: block;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  color: var(--color-ink);
}

.news-featured:hover {
  box-shadow: 0 6px 24px rgba(22, 50, 76, 0.1);
  color: var(--color-ink);
}

.news-featured__media {
  height: 260px;
}

.news-featured__body {
  padding: 28px 28px 30px;
}

.news-featured__meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.news-tag {
  background: rgba(204, 0, 0, 0.12);
  color: var(--color-accent-dark);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 6px;
}

.news-date {
  font-size: 13.5px;
  color: var(--color-muted);
}

.news-featured__title {
  margin: 0 0 12px;
  font-size: clamp(21px, 2.5vw, 25px);
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--color-navy);
  text-wrap: pretty;
}

.news-featured__excerpt {
  margin: 0 0 16px;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--color-muted);
}

.news-featured__cta {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-accent-dark);
}

.news-row {
  display: block;
  border-top: 1px solid var(--color-border);
  padding: 18px 4px;
  color: var(--color-ink);
}

.news-row:hover {
  color: var(--color-ink);
  background: var(--color-surface);
}

.news-row__meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 8px;
}

.news-row__cat {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--color-accent-dark);
}

.news-row__date {
  font-size: 13px;
  color: var(--color-muted-light);
}

.news-row__title {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.4;
  font-weight: 700;
  color: var(--color-navy);
  text-wrap: pretty;
}

/* Cities */
.cities {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}

.cities__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(420px, 100%), 1fr));
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  padding-top: clamp(48px, 7vw, 80px);
  padding-bottom: clamp(48px, 7vw, 80px);
}

.cities__title {
  margin: 0 0 18px;
}

.cities__lead {
  margin: 0 0 24px;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--color-muted);
  text-wrap: pretty;
}

.cities__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.city-pill {
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-navy);
  padding: 11px 18px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
}

.city-pill:hover {
  border-color: var(--color-accent);
  color: var(--color-accent-dark);
  background: rgba(204, 0, 0, 0.06);
}

/* TV */
.tv {
  background: var(--color-navy-deep);
}

.tv__inner {
  padding-top: clamp(48px, 7vw, 80px);
  padding-bottom: clamp(48px, 7vw, 80px);
}

.tv__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 36px;
}

.tv__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 20px;
}

.video-card {
  display: block;
  color: #fff;
}

.video-card:hover {
  color: #fff;
}

.video-card__thumb {
  position: relative;
  display: block;
  height: 150px;
  border-radius: 10px;
  overflow: hidden;
  background: repeating-linear-gradient(45deg, #2a2e3d 0 12px, #222633 12px 24px);
}

.video-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 15px;
  padding-left: 3px;
}

.video-card__hint {
  position: absolute;
  left: 10px;
  bottom: 8px;
  font-family: ui-monospace, Menlo, monospace;
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.45);
}

.video-card__dur {
  position: absolute;
  right: 8px;
  bottom: 8px;
  background: rgba(13, 34, 55, 0.85);
  font-size: 12px;
  font-weight: 600;
  padding: 3px 7px;
  border-radius: 5px;
}

.video-card__title {
  display: block;
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 600;
  color: #fff;
}

/* Transparency CTA */
.transparency {
  background: var(--color-accent);
}

.transparency__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: clamp(44px, 6vw, 64px);
  padding-bottom: clamp(44px, 6vw, 64px);
}

.transparency__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* Footer */
.site-footer {
  background: var(--color-navy-deep);
  color: rgba(255, 255, 255, 0.7);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 40px;
  padding-top: clamp(40px, 6vw, 64px);
  padding-bottom: 48px;
}

.site-footer__brand {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #fff;
}

.site-footer__about {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.65;
  max-width: 320px;
}

.site-footer__heading {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
}

.site-footer__heading--links {
  margin: 0 0 4px;
}

.site-footer__text {
  margin: 0 0 10px;
  font-size: 14.5px;
  line-height: 1.6;
}

.site-footer__text:last-child {
  margin-bottom: 0;
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer__links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14.5px;
}

.site-footer__links a:hover {
  color: #fff;
}

.site-footer__legal {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__copy {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px var(--page-pad-x);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

/* Nav active */
.nav-desktop a.is-active,
.nav-drawer a.is-active {
  color: var(--color-accent-dark);
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}

.btn--accent-lg {
  background: var(--color-accent);
  color: #fff;
  padding: 15px 26px;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 700;
  flex: none;
}

.btn--accent-lg:hover {
  background: var(--color-accent-dark);
  color: #fff;
}

/* Page hero */
.page-hero {
  background: var(--color-navy);
}

.page-hero__inner {
  padding-top: clamp(40px, 6vw, 72px);
  padding-bottom: clamp(40px, 6vw, 72px);
}

.breadcrumb {
  margin: 0 0 14px;
  font-size: 13.5px;
  font-weight: 600;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.55);
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb__sep {
  color: rgba(255, 255, 255, 0.35);
}

.breadcrumb__current {
  color: var(--color-accent);
}

.page-hero__title {
  margin: 0 0 16px;
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -1px;
  color: #fff;
}

.page-hero__lead {
  margin: 0;
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  max-width: 680px;
  text-wrap: pretty;
}

/* Shared content sections */
.content-section {
  background: var(--color-bg);
  padding-top: clamp(48px, 7vw, 80px);
  padding-bottom: clamp(48px, 7vw, 80px);
}

.content-section--tight-top {
  padding-top: clamp(40px, 6vw, 56px);
  padding-bottom: clamp(48px, 7vw, 72px);
}

.content-section__title {
  margin: 0 0 32px;
}

.footnote {
  margin: 28px 0 0;
  font-size: 14px;
  color: var(--color-muted-light);
}

.content-section--tight-top .footnote {
  margin-top: 20px;
}

.empty-msg {
  margin: 24px 0 0;
  font-size: 15px;
  color: var(--color-muted-light);
}

/* Split + media */
.split-section {
  background: var(--color-bg);
}

.split-section__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(420px, 100%), 1fr));
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  padding-top: clamp(48px, 7vw, 80px);
  padding-bottom: clamp(48px, 7vw, 80px);
}

.split-section__title {
  margin: 0 0 18px;
}

.split-section__text {
  margin: 0 0 16px;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--color-muted);
  text-wrap: pretty;
}

.split-section__text--last {
  margin-bottom: 0;
}

.media-frame {
  position: relative;
  height: clamp(280px, 36vw, 400px);
}

.media-frame__shadow {
  position: absolute;
  top: 22px;
  left: 22px;
  right: -14px;
  bottom: -14px;
  border-radius: var(--radius-xl);
}

.media-frame--accent .media-frame__shadow {
  background: var(--color-accent);
}

.media-frame__photo {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.media-frame__photo .img-slot--rounded {
  border-radius: 14px;
}

/* Info cards */
.card-band {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.card-band__inner {
  padding-top: clamp(48px, 7vw, 72px);
  padding-bottom: clamp(48px, 7vw, 72px);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 16px;
}

.info-card {
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 26px;
  background: var(--color-surface);
}

.info-card__label {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-accent-dark);
}

.info-card__text {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-muted);
  text-wrap: pretty;
}

.info-card__text--strong {
  margin: 0;
  font-size: 16px;
  color: var(--color-ink);
  font-weight: 500;
}

.info-card__link {
  font-size: 14.5px;
}

/* Org cards */
.org-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 16px;
}

.org-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 24px;
}

.org-card__num {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(204, 0, 0, 0.12);
  color: var(--color-accent-dark);
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 14px;
}

.org-card__name {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 700;
  color: var(--color-navy);
}

.org-card__desc {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--color-muted);
  text-wrap: pretty;
}

/* CTA bands */
.cta-band__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: clamp(40px, 6vw, 64px);
  padding-bottom: clamp(40px, 6vw, 64px);
}

.cta-band--navy {
  background: var(--color-navy);
}

.cta-band--accent {
  background: var(--color-accent);
}

.cta-band__title {
  margin: 0;
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 800;
  letter-spacing: -0.6px;
  color: #fff;
  max-width: 560px;
  text-wrap: pretty;
}

/* City cards */
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(270px, 100%), 1fr));
  gap: 16px;
}

.city-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 18px 20px;
  color: var(--color-ink);
}

.city-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 4px 16px rgba(22, 50, 76, 0.08);
  color: var(--color-ink);
}

.city-card__badge {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.city-card__badge--navy { background: var(--color-navy); }
.city-card__badge--mid { background: var(--color-navy-mid); }
.city-card__badge--accent { background: var(--color-accent); }

.city-card__name {
  display: block;
  font-size: 16.5px;
  font-weight: 700;
  color: var(--color-navy);
}

.city-card__cta {
  display: block;
  font-size: 13.5px;
  color: var(--color-accent-dark);
  font-weight: 600;
  margin-top: 3px;
}

/* Filters */
.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.filter-pill,
.tab {
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-navy);
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
}

.filter-pill.is-active,
.tab.is-active {
  background: var(--color-navy);
  border-color: var(--color-navy);
  color: #fff;
}

.tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
}

.tab {
  border-radius: var(--radius-md);
  padding: 11px 22px;
  font-size: 15px;
  font-weight: 700;
}

/* Projects */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 16px;
}

.project-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.project-card[hidden] {
  display: none;
}

.project-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.project-card__name {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.3;
  text-wrap: pretty;
}

.project-card__desc {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--color-muted);
  flex: 1;
  text-wrap: pretty;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 700;
}

.status__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  background: currentColor;
}

.status--andamento { color: #2e7d4f; }
.status--estudo { color: #b07818; }
.status--concluido { color: var(--color-navy-mid); }

.spotlight-band {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}

.spotlight-band__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: clamp(40px, 6vw, 64px);
  padding-bottom: clamp(40px, 6vw, 64px);
}

.spotlight-band__copy {
  max-width: 620px;
}

.spotlight-band__title {
  margin: 0 0 10px;
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 800;
  letter-spacing: -0.6px;
  color: var(--color-navy);
}

.spotlight-band__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-muted);
  text-wrap: pretty;
}

/* Docs list */
.doc-list {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  overflow: hidden;
}

.doc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px clamp(16px, 3vw, 24px);
  border-bottom: 1px solid var(--color-border-soft);
  color: var(--color-ink);
}

.doc-row:last-child {
  border-bottom: 0;
}

.doc-row:hover {
  background: #fafafa;
  color: var(--color-ink);
}

.doc-row[hidden] {
  display: none;
}

.doc-row__main {
  min-width: 0;
}

.doc-row__meta {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.doc-row__type {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  background: rgba(204, 0, 0, 0.1);
  padding: 4px 8px;
  border-radius: 5px;
}

.doc-row__date {
  font-size: 13px;
  color: var(--color-muted-light);
}

.doc-row__title {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-navy);
  line-height: 1.4;
  text-wrap: pretty;
}

.doc-row__size {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--color-accent-dark);
}

/* Licitations table */
.table-wrap {
  overflow-x: auto;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 14px;
}

.table {
  min-width: 760px;
}

.table-head {
  display: grid;
  grid-template-columns: 150px 1fr 160px 130px 120px;
  gap: 16px;
  padding: 14px 24px;
  border-bottom: 1px solid var(--color-border);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-muted-light);
}

.table-row {
  display: grid;
  grid-template-columns: 150px 1fr 160px 130px 120px;
  gap: 16px;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid var(--color-border-soft);
  color: var(--color-ink);
}

.table-row:last-child {
  border-bottom: 0;
}

.table-row:hover {
  background: #fafafa;
  color: var(--color-ink);
}

.table-row__num {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--color-navy);
}

.table-row__obj {
  font-size: 15px;
  line-height: 1.45;
  color: var(--color-ink);
  text-wrap: pretty;
}

.table-row__mod,
.table-row__date {
  font-size: 14px;
  color: var(--color-muted);
}

.status-chip {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
}

.status-chip .status__dot {
  width: 7px;
  height: 7px;
}

.status-chip--aberto {
  color: #2e7d4f;
  background: rgba(46, 125, 79, 0.1);
}

.status-chip--analise {
  color: #b07818;
  background: rgba(176, 120, 24, 0.12);
}

.status-chip--encerrado {
  color: var(--color-muted);
  background: rgba(92, 107, 122, 0.12);
}

/* News listing */
.feature-story {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(420px, 100%), 1fr));
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  color: var(--color-ink);
  margin-bottom: 40px;
}

.feature-story:hover {
  box-shadow: 0 6px 24px rgba(22, 50, 76, 0.1);
  color: var(--color-ink);
}

.feature-story__media {
  min-height: 280px;
}

.feature-story__body {
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-story__title {
  margin: 0 0 12px;
  font-size: clamp(22px, 2.5vw, 27px);
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--color-navy);
  text-wrap: pretty;
}

.feature-story__excerpt {
  margin: 0 0 16px;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--color-muted);
  text-wrap: pretty;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 16px;
}

.story-card {
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  overflow: hidden;
  color: var(--color-ink);
}

.story-card:hover {
  box-shadow: 0 6px 24px rgba(22, 50, 76, 0.1);
  color: var(--color-ink);
}

.story-card__thumb {
  display: block;
  height: 150px;
  background: repeating-linear-gradient(45deg, #e8e8e8 0 12px, var(--color-border) 12px 24px);
  position: relative;
}

.story-card__hint {
  position: absolute;
  left: 12px;
  bottom: 10px;
  font-family: ui-monospace, Menlo, monospace;
  font-size: 10.5px;
  color: var(--color-muted-light);
}

.story-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 20px 22px;
  flex: 1;
}

.story-card__meta {
  display: flex;
  gap: 10px;
  align-items: center;
}

.story-card__cat {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--color-accent-dark);
}

.story-card__date {
  font-size: 13px;
  color: var(--color-muted-light);
}

.story-card__title {
  font-size: 16.5px;
  line-height: 1.4;
  font-weight: 700;
  color: var(--color-navy);
  text-wrap: pretty;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.pagination__item {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: #fff;
  color: var(--color-navy);
  font-size: 14.5px;
  font-weight: 700;
}

.pagination__item.is-current {
  background: var(--color-navy);
  border-color: var(--color-navy);
  color: #fff;
}

.pagination__item:hover:not(.is-current) {
  border-color: var(--color-accent);
  color: var(--color-accent-dark);
}


/* === CONSISP chrome additions === */
.brand-logo {
  display: block;
  height: 52px;
  width: auto;
}

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

.brand-logo--footer {
  height: 52px;
  margin-bottom: 14px;
}

.nav-item {
  position: relative;
}

.nav-item > button,
.nav-item > a.nav-trigger {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-item > button:hover,
.nav-item > a.nav-trigger:hover,
.nav-item.is-open > button {
  color: var(--color-accent);
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 220px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 32px rgba(17, 17, 19, 0.12);
  padding: 8px;
  z-index: 60;
}

.nav-item.is-open > .nav-dropdown {
  display: block;
}

.nav-dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--color-ink);
}

.nav-dropdown a:hover,
.nav-dropdown a.is-active {
  background: var(--color-bg);
  color: var(--color-accent);
}

.photo-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-cover--rounded {
  border-radius: 16px;
}

.hero__photo .photo-cover,
.media-frame__photo .photo-cover,
.news-featured__media .photo-cover,
.feature-story__media .photo-cover {
  width: 100%;
  height: 100%;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 16px;
  overflow: hidden;
}

.grade-deco {
  position: absolute;
  opacity: 0.08;
  pointer-events: none;
  width: 180px;
  height: auto;
}

.nav-drawer__section {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--color-border-soft);
}

.nav-drawer__label {
  display: block;
  padding: 10px 2px 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-muted);
}

.hub-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 16px;
}

.hub-card {
  display: block;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 24px;
  color: var(--color-ink);
}

.hub-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 4px 16px rgba(17, 17, 19, 0.08);
  color: var(--color-ink);
}

.hub-card__title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-navy);
}

.hub-card__desc {
  margin: 0 0 14px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--color-muted);
}

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

.org-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 24px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 18px 22px;
}

.org-row__role {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--color-accent);
}

.org-row__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-navy);
}

.prose {
  max-width: 720px;
}

.prose p {
  margin: 0 0 16px;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--color-muted);
  text-wrap: pretty;
}

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