:root {
  --green: #14432f;
  --green-deep: #0d2c1f;
  --gold: #c79a3b;
  --gold-soft: #e0c074;
  --cream: #f7f4ec;
  --paper: #fffdf8;
  --ink: #1c241f;
  --muted: #6c7a70;
  --line: rgba(20, 67, 47, 0.12);
  --maxw: 1160px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: "Fraunces", Georgia, serif; font-weight: 600; line-height: 1.12; }
a { color: inherit; text-decoration: none; }

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s ease;
  background-color: transparent;
  backdrop-filter: blur(2px);
}
header.scrolled { background-color: rgba(13, 44, 31, 0.95); backdrop-filter: blur(10px); }
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 5%;
  max-width: var(--maxw);
  margin: 0 auto;
}
.logo { font-family: "Fraunces", serif; font-size: 1.4rem; font-weight: 600; color: #fff; text-shadow: 1px 1px 3px rgba(0,0,0,0.4); }
nav ul { display: flex; list-style: none; gap: 2rem; }
nav ul a { color: #fff; font-weight: 500; opacity: 0.9; text-shadow: 1px 1px 3px rgba(0,0,0,0.4); transition: opacity 0.2s; }
nav ul a:hover { opacity: 1; color: var(--gold-soft); }

/* Sections */
section { padding: 5rem 5%; max-width: var(--maxw); margin: 0 auto; }
h2 { color: var(--green); font-size: clamp(1.8rem, 4vw, 2.6rem); text-align: center; margin-bottom: 0.6rem; }
.section-sub { text-align: center; color: var(--muted); margin-bottom: 3rem; font-size: 1.05rem; }

/* Hero */
.hero {
  padding: 0;
  max-width: none;
  margin: 0;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,44,31,0.45), rgba(13,44,31,0.65));
}
.hero-content { position: relative; z-index: 1; color: #fff; padding: 1.5rem; max-width: 720px; }
.eyebrow { text-transform: uppercase; letter-spacing: 3px; font-size: 12.5px; font-weight: 600; color: var(--gold-soft); margin-bottom: 1rem; }
.hero h1 { font-size: clamp(2.4rem, 7vw, 4rem); color: #fff; margin-bottom: 1rem; }
.hero p { font-size: clamp(1rem, 2.2vw, 1.25rem); color: rgba(247,244,236,0.9); margin-bottom: 2rem; }
.btn {
  display: inline-flex;
  align-items: center;
  padding: 13px 28px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--green-deep);
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(199,154,59,0.35);
  transition: transform 0.15s, background 0.2s;
}
.btn:hover { transform: translateY(-2px); background: var(--gold-soft); }

/* Produce */
.products { background: transparent; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.6rem; }
.product-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.2rem;
  transition: transform 0.2s, box-shadow 0.25s;
}
.product-card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(20,67,47,0.12); }
.product-card img { width: 100%; height: 200px; object-fit: cover; border-radius: 10px; margin-bottom: 1rem; }
.product-card h3 { color: var(--green); font-size: 1.2rem; margin-bottom: 0.4rem; }
.product-card p { color: var(--muted); font-size: 0.95rem; }

/* Estates */
.estate-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.8rem; }
.estate-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.25s, border-color 0.2s;
}
.estate-card:hover { transform: translateY(-4px); box-shadow: 0 20px 44px rgba(20,67,47,0.14); border-color: var(--gold); }
.estate-img { height: 220px; background-size: cover; background-position: center; }
.estate-body { padding: 1.6rem; }
.estate-tag { display: inline-block; font-size: 11.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--green); background: rgba(20,67,47,0.08); padding: 5px 12px; border-radius: 999px; margin-bottom: 0.8rem; }
.estate-body h3 { color: var(--green); font-size: 1.4rem; margin-bottom: 0.5rem; }
.estate-body p { color: var(--muted); margin-bottom: 1rem; }
.estate-meta { list-style: none; border-top: 1px solid var(--line); padding-top: 0.9rem; }
.estate-meta li { font-size: 0.9rem; color: var(--green); padding: 2px 0; }

/* About */
.about { text-align: center; max-width: 800px; }
.about p { color: var(--muted); font-size: 1.12rem; }

/* Contact */
.contact { text-align: center; }
.contact-info { margin-top: 1.5rem; }
.contact-info p { margin: 0.3rem 0; }
.contact-info a { color: var(--gold); font-weight: 600; }

/* Footer */
footer { background: var(--green-deep); color: rgba(247,244,236,0.75); text-align: center; padding: 1.6rem; }

@media (max-width: 768px) {
  nav { flex-direction: column; gap: 0.8rem; }
  nav ul { gap: 1.2rem; }
  section { padding: 3.5rem 6%; }
}
