:root {
  --bg: #eef1f4;
  --bg-soft: rgba(255, 255, 255, 0.78);
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: rgba(255, 255, 255, 0.96);
  --ink: #191919;
  --muted: #626971;
  --brand: #c62025;
  --brand-dark: #93181c;
  --brand-soft: rgba(198, 32, 37, 0.12);
  --line: rgba(25, 25, 25, 0.07);
  --shadow: 0 28px 60px rgba(34, 43, 54, 0.12);
  --shadow-strong: 0 32px 80px rgba(121, 27, 29, 0.22);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 18px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Onest", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(198, 32, 37, 0.07), transparent 24%),
    radial-gradient(circle at left 22%, rgba(141, 150, 162, 0.14), transparent 26%),
    linear-gradient(180deg, #f9fafb 0%, #eff2f5 58%, #e6ebf0 100%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.page-shell {
  overflow: clip;
}

.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;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: clamp(4.5rem, 7vw, 7rem) 0;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.72rem 1.05rem;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-kicker--light {
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
}

.section__heading {
  max-width: 48rem;
  margin-bottom: 2rem;
}

.section__heading h2,
.benefit-card h3,
.cta-panel h2,
.product-card__title {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.section__heading h2 {
  margin-top: 0.7rem;
  font-size: clamp(3.2rem, 7vw, 5.4rem);
  line-height: 0.92;
}

.section__heading p,
.benefit-card p,
.hero__text,
.product-card__benefits li,
.section-note {
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 1.4rem;
  border: 0;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: #fff;
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-dark) 100%);
  box-shadow: 0 18px 36px rgba(198, 32, 37, 0.26);
}

.button--ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.48);
  box-shadow: inset 0 0 0 1px rgba(198, 32, 37, 0.16);
}

.button--light {
  color: var(--brand-dark);
  background: #fff;
  box-shadow: 0 16px 34px rgba(24, 14, 15, 0.22);
}

.site-nav {
  position: absolute;
  top: 1.35rem;
  left: 50%;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 32px));
  transform: translateX(-50%);
}

.site-nav__brand {
  display: inline-flex;
  align-items: center;
  width: 118px;
  text-decoration: none;
}

.site-nav__brand img {
  width: 100%;
  filter: drop-shadow(0 14px 22px rgba(152, 22, 28, 0.14));
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.42rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 42px rgba(34, 43, 54, 0.08);
  backdrop-filter: blur(16px);
}

.site-nav__links a {
  padding: 0.72rem 1rem;
  border-radius: 999px;
  color: rgba(25, 25, 25, 0.78);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav__links a:last-child {
  color: #fff;
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-dark) 100%);
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(249, 250, 251, 0.99) 0%, rgba(249, 250, 251, 0.95) 38%, rgba(249, 250, 251, 0.62) 54%, rgba(249, 250, 251, 0) 74%),
    radial-gradient(circle at 28% 46%, rgba(198, 32, 37, 0.09), transparent 31%),
    linear-gradient(180deg, #ffffff 0%, #eef2f5 100%);
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  min-height: 100svh;
  padding-block: 8rem 5.5rem;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 36rem;
}

