
:root{
  --bottle-green: #14452f;
  --copper: #bb852f;
  --cream: #f6f1e6;
  --white: #ffffff;
  --max-width: 1100px;
}

*{box-sizing:border-box}
html,body{height:100%;margin:0;font-family:Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;background:var(--bottle-green);color:var(--cream);-webkit-font-smoothing:antialiased;}
a{color:var(--copper);text-decoration:none}
.container{max-width:var(--max-width);margin:0 auto;padding:2rem;}
.header{display:flex;align-items:center;gap:1rem;padding:1rem 0;}
.logo img{max-height:72px;}
.nav{margin-left:auto;display:flex;gap:1rem;align-items:center;}
.nav a{padding:0.5rem 0.75rem;border-radius:6px;color:var(--cream);font-weight:600;}
.nav a:hover{background:rgba(255,255,255,0.03);color:var(--copper)}

/* Hero with photo background */
.hero-wrap{position:relative;overflow:hidden;}
.hero{
  min-height:320px;
  display:flex;
  align-items:center;
  color:var(--cream);
  padding:4rem 0;
  background-image: url('../images/artistic-stag.png');
  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
}
.hero::before{
  content:'';
  position:absolute;
  left:0;right:0;top:0;bottom:0;
  background: linear-gradient(rgba(20,69,47,0.65), rgba(20,69,47,0.65));
  z-index:0;
}
.hero .container{position:relative;z-index:2;}
.hero h1{font-size:2.6rem;margin:0 0 0.5rem;color:var(--copper);letter-spacing:1px}
.hero p.lead{margin:0 0 1rem;color:var(--cream);line-height:1.6}

/* Two-column content sections */
.two-col{display:grid;grid-template-columns:1fr 1fr;gap:2rem;padding:2rem 0;align-items:center}
.content-card{background:rgba(255,255,255,0.02);padding:1.25rem;border-radius:10px}
.content-card img{width:100%;height:auto;border-radius:8px;}

/* Footer */
footer{border-top:1px solid rgba(255,255,255,0.04);margin-top:3rem;padding:2rem 0;color:var(--cream)}
.footer-inner{display:flex;flex-wrap:wrap;gap:1rem;align-items:center;justify-content:space-between}
.newsletter{display:flex;gap:0.5rem;align-items:center}
.newsletter input{padding:0.6rem 0.75rem;border-radius:8px;border:0;min-width:220px}
.newsletter button{padding:0.6rem 0.75rem;border-radius:8px;border:0;background:var(--copper);color:var(--white);font-weight:700;cursor:pointer}

/* Responsive */
@media (max-width:900px){
  .hero{padding:2rem 0}
  .two-col{grid-template-columns:1fr; padding:1rem 0}
  .nav{display:none}
  .logo img{max-height:56px}
  .container{padding:1rem}
}

/* Utility */
.center{text-align:center}
.small{font-size:0.95rem;color:rgba(255,255,255,0.9)}
h2{color:var(--copper);margin-top:0}
