:root {
  --green-900: #173f2a;
  --green-800: #1e5a37;
  --green-700: #2f7348;
  --green-100: #e8f1e8;
  --cream: #f8f5ee;
  --white: #ffffff;
  --ink: #1b261f;
  --muted: #66736a;
  --line: #dce4dc;
  --tan: #caa269;
  --tan-dark: #9b713d;
  --shadow: 0 18px 45px rgba(23, 63, 42, 0.14);
  --radius: 8px;
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  letter-spacing: 0;
}

body.lightbox-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip-link,
.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;
}

.skip-link:focus {
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  padding: 0.7rem 1rem;
  background: var(--white);
  color: var(--green-900);
  z-index: 20;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 228, 220, 0.9);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(100% - 2rem, var(--content));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.brand-logo {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center;
  border: 1px solid var(--line);
  background: var(--white);
}

.brand strong {
  display: block;
  color: var(--green-900);
  font-size: 1.05rem;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.2;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-menu a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius);
  color: var(--green-900);
  font-weight: 700;
  font-size: 0.95rem;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  background: var(--green-100);
  outline: none;
}

.nav-menu .nav-cta {
  margin-left: 0.4rem;
  background: var(--green-800);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(30, 90, 55, 0.18);
}

.nav-menu .nav-cta:hover,
.nav-menu .nav-cta:focus-visible {
  background: var(--green-900);
}

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

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--green-900);
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle-lines::before {
  transform: translateY(-7px);
}

.nav-toggle-lines::after {
  transform: translateY(5px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
  transform: translateY(0) rotate(90deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
  opacity: 0;
}

.hero {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(11, 39, 24, 0.88), rgba(11, 39, 24, 0.5) 46%, rgba(11, 39, 24, 0.18)),
    url("https://images.pexels.com/photos/280222/pexels-photo-280222.jpeg?auto=compress&cs=tinysrgb&w=1800") center / cover;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(0deg, rgba(11, 39, 24, 0.45), transparent);
  content: "";
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--content));
  margin: 0 auto;
  padding: 4rem 0 6rem;
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.8rem;
  color: var(--tan);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero h1 {
  max-width: 750px;
  margin: 0;
  font-size: 4rem;
  line-height: 1.04;
}

.hero p:not(.eyebrow) {
  max-width: 600px;
  margin: 1.25rem 0 0;
  font-size: 1.22rem;
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0.78rem 1.05rem;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button svg,
.text-link svg,
.contact-list svg,
.service-card svg,
.benefit-list svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.button-primary {
  background: var(--tan);
  color: #172716;
  border-color: var(--tan);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #d8b67e;
  border-color: #d8b67e;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.2);
}

.hero-trust {
  position: absolute;
  left: 50%;
  bottom: 1.2rem;
  z-index: 1;
  width: min(100% - 2rem, var(--content));
  transform: translateX(-50%);
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-trust span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  padding: 0.45rem 0.75rem;
  background: rgba(10, 32, 20, 0.48);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
  font-weight: 700;
}

.section-shell {
  width: min(100% - 2rem, var(--content));
  margin: 0 auto;
}

.intro-section {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 3.6rem 0;
  align-items: start;
}

.intro-grid h2,
.section-heading h2,
.choose-copy h2,
.about-grid h2,
.contact-copy h2 {
  margin: 0;
  color: var(--green-900);
  font-size: 2.35rem;
  line-height: 1.14;
}

.intro-grid p:last-child,
.section-heading p,
.choose-copy p,
.about-grid p,
.contact-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.section {
  padding: 5.2rem 0;
}

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

.section-heading p {
  margin-top: 1rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.service-card,
.benefit-list article,
.process-step,
.testimonial-grid blockquote {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 26px rgba(23, 63, 42, 0.07);
}

.service-card {
  min-height: 226px;
  padding: 1.25rem;
}

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

.service-card svg,
.benefit-list svg {
  width: 2rem;
  height: 2rem;
  color: var(--green-700);
  margin-bottom: 1rem;
}

.service-card h3,
.benefit-list h3,
.process-step h3 {
  margin: 0 0 0.55rem;
  color: var(--green-900);
  font-size: 1.12rem;
  line-height: 1.25;
}

.service-card p,
.benefit-list p,
.process-step p,
.testimonial-grid p {
  margin: 0;
  color: var(--muted);
}

.choose-section,
.process-section,
.contact-section {
  background: var(--white);
}

.choose-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3rem;
  align-items: start;
}

.choose-copy p {
  margin-top: 1rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  color: var(--green-800);
  font-weight: 800;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--tan-dark);
  outline: none;
}

