:root {
  --green-950: #0e241c;
  --green-900: #14352a;
  --green-800: #1b4636;
  --green-700: #235744;
  --leaf: #7fa66a;
  --leaf-soft: #dfe8d3;
  --cream: #f5f3ea;
  --paper: #fdfcf8;
  --ink: #20281f;
  --muted: #55605a;
  --line: #e3ded0;
  --accent: #b4551f;
  --accent-deep: #93431a;
  --error: #a52a1e;
  --font-serif: Georgia, "Times New Roman", serif;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --container: 1160px;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(14, 36, 28, 0.08);
  --shadow-md: 0 6px 24px rgba(14, 36, 28, 0.12);
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4.5rem;
  --header-h: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 12px);
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.18;
  color: var(--green-900);
  margin: 0 0 var(--space-4);
  text-wrap: balance;
}

h1 {
  font-size: clamp(1.9rem, 5.4vw, 3.15rem);
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(1.55rem, 3.6vw, 2.35rem);
}

h3 {
  font-size: clamp(1.12rem, 2vw, 1.32rem);
}

p {
  margin: 0 0 var(--space-4);
}

ul,
ol,
dl,
figure,
blockquote,
address {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

a {
  color: var(--green-700);
  text-decoration-thickness: from-font;
  text-underline-offset: 3px;
}

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

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.section {
  padding-block: clamp(3.5rem, 8vw, 6rem);
}

.section-alt {
  background: var(--cream);
}

.section-dark {
  background: var(--green-900);
  color: var(--leaf-soft);
}

.section-dark h2,
.section-dark h3 {
  color: var(--paper);
}

.skip-link {
  position: absolute;
  left: var(--space-4);
  top: -60px;
  z-index: 200;
  background: var(--green-900);
  color: #fff;
  padding: 0.7rem 1.1rem;
  border-radius: 0 0 var(--radius) var(--radius);
  font-weight: 600;
  transition: top 0.15s ease-in-out;
}

.skip-link:focus {
  top: 0;
  color: #fff;
}

.eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-3);
}

.section-head {
  max-width: 46rem;
  margin-bottom: clamp(2rem, 5vw, 3.25rem);
}

.section-head p:last-child {
  color: var(--muted);
  font-size: 1.06rem;
}

.section-footnote {
  margin-top: var(--space-6);
  color: var(--muted);
}

.fine-print {
  font-size: 0.84rem;
  color: var(--muted);
  margin-top: var(--space-5);
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  min-height: 48px;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

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

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

.btn-ghost {
  border-color: var(--green-900);
  color: var(--green-900);
  background: transparent;
}

.btn-ghost:hover {
  background: var(--green-900);
  color: #fff;
}

.btn-light {
  background: var(--cream);
  color: var(--green-950);
}

.btn-light:hover {
  background: #fff;
  color: var(--green-950);
}

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

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.btn-small {
  padding: 0.6rem 1.15rem;
  min-height: 42px;
  font-size: 0.94rem;
}

.btn-block {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  min-height: var(--header-h);
  display: flex;
  align-items: center;
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-md);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.brand-mark {
  width: 40px;
  height: 40px;
  flex: none;
}

.brand-mark rect {
  fill: var(--green-900);
}

.brand-mark path {
  fill: var(--leaf);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--green-900);
}

.brand-tagline {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.brand-footer .brand-name {
  color: var(--paper);
}

.site-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  padding: var(--space-4) clamp(1rem, 4vw, 2rem) var(--space-5);
  display: none;
}

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

.nav-list li + li {
  border-top: 1px solid var(--line);
}

.nav-list a {
  display: block;
  padding: 0.8rem 0.25rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--ink);
}

.nav-list a:hover {
  color: var(--accent-deep);
}

.nav-list a[aria-current="location"] {
  color: var(--accent-deep);
}

.nav-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--line);
}

.phone-link {
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: 2px solid var(--line);
  border-radius: 8px;
  padding: 0.5rem 0.8rem;
  min-height: 48px;
  font: inherit;
  font-weight: 600;
  color: var(--green-900);
  cursor: pointer;
}

.menu-toggle-box {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  width: 22px;
  height: 16px;
}

