:root {
  --bg: #f7f8f2;
  --paper: #ffffff;
  --ink: #172118;
  --muted: #697260;
  --line: rgba(23, 33, 24, 0.18);
  --green: #24563a;
  --green-2: #7aa23d;
  --warm: #c87935;
  --clay: #ead3bb;
  --shadow: 0 18px 46px rgba(23, 33, 24, 0.14);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.demo-bar {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 7px 18px;
  color: #f8fbf2;
  background: var(--green);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 32px;
  z-index: 19;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 14px 0;
  background: rgba(247, 248, 242, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 850;
  letter-spacing: 0;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
}

.brand span {
  white-space: nowrap;
}

.site-header nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
}

.site-header nav a,
.header-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: var(--radius);
}

.site-header nav a:hover {
  color: var(--ink);
  background: rgba(35, 90, 55, 0.08);
}

.header-cta {
  color: #fff;
  background: var(--green);
  font-weight: 800;
}

.hero {
  width: min(calc(100% - 32px), var(--max));
  min-height: auto;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: clamp(28px, 5vw, 66px);
  padding: clamp(44px, 8vw, 86px) 0 clamp(44px, 7vw, 86px);
}

.hero-copy {
  max-width: 690px;
}

.availability,
.section-index {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--warm);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.availability {
  margin: 0 0 18px;
}

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

h1 {
  max-width: 650px;
  margin-bottom: 20px;
  font-size: clamp(38px, 5.2vw, 64px);
  font-weight: 880;
  line-height: 1.03;
  letter-spacing: 0;
}

.lead {
  max-width: 610px;
  margin-bottom: 28px;
  color: #3c473a;
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.55;
}

.hero-actions,
.final-actions,
.modal-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 850;
  line-height: 1;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: #fff;
  background: var(--green);
  box-shadow: 0 16px 36px rgba(35, 90, 55, 0.22);
}

.button.primary:hover {
  background: #19462a;
}

.button.secondary {
  color: var(--green);
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(35, 90, 55, 0.22);
}

.button.dark {
  box-shadow: none;
}

.button.secondary.dark {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.42);
}

.trust-strip {
  display: grid;
  gap: 0;
  max-width: 640px;
  margin: 34px 0 0;
  border-top: 1px solid var(--line);
}

.trust-strip div {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 18px;
  min-height: auto;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.trust-strip dt {
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.trust-strip dd {
  margin: 0;
  font-size: 16px;
  font-weight: 850;
}

.hero-media {
  position: relative;
  min-height: 540px;
}

.hero-photo {
  width: min(100%, 510px);
  height: 540px;
  margin-left: auto;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero-logo {
  position: absolute;
  left: 0;
  bottom: 30px;
  width: min(54%, 250px);
  aspect-ratio: 1 / 1;
  padding: 10px;
  border: 8px solid var(--bg);
  border-radius: 50%;
  background: #b4e100;
  object-fit: cover;
  box-shadow: 0 14px 34px rgba(23, 33, 24, 0.18);
}

.section {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 96px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: clamp(18px, 4vw, 42px);
  align-items: start;
  margin-bottom: 34px;
}

.section-heading.narrow {
  max-width: 840px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 870;
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  background: transparent;
}

.services-grid article {
  min-height: 190px;
  padding: 28px 34px 28px 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.service-mark {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--warm);
  font-size: 14px;
  font-weight: 850;
}

.services-grid p,
.feature-copy p,
.info-grid p,
.final-cta p,
.quote-modal p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1fr);
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  overflow: hidden;
  border-radius: 6px;
  background: #172118;
  color: #f8fbf2;
}

.feature-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.feature-copy {
  padding: clamp(34px, 6vw, 70px);
  align-self: center;
}

.feature-copy h2 {
  margin: 12px 0 22px;
}

.feature-copy p,
.feature-copy .check-list {
  color: #cfd8c9;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  line-height: 1.55;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 2px;
  background: var(--warm);
}

.text-cta,
.mini-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  color: var(--green);
  font-weight: 850;
}