.benefit-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.benefit-list article {
  min-height: 178px;
  padding: 1.25rem;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--green-100);
  box-shadow: var(--shadow);
}

.gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-button {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
}

.gallery-button:focus-visible {
  outline: 4px solid rgba(202, 162, 105, 0.75);
  outline-offset: -4px;
}

.gallery-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.gallery-button:hover img,
.gallery-button:focus-visible img {
  transform: scale(1.04);
}

.gallery-caption {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  max-width: calc(100% - 1.7rem);
  border-radius: var(--radius);
  padding: 0.45rem 0.65rem;
  background: rgba(11, 39, 24, 0.82);
  color: var(--white);
  font-weight: 800;
  font-size: 0.92rem;
  z-index: 1;
}

.gallery-zoom {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  color: var(--green-900);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.gallery-zoom svg,
.lightbox button svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gallery-button:hover .gallery-zoom,
.gallery-button:focus-visible .gallery-zoom {
  opacity: 1;
  transform: translateY(0);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(52px, 1fr) minmax(0, 1080px) minmax(52px, 1fr);
  align-items: center;
  gap: 1rem;
  padding: 4.8rem 1rem 2rem;
  background: rgba(7, 23, 14, 0.92);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-content {
  grid-column: 2;
  margin: 0;
}

.lightbox-image {
  width: 100%;
  max-height: min(74vh, 760px);
  object-fit: contain;
  border-radius: var(--radius);
  background: #07170e;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.38);
}

.lightbox-caption {
  margin-top: 0.9rem;
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
  text-align: center;
}

.lightbox button {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  color: var(--green-900);
  transition: background 180ms ease, transform 180ms ease;
}

.lightbox button:hover,
.lightbox button:focus-visible {
  background: var(--tan);
  outline: none;
  transform: translateY(-2px);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.lightbox-prev {
  grid-column: 1;
  justify-self: end;
}

.lightbox-next {
  grid-column: 3;
  justify-self: start;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.process-step {
  min-height: 202px;
  padding: 1.35rem;
  position: relative;
}

.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1.2rem;
  border-radius: var(--radius);
  background: var(--green-100);
  color: var(--green-800);
  font-weight: 900;
}

.about-section {
  background: var(--green-900);
  color: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image {
  padding: 1rem;
  border-radius: var(--radius);
  background: #08170e;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.about-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
}

.about-grid h2 {
  color: var(--white);
}

.about-grid p {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.78);
}

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

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.testimonial-grid blockquote {
  min-height: 248px;
  margin: 0;
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-grid cite {
  display: block;
  margin-top: 1.4rem;
  color: var(--green-800);
  font-style: normal;
  font-weight: 900;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.contact-copy p {
  margin-top: 1rem;
}

.contact-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.contact-list a,
.contact-list p {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin: 0;
  color: var(--green-900);
  font-weight: 800;
}

.contact-list svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--green-700);
  margin-top: 0.15rem;
}

.quote-form {
  display: grid;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.form-heading h3 {
  margin: 0;
  color: var(--green-900);
  font-size: 1.35rem;
}

.form-heading p {
  margin: 0.25rem 0 0;
  color: var(--muted);
}

.quote-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--green-900);
  font-size: 0.95rem;
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid #cdd8ce;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 0.82rem 0.9rem;
  outline: none;
}

.quote-form textarea {
  resize: vertical;
  min-height: 134px;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--green-700);
  box-shadow: 0 0 0 4px rgba(47, 115, 72, 0.14);
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--green-800);
  font-weight: 800;
}

