:root {
  --ink: #12342d;
  --paper: #f4ecdd;
  --beige: #efe3cf;
  --line: #dbcdb7;
  --emerald: #047857;
  --emerald-dark: #064e3b;
  --emerald-soft: #d8efe5;
  --white: #ffffff;
}

* {
  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;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  padding: 16px clamp(18px, 4vw, 54px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(6, 78, 59, 0.84), rgba(6, 78, 59, 0));
}

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

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.18);
  font-size: 0.78rem;
}

.header-link {
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

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

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(6, 78, 59, 0.94), rgba(6, 78, 59, 0.66) 48%, rgba(6, 78, 59, 0.18)),
    linear-gradient(0deg, rgba(6, 78, 59, 0.68), rgba(6, 78, 59, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  padding: 112px 0 92px clamp(18px, 7vw, 96px);
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--emerald-soft);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(3.5rem, 8vw, 7.6rem);
  line-height: 0.9;
}

h2 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(2.1rem, 4.5vw, 4.2rem);
  line-height: 1;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.06rem, 2vw, 1.34rem);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border: 0;
  color: var(--white);
  background: var(--emerald);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.button:hover {
  background: var(--emerald-dark);
}

.simple-section,
.contact {
  padding: clamp(60px, 8vw, 104px) clamp(18px, 6vw, 80px);
}

.simple-section {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

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

.service-grid article {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.service-grid span {
  display: block;
  margin-bottom: 44px;
  color: var(--emerald);
  font-size: 0.82rem;
  font-weight: 850;
}

.service-grid h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
}

.service-grid p,
.contact-copy p {
  color: #566159;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(34px, 7vw, 82px);
  align-items: start;
  background: var(--beige);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid var(--line);
  background: var(--white);
}

label {
  display: grid;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 760;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cfc1a8;
  background: #fffdf8;
  color: var(--ink);
  font: inherit;
}

input {
  min-height: 48px;
  padding: 10px 12px;
}

textarea {
  min-height: 130px;
  padding: 12px;
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(4, 120, 87, 0.34);
  outline-offset: 2px;
}

.wide {
  grid-column: 1 / -1;
}

@media (max-width: 820px) {
  .hero-content {
    padding-left: 24px;
    padding-right: 24px;
  }

  .service-grid,
  .contact,
  .contact-form {
    grid-template-columns: 1fr;
  }
}

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

  .brand {
    font-size: 0.9rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
  }

  .header-link {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  h1 {
    font-size: clamp(3.2rem, 17vw, 4.7rem);
  }

  .button {
    width: 100%;
  }
}
