:root {
  --brand: #c9152e;
  --brand-dark: #9f1024;
  --black: #111111;
  --soft-black: #1c1c1c;
  --cream: #fff7f8;
  --ink: #1a1718;
  --muted: #6f6365;
  --white: #ffffff;
  --line: #eadcdf;
  --shadow: 0 18px 50px rgba(52, 11, 18, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fffdfd;
  line-height: 1.6;
}

a { color: inherit; }
.container { width: min(1100px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,253,253,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201,21,46,.08);
}
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.nav { display: flex; gap: 22px; align-items: center; }
.nav a { text-decoration: none; font-weight: 800; font-size: 14px; color: #4e4547; }
.nav a:hover { color: var(--brand); }
.nav-contact {
  padding: 10px 14px;
  border-radius: 11px;
  background: var(--black);
  color: white !important;
}

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 14%, rgba(201,21,46,.20), transparent 29%),
    radial-gradient(circle at 11% 88%, rgba(0,0,0,.06), transparent 26%),
    linear-gradient(180deg, #fffdfd 0%, #fff5f6 100%);
}
.hero-grid {
  min-height: 620px;
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  align-items: center;
  gap: 58px;
  padding: 72px 0 84px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border: 1px solid rgba(201,21,46,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--brand); }
h1 {
  margin: 20px 0 18px;
  max-width: 750px;
  font-size: clamp(46px, 7vw, 82px);
  line-height: .98;
  letter-spacing: -.055em;
}
.hero p {
  max-width: 650px;
  font-size: 19px;
  color: var(--muted);
  margin: 0 0 30px;
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 13px;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid transparent;
  transition: .2s ease;
}
.btn-primary { background: var(--brand); color: white; box-shadow: 0 12px 30px rgba(201,21,46,.18); }
.btn-primary:hover { transform: translateY(-2px); background: var(--brand-dark); }
.btn-secondary { background: white; border-color: var(--line); color: var(--ink); }
.btn-secondary:hover { border-color: rgba(201,21,46,.35); }

.hero-card {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
}
.hero-card::before,
.hero-card::after {
  content: "";
  position: absolute;
  border-radius: 34px;
}
.hero-card::before {
  width: 88%;
  height: 88%;
  background: var(--brand);
  transform: rotate(7deg);
  box-shadow: var(--shadow);
}
.hero-card::after {
  width: 70%;
  height: 70%;
  border: 2px solid rgba(255,255,255,.55);
  transform: rotate(-8deg);
}
.logo-wrap {
  position: relative;
  z-index: 2;
  width: 250px;
  height: 250px;
  border-radius: 46px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(38,4,9,.25);
  border: 8px solid rgba(255,255,255,.93);
  background: #000;
}
.logo-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

.section { padding: 92px 0; }
.section-alt { background: var(--cream); }
.section-heading { max-width: 720px; margin-bottom: 38px; }
.section-heading h2 { margin: 0 0 12px; font-size: clamp(32px, 4.8vw, 52px); line-height: 1.05; letter-spacing: -.04em; }
.section-heading p { margin: 0; color: var(--muted); font-size: 17px; }

.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.info-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 10px 28px rgba(50,10,17,.05);
}
.info-card .kicker { color: var(--brand); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .09em; }
.info-card h3 { margin: 9px 0 6px; font-size: 20px; }
.info-card p { margin: 0; color: var(--muted); }
.info-card a { color: var(--brand); font-weight: 800; text-decoration: none; }

.business-box {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 34px;
  border-radius: 24px;
  background: var(--black);
  color: white;
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
}
.business-box h2 { margin: 0 0 8px; font-size: clamp(28px, 4vw, 42px); line-height: 1.1; }
.business-box p { margin: 0; color: #d3c7c9; }
.business-box .btn { background: var(--brand); color: white; }

.legal-page main { padding: 72px 0 92px; background: #fff8f9; }
.legal-card {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(28px, 5vw, 56px);
  box-shadow: 0 16px 46px rgba(50,10,17,.06);
}
.legal-card h1 { font-size: clamp(40px, 6vw, 64px); margin-top: 0; }
.legal-card h2 { margin-top: 38px; font-size: 23px; }
.legal-card p, .legal-card li { color: #5f5355; }
.legal-card strong { color: var(--ink); }
.legal-meta { color: var(--muted); font-size: 14px; margin-bottom: 32px; }
.legal-card a { color: var(--brand); }

.site-footer { background: #0f0f0f; color: #f8f1f2; padding: 46px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: start; }
.footer-brand { display: flex; gap: 16px; align-items: center; }
.footer-brand img { width: 56px; height: 56px; border-radius: 14px; object-fit: cover; }
.footer-company strong { display: block; font-size: 16px; }
.footer-company span { display: block; color: #c9babc; font-size: 14px; margin-top: 3px; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; justify-content: flex-end; }
.footer-links a { color: #f8f1f2; font-size: 14px; font-weight: 750; text-decoration: none; }
.footer-links a:hover { color: #ff526b; }
.footer-bottom { margin-top: 28px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.09); color: #998b8d; font-size: 13px; }

@media (max-width: 820px) {
  .nav a:not(.nav-contact) { display: none; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; padding: 58px 0 70px; gap: 40px; }
  .hero-card { min-height: 330px; order: -1; }
  .logo-wrap { width: 210px; height: 210px; }
  .info-grid { grid-template-columns: 1fr; }
  .business-box { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 28px, 1100px); }
  .header-inner { min-height: 70px; }
  .brand img { width: 52px; height: 52px; }
  .nav-contact { padding: 9px 11px; }
  .hero-card { min-height: 270px; }
  .logo-wrap { width: 180px; height: 180px; border-radius: 34px; }
  .section { padding: 72px 0; }
  .business-box { padding: 26px; }
}