.menu-toggle-bar,
.menu-toggle-box::before,
.menu-toggle-box::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle-bar {
  margin: 3px auto;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-box::before {
  transform: translateY(5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-box::after {
  transform: translateY(-5px) rotate(-45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar {
  opacity: 0;
}

.hero {
  background: linear-gradient(180deg, var(--cream) 0%, var(--paper) 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
}

.hero-copy .lede {
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  color: var(--muted);
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.hero-points {
  display: grid;
  gap: 0.4rem;
  margin-top: var(--space-5);
  padding-left: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.hero-points li {
  position: relative;
  padding-left: 1.6rem;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.28em;
  width: 1rem;
  height: 1rem;
  background: var(--leaf-soft);
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px var(--green-700);
}

.hero-media {
  position: relative;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.hero-badge {
  position: absolute;
  left: clamp(0.75rem, 3vw, 1.5rem);
  bottom: clamp(0.75rem, 3vw, 1.5rem);
  background: var(--green-900);
  color: var(--paper);
  border-radius: var(--radius);
  padding: 0.7rem 1rem;
  line-height: 1.35;
  max-width: 16rem;
  box-shadow: var(--shadow-md);
}

.hero-badge strong {
  display: block;
  font-size: 1.05rem;
}

.trust-strip {
  background: var(--green-900);
  color: var(--leaf-soft);
  padding-block: var(--space-5);
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--space-4);
  text-align: center;
}

.trust-list strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--paper);
  line-height: 1.25;
}

.trust-list span {
  font-size: 0.86rem;
  opacity: 0.85;
}

.services-list {
  display: grid;
  gap: 0;
  counter-reset: none;
  border-top: 1px solid var(--line);
}

.service-item {
  border-bottom: 1px solid var(--line);
}

.service-item article {
  padding-block: var(--space-5);
}

.service-head {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  margin-bottom: 0.6rem;
}

.service-num {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--accent);
  flex: none;
}

.service-item h3 {
  margin-bottom: 0.4rem;
}

.service-item p:not(.service-note) {
  color: var(--muted);
  max-width: 38rem;
}

.service-note {
  display: inline-block;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--green-700);
  background: var(--leaf-soft);
  border-radius: 999px;
  padding: 0.25rem 0.85rem;
}

.about-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.about-media {
  position: relative;
  max-width: 30rem;
}

.about-media > img:first-child {
  width: 88%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.about-media-inset {
  position: absolute;
  right: 0;
  bottom: -2rem;
  width: 56%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  border: 5px solid var(--paper);
  box-shadow: var(--shadow-md);
}

.about-copy > .btn {
  margin-top: var(--space-2);
}

.why-grid {
  display: grid;
  gap: var(--space-6);
}

.why-card {
  border-top: 3px solid var(--leaf);
  padding-top: var(--space-4);
}

.why-card h3 {
  margin-bottom: 0.5rem;
}

.why-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.projects-grid {
  display: grid;
  gap: var(--space-5);
}

.project-card {
  background: var(--green-800);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}

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

.project-card-tall img {
  aspect-ratio: 4 / 5;
  height: 100%;
}

.project-body {
  padding: var(--space-5);
}

.project-meta {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--leaf);
  margin-bottom: 0.5rem;
}

.project-body h3 {
  color: var(--paper);
  margin-bottom: 0.5rem;
}

.project-body p:last-child {
  margin-bottom: 0;
  color: var(--leaf-soft);
  font-size: 0.96rem;
}

.testimonial-grid {
  display: grid;
  gap: var(--space-5);
}

.testimonial {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2rem);
  box-shadow: var(--shadow-sm);
}

.testimonial::before {
  content: "\201C";
  position: absolute;
  top: 0.35rem;
  right: 1.1rem;
  font-family: var(--font-serif);
  font-size: 4rem;
  line-height: 1;
  color: var(--leaf-soft);
}

.testimonial p {
  font-family: var(--font-serif);
  font-size: 1.06rem;
  line-height: 1.55;
  color: var(--ink);
}

.testimonial cite {
  font-style: normal;
  font-size: 0.92rem;
  color: var(--muted);
}

.testimonial cite strong {
  color: var(--green-900);
}

.areas-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.areas-copy p {
  color: var(--muted);
  max-width: 36rem;
}

.areas-list h3 {
  margin-top: var(--space-5);
  margin-bottom: var(--space-3);
  padding-bottom: var(--space-2);
  border-bottom: 2px solid var(--line);
}

.areas-list h3:first-of-type {
  margin-top: 0;
}

.areas-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.areas-list li {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.3rem 0.95rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--green-800);
}

.cta-band {
  background: var(--accent);
  color: #fff;
  padding-block: clamp(2.5rem, 6vw, 3.75rem);
}

.cta-inner {
  display: grid;
  gap: var(--space-5);
}

.cta-inner h2 {
  color: #fff;
  margin-bottom: 0.4rem;
}

.cta-inner p {
  margin-bottom: 0;
  max-width: 38rem;
  opacity: 0.94;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-content: start;
}

.contact-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.contact-info > p {
  color: var(--muted);
  max-width: 32rem;
}

.contact-details {
  display: grid;
  gap: var(--space-4);
  margin-top: var(--space-5);
}

.contact-details dt {
  font-weight: 700;
  color: var(--green-900);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.15rem;
}

.contact-details dd {
  margin: 0;
}

.quote-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 4vw, 2.25rem);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: var(--space-4);
}

