:root {
  --green: #173f24;
  --green2: #245b35;
  --brown: #654838;
  --cream: #f5f1e9;
  --ink: #182019;
  --muted: #647066;
  --white: #fff;
  --line: #dce2da;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.wrap {
  width: min(1160px, calc(100% - 40px));
  margin: auto;
}
.topbar {
  background: var(--green);
  color: #fff;
  text-align: center;
  padding: 8px 16px;
  font-size: 0.86rem;
}
.header {
  height: 88px;
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}
.header .wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
}
.logo-crop {
  width: 74px;
  height: 68px;
  overflow: hidden;
  position: relative;
}
.logo-crop img {
  position: absolute;
  width: 220px;
  max-width: none;
  left: -74px;
  top: -14px;
}
.brand-text strong {
  display: block;
  font-family: Georgia, serif;
  letter-spacing: 0.13em;
  color: var(--green);
  font-size: 1.15rem;
}
.brand-text span {
  font-size: 0.75rem;
  color: var(--brown);
}
nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.94rem;
  font-weight: 650;
}
nav a:hover,
nav a.active {
  color: var(--green2);
}
.nav-cta,
.btn {
  background: var(--green);
  color: #fff !important;
  border-radius: 4px;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 750;
  border: 1px solid var(--green);
  cursor: pointer;
}
.btn:hover,
.nav-cta:hover {
  background: var(--green2);
}
.btn.light {
  background: #fff;
  color: var(--green) !important;
  border-color: #fff;
}
.btn.outline {
  background: transparent;
  color: var(--green) !important;
}
.menu {
  display: none;
  background: none;
  border: 0;
  font-size: 1.6rem;
}
.hero {
  min-height: 670px;
  display: grid;
  align-items: end;
  color: #fff;
  position: relative;
  background:
    linear-gradient(
      90deg,
      rgba(10, 22, 12, 0.86) 0%,
      rgba(10, 22, 12, 0.58) 44%,
      rgba(10, 22, 12, 0.14) 78%
    ),
    url("assets/IMG_9833.JPG") center 35% / cover;
}
.hero-content {
  padding: 110px 0 94px;
  max-width: 690px;
}
.eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 800;
  color: #bfccb9;
}
.hero h1,
.page-hero h1 {
  font-family: Georgia, serif;
  font-weight: 500;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 1.03;
  margin: 12px 0 22px;
}
.hero p {
  font-size: 1.18rem;
  max-width: 610px;
  color: #eff3ed;
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.trust {
  background: var(--cream);
  padding: 24px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.trust-item {
  display: flex;
  gap: 12px;
  align-items: center;
  font-weight: 700;
  color: var(--green);
}
.trust-icon {
  width: 38px;
  height: 38px;
  border: 1px solid #b8c3b6;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
section {
  padding: 86px 0;
}
.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--brown);
  font-weight: 800;
  font-size: 0.78rem;
}
.section-title {
  font-family: Georgia, serif;
  color: var(--green);
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin: 8px 0 18px;
  font-weight: 500;
}
.lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 720px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 38px;
}
.service-card {
  border: 1px solid var(--line);
  background: #fff;
  padding: 30px;
  transition: 0.2s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(20, 50, 29, 0.09);
}
.service-no {
  font-family: Georgia, serif;
  color: #a9b4a8;
  font-size: 1.1rem;
}
.service-card h3 {
  font-family: Georgia, serif;
  color: var(--green);
  font-size: 1.65rem;
  margin: 24px 0 10px;
}
.service-card p {
  color: var(--muted);
}
.service-card.featured {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.service-card.featured h3,
.service-card.featured p {
  color: #fff;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 62px;
  align-items: center;
}
.photo-frame {
  position: relative;
}
.photo-frame:before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid #a9b4a8;
  z-index: -1;
}
.photo-frame img {
  height: 520px;
  width: 100%;
  object-fit: cover;
}
.checks {
  list-style: none;
  padding: 0;
  margin: 28px 0;
}
.checks li {
  padding: 8px 0 8px 30px;
  position: relative;
}
.checks li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green2);
  font-weight: 900;
}
.band {
  background: var(--green);
  color: #fff;
}
.band .section-title,
.band .lead {
  color: #fff;
}
.zone-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 25px;
}
.zone-list span {
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 8px 14px;
  border-radius: 99px;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
  margin-top: 36px;
}
.gallery figure {
  margin: 0;
  overflow: hidden;
  position: relative;
  background: #ddd;
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.35s;
}
.gallery figure:hover img {
  transform: scale(1.04);
}
.gallery figure:nth-child(1) {
  grid-column: span 7;
  grid-row: span 2;
}
.gallery figure:nth-child(2) {
  grid-column: span 5;
}
.gallery figure:nth-child(3) {
  grid-column: span 5;
}
.gallery figure:nth-child(n + 4) {
  grid-column: span 4;
}
.gallery figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 16px 14px;
  color: #fff;
  font-weight: 750;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}
