:root {
  --background: #fbfaf7;
  --foreground: #241a13;
  --ink: #241a13;
  --forest: #123c35;
  --forest-soft: #dce7df;
  --cedar: #9a6a36;
  --amber: #c79245;
  --paper: #fffdf8;
  --steel: #314c5a;
  --line: #e1d8cb;
  --shadow: 0 22px 70px rgba(36, 26, 19, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--background);
  color: var(--foreground);
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  align-items: center;
  background: rgba(18, 60, 53, 0.92);
  color: #fffdf8;
  display: grid;
  gap: 18px;
  grid-template-columns: auto 1fr auto;
  left: 0;
  padding: 14px 32px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: flex;
  gap: 12px;
  font-weight: 800;
}

.brand img {
  background: #fffdf8;
  border-radius: 6px;
  height: 46px;
  object-fit: contain;
  padding: 4px;
  width: 82px;
}

.main-nav {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.main-nav a,
.header-call {
  font-size: 0.92rem;
  font-weight: 700;
}

.main-nav a {
  color: rgba(255, 253, 248, 0.82);
}

.main-nav a:hover,
.header-call:hover,
.footer-links a:hover,
.contact-stack a:hover {
  color: var(--amber);
}

.header-call {
  border: 1px solid rgba(255, 253, 248, 0.34);
  border-radius: 6px;
  padding: 10px 14px;
}

.hero {
  color: #fffdf8;
  min-height: 84vh;
  overflow: hidden;
  padding: 168px 32px 92px;
  position: relative;
}

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

.hero-image {
  height: 100%;
  inset: 0;
  object-fit: cover;
  opacity: 0;
  position: absolute;
  width: 100%;
}

.hero-image-1 {
  animation: heroFade 18s infinite;
}

.hero-image-2 {
  animation: heroFade 18s 6s infinite;
}

.hero-image-3 {
  animation: heroFade 18s 12s infinite;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(18, 60, 53, 0.92) 0%, rgba(18, 60, 53, 0.68) 42%, rgba(36, 26, 19, 0.18) 100%),
    linear-gradient(180deg, rgba(18, 60, 53, 0.28), rgba(36, 26, 19, 0.44));
}

.hero-content {
  max-width: 760px;
  position: relative;
  z-index: 1;
}

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

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

h1 {
  font-size: 4rem;
  line-height: 0.98;
  margin-bottom: 22px;
  max-width: 760px;
}

h2 {
  font-size: 2.45rem;
  line-height: 1.08;
  margin-bottom: 0;
}

h3 {
  font-size: 1.15rem;
  line-height: 1.25;
  margin-bottom: 10px;
}

.hero-copy {
  color: rgba(255, 253, 248, 0.9);
  font-size: 1.26rem;
  line-height: 1.6;
  max-width: 620px;
}

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

