:root {
  --paper: #f5f1e8;
  --ink: #1f2528;
  --muted: #5f6868;
  --line: #d6d0c4;
  --white: #fffdf8;
  --teal: #0f5a56;
  --teal-dark: #093d3a;
  --rust: #a5552c;
  --gold: #c9a44c;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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.5;
  overflow-x: hidden;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 18px 48px;
  color: var(--white);
}

.brand,
.header-link,
nav {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 253, 248, 0.62);
  border-radius: 50%;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
}

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

.header-link {
  justify-self: end;
  padding: 11px 16px;
  border: 1px solid rgba(255, 253, 248, 0.7);
  border-radius: 6px;
}

.hero {
  position: relative;
  display: flex;
  min-height: 92vh;
  align-items: flex-end;
  overflow: hidden;
  padding: 128px 48px 72px;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 18, 18, 0.88), rgba(12, 18, 18, 0.54) 48%, rgba(12, 18, 18, 0.16)),
    linear-gradient(0deg, rgba(12, 18, 18, 0.66), rgba(12, 18, 18, 0.08) 48%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 820px;
  min-width: 0;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

h1 {
  max-width: 780px;
  font-size: 88px;
}

h2 {
  font-size: 58px;
}

h3 {
  margin: 12px 0 8px;
  font-size: 22px;
  letter-spacing: 0;
}

p {
  margin: 0;
}

.hero-text {
  max-width: 690px;
  margin-top: 26px;
  color: rgba(255, 253, 248, 0.86);
  font-size: 22px;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--teal);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
}

.button.primary {
  background: var(--teal);
  color: var(--white);
}

.button.secondary {
  border-color: rgba(255, 253, 248, 0.72);
  color: var(--white);
}

.offer-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.offer-strip div {
  min-height: 188px;
  padding: 30px;
  background: var(--white);
}

.offer-strip span,
.audit-board span {
  color: var(--rust);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.offer-strip strong {
  display: block;
  margin-top: 12px;
  font-size: 24px;
}

.offer-strip p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 17px;
}

.belief-section {
  padding: 72px 48px;
  background: var(--teal-dark);
  color: var(--white);
}

.belief-section p {
  max-width: 1120px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 50px;
  line-height: 1.08;
}

.split-section,
.fit-section,
.buildout-section,
.monologues-section,
.cta-section,
.local-section {
  padding: 88px 48px;
}

.split-section,
.buildout-section,
.local-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 56px;
  align-items: start;
}

.section-copy p,
.fit-intro + .fit-grid,
.monologues-section > p,
.cta-section p,
.local-section > p {
  color: var(--muted);
  font-size: 20px;
}

.section-copy p {
  margin-top: 24px;
  max-width: 570px;
}

.audit-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.audit-board article {
  min-height: 234px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.audit-board p {
  color: var(--muted);
  font-size: 17px;
}

.local-section {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.fit-section {
  background: var(--white);
  border-block: 1px solid var(--line);
}

.fit-intro {
  max-width: 850px;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}

.fit-grid p {
  min-height: 142px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  line-height: 1.12;
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline div {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.timeline strong {
  color: var(--teal);
  font-size: 20px;
}

.timeline span {
  color: var(--muted);
  font-size: 18px;
}

.monologues-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  background: var(--ink);
  color: var(--white);
}

.monologues-section p {
  color: rgba(255, 253, 248, 0.78);
}

.cta-section {
  background: var(--white);
}

.cta-section h2 {
  max-width: 760px;
}

.cta-section p {
  max-width: 720px;
  margin-top: 22px;
}

.cta-section .button {
  margin-top: 28px;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 16px 20px;
  }

  nav {
    display: none;
  }

  .header-link {
    font-size: 13px;
  }

  .hero {
    min-height: 88vh;
    padding: 116px 20px 54px;
  }

  .hero-copy {
    max-width: calc(100vw - 40px);
  }

  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 42px;
  }

  .hero-text {
    font-size: 19px;
  }

  .offer-strip,
  .split-section,
  .local-section,
  .buildout-section,
  .monologues-section,
  .fit-grid,
  .audit-board {
    grid-template-columns: 1fr;
  }

  .belief-section,
  .split-section,
  .local-section,
  .fit-section,
  .buildout-section,
  .monologues-section,
  .cta-section {
    padding: 58px 20px;
  }

  .belief-section p {
    font-size: 36px;
  }

  .fit-grid p {
    min-height: 112px;
  }
}

@media (max-width: 620px) {
  .site-header {
    position: absolute;
  }

  .brand span:last-child {
    display: none;
  }

  .header-link {
    display: none;
  }

  h1 {
    max-width: 350px;
    font-size: 42px;
  }

  h2 {
    font-size: 36px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-copy,
  .hero-text,
  .eyebrow {
    max-width: 350px;
  }

  .offer-strip div {
    min-height: 150px;
    padding: 24px 20px;
  }

  .timeline div {
    grid-template-columns: 1fr;
  }
}
