:root {
  --navy: #24324C;
  --text: #6B7484;
  --paper: #FFFFFF;
  --mist: #F6F7F9;
  --line: #E6E9EE;
  --white: #FFFFFF;
  --inquiry-text: rgba(255,255,255,.60);
  --max: 1180px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--navy);
  font-family: "Helvetica Neue", "Avenir Next", Avenir, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }

.svg-filters {
  position: absolute;
  overflow: hidden;
  pointer-events: none;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 4.5vw, 70px);
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(36,50,76,.08);
  backdrop-filter: blur(10px);
}

.brand { display: block; line-height: 0; }

.brand-logo {
  display: block;
  width: clamp(170px, 16vw, 235px);
  height: auto;
}

.site-nav {
  display: flex;
  gap: clamp(24px, 3vw, 44px);
}

.site-nav a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .68rem;
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a:focus-visible { opacity: .58; }

.hero {
  position: relative;
  min-height: 455px;
  display: flex;
  align-items: flex-start;
  padding: 58px clamp(24px, 6vw, 92px) 56px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(36,50,76,.028) 1px, transparent 1px),
    linear-gradient(rgba(36,50,76,.028) 1px, transparent 1px),
    var(--paper);
  background-size: 72px 72px;
}


.hero-inner {
  width: min(860px,100%);
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-label {
  margin: 0 0 22px;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .72rem;
  font-weight: 700;
}

.hero-wordmark {
  width: clamp(270px, 29vw, 430px);
  margin: 0;
  line-height: 0;
}

.hero-wordmark img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-copy {
  max-width: 590px;
  margin: 20px 0 0;
  font-size: clamp(.98rem, 1.2vw, 1.18rem);
  line-height: 1.55;
  font-weight: 300;
  color: var(--text);
}


.section {
  padding: clamp(72px, 7vw, 108px) clamp(24px, 6vw, 92px);
}

.about {
  background: var(--mist);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-grid {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: 220px minmax(420px, 720px);
  gap: clamp(46px, 4.8vw, 74px);
  align-items: start;
}

.section h2 {
  margin: 0;
  max-width: 520px;
  font-size: clamp(2.7rem, 4.5vw, 4.6rem);
  line-height: 1.03;
  letter-spacing: -.04em;
  font-weight: 300;
}

.about-copy {
  padding-top: 1px;
}

.about-copy p {
  margin: 0 0 22px;
  max-width: 720px;
  font-size: clamp(.96rem, 1.08vw, 1.08rem);
  line-height: 1.65;
  color: var(--text);
  font-weight: 300;
}

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

.inquiries {
  min-height: 225px;
  display: flex;
  align-items: center;
  background: var(--navy);
  color: var(--white);
}

.section-label-light { color: rgba(255,255,255,.66); }

.inquiries-grid {
  width: 100%;
}

.inquiries-copy {
  padding-top: 1px;
}

.email-link {
  display: inline-block;
  color: var(--inquiry-text);
  margin-top: 4px;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  text-decoration: none;
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  font-weight: 300;
  letter-spacing: 0;
}

.email-link:hover,
.email-link:focus-visible {
  color: rgba(255,255,255,.82);
  border-bottom-color: rgba(255,255,255,.42);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 24px clamp(24px, 4.5vw, 70px);
  background: var(--navy);
  color: rgba(255,255,255,.5);
  border-top: 1px solid rgba(255,255,255,.12);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .6rem;
}

@media (max-width: 760px) {
  .site-header {
    height: 70px;
    padding-inline: 18px;
  }

  .brand-logo { width: 155px; }

  .site-nav { gap: 16px; }

  .site-nav a {
    font-size: .6rem;
    letter-spacing: .12em;
  }

  .hero {
    min-height: 350px;
    padding: 48px 24px 28px;
    background-size: 58px 58px;
  }

  .hero h1 { font-size: clamp(2.9rem, 12vw, 4.2rem); }

  .hero-copy { margin-top: 24px; }

  .hero-wordmark {
    width: min(70vw, 355px);
  }

  .section { padding: 70px 24px; }

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

  .about-copy { padding-top: 0; }

  .inquiries {
    min-height: 300px;
  }

  .site-footer {
    flex-direction: column;
    padding: 22px 24px;
  }
}

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

@media (max-width: 760px) {
  .inquiries-copy {
    padding-top: 0;
  }
}