.thank-you-page {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(11, 39, 24, 0.88), rgba(11, 39, 24, 0.58)),
    url("https://images.pexels.com/photos/280222/pexels-photo-280222.jpeg?auto=compress&cs=tinysrgb&w=1800") center / cover;
}

.thank-you-main {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.thank-you-panel {
  width: min(100%, 620px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 2rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.thank-you-panel img {
  width: 82px;
  height: 82px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
}

.thank-you-panel h1 {
  margin: 0;
  color: var(--green-900);
  font-size: 2.3rem;
  line-height: 1.1;
}

.thank-you-panel p:not(.section-kicker) {
  margin: 1rem 0 0;
  color: var(--muted);
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.thank-you-secondary {
  background: var(--green-900);
  color: var(--white);
}

.site-footer {
  padding: 2rem 0;
  background: #102c1d;
  color: var(--white);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
}

.site-footer strong {
  display: block;
  font-size: 1.05rem;
}

.site-footer p {
  max-width: 520px;
  margin: 0.3rem 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: flex-end;
}

.footer-links a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.65rem;
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  outline: none;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-menu {
    position: absolute;
    top: 76px;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .nav-menu a {
    justify-content: flex-start;
  }

  .nav-menu .nav-cta {
    margin-left: 0;
    justify-content: center;
  }

  .hero {
    min-height: 540px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .intro-grid,
  .choose-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .service-card-wide {
    grid-column: span 1;
  }

  .process-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-grid blockquote {
    min-height: 190px;
  }
}

@media (max-width: 680px) {
  .nav {
    width: min(100% - 1.25rem, var(--content));
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .brand strong {
    font-size: 1rem;
  }

  .brand small {
    max-width: 190px;
    font-size: 0.78rem;
  }

  .hero {
    min-height: 500px;
    background-position: center;
  }

  .hero-content {
    width: min(100% - 1.25rem, var(--content));
    padding: 2.5rem 0 6rem;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .hero p:not(.eyebrow) {
    font-size: 1.05rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 0.85rem;
  }

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

  .hero-actions .button-secondary {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    align-self: stretch;
    padding: 0.78rem 1.05rem;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.55);
    box-shadow: none;
    backdrop-filter: none;
  }

  .hero-actions .button-secondary:hover,
  .hero-actions .button-secondary:focus-visible {
    background: rgba(255, 255, 255, 0.2);
  }

  .hero-trust {
    width: min(100% - 1.25rem, var(--content));
    gap: 0.45rem;
    bottom: 0.8rem;
  }

  .hero-trust span {
    min-height: 34px;
    font-size: 0.82rem;
  }

  .section-shell {
    width: min(100% - 1.25rem, var(--content));
  }

  .intro-grid,
  .section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .intro-grid h2,
  .section-heading h2,
  .choose-copy h2,
  .about-grid h2,
  .contact-copy h2 {
    font-size: 1.9rem;
  }

  .service-grid,
  .benefit-list,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: 260px;
  }

  .gallery-large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-zoom {
    opacity: 1;
    transform: none;
  }

  .lightbox {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    align-content: center;
    gap: 0.8rem;
    padding: 4.4rem 0.85rem 1.25rem;
  }

  .lightbox-content {
    width: 100%;
    max-width: 560px;
    order: 1;
  }

  .lightbox-image {
    max-height: 58vh;
  }

  .lightbox-nav {
    position: static;
    order: 2;
    width: 50px;
    height: 46px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.25);
    transform: none;
  }

  .lightbox-prev,
  .lightbox-next {
    grid-column: auto;
    justify-self: auto;
  }

  .lightbox-prev {
    margin-right: 0.15rem;
  }

  .lightbox-next {
    margin-left: 0.15rem;
  }

  .lightbox .lightbox-nav:hover,
  .lightbox .lightbox-nav:focus-visible {
    transform: translateY(-2px);
  }

  .quote-form {
    padding: 1rem;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}
