@font-face {
  font-family: 'Arteks';
  src: url('typography/arteks-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Arteks Black';
  src: url('typography/arteks-black.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
}

:root {
  --green: #014921;
  --green-dark: #062f16;
  --beige: #FFEFCE;
  --orange: #F48722;
  --black: #0b0b0b;
  --text: #1d1d1d;
  --muted: rgba(255, 239, 206, 0.85);
  --line: rgba(255, 239, 206, 0.22);
  --shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Arteks', Arial, sans-serif;
  background: var(--beige);
  color: var(--text);
  line-height: 1.45;
}

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

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

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

.page-green {
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.06), transparent 28%),
    radial-gradient(circle at bottom right, rgba(244,135,34,0.08), transparent 18%),
    linear-gradient(135deg, var(--green-dark) 0%, var(--green) 48%, #0d5d31 100%);
  color: var(--beige);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(1, 73, 33, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 239, 206, 0.16);
}

.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
}

.nav-links a {
  color: var(--beige);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--orange);
}

.section {
  padding: 88px 0;
}

.title {
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -0.5px;
}

.title-sm {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.06;
  font-weight: 400;
}

.hero {
  padding: 56px 0 30px;
}

.hero h1 {
  max-width: 820px;
  margin-bottom: 24px;
}

.hero-panel {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 24px;
  align-items: center;
  margin-top: 20px;
}

.hero-image img {
  width: 100%;
  aspect-ratio: 1.1 / 0.78;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero-side {
  text-align: center;
  color: var(--muted);
  font-size: 15px;
}

.hero-side p {
  margin-bottom: 18px;
}

.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: 0.25s ease;
}

.btn-primary {
  background: var(--orange);
  color: #111;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid rgba(255, 239, 206, 0.35);
  color: var(--beige);
}

.btn-outline:hover {
  color: var(--orange);
  border-color: var(--orange);
}

.services-list {
  margin-top: 24px;
}

.service-row {
  display: grid;
  grid-template-columns: 0.9fr 1.15fr 0.8fr;
  gap: 28px;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.service-row:last-child {
  border-bottom: 1px solid var(--line);
}

.service-row h3 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
  font-weight: 400;
}

.service-row p {
  color: var(--muted);
  font-size: 16px;
}

.service-row .thumb img {
  width: 100%;
  max-width: 250px;
  height: 220px;
  object-fit: cover;
  margin-left: auto;
}

.quality-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: stretch;
}

.quality-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quality-copy p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 18px;
  max-width: 520px;
}

.quality-media img {
  width: 100%;
  min-height: 500px;
  object-fit: cover;
}

.cta-band {
  padding: 48px 0;
}

.cta-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.cta-wrap p {
  margin-top: 10px;
  color: var(--muted);
}

.contact-light {
  background: var(--beige);
  color: var(--green);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  align-items: start;
}

.contact-info h2 {
  font-family: 'Arteks Black', Arial, sans-serif;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.02;
  margin-bottom: 28px;
}

.contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
  color: var(--green);
}

.contact-item .icon {
  min-width: 28px;
  font-size: 24px;
}

.contact-note {
  margin-top: 26px;
  font-size: 28px;
  line-height: 1.12;
  max-width: 440px;
}

.contact-tags {
  margin-top: 22px;
  font-size: 16px;
  color: #244f36;
}

.form-card {
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(1, 73, 33, 0.12);
  padding: 20px;
  box-shadow: 0 14px 28px rgba(0,0,0,0.08);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(1, 73, 33, 0.18);
  background: #fff;
  font-family: 'Arteks', Arial, sans-serif;
  font-size: 14px;
}

.form-card textarea {
  min-height: 110px;
  resize: vertical;
}

.form-card .full {
  grid-column: 1 / -1;
}

.form-card button {
  border: 0;
  width: 100%;
  cursor: pointer;
}

.mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 14px;
  margin-top: 26px;
}

.mosaic-left img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.mosaic-right {
  display: grid;
  gap: 14px;
}

.mosaic-right img {
  width: 100%;
  height: 208px;
  object-fit: cover;
}

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

.service-card {
  background: rgba(255, 239, 206, 0.98);
  color: #1f1f1f;
  padding: 18px;
  box-shadow: var(--shadow);
}

.service-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  margin-bottom: 18px;
}

.service-card h3 {
  font-size: 24px;
  line-height: 1.05;
  font-weight: 400;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 14px;
  color: #444;
  margin-bottom: 16px;
}

.btn-small {
  display: inline-block;
  padding: 10px 16px;
  background: var(--orange);
  color: #111;
  font-size: 13px;
  font-weight: 700;
}

.about-intro {
  text-align: center;
  padding-top: 30px;
}

.about-intro .title {
  max-width: 980px;
  margin: 0 auto;
}

.about-why {
  margin-top: 34px;
  text-align: center;
}

.about-why h2 {
  font-family: 'Arteks Black', Arial, sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  margin-bottom: 12px;
}

.checks {
  list-style: none;
  font-size: 18px;
}

.pattern-band {
  margin-top: 50px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

.pattern-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
}

.tile {
  aspect-ratio: 1 / 1;
  position: relative;
}

.tile:nth-child(4n+1) { background: var(--beige); }
.tile:nth-child(4n+2) { background: var(--orange); }
.tile:nth-child(4n+3) { background: var(--green); }
.tile:nth-child(4n+4) { background: var(--black); }

.tile::before,
.tile::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.tile.circle::before {
  width: 70%;
  height: 70%;
  left: 15%;
  top: 15%;
  background: rgba(255,255,255,0.95);
}

.tile.half::before {
  width: 100%;
  height: 100%;
  left: -50%;
  top: 0;
  background: rgba(255,239,206,0.95);
}

.tile.dot::before {
  width: 18%;
  height: 18%;
  right: 14%;
  top: 40%;
  background: #111;
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 30px;
  align-items: center;
  margin-top: 42px;
}

.about-copy p {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 18px;
}

.symbol-box {
  max-width: 320px;
  margin: 0 auto;
}

.symbol-box img {
  width: 100%;
  box-shadow: var(--shadow);
}

.footer {
  padding: 38px 0 30px;
}

.footer-inner {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 20px;
}

.footer-brand img {
  height: 60px;
}

.footer-center {
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
}

.footer-right {
  text-align: right;
  font-size: 14px;
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero-panel,
  .service-row,
  .quality-grid,
  .cta-wrap,
  .contact-grid,
  .mosaic,
  .cards-grid,
  .about-split,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .service-row .thumb img {
    margin-left: 0;
  }

  .footer-center,
  .footer-right {
    text-align: left;
  }

  .pattern-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 0;
    min-height: auto;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 16px;
  }

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