:root {
  color-scheme: light;
  --ink: #10231f;
  --ink-soft: #314640;
  --muted: #63736d;
  --paper: #faf7f1;
  --paper-deep: #efe7da;
  --surface: #ffffff;
  --surface-soft: #f7fbf8;
  --line: #d9e1db;
  --line-dark: #b8c6be;
  --green: #176957;
  --green-dark: #0d3d34;
  --blue: #1f6e8c;
  --gold: #c08b37;
  --rose: #b4574f;
  --shadow: 0 24px 70px rgba(16, 35, 31, 0.14);
  --radius: 8px;
  --max: 1180px;
}

* {
  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.5;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--green-dark);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 78px;
  padding: 10px clamp(16px, 4vw, 42px);
  border-bottom: 1px solid rgba(16, 35, 31, 0.1);
  background: rgba(250, 247, 241, 0.92);
  backdrop-filter: blur(18px);
}

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

.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
  border: 1px solid rgba(16, 35, 31, 0.1);
}

.brand span {
  display: grid;
  gap: 1px;
}

.brand strong {
  font-size: 0.98rem;
  line-height: 1.05;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 28px);
}

.site-nav a,
.header-cta,
.button {
  font-weight: 850;
  text-decoration: none;
}

.site-nav a {
  color: var(--ink-soft);
  font-size: 0.94rem;
}

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

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 18px;
  white-space: nowrap;
}

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

.header-cta:hover,
.button-primary:hover {
  background: var(--green-dark);
}

.button-secondary {
  color: var(--ink);
  background: #fff;
  border-color: var(--line-dark);
}

.button-secondary:hover {
  border-color: var(--green);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: min(720px, calc(86svh - 78px));
  display: grid;
  align-items: end;
  overflow: clip;
  background: #12251f;
}

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

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 31, 27, 0.88), rgba(13, 31, 27, 0.52) 47%, rgba(13, 31, 27, 0.2)),
    linear-gradient(0deg, rgba(13, 31, 27, 0.85), transparent 48%);
}

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

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(36px, 6vw, 64px) clamp(18px, 4vw, 42px) clamp(28px, 5vw, 42px);
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.split-content h2,
.gallery-copy h2,
.request-copy h2 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 900px;
  font-size: clamp(2.9rem, 6vw, 5.8rem);
}

.hero-copy {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.87);
  font-size: clamp(1.08rem, 2.1vw, 1.34rem);
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 840px;
  margin: clamp(24px, 4vw, 34px) 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.16);
}

.hero-stats div {
  padding: 14px 16px;
  background: rgba(13, 31, 27, 0.32);
}

.hero-stats dt {
  margin: 0;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 950;
}

.hero-stats dd {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.trust-strip {
  display: flex;
  gap: 10px;
  overflow: auto;
  padding: 14px clamp(16px, 4vw, 42px);
  color: #fff;
  background: var(--green-dark);
  scrollbar-width: none;
}

.trust-strip::-webkit-scrollbar {
  display: none;
}

.trust-strip span {
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 7px 12px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.86rem;
  font-weight: 800;
}

.section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(58px, 9vw, 108px) clamp(18px, 4vw, 42px);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 32px;
}

.section-heading.compact {
  max-width: 720px;
}

.section-heading h2,
.split-content h2,
.gallery-copy h2,
.request-copy h2 {
  font-size: clamp(2.1rem, 5vw, 4.2rem);
}

.section-heading p:not(.eyebrow),
.split-content p,
.gallery-copy p,
.request-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.feature-card,
.price-card,
.review-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 38px rgba(16, 35, 31, 0.07);
}

.feature-card {
  padding: 24px;
}

.feature-card .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-weight: 950;
}

.feature-card h3,
.price-card h3 {
  margin: 18px 0 8px;
  font-size: 1.24rem;
}

.feature-card p,
.price-card li,
.review-card blockquote {
  color: var(--ink-soft);
}

.split-section,
.gallery-section,
.request-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}

.split-media img,
.gallery-main img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.split-media img {
  object-position: 50% 50%;
}

