:root {
  --brown: #5a4f4d;
  --brown-dark: #312a28;
  --green: #009b49;
  --green-dark: #05733a;
  --stone: #ecebea;
  --grey: #757575;
  --white: #ffffff;
  --black: #111111;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(90,79,77,.16);
  backdrop-filter: blur(8px);
}
.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 26px;
}
.logo img { width: 178px; height: auto; }
.main-nav { margin-left: auto; display: flex; align-items: center; gap: 20px; }
.main-nav a {
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  color: var(--brown-dark);
}
.main-nav a:hover { color: var(--green); }
.lang-switch { display: flex; gap: 6px; }
.lang-switch button,
.nav-toggle {
  border: 1px solid rgba(90,79,77,.25);
  background: var(--white);
  color: var(--brown-dark);
  cursor: pointer;
  border-radius: 999px;
  font-weight: 800;
}
.lang-switch button { padding: 6px 9px; font-size: 12px; }
.lang-switch button.active { background: var(--green); color: var(--white); border-color: var(--green); }
.nav-toggle { display: none; padding: 8px 12px; font-size: 20px; }

.hero { position: relative; min-height: 670px; display: flex; align-items: center; overflow: hidden; }
.hero-media {
  position: absolute;
  inset: 0;
  background: url('assets/lom-backov.jpg') center/cover no-repeat;
  transform: scale(1.02);
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(17,17,17,.78), rgba(17,17,17,.35), rgba(17,17,17,.2)); }
.hero-content { position: relative; color: var(--white); padding: 84px 0; }
.eyebrow,
.section-label {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-weight: 900;
  color: var(--green);
  font-size: 13px;
}
.hero h1 { max-width: 760px; margin: 0; font-size: clamp(42px, 6vw, 72px); line-height: 1.05; }
.hero-text { max-width: 680px; margin: 24px 0 0; font-size: 21px; }
.hero-actions { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  border: 2px solid transparent;
}
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-dark); }
.btn-secondary { border-color: var(--white); color: var(--white); }
.btn-secondary:hover { background: var(--white); color: var(--brown-dark); }
.btn-map { background: var(--brown-dark); color: var(--white); margin-top: 12px; }
.btn-map:hover { background: var(--green); }

.section { padding: 88px 0; }
.section-light { background: var(--stone); }
.section-brown { background: var(--brown-dark); color: var(--white); }
.section-brown .section-label { color: #62d78f; }
.two-col { display: grid; grid-template-columns: .9fr 1.25fr; gap: 72px; align-items: start; }
h2 { margin: 0 0 16px; font-size: clamp(30px, 4vw, 46px); line-height: 1.12; color: var(--brown-dark); }
.section-brown h2 { color: var(--white); }
p { margin-top: 0; }
.section-head { max-width: 760px; margin-bottom: 34px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: var(--white);
  border: 1px solid rgba(90,79,77,.14);
  border-radius: 22px;
  padding: 30px;
  box-shadow: var(--shadow);
}
.card h3 { margin: 0 0 12px; font-size: 42px; color: var(--green); }
.card p { margin-bottom: 0; }
.note {
  margin-top: 24px;
  padding: 18px 22px;
  background: rgba(0,155,73,.1);
  border-left: 5px solid var(--green);
  border-radius: 14px;
  font-weight: 800;
}

.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 38px; align-items: stretch; }
.contact-line { font-size: 18px; }
.contact-box {
  background: var(--stone);
  border-radius: 20px;
  padding: 22px;
  margin: 22px 0;
}
.contact-box p { margin: 0 0 10px; }
.contact-box p:last-child { margin-bottom: 0; }
.contact-box a { color: var(--green-dark); font-weight: 900; text-decoration: none; }
.map-card {
  min-height: 420px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(90,79,77,.12);
}
.map-card iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }

.site-footer { background: var(--brown-dark); color: var(--white); padding: 24px 0; }
.footer-inner { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

@media (max-width: 920px) {
  .header-inner { min-height: 70px; flex-wrap: wrap; padding: 10px 0; }
  .logo img { width: 142px; }
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .main-nav {
    display: none;
    width: 100%;
    order: 3;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    border-top: 1px solid rgba(90,79,77,.14);
    padding-top: 8px;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 10px 0; width: 100%; }
  .lang-switch { order: 2; }
  .hero { min-height: 610px; }
  .two-col,
  .contact-grid { grid-template-columns: 1fr; gap: 26px; }
  .cards { grid-template-columns: 1fr; }
  .section { padding: 62px 0; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 24px, 1120px); }
  .hero h1 { font-size: 38px; }
  .hero-text { font-size: 18px; }
  .btn { width: 100%; }
  .lang-switch button { padding: 5px 7px; }
}
