:root {
  color-scheme: light;
  --ink: #14201b;
  --muted: #58655f;
  --surface: #f7faf5;
  --panel: #ffffff;
  --green: #0f5c45;
  --green-strong: #073e30;
  --leaf: #63b96b;
  --line: #d9e4dc;
  --wood: #a97946;
  --shadow: 0 22px 60px rgba(13, 43, 34, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 115px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(99, 185, 107, 0.12), rgba(255, 255, 255, 0) 260px),
    var(--surface);
}

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(247, 250, 245, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15, 92, 69, 0.12);
}

.brand,
.topbar nav,
.hero-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
  color: var(--green-strong);
}

.brand-logo {
  display: block;
  width: min(220px, 48vw);
  height: 58px;
  object-fit: contain;
  object-position: left center;
}

.topbar nav {
  gap: clamp(12px, 3vw, 28px);
  color: var(--muted);
  font-size: 0.96rem;
}

.topbar nav a {
  text-decoration: none;
}

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

.hero,
.section,
.content-section,
.process-band,
.sms-section,
.contact-section,
.site-footer,
.legal-page {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  min-height: min(760px, calc(100svh - 72px));
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(290px, 0.52fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  padding: clamp(52px, 9vw, 112px) 0 54px;
}

.hero-copy h1,
.section-heading h2,
.content-section h2,
.process-band h2,
.sms-section h2,
.contact-copy h2 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
  color: var(--green-strong);
}

.hero-copy h1 {
  max-width: 760px;
  font-size: clamp(2.8rem, 7.4vw, 6.2rem);
}

.lead {
  max-width: 690px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.6;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--wood);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid var(--green);
  font: inherit;
  overflow-wrap: anywhere;
  text-align: center;
  max-width: 100%;
}

.button.primary {
  color: #fff;
  background: var(--green);
}

.button.secondary {
  color: var(--green-strong);
  background: transparent;
}

.contact-card {
  padding: clamp(22px, 4vw, 34px);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-card p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.55;
}

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

.contact-card a {
  color: var(--green);
  font-weight: 800;
  word-break: break-word;
}

.card-title {
  color: var(--green-strong) !important;
  font-size: 1.55rem;
  font-weight: 900;
}

.hero-logo {
  display: block;
  width: 100%;
  max-width: 360px;
  height: auto;
  margin: 0 0 18px;
}

.section {
  padding: 28px 0 82px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.section-heading h2,
.content-section h2,
.process-band h2,
.sms-section h2,
.contact-copy h2 {
  font-size: clamp(2rem, 5vw, 4.3rem);
}

.section-heading.stacked {
  display: block;
  max-width: 760px;
}

.section-heading.stacked p:last-child {
  color: var(--muted);
  line-height: 1.6;
  margin: 16px 0 0;
}

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

.service-card {
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(18, 56, 44, 0.08);
}

.service-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

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

.service-card h3 {
  margin: 0 0 10px;
  font-size: 1.22rem;
  color: var(--green-strong);
}

.service-card p,
.detail-panel li,
.process-band span,
.sms-copy p,
.contact-copy p,
.card-photo figcaption {
  color: var(--muted);
  line-height: 1.6;
}

.service-card p {
  margin: 0;
}

.content-section {
  padding: 12px 0 72px;
}

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

.detail-panel {
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(18, 56, 44, 0.07);
}

.detail-panel h3 {
  margin: 0 0 14px;
  color: var(--green-strong);
  font-size: 1.28rem;
}

.detail-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.detail-panel li {
  padding-left: 2px;
}

.process-band {
  display: flex;
  justify-content: center;
  padding: clamp(32px, 5vw, 54px);
  margin-bottom: 78px;
  background: #fffaf2;
  border: 1px solid #ecd9bf;
  border-radius: 8px;
}

.steps {
  width: min(860px, 100%);
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 46px minmax(0, 0.35fr) minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(169, 121, 70, 0.2);
  border-radius: 6px;
}

.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: #fff;
  background: var(--wood);
  border-radius: 10px;
}

.step-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-icon circle {
  fill: currentColor;
  stroke: none;
}

.steps strong {
  color: var(--green-strong);
}

.sms-section {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: start;
  padding: 0 0 82px;
}

