:root {
  --bg: #050505;
  --bg-soft: #0d0d0d;
  --bg-elevated: #161616;
  --text: #f5f5f5;
  --muted: #dddddd;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --accent: #c1121f;
  --accent-dark: #7a0c14;
  --shadow: 0 36px 80px rgba(0, 0, 0, 0.38);
  --shadow-hard: 0 40px 100px rgba(0, 0, 0, 0.5);
  --radius-lg: 28px;
  --radius-md: 20px;
  --container: 1240px;
  --header-height: 80px;
}

html {
  background: var(--bg);
}

body {
  position: relative;
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.18), transparent 24%),
    radial-gradient(circle at 16% 76%, rgba(193, 18, 31, 0.12), transparent 18%),
    radial-gradient(circle at 86% 18%, rgba(193, 18, 31, 0.08), transparent 14%),
    linear-gradient(180deg, #090909 0%, #050505 28%, #080808 56%, #020202 100%);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at center, transparent 24%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.28));
  pointer-events: none;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.14;
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 18%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 100% 100%, 4px 4px, 6px 6px;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
}

.site-shell {
  min-height: 100vh;
  overflow: clip;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  padding: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(18px);
  transition:
    padding 0.25s ease,
    background-color 0.25s ease,
    backdrop-filter 0.25s ease,
    border-color 0.25s ease;
}

.site-header.is-scrolled {
  padding: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-height);
}

.brand {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: clamp(152px, 17vw, 218px);
  height: auto;
  filter: none;
}

