:root {
  --beige: #e8e4d6;
  --beige-dark: #ddd8c8;
  --olive: #6f734a;
  --olive-hover: #5b5f3c;
  --navy: #1b2a4a;
  --text: #1c1c1c;
  --muted: #4a4a4a;
  --white: #ffffff;
  --max: 1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; height: auto; }

.header {
  background: var(--beige);
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(0,0,0,.04);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand img { width: 48px; height: 48px; }
.brand-name {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--navy);
  line-height: 1.25;
}
.nav {
  display: flex;
  align-items: center;
  gap: 6px 22px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav a {
  color: #2a2a2a;
  font-size: 15px;
  position: relative;
}
.nav a + a::before {
  content: "•";
  color: #8a8a8a;
  position: absolute;
  left: -14px;
  top: 0;
}
.nav a.active { font-weight: 600; }
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 26px;
  cursor: pointer;
  color: var(--navy);
}

.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2a2a2a center/cover no-repeat;
  color: #fff;
  text-align: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 12, .48);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding: 72px 24px;
}
.hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 600;
  letter-spacing: .01em;
  margin-bottom: 20px;
}
.hero p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.btn {
  display: inline-block;
  background: var(--olive);
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  transition: background .2s;
}
.btn:hover { background: var(--olive-hover); }

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px 24px;
}
.section h2 {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 28px;
  letter-spacing: .01em;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.split p + p { margin-top: 16px; }
.split img { width: 100%; object-fit: cover; }

.gallery {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 8px;
  margin: 16px 0 56px;
}
.gallery img { width: 100%; height: 280px; object-fit: cover; }

.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 40px;
  margin-top: 28px;
}
.features h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  background: #fff;
}
.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 14px;
}
.card h3 { font-size: 20px; margin-bottom: 8px; font-weight: 600; }
.card .price { color: var(--olive); font-weight: 600; margin: 10px 0; }
.card p { color: var(--muted); font-size: 15px; }

.faq details {
  border-bottom: 1px solid #ececec;
  padding: 14px 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq details p { margin-top: 8px; color: var(--muted); }

.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review {
  background: #f7f5ef;
  padding: 24px;
}
.review .who { margin-top: 12px; font-size: 14px; color: var(--muted); }

.blog-list { display: grid; gap: 32px; }
.blog-item {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  align-items: start;
}
.blog-item img { width: 100%; height: 180px; object-fit: cover; }
.meta { font-size: 13px; color: #777; margin-bottom: 8px; }

.footer {
  background: var(--beige);
  margin-top: 40px;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 36px 24px;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.footer img { width: 48px; height: 48px; margin: 0 auto; }
.footer p { font-size: 14px; color: #333; }
.footer .region { text-align: right; font-size: 14px; }

.muted { color: var(--muted); }

@media (max-width: 900px) {
  .split, .cards, .reviews, .blog-item, .gallery, .footer-inner {
    grid-template-columns: 1fr;
  }
  .gallery img { height: 220px; }
  .footer .region { text-align: center; }
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 0; right: 0;
    top: 100%;
    background: var(--beige);
    padding: 12px 24px 20px;
    gap: 12px;
  }
  .nav a + a::before { display: none; }
  .nav-toggle { display: block; }
  .header { position: relative; }
  .features { grid-template-columns: 1fr; }
}
