:root {
  --navy: #123f68;
  --navy-deep: #092a47;
  --blue: #a2e3f5;
  --blue-soft: #e2f6fb;
  --paper: #f5f2ed;
  --white: #fffdf9;
  --ink: #17324a;
  --muted: #647684;
  --line: rgba(18, 63, 104, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 10px clamp(22px, 5vw, 76px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(9, 42, 71, 0.96);
  color: white;
  backdrop-filter: blur(14px);
}

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

.brand img {
  width: 58px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.brand span {
  display: grid;
  gap: 1px;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1;
}

.brand small {
  color: var(--blue);
  font-size: 0.65rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: clamp(20px, 4vw, 48px);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

nav a,
footer a {
  transition: color 160ms ease;
}

nav a:hover,
nav a:focus-visible,
footer a:hover,
footer a:focus-visible {
  color: var(--blue);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: center;
  gap: clamp(52px, 8vw, 140px);
  min-height: calc(100svh - 78px);
  padding: clamp(70px, 11vw, 150px) clamp(22px, 8vw, 128px);
  overflow: hidden;
  background: var(--navy-deep);
  color: white;
}

.hero::after {
  position: absolute;
  right: -9vw;
  bottom: -18vw;
  width: 55vw;
  height: 55vw;
  border: clamp(60px, 8vw, 130px) solid rgba(162, 227, 245, 0.08);
  border-radius: 50%;
  content: "";
}

.hero-copy,
.hero-mark {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--blue);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 780px;
  margin-bottom: 30px;
  font-size: clamp(3.4rem, 7.6vw, 7.7rem);
  line-height: 0.91;
}

.lead {
  max-width: 650px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  line-height: 1.75;
}

.primary-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 100px;
  background: var(--blue);
  color: var(--navy-deep);
  font-size: 0.85rem;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease;
}

.primary-link:hover,
.primary-link:focus-visible {
  background: white;
  transform: translateY(-2px);
}

.primary-link span {
  font-size: 1.2rem;
}

.hero-mark {
  justify-self: end;
  width: min(100%, 440px);
  text-align: center;
}

.logo-halo {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  padding: 12%;
  border: 1px solid rgba(162, 227, 245, 0.3);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(162, 227, 245, 0.17), transparent 64%);
}

.logo-halo img {
  width: 100%;
  border-radius: 46%;
  mix-blend-mode: screen;
}

.hero-mark > p {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  margin: 20px 0 0;
}

.hero-mark span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.hero-mark small {
  color: var(--blue);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-shell {
  display: grid;
  grid-template-columns: minmax(130px, 0.26fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 100px);
  padding: clamp(82px, 11vw, 150px) clamp(22px, 8vw, 128px);
}

.section-label {
  align-self: start;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 8px;
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-label span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.section-label p {
  margin: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.7fr);
  gap: clamp(40px, 8vw, 120px);
}

h2 {
  margin-bottom: 30px;
  color: var(--navy-deep);
  font-size: clamp(2.7rem, 5vw, 5.2rem);
  line-height: 1.02;
}

.body-copy {
  max-width: 580px;
  padding-top: 10px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.85;
}

.body-copy p + p {
  margin-top: 24px;
}

.news {
  position: relative;
  background: var(--navy);
  color: white;
  overflow: hidden;
}

.news::after {
  position: absolute;
  right: 5%;
  bottom: -100px;
  width: 340px;
  height: 220px;
  border: 46px solid rgba(162, 227, 245, 0.08);
  border-radius: 50%;
  content: "";
  transform: rotate(-12deg);
}

.section-label.light,
.eyebrow.pale {
  color: var(--blue);
}

.news-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.65fr);
  align-items: end;
  gap: clamp(50px, 9vw, 140px);
}

.news h2 {
  margin-bottom: 0;
  color: white;
}

.empty-news {
  padding: 30px 0 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.23);
}

.empty-news span {
  display: block;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 3.2rem;
  line-height: 0.7;
}

.empty-news p {
  max-width: 370px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.news-list {
  display: grid;
  gap: 18px;
}

.news-card {
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.23);
}

.news-card time {
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.news-card h3 {
  margin: 12px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  font-weight: 400;
}

.news-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.contact {
  background: var(--white);
}

.contact-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.55fr);
  align-items: end;
  column-gap: 50px;
}

.contact-heading .eyebrow {
  grid-column: 1 / -1;
}

.contact-heading h2 {
  margin-bottom: 0;
}

.contact-heading > p:last-child {
  margin: 0 0 8px;
  color: var(--muted);
  line-height: 1.7;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 66px;
}

.contact-card,
.account-card {
  min-height: 255px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 3px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
}

.card-role {
  margin-bottom: 54px;
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-card h3,
.account-card h3 {
  margin-bottom: 20px;
  color: var(--navy-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.2vw, 2.1rem);
  font-weight: 400;
  overflow-wrap: anywhere;
}

.contact-card a {
  width: fit-content;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.92rem;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.contact-card a:hover,
.contact-card a:focus-visible {
  color: var(--navy);
  text-decoration-color: currentColor;
}

.account-card {
  position: relative;
  grid-column: 1 / -1;
  overflow: hidden;
  background: var(--blue-soft);
}

.account-card::after {
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 300px;
  height: 240px;
  border: 42px solid rgba(18, 63, 104, 0.08);
  border-radius: 50%;
  content: "";
  transform: rotate(-18deg);
}

.account-card .card-role {
  margin-bottom: 38px;
}

.account-card p:not(.card-role) {
  max-width: 520px;
  color: var(--muted);
  line-height: 1.7;
}

.account-card > span {
  display: inline-block;
  margin-top: 18px;
  padding: 7px 10px;
  border-radius: 3px;
  background: rgba(18, 63, 104, 0.09);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 32px clamp(22px, 8vw, 128px);
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
}

footer p {
  margin: 0;
}

.footer-brand {
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

@media (max-width: 900px) {
  .hero,
  .about-grid,
  .news-content,
  .contact-heading {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-mark {
    justify-self: center;
    width: min(80vw, 370px);
  }

  .about-grid,
  .news-content {
    gap: 32px;
  }

  .contact-heading > p:last-child {
    max-width: 560px;
    margin-top: 26px;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 116px;
  }

  .site-header {
    min-height: 104px;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding-top: 12px;
    padding-bottom: 13px;
  }

  .brand img {
    width: 44px;
    height: 32px;
  }

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

  nav {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.78rem;
  }

  .hero {
    gap: 46px;
    padding-top: 74px;
    padding-bottom: 80px;
  }

  h1 {
    font-size: clamp(3.35rem, 17vw, 5.2rem);
  }

  .hero-mark {
    width: min(75vw, 310px);
  }

  .section-shell {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .section-label {
    padding-top: 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .account-card {
    grid-column: auto;
  }

  .card-role {
    margin-bottom: 38px;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
