:root {
  --forest: #1e3722;
  --deep: #20493d;
  --green: #456f47;
  --gold: #d3af4a;
  --sand: #e7d3bb;
  --paper: #f7f1e8;
  --cream: #fbf7ef;
  --ink: #17221a;
  --muted: #66715f;
  --line: rgba(30, 55, 34, 0.16);
  --shadow: 0 22px 58px rgba(30, 55, 34, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  background: var(--forest);
  color: var(--sand);
  font-size: 14px;
}

.topbar__inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 247, 239, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header__inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

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

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--deep);
  font-weight: 700;
}

.nav a {
  padding: 8px 0;
}

.nav a:hover,
.nav a.is-active {
  color: var(--green);
}

.nav__cta {
  border-bottom: 2px solid var(--gold);
}

.hero {
  overflow: hidden;
  background:
    linear-gradient(105deg, rgba(30, 55, 34, 0.95) 0%, rgba(32, 73, 61, 0.82) 45%, rgba(69, 111, 71, 0.35) 100%),
    var(--forest);
  color: #fff;
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: 42px;
  align-items: center;
  min-height: 650px;
  padding: 72px 0 64px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--sand);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--gold);
}

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

h1 {
  max-width: 660px;
  margin-bottom: 22px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 610px;
  margin-bottom: 30px;
  color: #f1e7d8;
  font-size: 19px;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  background: var(--gold);
  color: var(--forest);
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover {
  background: #e0c067;
  transform: translateY(-1px);
}

.button--outline {
  background: transparent;
  color: #fff;
}

.button--outline:hover {
  background: rgba(211, 175, 74, 0.14);
}

.hero__image {
  position: relative;
  border: 1px solid rgba(231, 211, 187, 0.34);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.hero__image img {
  width: 100%;
  border-radius: 8px;
}

.image-caption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  max-width: 380px;
  padding: 13px 15px;
  border-radius: 4px;
  background: rgba(30, 55, 34, 0.9);
  color: #f7f1e8;
  font-size: 14px;
}

.section {
  padding: 86px 0;
}

.section--cream {
  background: var(--cream);
}

.section__head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.5fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 34px;
}

.section__head h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.12;
}

.section__head p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.service-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(30, 55, 34, 0.06);
}

.service-card__mark {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 4px;
  background: var(--forest);
  color: var(--gold);
  font-weight: 900;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.object-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.object-item {
  min-height: 260px;
  padding: 30px;
  border-right: 1px solid var(--line);
}

.object-item:last-child {
  border-right: 0;
}

.object-item strong {
  display: block;
  margin-bottom: 50px;
  color: var(--gold);
  font-size: 40px;
  line-height: 1;
}

.object-item h3 {
  margin-bottom: 10px;
  font-size: 23px;
}

.object-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.method {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: 30px;
  align-items: center;
}

.method__panel {
  padding: 34px;
  border-radius: 8px;
  background: var(--forest);
  color: #fff;
}

.method__panel p {
  color: #eadcca;
}

.method__list {
  display: grid;
  gap: 14px;
}

.method__list li {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--deep);
  list-style: none;
}

.method__list ul,
.method__list {
  margin: 0;
  padding: 0;
}

.contact-hero {
  background:
    linear-gradient(105deg, rgba(30, 55, 34, 0.96), rgba(32, 73, 61, 0.82)),
    var(--forest);
  color: #fff;
}

.contact-hero__inner {
  padding: 74px 0 68px;
}

.contact-hero p {
  max-width: 720px;
  margin-bottom: 0;
  color: #eadcca;
  font-size: 19px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
}

.contact-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.contact-card + .contact-card {
  margin-top: 16px;
}

.contact-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card strong {
  color: var(--forest);
  font-size: 20px;
}

.contact-note {
  padding: 32px;
  border-radius: 8px;
  background: var(--sand);
}

.contact-note h2 {
  font-size: 32px;
}

.contact-note p {
  color: #51483a;
}

.footer {
  background: var(--forest);
  color: var(--sand);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 32px 0;
}

.footer img {
  width: 196px;
  filter: brightness(0) invert(1);
}

.footer small {
  color: #cdbda7;
}

@media (max-width: 980px) {
  .topbar__inner,
  .header__inner,
  .footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav,
  .topbar__links {
    flex-wrap: wrap;
  }

  .hero__inner,
  .section__head,
  .method,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero__inner {
    min-height: auto;
  }

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

  .object-item {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .object-item:last-child {
    border-bottom: 0;
  }

  .object-item strong {
    margin-bottom: 22px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .brand img {
    width: 190px;
  }

  .nav {
    gap: 14px;
    font-size: 15px;
  }

  .hero__inner {
    padding: 52px 0 48px;
  }

  .button {
    width: 100%;
  }

  .image-caption {
    position: static;
    max-width: none;
    border-radius: 0 0 8px 8px;
  }

  .section {
    padding: 60px 0;
  }

  .contact-note {
    padding: 24px;
  }
}
