
:root{
  --forest:#24301F;
  --olive:#556B3F;
  --orange:#E67E22;
  --cream:#F2E9D8;
  --soft:#FAF8F4;
  --ink:#111111;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  background:linear-gradient(180deg,#FAF8F4 0%,#F2E9D8 100%);
  color:var(--ink);
  line-height:1.6;
}
a{color:inherit}
.wrap{width:min(1120px,92vw);margin:0 auto}
.header{
  background:rgba(250,248,244,.98);
  border-bottom:4px solid var(--forest);
  box-shadow:0 8px 26px rgba(0,0,0,.08);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  padding:.85rem 0;
}
.logo{
  display:block;
  width:min(430px,70vw);
  height:auto;
}
.contact-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:46px;
  height:46px;
  border:2px solid var(--ink);
  border-radius:12px;
  text-decoration:none;
  background:white;
  font-size:1.4rem;
  flex:0 0 auto;
}
.hero{
  background:
    radial-gradient(circle at 20% 0%,rgba(230,126,34,.11),transparent 28rem),
    linear-gradient(180deg,#ffffff 0%,#FAF8F4 100%);
  padding:3rem 0 2.4rem;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:2rem;
  align-items:center;
}
.kicker{
  color:var(--orange);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:.86rem;
}
h1{
  font-size:clamp(2.2rem,5.4vw,4.2rem);
  line-height:1.03;
  margin:.35rem 0 1rem;
  letter-spacing:-.03em;
}
.lede{
  font-size:clamp(1.08rem,2vw,1.28rem);
  max-width:62ch;
  color:#2d3328;
}
.card{
  background:#fff;
  border:1px solid rgba(36,48,31,.13);
  border-radius:24px;
  padding:1.35rem;
  box-shadow:0 12px 32px rgba(36,48,31,.09);
}
.field-photo{
  display:block;
  width:100%;
  border-radius:20px;
  border:6px solid white;
  box-shadow:0 14px 32px rgba(0,0,0,.16);
}
.why{
  padding:2rem 0 3rem;
}
.why .card{
  max-width:960px;
}
.referral-section{
  background:linear-gradient(135deg,#111511,#1d271d);
  color:#fff;
  padding:2rem 0;
  border-top:4px solid var(--orange);
}
.referral{
  border:2px solid var(--orange);
  border-radius:22px;
  padding:1.25rem;
  display:grid;
  grid-template-columns:1fr auto;
  gap:1.4rem;
  align-items:center;
  background:rgba(0,0,0,.22);
}
.referral h2{
  margin:0 0 .3rem;
  font-size:1.45rem;
}
.referral p{
  margin:.2rem 0;
  color:#f7ead8;
}
.button{
  display:inline-block;
  background:var(--orange);
  color:#fff;
  text-decoration:none;
  padding:.9rem 1.45rem;
  border-radius:12px;
  font-weight:900;
  letter-spacing:.03em;
  white-space:nowrap;
  text-align:center;
}
.code{
  display:block;
  text-align:center;
  margin-top:.45rem;
  color:#f2e9d8;
  font-size:.95rem;
}
.footer{
  background:#101510;
  color:#f2e9d8;
  padding:2rem 0;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:2rem;
}
.footer-logo{
  display:block;
  width:min(300px,80vw);
  height:auto;
}
.footer-tagline{
  color:var(--orange);
  font-weight:800;
}
.footer-links a{
  display:inline-block;
  margin:0 .9rem .5rem 0;
  color:#f2e9d8;
  text-decoration:none;
}
.disclosure{
  border-top:1px solid rgba(242,233,216,.22);
  margin-top:1.5rem;
  padding-top:1rem;
  color:#ded3bd;
  font-size:.95rem;
}
@media(max-width:800px){
  .header-inner{padding:.75rem 0}
  .logo{width:min(320px,72vw)}
  .hero-grid,.referral,.footer-grid{grid-template-columns:1fr}
  .hero{padding:2.2rem 0}
  .button{display:block;width:100%}
}