.cta {
  background: var(--brown);
  color: #fff;
  text-align: center;
  padding: 64px 20px;
}
.cta h2 {
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 0 0 12px;
}
.page-hero {
  padding: 94px 0 70px;
  background: var(--green);
  color: #fff;
}
.page-hero h1 {
  font-size: clamp(2.7rem, 5vw, 4.7rem);
  margin-bottom: 14px;
}
.page-hero p {
  max-width: 720px;
  color: #dfe9df;
  font-size: 1.08rem;
}
.all-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 38px;
}
.wide-card {
  padding: 26px;
  border-left: 4px solid var(--green);
  background: var(--cream);
}
.wide-card h3 {
  margin: 0 0 5px;
  color: var(--green);
}
.form-layout {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr;
  gap: 50px;
}
.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.field.full {
  grid-column: 1/-1;
}
label {
  font-weight: 750;
  font-size: 0.92rem;
}
input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #bfc8bf;
  border-radius: 3px;
  font: inherit;
  background: #fff;
}
textarea {
  min-height: 145px;
  resize: vertical;
}
.form-note {
  font-size: 0.86rem;
  color: var(--muted);
}
.contact-card {
  background: var(--cream);
  padding: 30px;
  height: max-content;
}
.contact-card h3 {
  font-family: Georgia, serif;
  color: var(--green);
  font-size: 1.65rem;
  margin-top: 0;
}
.contact-line {
  padding: 15px 0;
  border-bottom: 1px solid #d6dbd4;
}
.contact-line small {
  display: block;
  color: var(--muted);
}
footer {
  background: #101b13;
  color: #d5ddd6;
  padding: 55px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
}
.footer-title {
  font-family: Georgia, serif;
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
}
.footer-links a {
  display: block;
  padding: 5px 0;
  color: #c7d0c8;
}
.copyright {
  border-top: 1px solid #314035;
  margin-top: 38px;
  padding-top: 20px;
  font-size: 0.82rem;
  color: #9baa9c;
}
.notice {
  display: none;
  margin-top: 16px;
  padding: 12px;
  background: #e9f3ea;
  color: var(--green);
  font-weight: 700;
}
@media (max-width: 820px) {
  .menu {
    display: block;
  }
  nav {
    display: none;
    position: absolute;
    top: 88px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 24px;
    flex-direction: column;
    align-items: stretch;
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
  }
  nav.open {
    display: flex;
  }
  .hero {
    min-height: 600px;
  }
  .trust-grid,
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .split,
  .form-layout {
    grid-template-columns: 1fr;
  }
  .gallery figure,
  .gallery figure:nth-child(n) {
    grid-column: span 6;
    grid-row: span 1;
  }
  .gallery figure:first-child {
    grid-column: span 12;
    grid-row: span 2;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .brand-text span {
    display: none;
  }
}
@media (max-width: 540px) {
  .wrap {
    width: min(100% - 28px, 1160px);
  }
  .header {
    height: 76px;
  }
  .logo-crop {
    width: 60px;
    height: 58px;
  }
  .logo-crop img {
    width: 190px;
    left: -65px;
    top: -12px;
  }
  .brand-text strong {
    font-size: 0.95rem;
  }
  .hero-content {
    padding: 80px 0 65px;
  }
  .hero h1 {
    font-size: 2.65rem;
  }
  .trust-grid,
  .services-grid,
  .all-services,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .trust {
    padding: 20px 0;
  }
  .trust-item {
    font-size: 0.9rem;
  }
  .form {
    grid-template-columns: 1fr;
  }
  .field.full {
    grid-column: auto;
  }
  .gallery {
    grid-auto-rows: 210px;
  }
  .gallery figure,
  .gallery figure:nth-child(n) {
    grid-column: span 12;
    grid-row: span 1;
  }
  .page-hero {
    padding: 65px 0 50px;
  }
  section {
    padding: 62px 0;
  }
}
