:root {
  --bg: #fffaf5;
  --surface: #ffffff;
  --surface-2: #fff1e3;
  --text: #2f241e;
  --muted: #6c5c53;
  --primary: #c85d37;
  --primary-dark: #9f4526;
  --line: #eadccf;
  --shadow: 0 16px 42px rgba(77, 45, 23, 0.12);
  --radius: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Heebo', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(var(--container), calc(100% - 32px)); margin: 0 auto; }
.section { padding: 88px 0; }
.warm { background: linear-gradient(180deg, #fffaf5 0%, #fff3ea 100%); }
.accent { background: linear-gradient(180deg, #fff6ef 0%, #fff 100%); }

.site-header {
  position: sticky; top: 0; z-index: 30;
  backdrop-filter: blur(10px);
  background: rgba(255,250,245,0.82);
  border-bottom: 1px solid rgba(234,220,207,0.8);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 78px; gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 44px; height: 44px; display: inline-grid; place-items: center;
  background: var(--surface-2); border-radius: 14px; font-size: 24px;
}
.brand strong { display: block; font-size: 1.08rem; }
.brand small { color: var(--muted); }
.main-nav { display: flex; gap: 28px; font-weight: 500; }
.main-nav a { color: var(--muted); }
.main-nav a:hover { color: var(--primary-dark); }
.menu-toggle {
  display: none; border: 0; background: var(--surface-2); border-radius: 12px;
  width: 44px; height: 44px; font-size: 1.2rem; cursor: pointer;
}

.hero-grid, .split, .contact-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center;
}
.split.reverse { grid-template-columns: .95fr 1.05fr; }
.hero h1, h2 { line-height: 1.15; margin: 0 0 18px; }
.hero h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3rem); }
p { margin: 0 0 16px; color: var(--muted); }
.eyebrow {
  display: inline-block; margin-bottom: 16px; color: var(--primary-dark);
  font-weight: 700; letter-spacing: .02em;
}
.eyebrow.light { color: #fff2e9; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 30px 0; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 52px; padding: 0 22px; border-radius: 999px; font-weight: 700;
  transition: .2s ease; border: 1px solid transparent;
}
.button.primary { background: var(--primary); color: #fff; }
.button.primary:hover { background: var(--primary-dark); }
.button.secondary { background: transparent; border-color: var(--line); }
.button.secondary:hover { border-color: var(--primary); color: var(--primary-dark); }
.button.white { background: #fff; color: var(--primary-dark); }
.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 24px;
}
.hero-stats div, .benefit {
  background: var(--surface); border: 1px solid var(--line); border-radius: 20px;
  padding: 18px; box-shadow: var(--shadow);
}
.hero-stats strong { display: block; font-size: 1.5rem; color: var(--primary-dark); }
.hero-stats span { color: var(--muted); font-size: .96rem; }
.hero-card img, .media-card img, .info-card img, .gallery-item img {
  border-radius: 24px; box-shadow: var(--shadow);
}
.media-card.tall img {
  aspect-ratio: 0.92 / 1;
  object-fit: contain;
  object-position: center;
  background: #fffaf5;
}
.content-card, .form-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px; box-shadow: var(--shadow);
}
.content-card.soft { background: #fff9f3; }
.tick-list { margin: 18px 0 0; padding: 0; list-style: none; }
.tick-list li { padding-right: 28px; position: relative; margin-bottom: 10px; }
.tick-list li::before {
  content: '✓'; position: absolute; right: 0; top: 0; color: var(--primary); font-weight: 800;
}
.section-head { max-width: 760px; margin-bottom: 34px; }
.section-head.center { text-align: center; margin-inline: auto; }
.cards-3, .benefits-grid, .gallery-grid {
  display: grid; gap: 24px;
}
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.info-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
}
.info-card h3 { margin: 18px 22px 8px; font-size: 1.35rem; }
.info-card p { margin: 0 22px 24px; }
.benefits-grid { grid-template-columns: repeat(4, 1fr); }
.benefit strong { display: block; margin-bottom: 8px; font-size: 1.15rem; color: var(--primary-dark); }
.gallery-grid { grid-template-columns: repeat(4, 1fr); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1 / 1; }
.cta-band {
  background: linear-gradient(135deg, #cc643e, #a5482a);
  color: #fff;
}
.cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.contact-points { display: grid; gap: 14px; margin-top: 24px; }
.contact-points div {
  background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 16px 18px;
}
.contact-points strong { display: block; margin-bottom: 4px; }
.hm-contact-form label { display: block; margin-bottom: 14px; }
.hm-contact-form span { display: block; margin-bottom: 8px; font-weight: 500; }
.hm-contact-form input,
.hm-contact-form textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 16px; background: #fff;
  padding: 14px 16px; font: inherit;
}
.hm-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.hm-contact-form button {
  min-height: 52px; border: 0; border-radius: 999px; background: var(--primary);
  color: #fff; font: inherit; font-weight: 700; padding: 0 24px; cursor: pointer;
}
.site-footer {
  background: #2d211c; color: #f7ebe0; padding: 30px 0 18px;
}
.footer-inner, .footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
.footer-links { display: flex; gap: 18px; }
.page-simple .prose {
  background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 42px;
}

@media (max-width: 980px) {
  .hero-grid, .split, .split.reverse, .contact-grid, .cards-3, .benefits-grid, .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-grid, .split, .split.reverse, .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .main-nav {
    position: absolute; inset: calc(100% + 10px) 16px auto 16px; display: none; flex-direction: column;
    background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 18px;
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .menu-toggle { display: inline-grid; place-items: center; }
}

@media (max-width: 700px) {
  .section { padding: 64px 0; }
  .container { width: min(var(--container), calc(100% - 24px)); }
  .hero-stats, .cards-3, .benefits-grid, .gallery-grid, .hm-grid-2 {
    grid-template-columns: 1fr;
  }
  .cta-inner, .footer-inner, .footer-bottom {
    flex-direction: column; align-items: flex-start;
  }
  .brand small { display: none; }
}
.about-image img {
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center !important;
  background: #fffaf5;
}
