:root {
  --ink: #17211b;
  --muted: #5b665f;
  --paper: #fbfcf8;
  --surface: #ffffff;
  --line: #dfe7dd;
  --green: #1f6b43;
  --green-dark: #17492f;
  --clay: #a85835;
  --sun: #f1c453;
  --sky: #eaf3f8;
  --shadow: 0 16px 50px rgba(23, 33, 27, 0.14);
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 30;
  padding: 10px 14px;
  color: var(--surface);
  background: var(--green-dark);
  border-radius: 6px;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 252, 248, 0.93);
  border-bottom: 1px solid rgba(223, 231, 221, 0.8);
  backdrop-filter: blur(14px);
}

.nav-shell {
  width: min(var(--max-width), calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--surface);
  background: var(--green);
  border-radius: 8px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-menu a:not(.button):hover {
  color: var(--green-dark);
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.language-option {
  min-height: 34px;
  padding: 0 10px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 6px;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
}

.language-option.is-active {
  color: var(--surface);
  background: var(--green);
}

.language-option:focus-visible {
  outline: 2px solid var(--sun);
  outline-offset: 2px;
}

.menu-toggle {
  width: 42px;
  height: 42px;
  display: none;
  place-items: center;
  gap: 4px;
  padding: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  color: var(--surface);
  background: var(--green);
  border: 1px solid var(--green);
  border-radius: 8px;
  font-weight: 750;
  white-space: nowrap;
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease;
}

.button:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-1px);
}

.button-small {
  min-height: 40px;
  padding: 0 14px;
}

.button-quiet {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.72);
}

.button-quiet:hover {
  color: var(--surface);
}

.hero {
  position: relative;
  min-height: 690px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--green-dark);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 22, 15, 0.78), rgba(12, 22, 15, 0.3) 55%, rgba(12, 22, 15, 0.1)),
    linear-gradient(0deg, rgba(12, 22, 15, 0.52), rgba(12, 22, 15, 0.04) 56%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 90px;
  color: var(--surface);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--sun);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: 4.6rem;
  line-height: 0.98;
}

h2 {
  margin-bottom: 14px;
  font-size: 2.35rem;
  line-height: 1.08;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.quick-strip {
  width: min(var(--max-width), calc(100% - 32px));
  margin: -44px auto 0;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quick-strip div {
  min-height: 112px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.quick-strip div:last-child {
  border-right: 0;
}

.quick-strip strong,
.quick-strip span {
  display: block;
}

.quick-strip span {
  margin-top: 4px;
  color: var(--muted);
}

.section {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0;
}

.section-tight {
  padding-top: 78px;
}

.section-band {
  width: 100%;
  max-width: none;
  padding-right: max(16px, calc((100% - var(--max-width)) / 2));
  padding-left: max(16px, calc((100% - var(--max-width)) / 2));
  background: var(--sky);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow),
.contact-panel p,
.process-list span,
.service-card p,
.gallery-card p {
  color: var(--muted);
}

.section-heading-left {
  margin-bottom: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 184px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-card .service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: var(--surface);
  background: var(--green);
  border-radius: 8px;
  font-weight: 850;
  font-size: 0.9rem;
}

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

.gallery-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(23, 33, 27, 0.08);
  border-radius: 8px;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #dfe7dd;
}

.gallery-card div {
  padding: 18px;
}

.gallery-card .location {
  color: var(--clay);
  font-size: 0.86rem;
  font-weight: 800;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
  counter-reset: steps;
}

.process-list li {
  position: relative;
  min-height: 104px;
  padding: 22px 22px 22px 78px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  counter-increment: steps;
}

.process-list li::before {
  content: counter(steps);
  position: absolute;
  left: 22px;
  top: 22px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--surface);
  background: var(--clay);
  border-radius: 8px;
  font-weight: 850;
}

.process-list strong,
.process-list span {
  display: block;
}

.contact-section {
  padding: 92px 16px;
  background: var(--green-dark);
}

.contact-panel {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
  padding: 38px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 30px;
  align-items: center;
  color: var(--surface);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.contact-panel .eyebrow {
  color: var(--sun);
}

.contact-panel p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.82);
}

.contact-details {
  grid-column: 1 / -1;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr) minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 12px;
}

.contact-details div {
  min-height: 96px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.contact-details dt {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-details dd {
  margin: 0;
  overflow-wrap: anywhere;
  font-weight: 750;
}

.site-footer {
  padding: 28px 16px;
  color: var(--muted);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.site-footer p {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.site-footer strong {
  color: var(--ink);
}

@media (max-width: 900px) {
  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2rem;
  }

  .menu-toggle {
    display: grid;
  }

  .site-menu {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-menu.is-open {
    display: flex;
  }

  .site-menu a {
    padding: 12px;
  }

  .language-toggle {
    width: 100%;
    margin: 6px 0;
  }

  .language-option {
    flex: 1;
  }

  .site-menu .button {
    margin-top: 6px;
  }

  .quick-strip,
  .service-grid,
  .gallery-grid,
  .split-layout,
  .contact-panel,
  .contact-details {
    grid-template-columns: 1fr;
  }

  .quick-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-strip div:last-child {
    border-bottom: 0;
  }

  .contact-panel {
    padding: 28px;
  }
}

@media (max-width: 560px) {
  .nav-shell {
    width: min(100% - 24px, var(--max-width));
    min-height: 66px;
  }

  .brand small {
    display: none;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 620px;
  }

  .hero-content {
    width: min(100% - 24px, var(--max-width));
    padding-bottom: 76px;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  .hero-copy {
    font-size: 1.05rem;
  }

  .button {
    width: 100%;
  }

  .quick-strip,
  .section {
    width: min(100% - 24px, var(--max-width));
  }

  .section {
    padding: 68px 0;
  }

  .section-band {
    width: 100%;
    padding-right: 12px;
    padding-left: 12px;
  }

  .service-card,
  .gallery-card div,
  .process-list li {
    padding: 18px;
  }

  .process-list li {
    padding-left: 68px;
  }

  .process-list li::before {
    left: 18px;
    top: 18px;
  }

  .contact-section {
    padding: 68px 12px;
  }

  .contact-panel {
    padding: 22px;
  }
}