.header-panel {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a,
.phone-link,
.hero-kicker,
.section-label {
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a,
.phone-link {
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a {
  position: relative;
  color: #111;
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.phone-link:hover,
.phone-link:focus-visible {
  color: #111;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.phone-link {
  color: #111;
  white-space: nowrap;
}

.menu-toggle {
  position: relative;
  z-index: 3;
  display: none;
  width: 54px;
  height: 54px;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 50%;
  background: transparent;
}

.menu-toggle span {
  position: absolute;
  left: 16px;
  width: 20px;
  height: 2px;
  background: #111;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease,
    top 0.25s ease;
}

.menu-toggle span:nth-child(1) {
  top: 19px;
}

.menu-toggle span:nth-child(2) {
  top: 26px;
}

.menu-toggle span:nth-child(3) {
  top: 33px;
}

.menu-toggle.is-active span:nth-child(1) {
  top: 26px;
  transform: rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  top: 26px;
  transform: rotate(-45deg);
}

.button,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease;
}

.button {
  border: 1px solid transparent;
  color: var(--text);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  box-shadow: 0 18px 48px rgba(193, 18, 31, 0.28);
}

.button:hover,
.button:focus-visible,
.button-ghost:hover,
.button-ghost:focus-visible {
  transform: translateY(-2px);
}

.button-ghost {
  border: 1px solid var(--line-strong);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.hero-section {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--header-height) + 92px) 0 110px;
  background:
    #050505 url('../img/kondor_banner_2k.png') center center / cover no-repeat;
}

.hero-noise {
  display: none;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: block;
}

.hero-copy {
  width: 50%;
  max-width: none;
  min-width: 320px;
  padding: 32px 36px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: rgba(5, 5, 5, 0.46);
  box-shadow: var(--shadow-hard);
  backdrop-filter: blur(8px);
}

.hero-kicker,
.section-label {
  margin-bottom: 18px;
  color: #ff5f67;
  font-size: 12px;
  font-weight: 800;
}

h1,
h2 {
  margin: 0;
  font-family: 'Archivo Black', sans-serif;
  line-height: 0.96;
  text-transform: uppercase;
}

h3 {
  margin: 0;
  font-family: 'Archivo Black', sans-serif;
  line-height: 1;
  text-transform: uppercase;
}

h1 {
  max-width: 900px;
  font-size: 55px;
  text-wrap: balance;
}

h2 {
  font-size: clamp(32px, 5vw, 54px);
}

.hero-lead,
.section-copy p,
.placeholder-card p {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.75;
}

.hero-lead {
  max-width: 680px;
  margin-top: 26px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}

.hero-link {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.hero-link:hover,
.hero-link:focus-visible {
  color: var(--text);
}

.hero-triggers {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.hero-triggers li {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1,
.hero-kicker {
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
}

.hero-triggers span {
  display: inline-flex;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(193, 18, 31, 0.8);
}


.section {
  padding: 56px 0 84px;
}

.section-intro {
  padding-top: 8px;
}

.section-heading {
  display: grid;
  gap: 18px;
  margin-bottom: 34px;
}

.section-intro-text {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.section-about,
.section-catalog {
  position: relative;
}

.section-proof {
  position: relative;
  background: url('../img/proof-bg-barbershop.png') center center / cover no-repeat;
}

.section-proof .container {
  position: relative;
  z-index: 1;
}

.section-contact {
  position: relative;
  background: #050505;
}

.section-contact .container {
  position: relative;
  z-index: 1;
}

.section-bundles {
  position: relative;
  background:
    linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url('../img/bundle-bg-barbershop.png') center center / cover no-repeat;
}

.section-bundles .container {
  position: relative;
  z-index: 1;
}

.section-about {
  background:
    linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url('../img/section-about-kondor-noir.png') center center / cover no-repeat;
}

.section-about .container {
  position: relative;
  z-index: 1;
}

.brand-story-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: start;
}

.brand-manifesto,
.principle-card,
.catalog-card,
.section-copy,
.placeholder-card {
  padding: 38px 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.03) 18%, rgba(0, 0, 0, 0.18) 100%),
    linear-gradient(180deg, #2e2e2e 0%, #171717 100%);
  box-shadow: var(--shadow);
}

.brand-manifesto {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  overflow: hidden;
}

.brand-manifesto::after {
  content: '';
  position: absolute;
  right: -48px;
  bottom: -48px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(193, 18, 31, 0.4), transparent 72%);
  filter: blur(12px);
}

.manifesto-tag,
.catalog-kicker,
.principle-index {
  color: #ff5f67;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-manifesto h3,
.catalog-card h3 {
  margin-top: 18px;
  margin-bottom: 18px;
  font-size: clamp(28px, 3vw, 42px);
}

.brand-manifesto p,
.principle-card p,
.catalog-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.aroma-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.aroma-list li {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(193, 18, 31, 0.28);
  border-radius: 999px;
  background: rgba(193, 18, 31, 0.08);
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 44px;
  text-transform: uppercase;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.principle-card {
  position: relative;
  min-height: 240px;
  overflow: hidden;
}

.principle-card::before {
  content: '';
  position: absolute;
  inset: 24px auto 24px 18px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), transparent);
}

.principle-index {
  display: inline-block;
  margin-bottom: 18px;
}

.principle-card h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.catalog-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 22px;
  grid-column: span 5;
  min-height: 260px;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
}

.catalog-card::after {
  content: '';
  position: absolute;
  inset: auto -80px -80px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(193, 18, 31, 0.22), transparent 72%);
}

.catalog-card-large {
  grid-column: span 7;
  min-height: 320px;
}

.catalog-card-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.catalog-card-link {
  margin-top: auto;
  padding-top: 18px;
}

.catalog-card h3 {
  font-size: 30px;
}

.catalog-card-visual {
  --catalog-visual-max-width: 176px;
  --catalog-visual-max-height: 324px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 12px;
}

.catalog-card-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 28px;
  background: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 14px 28px rgba(0, 0, 0, 0.1);
}

.catalog-card-visual img {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: var(--catalog-visual-max-width);
  max-height: var(--catalog-visual-max-height);
  object-fit: contain;
  object-position: center center;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.28));
}

.catalog-card-large .catalog-card-visual {
  --catalog-visual-max-width: 192px;
  --catalog-visual-max-height: 348px;
}

.catalog-card-visual-beard {
  --catalog-visual-max-width: 170px;
  --catalog-visual-max-height: 328px;
}

.catalog-card-visual-style {
  --catalog-visual-max-width: 142px;
  --catalog-visual-max-height: 332px;
}

