:root {
  color-scheme: light;
  --ink: #101419;
  --ink-soft: #303a42;
  --paper: #f6f4ef;
  --paper-soft: #edeae2;
  --line: rgba(16, 20, 25, 0.14);
  --teal: #1a7a78;
  --blue: #2f5d73;
  --gold: #b98b42;
  --white: #ffffff;
  --max: 1180px;
  --gutter: clamp(20px, 4vw, 56px);
  --header-height: 78px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
}

body::selection {
  background: rgba(26, 122, 120, 0.22);
}

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

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 18px var(--gutter);
  color: var(--white);
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.site-header.is-solid {
  color: var(--ink);
  background: rgba(246, 244, 239, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 8px;
  font-size: 0.74rem;
  letter-spacing: 0;
}

.brand-name {
  overflow: hidden;
  font-size: clamp(0.92rem, 1.8vw, 1rem);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 0.86rem;
  font-weight: 650;
}

.nav-links a {
  position: relative;
  padding: 6px 0;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(88svh, 880px);
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
}

.hero-media,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.78;
}

.hero-scrim {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(16, 20, 25, 0.9) 0%, rgba(16, 20, 25, 0.72) 38%, rgba(16, 20, 25, 0.18) 100%),
    linear-gradient(180deg, rgba(16, 20, 25, 0.62) 0%, rgba(16, 20, 25, 0.08) 42%, rgba(16, 20, 25, 0.76) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  align-self: end;
  width: min(760px, 100%);
  padding: calc(var(--header-height) + 80px) var(--gutter) clamp(64px, 11vh, 110px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.75rem, 9vw, 7.7rem);
  font-weight: 500;
}

.hero-copy {
  width: min(660px, 100%);
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2.1vw, 1.32rem);
}

.intro,
.statement {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 92px);
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(58px, 8vw, 108px) var(--gutter);
}

.section-heading,
.statement > div {
  align-self: start;
}

.intro h2,
.statement h2 {
  max-width: 620px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  font-weight: 500;
}

.intro-copy p,
.statement > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.6vw, 1.16rem);
}

.focus-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid var(--line);
  background: var(--white);
}

.focus-item {
  min-height: 330px;
  padding: clamp(30px, 4.2vw, 56px);
  border-right: 1px solid var(--line);
}

.focus-item:last-child {
  border-right: 0;
}

.focus-index {
  display: block;
  margin-bottom: 56px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
}

.focus-item h3 {
  max-width: 260px;
  color: var(--ink);
  font-size: clamp(1.28rem, 2vw, 1.65rem);
  font-weight: 750;
  line-height: 1.12;
}

.focus-item p {
  max-width: 330px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 0.97rem;
}

.statement {
  align-items: start;
  width: 100%;
  max-width: none;
  padding-right: max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
  padding-left: max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
  background:
    linear-gradient(90deg, rgba(26, 122, 120, 0.08), transparent 42%),
    var(--paper);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 30px var(--gutter);
  border-top: 1px solid var(--line);
  color: rgba(16, 20, 25, 0.72);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 700;
}

@media (max-width: 960px) {
  .focus-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .focus-item:nth-child(2) {
    border-right: 0;
  }

  .focus-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 740px) {
  :root {
    --header-height: 72px;
  }

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

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.8rem;
  }

  .hero {
    min-height: 86svh;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(16, 20, 25, 0.92) 0%, rgba(16, 20, 25, 0.74) 64%, rgba(16, 20, 25, 0.38) 100%),
      linear-gradient(180deg, rgba(16, 20, 25, 0.74) 0%, rgba(16, 20, 25, 0.22) 42%, rgba(16, 20, 25, 0.78) 100%);
  }

  .hero-content {
    padding-top: 170px;
    padding-bottom: 50px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 5.1rem);
  }

  .intro,
  .statement {
    grid-template-columns: 1fr;
  }

  .focus-band {
    grid-template-columns: 1fr;
  }

  .focus-item {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .focus-item:last-child {
    border-bottom: 0;
  }

  .focus-index {
    margin-bottom: 34px;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
