*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:      #2E7D32;
  --green-mid:  #388E3C;
  --green-lt:   #4CAF50;
  --green-pale: #E8F5E9;
  --gold:       #C9A84C;
  --gold-pale:  #FFF8E1;
  --cream:      #FAFAF5;
  --cream-dk:   #F2F0E8;
  --brown:      #2C2C2C;
  --mid:        #5A6050;
  --white:      #FFFFFF;
  --border:     #D8D8CC;
  --display:    'Cormorant Garamond', Georgia, serif;
  --body:       'Inter', system-ui, sans-serif;
  --max:        1140px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--body); background: var(--cream); color: var(--brown); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* NAV */
nav { position: sticky; top: 0; z-index: 200; background: rgba(250,250,245,0.97); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: var(--max); margin: 0 auto; padding: 0 28px; height: 260px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo img { height: 220px; width: auto; max-width: 440px; }
.nav-links { display: flex; gap: 28px; list-style: none; font-size: 13.5px; font-weight: 500; }
.nav-links a { color: var(--mid); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--green); }
.nav-cta-btn { background: var(--green); color: var(--white) !important; padding: 9px 20px; border-radius: 6px; font-size: 13px; font-weight: 600; white-space: nowrap; transition: background 0.2s !important; }
.nav-cta-btn:hover { background: var(--green-mid) !important; }
.hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--green); border-radius: 2px; }
.mobile-menu { display: none; flex-direction: column; background: var(--cream); border-top: 1px solid var(--border); padding: 16px 28px 24px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 11px 0; font-size: 15px; font-weight: 500; color: var(--brown); border-bottom: 1px solid var(--border); }
.mobile-menu a:last-child { border-bottom: none; }

/* TYPOGRAPHY */
.eyebrow { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
h1 { font-family: var(--display); font-size: clamp(2.8rem, 5.5vw, 4.4rem); font-weight: 500; line-height: 1.08; letter-spacing: -0.02em; margin-bottom: 22px; }
h2 { font-family: var(--display); font-size: clamp(2rem, 3.8vw, 3rem); font-weight: 500; line-height: 1.12; letter-spacing: -0.015em; margin-bottom: 18px; }
h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 10px; letter-spacing: -0.01em; }
.lead { font-size: 17px; color: var(--mid); line-height: 1.8; }
.inner { max-width: var(--max); margin: 0 auto; }

/* BUTTONS */
.btn-primary { display: inline-block; background: var(--green); color: var(--white); padding: 15px 32px; border-radius: 6px; font-size: 14px; font-weight: 600; transition: background 0.2s, transform 0.15s; border: none; cursor: pointer; }
.btn-primary:hover { background: var(--green-mid); transform: translateY(-1px); }
.btn-gold { display: inline-block; background: var(--gold); color: var(--white); padding: 15px 32px; border-radius: 6px; font-size: 14px; font-weight: 600; transition: background 0.2s, transform 0.15s; }
.btn-gold:hover { background: #b8922e; transform: translateY(-1px); }
.btn-outline { display: inline-block; background: transparent; color: var(--green); padding: 14px 32px; border-radius: 6px; font-size: 14px; font-weight: 500; border: 1.5px solid var(--green); transition: all 0.2s; }
.btn-outline:hover { background: var(--green); color: var(--white); }
.btn-ghost-white { display: inline-block; background: transparent; color: var(--white); padding: 14px 32px; border-radius: 6px; font-size: 14px; font-weight: 500; border: 1.5px solid rgba(255,255,255,0.5); transition: all 0.2s; }
.btn-ghost-white:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* SECTIONS */
section { padding: 96px 28px; }
.sec-green { background: var(--green); }
.sec-green h2 { color: var(--white); }
.sec-green .eyebrow { color: #A5D6A7; }
.sec-green .lead { color: rgba(255,255,255,0.7); }
.sec-pale { background: var(--green-pale); }
.sec-white { background: var(--white); }
.sec-cream { background: var(--cream-dk); }

/* CARDS */
.card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 52px; }
.card { background: var(--white); border-radius: 14px; padding: 32px; border: 1px solid var(--border); }
.card h3 { color: var(--green); margin-bottom: 10px; }
.card p { font-size: 16px; color: var(--mid); line-height: 1.7; }

/* FORM */
.form-wrap { background: var(--white); border-radius: 16px; padding: 44px; border: 1px solid var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--green); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: 8px; font-family: var(--body); font-size: 14px; color: var(--brown); background: var(--cream); transition: border-color 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--green); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-disclaimer { font-size: 12px; color: var(--mid); line-height: 1.6; margin-top: 14px; }
.form-success { display: none; background: var(--green-pale); border: 1px solid var(--green-lt); border-radius: 8px; padding: 14px 18px; font-size: 14px; color: var(--green); margin-top: 14px; }

/* CTA BAND */
.cta-band { background: var(--green); padding: 96px 28px; text-align: center; }
.cta-band h2 { color: var(--white); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,0.7); font-size: 17px; margin-bottom: 38px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-pair { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* FOOTER */
footer { background: #1B3A1C; color: #8AAF8A; padding: 72px 28px 40px; }
.footer-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 56px; }
.footer-logo { height: 48px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: 0.85; }
.footer-brand p { font-size: 13px; line-height: 1.75; max-width: 260px; }
.footer-col h4 { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 18px; }
.footer-col a { display: block; font-size: 13px; color: #8AAF8A; margin-bottom: 11px; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { max-width: var(--max); margin: 0 auto; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.08); font-size: 12px; color: #4A6A4A; line-height: 1.7; }

/* PAGE HERO (inner pages) */
.page-hero { background: var(--green); padding: 8px 28px 48px; }
.page-hero h1 { color: var(--white); max-width: 720px; }
.page-hero .lead { color: rgba(255,255,255,0.75); max-width: 580px; }

/* RESPONSIVE */
@media (max-width: 960px) {
  .nav-logo img { height: 140px; max-width: 320px; }
  .nav-links, .nav-cta-btn { display: none; }
  .hamburger { display: flex; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .nav-logo img { height: 110px; max-width: 260px; }
  section { padding: 64px 20px; }
  .card-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .form-wrap { padding: 28px 20px; }
}
@media (prefers-reduced-motion: reduce) { * { transition: none !important; animation: none !important; } }
