/* ============================================================
   ВЕРСИЯ 2 — bold-editorial / dark / sharp / dramatic
   Палитра: терракота + песок + тёмный шоколад
   ============================================================ */

:root {
  --primary-color: #B85C38;
  --secondary-color: #E8C99A;
  --accent-color: #d4724a;
  --light-color: #fdf6ee;
  --dark-color: #1a0f0a;
  --gradient-primary: linear-gradient(135deg, #B85C38 0%, #8c3e20 100%);
  --hover-color: #8c3e20;
  --background-color: #f9f1e6;
  --text-color: #3a2318;
  --border-color: rgba(184,92,56,0.30);
  --divider-color: rgba(184,92,56,0.15);
  --shadow-color: rgba(26,15,10,0.30);
  --highlight-color: #5D6D7E;
  --main-font: 'Playfair Display', serif;
  --alt-font: 'Roboto', sans-serif;
  --radius-sm: 0px;
  --radius-md: 0px;
  --radius-lg: 0px;
  --radius-btn: 0px;
  --shadow-card: 0 20px 60px rgba(26,15,10,0.20);
  --shadow-hover: 0 32px 80px rgba(26,15,10,0.35);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--alt-font);
  color: var(--text-color);
  background-color: var(--background-color);
  font-size: clamp(14px, 4vw, 17px);
  line-height: 1.75;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
  margin: 0 auto;
}
@media (min-width: 1024px) { .container { max-width: 1200px; } }

/* ── HEADER ── */
header {
  background-color: var(--dark-color);
  border-bottom: 3px solid var(--primary-color);
  padding: 14px 16px;
  position: relative;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.logo img { height: 44px; width: auto; }

.nav-toggle { display: none; }
.nav-toggle-label {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  min-height: 44px;
  justify-content: center;
  margin-left: auto;
}
.nav-toggle-label span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: var(--secondary-color);
  transition: all 0.3s ease;
}

.navigation { display: none; }
.navigation ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  background: var(--dark-color);
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 12px 16px;
  border-top: 1px solid var(--border-color);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.navigation ul li a {
  display: flex;
  align-items: center;
  padding: 11px 0;
  font-family: var(--alt-font);
  font-size: 14px;
  font-weight: 500;
  color: rgba(232,201,154,0.85);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(184,92,56,0.15);
  min-height: 44px;
  transition: color 0.2s;
}
.navigation ul li:last-child a { border-bottom: none; }
.navigation ul li a:hover { color: var(--secondary-color); }

.nav-toggle:checked ~ .navigation { display: block; }
.nav-toggle:checked + .nav-toggle-label span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle:checked + .nav-toggle-label span:nth-child(2) { opacity: 0; }
.nav-toggle:checked + .nav-toggle-label span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (min-width: 768px) {
  .nav-toggle-label { display: none; }
  .navigation { display: block !important; position: static; background: transparent; }
  .navigation ul {
    flex-direction: row;
    position: static;
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
    gap: 4px;
  }
  .navigation ul li a {
    padding: 8px 14px;
    border-bottom: none;
    min-height: auto;
  }
  .navigation ul li a:hover { background: rgba(184,92,56,0.15); }
}

/* ── HERO: diagonal-split ── */
.hero {
  min-height: 85vh;
  display: flex;
  position: relative;
  overflow: hidden;
}
.hero-left {
  width: 100%;
  background-color: var(--dark-color);
  padding: 60px 16px;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: center;
  z-index: 2;
}
.hero-left-inner { max-width: 520px; margin: 0 auto; }
.hero-eyebrow {
  font-family: var(--alt-font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--main-font);
  font-size: clamp(36px, 7vw, 82px);
  color: var(--secondary-color);
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 700;
}
.hero p {
  font-size: clamp(15px, 3vw, 18px);
  color: rgba(232,201,154,0.75);
  margin-bottom: 36px;
  max-width: 420px;
}
.hero-img {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 55%;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}
.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .hero-left { width: 50%; }
  .hero-left-inner { margin: 0; }
  .hero-img { display: block; }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  color: #fff;
  padding: 16px 36px;
  font-family: var(--alt-font);
  font-weight: 700;
  font-size: clamp(13px, 2.5vw, 15px);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  min-height: 44px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 30px rgba(184,92,56,0.35);
}
.btn-primary:hover {
  background: var(--hover-color);
  box-shadow: 0 16px 48px rgba(184,92,56,0.50);
}

