:root {
  --bg: #fbf9f5;
  --surface: #ffffff;
  --ink: #1f2430;
  --muted: #6b7280;
  --red: #d81f2a;
  --red-dark: #a3151d;
  --blue: #1a4f9c;
  --blue-dark: #123a75;
  --blue-soft: #eaf1fb;
  --red-soft: #fdecec;
  --border: #eae5da;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.55; -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
.wrap { max-width: min(1560px, 94vw); margin: 0 auto; padding: 0 20px; }
a { color: inherit; }

.hero-band {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 45%, var(--blue-dark) 100%);
  padding: 44px 0 64px; text-align: center; position: relative; overflow: hidden;
}
.hero-band::after {
  content: ""; position: absolute; inset: auto 0 -1px 0; height: 40px;
  background: var(--bg);
  clip-path: polygon(0 100%, 100% 100%, 100% 0, 75% 60%, 50% 10%, 25% 55%, 0 5%);
}
.logo-wrap {
  width: clamp(190px, 30vw, 280px); aspect-ratio: 1/1; margin: 0 auto 24px;
  background: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 16px 40px rgba(0,0,0,0.28); padding: 14px;
}
.logo { width: 100%; height: 100%; object-fit: contain; }
.eyebrow {
  display: inline-block; font-size: 0.82rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: #ffe9ea; font-weight: 700; margin-bottom: 8px;
}
h1 {
  font-size: clamp(2.1rem, 8vw, 3rem); line-height: 1.05; margin: 0 0 14px;
  font-weight: 800; letter-spacing: -0.01em; color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.lead { font-size: 1.08rem; color: #fff; opacity: 0.95; max-width: 46ch; margin: 0 auto; font-weight: 500; }

section { padding: 44px 0 8px; }
section.band-alt { background: var(--surface); }
.section-inner { padding-bottom: 36px; }
h2 { font-size: 1.55rem; margin: 0 0 8px; font-weight: 800; color: var(--blue-dark); }
.section-note { color: var(--muted); margin: 0 0 22px; font-size: 0.96rem; }
p { margin: 0 0 14px; }
p:last-child { margin-bottom: 0; }

.brands { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 560px) { .brands { grid-template-columns: repeat(3, 1fr); } }
.brand-card {
  background: var(--surface); border-radius: 16px; padding: 20px;
  border-top: 4px solid var(--red); box-shadow: 0 4px 16px rgba(20,20,40,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.brand-card:nth-child(2) { border-top-color: var(--blue); }
.brand-card:nth-child(3) { border-top-color: var(--red-dark); }
.brand-card:hover { transform: translateY(-4px); box-shadow: 0 10px 26px rgba(20,20,40,0.12); }
.brand-card .name { font-weight: 800; font-size: 1.05rem; margin-bottom: 4px; }
.brand-card .desc { color: var(--muted); font-size: 0.92rem; }

.branch-list { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.branch-chip {
  background: linear-gradient(120deg, var(--red), var(--blue)); color: #fff;
  border-radius: 999px; padding: 11px 20px; font-weight: 700; font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(20,20,40,0.12);
}

.contacts {
  background: var(--surface); border-radius: 16px; padding: 22px;
  box-shadow: 0 4px 16px rgba(20,20,40,0.06); border-left: 5px solid var(--blue);
}
.contacts dl { display: grid; grid-template-columns: auto 1fr; gap: 10px 16px; margin: 0; font-size: 0.95rem; }
.contacts dt { color: var(--muted); font-weight: 700; }
.contacts dd { margin: 0; }
.contacts a { color: var(--red); text-decoration: none; font-weight: 700; }
.contacts a:hover { text-decoration: underline; }

footer {
  margin-top: 20px; padding: 30px 0 44px; text-align: center;
  color: var(--muted); font-size: 0.82rem; background: var(--surface);
}
footer .req { margin-top: 4px; }
