:root {
  --green: #4b593f;
  --orange: #aa4907;
  --bg: #f6f6f2;
  --white: #ffffff;
  --text: #263026;
  --muted: #5d6657;
  --border: #dadfd3;
  --shadow: 0 18px 45px rgba(31, 39, 28, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

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

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.narrow {
  max-width: 900px;
}

.top-banner {
  background: var(--orange);
  color: #fff;
  text-align: center;
  padding: 12px 0;
  font-size: 0.95rem;
}

.top-banner p {
  margin: 0;
}

.hero {
  padding: 74px 0 58px;
  text-align: center;
  background:
    radial-gradient(circle at top left, rgba(170, 73, 7, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(75, 89, 63, 0.08), rgba(246, 246, 242, 1));
}

.hero-content {
  max-width: 920px;
}

.logo {
  width: min(660px, 100%);
  margin: 0 auto 28px;
}

.intro {
  margin: 0 auto;
  max-width: 800px;
  font-size: 1.13rem;
  color: var(--muted);
}

section {
  padding: 64px 0;
}

.eyebrow {
  display: block;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.center {
  text-align: center;
}

h1,
h2,
h3 {
  line-height: 1.15;
}

h1 {
  margin: 0 0 20px;
  color: var(--green);
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.03em;
}

h2 {
  margin: 0 0 24px;
  color: var(--green);
  font-size: clamp(1.85rem, 3vw, 2.55rem);
  text-align: center;
  letter-spacing: -0.03em;
}

.about {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.about p {
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.08rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 30px 26px;
  box-shadow: var(--shadow);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: var(--orange);
}

.card-number {
  color: rgba(75, 89, 63, 0.18);
  font-size: 3rem;
  line-height: 1;
  font-weight: 900;
  margin-bottom: 8px;
}

.card h3 {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 1.28rem;
}

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

.contacts {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 30px;
}

.contact-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
}

.contact-item .label {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-item p,
.contact-item a {
  margin: 0;
  color: var(--green);
  font-size: 1.05rem;
  text-decoration: none;
  word-break: break-word;
}

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

footer {
  background: var(--green);
  color: #fff;
  padding: 30px 0;
  text-align: center;
}

.footer-content p {
  margin: 6px 0;
}

@media (max-width: 920px) {
  .cards,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 54px 0 42px;
  }

  section {
    padding: 52px 0;
  }
}
