/* Bolo Mania — design tokens */
:root {
  --color-red: #d62828;
  --color-red-dark: #b01e1e;
  --color-red-soft: rgba(214, 40, 40, 0.08);
  --color-lilac: #c9b8e8;
  --color-text: #1a1a1a;
  --color-muted: #5c5c5c;
  --color-border: #e8e8e8;
  --color-bg: #ffffff;
  --color-bg-soft: #fafafa;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
  --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-red);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--color-red-dark);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--color-red);
  color: #fff;
  font-weight: 600;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: min(1120px, 100% - 2rem);
  margin-inline: auto;
}

.container.narrow {
  width: min(720px, 100% - 2rem);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow 0.25s var(--ease);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding-block: 0.5rem;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand__logo {
  width: clamp(120px, 28vw, 160px);
  height: auto;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--color-bg-soft);
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  margin-inline: auto;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.2s var(--ease), opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__list a {
  color: var(--color-text);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
}

.nav__list a:hover {
  color: var(--color-red);
}

@media (max-width: 880px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    gap: 1rem;
    background: #fff;
    border-top: 1px solid var(--color-border);
    transform: translateX(100%);
    transition: transform 0.3s var(--ease);
    overflow-y: auto;
  }

  .nav.is-open {
    transform: translateX(0);
  }

  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .nav .btn--compact {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.35rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: var(--color-red);
  color: #fff;
  border-color: var(--color-red);
}

.btn--primary:hover {
  background: var(--color-red-dark);
  border-color: var(--color-red-dark);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  color: var(--color-red);
  border-color: var(--color-red);
}

.btn--ghost:hover {
  background: var(--color-red-soft);
  color: var(--color-red-dark);
  border-color: var(--color-red-dark);
}

.btn--light {
  background: #fff;
  color: var(--color-red);
  border-color: #fff;
}

.btn--light:hover {
  background: var(--color-lilac);
  color: var(--color-red-dark);
  border-color: var(--color-lilac);
}

.btn--compact {
  padding: 0.55rem 1.1rem;
  font-size: 0.875rem;
}

.btn--block {
  width: 100%;
}

/* Hero */
.hero {
  padding: clamp(2rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 5rem);
  background: linear-gradient(180deg, #fff 0%, var(--color-bg-soft) 100%);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    order: -1;
  }
}

.eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-red);
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.lead {
  margin: 0 0 1.5rem;
  font-size: 1.0625rem;
  color: var(--color-muted);
  max-width: 52ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero__badges li {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-muted);
  padding: 0.35rem 0.75rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
}

.hero__card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.hero__thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero__caption {
  margin: 0;
  padding: 0.85rem 1rem;
  font-size: 0.8125rem;
  color: var(--color-muted);
  border-top: 1px solid var(--color-border);
}

/* Sections */
.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section--soft {
  background: var(--color-bg-soft);
}

.section--accent {
  background: linear-gradient(135deg, var(--color-red) 0%, #9b1c1c 100%);
  color: #fff;
}

.section--accent a {
  color: #fff;
}

.section__head {
  margin-bottom: 2rem;
  text-align: center;
}

.section__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section__title--on-dark {
  color: #fff;
}

.section__intro {
  font-size: 1.125rem;
  color: var(--color-muted);
}

.section__subtitle {
  margin: 0;
  color: var(--color-muted);
  max-width: 56ch;
  margin-inline: auto;
}

.section--accent .section__subtitle,
.section--accent p {
  color: rgba(255, 255, 255, 0.92);
}

.narrow p {
  margin: 0 0 1rem;
  color: var(--color-muted);
}

.narrow p:last-child {
  margin-bottom: 0;
}

.narrow strong {
  color: var(--color-text);
}

/* Products */
.product-block {
  margin-bottom: 3rem;
}

.product-block__title {
  margin: 0 0 0.35rem;
  font-size: 1.125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-red);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.product-block__meta {
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
  color: var(--color-muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 900px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 0.75rem 1rem;
  align-items: center;
  padding: 0.85rem 1rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.product-card:hover {
  border-color: rgba(214, 40, 40, 0.25);
  box-shadow: var(--shadow-md);
}

.product-card__visual {
  width: 88px;
  height: 88px;
  border-radius: var(--radius-sm);
  background: linear-gradient(145deg, var(--color-red-soft), #fff);
  display: grid;
  place-items: center;
  color: var(--color-red);
}

.product-card__body {
  min-width: 0;
}

.product-card__name {
  margin: 0 0 0.2rem;
  font-size: 0.8125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--color-red);
  line-height: 1.25;
}

.product-card__price {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text);
}

.product-card__add {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0;
  background: #e8e8e8;
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  font-weight: 300;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
}

.product-card__add:hover {
  background: var(--color-red);
  transform: scale(1.05);
}

.product-card__add span {
  position: relative;
  top: -1px;
}

/* Info cards */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 800px) {
  .cards-3 {
    grid-template-columns: 1fr;
  }
}

.info-card {
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.info-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.info-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--color-muted);
}

.info-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--color-red-soft);
  color: var(--color-red);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}

/* Kits */
.kits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 720px) {
  .kits {
    grid-template-columns: 1fr;
  }
}

.kits__copy p {
  margin: 0 0 1.25rem;
  max-width: 48ch;
}

.kits__list {
  margin: 0;
  padding: 1.25rem 1.25rem 1.25rem 2.25rem;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.kits__list li {
  margin-bottom: 0.5rem;
}

.kits__list li:last-child {
  margin-bottom: 0;
}

/* Map */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

.map {
  width: 100%;
  height: min(420px, 55vh);
  border: 0;
  display: block;
}

.map-note {
  margin: 0.75rem 0 0;
  font-size: 0.8125rem;
  color: var(--color-muted);
  text-align: center;
}

/* Contact */
.contact {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 720px) {
  .contact {
    grid-template-columns: 1fr;
  }
}

.contact__list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}

.contact__list li {
  margin-bottom: 1.25rem;
}

.contact__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-muted);
  margin-bottom: 0.25rem;
}

.contact__list a {
  font-weight: 700;
  font-size: 1.05rem;
}

.contact__cta {
  padding: 1.5rem;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.contact__cta p {
  margin: 0 0 1rem;
  font-weight: 600;
}

.contact__cta .btn + .btn {
  margin-top: 0.5rem;
}

/* Footer */
.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--color-border);
  background: #fff;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 420px;
}

.footer__brand p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-muted);
}

.footer__copy {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--color-muted);
}
