:root {
  --deep: #3e5370;
  --blue: #3e5370;
  --steel: #646a77;
  --mid: #79797b;
  --mist: #c6c5c5;
  --wash: #f7f7f6;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--wash);
  color: var(--deep);
  font-family: "Optima", "Segoe UI", sans-serif;
}

.site-header {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px clamp(18px, 5vw, 64px);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(62, 83, 112, 0.06);
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand img {
  width: 106px;
  display: block;
}

nav {
  display: flex;
  gap: 10px;
}

nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 6px;
  text-decoration: none;
  color: var(--steel);
}

nav a[aria-current="page"],
nav a:hover {
  background: rgba(62, 83, 112, 0.12);
  color: var(--blue);
}

main {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 88px);
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(32px, 7vw, 90px);
  align-items: center;
  padding: 58px 0 76px;
}

.portrait-pair {
  min-height: 560px;
  position: relative;
}

.portrait-pair img {
  position: absolute;
  width: 58%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(62, 83, 112, 0.18);
  background: var(--white);
}

.portrait-pair img:first-child {
  left: 0;
  bottom: 28px;
}

.portrait-pair img:last-child {
  right: 0;
  top: 28px;
}

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

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(3.1rem, 8vw, 7rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--steel);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.55;
}

.button {
  margin-top: 30px;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 6px;
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
}

.band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(62, 83, 112, 0.16);
  margin-bottom: 84px;
}

.band p {
  margin: 0;
  min-height: 120px;
  display: grid;
  place-items: center;
  background: var(--white);
  color: var(--blue);
  font-size: clamp(1.25rem, 2vw, 1.9rem);
  font-weight: 700;
}

.section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  padding: 0 0 94px;
}

.section h2 {
  margin-bottom: 0;
  font-size: clamp(2.2rem, 5vw, 5rem);
  line-height: 0.95;
}

.text-columns {
  columns: 2;
  column-gap: 34px;
  color: var(--steel);
  font-size: 1.08rem;
  line-height: 1.65;
}

.contact-hero {
  padding: 76px 0 36px;
}

.contact-hero h1 {
  max-width: 900px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding-bottom: 94px;
}

.contact-cards article {
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(62, 83, 112, 0.08);
}

.contact-cards img {
  width: 100%;
  height: clamp(420px, 48vw, 620px);
  object-fit: cover;
  object-position: center top;
  display: block;
}

.contact-cards div {
  padding: 24px;
}

.contact-cards h2 {
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

.contact-cards a {
  display: block;
  color: var(--blue);
  margin-top: 8px;
  overflow-wrap: anywhere;
}

footer {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(62, 83, 112, 0.16);
  color: var(--steel);
}

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

  .hero,
  .section,
  .contact-cards,
  .band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .portrait-pair {
    min-height: 420px;
  }

  .text-columns {
    columns: 1;
  }
}
