:root {
  --ink: #17201b;
  --forest: #183b2b;
  --forest-deep: #10291e;
  --sage: #dfe8df;
  --sand: #f3f0e9;
  --wood: #b86f3a;
  --white: #fff;
  --line: rgba(23, 32, 27, .14);
  --shadow: 0 24px 60px rgba(16, 41, 30, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--sand);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
.skip {
  position: fixed;
  left: 24px;
  top: -80px;
  z-index: 100;
  padding: 10px 16px;
  color: var(--white);
  background: var(--forest);
}
.skip:focus { top: 16px; }
.container {
  width: min(100%, 1280px);
  margin-inline: auto;
  padding-inline: 24px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(243, 240, 233, .94);
  backdrop-filter: blur(14px);
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-size: 1.06rem;
  font-weight: 800;
  letter-spacing: .08em;
}
.brand-mark {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--forest);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  font-size: .78rem;
}
.menu-toggle {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}
.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  width: 20px;
  height: 2px;
  display: block;
  margin: 5px auto;
  background: var(--ink);
  content: "";
  transition: .2s ease;
}
.site-menu {
  position: fixed;
  inset: 77px 0 auto;
  min-height: calc(100vh - 77px);
  padding: 28px 24px;
  display: none;
  flex-direction: column;
  gap: 4px;
  background: var(--sand);
}
.site-menu.open { display: flex; }
.site-menu a {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  font-size: 1.08rem;
  font-weight: 700;
}
.site-menu a[aria-current="page"] { color: var(--wood); }
.site-menu .nav-cta {
  margin-top: 16px;
  padding: 13px 20px;
  border: 0;
  border-radius: 3px;
  color: var(--white);
  background: var(--forest);
  text-align: center;
}
.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: end;
  color: var(--white);
  background: var(--forest-deep);
  overflow: hidden;
}
.hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 25, 18, .88) 0%, rgba(8, 25, 18, .62) 52%, rgba(8, 25, 18, .12) 100%);
  content: "";
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-block: 84px 72px;
}
h1, h2, h3 {
  margin: 0 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -.035em;
}
h1 { max-width: 820px; font-size: clamp(3.1rem, 9vw, 6.7rem); }
h2 { font-size: clamp(2.25rem, 6vw, 4.2rem); }
h3 { font-size: 1.65rem; }
.hero p {
  max-width: 610px;
  margin: 0 0 32px;
  font-size: clamp(1.06rem, 2vw, 1.28rem);
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  min-height: 51px;
  padding: 13px 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 3px;
  color: var(--white);
  background: var(--wood);
  text-decoration: none;
  font-weight: 800;
}
.button:hover { filter: brightness(.94); }
.button.secondary { border-color: rgba(255,255,255,.55); background: transparent; }
.button.dark { background: var(--forest); }
.section { padding-block: 80px; }
.section.white { background: var(--white); }
.section.dark { color: var(--white); background: var(--forest-deep); }
.section-head {
  max-width: 760px;
  margin-bottom: 40px;
}
.section-head p { margin: 0; font-size: 1.08rem; }
.service-grid, .value-grid { display: grid; gap: 16px; }
.service-card {
  min-height: 420px;
  position: relative;
  display: flex;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--forest);
  text-decoration: none;
}
.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.service-card:hover img { transform: scale(1.035); }
.service-card::after {
  position: absolute;
  inset: 25% 0 0;
  background: linear-gradient(transparent, rgba(7, 24, 17, .9));
  content: "";
}
.service-card-content { position: relative; z-index: 1; padding: 28px; }
.service-card h3 { margin-bottom: 8px; }
.service-card p { margin: 0; }
.value {
  padding: 30px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.45);
}
.value span {
  width: 44px;
  height: 3px;
  margin-bottom: 28px;
  display: block;
  background: var(--wood);
}
.value p { margin: 0; }
.split { display: grid; gap: 36px; align-items: center; }
.split-media { min-height: 420px; }
.split-media img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; }
.split-copy p { max-width: 610px; }
.list { padding: 0; margin: 28px 0; list-style: none; }
.list li {
  position: relative;
  padding: 13px 0 13px 30px;
  border-bottom: 1px solid var(--line);
}
.list li::before {
  position: absolute;
  left: 0;
  top: 19px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--wood);
  content: "";
}
.cta {
  padding: 44px 28px;
  color: var(--white);
  background: var(--forest);
}
.cta h2 { max-width: 760px; }
.cta p { max-width: 700px; margin-bottom: 28px; }
.page-hero { padding-block: 90px 70px; color: var(--white); background: var(--forest-deep); }
.page-hero h1 { font-size: clamp(3rem, 8vw, 5.8rem); }
.page-hero p { max-width: 680px; margin: 0; font-size: 1.15rem; }
.feature-photo { width: 100%; max-height: 670px; object-fit: cover; }
.form-grid { display: grid; gap: 20px; }
.field { display: grid; gap: 8px; }
.field label { font-weight: 800; }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid rgba(23, 32, 27, .28);
  border-radius: 2px;
  background: var(--white);
  color: var(--ink);
}
.field textarea { min-height: 150px; resize: vertical; }
.form-note { font-size: .92rem; color: #4c5d53; }
.contact-grid { display: grid; gap: 30px; }
.contact-card { padding: 32px; background: var(--white); box-shadow: var(--shadow); }
.contact-card a { text-decoration-color: var(--wood); text-underline-offset: 4px; }
.contact-card dl { margin: 0; }
.contact-card dt { margin-top: 20px; color: #58655d; font-size: .9rem; font-weight: 700; }
.contact-card dd { margin: 3px 0 0; font-size: 1.08rem; }
.site-footer { padding-block: 60px 28px; color: var(--white); background: #0b2117; }
.footer-grid { display: grid; gap: 32px; }
.footer-title { margin-bottom: 14px; font-family: Georgia, serif; font-size: 1.5rem; }
.footer-links { display: grid; gap: 8px; }
.footer-links a { text-decoration-color: rgba(255,255,255,.4); text-underline-offset: 4px; }
.legal {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.68);
  font-size: .88rem;
}

@media (min-width: 760px) {
  .container { padding-inline: 48px; }
  .section { padding-block: 112px; }
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr 1fr; gap: 64px; }
  .contact-grid { grid-template-columns: 1.2fr .8fr; }
  .form-grid.two { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

@media (min-width: 1040px) {
  .menu-toggle { display: none; }
  .site-menu {
    position: static;
    min-height: auto;
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 21px;
    background: transparent;
  }
  .site-menu a { padding: 10px 0; border: 0; font-size: .94rem; }
  .site-menu .nav-cta { margin: 0 0 0 4px; padding: 10px 17px; }
  .hero-content { padding-block: 130px 92px; }
  .value-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
