:root {
  --green: #2f4a32;
  --green-dark: #1c2e1e;
  --green-mid: #3d5c40;
  --cream: #f6f1e6;
  --paper: #fffdf8;
  --tan: #e4d5b8;
  --rust: #8a4b22;
  --gold: #c4a35a;
  --text: #2b2b2b;
  --muted: #5c564c;
  --shadow: 0 10px 30px rgba(28, 46, 30, 0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Source Sans 3", system-ui, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: var(--green); }
.wrap { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246, 241, 230, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--tan);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 76px; gap: 1rem;
}
.logo {
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 700; font-size: 1.35rem;
  color: var(--green-dark); text-decoration: none; letter-spacing: 0.02em;
}
.logo span { display: block; font-size: 0.68rem; font-weight: 400; color: var(--muted); letter-spacing: 0.12em; text-transform: uppercase; }
nav ul { display: flex; gap: 1.4rem; list-style: none; }
nav a {
  text-decoration: none; color: var(--green-dark); font-weight: 600;
  font-size: 0.95rem;
}
nav a:hover, nav a.active { color: var(--rust); }
.nav-toggle {
  display: none; background: none; border: 0; font-size: 1.6rem; cursor: pointer; color: var(--green-dark);
}

.hero {
  position: relative; min-height: 78vh;
  display: grid; place-items: end start;
  background: #1c2e1e center/cover no-repeat;
  color: white;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,46,30,.25), rgba(28,46,30,.72));
}
.hero-content { position: relative; z-index: 1; padding: 4rem 0 3.5rem; max-width: 720px; }
.eyebrow { letter-spacing: 0.18em; text-transform: uppercase; font-size: 0.78rem; color: var(--gold); font-weight: 700; }
.hero h1 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 1.15; margin: 0.4rem 0 1rem;
}
.btn-row { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.4rem; }
.btn {
  display: inline-block; text-decoration: none; border-radius: 4px;
  padding: 0.75rem 1.2rem; font-weight: 700;
}
.btn-primary { background: var(--gold); color: var(--green-dark); }
.btn-ghost { background: transparent; color: white; border: 1px solid rgba(255,255,255,.7); }

.stats {
  background: var(--green-dark); color: white;
  display: grid; grid-template-columns: repeat(3, 1fr);
}
.stat { padding: 1.6rem 1rem; text-align: center; border-right: 1px solid rgba(255,255,255,.12); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; font-family: "Libre Baskerville", serif; font-size: 2rem; color: var(--gold); }
.stat span { font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; }

section { padding: 4.2rem 0; }
.section-title {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--green-dark); margin-bottom: 0.6rem;
}
.lead { font-size: 1.12rem; color: var(--muted); max-width: 62ch; }
.grid-2 { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2.2rem; align-items: center; }
.card {
  background: var(--paper); border: 1px solid var(--tan);
  border-radius: 10px; padding: 1.4rem; box-shadow: var(--shadow);
}
.photo-frame { border-radius: 10px; overflow: hidden; box-shadow: var(--shadow); }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; min-height: 280px; }

.packages { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 1.2rem; }
.price { font-family: "Libre Baskerville", serif; font-size: 2rem; color: var(--rust); }
.yield { columns: 2; gap: 1rem; margin: 1rem 0 0; }
.yield li { break-inside: avoid; margin-bottom: 0.35rem; }

.splash {
  background: #fff4d8; border: 1px solid #e2c36a;
  padding: 1rem 1.2rem; border-radius: 8px; margin-bottom: 1.8rem;
  font-weight: 700; color: var(--green-dark);
}
.price-table { width: 100%; border-collapse: collapse; background: var(--paper); }
.price-table th, .price-table td { padding: 0.75rem 0.9rem; text-align: left; border-bottom: 1px solid var(--tan); }
.price-table th { background: var(--green); color: white; }
.price-table tr:last-child td { border-bottom: 0; }

.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.gallery-grid figure {
  background: var(--paper); border-radius: 10px; overflow: hidden;
  border: 1px solid var(--tan);
}
.gallery-grid img { width: 100%; height: 240px; object-fit: cover; }
.gallery-grid figcaption { padding: 0.7rem 0.9rem; font-size: 0.92rem; color: var(--muted); }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.contact-card h3 { font-family: "Libre Baskerville", serif; margin-bottom: 0.4rem; }
.contact-card a { font-weight: 700; text-decoration: none; }
form { display: grid; gap: 0.7rem; }
input, textarea {
  width: 100%; padding: 0.75rem 0.85rem; border: 1px solid var(--tan);
  border-radius: 6px; font: inherit; background: white;
}
button[type="submit"] {
  background: var(--green); color: white; border: 0; padding: 0.8rem 1rem;
  border-radius: 6px; font-weight: 700; cursor: pointer;
}

.site-footer {
  background: var(--green-dark); color: #d9d2c4; padding: 2rem 0 1.4rem;
  font-size: 0.92rem;
}
.site-footer a { color: var(--gold); }
.footer-top { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 1rem; }

@media (max-width: 800px) {
  .nav-toggle { display: block; }
  nav { display: none; position: absolute; left: 0; right: 0; top: 76px; background: var(--cream); border-bottom: 1px solid var(--tan); }
  nav.open { display: block; }
  nav ul { flex-direction: column; padding: 1rem 1.2rem 1.3rem; gap: 0.85rem; }
  .grid-2, .packages, .contact-grid, .gallery-grid, .stats { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .yield { columns: 1; }
  .gallery-grid img { height: 220px; }
}