:root {
  color-scheme: light;
  --evergreen: #123023;
  --forest: #254d2f;
  --moss: #3a6a3e;
  --clay: #b4633a;
  --sand: #f3ece2;
  --stone: #d9cfc1;
  --ink: #1a1a16;
  --white: #ffffff;
  --shadow: 0 28px 70px rgba(21, 24, 16, 0.25);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #2a4f3a 0%, #132a1b 45%, #0b140e 100%);
  min-height: 100vh;
}

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

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

.site-shell {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(243, 236, 226, 0.98) 22%, #f9f4ec 100%),
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.18) 0,
      rgba(255, 255, 255, 0.18) 2px,
      rgba(255, 255, 255, 0) 2px,
      rgba(255, 255, 255, 0) 10px
    );
  margin: 0 18px 40px;
  border-radius: 34px;
  overflow: hidden;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  background: rgba(15, 45, 31, 0.92);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo-wrap img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.6);
  object-fit: cover;
}

.brand {
  font-family: "Libre Baskerville", serif;
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.tagline {
  margin: 4px 0 0;
  font-size: 13px;
  opacity: 0.8;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  gap: 22px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding-bottom: 4px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--clay);
  transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a:focus::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 16px;
  background: var(--clay);
  color: var(--white);
  border-radius: 999px;
}

.phone-pill {
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-weight: 600;
}

.hero {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  padding: 80px 72px 96px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -220px;
  right: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(192, 107, 60, 0.4) 0%, rgba(192, 107, 60, 0) 70%);
  z-index: 0;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 12px;
  font-weight: 600;
  color: var(--clay);
}

h1,
h2,
h3 {
  font-family: "Libre Baskerville", serif;
  margin: 12px 0 0;
}

h1 {
  font-size: 48px;
  line-height: 1.05;
  color: var(--evergreen);
}

.lead {
  font-size: 18px;
  margin-top: 18px;
  line-height: 1.6;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn.primary {
  background: var(--forest);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn.ghost {
  border: 1px solid var(--forest);
  color: var(--forest);
  background: transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

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

.trust-title {
  margin: 0;
  font-weight: 700;
}

.trust-copy {
  margin: 6px 0 0;
  font-size: 14px;
  color: #4b5b4e;
}

.hero-visual {
  display: grid;
  gap: 24px;
}

.hero-card {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.card-title {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.2em;
  margin: 0 0 10px;
  color: var(--moss);
}

.card-copy {
  margin: 0 0 18px;
  color: #3e493f;
}

.hero-image {
  position: relative;
  min-height: 360px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-image: url("https://images.unsplash.com/photo-1501004318641-b39e6451bec6?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(15, 45, 31, 0.2) 0%, rgba(15, 45, 31, 0.7) 90%);
}

section {
  padding: 80px 72px;
}

.section-heading {
  max-width: 700px;
}

.section-subcopy {
  margin-top: 16px;
  color: #4b5b4e;
  line-height: 1.6;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.service-card {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(36, 60, 38, 0.12);
  min-height: 180px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-card p {
  color: #4b5b4e;
}

.process {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  background: linear-gradient(120deg, rgba(18, 48, 35, 0.12), rgba(180, 99, 58, 0.12));
}

.steps {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.step {
  display: grid;
  gap: 6px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  border-left: 4px solid var(--clay);
  box-shadow: 0 12px 40px rgba(15, 45, 31, 0.12);
}

.step span {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clay);
  font-weight: 700;
}

.process-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-stack {
  position: relative;
  width: 100%;
  max-width: 420px;
  height: 360px;
}

.photo {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.accent-one {
  background-image: url("https://images.unsplash.com/photo-1501004318641-b39e6451bec6?auto=format&fit=crop&w=1200&q=80");
  transform: rotate(-2deg) translate(-20px, -10px);
}

.accent-two {
  background-image: url("https://images.unsplash.com/photo-1501004318641-b39e6451bec6?auto=format&fit=crop&w=1200&q=80");
  transform: rotate(4deg) translate(16px, 20px);
  filter: saturate(1.2);
}

.highlight {
  background: var(--evergreen);
  color: var(--white);
  padding: 70px 72px;
}

.highlight-card {
  max-width: 680px;
}

.highlight .btn.primary {
  background: var(--clay);
  box-shadow: none;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.gallery-item {
  border-radius: var(--radius-sm);
  min-height: 200px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.img-one {
  background-image: url("https://images.unsplash.com/photo-1441974231531-c6227db76b6e?auto=format&fit=crop&w=1200&q=80");
}

.img-two {
  background-image: url("https://images.unsplash.com/photo-1429497419816-9ca5cfb4571a?auto=format&fit=crop&w=1200&q=80");
}

.img-three {
  background-image: url("https://images.unsplash.com/photo-1444393907313-8c7cc0ad3a6a?auto=format&fit=crop&w=1200&q=80");
}

.img-four {
  background-image: url("https://images.unsplash.com/photo-1469796466635-455ede028aca?auto=format&fit=crop&w=1200&q=80");
}

.faq {
  background: linear-gradient(180deg, rgba(244, 239, 230, 0.7), rgba(255, 255, 255, 0.9));
}

.faq-grid {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

details {
  background: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  box-shadow: 0 14px 40px rgba(16, 19, 15, 0.12);
}

summary {
  font-weight: 700;
  cursor: pointer;
}

.contact {
  padding-bottom: 110px;
}

.contact-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(31, 77, 43, 0.1);
}

.contact-actions {
  display: flex;
  gap: 14px;
  margin-top: 22px;
}

.contact-details {
  background: var(--sand);
  border-radius: var(--radius-sm);
  padding: 20px;
}

.detail-title {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.2em;
  margin: 18px 0 6px;
  color: var(--forest);
}

.detail-title:first-child {
  margin-top: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 48px 40px;
  background: #0b1b12;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .site-header {
    flex-wrap: wrap;
    gap: 18px;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
  }

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

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

@media (max-width: 720px) {
  .site-shell {
    margin: 0;
    border-radius: 0;
  }

  .site-header {
    padding: 20px 22px;
  }

  section {
    padding: 60px 24px;
  }

  .hero {
    padding: 60px 24px 72px;
  }

  h1 {
    font-size: 36px;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .main-nav {
    flex-wrap: wrap;
    gap: 14px;
    font-size: 12px;
  }

  .service-grid,
  .gallery-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
    gap: 12px;
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