.catalog-card-visual-clean {
  --catalog-visual-max-width: 184px;
  --catalog-visual-max-height: 322px;
}

.catalog-card-visual-skin {
  --catalog-visual-max-width: 170px;
  --catalog-visual-max-height: 334px;
}

.catalog-footer {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.product-card,
.bundle-intro,
.bundle-card {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.03) 18%, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(180deg, #2d2d2d 0%, #171717 100%);
  background-clip: padding-box;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.product-card::after,
.bundle-card::after,
.bundle-intro::after {
  content: '';
  position: absolute;
  inset: auto -72px -72px auto;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(193, 18, 31, 0.24), transparent 72%);
}

.product-card {
  display: grid;
  gap: 18px;
  grid-template-rows: auto 1fr auto;
}

.product-media {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 14px;
  min-height: 320px;
  padding: 0;
  border: none;
  border-radius: 5px;
  background: transparent;
  overflow: hidden;
}

.product-media img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  border-radius: 5px;
  object-fit: contain;
  object-position: center center;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.32));
}

.product-media::before {
  display: none;
}

.product-media-label,
.product-kicker,
.bundle-title,
.bundle-benefit {
  position: relative;
  z-index: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-media-label {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.78);
  font-family: 'Archivo Black', sans-serif;
  font-size: 13px;
  line-height: 1;
}



.product-kicker {
  margin-bottom: 10px;
  color: #ff5f67;
  font-size: 11px;
  font-weight: 800;
}

.product-copy {
  min-height: 0;
}

.product-copy h3 {
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.08;
}

.product-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.product-footer,
.bundle-footer,
.bundle-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.product-footer {
  padding-top: 4px;
  justify-content: flex-start;
}

.product-price,
.bundle-price {
  font-family: 'Archivo Black', sans-serif;
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
}

.button-small {
  min-height: 48px;
  padding: 0 20px;
  font-size: 11px;
}

.section-promo {
  padding: 0 0 84px;
}

.promo-banner {
  position: relative;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  min-height: 386px;
  padding: 42px 36px 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(118deg, rgba(193, 18, 31, 0.24) 0%, rgba(193, 18, 31, 0) 31%),
    linear-gradient(90deg, #181818 0%, #101010 48%, #050505 100%);
  box-shadow: var(--shadow-hard);
  overflow: hidden;
}

.promo-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 0 58%, rgba(255, 255, 255, 0.08) 58.2%, transparent 58.6%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 34%);
  opacity: 0.45;
  pointer-events: none;
}

.promo-banner::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46%;
  height: 100%;
  background:
    linear-gradient(135deg, transparent 0 42%, rgba(193, 18, 31, 0.22) 42.2%, transparent 70%),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04));
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.promo-content,
.promo-button {
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

.promo-content {
  min-width: 0;
  max-width: 620px;
}

.promo-label,
.promo-timer-label {
  margin: 0;
  color: rgba(245, 245, 245, 0.68);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.promo-banner h2 {
  max-width: 590px;
  margin: 16px 0 14px;
  font-size: 48px;
  line-height: 1.04;
}

.promo-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 800;
}

.promo-timer {
  margin-top: 28px;
}

.promo-timer-grid {
  display: grid;
  grid-template-columns: repeat(4, 56px);
  gap: 8px;
  width: 100%;
  margin-top: 8px;
}

.promo-time-card {
  box-sizing: border-box;
  display: grid;
  place-items: center;
  min-height: 58px;
  padding: 8px 6px;
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.04);
}

.promo-time-card strong {
  font-family: 'Archivo Black', sans-serif;
  font-size: 21px;
  line-height: 1;
}

