
:root{
  --green:#2f5133;
  --accent:#ea7a2d;
  --bg:#f6f3ed;
  --card:#ffffff;
  --text:#1f1a14;
  --muted:#6b6258;
  --border:#ece5db;
  --shadow:0 16px 40px rgba(0,0,0,0.08);
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family:'Open Sans',sans-serif;
  background:var(--bg);
  color:var(--text);
}
.nav{
  padding:18px 40px;
}
.logo{
  font-family:'Merriweather',serif;
  color:var(--green);
  font-size:20px;
}
.logo-link{
  color:inherit;
  text-decoration:none;
}
.hero{
  max-width:1100px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:30px;
  padding:40px;
}
.hero-text h1{
  font-family:'Merriweather',serif;
  font-size:52px;
  color:var(--green);
  margin:0 0 18px 0;
}
.tagline{
  font-size:20px;
  margin:0 0 24px 0;
  line-height:1.5;
}
.cta{
  background:var(--accent);
  color:white;
  border:none;
  padding:14px 26px;
  border-radius:999px;
  cursor:pointer;
  font-weight:600;
  box-shadow:0 10px 24px rgba(234,122,45,0.28);
}
.hero-image img{
  width:100%;
  border-radius:18px;
  box-shadow:var(--shadow);
  display:block;
}
.modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.45);
  display:none;
  align-items:center;
  justify-content:center;
  padding:20px;
  z-index:1000;
}
.modal.show{
  display:flex;
}
.modal-content{
  background:white;
  border-radius:20px;
  max-width:520px;
  width:100%;
  padding:28px;
  box-shadow:var(--shadow);
  position:relative;
}
.close{
  position:absolute;
  right:16px;
  top:10px;
  font-size:30px;
  border:none;
  background:transparent;
  cursor:pointer;
  color:var(--muted);
}
.modal-content h2{
  margin:0 0 18px 0;
  font-family:'Merriweather',serif;
  color:var(--green);
}
.contact-info{
  border:1px solid var(--border);
  border-radius:14px;
  padding:12px 16px;
  background:#fbfaf7;
}
.contact-row{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding:12px 0;
  border-bottom:1px solid var(--border);
}
.contact-row:last-child{
  border-bottom:none;
}
.label{
  color:var(--muted);
  font-weight:600;
}
.value{
  color:var(--green);
  text-decoration:none;
  font-weight:600;
  text-align:right;
}
.policy-page{
  padding:20px 24px 60px 24px;
}
.policy-card{
  max-width:920px;
  margin:0 auto;
  background:var(--card);
  border-radius:20px;
  box-shadow:var(--shadow);
  border:1px solid var(--border);
  padding:36px;
}
.policy-kicker{
  margin:0 0 8px 0;
  color:var(--muted);
  font-weight:600;
}
.policy-page h1{
  margin:0 0 8px 0;
  font-family:'Merriweather',serif;
  color:var(--green);
  font-size:42px;
}
.policy-updated{
  color:var(--muted);
  margin:0 0 28px 0;
}
.policy-page h2{
  margin:28px 0 10px 0;
  font-family:'Merriweather',serif;
  color:var(--green);
  font-size:26px;
}
.policy-page p,
.policy-page li{
  line-height:1.7;
}
.policy-page ul{
  margin:0 0 0 20px;
  padding:0;
}
footer{
  text-align:center;
  padding:30px;
  color:var(--muted);
}
footer a{
  color:var(--green);
  text-decoration:none;
}
@media(max-width:900px){
  .hero{
    grid-template-columns:1fr;
    text-align:center;
  }
  .policy-card{
    padding:24px;
  }
  .policy-page h1{
    font-size:34px;
  }
}
