:root {
  --color-bg: #f7f7f4;
  --color-surface: #ffffff;
  --color-muted: #e8e8e7;
  --color-text: #111111;
  --color-text-muted: #555555;
  --color-border: #dddddd;
  --color-green: #16824a;
  --color-green-dark: #0f6337;
  --color-focus: #0b6fc6;
  --shadow-soft: 0 18px 44px rgba(17, 17, 17, 0.07);
  --radius: 14px;
  --container: 1200px;
  --header-height: 82px;
  --font-body: "Inter", Arial, sans-serif;
  --font-heading: "Barlow", "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

a:hover {
  color: var(--color-green);
}

a,
button,
input,
select,
textarea {
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 4px;
}

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

h1,
h2,
h3 {
  font-family: var(--font-heading);
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.15rem, 5.2vw, 3.65rem);
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.025em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 5vw, 3.1rem);
  font-weight: 700;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

p {
  color: var(--color-text-muted);
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.narrow {
  max-width: 820px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--color-text);
  color: #ffffff;
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hidden {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(221, 221, 221, 0.85);
  background: rgba(247, 247, 244, 0.96);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 12px;
}

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

.brand-logo {
  width: 154px;
  height: auto;
}

.mobile-call {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 15px;
  border: 1px solid var(--color-green);
  border-radius: 999px;
  background: var(--color-green);
  color: #ffffff;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.mobile-call:hover {
  background: var(--color-green-dark);
  border-color: var(--color-green-dark);
  color: #ffffff;
}

.site-nav {
  position: absolute;
  inset: var(--header-height) 16px auto 16px;
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

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

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 12px;
  border-radius: 10px;
  color: var(--color-text);
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--color-green);
  background: rgba(22, 130, 74, 0.08);
}

.nav-toggle {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: #ffffff;
  color: var(--color-text);
  cursor: pointer;
}

.nav-toggle:hover {
  border-color: var(--color-green);
}

.nav-toggle-line {
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid var(--color-green);
  border-radius: 999px;
  background: var(--color-green);
  color: #ffffff;
  font: inherit;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
}

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

.button:active {
  transform: translateY(0);
}

.button:disabled,
.button[aria-disabled="true"] {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.button-secondary {
  background: #ffffff;
  color: var(--color-text);
}

.button-secondary:hover {
  background: var(--color-text);
  border-color: var(--color-text);
  color: #ffffff;
}

.button-small {
  min-height: 42px;
  padding: 11px 17px;
  color: #ffffff;
}

.button-group,
.button-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button-stack {
  align-items: stretch;
  flex-direction: column;
  margin-top: 26px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 48px 0 44px;
  background: linear-gradient(180deg, #ffffff 0%, var(--color-bg) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -12vw;
  bottom: -70px;
  width: 62vw;
  height: 150px;
  background: rgba(22, 130, 74, 0.08);
  transform: skewY(-5deg);
  transform-origin: left bottom;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 34px;
  align-items: center;
}

.hero-text {
  max-width: 620px;
  margin-bottom: 28px;
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  line-height: 1.65;
}

.hero-media {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-muted);
  box-shadow: var(--shadow-soft);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.eyebrow {
  display: inline-flex;
  position: relative;
  width: fit-content;
  margin-bottom: 16px;
  color: var(--color-green);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 42px;
  height: 3px;
  background: var(--color-green);
  transform: skewX(-26deg);
}

.trust-strip {
  padding: 18px 0;
  border-block: 1px solid var(--color-border);
  background: #ffffff;
}

.trust-grid {
  display: grid;
  gap: 12px;
}

.trust-grid div {
  display: grid;
  gap: 2px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
}

.trust-grid div:last-child {
  border-bottom: 0;
}

.trust-grid strong {
  font-size: 0.95rem;
}

.trust-grid span {
  color: var(--color-text-muted);
}

.section {
  padding: 76px 0;
}

.section-muted {
  background: var(--color-muted);
}

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

.section-heading-row {
  display: grid;
  max-width: none;
  gap: 18px;
  align-items: end;
}

.card-grid,
.project-grid,
.service-list {
  display: grid;
  gap: 18px;
}

.service-card,
.value-card,
.contact-panel,
.quote-form-section {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #ffffff;
}

.service-card,
.value-card {
  padding: 24px;
}

.service-card {
  min-height: 100%;
}

.service-card p,
.value-card p {
  margin-bottom: 20px;
}

.audience-card {
  display: grid;
  gap: 18px;
  align-content: start;
}

.audience-card p {
  margin-bottom: 0;
}

.audience-card .button {
  width: fit-content;
}

.service-note {
  padding-left: 14px;
  border-left: 3px solid var(--color-green);
  color: #3f3f3f;
}

.service-card-large {
  display: grid;
  gap: 12px;
}

.service-card-large h2 {
  margin-bottom: 0;
  font-size: 1.45rem;
}

.service-card-large .button {
  width: fit-content;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  color: var(--color-green);
  font-weight: 800;
}

.text-link::after {
  content: "";
  width: 24px;
  height: 2px;
  background: currentColor;
  transform: skewX(-26deg);
}

.text-link:hover {
  color: var(--color-green-dark);
}

.split {
  display: grid;
  gap: 34px;
}

.feature-list {
  display: grid;
  gap: 18px;
}

.feature-list article {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 16px;
}

.feature-list p,
.feature-list h3 {
  margin-bottom: 0;
}

.feature-mark {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  border: 5px solid #ffffff;
  border-radius: 999px;
  background: var(--color-green);
  box-shadow: 0 0 0 1px rgba(22, 130, 74, 0.35);
}

.project-card {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #ffffff;
}

.project-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--color-muted);
}

