:root {
  --navy: #142b47;
  --navy-deep: #0d1e33;
  --gold: #b8935e;
  --gold-light: #d4b483;
  --green: #4a6b3a;
  --cream: #faf8f4;
  --ink: #23262b;
  --muted: #5b6472;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  background: #fff;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

.logo {
  height: 48px;
  width: auto;
  display: block;
}

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  padding: 100px 0 90px;
  text-align: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-light);
  margin: 0 0 18px;
}

.hero h1 {
  color: #fff;
  font-size: clamp(28px, 4.5vw, 44px);
  max-width: 780px;
  margin: 0 auto 20px;
}

.lede {
  font-size: 18px;
  color: #d6dde6;
  max-width: 620px;
  margin: 0 auto 36px;
}

.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-light {
  background: #fff;
  color: var(--navy);
}

.btn-light:hover {
  background: var(--cream);
}

/* Statements */
.statements {
  padding: 80px 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.statement-card {
  background: #fff;
  border-top: 4px solid var(--gold);
  border-radius: 6px;
  padding: 36px 32px;
  box-shadow: 0 2px 14px rgba(20, 43, 71, 0.06);
}

.statement-card .tag {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--green);
  margin-bottom: 14px;
}

.statement-card p {
  font-size: 17px;
  color: var(--muted);
  margin: 0;
}

/* Ventures */
.ventures {
  background: #fff;
  padding: 80px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.ventures h2 {
  text-align: center;
  font-size: 30px;
  margin: 0 0 48px;
}

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

.venture-card {
  padding: 28px;
  background: var(--cream);
  border-radius: 6px;
  border: 1px solid #ece6db;
}

.venture-card h3 {
  font-size: 19px;
  margin: 0 0 10px;
  color: var(--navy);
}

.venture-card p {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
}

/* Contact */
.contact {
  background: var(--green);
  color: #fff;
  text-align: center;
  padding: 70px 0;
}

.contact h2 {
  color: #fff;
  margin: 0 0 12px;
}

.contact p {
  color: #dfe9d8;
  margin: 0 0 28px;
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: #9fb0c4;
  padding: 36px 0;
  text-align: center;
  font-size: 14px;
}

.footer-mark {
  height: 40px;
  width: auto;
  margin-bottom: 14px;
  opacity: 0.9;
}

@media (max-width: 720px) {
  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
  }
  .hero {
    padding: 72px 0 60px;
  }
  .logo {
    height: 38px;
  }
}
