:root {
  color-scheme: light;
  --marble: #f7f5f1;
  --marble-dark: #f1ede5;
  --paper: #ffffff;
  --ink: #1b2a4a;
  --aegean: #2e4a7a;
  --gold: #c2a04c;
  --gold-soft: rgba(194, 160, 76, 0.16);
  --laurel: #6f8b6e;
  --slate: #6b7280;
  --hairline: #e5e0d5;
  --font-display: "Fraunces Variable", Fraunces, Georgia, "Times New Roman", serif;
  --font-ui: "Inter Variable", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

@font-face {
  font-family: "Inter Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url("/fonts/inter-latin-wght-normal.woff2") format("woff2-variations");
  unicode-range: U+0000-00ff, U+0131, U+0152-0153, U+02bb-02bc, U+02c6, U+02da, U+02dc, U+0304, U+0308, U+0329, U+2000-206f, U+20ac, U+2122, U+2191, U+2193, U+2212, U+2215, U+feff, U+fffd;
}

@font-face {
  font-family: "Fraunces Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url("/fonts/fraunces-latin-wght-normal.woff2") format("woff2-variations");
  unicode-range: U+0000-00ff, U+0131, U+0152-0153, U+02bb-02bc, U+02c6, U+02da, U+02dc, U+0304, U+0308, U+0329, U+2000-206f, U+20ac, U+2122, U+2191, U+2193, U+2212, U+2215, U+feff, U+fffd;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-ui);
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0) 300px),
    var(--marble);
}

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 20px 0 16px;
}

.brand,
.nav-actions,
.hero-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}

.brand-mark {
  width: 42px;
  height: 42px;
  object-fit: cover;
  object-position: center top;
  border-radius: 10px;
  mix-blend-mode: multiply;
}

.nav-actions,
.hero-actions {
  gap: 12px;
}

.ghost-link,
.primary-link,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 650;
}

.ghost-link {
  color: var(--ink);
}

.primary-link {
  color: #fff;
  background: var(--ink);
}

.primary-link:hover {
  background: var(--aegean);
}

.secondary-link {
  border: 1px solid var(--hairline);
  color: var(--ink);
  background: var(--paper);
}

.secondary-link:hover,
.ghost-link:hover {
  background: rgba(27, 42, 74, 0.04);
}

.large {
  min-height: 48px;
  padding: 0 20px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  align-items: center;
  gap: 56px;
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100vh - 240px);
  margin: 0 auto;
  padding: 42px 0 56px;
}

.hero-copy {
  max-width: 720px;
}

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

.eyebrow::after {
  display: block;
  width: 56px;
  height: 2px;
  margin-top: 12px;
  background: var(--gold);
  content: "";
}

h1 {
  max-width: 780px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(42px, 5.4vw, 68px);
  font-weight: 650;
  line-height: 1.02;
  letter-spacing: 0;
}

.lede {
  max-width: 660px;
  margin: 26px 0 0;
  color: var(--slate);
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions {
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 390px;
  overflow: hidden;
  border-left: 1px solid var(--hairline);
  background:
    linear-gradient(90deg, rgba(194, 160, 76, 0.08), rgba(255, 255, 255, 0) 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.18));
}

.hero-visual img {
  width: min(100%, 360px);
  height: auto;
  mix-blend-mode: multiply;
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--hairline);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.feature-band article {
  min-height: 180px;
  padding: 34px max(24px, calc((100vw - 1180px) / 2));
  background: var(--marble-dark);
}

.feature-band h2 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 650;
}

.feature-band p {
  max-width: 320px;
  margin: 0;
  color: var(--slate);
  font-size: 16px;
  line-height: 1.5;
}

@media (max-width: 820px) {
  .site-header {
    width: min(100% - 28px, 1180px);
  }

  .brand span {
    font-size: 16px;
  }

  .nav-actions {
    gap: 6px;
  }

  .ghost-link,
  .primary-link,
  .secondary-link {
    min-height: 40px;
    padding: 0 12px;
    font-size: 14px;
  }

  .hero {
    display: block;
    width: min(100% - 28px, 1180px);
    min-height: auto;
    padding: 28px 0 32px;
  }

  h1 {
    font-size: clamp(34px, 10.6vw, 42px);
  }

  .lede {
    font-size: 17px;
  }

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

  .hero-visual {
    min-height: 0;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--hairline);
    border-left: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.18));
  }

  .hero-visual img {
    width: min(70%, 220px);
  }

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

  .feature-band article {
    min-height: auto;
    padding: 28px 20px;
  }
}
