:root {
  --green: #0c4a36;
  --green-dark: #083328;
  --green-mid: #16664c;
  --green-soft: #e8f3ec;
  --cream: #f6f1e8;
  --ink: #14201b;
  --muted: #4d5c56;
  --line: #d7e3dc;
  --white: #fff;
  --gold: #c4a35a;
  --shadow: 0 18px 50px rgba(8, 51, 40, 0.14);
  --radius: 18px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Outfit", system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.skip {
  position: absolute; left: -999px; top: 8px;
}
.skip:focus { left: 8px; background: #fff; padding: 8px 12px; z-index: 20; }

/* Header */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 72px; gap: 16px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand img { width: 40px; height: 40px; }
.brand-name { font-weight: 700; letter-spacing: -.02em; }
.brand-name small { display: block; font-weight: 500; color: var(--muted); font-size: 12px; letter-spacing: 0; }
.nav-links { display: flex; gap: 22px; align-items: center; font-size: 15px; }
.nav-links a { text-decoration: none; color: var(--muted); }
.nav-links a:hover { color: var(--green); }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--green); color: #fff; text-decoration: none;
  border: 0; border-radius: 999px; padding: 12px 20px;
  font-weight: 600; cursor: pointer; font-size: 15px;
}
.btn:hover { background: var(--green-mid); }
.btn-light { background: #fff; color: var(--green); }
.btn-light:hover { background: var(--green-soft); }
.btn-outline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.45); }
.menu-btn { display: none; background: none; border: 0; font-size: 26px; }

/* Hero */
.hero {
  position: relative; min-height: 88vh;
  display: grid; place-items: end start;
  color: #fff;
  background: #083328 center/cover no-repeat;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,51,40,.35) 0%, rgba(8,51,40,.72) 55%, rgba(8,51,40,.88) 100%);
}
.hero-content { position: relative; z-index: 1; padding: 80px 0 64px; max-width: 760px; }
.eyebrow {
  display: inline-block; font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 600; color: #d7e8df; margin-bottom: 14px;
}
.hero h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05; font-weight: 560; margin-bottom: 18px;
}
.hero p.lede { font-size: 19px; max-width: 640px; color: #e8f3ec; margin-bottom: 28px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-points { display: flex; gap: 18px; flex-wrap: wrap; font-size: 14px; color: #d7e8df; }
.hero-points span { display: flex; gap: 8px; align-items: center; }

/* Sections */
section { padding: 84px 0; }
.center { text-align: center; }
h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15; margin-bottom: 12px;
}
.sub { color: var(--muted); font-size: 18px; max-width: 680px; }
.center .sub { margin: 0 auto 40px; }
.section-kicker { color: var(--green-mid); font-weight: 650; letter-spacing: .12em; text-transform: uppercase; font-size: 12px; margin-bottom: 10px; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  background: var(--cream); border-radius: var(--radius); padding: 24px;
  box-shadow: 0 0 0 1px rgba(12,74,54,.06);
}
.card h3 { font-size: 20px; margin: 10px 0 8px; }
.num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--green); color: #fff; display: grid; place-items: center; font-weight: 700;
}

.who { background: var(--green-soft); }
.who-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.who-item {
  background: #fff; border-radius: 14px; padding: 18px 16px;
  font-weight: 600;
}
.who-item span { display: block; color: var(--muted); font-weight: 400; font-size: 14px; margin-top: 4px; }

.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }
.split img { border-radius: 22px; box-shadow: var(--shadow); width: 100%; height: 420px; object-fit: cover; }
.check { list-style: none; margin-top: 18px; }
.check li { padding-left: 28px; position: relative; margin: 10px 0; }
.check li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 700; }

.stock { background: #0b3227; color: #fff; }
.stock .sub { color: #cfe0d7; }
.stock-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 24px; align-items: center; }
.pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.pill { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16); border-radius: 999px; padding: 8px 14px; font-size: 14px; }
.stock img { border-radius: 18px; width: 100%; height: 360px; object-fit: cover; }

.area { background: var(--cream); }
.cities { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 28px; }
.city { background: #fff; padding: 10px 16px; border-radius: 999px; font-weight: 600; }

.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px; margin: 10px 0;
}
.faq summary { cursor: pointer; font-weight: 650; }
.faq p { margin-top: 8px; color: var(--muted); }

.contact { background: var(--green); color: #fff; }
.contact .sub { color: #d5e6dc; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 32px; align-items: start; }
.contact-card { background: rgba(255,255,255,.08); border-radius: 18px; padding: 22px; }
.contact a { color: #fff; }
form { display: grid; gap: 12px; }
label { font-size: 13px; font-weight: 600; }
input, select, textarea {
  width: 100%; border: 0; border-radius: 12px; padding: 12px 14px;
  font: inherit; color: var(--ink);
}
textarea { min-height: 110px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.fine { font-size: 13px; color: #cfe0d7; }

footer {
  background: var(--green-dark); color: #cfe0d7; padding: 28px 0;
  font-size: 14px;
}
.foot { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: #fff; padding: 16px 20px 24px; border-bottom: 1px solid var(--line); }
  .menu-btn { display: block; }
  .cards, .who-grid, .split, .stock-grid, .contact-grid, .form-row { grid-template-columns: 1fr; }
  .split img, .stock img { height: 260px; }
  section { padding: 64px 0; }
  .hero { min-height: 92vh; }
}
