:root {
  --ink:     #1a1f2b;
  --ink-2:   #2a3240;
  --brand:   #d6202f;
  --brand-2: #ff3443;
  --gold:    #f5c518;
  --bg:      #ffffff;
  --muted:   #6a7485;
  --line:    #e6e9ef;
  --tint:    #f6f8fb;
}

* { box-sizing: border-box; }
html,body { margin:0; padding:0; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 22px; }

/* ---------- Top bar + Nav ---------- */
.top__bar {
  background: var(--ink);
  color: rgba(255,255,255,.75);
  font-size: 13px;
  padding: 8px 0;
}
.top__bar a { color: #fff; text-decoration: none; }
.top__inner { display:flex; justify-content:space-between; align-items:center; gap:16px; }
.hide-sm { display: inline; }
@media (max-width: 640px) { .hide-sm { display: none; } }

.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}
.brand { display:flex; gap: 14px; align-items:center; text-decoration:none; color: var(--ink); }
.brand__logo {
  display: grid; place-items: center;
  width: 48px; height: 48px; border-radius: 10px;
  background: var(--brand); color: #fff;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 22px; letter-spacing: .04em;
}
.brand__txt strong {
  display:block;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 24px; letter-spacing: .02em; text-transform: uppercase;
}
.brand__txt em {
  font-style: normal; color: var(--muted); font-size: 13px;
  letter-spacing: .14em; text-transform: uppercase;
}
.nav__links { display:flex; gap: 26px; }
.nav__links a {
  color: var(--ink); text-decoration: none; font-weight: 500; font-size: 15px;
}
.nav__links a:hover { color: var(--brand); }
@media (max-width: 780px) { .nav__links { display: none; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; padding: 12px 22px;
  border-radius: 4px; font-weight: 600;
  text-decoration: none; font-size: 15px;
  border: 2px solid transparent; cursor: pointer;
  transition: transform .12s, background .12s, border-color .12s, color .12s;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--brand); color: #fff; }
.btn--primary:hover { background: var(--brand-2); }
.btn--outline { background: #fff; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: #fff; }
.btn--cta { background: var(--ink); color: #fff; border-radius: 999px; padding: 10px 20px; font-size: 14px; }
.btn--cta:hover { background: var(--brand); }
.btn--small { padding: 8px 16px; font-size: 14px; }

/* ---------- Hero ---------- */
.hero {
  padding: 70px 0 80px;
  background:
    linear-gradient(135deg, var(--tint) 0%, #eef0f6 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ''; position:absolute; right:-120px; top:-120px;
  width:420px; height:420px; border-radius:50%;
  background: radial-gradient(circle, rgba(214,32,47,.12), transparent 60%);
}
.hero__grid {
  display:grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: center;
}
.kicker {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px; font-weight: 700;
  color: var(--brand);
  margin: 0 0 14px;
}
.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5.5vw, 62px);
  line-height: 1.05;
  letter-spacing: -.01em;
  margin: 0 0 18px;
}
.lede { font-size: 18px; color: var(--muted); margin: 0 0 28px; max-width: 560px; }
.hero__cta { display:flex; flex-wrap:wrap; gap: 12px; margin-bottom: 28px; }
.badges { list-style: none; padding:0; margin:0; display:flex; gap: 12px; flex-wrap:wrap; }
.badges li {
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 13px; font-weight: 600;
  color: var(--ink);
}
.promo {
  background: var(--ink);
  color: #fff;
  padding: 32px 28px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}
.promo::after {
  content: ''; position:absolute; right:-60px; bottom:-60px;
  width: 220px; height: 220px; border-radius:50%;
  background: var(--brand); opacity:.2;
}
.promo__tag {
  text-transform: uppercase; letter-spacing: .14em;
  font-size: 11px; color: var(--gold);
  margin: 0 0 6px; font-weight: 700;
}
.promo h3 {
  font-family:'Barlow Condensed',sans-serif; font-weight:800;
  font-size: 34px; margin: 0 0 10px;
}
.promo p { color: rgba(255,255,255,.8); margin: 0 0 18px; }

@media (max-width: 860px) { .hero__grid { grid-template-columns: 1fr; } }

/* ---------- Services ---------- */
.services { padding: 90px 0; }
.services h2 {
  font-family:'Barlow Condensed',sans-serif; font-weight:800;
  font-size: clamp(30px, 4vw, 44px); margin: 0 0 40px;
}
.services__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.services article {
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  transition: transform .15s, border-color .15s, box-shadow .15s;
}
.services article:hover {
  transform: translateY(-3px);
  border-color: var(--brand);
  box-shadow: 0 12px 30px -14px rgba(214,32,47,.35);
}
.s-icon { font-size: 28px; margin-bottom: 8px; }
.services h3 {
  font-family:'Barlow Condensed',sans-serif;
  font-size: 22px; margin: 0 0 8px;
  text-transform: uppercase; letter-spacing: .02em;
}
.services p { margin: 0; color: var(--muted); font-size: 15px; }
@media (max-width: 860px) { .services__grid { grid-template-columns: 1fr; } }

/* ---------- Brands ---------- */
.brands {
  background: var(--ink);
  color: #fff;
  padding: 90px 0;
}
.brands__inner { display:grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items:center; }
.brands h2 {
  font-family:'Barlow Condensed',sans-serif; font-weight:800;
  font-size: clamp(30px, 4vw, 44px); margin: 0 0 14px;
}
.brands p { color: rgba(255,255,255,.75); max-width: 480px; margin: 0 0 26px; }
.brands__cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.brands__cards span {
  padding: 26px 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  text-align: center;
  font-family:'Barlow Condensed',sans-serif; font-weight: 800;
  font-size: 22px; letter-spacing: .05em;
  text-transform: uppercase;
}
@media (max-width: 860px) {
  .brands__inner { grid-template-columns: 1fr; }
  .brands__cards { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Reviews ---------- */
.reviews { padding: 90px 0; background: var(--tint); }
.reviews h2 {
  font-family:'Barlow Condensed',sans-serif; font-weight:800;
  font-size: clamp(30px, 4vw, 44px); margin: 0 0 40px;
}
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.reviews blockquote {
  margin: 0;
  background: #fff;
  border-left: 4px solid var(--brand);
  padding: 24px 22px;
  border-radius: 0 10px 10px 0;
}
.reviews blockquote p { margin: 0 0 12px; color: var(--ink); font-style: italic; }
.reviews cite {
  font-style: normal;
  font-weight: 700;
  color: var(--muted);
  font-size: 14px;
}
@media (max-width: 860px) { .reviews__grid { grid-template-columns: 1fr; } }

/* ---------- Visit ---------- */
.visit { padding: 90px 0; }
.visit__grid { display:grid; grid-template-columns: 1.3fr 1fr; gap: 50px; align-items: center; }
.visit h2 {
  font-family:'Barlow Condensed',sans-serif; font-weight:800;
  font-size: clamp(30px, 4vw, 44px); margin: 0 0 14px;
}
.visit p { color: var(--muted); margin: 0 0 26px; }
.facts { list-style:none; padding:0; margin:0; }
.facts li {
  display:flex; padding: 16px 0;
  border-top: 1px solid var(--line);
  gap: 24px;
}
.facts li:last-child { border-bottom: 1px solid var(--line); }
.facts strong {
  min-width: 100px;
  text-transform: uppercase; letter-spacing: .12em;
  font-size: 12px; color: var(--muted);
  font-weight: 700; padding-top: 2px;
}
.facts span { flex:1; color: var(--ink); font-size: 15.5px; }
.facts a { color: var(--brand); text-decoration: none; font-weight: 600; }
.map {
  display:grid; place-content: center;
  aspect-ratio: 1;
  background: linear-gradient(160deg, var(--tint), #fff);
  border: 1px solid var(--line);
  border-radius: 18px;
  text-decoration: none; color: var(--ink);
  text-align: center;
  padding: 40px;
  transition: border-color .2s;
}
.map:hover { border-color: var(--brand); }
.map__pin { font-size: 56px; margin-bottom: 8px; }
.map p { color: var(--ink); margin: 0; }
.map strong { font-size: 18px; }
@media (max-width: 860px) { .visit__grid { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(255,255,255,.55); padding: 30px 0; font-size: 14px; }
.footer__inner { display:flex; justify-content:space-between; flex-wrap:wrap; gap: 10px; }
.footer p { margin: 0; }
.footer__meta { color: rgba(255,255,255,.4); }