.hero__lead {
  margin: 0.9rem 0 0;
  color: var(--brand-dark);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__title {
  margin: 1rem 0 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: 6.8rem;
  font-weight: 400;
  line-height: 0.78;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.hero__title span {
  display: block;
}

.hero__title span:nth-child(2) {
  color: var(--brand-dark);
}

.hero__title span:nth-child(3) {
  padding-bottom: 0.06em;
  color: transparent;
  background: linear-gradient(90deg, #191919 0%, #5b5f65 48%, var(--brand) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero__text {
  max-width: 32rem;
  margin: 1.15rem 0 0;
  font-size: 1.05rem;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.hero__visual {
  position: absolute;
  inset: 0 0 0 43%;
  z-index: 1;
  min-height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, #f9fafb 0%, rgba(249, 250, 251, 0.88) 13%, rgba(249, 250, 251, 0.18) 34%, rgba(249, 250, 251, 0) 54%),
    linear-gradient(180deg, rgba(238, 242, 245, 0) 62%, rgba(238, 242, 245, 0.94) 94%, #eef2f5 100%);
  pointer-events: none;
}

.hero__image {
  width: 100%;
  height: calc(100% + 84px);
  min-height: calc(100svh + 84px);
  object-fit: cover;
  object-position: 52% 42%;
  transform: translateY(-34px);
}

.cta-card {
  position: absolute;
  margin: 0;
  padding: 1rem 1rem 0.8rem;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(240, 244, 247, 0.94) 100%);
  border: 1px solid rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.cta-card img {
  width: 100%;
  aspect-ratio: 1031 / 1280;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(17, 17, 17, 0.16));
}

.section--catalog {
  position: relative;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.25rem;
}

.product-card {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--brand) 0%, rgba(198, 32, 37, 0.18) 100%);
}

.product-card__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 300px;
  padding: 1rem;
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at top right, rgba(198, 32, 37, 0.12), transparent 30%),
    radial-gradient(circle at bottom left, rgba(133, 142, 151, 0.12), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(241, 245, 248, 0.92) 100%);
}

.product-card__photo {
  width: min(88%, 250px);
}

.product-card__label {
  position: relative;
  width: min(88%, 255px);
  min-height: 190px;
  padding: 1.2rem 1rem;
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  overflow: hidden;
  box-shadow: 0 26px 45px rgba(121, 27, 29, 0.18);
}

.product-card__label--medium strong {
  font-size: 1.72rem;
}

.product-card__label--long strong {
  font-size: 1.42rem;
}

.product-card__label::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.product-card__label span,
.product-card__label em,
.product-card__meta {
  position: relative;
  z-index: 1;
}

.product-card__label span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.product-card__label strong {
  position: relative;
  z-index: 1;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.04em;
  color: #fff;
}

