:root {
  --ink: #17211b;
  --muted: #5b665f;
  --paper: #fbfaf5;
  --white: #ffffff;
  --leaf: #2f6f4e;
  --leaf-dark: #17452f;
  --sun: #d59d39;
  --sky: #d8edf0;
  --clay: #a95d43;
  --line: rgba(23, 33, 27, 0.14);
  --shadow: 0 20px 60px rgba(23, 33, 27, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--paper);
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 72px);
  background: rgba(251, 250, 245, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 800;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), transparent 36%),
    var(--leaf);
  border-radius: 50%;
  box-shadow: inset 0 -6px 0 rgba(0, 0, 0, 0.12);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.15rem;
  text-transform: uppercase;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 30px);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--leaf-dark);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.9fr);
  min-height: calc(100vh - 82px);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(46px, 7vw, 92px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(251, 250, 245, 0.98), rgba(251, 250, 245, 0.88)),
    url("data:image/svg+xml,%3Csvg width='1400' height='900' viewBox='0 0 1400 900' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='1400' height='900' fill='%23d8edf0'/%3E%3Cpath d='M0 610 C190 520 300 670 500 575 C690 485 820 535 980 470 C1160 395 1280 430 1400 360 L1400 900 L0 900 Z' fill='%232f6f4e'/%3E%3Cpath d='M0 710 C210 650 330 735 520 670 C745 592 920 700 1120 610 C1240 558 1320 570 1400 535 L1400 900 L0 900 Z' fill='%2317452f'/%3E%3Cpath d='M86 520 h350 v70 H86z' fill='%23d59d39' opacity='.7'/%3E%3Cpath d='M848 260 h300 v60 H848z' fill='%23a95d43' opacity='.7'/%3E%3Ccircle cx='1120' cy='155' r='82' fill='%23f3cf77' opacity='.85'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
}

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

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

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 6vw, 5.8rem);
  line-height: 0.96;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.02;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.intro {
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.hero-logo-card {
  display: grid;
  min-height: 430px;
  align-items: center;
  justify-items: center;
  padding: clamp(14px, 3vw, 28px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9)),
    radial-gradient(circle at top left, rgba(213, 157, 57, 0.18), transparent 38%);
  border: 1px solid rgba(23, 33, 27, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-logo-card img {
  display: block;
  width: min(100%, 560px);
  height: auto;
  border-radius: 6px;
}

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

.trust-band div {
  padding: 22px clamp(18px, 5vw, 72px);
  background: var(--white);
}

.trust-band span,
.contact-card span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.trust-band strong {
  display: block;
  margin-top: 4px;
}

.section,
.split-section,
.contact-section {
  padding: clamp(54px, 8vw, 110px) clamp(18px, 5vw, 72px);
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.services-grid article {
  min-height: 220px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.services-grid p,
.work-copy p,
.contact-section p {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background: var(--white);
}

.work-visual {
  min-height: 430px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, transparent 0 58%, rgba(23, 69, 47, 0.95) 58%),
    radial-gradient(circle at 24% 24%, #f5d47f 0 14%, transparent 15%),
    linear-gradient(135deg, #d8edf0 0 46%, #2f6f4e 47% 58%, #a95d43 59% 70%, #f6f0df 71%);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.work-visual::before,
.work-visual::after {
  content: "";
  position: absolute;
  bottom: 36px;
  width: 34%;
  height: 14px;
  background: var(--sun);
  border-radius: 999px;
}

.work-visual::before {
  left: 10%;
}

.work-visual::after {
  right: 10%;
  background: var(--clay);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding-left: 28px;
  position: relative;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 12px;
  height: 12px;
  background: var(--sun);
  border-radius: 50%;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 28px;
  align-items: center;
  background: var(--leaf-dark);
  color: var(--white);
}

.contact-section .eyebrow,
.contact-section p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
}

.contact-card a {
  overflow-wrap: anywhere;
  font-size: 1.1rem;
  font-weight: 800;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid var(--line);
}

@media (max-width: 900px) {
  .hero,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-logo-card,
  .work-visual {
    min-height: 320px;
  }

  .trust-band,
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .site-nav {
    width: 100%;
    justify-content: space-between;
  }

  h1 {
    font-size: clamp(2.35rem, 14vw, 4rem);
  }

  .trust-band,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero-logo-card {
    min-height: auto;
    padding: 12px;
  }
}
