:root {
  --ink: #11170f;
  --pine: #183b22;
  --leaf: #62bf2f;
  --leaf-dark: #3a8f1e;
  --mist: #f4f7f2;
  --paper: #ffffff;
  --muted: #5e675b;
  --line: rgba(17, 23, 15, 0.12);
  --shadow: 0 20px 60px rgba(17, 23, 15, 0.16);
  --radius: 8px;
}

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

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 12px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 150px;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a,
.social-links a,
.text-link {
  text-decoration: none;
}

.site-nav a:hover,
.text-link:hover,
.social-links a:hover {
  color: var(--leaf-dark);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta,
.button.primary {
  color: #0c1708;
  background: var(--leaf);
  box-shadow: 0 10px 28px rgba(98, 191, 47, 0.28);
}

.button.secondary {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.36);
}

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

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 76px));
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--paper);
  background: var(--pine);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 42% 32%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 18, 9, 0.86), rgba(10, 18, 9, 0.45) 48%, rgba(10, 18, 9, 0.16)),
    linear-gradient(0deg, rgba(10, 18, 9, 0.88), rgba(10, 18, 9, 0.08) 42%);
}

.hero-content {
  position: relative;
  width: min(720px, calc(100% - 40px));
  margin: 0 0 clamp(48px, 8vw, 108px) clamp(20px, 6vw, 96px);
}

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

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

h1 {
  max-width: 680px;
  margin-bottom: 18px;
  font-size: clamp(3.1rem, 8vw, 7.4rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4.2vw, 4.35rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.22rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 1.6vw, 1.32rem);
}

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

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--mist);
}

.trust-strip div {
  padding: clamp(22px, 4vw, 42px) clamp(20px, 4vw, 56px);
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip span {
  display: block;
  margin-bottom: 14px;
  color: var(--leaf-dark);
  font-weight: 900;
}

.trust-strip strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.trust-strip p,
.section-copy p,
.section-heading p,
.service-card p,
.contact-panel p,
.site-footer p {
  color: var(--muted);
}

.section {
  padding: clamp(72px, 10vw, 140px) clamp(20px, 6vw, 96px);
}

.split,
.coverage {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: center;
}

.section-copy {
  max-width: 660px;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--leaf-dark);
  font-weight: 900;
}

.image-stack {
  position: relative;
}

.image-stack > img:first-child,
.coverage > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-stack .badge {
  position: absolute;
  right: clamp(16px, 4vw, 36px);
  bottom: clamp(16px, 4vw, 36px);
  width: clamp(96px, 16vw, 160px);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(17, 23, 15, 0.28);
}

.services-section {
  background: #10170e;
  color: var(--paper);
}

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

.services-section .section-heading p,
.services-section .service-card p {
  color: rgba(255, 255, 255, 0.74);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
}

.service-card h3,
.service-card p,
.service-card a {
  margin-left: 20px;
  margin-right: 20px;
}

.service-card h3 {
  margin-top: 20px;
}

.service-card a {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--leaf);
  font-weight: 900;
  text-decoration: none;
}

.featured-card {
  background: rgba(98, 191, 47, 0.12);
}

.coverage {
  background: var(--mist);
}

.contact-section {
  padding: clamp(72px, 10vw, 140px) clamp(20px, 6vw, 96px);
  background:
    linear-gradient(rgba(16, 23, 14, 0.82), rgba(16, 23, 14, 0.82)),
    url("/assets/images/carpentry.png") center / cover;
  color: var(--paper);
}

.contact-panel {
  width: min(720px, 100%);
}

.contact-panel p {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.76);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  padding: 42px clamp(20px, 6vw, 96px);
  background: #080d07;
  color: var(--paper);
}

.site-footer img {
  width: 132px;
  margin-bottom: 14px;
}

address {
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
}

address a {
  text-decoration: none;
}

.social-links {
  display: flex;
  gap: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

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

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .trust-strip,
  .service-grid,
  .split,
  .coverage,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .site-footer {
    gap: 24px;
  }
}

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

  .brand img {
    width: 92px;
  }

  .header-cta {
    min-height: 38px;
    padding: 9px 12px;
    font-size: 0.85rem;
  }

  .site-nav {
    gap: 16px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: 640px;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(10, 18, 9, 0.92), rgba(10, 18, 9, 0.36)),
      linear-gradient(90deg, rgba(10, 18, 9, 0.74), rgba(10, 18, 9, 0.22));
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 16px 44px;
  }

  h1 {
    font-size: 3.3rem;
  }

  .button {
    width: 100%;
  }

  .section,
  .contact-section {
    padding: 64px 16px;
  }

  .service-grid {
    gap: 14px;
  }

  .social-links {
    flex-wrap: wrap;
  }
}