.product-card__label em {
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.tone--ruby {
  background: linear-gradient(145deg, #c62025 0%, #6e7076 100%);
}

.tone--steel {
  background: linear-gradient(145deg, #8d9498 0%, #c62025 100%);
}

.tone--graphite {
  background: linear-gradient(145deg, #c62025 0%, #48494d 100%);
}

.tone--silver {
  background: linear-gradient(145deg, #d1d1d1 0%, #bc2528 100%);
}

.product-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 1.1rem 0.25rem 0.25rem;
}

.product-card__meta {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(145, 24, 28, 0.62);
}

.product-card__title {
  margin-top: 0.5rem;
  font-size: clamp(2rem, 4vw, 2.45rem);
  line-height: 0.92;
}

.product-card__accent {
  min-height: 1rem;
  margin-top: 0.35rem;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.product-card__benefits {
  list-style: none;
  margin: 1.15rem 0 1.4rem;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.product-card__benefits li,
.benefit-list li {
  position: relative;
  padding-left: 1.2rem;
  line-height: 1.55;
}

.product-card__benefits li::before,
.benefit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 6px rgba(198, 32, 37, 0.1);
}

.product-card .button {
  margin-top: auto;
  align-self: flex-start;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.25rem;
}

.benefit-card {
  grid-column: span 4;
  padding: 1.8rem;
  border-radius: var(--radius-xl);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.benefit-card--accent {
  background:
    linear-gradient(180deg, rgba(198, 32, 37, 0.06) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.benefit-card__index {
  display: inline-block;
  margin-bottom: 0.8rem;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(145, 24, 28, 0.54);
}

.benefit-card h3 {
  font-size: 2.2rem;
  line-height: 0.95;
}

.benefit-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  color: var(--muted);
}

.section--cta {
  padding-top: 1rem;
  padding-bottom: clamp(4rem, 7vw, 6rem);
}

.cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
  padding: clamp(2rem, 5vw, 3.5rem);
  border-radius: 40px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 24%),
    linear-gradient(135deg, #4a4040 0%, #b31f23 52%, #d13539 100%);
  color: #fff;
  box-shadow: var(--shadow-strong);
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  pointer-events: none;
}

.cta-panel__content {
  position: relative;
  z-index: 1;
}

.cta-panel h2 {
  margin-top: 1rem;
  font-size: clamp(3rem, 6vw, 4.8rem);
  line-height: 0.92;
}

.cta-panel .button {
  margin-top: 1.5rem;
}

.cta-panel__visual {
  position: relative;
  min-height: 360px;
}

.cta-card {
  width: min(40vw, 230px);
  background: rgba(255, 255, 255, 0.94);
}

.cta-card--one {
  top: 3%;
  left: 10%;
  transform: rotate(-10deg);
}

.cta-card--two {
  right: 10%;
  bottom: 3%;
  transform: rotate(8deg);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 1080px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .cta-panel {
    grid-template-columns: 1fr;
  }

  .hero__inner {
    min-height: auto;
    padding-top: 8rem;
    padding-bottom: 0;
  }

  .hero__content {
    max-width: none;
  }

  .hero__visual {
    position: relative;
    inset: auto;
    min-height: 620px;
    margin-inline: calc((100vw - min(1120px, calc(100vw - 32px))) / -2);
  }

  .hero__title {
    font-size: 6rem;
  }

  .product-card,
  .benefit-card {
    grid-column: span 6;
  }

  .benefit-card:last-child {
    grid-column: span 12;
  }

  .cta-panel__visual {
    min-height: 300px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(1120px, calc(100% - 24px));
  }

  .section-kicker {
    padding: 0.62rem 0.92rem;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }

  .site-nav {
    top: 1rem;
    width: min(1120px, calc(100% - 24px));
    padding: 0.45rem 0.45rem 0.45rem 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 18px 42px rgba(34, 43, 54, 0.1);
    backdrop-filter: blur(18px);
  }

  .site-nav__brand {
    width: 70px;
  }

  .site-nav__links {
    gap: 0.2rem;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .site-nav__links a {
    padding: 0.58rem 0.72rem;
    font-size: 0.66rem;
    letter-spacing: 0.08em;
  }

  .site-nav__links a:nth-child(2) {
    display: none;
  }

  .hero__inner {
    display: block;
    padding-top: 6.4rem;
    padding-bottom: 0;
  }

  .hero__visual {
    min-height: clamp(330px, 94vw, 430px);
    margin: 1.05rem -12px 0;
    border-radius: 0;
  }

  .hero__content {
    position: relative;
    z-index: 3;
    text-align: center;
  }

  .hero__title {
    margin-top: 0.75rem;
    font-size: clamp(3.2rem, 15.2vw, 4.25rem);
    line-height: 0.82;
    letter-spacing: 0.02em;
  }

  .hero__lead {
    max-width: 22rem;
    margin: 0.75rem auto 0;
    font-size: 0.72rem;
    line-height: 1.35;
    letter-spacing: 0.16em;
  }

  .hero__image {
    height: clamp(430px, 120vw, 540px);
    min-height: clamp(430px, 120vw, 540px);
    object-position: 50% 10%;
    transform: translateY(-38px) scale(1.03);
  }

  .hero__visual::before {
    background:
      linear-gradient(180deg, #f9fafb 0%, rgba(249, 250, 251, 0.16) 24%, rgba(249, 250, 251, 0) 48%),
      linear-gradient(180deg, rgba(238, 242, 245, 0) 50%, rgba(238, 242, 245, 0.92) 88%, #eef2f5 100%),
      radial-gradient(circle at 50% 16%, rgba(198, 32, 37, 0.1), transparent 48%);
  }

  .hero__text {
    max-width: 21.5rem;
    margin-top: 1rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .hero__actions {
    justify-content: center;
    margin-top: 1.45rem;
  }

  .hero__actions .button {
    width: min(100%, 250px);
    min-height: 56px;
    box-shadow:
      0 20px 42px rgba(198, 32, 37, 0.26),
      0 0 0 8px rgba(198, 32, 37, 0.06);
  }

  .product-card,
  .benefit-card {
    grid-column: span 12;
  }

  .cta-panel__visual {
    min-height: 250px;
  }

  .cta-card {
    width: min(46vw, 200px);
  }

  .cta-card--one {
    left: 0;
  }

  .cta-card--two {
    right: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
