:root {
  --red: #e11d48;
  --red-dark: #9f1239;
  --red-hover: #be123c;
  --ink: #0f172a;
  --muted: #64748b;
  --paper: #f8fafc;
  --line: #e2e8f0;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 6vw;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-name {
  font-family: Montserrat, Inter, sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.95rem;
  line-height: 1.2;
}

.brand-tag {
  font-size: 0.75rem;
  color: var(--muted);
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 42px;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.nav-btn:hover {
  transform: translateY(-1px);
}

.nav-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.nav-btn-primary {
  background: var(--red);
  color: var(--white);
}

.nav-btn-primary:hover {
  background: var(--red-hover);
}

.nav-btn-secondary {
  background: var(--ink);
  color: var(--white);
}

.nav-btn-secondary:hover {
  background: #1e293b;
}

.nav-btn-outline {
  background: #fff1f2;
  color: var(--red);
  border-color: #fecdd3;
}

.nav-btn-outline:hover {
  background: #ffe4e6;
  border-color: var(--red);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 6vw 5rem;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 58%, #7f1d1d 100%);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.16), transparent 32%),
    repeating-linear-gradient(
      115deg,
      transparent 0,
      transparent 28px,
      rgba(255, 255, 255, 0.05) 28px,
      rgba(255, 255, 255, 0.05) 30px
    );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 1rem;
  font-family: Montserrat, Inter, sans-serif;
  font-size: clamp(2.3rem, 5vw, 4.1rem);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.hero h1 span {
  color: rgba(255, 255, 255, 0.72);
}

.hero p {
  margin: 0;
  max-width: 560px;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.86);
}

.section {
  padding: 4.5rem 6vw;
  scroll-margin-top: 88px;
}

.section-head {
  max-width: 640px;
  margin-bottom: 2rem;
}

.section h2 {
  margin: 0 0 0.6rem;
  font-family: Montserrat, Inter, sans-serif;
  font-size: 1.7rem;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.section p.lead {
  margin: 0;
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.card {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.icon-pill {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 12px;
  background: #ffe4e6;
  color: var(--red);
}

.contact {
  background: var(--ink);
  color: var(--white);
}

.contact .lead {
  color: #94a3b8;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.contact-item {
  padding: 1.25rem 0 0;
}

.contact-item span {
  display: block;
  margin-bottom: 0.35rem;
  color: #94a3b8;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-item a:hover,
.contact-item strong {
  color: var(--white);
}

.site-footer {
  padding: 1.2rem 6vw;
  background: #020617;
  color: #94a3b8;
  font-size: 0.85rem;
}

@media (max-width: 1100px) {
  .site-header {
    flex-wrap: wrap;
    padding: 0.85rem 5vw;
  }

  .top-nav {
    width: 100%;
  }

  .nav-btn {
    flex: 1;
    white-space: normal;
    text-align: center;
    line-height: 1.25;
  }
}

@media (max-width: 900px) {
  .cards,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 3.5rem 5vw 3.2rem;
  }
}