.feature-copy .text-cta {
  color: #fff;
  border-bottom: 2px solid var(--warm);
}

.work-section {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 100px) 0;
}

.work-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.78fr);
  gap: 18px;
  align-items: end;
}

.work-grid figure {
  margin: 0;
}

.work-grid figure:first-child {
  margin-top: 36px;
}

.work-grid img {
  width: 100%;
  height: clamp(390px, 48vw, 650px);
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 16px 34px rgba(23, 33, 24, 0.1);
}

.work-grid figure:last-child img {
  height: clamp(330px, 38vw, 530px);
}

figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.info-panel {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto clamp(76px, 9vw, 124px);
  padding: clamp(32px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fbfcf7;
  box-shadow: none;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--line);
}

.info-grid article {
  min-height: 210px;
  padding: 24px;
  background: #fff;
}

.info-grid a:not(.mini-link) {
  font-weight: 850;
}

.hours-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 15px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.hours-list span {
  color: var(--ink);
  font-weight: 850;
}

.fine-print {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px !important;
  line-height: 1.45 !important;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: clamp(34px, 5vw, 54px);
  border-radius: 6px;
  background: var(--green);
  color: #fff;
}

.final-cta h2 {
  max-width: 670px;
  margin-bottom: 14px;
  font-size: clamp(30px, 3.8vw, 46px);
}

.final-cta p {
  max-width: 590px;
  margin-bottom: 0;
  color: #d8e3d3;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(calc(100% - 32px), var(--max));
  margin: 24px auto 36px;
  padding: 22px 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

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

.site-footer a {
  color: var(--green);
  font-weight: 850;
}

.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  place-items: center;
  padding: 18px;
}

.quote-modal:target {
  display: grid;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 19, 13, 0.62);
  backdrop-filter: blur(8px);
}

.modal-panel {
  position: relative;
  width: min(100%, 620px);
  max-height: calc(100svh - 36px);
  overflow: auto;
  padding: clamp(26px, 4vw, 44px);
  border-radius: 6px;
  background: #fff;
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 6px;
  background: rgba(23, 33, 24, 0.07);
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.modal-panel h2 {
  margin: 14px 0 16px;
  padding-right: 66px;
  font-size: clamp(28px, 4.6vw, 38px);
}

.quote-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 26px 0;
}

.quote-fields span {
  min-height: 50px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: #384236;
  background: #fbfcf7;
  font-size: 14px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    top: 32px;
  }

  .hero,
  .feature-band,
  .work-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 30px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-media {
    min-height: auto;
  }

  .hero-photo {
    width: 100%;
    height: min(92vw, 620px);
  }

  .hero-logo {
    left: 18px;
    bottom: 18px;
    width: min(44%, 240px);
  }

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

  .feature-image img {
    min-height: 420px;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .demo-bar {
    font-size: 11px;
  }

  .site-header {
    width: min(calc(100% - 20px), var(--max));
    gap: 10px;
    margin-top: 10px;
    padding: 8px;
  }

  .brand span {
    max-width: 110px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .site-header nav {
    display: none;
  }

  .hero,
  .section,
  .work-section,
  .info-panel,
  .final-cta,
  .site-footer {
    width: min(calc(100% - 20px), var(--max));
  }

  h1 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .trust-strip,
  .info-grid,
  .quote-fields {
    grid-template-columns: 1fr;
  }

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

  .trust-strip div {
    grid-template-columns: 1fr;
    gap: 4px;
    min-height: auto;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .services-grid article {
    min-height: 210px;
  }

  .service-mark {
    margin-bottom: 28px;
  }

  .feature-band {
    width: 100%;
    border-radius: 0;
  }

  .info-panel {
    padding: 24px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .modal-panel {
    padding-top: 54px;
  }
}
