:root {
  --ink: #172016;
  --muted: #5d675d;
  --line: #dfe7dc;
  --soft: #f5f8f1;
  --accent: #2f6b3f;
  --accent-dark: #244f31;
  --accent-light: #e7f2e4;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

a {
  color: var(--accent-dark);
}

a:hover,
a:focus {
  color: var(--accent);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 10;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: var(--white);
}

.skip-link:focus {
  left: 0;
}

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

.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.topbar {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  color: var(--ink);
  text-decoration: none;
}

.brand-name {
  font-size: clamp(2.15rem, 3vw, 3rem);
  font-weight: 800;
  line-height: 1;
}

.brand-tagline {
  color: var(--muted);
  font-size: 1rem;
}

.header-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.55rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem;
}

.nav a {
  border-radius: 6px;
  padding: 0.55rem 0.75rem;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.nav a:hover,
.nav a:focus,
.nav a[aria-current="page"] {
  background: var(--accent-light);
  color: var(--accent-dark);
}

.header-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem 0.85rem;
  color: var(--accent-dark);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.25;
}

.header-contact a {
  color: var(--accent-dark);
  text-decoration: none;
  white-space: nowrap;
}

.header-contact a:hover,
.header-contact a:focus {
  text-decoration: underline;
}

.hero {
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: 2rem;
  align-items: center;
  padding: 3.5rem 0;
}

.hero-image {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
}

.hero-image img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--accent-dark);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 1rem;
  line-height: 1.15;
}

h1 {
  max-width: 800px;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

p {
  margin: 0 0 1rem;
}

.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.2rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.button-row.center {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 2px solid var(--accent);
  border-radius: 6px;
  padding: 0.65rem 1rem;
  background: var(--accent);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.button:hover,
.button:focus {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white);
}

.button.secondary {
  background: transparent;
  color: var(--accent-dark);
}

.button.secondary:hover,
.button.secondary:focus {
  background: var(--accent-light);
  color: var(--accent-dark);
}

.section {
  padding: 3.5rem 0;
}

.section.alt {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.section-header {
  max-width: 780px;
  margin-bottom: 1.75rem;
}

.service-list {
  columns: 2;
  max-width: 720px;
  margin: 1rem 0 0;
  padding-left: 1.25rem;
}

.service-list li {
  break-inside: avoid;
  margin-bottom: 0.35rem;
}

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

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

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.25rem;
  background: var(--white);
}

.card p:last-child {
  margin-bottom: 0;
}

.image-card {
  overflow: hidden;
  padding: 0;
}

.image-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.image-card div {
  padding: 1.25rem;
}

.callout {
  text-align: center;
}

.callout h2 {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: 2rem;
  align-items: start;
}

.contact-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.25rem;
  background: var(--soft);
}

.contact-row {
  margin-bottom: 1rem;
}

.contact-row strong {
  display: block;
}

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

.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.5rem 0;
  color: var(--muted);
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
}

@media (max-width: 760px) {
  .topbar {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 0.85rem;
    text-align: center;
  }

  .brand {
    align-items: center;
  }

  .brand-name {
    font-size: 2.45rem;
  }

  .header-actions {
    align-items: center;
    width: 100%;
  }

  .nav {
    justify-content: center;
  }

  .header-contact {
    justify-content: center;
    width: 100%;
  }

  .hero-grid,
  .contact-panel,
  .card-grid,
  .card-grid.three,
  .gallery {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding: 2.5rem 0;
  }

  .section {
    padding: 2.5rem 0;
  }

  .service-list {
    columns: 1;
  }
}