:root {
  --ink: #1a1a1a;
  --ink-soft: rgba(26, 26, 26, 0.7);
  --bg: #f5f4f1;
  --panel: #ffffff;
  --accent: #5e7a24;      /* dark, WCAG-safe shade of the brand green — buttons, links, text */
  --accent-dark: #46601a; /* hover state */
  --accent-bright: #9ccc3c; /* true brand lime green, sampled from their van/logo — decorative use only */
  --line: #ddd9d2;
  --radius: 10px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
}

.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2 {
  font-weight: 800;
  line-height: 1.15;
  margin: 0;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin-bottom: 14px; }

p { margin: 0 0 1em; }

a { color: inherit; }

.section-label {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
}

.section-label--light { color: rgba(255, 255, 255, 0.75); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-bright);
  margin-bottom: 16px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease;
  cursor: pointer;
}

.btn--accent {
  background: var(--accent);
  color: #fff;
}

.btn--accent:hover { background: var(--accent-dark); }

.btn--outline {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}

.btn--outline:hover { background: var(--ink); color: #fff; }

.btn--lg { padding: 15px 30px; font-size: 0.95rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.1rem;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.nav__brand span { color: var(--accent); }

.logo-badge {
  display: block;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--accent-bright);
  background: #fff;
  flex-shrink: 0;
}

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

.nav__brand .logo-badge { width: 40px; height: 40px; }

.nav__call { padding: 10px 18px; font-size: 0.78rem; }

/* Hero */
.hero {
  position: relative;
  color: #fff;
  padding: 90px 0 76px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.78) 45%, rgba(10,10,10,0.35) 100%);
}

.hero__inner { position: relative; max-width: 760px; }

.hero h1 { color: #fff; margin-bottom: 20px; }

.hero__lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  margin-bottom: 32px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero .btn--outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.hero .btn--outline:hover { background: #fff; color: var(--ink); }

/* About */
.about { padding: 70px 0 10px; max-width: 760px; }

.about__text { font-size: 1.05rem; color: var(--ink-soft); }

/* Services */
.services { padding: 60px 0; }

.services__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.service-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
  font-weight: 700;
  font-size: 1rem;
  border-left: 4px solid var(--accent-bright);
}

/* About badge + gallery */
.about__row {
  display: flex;
  align-items: center;
  gap: 24px;
}

.about .logo-badge { width: 72px; height: 72px; }

.gallery { padding: 0 0 60px; }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.gallery__grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

/* Callout */
.callout {
  background: var(--ink);
  color: #fff;
  padding: 60px 0;
}

.callout__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: start;
}

.callout h2 { color: #fff; font-size: 1.4rem; }

.callout p { color: rgba(255, 255, 255, 0.75); margin: 0; }

.callout__divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
  align-self: stretch;
}

/* Contact */
.contact { padding: 70px 0 90px; }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  margin-top: 30px;
}

.contact__details p { margin-bottom: 24px; font-size: 1rem; }

.contact__details a {
  color: var(--accent-dark);
  font-weight: 700;
  text-decoration: none;
  font-size: 1.2rem;
}

.contact__form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}

.field { margin-bottom: 18px; }

.field label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--ink-soft);
  margin-bottom: 6px;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 11px 12px;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fff;
  color: var(--ink);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.map {
  margin-top: 30px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}

.map iframe {
  display: block;
  width: 100%;
  height: 340px;
  border: 0;
}

.form-error { color: #c0392b; font-size: 0.9rem; }

.form-success { color: #1e7d3c; font-size: 0.9rem; }

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 28px 0;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer__inner a { color: #fff; text-decoration: none; font-weight: 700; }

.footer__links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer__social {
  display: inline-flex;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.15s ease;
}

.footer__social:hover { color: var(--accent-bright); }

@media (max-width: 760px) {
  .contact__grid { grid-template-columns: 1fr; }
  .callout__inner { grid-template-columns: 1fr; }
  .callout__divider { display: none; }
}