.service-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.service-list div {
  display: grid;
  grid-template-columns: minmax(150px, 0.36fr) 1fr;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.service-list strong {
  color: var(--green-dark);
}

.service-list span,
.check-list {
  color: var(--muted);
}

.pricing-section {
  width: 100%;
  max-width: none;
  background: var(--paper-deep);
}

.pricing-section > * {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.pricing-grid {
  margin-top: 30px;
}

.price-card {
  padding: 26px;
}

.price-card.featured {
  color: #fff;
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.price-label {
  margin: 0;
  color: var(--gold);
  font-weight: 950;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.price-card .price {
  margin: 10px 0 18px;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 950;
}

.price-card .price.small {
  font-size: 2.2rem;
}

.price-card ul,
.check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
}

.price-card.featured li {
  color: rgba(255, 255, 255, 0.82);
}

.compare-section {
  width: min(100%, 1260px);
}

.compare-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 50px rgba(16, 35, 31, 0.08);
}

.compare-row {
  display: grid;
  grid-template-columns: 0.86fr 1.1fr 1.12fr;
  border-top: 1px solid var(--line);
}

.compare-row:first-child {
  border-top: 0;
}

.compare-row span {
  padding: 18px;
  border-left: 1px solid var(--line);
}

.compare-row span:first-child {
  border-left: 0;
  font-weight: 900;
}

.compare-head {
  color: #fff;
  background: var(--ink);
  font-weight: 900;
}

.compare-row:not(.compare-head) span {
  color: var(--ink-soft);
}

.compare-row:not(.compare-head) span:last-child {
  color: var(--green-dark);
  font-weight: 800;
}

.gallery-section {
  grid-template-columns: 1fr 0.92fr;
}

.gallery-main img {
  aspect-ratio: 1.15 / 1;
}

.review-card {
  padding: 24px;
}

.review-card blockquote {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 750;
}

.review-card figcaption {
  margin-top: 18px;
  color: var(--green);
  font-weight: 950;
}

.review-images {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.review-images img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 34px rgba(16, 35, 31, 0.08);
}

.request-section {
  width: 100%;
  max-width: none;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  background: var(--green-dark);
  color: #fff;
}

.request-section > * {
  width: min(100%, 560px);
}

.request-copy {
  justify-self: end;
}

.request-copy p {
  color: rgba(255, 255, 255, 0.75);
}

.square-note {
  display: grid;
  gap: 8px;
  margin-top: 26px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.square-note span {
  color: rgba(255, 255, 255, 0.78);
}

.request-form {
  justify-self: start;
  display: grid;
  gap: 16px;
  padding: clamp(18px, 4vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 14px;
}

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

.field,
label,
fieldset {
  display: grid;
  gap: 7px;
}

.field label,
label span,
legend {
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 10px 12px;
  color: var(--ink);
  background: var(--surface-soft);
}

textarea {
  resize: vertical;
}

fieldset {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
}

fieldset label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

fieldset input {
  width: 18px;
  height: 18px;
  min-height: 0;
  margin-top: 2px;
}

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

.request-output {
  border: 1px solid #bad8cd;
  border-radius: var(--radius);
  padding: 14px;
  color: var(--green-dark);
  background: #eef8f3;
  font-weight: 800;
}

.square-section {
  width: min(100%, 1260px);
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  gap: 28px;
  align-items: start;
}

.square-frame-wrap {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.square-frame-wrap iframe {
  display: block;
  width: 100%;
  height: 720px;
  border: 0;
}

.faq-section {
  padding-top: 30px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  background: #fff;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 950;
}

.faq-list p {
  color: var(--muted);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 36px clamp(18px, 4vw, 42px) 86px;
  color: #fff;
  background: var(--ink);
}

.site-footer div {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-footer img {
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
}

.site-footer p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer a {
  color: #fff;
  font-weight: 850;
  text-decoration: none;
}

.mobile-bar {
  position: fixed;
  right: 10px;
  bottom: 10px;
  left: 10px;
  z-index: 45;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: var(--green-dark);
  box-shadow: 0 16px 50px rgba(16, 35, 31, 0.25);
}

.mobile-bar a {
  display: grid;
  place-items: center;
  min-height: 48px;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 900;
  text-decoration: none;
  background: var(--green);
}

:focus-visible {
  outline: 3px solid rgba(192, 139, 55, 0.55);
  outline-offset: 3px;
}

@media (max-width: 1240px) {
  .site-header {
    grid-template-columns: auto 1fr;
  }

  .site-nav {
    justify-content: end;
    gap: 18px;
  }

  .header-cta {
    display: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 12px;
    left: 12px;
    display: none;
    grid-template-columns: 1fr;
    justify-content: stretch;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 15px 18px;
    border-top: 1px solid var(--line);
  }

  .site-nav a:first-child {
    border-top: 0;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: min(720px, calc(88svh - 70px));
  }

  .hero-media::after {
    background:
      linear-gradient(90deg, rgba(13, 31, 27, 0.9), rgba(13, 31, 27, 0.58)),
      linear-gradient(0deg, rgba(13, 31, 27, 0.88), transparent 50%);
  }

  .intro-grid,
  .pricing-grid,
  .review-grid,
  .review-images,
  .split-section,
  .gallery-section,
  .request-section,
  .square-section {
    grid-template-columns: 1fr;
  }

  .request-section > * {
    width: min(100%, 720px);
    justify-self: center;
  }

  .compare-row {
    grid-template-columns: 1fr;
  }

  .compare-row span {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .compare-row span:first-child {
    border-top: 0;
  }

  .compare-head {
    display: none;
  }

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

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

@media (max-width: 720px) {
  .site-header {
    min-height: 70px;
    padding: 8px 14px;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand strong {
    max-width: 210px;
    font-size: 0.9rem;
  }

  .hero-content {
    padding-top: 34px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 15vw, 3.75rem);
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-stats div {
    padding: 10px;
  }

  .hero-stats dt {
    font-size: clamp(1.18rem, 6vw, 1.55rem);
  }

  .hero-stats dd {
    font-size: 0.72rem;
  }

  .section {
    padding: 56px 16px;
  }

  .section-heading h2,
  .split-content h2,
  .gallery-copy h2,
  .request-copy h2 {
    font-size: clamp(2rem, 10vw, 2.9rem);
  }

  .service-list div,
  .form-row.two {
    grid-template-columns: 1fr;
  }

  .split-media img,
  .gallery-main img {
    aspect-ratio: 1 / 1;
  }

  .review-images {
    grid-template-columns: 1fr;
  }

  .review-images img {
    height: auto;
    max-height: 520px;
    object-fit: contain;
  }

  .square-frame-wrap iframe {
    height: 620px;
  }

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

  .mobile-bar {
    display: grid;
  }
}

@media (max-width: 430px) {
  .brand strong {
    max-width: 170px;
  }

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

  .feature-card,
  .price-card,
  .review-card {
    padding: 20px;
  }

  .request-form {
    padding: 16px;
  }
}