.promo-time-card span {
  margin-top: 4px;
  color: rgba(245, 245, 245, 0.7);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.promo-button {
  min-width: 196px;
  margin: 0 0 22px;
}

.bundle-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

.bundle-intro {
  display: grid;
  gap: 14px;
  min-height: 100%;
  padding: 8px 0 4px;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  backdrop-filter: none;
}

.bundle-intro::after {
  display: none;
}

.bundle-intro h2 {
  width: 100%;
  max-width: none;
  margin-bottom: 0;
  font-size: clamp(28px, 3.4vw, 40px);
}

.bundle-intro p:not(.section-label) {
  width: 100%;
  max-width: none;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.bundle-intro .section-label,
.bundle-intro .button {
  justify-self: start;
}

.bundle-intro .button {
  margin-top: 10px;
}

.bundle-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.bundle-card {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  gap: 20px;
  align-items: start;
  padding: 24px 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03) 18%, rgba(0, 0, 0, 0.34) 100%),
    rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(12px);
}

.bundle-card-featured {
  background:
    linear-gradient(180deg, rgba(193, 18, 31, 0.26), rgba(255, 255, 255, 0.05) 20%, rgba(0, 0, 0, 0.34) 100%),
    rgba(17, 17, 17, 0.82);
}

.bundle-media,
.bundle-card-body {
  position: relative;
  z-index: 1;
}

.bundle-card-body {
  display: grid;
  grid-template-rows: auto 1fr auto;
  height: 100%;
}

.bundle-media {
  display: grid;
  align-items: center;
  justify-items: center;
  min-height: 220px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.03) 24%, rgba(0, 0, 0, 0.24) 100%),
    linear-gradient(135deg, rgba(193, 18, 31, 0.16), rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, #5a5a5a 0%, #242424 58%, #0d0d0d 100%);
  overflow: hidden;
}

.bundle-media img {
  width: 100%;
  max-width: 240px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.38));
}

.bundle-title {
  margin: 0;
  font-family: 'Archivo Black', sans-serif;
  font-size: 22px;
  line-height: 1.08;
}

.bundle-benefit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(193, 18, 31, 0.4);
  border-radius: 999px;
  background: rgba(193, 18, 31, 0.12);
  color: #ff6e75;
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.bundle-description {
  position: relative;
  z-index: 1;
  margin: 14px 0 20px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.bundle-footer {
  position: relative;
  z-index: 1;
}

.routine-layout,
.proof-layout,
.b2b-panel {
  display: grid;
  gap: 24px;
}

.routine-layout {
  grid-template-columns: 1fr;
}

.routine-steps,
.reviews-grid,
.b2b-benefits {
  display: grid;
  gap: 18px;
}

.routine-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.routine-step,
.routine-aside,
.pro-panel,
.review-card,
.b2b-benefit {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.03) 18%, rgba(0, 0, 0, 0.18) 100%),
    linear-gradient(180deg, #2c2c2c 0%, #171717 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.routine-step {
  display: grid;
  align-content: start;
  min-height: 100%;
}

.routine-step::after,
.routine-aside::after,
.pro-panel::after,
.review-card::after,
.b2b-benefit::after {
  content: '';
  position: absolute;
  inset: auto -72px -72px auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(193, 18, 31, 0.2), transparent 72%);
}

.routine-number,
.routine-badge,
.pro-kicker,
.review-source {
  position: relative;
  z-index: 1;
  color: #ff5f67;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.routine-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border: 1px solid rgba(193, 18, 31, 0.28);
  border-radius: 50%;
  background: rgba(193, 18, 31, 0.08);
}

.routine-step h3,
.routine-aside h3,
.pro-panel h3,
.review-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
  font-size: clamp(22px, 2.3vw, 28px);
}

.routine-step p,
.routine-aside p:not(.routine-badge),
.pro-panel p:not(.pro-kicker),
.review-text,
.b2b-copy p:not(.section-label),
.b2b-benefit p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.routine-aside {
  display: grid;
  align-content: start;
  min-height: 100%;
}

.routine-badge {
  display: inline-flex;
  width: fit-content;
  min-height: 36px;
  align-items: center;
  padding: 0 14px;
  margin-bottom: 18px;
  border: 1px solid rgba(193, 18, 31, 0.32);
  border-radius: 999px;
  background: rgba(193, 18, 31, 0.12);
}

.proof-layout {
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
}

.pro-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
}

.featured-review-media,
.featured-review-copy {
  position: relative;
  z-index: 1;
}