.project-card div {
  padding: 22px;
}

.project-card h2,
.project-card h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

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

.project-meta {
  margin-bottom: 8px;
  color: var(--color-green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.final-cta {
  padding-top: 0;
}

.cta-panel {
  display: grid;
  gap: 24px;
  align-items: center;
  padding: 30px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.cta-panel h2 {
  font-size: clamp(1.8rem, 5vw, 2.7rem);
}

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

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 3.5rem;
  background: #ffffff;
  border-bottom: 1px solid var(--color-border);
}

.page-hero .container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.page-hero-content {
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 760px;
  font-size: clamp(2.15rem, 5.2vw, 3.65rem);
  font-family: var(--font-heading);
  line-height: 1.03;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.hero-title,
.section-title {
  font-family: var(--font-heading);
}

.page-hero-content > p:not(.eyebrow) {
  max-width: 640px;
  margin-top: 1.4rem;
  margin-bottom: 0;
  font-size: clamp(1rem, 1.5vw, 1.08rem);
  line-height: 1.65;
}

.prose p {
  font-size: 1.04rem;
}

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

.contact-grid {
  display: grid;
  gap: 22px;
}

.contact-panel,
.quote-form-section {
  padding: 24px;
}

.contact-panel h2,
.quote-form-section h2 {
  margin-bottom: 20px;
  font-size: 1.55rem;
}

dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

dt {
  color: var(--color-text-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

dd {
  margin: 3px 0 0;
  font-weight: 700;
}

.contact-entry {
  display: grid;
  gap: 4px;
}

.contact-name {
  color: var(--color-text);
}

.contact-entry a {
  width: fit-content;
  color: var(--color-text);
}

.contact-entry a:hover {
  color: var(--color-green);
}

.contact-person {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--color-border);
}

.contact-person:first-of-type {
  padding-top: 0;
}

.contact-person:last-of-type {
  border-bottom: 0;
}

.contact-person h3 {
  margin-bottom: 0.35rem;
}

.contact-person > a {
  display: block;
  width: fit-content;
  color: var(--color-text);
  font-weight: 700;
}

.contact-person > a:hover {
  color: var(--color-green);
}

.contact-role {
  margin-bottom: 0.35rem;
  color: var(--color-text-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  margin-top: 1rem;
}

.contact-actions .btn-email {
  width: 100%;
}

.contact-actions .btn-call {
  min-width: 7rem;
  white-space: nowrap;
}

.business-details {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border);
}

.quote-form,
#quote-form {
  display: grid;
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 7px;
}

label {
  color: var(--color-text);
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: #ffffff;
  color: var(--color-text);
  font: inherit;
}

input,
select {
  min-height: 48px;
  padding: 10px 12px;
}

textarea {
  min-height: 150px;
  resize: vertical;
  padding: 12px;
}

input:hover,
select:hover,
textarea:hover {
  border-color: #b8b8b8;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--color-green);
  box-shadow: 0 0 0 4px rgba(22, 130, 74, 0.12);
}

.form-actions {
  display: grid;
  gap: 12px;
}

.form-actions .button {
  width: fit-content;
}

.form-actions p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.form-note {
  max-width: 620px;
  padding: 12px 14px;
  border: 1px solid rgba(22, 130, 74, 0.2);
  border-radius: 12px;
  background: rgba(22, 130, 74, 0.07);
  color: #2f4f3d;
}

.site-footer {
  padding: 48px 0 26px;
  border-top: 1px solid var(--color-border);
  background: #111111;
  color: #ffffff;
}

.site-footer p,
.site-footer span {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a {
  display: block;
  width: fit-content;
  color: rgba(255, 255, 255, 0.84);
}

.site-footer a:hover {
  color: #ffffff;
}

.footer-grid {
  display: grid;
  gap: 30px;
}

.footer-logo {
  width: 132px;
  height: auto;
  margin-bottom: 18px;
  padding: 8px;
  border-radius: 10px;
  background: #ffffff;
}

.site-footer h2 {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 0.95rem;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.92rem;
}

@media (min-width: 640px) {
  .container {
    width: min(100% - 2rem, var(--container));
  }

  .trust-grid,
  .card-grid.two,
  .card-grid.three,
  .gallery-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-grid div {
    padding: 18px 20px;
    border-right: 1px solid var(--color-border);
    border-bottom: 0;
  }

  .trust-grid div:nth-child(2n) {
    border-right: 0;
  }

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

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

  .form-field-full,
  .form-actions {
    grid-column: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

@media (min-width: 860px) {
  .hero {
    padding: 68px 0 64px;
  }

  .hero-grid,
  .split,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .hero-copy {
    padding: 26px 0;
  }

  .section-heading-row,
  .cta-panel {
    grid-template-columns: 1fr auto;
  }

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

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

@media (min-width: 980px) {
  .header-inner {
    gap: 24px;
  }

  .brand-logo {
    width: 172px;
  }

  .mobile-call {
    display: none;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav a {
    min-height: 42px;
  }

  .site-nav .button {
    margin-left: 6px;
    color: #ffffff;
  }

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

  .trust-grid div:nth-child(2n) {
    border-right: 1px solid var(--color-border);
  }

  .trust-grid div:last-child {
    border-right: 0;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: clamp(2rem, 11vw, 3rem);
    line-height: 1.08;
  }
}

@media (max-width: 420px) {
  .button,
  .button-secondary {
    width: 100%;
  }

  .site-nav .button {
    width: 100%;
  }

  .cta-panel {
    padding: 24px;
  }
}

@media (max-width: 560px) {
  .contact-actions {
    grid-template-columns: 1fr;
  }

  .contact-actions .btn-call {
    width: 100%;
  }
}