/* ── INTRO ── */
.section-intro {
  padding: 80px 16px;
  background-color: var(--light-color);
  border-bottom: 1px solid var(--divider-color);
}
.section-intro .container { max-width: 800px; }
.section-intro h2 {
  font-family: var(--main-font);
  font-size: clamp(26px, 5vw, 44px);
  color: var(--dark-color);
  margin-bottom: 20px;
  line-height: 1.2;
}
.section-intro p { color: var(--text-color); margin-bottom: 14px; }

/* ── WIDE BANNER: expert-quote style ── */
.wide-banner {
  width: 100%;
  background-color: var(--dark-color);
  padding: 72px 16px;
  position: relative;
  overflow: hidden;
}
.wide-banner::before {
  content: '\201C';
  position: absolute;
  top: -30px;
  left: 24px;
  font-family: var(--main-font);
  font-size: 260px;
  color: rgba(184,92,56,0.12);
  line-height: 1;
  pointer-events: none;
}
.banner-quote {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}
.banner-quote blockquote {
  font-family: var(--main-font);
  font-size: clamp(20px, 4vw, 34px);
  color: var(--secondary-color);
  line-height: 1.4;
  font-style: italic;
  margin-bottom: 24px;
  padding-left: 24px;
  border-left: 4px solid var(--primary-color);
}
.banner-quote cite {
  font-family: var(--alt-font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-color);
}

/* ── FEATURES: timeline ── */
.section-features {
  padding: 80px 16px;
  background-color: var(--background-color);
}
.section-title {
  font-family: var(--main-font);
  font-size: clamp(24px, 5vw, 42px);
  color: var(--dark-color);
  margin-bottom: 10px;
  line-height: 1.2;
}
.section-subtitle {
  color: #6b5a4e;
  margin-bottom: 48px;
  font-size: clamp(14px, 3vw, 16px);
}
.features-timeline {
  position: relative;
  padding-left: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.features-timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}
.timeline-item {
  position: relative;
  padding: 0 0 40px 32px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -32px;
  top: 4px;
  width: 22px;
  height: 22px;
  background: var(--primary-color);
  border: 3px solid var(--background-color);
  border-radius: 0;
  box-shadow: 0 0 0 2px var(--primary-color);
}
.timeline-item h3 {
  font-family: var(--main-font);
  font-size: clamp(17px, 3vw, 22px);
  color: var(--dark-color);
  margin-bottom: 8px;
}
.timeline-item p { color: var(--text-color); font-size: 15px; }
.timeline-tag {
  display: inline-block;
  background: var(--primary-color);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .features-timeline { padding-left: 60px; }
  .features-timeline::before { left: 20px; }
  .timeline-item { padding-left: 48px; }
  .timeline-dot { left: -49px; }
}