.button {
  align-items: center;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 14px 18px;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.button-primary {
  background: var(--amber);
  color: #241a13;
}

.button-primary:hover {
  background: #e3ad60;
}

.button-secondary {
  background: rgba(255, 253, 248, 0.12);
  color: #fffdf8;
  outline: 1px solid rgba(255, 253, 248, 0.4);
}

.button-secondary:hover {
  background: #fffdf8;
  color: var(--forest);
}

.trust-band {
  background: var(--forest);
  color: #fffdf8;
  display: grid;
  gap: 1px;
  grid-template-columns: 0.52fr 1fr;
}

.trust-band div {
  background: rgba(255, 255, 255, 0.06);
  padding: 24px 32px;
}

.trust-label {
  color: rgba(255, 253, 248, 0.66);
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.trust-band strong {
  display: block;
  line-height: 1.45;
}

.section {
  margin: 0 auto;
  max-width: 1180px;
  padding: 90px 32px;
}

.intro-section,
.about-section,
.quote-section {
  display: grid;
  gap: 54px;
  grid-template-columns: 0.9fr 1.1fr;
}

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

.section-heading.compact {
  align-items: end;
  display: flex;
  justify-content: space-between;
  max-width: none;
}

.intro-copy,
.about-copy,
.quote-copy {
  color: #4b3c31;
  font-size: 1.05rem;
  line-height: 1.75;
}

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

.highlight-list li {
  border-left: 4px solid var(--amber);
  color: var(--ink);
  font-weight: 700;
  padding: 6px 0 6px 14px;
}

.services-section,
.reviews-section {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.services-section > .section-heading,
.reviews-section > .section-heading,
.work-section > .section-heading,
.process-section > .section-heading {
  margin: 0 auto 34px;
  max-width: 1180px;
  padding: 0 32px;
}

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

.service-card {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  min-width: 0;
}

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

.service-card-body {
  padding: 26px;
}

.service-card p,
.process-item p,
.testimonial-card blockquote {
  color: #55473c;
  line-height: 1.65;
}

.service-card ul {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.service-card li {
  color: var(--steel);
  font-size: 0.92rem;
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.gallery-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 0;
  overflow: hidden;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(2) {
  grid-column: span 3;
}

.gallery-item:nth-child(n + 3) {
  grid-column: span 2;
}

.gallery-item img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.gallery-item figcaption {
  color: var(--forest);
  font-size: 0.92rem;
  font-weight: 800;
  padding: 12px 14px;
}

.process-section {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

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

.process-item {
  background: var(--forest-soft);
  border: 1px solid #c9d9cf;
  border-radius: 8px;
  padding: 28px;
}

.process-item span {
  color: var(--cedar);
  display: block;
  font-size: 0.82rem;
  font-weight: 900;
  margin-bottom: 20px;
}

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

.testimonial-card {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  margin: 0;
  min-height: 260px;
  padding: 34px;
}

.testimonial-card blockquote {
  font-size: 1.05rem;
  margin: 0 0 28px;
}

.testimonial-card figcaption {
  display: grid;
  gap: 4px;
}

.testimonial-card span {
  color: var(--steel);
}

.about-section {
  align-items: center;
}

.owner-photo {
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.owner-photo img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.quote-section {
  background: var(--forest);
  color: #fffdf8;
  margin: 0;
  max-width: none;
  padding: 86px max(32px, calc((100vw - 1180px) / 2));
}

.quote-copy {
  color: rgba(255, 253, 248, 0.84);
}

.quote-copy h2 {
  color: #fffdf8;
}

.contact-stack {
  display: grid;
  gap: 8px;
  margin-top: 26px;
}

.contact-stack a {
  color: #fffdf8;
  font-weight: 800;
}

.contact-stack span {
  color: rgba(255, 253, 248, 0.74);
}

.quote-form {
  background: #fffdf8;
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--ink);
  display: grid;
  gap: 16px;
  padding: 26px;
}

.quote-form label {
  color: #3e3229;
  display: grid;
  font-size: 0.92rem;
  font-weight: 800;
  gap: 8px;
}

.quote-form input,
.quote-form textarea {
  background: #f7f3ec;
  border: 1px solid #d8cabb;
  border-radius: 6px;
  color: var(--ink);
  min-height: 46px;
  padding: 12px;
  width: 100%;
}

.quote-form textarea {
  resize: vertical;
}

.site-footer {
  align-items: center;
  background: #0d2521;
  color: rgba(255, 253, 248, 0.8);
  display: flex;
  justify-content: space-between;
  padding: 28px 32px;
}

.site-footer div {
  display: grid;
  gap: 6px;
}

.site-footer strong,
.footer-links a {
  color: #fffdf8;
}

.footer-links {
  text-align: right;
}

@keyframes heroFade {
  0%,
  31% {
    opacity: 1;
  }

  38%,
  100% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-image {
    animation: none;
  }

  .hero-image-1 {
    opacity: 1;
  }

  .button {
    transition: none;
  }
}

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

  .main-nav {
    display: none;
  }

  .hero {
    min-height: 78vh;
    padding-top: 140px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }

  .trust-band,
  .intro-section,
  .about-section,
  .quote-section {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 680px) {
  .site-header {
    gap: 12px;
    padding: 10px 16px;
  }

  .brand span {
    display: none;
  }

  .brand img {
    height: 40px;
    width: 74px;
  }

  .header-call {
    font-size: 0.84rem;
    padding: 9px 10px;
  }

  .hero {
    min-height: 76vh;
    padding: 120px 18px 62px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(18, 60, 53, 0.9), rgba(18, 60, 53, 0.72) 58%, rgba(36, 26, 19, 0.38)),
      linear-gradient(90deg, rgba(18, 60, 53, 0.58), rgba(18, 60, 53, 0.18));
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  .hero-copy,
  .intro-copy,
  .about-copy,
  .quote-copy {
    font-size: 1rem;
  }

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

  .trust-band div,
  .section,
  .services-section > .section-heading,
  .reviews-section > .section-heading,
  .work-section > .section-heading,
  .process-section > .section-heading {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section {
    padding-bottom: 64px;
    padding-top: 64px;
  }

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

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(n + 3) {
    grid-column: auto;
  }

  .service-card-body,
  .testimonial-card,
  .process-item,
  .quote-form {
    padding: 22px;
  }

  .quote-section {
    padding: 64px 18px;
  }

  .site-footer {
    align-items: start;
    display: grid;
    gap: 18px;
    padding: 24px 18px;
  }

  .footer-links {
    text-align: left;
  }
}
