:root {
  --forest-900: #1f3a2f;
  --forest-700: #2f5b47;
  --forest-500: #4f7d63;
  --sage-200: #dce7df;
  --earth-100: #f3ede3;
  --earth-300: #dbc8a9;
  --sun-400: #d5a94b;
  --ink-900: #172019;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 14px 32px rgba(20, 35, 27, 0.12);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", Tahoma, sans-serif;
  color: var(--ink-900);
  background:
    radial-gradient(circle at 10% 0%, rgba(220, 231, 223, 0.8), transparent 45%),
    radial-gradient(circle at 100% 20%, rgba(219, 200, 169, 0.45), transparent 40%),
    var(--earth-100);
  line-height: 1.5;
}

h1, h2, h3 {
  margin: 0 0 0.65rem;
  font-family: "Bree Serif", Georgia, serif;
  line-height: 1.18;
  color: var(--forest-900);
}

p { margin: 0 0 0.8rem; }
a { color: var(--forest-700); }

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.topbar {
  background: var(--forest-900);
  color: var(--white);
  border-bottom: 4px solid var(--sun-400);
  position: sticky;
  top: 0;
  z-index: 20;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: "Bree Serif", Georgia, serif;
  font-size: 1.02rem;
  white-space: nowrap;
}

.icon {
  width: 1.1rem;
  height: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 2.25;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.28rem;
  justify-content: flex-end;
}

nav a {
  text-decoration: none;
  color: var(--white);
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  font-size: 0.88rem;
  line-height: 1;
  border: 1px solid transparent;
  transition: background-color 120ms ease, box-shadow 120ms ease;
}

nav a:hover {
  background: rgba(255, 255, 255, 0.16);
}

nav a.active,
nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.24);
  box-shadow: 0 0 20px rgba(213, 169, 75, 0.35);
}

.call-now-btn {
  text-decoration: none;
  background: var(--sun-400);
  color: #1f2e24;
  border: 1px solid rgba(0, 0, 0, 0.18);
  padding: 0.5rem 0.9rem;
  border-radius: 10px;
  font-size: 0.86rem;
  font-weight: 700;
  white-space: nowrap;
}

.call-now-btn:hover {
  filter: brightness(1.04);
}

.hero {
  padding: 2.2rem 0 1.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 1rem;
  align-items: stretch;
}

.hero-copy {
  padding: 1.35rem 0.35rem 1.35rem 0;
}

.hero-copy h1 {
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  margin-bottom: 0.55rem;
}

.hero-copy p {
  font-size: 1.08rem;
  max-width: 46ch;
}

.panel {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem;
  border: 1px solid rgba(47, 91, 71, 0.12);
}

.tagline {
  display: inline-block;
  background: linear-gradient(90deg, var(--sage-200), var(--earth-300));
  color: var(--forest-900);
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
  font-size: 0.8rem;
  margin-bottom: 0.7rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  text-decoration: none;
  border-radius: 10px;
  padding: 0.58rem 0.9rem;
  border: 1px solid transparent;
  font-weight: 600;
}

.btn-primary { background: var(--forest-700); color: var(--white); }
.btn-secondary { background: var(--white); color: var(--forest-700); border-color: var(--forest-700); }

.section { padding: 1.7rem 0; }
.section.alt { background: rgba(220, 231, 223, 0.44); }

.grid-3,
.grid-2 {
  display: grid;
  gap: 0.85rem;
}

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

.service-card h3,
.review-card h3,
.case-card h3 { font-size: 1.03rem; }

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.48rem;
}

.badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
}

.badge-green { background: #d4ebde; color: #225438; }
.badge-gold { background: #f8edcf; color: #7b5a13; }
.badge-clay { background: #f3ddd0; color: #8a4722; }
.badge-slate { background: #dbe8ef; color: #24495f; }

.rating {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.45rem;
}

.stars {
  color: #d19a21;
  letter-spacing: 0.04em;
  font-size: 1rem;
}

.small { font-size: 0.9rem; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.image-block {
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(47, 91, 71, 0.2);
  display: grid;
  grid-template-rows: 1fr auto;
  background: #fff;
}

.image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.media-frame {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(47, 91, 71, 0.2);
  background: #f3f7f4;
}

.media-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.media-short { min-height: 260px; }
.media-tall { min-height: 460px; }

footer {
  background: #18281f;
  color: #e7efe8;
  margin-top: 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0.9rem;
  padding: 1.2rem 0;
}

.footer-mini-map {
  border-radius: 12px;
  overflow: hidden;
  min-height: 170px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-mini-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

footer a { color: #e7efe8; }

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  font-size: 0.9rem;
}

iframe.map {
  width: 100%;
  min-height: 360px;
  border-radius: var(--radius);
  border: 1px solid rgba(47, 91, 71, 0.2);
}

.input,
textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(47, 91, 71, 0.3);
  padding: 0.62rem 0.72rem;
  margin-bottom: 0.62rem;
  font: inherit;
}

@media (max-width: 980px) {
  .topbar-inner { align-items: flex-start; flex-direction: column; }
  .header-right { width: 100%; justify-content: space-between; }
  nav { justify-content: flex-start; }
  .hero-grid,
  .grid-3,
  .grid-2,
  .gallery-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .media-tall { min-height: 300px; }
}
