:root {
  --red: #b23529;
  --red-deep: #8c281f;
  --ink: #32373c;
  --muted: #57585b;
  --line: #e8e4e0;
  --bg: #faf8f5;
  --card: #fff;
  --shadow: 0 14px 40px rgba(50, 55, 60, 0.08);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Georgia, serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}
a { color: var(--red); }
img { max-width: 100%; height: auto; }
.wrap { width: min(1100px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(250, 248, 245, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap,
.site-footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
}
.brand img { width: 36px; height: 36px; border-radius: 8px; }
.nav { display: flex; gap: 18px; flex-wrap: wrap; }
.nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--red); }

.hero {
  padding: 56px 0 24px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
.wordmark { width: min(320px, 100%); margin-bottom: 18px; }
.hero h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
}
.lede { font-size: 1.15rem; color: var(--muted); margin: 0 0 24px; max-width: 36rem; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-deep); }
.btn-ghost {
  background: transparent;
  color: var(--red);
  border: 1.5px solid var(--red);
}
.meta {
  display: flex;
  gap: 28px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.92rem;
}
.meta strong { display: block; color: var(--ink); font-size: 0.95rem; }

.phones {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.phone {
  width: min(260px, 42vw);
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: #111;
  overflow: hidden;
}
.phone.back { display: none; }
@media (min-width: 720px) {
  .phone.back { display: block; margin-top: 36px; }
}

.section { padding: 56px 0; }
.section h2 { margin: 0 0 8px; font-size: 1.8rem; letter-spacing: -0.02em; }
.intro { color: var(--muted); margin: 0 0 28px; max-width: 38rem; }
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card {
  background: var(--card);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow);
}
.card h3 { margin: 0 0 8px; font-size: 1.08rem; }
.card p { margin: 0; color: var(--muted); }

.shots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.shots img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.legal { padding: 40px 0 72px; max-width: 760px; }
.legal h1 { margin: 0 0 6px; }
.updated { color: var(--muted); margin: 0 0 24px; }
.legal h2 { margin: 28px 0 8px; font-size: 1.2rem; color: var(--red); }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 18px 0 28px;
  color: var(--muted);
  font-size: 0.92rem;
}
.site-footer a { color: var(--muted); text-decoration: none; margin-left: 14px; }
.site-footer a:hover { color: var(--red); }

@media (max-width: 800px) {
  .hero-grid, .grid, .shots { grid-template-columns: 1fr; }
  .site-header .wrap { flex-wrap: wrap; padding: 10px 0; }
}
