:root {
  --green: #1e3d32;
  --green-mid: #2d5a48;
  --green-soft: #3d6b56;
  --cream: #f4efe6;
  --cream-dark: #e8dfd0;
  --ink: #1a1a18;
  --muted: #5c5a54;
  --white: #fbf9f5;
  --line: #d9d0c2;
  --gold: #b08a4a;
  --shadow: 0 16px 40px rgba(30, 61, 50, 0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  background: var(--green);
  color: #e8dfd0;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.topbar .wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  flex-wrap: wrap;
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 249, 245, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Fraunces", Georgia, serif;
}

.brand img {
  width: auto;
  height: 58px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
}

.brand strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand span {
  display: block;
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

nav ul {
  display: flex;
  gap: 22px;
  list-style: none;
  align-items: center;
  flex-wrap: wrap;
}

nav a {
  font-size: 0.95rem;
  color: var(--ink);
}

nav a:hover, nav a.active { color: var(--green-mid); }

.btn {
  display: inline-block;
  background: var(--green);
  color: var(--cream) !important;
  padding: 11px 18px;
  border-radius: 2px;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.btn:hover { background: var(--green-mid); }

.btn-outline {
  background: transparent;
  color: var(--green) !important;
  border: 1px solid var(--green);
}

.hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  align-items: end;
  color: white;
  overflow: hidden;
}

.hero img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 32, 26, 0.15) 0%, rgba(16, 24, 20, 0.78) 100%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: 80px 0 56px;
  max-width: 680px;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.hero h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1.08;
  font-weight: 500;
  margin-bottom: 16px;
}

.hero p { font-size: 1.12rem; max-width: 520px; color: #efe8dc; }

.hero-actions { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }

section { padding: 72px 0; }

.section-head {
  max-width: 620px;
  margin-bottom: 36px;
}

h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 10px;
}

.lead { color: var(--muted); font-size: 1.05rem; }

.grid-3, .grid-2 {
  display: grid;
  gap: 22px;
}

.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.card img { width: 100%; height: 220px; object-fit: cover; }

.card-body { padding: 20px; }

.tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 8px;
}

.card h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 6px;
}

.meta { color: var(--muted); font-size: 0.92rem; margin-bottom: 12px; }

.price {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.2rem;
  color: var(--green);
}

.services .card { padding: 28px; box-shadow: none; background: var(--cream); border: 0; }
.services h3 { margin-bottom: 8px; }

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.split img { width: 100%; height: 380px; object-fit: cover; }

.list { margin: 16px 0 0 18px; color: var(--muted); }
.list li { margin-bottom: 8px; }

.cta {
  background: var(--green);
  color: var(--cream);
}

.cta h2 { color: white; }
.cta p { color: #d7cbb8; }

.form {
  display: grid;
  gap: 12px;
}

input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: white;
  font: inherit;
}

textarea { min-height: 120px; resize: vertical; }

label { font-size: 0.85rem; color: var(--muted); }

footer {
  background: #14241e;
  color: #cfc4b4;
  padding: 40px 0 24px;
  font-size: 0.92rem;
}

.foot {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

footer strong { color: var(--cream); display: block; margin-bottom: 8px; font-family: "Fraunces", Georgia, serif; }

.disclaimer {
  border-top: 1px solid #2a3d34;
  padding-top: 16px;
  font-size: 0.78rem;
  color: #9a9084;
}

.page-hero {
  background: var(--green);
  color: var(--cream);
  padding: 56px 0 40px;
}

.page-hero h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
}

.filter-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.filter-row button {
  border: 1px solid var(--line);
  background: white;
  padding: 8px 14px;
  font: inherit;
  cursor: pointer;
}

.filter-row button.active {
  background: var(--green);
  color: var(--cream);
  border-color: var(--green);
}

.hidden { display: none !important; }

.note {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  padding: 14px 16px;
  margin-bottom: 28px;
  color: var(--muted);
}

@media (max-width: 860px) {
  .grid-3, .grid-2, .split { grid-template-columns: 1fr; }
  .hero { min-height: 62vh; }
  nav ul { display: none; }
  .nav { flex-wrap: wrap; }
  .mobile-nav { display: flex !important; }
}

.mobile-nav { display: none; gap: 12px; flex-wrap: wrap; width: 100%; }
.mobile-nav a { font-size: 0.88rem; }