.sms-copy {
  position: sticky;
  top: 100px;
}

.sms-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 30px);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.sms-form label {
  display: grid;
  gap: 8px;
  color: var(--green-strong);
  font-weight: 800;
}

.sms-form input,
.sms-form select,
.sms-form textarea {
  width: 100%;
  border: 1px solid #c8d8cf;
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfdfb;
  font: inherit;
  font-size: 1rem;
}

.sms-form textarea {
  resize: vertical;
  min-height: 120px;
}

.sms-form input:focus,
.sms-form select:focus,
.sms-form textarea:focus {
  outline: 3px solid rgba(99, 185, 107, 0.26);
  border-color: var(--green);
}

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

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(300px, 0.64fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
  padding: 88px 0;
}

.card-photo {
  margin: 0;
}

.card-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.card-photo figcaption {
  margin-top: 10px;
  font-size: 0.92rem;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 20px clamp(26px, 5vw, 58px);
  padding: 28px 0 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
  line-height: 1.55;
}

.footer-title {
  margin-bottom: 6px !important;
  color: var(--green-strong);
  font-weight: 900;
}

.footer-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-legal {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 0;
}

.footer-legal dt {
  color: var(--wood);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-legal dd {
  margin: 2px 0 0;
  color: var(--green-strong);
  font-weight: 800;
}

.site-credit {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 24px;
  margin-top: 4px !important;
  padding-top: 14px;
  border-top: 1px solid rgba(15, 92, 69, 0.1);
  color: #79857f;
  font-size: 0.86rem;
}

.site-credit a {
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}

.site-credit a:hover {
  text-decoration: underline;
}

.legal-page {
  padding: clamp(42px, 7vw, 82px) 0 76px;
}

.legal-hero {
  max-width: 760px;
  margin-bottom: 34px;
}

.legal-hero h1 {
  margin: 0;
  color: var(--green-strong);
  font-size: clamp(2.5rem, 7vw, 5.4rem);
  line-height: 1.02;
}

.legal-hero p:last-child {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

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

.legal-content article {
  padding: clamp(20px, 3vw, 28px);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(18, 56, 44, 0.07);
}

.legal-content h2 {
  margin: 0 0 14px;
  color: var(--green-strong);
  font-size: 1.28rem;
}

.legal-content p {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.65;
}

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

.legal-content a {
  color: var(--green);
  font-weight: 800;
}

.legal-page-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.legal-page-list div {
  padding: 12px;
  background: #f7faf5;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.legal-page-list dt {
  color: var(--wood);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.legal-page-list dd {
  margin: 3px 0 0;
  color: var(--green-strong);
  font-weight: 800;
}


@media (max-width: 860px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .sms-section,
  .contact-section,
  .site-footer,
  .legal-content {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .details-grid {
    grid-template-columns: 1fr;
  }

  .sms-copy {
    position: static;
  }

  .service-card {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
  }

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

@media (max-width: 560px) {
  .topbar nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero,
  .section,
  .content-section,
  .process-band,
  .sms-section,
  .contact-section,
  .site-footer,
  .legal-page {
    width: min(100% - 28px, 1180px);
  }

  .hero-copy h1 {
    font-size: 2.7rem;
  }

  .service-card,
  .steps li,
  .footer-legal {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }
}

/* Production: keyboard navigation, contrast and narrow screens. */
:root { --wood: #875b2e; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--green); outline-offset: 4px; }
.skip-link { position: fixed; left: 12px; top: -100px; z-index: 20; background: white; padding: 12px 18px; }
.skip-link:focus { top: 12px; }
.topbar nav { flex-wrap: wrap; }
.hero-actions, .hero-copy, .contact-copy, .sms-form { min-width: 0; }
.hero-actions { width: 100%; }
.button { font-weight: 800; }
.site-credit { color: #58655f; }
.process-band .step-icon { color: white; }
.form-help { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.6; }
.content-section h2.eyebrow { font-size: .84rem; line-height: 1.5; letter-spacing: .08em; color: var(--wood); }
@media (max-width: 860px) {
  html { scroll-padding-top: 165px; }
  .section-heading { flex-direction: column; align-items: flex-start; gap: 8px; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
