:root {
  --blue: #004b9b;
  --blue-dark: #052d5f;
  --blue-ink: #071f3a;
  --red: #e30613;
  --red-dark: #b7000b;
  --cyan: #00a3e0;
  --paper: #f5f7fb;
  --surface: #ffffff;
  --line: #d8e0ea;
  --muted: #5e6d7e;
  --shadow: 0 28px 70px rgba(7, 31, 58, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--blue-ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 58px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(216, 224, 234, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-radius: 4px;
  box-shadow: inset 0 -4px 0 var(--red);
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
}

.brand strong b {
  color: var(--blue);
  text-transform: uppercase;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.94rem;
  font-weight: 700;
}

.main-nav a {
  padding: 10px 12px;
  border-radius: 4px;
  color: var(--blue-ink);
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--blue);
  background: #edf5ff;
  outline: none;
}

.main-nav .nav-action {
  color: white;
  background: var(--red);
}

.hero {
  position: relative;
  min-height: calc(100vh - 77px);
  overflow: hidden;
  background: #eef1f5;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(245, 247, 251, 0.98) 0%, rgba(245, 247, 251, 0.92) 38%, rgba(245, 247, 251, 0.22) 68%, rgba(245, 247, 251, 0) 100%),
    linear-gradient(0deg, rgba(245, 247, 251, 0.8), rgba(245, 247, 251, 0) 42%);
}

.hero::after {
  position: absolute;
  left: clamp(18px, 4vw, 58px);
  right: clamp(18px, 4vw, 58px);
  bottom: 0;
  z-index: 2;
  height: 8px;
  content: "";
  background: linear-gradient(90deg, var(--red) 0 34%, var(--blue) 34% 72%, var(--cyan) 72% 100%);
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("assets/vincent-pravato-hero.jpg");
  background-position: center right;
  background-size: cover;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(820px, 100%);
  padding: clamp(72px, 10vw, 128px) clamp(18px, 4vw, 58px) clamp(72px, 9vw, 112px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(4.2rem, 9vw, 8.2rem);
  font-weight: 950;
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 span {
  display: block;
  color: var(--blue-ink);
  font-size: clamp(1.55rem, 4vw, 3.8rem);
  font-weight: 850;
  line-height: 1.2;
  text-transform: none;
}

h2 {
  margin: 0;
  color: var(--blue-ink);
  font-size: clamp(2rem, 4.6vw, 4.4rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

h2 span {
  color: var(--blue);
  text-transform: uppercase;
}

h3 {
  margin: 0 0 10px;
  color: var(--blue-ink);
  font-size: 1.12rem;
}

.hero-line {
  margin: 18px 0 0;
  color: var(--red);
  font-size: clamp(1.3rem, 2.6vw, 2.25rem);
  font-weight: 900;
}

.lead {
  max-width: 650px;
  margin: 18px 0 0;
  color: #334457;
  font-size: clamp(1.06rem, 2vw, 1.28rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 2px solid var(--blue);
  border-radius: 4px;
  font-weight: 850;
  text-decoration: none;
}

.button.primary {
  color: white;
  background: var(--red);
  border-color: var(--red);
}

.button.primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.button.secondary {
  color: var(--blue);
  background: white;
}

.button.secondary:hover {
  color: white;
  background: var(--blue);
}

.mandates {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.mandates article {
  display: flex;
  min-height: 120px;
  align-items: center;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 58px);
  background: white;
}

.mandates span {
  color: var(--red);
  font-size: 0.85rem;
  font-weight: 950;
}

.mandates strong {
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  line-height: 1.16;
}

.section {
  padding: clamp(68px, 9vw, 122px) clamp(18px, 4vw, 58px);
}

.portrait-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: clamp(28px, 6vw, 88px);
  align-items: center;
  background: white;
}

.portrait-copy p:not(.eyebrow) {
  max-width: 820px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.portrait-figure {
  margin: 0;
}

.portrait-figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 18%;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.portrait-figure figcaption {
  padding-top: 12px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.commitments {
  background: var(--blue-dark);
}

.commitments h2 {
  max-width: 960px;
  color: white;
}

.section-heading {
  margin-bottom: 34px;
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.commitment-grid article,
.timeline article,
.news-grid article {
  border-radius: 4px;
  background: white;
}

.commitment-grid article {
  min-height: 268px;
  padding: 24px;
  border-top: 6px solid var(--red);
}

.commitment-grid span {
  display: inline-block;
  margin-bottom: 40px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.commitment-grid p,
.timeline p,
.news-grid p,
.field-section p,
.contact-section p {
  margin: 0;
  color: var(--muted);
}

.field-section {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
  padding: clamp(56px, 8vw, 100px) clamp(18px, 4vw, 58px);
  background: white;
}

.field-section img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 4px;
}

.field-section h2 {
  margin-bottom: 24px;
}

.timeline-section {
  background: var(--paper);
}

.words-section {
  background:
    linear-gradient(90deg, rgba(0, 75, 155, 0.06), rgba(227, 6, 19, 0.04)),
    white;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 440px);
  gap: 28px;
  align-items: end;
}

.split-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.quote-grid figure {
  display: flex;
  min-height: 270px;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  border-top: 6px solid var(--blue);
  border-radius: 4px;
}

.quote-grid figure:nth-child(1),
.quote-grid figure:nth-child(4) {
  border-top-color: var(--red);
}

.quote-grid blockquote {
  margin: 0;
  color: var(--blue-ink);
  font-size: clamp(1.25rem, 2vw, 1.72rem);
  font-weight: 900;
  line-height: 1.12;
}

.quote-grid figcaption {
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.timeline article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
}

.timeline time,
.news-grid time {
  display: block;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.news-section {
  background: white;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.news-grid article {
  min-height: 198px;
  padding: 24px;
  border: 1px solid var(--line);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin: clamp(24px, 4vw, 58px);
  padding: clamp(34px, 6vw, 68px);
  color: white;
  background:
    linear-gradient(135deg, rgba(5, 45, 95, 0.96), rgba(0, 75, 155, 0.92)),
    linear-gradient(90deg, var(--red), var(--blue));
  border-radius: 4px;
}

.contact-section h2,
.contact-section p,
.contact-section .eyebrow {
  color: white;
}

.contact-section .button.secondary {
  border-color: white;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 26px clamp(18px, 4vw, 58px);
  color: var(--muted);
  background: white;
  border-top: 1px solid var(--line);
}

.site-footer a {
  text-decoration: none;
}

@media (max-width: 1020px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .main-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: 780px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(245, 247, 251, 0.98) 0%, rgba(245, 247, 251, 0.9) 46%, rgba(245, 247, 251, 0.28) 100%);
  }

  .hero-media {
    background-position: center bottom;
  }

  .mandates,
  .commitment-grid,
  .quote-grid,
  .timeline,
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portrait-section,
  .field-section,
  .split-heading,
  .contact-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 660px) {
  .site-header {
    position: static;
  }

  .main-nav a {
    flex: 0 0 auto;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    padding-top: 46px;
  }

  h1 {
    font-size: clamp(3.6rem, 19vw, 6rem);
  }

  .hero-line {
    font-size: 1.32rem;
  }

  .lead {
    font-size: 1rem;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .mandates,
  .commitment-grid,
  .quote-grid,
  .timeline,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .mandates article {
    min-height: 94px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
