:root {
  --primary-color: #A0522D; /* Сиена / Терракота */
  --secondary-color: #5D2E17;
  --accent-color: #D2691E;
  --light-color: #FFF8F0;
  --dark-color: #2C1810;
  --background-color: #FFFFFF;
  --text-color: #4A3728;
  --border-color: #E6D5C7;
  --divider-color: rgba(160, 82, 45, 0.1);
  --shadow-color: rgba(93, 46, 23, 0.1);
  --highlight-color: #BC8F8F;
  --main-font: 'Ubuntu', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: var(--main-font);
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* HEADER & NAV (Exact Logic) */
header {
  background: var(--primary-color);
  padding: 1.2rem 0;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.line { width: 26px; height: 2px; background: white; }

.navigation ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.navigation a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 767px) {
  .hamburger { display: flex; }
  .navigation {
    display: none;
    width: 100%;
    background: var(--secondary-color);
    position: absolute;
    top: 100%;
    left: 0;
    padding: 2rem;
  }
  #menu-toggle:checked ~ .navigation { display: block; }
  .navigation ul { flex-direction: column; align-items: center; }
}

/* HERO (85vh) */
.hero {
  height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(44, 24, 16, 0.6);
}

.hero .container { position: relative; z-index: 2; }
.hero h1 { font-size: clamp(2.2rem, 6vw, 4rem); font-weight: 700; margin-bottom: 1.5rem; }

/* IMAGE-TEXT SECTIONS */
.image-text-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 6rem 0;
}

.image-text-section.reverse { direction: rtl; }
.image-text-section.reverse > div { direction: ltr; }
.image-text-section img { width: 100%; border-radius: 4px; border: 1px solid var(--border-color); padding: 10px; background: white; }

@media (max-width: 767px) {
  .image-text-section { grid-template-columns: 1fr; gap: 3rem; }
  .image-text-section.reverse { direction: ltr; }
}

/* RANDOM CONTENT BLOCK (Checklist Style) */
.checklist-block {
  padding: 5rem 0;
  background: var(--light-color);
  border-top: 1px solid var(--border-color);
}

.checklist-card {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border: 1px solid var(--border-color);
  box-shadow: 10px 10px 0 var(--border-color);
}

.check-item { display: flex; align-items: center; gap: 15px; margin-bottom: 1.2rem; font-size: 1.1rem; }
.check-icon { color: var(--accent-color); font-weight: bold; }

/* FEATURE CARDS (5 items) */
.feature-card {
  padding: 2rem;
  border-top: 4px solid var(--primary-color);
  background: #fff;
  box-shadow: 0 4px 20px var(--shadow-color);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

/* CONTACT (80% Desktop) */
#contact .contact-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}

@media (min-width: 768px) { #contact .contact-inner { width: 80%; margin: 0 auto; } }

.contact-form {
  flex: 1.2;
  min-width: 300px;
}

.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 1px solid var(--border-color);
  background: var(--light-color);
}

/* FAQ */
.faq-item { margin-bottom: 3rem; }
.faq-question { font-size: 1.3rem; font-weight: 700; color: var(--secondary-color); margin-bottom: 0.7rem; }

/* FOOTER */
footer { background: var(--dark-color); color: #D2B48C; padding: 4rem 0 2rem; }
footer img[alt="logo"] { filter: brightness(0) invert(1); }