:root {
  color-scheme: light;
  --ink: #111111;
  --charcoal: #2a2a27;
  --muted: #6f6a61;
  --line: #ded9cf;
  --paper: #fffdfa;
  --ivory: #f4f0e8;
  --white: #ffffff;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--max-width);
  padding: 20px 24px;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  align-items: center;
  border: 1px solid var(--line);
  color: var(--ink);
  display: inline-flex;
  flex: 0 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  height: 44px;
  justify-content: center;
  line-height: 1;
  width: 44px;
}

.brand-name {
  color: var(--charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 24px;
  font-size: 0.92rem;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

main {
  margin: 0 auto;
  max-width: var(--max-width);
  padding: 0 24px;
}

.hero {
  align-items: center;
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.6fr);
  min-height: 620px;
  padding: 80px 0 88px;
}

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

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

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

h1,
h2,
h3 {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.05;
}

h1 {
  font-size: clamp(3rem, 8vw, 6.3rem);
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 0;
  max-width: 780px;
}

h3 {
  font-size: 1.55rem;
  margin-bottom: 16px;
}

.lede {
  color: var(--charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero-copy p:not(.eyebrow):not(.lede),
.company-section > p {
  color: var(--charcoal);
  font-size: 1.08rem;
  max-width: 760px;
}

.hero-mark img {
  aspect-ratio: 1290 / 1050;
  height: auto;
  mix-blend-mode: multiply;
  object-fit: contain;
  width: 100%;
}

.section {
  border-top: 1px solid var(--line);
  padding: 72px 0;
}

.section-heading {
  margin-bottom: 36px;
}

.venture-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.venture-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 250px;
  padding: 30px;
}

.venture-card p {
  color: var(--charcoal);
  margin-bottom: 0;
}

.company-section {
  background: var(--ivory);
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: max(24px, calc((100vw - var(--max-width)) / 2 + 24px));
  padding-right: max(24px, calc((100vw - var(--max-width)) / 2 + 24px));
}

.contact-section address {
  color: var(--charcoal);
  display: grid;
  font-style: normal;
  gap: 8px;
}

.contact-section strong {
  color: var(--ink);
}

.contact-section a {
  text-underline-offset: 4px;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0 auto;
  max-width: var(--max-width);
  padding: 28px 24px 40px;
}

.site-footer p {
  margin-bottom: 0;
}

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

  .site-nav {
    width: 100%;
  }

  .hero {
    gap: 36px;
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 56px 0 64px;
  }

  .hero-mark {
    max-width: 360px;
  }

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

  .venture-card {
    min-height: auto;
  }
}

@media (max-width: 520px) {
  .site-header,
  main,
  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .brand-name {
    font-size: 0.82rem;
  }

  .site-nav {
    gap: 16px;
    justify-content: space-between;
  }

  h1 {
    font-size: 3rem;
  }

  .section {
    padding: 54px 0;
  }

  .venture-card {
    padding: 24px;
  }
}