.featured-review-copy {
  display: grid;
  align-content: start;
}

.featured-review-media {
  display: grid;
  align-items: center;
  justify-items: center;
  width: 100%;
  min-height: 280px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.03) 18%, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(135deg, rgba(193, 18, 31, 0.16), rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, #525252 0%, #202020 58%, #0d0d0d 100%);
  overflow: hidden;
}

.featured-review-media img {
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.38));
}

.reviews-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.review-card {
  display: grid;
  align-content: start;
  min-height: 220px;
}

.review-source {
  display: inline-block;
  margin-bottom: 16px;
}

.review-text {
  margin-bottom: 22px;
}

.review-author {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.b2b-panel {
  position: relative;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  padding: 38px 40px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(193, 18, 31, 0.16), rgba(255, 255, 255, 0.05) 18%, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(180deg, #343434 0%, #171717 100%);
  box-shadow: var(--shadow-hard);
  overflow: hidden;
}

.b2b-panel::after {
  content: '';
  position: absolute;
  inset: auto -120px -120px auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(193, 18, 31, 0.34), transparent 72%);
}

.b2b-copy,
.b2b-benefits {
  position: relative;
  z-index: 1;
}

.b2b-copy h2 {
  margin-bottom: 18px;
}

.b2b-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.b2b-benefits {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.b2b-benefit strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 12px;
  font-family: 'Archivo Black', sans-serif;
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.92fr);
  gap: 24px;
  align-items: start;
}

.contact-copy,
.contact-panel,
.contact-card {
  position: relative;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.03) 18%, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(180deg, #2f2f2f 0%, #171717 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.contact-copy {
  padding: 8px 0 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.contact-copy::after,
.contact-panel::after,
.contact-card::after,
.site-footer::before {
  content: '';
  position: absolute;
  inset: auto -90px -90px auto;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(193, 18, 31, 0.24), transparent 72%);
}

.contact-copy::after {
  display: none;
}

.contact-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(28px, 3vw, 40px);
}

.contact-intro {
  margin: 0;
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.contact-card-label,
.lead-badge,
.footer-title {
  position: relative;
  z-index: 1;
  color: #ff5f67;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card h3,
.contact-panel h3 {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  margin-bottom: 16px;
  font-size: clamp(20px, 2.2vw, 26px);
}

.retail-list,
.channel-list,
.footer-links {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  list-style: none;
}

.retail-list,
.channel-list {
  display: grid;
  gap: 12px;
}

.retail-list li,
.channel-list li,
.footer-links li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.channel-list a,
.footer-links a {
  color: var(--text);
  text-decoration: none;
}

.channel-list a:hover,
.footer-links a:hover,
.channel-list a:focus-visible,
.footer-links a:focus-visible {
  color: #ff5f67;
}

.contact-panel {
  background:
    linear-gradient(180deg, rgba(193, 18, 31, 0.16), rgba(255, 255, 255, 0.04) 18%, rgba(0, 0, 0, 0.22) 100%),
    linear-gradient(180deg, #343434 0%, #171717 100%);
}

.lead-badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(193, 18, 31, 0.34);
  border-radius: 999px;
  background: rgba(193, 18, 31, 0.12);
}

.contact-form {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 10px;
}

.field span,
.field-checkbox span,
.form-note,
.form-status {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.field span,
.field-checkbox span {
  color: var(--text);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  outline: none;
  transition:
    border-color 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.field textarea {
  min-height: 132px;
  padding-top: 16px;
  padding-bottom: 16px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(193, 18, 31, 0.54);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 4px rgba(193, 18, 31, 0.12);
}

.field-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.field-checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--accent);
}

.form-captcha {
  min-height: 78px;
}

.form-captcha.is-invalid {
  border-radius: 18px;
  box-shadow: 0 0 0 1px rgba(255, 125, 134, 0.65);
}

.form-actions {
  display: grid;
  gap: 12px;
}

.form-note {
  margin: 0;
}

.form-status {
  min-height: 22px;
  margin: 0;
}

.form-status.is-success {
  color: #ff8b91;
}

.form-status.is-error {
  color: #ff7d86;
}

.form-status.is-pending {
  color: var(--muted);
}

.callback-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
}

.callback-modal[hidden] {
  display: none;
}

.callback-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(10px);
}

