:root {
  --ink: #102016;
  --green: #1f3a21;
  --green-soft: #315b35;
  --gold: #c99a2e;
  --cream: #f8f4ea;
  --warm: #fcfaf5;
  --sage: #e5ecd9;
  --line: #cbd4c2;
  --muted: #65705f;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--warm);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 18px clamp(22px, 5vw, 72px);
  background: rgba(252, 250, 245, 0.92);
  border-bottom: 1px solid rgba(203, 212, 194, 0.72);
  backdrop-filter: blur(14px);
}

.brand img {
  width: 170px;
  height: auto;
}

.nav-tabs {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0;
  background: transparent;
}

.nav-tabs a {
  position: relative;
  min-width: auto;
  padding: 8px 0;
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  transition:
    color 180ms ease,
    opacity 180ms ease;
}

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

.nav-tabs a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.nav-tabs a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  min-height: calc(100vh - 82px);
  background: var(--cream);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px clamp(28px, 6vw, 82px);
}

.eyebrow,
.section-label {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 560px;
  margin-bottom: 24px;
  font-size: clamp(42px, 5.2vw, 68px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  max-width: 590px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid var(--green);
  font-weight: 800;
}

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

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

.hero-image {
  min-height: 540px;
  overflow: hidden;
}

.hero-image img,
.service-media img,
.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: clamp(72px, 9vw, 116px) clamp(22px, 5vw, 72px);
}

.about-section {
  background: var(--warm);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(42px, 7vw, 108px);
  align-items: start;
  border-top: 2px solid var(--gold);
  padding-top: 42px;
}

.about-copy {
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: 19px;
}

.service-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) minmax(420px, 1.12fr);
  gap: clamp(36px, 6vw, 76px);
  align-items: stretch;
  background: var(--green);
  color: var(--white);
}

.service-media {
  min-height: 620px;
  overflow: hidden;
}

.service-content {
  align-self: center;
  max-width: 700px;
}

.service-content h2 {
  margin-bottom: 34px;
}

.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 34px;
}

.service-list article {
  border-top: 2px solid rgba(232, 208, 154, 0.9);
  padding-top: 18px;
}

.service-list span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-weight: 900;
}

.service-list p,
.process-strip p,
.contact-card p {
  color: rgba(255, 255, 255, 0.78);
}

.process-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 0;
  background: var(--line);
}

.process-strip div {
  min-height: 210px;
  padding: 42px 34px;
  background: var(--cream);
}

.process-strip span {
  display: block;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 20px;
  font-weight: 900;
}

.process-strip p {
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(36px, 6vw, 76px);
  align-items: stretch;
  background: var(--cream);
}

.contact-card {
  align-self: center;
  max-width: 640px;
  border-top: 2px solid var(--gold);
  padding-top: 36px;
}

.contact-card p {
  color: var(--muted);
  font-size: 19px;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 30px;
  color: var(--green);
  font-weight: 800;
}

.contact-details a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-image {
  min-height: 540px;
  overflow: hidden;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(22px, 5vw, 72px);
  background: var(--green);
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}

@media (max-width: 900px) {
  .site-header,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-tabs {
    width: 100%;
    overflow-x: auto;
    gap: 20px;
  }

  .nav-tabs a {
    flex: 1;
    min-width: 92px;
  }

  .hero,
  .about-grid,
  .service-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-image,
  .service-media,
  .contact-image {
    min-height: 420px;
  }

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

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

  .brand img {
    width: 148px;
  }

  .hero-copy,
  .section {
    padding-left: 20px;
    padding-right: 20px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-subtitle,
  .about-copy,
  .contact-card p {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }
}
