:root {
  --ink: #24302f;
  --muted: #65716f;
  --line: #e7e3da;
  --paper: #fffdf8;
  --soft: #f5f1e7;
  --gold: #bc982f;
  --gold-dark: #8a6a10;
  --green: #31564a;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.02rem;
  font-weight: 700;
  text-decoration: none;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  font-size: 0.95rem;
}

nav a {
  color: var(--muted);
  text-decoration: none;
}

nav a:hover {
  color: var(--gold-dark);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(240px, 0.75fr);
  align-items: center;
  gap: clamp(36px, 7vw, 96px);
  min-height: calc(100vh - 79px);
  padding: clamp(56px, 8vw, 112px) clamp(20px, 6vw, 84px);
  background:
    linear-gradient(135deg, rgba(245, 241, 231, 0.88), rgba(255, 253, 248, 0.96)),
    radial-gradient(circle at 85% 20%, rgba(188, 152, 47, 0.16), transparent 34%);
}

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

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold-dark);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 880px;
  margin-bottom: 22px;
  font-size: clamp(2.45rem, 6vw, 5.35rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3.4vw, 3.1rem);
  line-height: 1.1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.hero p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.2rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border: 1px solid var(--gold);
  border-radius: 3px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

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

.button.primary {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.button.secondary {
  color: var(--gold-dark);
  background: transparent;
}

.hero-mark {
  display: grid;
  place-items: center;
}

.hero-mark img {
  width: min(100%, 380px);
  filter: drop-shadow(0 28px 36px rgba(49, 86, 74, 0.22));
}

.intro,
.section,
.testimonials,
.cta {
  padding: clamp(56px, 8vw, 96px) clamp(20px, 6vw, 84px);
}

.intro {
  color: var(--white);
  background: var(--green);
  text-align: center;
}

.intro h2 {
  max-width: 840px;
  margin: 0 auto;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 34px;
}

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

.service-card {
  min-height: 100%;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(36, 48, 47, 0.06);
}

.service-card img {
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  object-fit: contain;
}

.service-card p {
  color: var(--muted);
  font-size: 0.98rem;
}

.service-card p:last-child {
  margin-bottom: 0;
}

.stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.stats div {
  padding: 36px 18px;
  background: var(--soft);
  text-align: center;
}

.stats strong {
  display: block;
  color: var(--green);
  font-size: clamp(1.9rem, 3vw, 3.3rem);
  line-height: 1;
}

.stats span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.work {
  background: var(--white);
}

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

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

figure img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  border-bottom: 1px solid var(--line);
}

figcaption {
  padding: 14px 16px 16px;
  color: var(--ink);
  font-weight: 700;
}

.testimonials {
  background: var(--soft);
  text-align: center;
}

.testimonials .muted {
  max-width: 650px;
  margin: 0 auto;
  color: var(--muted);
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--white);
  background: var(--green);
}

.cta h2 {
  margin-bottom: 0;
}

.cta .button.primary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.site-footer {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  padding: 48px clamp(20px, 6vw, 84px) 28px;
  color: #ece8dd;
  background: #202827;
}

.site-footer h2 {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 1.15rem;
}

.site-footer p {
  color: #c7cbc5;
}

.site-footer a {
  color: #f3efd9;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--gold);
}

.socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.socials img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.copyright {
  grid-column: 1 / -1;
  margin: 14px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.92rem;
}

@media (max-width: 920px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    flex-wrap: wrap;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-mark {
    order: -1;
  }

  .hero-mark img {
    width: 180px;
  }

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

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

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

@media (max-width: 620px) {
  .brand span {
    font-size: 1rem;
  }

  .hero,
  .intro,
  .section,
  .testimonials,
  .cta {
    padding-inline: 18px;
  }

  .services-grid,
  .work-grid,
  .stats,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 24px;
  }

  .button {
    width: 100%;
  }
}
