:root {
  --navy: #123f5d;
  --navy-dark: #0a2c42;
  --navy-deep: #072235;
  --red: #b63a3d;
  --red-dark: #942c30;
  --paper: #ffffff;
  --ink: #172a36;
  --muted: #5c6b74;
  --line: #d9e0e3;
  --container: 1180px;
  --shadow: 0 24px 60px rgba(10, 44, 66, 0.14);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

.container {
  width: min(calc(100% - 3rem), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  color: var(--paper);
  background: var(--navy-dark);
  border-radius: 0.25rem;
  font-weight: 700;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
}

.site-header_accent {
  height: 5px;
  background: linear-gradient(90deg, var(--red) 0 34%, var(--navy) 34% 100%);
}

.site-header_inner {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--navy-dark);
  text-decoration: none;
}

.brand_logo {
  flex: none;
  width: auto;
  height: 70px;
  object-fit: contain;
}

.brand_name {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  line-height: 1;
}

.brand_primary {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.035em;
}

.brand_secondary {
  color: var(--ink);
  font-size: 3rem;
  font-weight: 650;
  letter-spacing: -0.015em;
font-family: Georgia, "Times New Roman", serif;
}

.site-header_descriptor {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 6vw, 6rem) 0;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 34rem;
  height: 34rem;
  top: -18rem;
  left: -18rem;
  border: 1px solid rgba(18, 63, 93, 0.09);
  border-radius: 50%;
  box-shadow: 0 0 0 5rem rgba(18, 63, 93, 0.025), 0 0 0 10rem rgba(18, 63, 93, 0.018);
}

.hero_grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 6.5rem);
}

.hero_content,
.contact_intro,
.contact_details,
.contact-item > span:last-child {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 1.1rem;
  color: var(--red-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h2,
.contact h2 {
  margin: 0;
  color: var(--navy-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.035em;
  text-wrap: balance;
  overflow-wrap: break-word;
}

.hero h2 {
  max-width: 700px;
  font-size: clamp(1rem, 5.4vw, 2.5rem);
}

.hero_lead {
  max-width: 680px;
  margin: 1.75rem 0 0;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.5;
}

.hero_body {
  max-width: 660px;
  margin-top: 1.5rem;
  color: var(--muted);
}

.hero_body p {
  margin: 0 0 1rem;
}

.hero_body a {
  color: var(--navy);
  font-weight: 700;
  text-decoration-color: rgba(18, 63, 93, 0.35);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.hero_body a:hover {
  text-decoration-color: currentColor;
}

.text-link {
  width: fit-content;
  margin-top: 1.65rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
}

.text-link svg {
  width: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 160ms ease;
}

.text-link:hover svg {
  transform: translateX(0.25rem);
}

.hero_visual {
  position: relative;
  min-width: 0;
}

.hero_visual > img {
  width: 100%;
  height: auto;
  border-radius: 0.35rem;
  box-shadow: var(--shadow);
}

.offering-card {
  position: absolute;
  right: -1.25rem;
  bottom: -1.5rem;
  width: min(240px, 56%);
  padding: 1.3rem 1.45rem;
  color: var(--paper);
  background: var(--navy-dark);
  border-top: 4px solid var(--red);
  box-shadow: 0 18px 40px rgba(7, 34, 53, 0.25);
}

.offering-card_label,
.offering-card_status {
  display: block;
}

.offering-card_label {
  margin-bottom: 0.15rem;
  color: #d7e3e9;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offering-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  letter-spacing: -0.025em;
}

.offering-card_status {
  margin-top: 0.65rem;
  color: #d7e3e9;
  font-size: 0.8rem;
}

.offering-card_status span {
  width: 0.5rem;
  height: 0.5rem;
  margin-right: 0.35rem;
  display: inline-block;
  background: #f1a950;
  border-radius: 50%;
}

.contact {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 6vw, 6rem) 0;
  color: var(--paper);
  background: var(--navy);
}

.contact::after {
  content: "";
  position: absolute;
  right: -12rem;
  bottom: -19rem;
  width: 34rem;
  height: 34rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 5rem rgba(255, 255, 255, 0.025), 0 0 0 10rem rgba(255, 255, 255, 0.018);
  pointer-events: none;
}

.contact_grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0px, .6fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 7rem);
}

.eyebrow--light {
  color: #f2adaf;
}

.contact h2 {
  color: var(--paper);
  font-size: clamp(2.25rem, 4vw, 2rem);
}

.contact_intro > p {
  margin: 1.4rem 0 0;
  color: #d9e4e9;
  font-size: 1.08rem;
}

.contact_details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  overflow: hidden;
  /* background: rgba(255, 255, 255, 0.16); */
  /* border: 1px solid rgba(255, 255, 255, 0.16); */
  border-radius: 0.25rem;
  font-style: normal;
}

.contact-item {
  /* min-height: 106px; */
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: var(--paper);
  /* background: rgba(10, 44, 66, 0.55); */
  text-decoration: none;
  transition: background-color 160ms ease;
}

a.contact-item:hover {
  background: rgba(7, 34, 53, 0.9);
}

.contact-item_icon {
  width: 2.7rem;
  height: 2.7rem;
  flex: none;
  display: grid;
  place-items: center;
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.contact-item_icon svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.contact-item_label {
  margin: 0.1rem 0 0.2rem;
  display: block;
  color: #aebfc9;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-footer {
  color: #bdcbd3;
  background: var(--navy-deep);
}

.site-footer_inner {
  min-height: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-footer_brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--paper);
  font-weight: 700;
}

.site-footer p {
  margin: 0;
  font-size: 0.82rem;
}

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

:focus-visible {
  outline: 3px solid #f0a34c;
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .hero_grid,
  .contact_grid {
    grid-template-columns: 1fr;
  }

  .hero_visual {
    width: min(100%, 680px);
    margin-top: 0.5rem;
  }

  .contact_grid {
    gap: 2.75rem;
  }

  .contact_intro > p:last-child {
    max-width: 620px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 2rem), var(--container));
  }

  .site-header_inner {
    min-height: 88px;
  }

  .brand_logo {
    height: 46px;
  }

  .brand_name {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.22rem;
  }

  .brand_secondary {
    font-size: 1.8rem;
  }

  .site-header_descriptor {
    display: none;
  }

  .hero {
    padding-top: 3.75rem;
  }

  /* .hero h2 {
    font-size: clamp(2.25rem, 11vw, 3rem);
  } */

  .hero_grid {
    gap: 2.5rem;
  }

  .offering-card {
    right: 0.75rem;
    bottom: -1rem;
  }

  .contact_details {
    grid-template-columns: 1fr;
  }

  .contact-item {
    min-height: 0;
  }

  .contact h2 {
    font-size: clamp(2rem, 10vw, 2rem);
  }

  .site-footer_inner {
    padding: 1.75rem 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }
}

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

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