.callback-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 720px);
}

.callback-modal-panel {
  position: relative;
  padding: 34px;
  padding-right: 104px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(193, 18, 31, 0.16), rgba(255, 255, 255, 0.04) 18%, rgba(0, 0, 0, 0.22) 100%),
    linear-gradient(180deg, #343434 0%, #171717 100%);
  box-shadow: var(--shadow-hard);
}

.callback-modal-panel h3 {
  max-width: 520px;
  margin-top: 14px;
  line-height: 1.08;
}

.callback-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease;
}

.callback-modal-close::before,
.callback-modal-close::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

.callback-modal-close::before {
  transform: rotate(45deg);
}

.callback-modal-close::after {
  transform: rotate(-45deg);
}

.callback-modal-close:hover,
.callback-modal-close:focus-visible {
  transform: rotate(90deg);
  border-color: rgba(193, 18, 31, 0.34);
  background: rgba(193, 18, 31, 0.12);
}

.callback-modal-panel .contact-form {
  margin-top: 22px;
}

.site-footer {
  position: relative;
  margin-top: 24px;
  padding: 0 0 28px;
  background: linear-gradient(180deg, rgba(20, 20, 20, 0), rgba(14, 14, 14, 0.82));
}

.footer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(180px, 1fr));
  gap: 24px;
  padding: 30px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  position: relative;
  z-index: 1;
}

.footer-logo {
  width: 180px;
  margin-bottom: 18px;
  filter: invert(1);
}

