:root {
  --green-dark: #142418;
  --green: #284734;
  --green-soft: #e7efe4;
  --tan: #d4ba86;
  --tan-light: #f6efdf;
  --brown: #5c3924;
  --text: #22281f;
  --white: #ffffff;
  --muted: #66715f;
  --shadow: 0 18px 45px rgba(0,0,0,0.16);
}
* { box-sizing: border-box; }
body { margin:0; font-family: Georgia, 'Times New Roman', serif; color:var(--text); background:var(--tan-light); line-height:1.6; }
a { color:inherit; }
.container { width:min(1120px, 92%); margin:0 auto; }
.site-header { background:var(--green-dark); color:var(--white); border-bottom:5px solid var(--tan); }
.nav-wrap { display:flex; align-items:center; justify-content:space-between; gap:24px; padding:18px 0; }
.brand { display:flex; gap:12px; align-items:center; }
.logo-mark { width:54px; height:54px; border:2px solid var(--tan); border-radius:50%; display:grid; place-items:center; font-weight:bold; font-size:20px; }
.brand h1 { margin:0; font-size:24px; line-height:1.1; }
.brand p { margin:4px 0 0; color:#dfd5bf; font-size:14px; }
nav { display:flex; flex-wrap:wrap; justify-content:flex-end; gap:10px; }
nav a { color:var(--white); text-decoration:none; padding:8px 10px; border-radius:999px; font-size:15px; }
nav a:hover, nav a.active { background:rgba(212,186,134,.2); }
.hero { background:linear-gradient(rgba(20,36,24,.72), rgba(20,36,24,.72)), url('images/ranch-hero.jpg'); background-size:cover; background-position:center; color:var(--white); padding:86px 0; }
.hero-card { max-width:760px; background:rgba(20,36,24,.72); padding:36px; border-left:6px solid var(--tan); box-shadow:var(--shadow); }
.hero h2 { margin:0 0 14px; font-size:46px; line-height:1.05; }
.hero p { font-size:20px; margin:0 0 22px; }
.btn-row { display:flex; gap:12px; flex-wrap:wrap; }
.btn { display:inline-block; background:var(--tan); color:var(--green-dark); text-decoration:none; padding:12px 18px; border-radius:8px; font-weight:bold; }
.btn.secondary { background:transparent; color:var(--white); border:1px solid var(--tan); }
section { padding:54px 0; }
.section-title { font-size:34px; margin:0 0 12px; color:var(--green-dark); }
.lead { font-size:19px; color:#3e473b; max-width:850px; }
.grid { display:grid; grid-template-columns:repeat(3, 1fr); gap:22px; }
.card { background:var(--white); border-radius:14px; box-shadow:var(--shadow); overflow:hidden; border:1px solid rgba(92,57,36,.12); }
.card-body { padding:22px; }
.card h3 { margin-top:0; color:var(--green); }
.card ul { margin:0; padding-left:20px; }
.band { background:var(--green); color:var(--white); }
.band .section-title, .band .lead { color:var(--white); }
.two-col { display:grid; grid-template-columns:1.1fr .9fr; gap:30px; align-items:start; }
.info-box { background:var(--white); border-left:6px solid var(--tan); padding:24px; border-radius:12px; box-shadow:var(--shadow); }
.photo-grid { display:grid; grid-template-columns:repeat(3, 1fr); gap:18px; }
.photo-card { min-height:210px; border-radius:14px; overflow:hidden; background:linear-gradient(135deg, #c9d5be, #6f805f); box-shadow:var(--shadow); position:relative; }
.photo-card::after { content:attr(data-label); position:absolute; left:0; right:0; bottom:0; padding:16px; background:linear-gradient(transparent, rgba(0,0,0,.72)); color:white; font-weight:bold; }
table { width:100%; border-collapse:collapse; background:var(--white); box-shadow:var(--shadow); border-radius:14px; overflow:hidden; }
th { background:var(--green-dark); color:var(--white); text-align:left; }
th, td { padding:14px 16px; border-bottom:1px solid #e8e0d0; vertical-align:top; }
tr:last-child td { border-bottom:none; }
.note { background:#fff8e8; border-left:5px solid var(--tan); padding:16px; border-radius:8px; }
.form-box { background:var(--white); padding:26px; border-radius:14px; box-shadow:var(--shadow); }
.form-box label { display:block; font-weight:bold; margin:14px 0 6px; }
.form-box input, .form-box textarea, .form-box select { width:100%; padding:12px; border:1px solid #cbc4b7; border-radius:8px; font:inherit; }
.form-box textarea { min-height:140px; }
.footer { background:var(--green-dark); color:#e9dfc9; padding:26px 0; text-align:center; }
.footer a { color:#fff; }
@media (max-width:850px){ .nav-wrap, .two-col{display:block;} nav{justify-content:flex-start;margin-top:14px;} .grid,.photo-grid{grid-template-columns:1fr;} .hero h2{font-size:34px;} .hero-card{padding:24px;} }
