
:root {
  --green: #35552c;
  --green-dark: #264226;
  --gold: #c89a33;
  --gold-soft: #ead7a8;
  --cream: #f7f5f0;
  --cream-2: #fffdfa;
  --text: #334234;
  --muted: #5b685b;
  --line: #e4d9be;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: var(--cream);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
input, textarea, button { font: inherit; }

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

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(247, 245, 240, 0.94);
  border-bottom: 1px solid rgba(200, 154, 51, 0.24);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--white);
}

.brand-name {
  font-size: 30px;
  line-height: 0.92;
  color: var(--green);
}

.brand-sub {
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 6px;
  font-family: Arial, Helvetica, sans-serif;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: var(--green);
}

.actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 700;
  transition: 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(53, 85, 44, 0.18);
}

.btn-primary:hover { background: #294121; }

.btn-secondary {
  border-color: var(--gold);
  color: var(--green);
  background: rgba(255, 253, 250, 0.92);
}

.btn-secondary:hover { background: #fff9ec; }
.btn.compact { padding: 10px 16px; }
.btn.full { width: 100%; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 38px;
  background:
    radial-gradient(circle at top left, rgba(200,154,51,0.16), transparent 28%),
    radial-gradient(circle at bottom right, rgba(53,85,44,0.14), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.55), rgba(255,255,255,0));
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 42px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.82);
  border-radius: 999px;
  padding: 10px 16px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  box-shadow: 0 8px 22px rgba(38, 66, 38, 0.05);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

h1 {
  font-size: clamp(52px, 7vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--green-dark);
  margin: 18px 0 18px;
}

.lead {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  font-size: 21px;
  line-height: 1.8;
  max-width: 760px;
  margin: 0;
}

.hero-actions { margin-top: 28px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.stat {
  padding: 18px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.9);
  box-shadow: 0 10px 22px rgba(38, 66, 38, 0.05);
}

.stat strong {
  display: block;
  color: var(--green);
  font-size: 24px;
  font-weight: normal;
  margin-bottom: 5px;
}

.stat span {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.hero-card {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 34px;
  padding: 28px;
  box-shadow: 0 24px 55px rgba(38, 66, 38, 0.10);
}

.hero-card-top {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
}

.hero-card-top img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--gold);
  background: var(--white);
  flex: 0 0 auto;
}

.hero-card-title {
  color: var(--green);
  font-size: 54px;
  line-height: 0.9;
}

.hero-card-sub {
  margin-top: 8px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 12px;
  font-family: Arial, Helvetica, sans-serif;
}

.panel {
  border-radius: 30px;
  padding: 24px;
}

.panel-dark {
  background: linear-gradient(180deg, #2f4b2a, #35552c);
  color: var(--white);
}

.panel-light {
  margin-top: 16px;
  border: 1px solid var(--line);
  background: #fffdfa;
}

.mini-title {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 12px;
  font-family: Arial, Helvetica, sans-serif;
}
.mini-title.gold { color: var(--gold); }

.panel ul {
  margin: 16px 0 0;
  padding-left: 18px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.9;
  font-size: 17px;
}

.panel-light p {
  margin: 10px 0 0;
  line-height: 1.85;
  font-size: 16px;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
}

section { padding: 82px 0; }

.section-head {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-kicker {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 12px;
  font-family: Arial, Helvetica, sans-serif;
}
.section-kicker.left { text-align: left; }
.section-kicker.light { color: var(--gold-soft); }

.section-head h2 {
  font-size: clamp(40px, 5vw, 62px);
  line-height: 1.04;
  color: var(--green-dark);
  margin: 12px 0 12px;
}

.section-head p {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 19px;
  line-height: 1.8;
  color: var(--muted);
}

.left-head {
  font-size: 52px;
  margin: 12px 0 14px;
  color: var(--green-dark);
  line-height: 1.04;
}
.left-head.light { color: #fff; }
.left-head.big { font-size: 58px; }

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.pillar {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 26px;
  box-shadow: 0 12px 30px rgba(38, 66, 38, 0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(38, 66, 38, 0.10);
}

.icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  background: #f8f4ea;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.pillar h3 {
  margin: 18px 0 10px;
  font-size: 38px;
  color: var(--green);
}

.pillar p {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
}

.alt-bg {
  background: #fffdfa;
  border-top: 1px solid rgba(228, 217, 190, 0.5);
  border-bottom: 1px solid rgba(228, 217, 190, 0.5);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 24px;
  align-items: stretch;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 30px;
  box-shadow: 0 12px 30px rgba(38, 66, 38, 0.05);
}

.card-dark {
  background: linear-gradient(180deg, #35552c, #264226);
  color: white;
  border: none;
  box-shadow: 0 18px 40px rgba(38, 66, 38, 0.16);
}

.reason {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 15px 16px;
  background: #f9f7f1;
  border-radius: 20px;
  margin-top: 14px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.75;
  font-size: 18px;
}

.tick {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: var(--gold-soft);
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  margin-top: 2px;
}

.timeline {
  border-left: 1px solid rgba(234, 215, 168, 0.45);
  padding-left: 24px;
  margin-top: 22px;
}

.timeline-item {
  position: relative;
  margin-bottom: 24px;
}

.timeline-item:before {
  content: "";
  position: absolute;
  left: -31px;
  top: 10px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold-soft);
  box-shadow: 0 0 0 4px rgba(234,215,168,0.16);
}

.timeline-item strong {
  display: block;
  font-size: 28px;
  font-weight: normal;
  color: #f6edd5;
  margin-bottom: 6px;
}

.timeline-item span {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.8;
  font-size: 16px;
  color: rgba(255,255,255,0.88);
}

.overview-shell {
  background: linear-gradient(135deg, #fffdfa, #ffffff);
}
.overview-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: center;
}

.overview-copy {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 19px;
  line-height: 1.9;
  color: var(--muted);
  margin: 0;
  max-width: 780px;
}

.overview-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.overview-card {
  border: 1px solid var(--line);
  background: white;
  border-radius: 26px;
  padding: 20px;
}

.overview-card h4 {
  font-size: 30px;
  color: var(--green);
  margin: 0 0 10px;
  line-height: 1.04;
}

.overview-card p {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.contact {
  background: linear-gradient(180deg, #264226, #1f341f);
  color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 30px;
  align-items: start;
}

.contact p {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.85;
  font-size: 18px;
  color: rgba(255,255,255,0.84);
}

.person-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 22px;
}

.person {
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  border-radius: 28px;
  padding: 20px;
}

.person small {
  display: block;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
}

.person h4 {
  margin: 10px 0 10px;
  font-size: 36px;
  line-height: 1;
  font-weight: normal;
}

.person .phone {
  margin-top: 12px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 19px;
  color: white;
}

.inline-actions { margin-top: 14px; }

.contact-card {
  background: white;
  color: var(--text);
  border-radius: 34px;
  padding: 30px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);
}

.contact-card h3 {
  margin: 0;
  font-size: 46px;
  color: var(--green);
}

.contact-card p {
  color: var(--muted);
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.8;
}

.contact-form {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fffdfa;
  padding: 14px 16px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  color: var(--text);
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(200,154,51,0.18);
  border-color: var(--gold);
}

.link-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.mini-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 13px 16px;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--green);
  background: #fffdfa;
  font-size: 15px;
}

.mini-link span:last-child {
  color: var(--gold);
  font-weight: 700;
}

footer {
  border-top: 1px solid rgba(228, 217, 190, 0.8);
  background: var(--cream);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px 0 36px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: var(--muted);
}

.footer-inner strong { color: var(--green); }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

svg { display: block; }

@media (max-width: 1080px) {
  .hero-grid,
  .two-col,
  .overview-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .pillars {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav {
    display: none;
  }
}

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

  .actions {
    width: 100%;
  }

  .actions .btn {
    flex: 1 1 auto;
  }

  .hero-stats,
  .overview-cards,
  .person-grid,
  .pillars {
    grid-template-columns: 1fr;
  }

  .brand-name {
    font-size: 24px;
  }

  .lead {
    font-size: 18px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .left-head,
  .left-head.big,
  .section-head h2,
  .contact-card h3 {
    font-size: 36px;
  }

  h1 {
    font-size: 48px;
  }

  .hero-card-title {
    font-size: 42px;
  }
}