.form-row {
  display: grid;
  gap: var(--space-4);
}

.form-field label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid #cfc9b8;
  border-radius: var(--radius);
  padding: 0.75rem 0.9rem;
  min-height: 48px;
}

.form-field textarea {
  resize: vertical;
  min-height: 130px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 3px solid var(--leaf);
  outline-offset: 1px;
  border-color: var(--green-700);
}

.form-field input[aria-invalid="true"],
.form-field select[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
  border-color: var(--error);
}

.field-hint {
  font-size: 0.84rem;
  color: var(--muted);
  margin: 0.3rem 0 0;
}

.field-error {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--error);
  margin: 0.3rem 0 0;
  min-height: 0;
}

.field-error:empty {
  display: none;
}

.form-status {
  font-weight: 600;
  margin: 0;
  text-align: center;
}

.form-status.is-success {
  color: var(--green-700);
}

.form-status.is-error {
  color: var(--error);
}

.faq-container {
  max-width: 50rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  margin-bottom: var(--space-3);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--green-900);
  padding: 1.05rem 3rem 1.05rem 1.25rem;
  position: relative;
  min-height: 48px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "\2212";
}

.faq-item summary:hover {
  color: var(--accent-deep);
}

.faq-item > p {
  padding: 0 1.25rem 1.25rem;
  margin: 0;
  color: var(--muted);
}

.site-footer {
  background: var(--green-950);
  color: var(--leaf-soft);
  margin-top: 0;
}

.footer-grid {
  display: grid;
  gap: var(--space-6);
  padding-block: clamp(2.5rem, 6vw, 4rem);
}

.footer-brand p {
  font-size: 0.95rem;
  max-width: 22rem;
  margin-top: var(--space-4);
}

.footer-phone a {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--paper);
  text-decoration: none;
}

.footer-phone a:hover {
  color: var(--leaf);
}

.footer-heading {
  font-size: 0.85rem;
  font-family: var(--font-sans);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--leaf);
  margin-bottom: var(--space-4);
}

.footer-col ul {
  display: grid;
  gap: 0.55rem;
}

.footer-col a {
  color: var(--leaf-soft);
  text-decoration: none;
}

.footer-col a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-col address {
  font-style: normal;
  display: grid;
  gap: var(--space-3);
  font-size: 0.95rem;
}

.footer-areas {
  margin-top: var(--space-4);
  font-size: 0.9rem;
}

.footer-areas strong {
  color: var(--leaf);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-block: var(--space-4);
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  font-size: 0.85rem;
}

.footer-bottom-inner p {
  margin: 0;
}

.footer-bottom-inner a {
  color: var(--leaf-soft);
}

@media (min-width: 480px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (min-width: 640px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-card-wide {
    grid-column: span 2;
  }

  .project-card-wide img {
    aspect-ratio: 21 / 9;
  }
}

@media (min-width: 768px) {
  .trust-list {
    text-align: left;
    gap: var(--space-5);
  }

  .services-list {
    grid-template-columns: repeat(2, 1fr);
    column-gap: clamp(2rem, 5vw, 3.5rem);
  }

  .service-item:nth-last-child(-n + 1):not(.service-item-wide) {
    border-bottom: 0;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6) var(--space-7);
  }

  .areas-list {
    column-count: 1;
  }
}

@media (min-width: 900px) {
  :root {
    --header-h: 84px;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: block !important;
    background: none;
    border: 0;
    box-shadow: none;
    padding: 0;
  }

  .nav-list {
    display: flex;
    align-items: center;
    gap: clamp(0.9rem, 1.6vw, 1.6rem);
  }

  .nav-list li + li {
    border-top: 0;
  }

  .nav-list a {
    padding: 0.35rem 0;
    font-size: 0.97rem;
  }

  .nav-list a[aria-current="location"] {
    box-shadow: inset 0 -3px 0 var(--accent);
  }

  .nav-actions {
    margin: 0;
    padding: 0;
    border: 0;
  }

  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .hero-media img {
    aspect-ratio: 5 / 4;
  }

  .about-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

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

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

  .project-card-tall {
    grid-row: span 2;
  }

  .project-card-wide {
    grid-column: span 2;
  }

  .cta-inner {
    grid-template-columns: 1.2fr auto;
    align-items: center;
  }

  .contact-grid {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: start;
  }

  .areas-grid {
    grid-template-columns: 1fr 1.1fr;
    align-items: start;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1.2fr 1.3fr;
  }
}

@media (min-width: 1200px) {
  .hero-grid {
    padding-block: 5rem;
  }
}

@media print {
  .site-header,
  .cta-band,
  .quote-form,
  .skip-link,
  .menu-toggle {
    display: none !important;
  }
}
