:root {
  --red: #c30010;
  --red-dark: #8f000c;
  --ink: #1b1718;
  --body: #4a4547;
  --muted: #8d8688;
  --line: #e8e4e4;
  --bg-soft: #f7f5f4;
  --on-dark: #c9c3c4;
}
* { box-sizing: border-box; }
body { margin: 0; font-family: 'Roboto', Arial, sans-serif; color: #232021; background: #fff; font-size: 16px; line-height: 1.6; }
h1, h2, h3 { font-family: 'Poppins', 'Trebuchet MS', sans-serif; margin: 0; color: var(--ink); line-height: 1.2; }
p { margin: 0; }
a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-dark); }
img { max-width: 100%; }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.site-header { border-bottom: 1px solid var(--line); background: #fff; position: sticky; top: 0; z-index: 10; }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 14px; padding-bottom: 14px; }
.site-header img.logo { height: 46px; width: auto; }
.nav { display: flex; align-items: center; gap: 26px; font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 600; }
.nav a { color: #232021; }
.nav a.active, .nav a:hover { color: var(--red); }
.nav a.muted { color: #6b6466; font-weight: 500; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; background: var(--red); color: #fff !important; padding: 14px 24px; border-radius: 6px; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 16px; }
.btn:hover { background: var(--red-dark); }
.btn.ghost { background: transparent; color: var(--red) !important; border: 2px solid var(--red); }
.btn.ghost:hover { background: #fdf1f2; }
.btn.inverse { background: #fff; color: var(--red) !important; }
.btn.outline-light { background: transparent; border: 2px solid #fff; color: #fff !important; }
.nav-toggle { display: none; }

.hero { background: var(--bg-soft); padding: 56px 0; }
.hero .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.kicker { display: flex; align-items: center; gap: 8px; font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 600; color: var(--red); letter-spacing: 0.04em; text-transform: uppercase; }
.hero h1 { font-size: clamp(30px, 4vw, 44px); font-weight: 800; margin: 18px 0; }
.hero .lede { font-size: 18px; color: var(--body); margin-bottom: 24px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 20px; }
.trust-row { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 22px; font-size: 14px; color: var(--body); font-weight: 500; }
.hero-img img { width: 100%; height: 480px; object-fit: cover; border-radius: 10px; box-shadow: 0 12px 32px rgba(27, 23, 24, 0.18); }
.hero-img figcaption { font-size: 13px; color: var(--muted); text-align: right; margin-top: 8px; }

.section { padding: 64px 0; }
.section.soft { background: var(--bg-soft); }
.section.dark { background: var(--ink); }
.section.dark h2 { color: #fff; }
.section.dark p { color: var(--on-dark); }
.section-head { max-width: 720px; margin-bottom: 36px; }
.section-head h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 700; margin-bottom: 10px; }
.section-head p { font-size: 17px; color: var(--body); }

.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.card { border: 1px solid var(--line); border-radius: 10px; padding: 26px; display: flex; flex-direction: column; gap: 12px; }
.card h3 { font-size: 19px; font-weight: 600; }
.card p { font-size: 15px; color: var(--body); }
.card svg { color: var(--red); }

.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.gallery-grid figure { margin: 0; display: flex; flex-direction: column; gap: 8px; }
.gallery-grid img { width: 100%; height: 300px; object-fit: cover; border-radius: 8px; }
.gallery-grid figcaption { font-size: 14px; color: var(--muted); }
.section.dark .gallery-grid figcaption { color: var(--on-dark); }

.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { padding: 8px 16px; background: #faeaec; border-radius: 999px; font-size: 14px; font-weight: 500; color: var(--red); }

.owner-box { background: var(--bg-soft); border-radius: 10px; padding: 30px; display: flex; flex-direction: column; gap: 16px; }
.owner-head { display: flex; align-items: center; gap: 18px; }
.owner-head img { width: 92px; height: 92px; object-fit: cover; object-position: 50% 30%; border-radius: 50%; flex-shrink: 0; }
.owner-head h2 { font-size: 23px; }

.faq-card { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 24px; }
.faq-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.faq-card p { font-size: 15px; color: var(--body); }

.cta-band { background: var(--red); padding: 44px 0; }
.cta-band .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; font-size: clamp(21px, 2.5vw, 26px); }
.cta-band p { color: #ffd9dc; margin-top: 6px; }

.site-footer { background: var(--ink); color: var(--on-dark); padding: 44px 0 28px 0; font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 24px; }
.footer-grid h4 { font-family: 'Poppins', sans-serif; color: #fff; font-size: 15px; margin: 0 0 12px 0; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-grid a { color: var(--on-dark); }
.footer-grid a:hover { color: #fff; }
.footer-logo { background: #fff; padding: 6px 10px; border-radius: 6px; display: inline-block; }
.footer-logo img { height: 40px; width: auto; display: block; }
.copyright { border-top: 1px solid #332e2f; padding-top: 18px; font-size: 13px; color: var(--muted); }

.breadcrumb { font-size: 14px; color: var(--muted); margin-bottom: 14px; }
.breadcrumb strong { color: var(--ink); font-weight: 500; }
.levels { display: flex; flex-direction: column; gap: 12px; }
.level { display: flex; gap: 18px; padding: 18px 20px; border: 1px solid var(--line); border-radius: 8px; align-items: baseline; }
.level.hot { border: 2px solid var(--red); background: #fdf1f2; }
.level .lv { font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--red); min-width: 64px; flex-shrink: 0; }
.checks { display: flex; flex-direction: column; gap: 10px; }
.checks li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--body); list-style: none; }
.checks { padding: 0; margin: 0; }
.checks svg { flex-shrink: 0; margin-top: 4px; color: #3a3536; }

@media (max-width: 860px) {
  .nav { display: none; }
  .nav.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #fff; padding: 20px 24px; border-bottom: 1px solid var(--line); gap: 16px; }
  .nav-toggle { display: inline-flex; background: none; border: 0; padding: 10px; cursor: pointer; }
  .site-header .header-call { display: inline-flex; width: 44px; height: 44px; padding: 0; border-radius: 6px; }
  .site-header .header-call span { display: none; }
  .hero .wrap, .grid-3, .grid-2, .gallery-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero-img img { height: 300px; }
  .cta-row .btn { width: 100%; }
  .gallery-grid img { height: 240px; }
  .section { padding: 44px 0; }
}
@media (min-width: 861px) and (max-width: 1100px) {
  .grid-3, .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
