:root {
  --primary: #1E3B32;
  --primary-light: #2A4F42;
  --accent: #B87333;
  --bg: #F3F1E8;
  --line: #D9D4C5;
  --text: #333333;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, "Helvetica Neue", Arial, sans-serif;
  background: #fafaf7;
  color: var(--text);
}

.site-nav {
  background: var(--primary);
  border-bottom: 4px solid var(--accent);
  position: sticky;
  top: 0;
  z-index: 10;
}

.site-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 13px;
}

.nav-brand img {
  height: 36px;
  width: 36px;
  object-fit: contain;
  border-radius: 3px;
  background: #fff;
  padding: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
}

.nav-links a:hover { color: #fff; }

.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 4px;
}

.nav-cta:hover { background: #A05E24; }

.hero {
  background: linear-gradient(160deg, var(--primary) 0%, var(--primary-light) 70%, #33604F 100%);
  color: #fff;
  text-align: center;
  padding: 80px 24px 90px;
}

.hero-inner { max-width: 780px; margin: 0 auto; }

.hero-logo {
  height: 110px;
  object-fit: contain;
  margin-bottom: 28px;
}

.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  line-height: 1.2;
  margin: 0 0 18px;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.82);
  font-size: 16.5px;
  line-height: 1.7;
  margin: 0 0 34px;
}

.hero-pillars {
  color: var(--accent);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 0 34px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 13px 26px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.btn-gold { background: var(--accent); color: #fff; }
.btn-gold:hover { background: #A05E24; }

.btn-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  color: #fff;
}
.btn-outline:hover { border-color: #fff; background: rgba(255, 255, 255, 0.08); }

.section { padding: 70px 24px; }
.section-alt { background: var(--bg); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-inner { max-width: 1100px; margin: 0 auto; }

.section h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--primary);
  font-size: 30px;
  margin: 0 0 24px;
}

.section h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  background: var(--accent);
  margin-top: 12px;
}

.about-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  font-size: 15.5px;
  line-height: 1.8;
  color: #4a4a4a;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.focus-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 28px 26px;
}

.focus-num {
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.focus-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--primary);
  font-size: 18px;
  margin: 0 0 10px;
}

.focus-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

.investor-band {
  background: var(--primary);
  color: #fff;
}

.investor-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.investor-band h2 { color: #fff; }
.investor-band p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  line-height: 1.7;
  margin: 0;
}

.contact-line {
  font-size: 16px;
  line-height: 2;
  color: #4a4a4a;
}

.contact-line a { color: var(--accent); font-weight: 600; }

.footer {
  text-align: center;
  padding: 28px 24px 36px;
  border-top: 1px solid var(--line);
}

.footer-confidential {
  color: #999;
  font-size: 12px;
  margin: 0 0 10px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.footer-disclosure {
  max-width: 760px;
  margin: 0 auto;
  color: #aaa;
  font-size: 10.5px;
  line-height: 1.6;
}

@media (max-width: 720px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .hero h1 { font-size: 28px; }
  .hero { padding: 56px 20px 64px; }
  .hero-logo { height: 80px; }
  .about-cols { grid-template-columns: 1fr; gap: 16px; }
}