/* ── IMG FULLWIDTH ── */
.section-img-full {
  padding: 0 0 80px;
  background-color: var(--light-color);
}
.img-full-wrap {
  width: 100%;
  height: 320px;
  overflow: hidden;
  margin-bottom: 36px;
}
@media (min-width: 768px) { .img-full-wrap { height: 420px; } }
.img-full-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img-full-text h2 {
  font-family: var(--main-font);
  font-size: clamp(22px, 4vw, 38px);
  color: var(--dark-color);
  margin-bottom: 18px;
}
.img-full-text p { color: var(--text-color); margin-bottom: 14px; }
.img-full-text ul {
  list-style: none;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.img-full-text ul li {
  padding-left: 20px;
  position: relative;
  color: var(--text-color);
  font-size: 15px;
}
.img-full-text ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

/* ── EXPERT QUOTE BLOCK ── */
.section-expert {
  padding: 80px 16px;
  background-color: var(--primary-color);
}
.expert-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.expert-inner blockquote {
  font-family: var(--main-font);
  font-size: clamp(18px, 4vw, 30px);
  color: #fff;
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 20px;
}
.expert-inner cite {
  font-family: var(--alt-font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary-color);
}

/* ── TESTIMONIALS: quotes ── */
.section-testimonials {
  padding: 80px 16px;
  background-color: var(--dark-color);
}
.section-testimonials .section-title { color: var(--secondary-color); }
.section-testimonials .section-subtitle { color: rgba(232,201,154,0.60); }
.testimonials-quotes {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-top: 16px;
}
.tquote-item {
  padding: 24px 0 24px 24px;
  border-left: 4px solid var(--primary-color);
  position: relative;
}
.tquote-mark {
  font-family: var(--main-font);
  font-size: 64px;
  color: rgba(184,92,56,0.30);
  line-height: 1;
  position: absolute;
  top: -10px;
  left: 24px;
}
.tquote-text {
  font-family: var(--main-font);
  font-size: clamp(15px, 3vw, 20px);
  color: rgba(232,201,154,0.90);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 14px;
  padding-top: 24px;
}
.tquote-stars { color: var(--primary-color); font-size: 15px; margin-bottom: 8px; }
.tquote-author {
  font-family: var(--alt-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary-color);
}

/* ── CONTACT ── */
.section-contact {
  padding: 80px 16px;
  background-color: var(--light-color);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  width: 100%;
}
@media (min-width: 768px) {
  .contact-inner {
    grid-template-columns: repeat(2, 1fr);
    width: 80%;
    margin: 0 auto;
  }
}
.contact-info h2 {
  font-family: var(--main-font);
  font-size: clamp(22px, 4vw, 34px);
  color: var(--dark-color);
  margin-bottom: 18px;
}
.contact-info p { color: var(--text-color); margin-bottom: 12px; font-size: 15px; }
.contact-form h3 {
  font-family: var(--main-font);
  font-size: clamp(18px, 3vw, 26px);
  color: var(--dark-color);
  margin-bottom: 22px;
  line-height: 1.3;
}
.form-group { margin-bottom: 16px; }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: var(--alt-font);
  font-size: 15px;
  color: var(--text-color);
  background: #fff;
  min-height: 44px;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.btn-submit {
  width: 100%;
  background: var(--primary-color);
  color: #fff;
  padding: 15px 24px;
  border: none;
  border-radius: var(--radius-btn);
  font-family: var(--alt-font);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  min-height: 44px;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(184,92,56,0.30);
  transition: background 0.2s, box-shadow 0.2s;
}
.btn-submit:hover {
  background: var(--hover-color);
  box-shadow: 0 16px 48px rgba(184,92,56,0.45);
}

/* ── FAQ ── */
.section-faq {
  padding: 80px 16px;
  background-color: var(--background-color);
}
.faq-list { margin-top: 36px; display: flex; flex-direction: column; gap: 0; }
.faq-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--divider-color);
}
.faq-item:first-child { border-top: 1px solid var(--divider-color); }
.faq-item h3 {
  font-family: var(--main-font);
  font-size: clamp(16px, 3vw, 20px);
  color: var(--dark-color);
  margin-bottom: 12px;
}
.faq-item p { color: var(--text-color); font-size: 15px; }

/* ── FOOTER ── */
footer {
  background-color: var(--dark-color);
  padding: 36px 16px 20px;
  text-align: center;
  border-top: 3px solid var(--primary-color);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
footer img[alt="logo"] { filter: brightness(0) invert(1); }
.footer-logo .logo img { height: 40px; }
.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.footer-nav ul li a {
  color: rgba(232,201,154,0.70);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-nav ul li a:hover { color: var(--secondary-color); }
.footer-copy {
  color: rgba(232,201,154,0.35);
  font-size: 12px;
  margin-top: 8px;
  border-top: 1px solid rgba(232,201,154,0.10);
  padding-top: 16px;
  width: 100%;
  text-align: center;
}
@media (min-width: 768px) {
  footer { text-align: left; }
  .footer-inner { flex-direction: row; align-items: center; justify-content: space-between; }
  .footer-nav ul { flex-direction: row; gap: 24px; }
}

.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }