:root {
  --green: #5a9c44;
  --green-dark: #244c2b;
  --green-soft: #dcebd5;
  --cream: #f5f1e8;
  --ink: #183021;
  --white: #fffdf8;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--cream); color: var(--ink); font-family: Arial, Helvetica, sans-serif; }
a { color: inherit; text-decoration: none; }

.hero { min-height: 760px; height: 100vh; display: grid; grid-template-columns: 1.05fr .95fr; overflow: hidden; }
.hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 130px clamp(28px, 7vw, 110px) 70px; }
.eyebrow, .section-number { margin: 0 0 28px; color: var(--green); font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 28px; font-family: Georgia, 'Times New Roman', serif; font-size: clamp(56px, 6.5vw, 100px); line-height: .92; letter-spacing: -.055em; font-weight: 400; }
h1 em { color: var(--green); font-weight: 400; }
.hero-text { max-width: 560px; font-size: 18px; line-height: 1.75; color: #4a5b4e; }
.hero-actions { display: flex; align-items: center; gap: 32px; margin-top: 20px; }
.button { display: inline-flex; justify-content: space-between; align-items: center; min-width: 208px; gap: 28px; border-radius: 999px; padding: 17px 22px; font-size: 14px; font-weight: 700; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--green-dark); color: white; }
.text-link { padding-bottom: 4px; border-bottom: 1px solid #9aa69c; font-size: 14px; }

.hero-art { position: relative; background: var(--green); }
.sun-disc { position: absolute; width: min(58vw, 760px); aspect-ratio: 1; border-radius: 50%; top: 50%; left: 52%; transform: translate(-50%, -50%); background: #78b260; opacity: .7; }
.logo-card { position: absolute; width: min(68%, 510px); aspect-ratio: 1; top: 50%; left: 50%; transform: translate(-50%, -50%); border-radius: 50%; overflow: hidden; background: var(--green); box-shadow: 0 30px 80px rgba(25, 63, 30, .16); }
.logo-card img { position: absolute; width: 72%; height: 82%; left: 50%; top: 50%; transform: translate(-50%, -50%); object-fit: contain; }
.side-note { position: absolute; bottom: 34px; right: 38px; margin: 0; color: white; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; }

.statement { display: grid; grid-template-columns: .72fr 1.28fr; gap: 8vw; padding: 130px clamp(28px, 8vw, 128px); background: var(--white); }
.statement h2, .approach h2, .contact h2 { max-width: 850px; margin-bottom: 30px; font-family: Georgia, 'Times New Roman', serif; font-weight: 400; font-size: clamp(44px, 5vw, 76px); line-height: 1.03; letter-spacing: -.04em; }
.statement div > p { max-width: 650px; font-size: 19px; line-height: 1.75; color: #536056; }

.approach { padding: 130px clamp(28px, 8vw, 128px); background: var(--green-soft); }
.approach-heading { display: flex; align-items: flex-end; justify-content: space-between; }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 62px; background: rgba(36,76,43,.2); }
.pillars article { min-height: 300px; padding: 36px; background: var(--green-soft); }
.pillars span { display: block; margin-bottom: 70px; color: var(--green); font-size: 12px; font-weight: 700; }
.pillars h3 { margin-bottom: 18px; font-family: Georgia, 'Times New Roman', serif; font-size: 34px; font-weight: 400; }
.pillars p { margin: 0; max-width: 300px; color: #536056; line-height: 1.7; }

.quote-band { padding: 120px 8vw; text-align: center; background: var(--green-dark); color: white; }
.quote-band p { max-width: 1040px; margin: 0 auto 34px; font-family: Georgia, 'Times New Roman', serif; font-size: clamp(38px, 5.4vw, 78px); line-height: 1.1; letter-spacing: -.035em; }
.quote-band span { color: #b8d7a9; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; }

.contact { display: grid; grid-template-columns: 1.1fr .9fr; gap: 8vw; padding: 130px clamp(28px, 8vw, 128px); background: var(--green); color: white; }
.contact .eyebrow { color: #dcebd5; }
.contact-copy { align-self: end; }
.contact-copy p { max-width: 480px; line-height: 1.75; font-size: 18px; }
.button-light { width: max-content; margin-top: 18px; background: white; color: var(--green-dark); }

footer { display: flex; align-items: center; justify-content: center; padding: 28px clamp(24px, 5vw, 76px); background: var(--white); text-align: center; font-size: 12px; letter-spacing: .08em; }
footer p { margin: 0; }

@media (max-width: 820px) {
  .hero { height: auto; min-height: 0; grid-template-columns: 1fr; }
  .hero-copy { min-height: 680px; padding: 130px 24px 70px; }
  .hero-art { min-height: 520px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 24px; }
  .statement, .contact { grid-template-columns: 1fr; gap: 36px; padding-top: 90px; padding-bottom: 90px; }
  .approach { padding-top: 90px; padding-bottom: 90px; }
  .approach-heading { display: block; }
  .pillars { grid-template-columns: 1fr; }
  .pillars article { min-height: auto; }
  .pillars span { margin-bottom: 34px; }
  .quote-band { padding: 90px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
}