.footer-brand p {
  margin: 0;
  max-width: 360px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.footer-title {
  margin: 0 0 14px;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-bottom {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-copy h2,
.placeholder-card h2 {
  margin-bottom: 18px;
}

.section-copy p,
.placeholder-card p:last-child {
  max-width: 880px;
}

.section-placeholder {
  padding-top: 0;
}

@media (max-width: 1100px) {
  .brand-story-layout {
    grid-template-columns: 1fr;
  }

  .brand-manifesto {
    position: relative;
    top: 0;
  }

  .catalog-card {
    grid-column: span 12;
  }

  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .promo-banner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .promo-banner h2 {
    font-size: 38px;
  }

  .promo-button {
    justify-self: start;
    margin: 0;
  }

  .bundle-layout {
    grid-template-columns: 1fr;
  }

  .bundle-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .routine-layout,
  .proof-layout,
  .b2b-panel,
  .contact-layout,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .routine-steps,
  .reviews-grid,
  .b2b-benefits,
  .contact-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .header-inner {
    align-items: center;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(190px, 0.95fr);
    justify-items: stretch;
    align-items: start;
    align-content: start;
    gap: 24px;
    max-height: calc(100svh - var(--header-height));
    padding: 24px 26px 28px;
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      transform 0.3s ease,
      opacity 0.3s ease,
      visibility 0.3s ease;
  }

  .header-panel.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav,
  .header-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    gap: 18px;
  }

  .site-nav a,
  .phone-link {
    font-size: 18px;
  }

  .header-actions,
  .site-nav {
    width: 100%;
    text-align: left;
  }

  .site-nav a,
  .header-actions .phone-link,
  .header-actions .button {
    width: 100%;
    text-align: left;
    justify-content: flex-start;
  }

  .header-actions {
    gap: 14px;
  }

  .header-actions .button {
    width: auto;
    min-width: 174px;
    padding: 0 22px;
    justify-content: center;
    text-align: center;
  }
  .hero-layout {
    display: block;
  }

  .hero-copy {
    width: min(60%, 720px);
  }
  .catalog-card {
    grid-template-columns: minmax(0, 1fr) 120px;
  }

  .catalog-card-visual {
    --catalog-visual-max-width: 126px;
    --catalog-visual-max-height: 248px;
    padding: 16px 10px;
  }

  .catalog-card-large .catalog-card-visual {
    --catalog-visual-max-width: 138px;
    --catalog-visual-max-height: 266px;
  }

  .catalog-card-visual-clean {
    --catalog-visual-max-width: 132px;
  }

  .catalog-card-visual-style {
    --catalog-visual-max-width: 112px;
    --catalog-visual-max-height: 256px;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 70px;
  }

  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .site-header {
    padding: 0;
  }

  .brand-logo {
    width: 143px;
  }

  .header-panel {
    grid-template-columns: minmax(0, 1fr) minmax(150px, 0.92fr);
    gap: 18px;
    padding: 18px 16px 22px;
  }

  .site-nav a,
  .phone-link {
    font-size: 16px;
  }

  .hero-section {
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 64px;
    background-position: 62% center;
    background-size: cover;
  }

  .hero-lead,
  .section-intro-text,
  .section-copy p,
  .placeholder-card p {
    font-size: 17px;
    line-height: 1.7;
  }

  .hero-actions {
    align-items: stretch;
  }

  .button,
  .button-ghost {
    width: 100%;
  }

  .hero-triggers {
    display: grid;
  }

  .hero-triggers li {
    justify-content: flex-start;
    min-height: 48px;
  }

  .hero-copy {
    width: 100%;
    min-width: 0;
    padding: 24px;
    border-radius: 24px;
  }

  .callback-modal {
    padding: 12px;
  }

  .callback-modal-panel {
    padding: 24px;
    padding-right: 24px;
    border-radius: 24px;
  }

  .callback-modal-panel h3 {
    max-width: none;
    padding-right: 56px;
  }

  .callback-modal-close {
    top: 14px;
    right: 14px;
    width: 46px;
    height: 46px;
  }

  .brand-manifesto,
  .principle-card,
  .catalog-card,
  .product-card,
  .bundle-intro,
  .bundle-card,
  .routine-step,
  .routine-aside,
  .pro-panel,
  .review-card,
  .b2b-benefit,
  .contact-copy,
  .contact-panel,
  .contact-card,
  .section-copy,
  .placeholder-card {
    padding: 24px;
    border-radius: 24px;
  }

  .b2b-panel {
    padding: 24px;
    border-radius: 24px;
  }

  .section-heading {
    gap: 14px;
    margin-bottom: 24px;
  }

  .principles-grid,
  .catalog-grid,
  .routine-steps,
  .reviews-grid,
  .b2b-benefits,
  .contact-cards,
  .field-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .section-promo {
    padding-bottom: 64px;
  }

  .promo-banner {
    gap: 24px;
    justify-items: stretch;
    padding: 22px;
    border-radius: 24px;
  }

  .promo-banner::after {
    width: 72%;
    opacity: 0.72;
  }

  .promo-banner h2 {
    margin-top: 14px;
    font-size: 27px;
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .promo-subtitle {
    font-size: 16px;
  }

  .promo-timer {
    margin-top: 24px;
  }

  .promo-timer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    max-width: 220px;
  }

  .promo-time-card {
    min-width: 0;
    min-height: 54px;
    padding: 7px 4px;
    border-radius: 8px;
  }

  .promo-time-card strong {
    font-size: 19px;
  }

  .promo-button {
    justify-self: start;
    width: 100%;
    max-width: 280px;
    min-width: 0;
    padding: 0 16px;
  }

  .principle-card {
    min-height: auto;
  }

  .principle-card h3 {
    font-size: 24px;
  }

  .catalog-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .catalog-card-visual {
    --catalog-visual-max-width: 136px;
    --catalog-visual-max-height: 252px;
    min-height: 252px;
    padding: 16px 10px;
  }

  .catalog-card-visual::before {
    inset: 0;
  }

  .catalog-card-visual-style {
    --catalog-visual-max-width: 118px;
    --catalog-visual-max-height: 244px;
  }

  .bundle-card {
    grid-template-columns: 1fr;
  }

  .bundle-media {
    min-height: 180px;
  }

  .bundle-intro,
  .bundle-stack {
    grid-template-columns: 1fr;
  }

  .product-media {
    min-height: 260px;
  }
}
