@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Libre+Baskerville:wght@400;700&display=swap');

:root {
  --ink: #112326;
  --ink-soft: #4c6063;
  --cream: #f6f3eb;
  --paper: #fbfaf6;
  --white: #ffffff;
  --green: #193f39;
  --green-dark: #0d2523;
  --gold: #b99255;
  --line: #d9ddd7;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.65;
}

a {
  color: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 250, 246, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(17, 35, 38, 0.08);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--green);
  color: var(--green);
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 700;
  font-size: 18px;
}

.brand-name {
  letter-spacing: 0.18em;
  font-size: 14px;
  font-weight: 600;
}

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

.nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 500;
}

.nav a:hover {
  color: var(--green);
}

.hero {
  padding: 105px 0 95px;
  background:
    radial-gradient(circle at 85% 10%, rgba(185, 146, 85, 0.10), transparent 30%),
    linear-gradient(180deg, #fbfaf6 0%, #f3efe5 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.75fr;
  gap: 80px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

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

h1,
h2 {
  font-family: "Libre Baskerville", Georgia, serif;
  line-height: 1.16;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 850px;
  margin-bottom: 26px;
  font-size: clamp(46px, 6vw, 78px);
  font-weight: 400;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 400;
}

h3 {
  font-size: 20px;
  line-height: 1.35;
}

.hero-text {
  max-width: 740px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 19px;
}

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

.button {
  display: inline-block;
  padding: 13px 20px;
  border: 1px solid var(--green);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

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

.button.secondary {
  color: var(--green);
  background: transparent;
}

.hero-card {
  padding: 38px;
  border: 1px solid rgba(25, 63, 57, 0.16);
  background: rgba(255, 255, 255, 0.56);
}

.card-kicker {
  margin: 0 0 22px;
  color: var(--green);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.quote {
  margin: 0;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 22px;
  line-height: 1.55;
}

.rule {
  width: 42px;
  height: 1px;
  margin: 28px 0;
  background: var(--gold);
}

.small-copy {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.section {
  padding: 100px 0;
}

.section.muted {
  background: var(--cream);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 95px;
}

.body-copy p:first-child {
  margin-top: 4px;
}

.body-copy p {
  color: var(--ink-soft);
  font-size: 17px;
}

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

.section-heading.narrow {
  max-width: 760px;
}

.section-heading > p:last-child {
  color: var(--ink-soft);
  font-size: 17px;
}

.cards.three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.info-card {
  min-height: 305px;
  padding: 34px;
  background: var(--paper);
  border-top: 3px solid var(--green);
}

.info-card .number {
  display: inline-block;
  margin-bottom: 65px;
  color: var(--gold);
  font-family: "Libre Baskerville", Georgia, serif;
}

.info-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.investment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.investment-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 22px;
  padding: 38px;
  background: var(--paper);
}

.investment-item .icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: "Libre Baskerville", Georgia, serif;
}

.investment-item p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.section.dark {
  color: var(--white);
  background: var(--green-dark);
}

.eyebrow.light {
  color: #d2b17d;
}

.principles-wrap {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
}

.principle {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 22px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.13);
}

.principle:first-child {
  padding-top: 0;
}

.principle span {
  color: #d2b17d;
  font-size: 12px;
}

.principle p {
  margin: 0;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 19px;
  line-height: 1.5;
}

.closing {
  text-align: center;
}

.closing-inner {
  max-width: 820px;
}

.closing p:last-child {
  color: var(--ink-soft);
  font-size: 17px;
}

.footer {
  padding: 48px 0;
  border-top: 1px solid var(--line);
  background: #f3f0e7;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px 50px;
  align-items: center;
}

.footer p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.footer .disclaimer {
  grid-column: 1 / -1;
  max-width: 900px;
}

.footer-brand .brand-mark {
  width: 32px;
  height: 32px;
  font-size: 15px;
}

.footer-brand .brand-name {
  font-size: 12px;
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .hero {
    padding: 78px 0;
  }

  .hero-grid,
  .two-col,
  .principles-wrap {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .hero-card {
    max-width: 600px;
  }

  .cards.three {
    grid-template-columns: 1fr;
  }

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

  .info-card .number {
    margin-bottom: 38px;
  }

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

@media (max-width: 600px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .site-header .nav-wrap {
    min-height: 68px;
  }

  .section {
    padding: 72px 0;
  }

  h1 {
    font-size: 43px;
  }

  h2 {
    font-size: 34px;
  }

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

  .hero-card,
  .info-card,
  .investment-item {
    padding: 28px;
  }

  .investment-item {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}
