:root {
  --bg: #071116;
  --panel: rgba(15, 27, 35, 0.92);
  --panel-soft: rgba(18, 30, 39, 0.96);
  --panel-muted: rgba(255, 255, 255, 0.05);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #f4f7fa;
  --muted: #92a2b0;
  --muted-strong: #c9d3db;
  --red: #e31d2f;
  --red-strong: #9a0e1c;
  --teal: #86e6df;
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.35);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: min(1180px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(227, 29, 47, 0.18), transparent 32%),
    radial-gradient(circle at top right, rgba(134, 230, 223, 0.12), transparent 26%),
    linear-gradient(180deg, #071116 0%, #091319 46%, #0a151c 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 80%);
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

section[id] {
  scroll-margin-top: 120px;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-shell {
  position: relative;
  overflow-x: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 12, 16, 0.78);
  backdrop-filter: blur(18px);
}

.header-shell {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 16px;
  padding: 8px;
  background: #fff;
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.9),
    0 10px 22px rgba(0, 0, 0, 0.18);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  min-width: 0;
}

.brand-copy strong {
  display: block;
  font-family: "Bebas Neue", cursive;
  font-size: 1.88rem;
  letter-spacing: 0.08em;
  line-height: 0.95;
}

.brand-copy span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.site-nav a,
.footer-link {
  color: var(--muted-strong);
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 0.2s ease;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--red), var(--red-strong));
  color: #fff;
  box-shadow: 0 18px 34px rgba(227, 29, 47, 0.2);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.button-block {
  width: 100%;
}

.header-button {
  flex-shrink: 0;
}

.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 8px 14px;
  border: 1px solid rgba(255, 104, 116, 0.18);
  border-radius: 999px;
  background: rgba(227, 29, 47, 0.12);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-banner {
  padding: 24px 0 8px;
}

.hero-copy h1,
.section-heading h2,
.hero-product-head h2,
.product-head h3,
.media-fallback strong {
  font-family: "Bebas Neue", cursive;
  letter-spacing: 0.03em;
}

.banner-slider {
  position: relative;
}

.banner-slider-viewport {
  position: relative;
  aspect-ratio: 16 / 5.4;
  min-height: 220px;
  max-height: 380px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel-soft);
  box-shadow: var(--shadow);
}

.banner-slider-track {
  position: relative;
  height: 100%;
}

.banner-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition:
    transform 0.45s ease,
    opacity 0.45s ease;
}

.banner-slide.is-active {
  z-index: 2;
  opacity: 1;
  transform: translateX(0);
}

.banner-slide.is-prev {
  transform: translateX(-8%);
}

.banner-slide.is-next {
  transform: translateX(8%);
}

.banner-slide.is-hidden {
  transform: translateX(8%);
  pointer-events: none;
}

.banner-slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.banner-dot {
  width: 18px;
  height: 7px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  cursor: pointer;
  transition:
    width 0.24s ease,
    background-color 0.24s ease,
    transform 0.24s ease;
}

.banner-dot:hover,
.banner-dot:focus-visible {
  transform: translateY(-1px);
}

.banner-dot.is-active {
  width: 52px;
  background: linear-gradient(135deg, var(--red), #ff7b87);
}

.hero {
  padding: 12px 0 18px;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 24px;
  align-items: start;
}

.hero-copy {
  padding-top: 12px;
  animation: rise-in 0.7s ease both;
}

.hero-copy h1 {
  margin-top: 16px;
  max-width: 11ch;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.92;
}

.hero-copy p {
  margin-top: 14px;
  max-width: 56ch;
  color: var(--muted-strong);
  font-size: 0.94rem;
  line-height: 1.65;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.service-item {
  min-height: 104px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(11, 21, 27, 0.9);
  box-shadow: var(--shadow);
}

.service-item strong {
  display: block;
  font-size: 0.94rem;
  font-weight: 800;
}

.service-item span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.hero-product-card,
.product-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    var(--panel);
  box-shadow: var(--shadow);
}

.hero-product-card {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
  gap: 18px;
  padding: 22px;
  animation: rise-in 0.85s ease both;
}

.hero-product-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-product-head small {
  display: block;
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-product-head h2 {
  margin-top: 8px;
  font-size: clamp(2.7rem, 5vw, 4.4rem);
  line-height: 0.92;
}

.hero-product-note {
  color: var(--muted-strong);
  font-size: 0.9rem;
  line-height: 1.65;
}

.hero-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.product-section {
  padding: 16px 0 10px;
}

.testimonial-section {
  padding: 16px 0 10px;
}

.delivery-section {
  padding: 18px 0 10px;
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
}

.section-heading h2 {
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  line-height: 0.94;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.product-grid-actions {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.product-grid-toggle {
  width: min(100%, 260px);
}

.product-slider-shell {
  position: relative;
  overflow: hidden;
}

.product-slider-track {
  display: flex;
  gap: 14px;
  padding: 2px 0 10px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.product-card {
  overflow: hidden;
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease;
}

.product-card:hover,
.product-card:focus-within {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 30px 76px rgba(0, 0, 0, 0.42);
}

.product-card-slider,
.product-card-compact {
  min-width: 0;
}

.product-card-slider {
  flex: 0 0 calc((100% - (var(--cards-per-view, 4) - 1) * 14px) / var(--cards-per-view, 4));
}

.product-card-slider .product-card-body,
.product-card-compact .product-card-body {
  display: grid;
  gap: 12px;
  padding: 14px;
}

.product-card-slider .product-card-body {
  gap: 10px;
  padding: 12px;
}

.product-card-slider .product-head,
.product-card-compact .product-head {
  gap: 10px;
}

.product-card-slider .product-head h3,
.product-card-compact .product-head h3 {
  font-size: 1.48rem;
  line-height: 0.96;
}

.product-card-slider .product-head h3 {
  font-size: 1.26rem;
}

.product-card-slider .product-label,
.product-card-compact .product-label {
  min-height: 30px;
  padding: 0 11px;
  font-size: 0.68rem;
}

.product-card-slider .button,
.product-card-compact .button {
  min-height: 42px;
  font-size: 0.8rem;
}

.product-card-slider .button {
  min-height: 38px;
  padding: 0 14px;
}

.product-slider-dots,
.testimonial-slider-dots,
.delivery-slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
}

.product-slider-dot,
.testimonial-slider-dot,
.delivery-slider-dot {
  width: 18px;
  height: 7px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  cursor: pointer;
  transition:
    width 0.24s ease,
    background-color 0.24s ease,
    transform 0.24s ease;
}

.product-slider-dot:hover,
.product-slider-dot:focus-visible,
.testimonial-slider-dot:hover,
.testimonial-slider-dot:focus-visible,
.delivery-slider-dot:hover,
.delivery-slider-dot:focus-visible {
  transform: translateY(-1px);
}

.product-slider-dot.is-active,
.testimonial-slider-dot.is-active,
.delivery-slider-dot.is-active {
  width: 52px;
  background: linear-gradient(135deg, var(--red), #ff7b87);
}

.product-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 32px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-label-highlight {
  background: rgba(227, 29, 47, 0.12);
  border-color: rgba(255, 104, 116, 0.2);
}

.product-head {
  display: grid;
  gap: 12px;
}

.price-list {
  display: grid;
  gap: 10px;
}

.price-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: var(--panel-muted);
}

.price-list dt {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
}

.price-list dd {
  color: #fff;
  text-align: right;
  font-size: 0.84rem;
  font-weight: 800;
}

.compact-price-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.compact-price-item {
  display: grid;
  gap: 4px;
  padding: 9px 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: var(--panel-muted);
}

.compact-price-item small {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compact-price-item strong {
  color: #fff;
  font-size: 0.74rem;
  line-height: 1.35;
  font-weight: 800;
}

.product-price-row {
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(227, 29, 47, 0.14), rgba(227, 29, 47, 0.06)),
    rgba(255, 255, 255, 0.03);
}

.product-price-row small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-price-row strong {
  color: #fff;
  font-size: 0.98rem;
  line-height: 1.3;
  font-weight: 800;
}

.product-media {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 18px;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.16), transparent 30%),
    radial-gradient(circle at 84% 16%, rgba(227, 29, 47, 0.2), transparent 24%),
    linear-gradient(180deg, rgba(20, 31, 41, 0.98), rgba(12, 22, 29, 0.92));
}

.product-media::before {
  content: "";
  position: absolute;
  inset: auto -16% 10% 8%;
  height: 44%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(227, 29, 47, 0.4), rgba(255, 255, 255, 0));
  filter: blur(40px);
}

.product-media::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
}

.product-media-hero {
  min-height: 100%;
}

.product-media-slider,
.product-media-compact {
  aspect-ratio: 16 / 13;
  min-height: 170px;
}

.product-media-slider {
  aspect-ratio: 16 / 10;
  min-height: 138px;
  padding: 14px;
}

.product-media-hero {
  aspect-ratio: auto;
}

.banner-media {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(227, 29, 47, 0.22), rgba(255, 255, 255, 0.04)),
    linear-gradient(180deg, rgba(18, 30, 39, 0.98), rgba(12, 22, 29, 0.94));
}

.banner-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.2)),
    radial-gradient(circle at center, transparent 20%, rgba(0, 0, 0, 0.15) 100%);
}

.banner-image {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: fill;
  object-position: center;
}

.media-badge,
.media-hint {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border-radius: 999px;
  font-weight: 800;
}

.media-badge {
  top: 16px;
  left: 16px;
  min-height: 30px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.media-hint {
  right: 16px;
  bottom: 16px;
  min-height: 30px;
  padding: 0 12px;
  background: rgba(7, 17, 22, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted-strong);
  font-size: 0.68rem;
}

.product-card-slider .media-hint {
  display: none;
}

.product-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 22px 38px rgba(0, 0, 0, 0.42));
}

.product-media.is-fallback {
  display: flex;
  align-items: flex-end;
}

.banner-media.is-fallback {
  background:
    linear-gradient(135deg, rgba(227, 29, 47, 0.18), rgba(255, 255, 255, 0.04)),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.04) 0,
      rgba(255, 255, 255, 0.04) 24px,
      rgba(255, 255, 255, 0.01) 24px,
      rgba(255, 255, 255, 0.01) 48px
    ),
    linear-gradient(180deg, rgba(18, 30, 39, 0.98), rgba(12, 22, 29, 0.94));
}

.media-fallback {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100%;
  width: 100%;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 20px;
}

.media-fallback small,
.media-fallback span {
  color: var(--muted-strong);
  font-size: 0.8rem;
  line-height: 1.5;
}

.media-fallback strong {
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  line-height: 0.92;
}

.testimonial-slider-shell {
  position: relative;
  overflow: hidden;
}

.testimonial-slider-track {
  display: flex;
  gap: 14px;
  padding: 2px 0 10px;
  transition: transform 0.55s ease;
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 calc((100% - (var(--testimonial-cards-per-view, 5) - 1) * 14px) / var(--testimonial-cards-per-view, 5));
  display: grid;
  align-content: start;
  gap: 16px;
  min-width: 0;
  min-height: 190px;
  padding: 20px 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    var(--panel);
  box-shadow: var(--shadow);
}

.testimonial-rating {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(227, 29, 47, 0.12);
  border: 1px solid rgba(255, 104, 116, 0.18);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.testimonial-message {
  color: var(--muted-strong);
  font-size: 0.84rem;
  line-height: 1.65;
  min-height: calc(1.65em * 2);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.testimonial-meta {
  display: grid;
  gap: 4px;
  margin-top: auto;
}

.testimonial-meta strong {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
}

.testimonial-meta span,
.testimonial-meta small {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.5;
}

.testimonial-meta small {
  color: var(--teal);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.delivery-slider-shell {
  position: relative;
  overflow: hidden;
}

.delivery-slider-track {
  display: flex;
  gap: 14px;
  padding: 2px 0 10px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.delivery-card {
  position: relative;
  flex: 0 0 calc((100% - (var(--delivery-cards-per-view, 3) - 1) * 14px) / var(--delivery-cards-per-view, 3));
  min-width: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
  box-shadow: var(--shadow);
  transition:
    transform 0.24s ease,
    border-color 0.24s ease;
}

.delivery-card:hover,
.delivery-card:focus-within {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}

.delivery-card::after {
  content: "";
  position: absolute;
  inset: 42% 0 0;
  background: linear-gradient(180deg, rgba(7, 17, 22, 0), rgba(7, 17, 22, 0.92));
  pointer-events: none;
}

.delivery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.delivery-card-copy {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  display: grid;
  gap: 6px;
}

.delivery-card-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(227, 29, 47, 0.14);
  border: 1px solid rgba(255, 104, 116, 0.2);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.delivery-card-copy strong {
  color: #fff;
  font-size: 1.04rem;
  font-weight: 800;
}

.delivery-card-copy small {
  color: var(--muted-strong);
  font-size: 0.78rem;
  line-height: 1.45;
}

.site-footer {
  padding: 42px 0 52px;
}

.footer-shell {
  display: grid;
  gap: 18px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 0.9fr));
  gap: 14px;
}

.footer-brand-card,
.footer-column {
  min-width: 0;
  padding: 22px 20px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    var(--panel);
  box-shadow: var(--shadow);
}

.footer-brand-card {
  display: grid;
  align-content: start;
  gap: 18px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  width: fit-content;
}

.footer-brand-mark {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  padding: 10px;
  border-radius: 20px;
  background: #fff;
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.92),
    0 14px 28px rgba(0, 0, 0, 0.2);
}

.footer-brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-brand-copy strong {
  display: block;
  font-family: "Bebas Neue", cursive;
  font-size: 2rem;
  letter-spacing: 0.06em;
  line-height: 0.94;
}

.footer-brand-copy span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-description,
.footer-text,
.footer-meta,
.footer-bottom p {
  color: var(--muted);
  line-height: 1.7;
}

.footer-description,
.footer-text {
  font-size: 0.92rem;
}

.footer-cta {
  width: fit-content;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-title {
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-meta {
  font-size: 0.8rem;
}

.footer-column .footer-link {
  display: inline-flex;
  width: fit-content;
  font-size: 0.88rem;
  line-height: 1.5;
}

.footer-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 4px 4px 0;
}

.footer-bottom p {
  font-size: 0.82rem;
}

.mobile-bottom-nav,
.mobile-sheet,
.mobile-sheet-backdrop {
  display: none;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1120px) {
  .header-shell,
  .hero-shell,
  .hero-product-card {
    grid-template-columns: 1fr;
  }

  .header-shell {
    display: grid;
    padding: 18px 0;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .header-button {
    width: fit-content;
  }

  .product-media-hero {
    min-height: 340px;
  }

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

  .footer-brand-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 980px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-card-slider {
    flex-basis: calc((100% - (var(--cards-per-view, 3) - 1) * 14px) / var(--cards-per-view, 3));
  }

  .testimonial-card {
    flex-basis: calc((100% - (var(--testimonial-cards-per-view, 3) - 1) * 14px) / var(--testimonial-cards-per-view, 3));
  }

  .product-card-slider .product-head h3 {
    font-size: 1.16rem;
  }
}

@media (max-width: 760px) {
  body.mobile-sheet-open {
    overflow: hidden;
  }

  .hero-banner {
    padding-top: 20px;
  }

  .hero-copy h1,
  .section-heading h2 {
    max-width: none;
  }

  .banner-slider-viewport {
    aspect-ratio: 16 / 8.6;
    min-height: 190px;
    max-height: none;
  }

  .banner-slide.is-active {
    transform: translateX(0);
  }

  .banner-slide.is-prev {
    transform: translateX(-10%);
    opacity: 0;
    pointer-events: none;
  }

  .banner-slide.is-next,
  .banner-slide.is-hidden {
    transform: translateX(10%);
    opacity: 0;
    pointer-events: none;
  }

  .service-strip {
    grid-template-columns: 1fr;
  }

  .hero-action-row {
    flex-direction: column;
  }

  .hero-action-row .button,
  .header-button {
    width: 100%;
  }

  .site-nav {
    gap: 14px;
  }

  .site-nav a {
    font-size: 0.86rem;
  }

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

  .product-card-slider {
    flex-basis: calc((100% - (var(--cards-per-view, 2) - 1) * 14px) / var(--cards-per-view, 2));
  }

  .product-card-slider .product-head h3 {
    font-size: 1.06rem;
  }

  .testimonial-card {
    flex-basis: calc((100% - (var(--testimonial-cards-per-view, 2) - 1) * 14px) / var(--testimonial-cards-per-view, 2));
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .mobile-bottom-nav {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 56;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    background: rgba(10, 18, 24, 0.94);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.34);
  }

  .mobile-bottom-item {
    display: grid;
    justify-items: center;
    gap: 6px;
    min-width: 0;
    padding: 8px 6px;
    border: 0;
    border-radius: 18px;
    background: transparent;
    color: #fff;
    text-align: center;
  }

  .mobile-bottom-item-menu {
    cursor: pointer;
  }

  .mobile-bottom-item span:last-child {
    font-size: 0.68rem;
    font-weight: 800;
    line-height: 1.3;
  }

  .mobile-bottom-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
  }

  .mobile-sheet-backdrop {
    position: fixed;
    inset: 0;
    z-index: 54;
    background: rgba(3, 8, 12, 0.56);
    backdrop-filter: blur(6px);
  }

  .mobile-sheet-backdrop[hidden] {
    display: none;
  }

  .mobile-sheet {
    position: fixed;
    right: 0;
    bottom: calc(96px + env(safe-area-inset-bottom, 0px));
    left: 0;
    z-index: 55;
    display: block;
    padding: 14px 16px 20px;
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
      linear-gradient(180deg, rgba(18, 30, 39, 0.98), rgba(11, 20, 27, 0.98)),
      var(--panel);
    box-shadow: 0 -24px 40px rgba(0, 0, 0, 0.28);
    transform: translateY(110%);
    transition: transform 0.28s ease;
    max-height: min(74vh, 780px);
    overflow-y: auto;
    scroll-padding-bottom: 20px;
  }

  .mobile-sheet::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 180px;
    pointer-events: none;
    background:
      radial-gradient(circle at top center, rgba(227, 29, 47, 0.16), transparent 54%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent);
  }

  body.mobile-sheet-open .mobile-sheet {
    transform: translateY(0);
  }

  .mobile-sheet-handle {
    width: 62px;
    height: 6px;
    margin: 0 auto 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
  }

  .mobile-sheet-profile-card {
    position: relative;
    display: grid;
    gap: 14px;
    margin-bottom: 16px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03)),
      rgba(255, 255, 255, 0.02);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  }

  .mobile-sheet-portrait {
    display: flex;
    justify-content: center;
  }

  .mobile-sheet-portrait-photo {
    position: relative;
    width: min(100%, 180px);
    aspect-ratio: 3 / 4;
    display: block;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.04);
  }

  .mobile-sheet-portrait-photo::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 36%;
    background: linear-gradient(180deg, rgba(7, 17, 22, 0), rgba(7, 17, 22, 0.38));
    pointer-events: none;
  }

  .mobile-sheet-portrait-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .mobile-sheet-profile-copy {
    display: grid;
    gap: 4px;
    text-align: center;
  }

  .mobile-sheet-profile-copy strong {
    font-size: 1.06rem;
    font-weight: 800;
  }

  .mobile-sheet-profile-copy span {
    color: var(--muted);
    font-size: 0.8rem;
  }

  .mobile-sheet-profile-copy p {
    margin-top: 4px;
    color: var(--muted-strong);
    font-size: 0.78rem;
    line-height: 1.6;
  }

  .mobile-sheet-contacts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .mobile-sheet-contact-card {
    display: grid;
    align-content: center;
    min-height: 64px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03)),
      rgba(255, 255, 255, 0.03);
  }

  .mobile-sheet-contact-label {
    color: var(--muted);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .mobile-sheet-contact-card strong {
    margin-top: 4px;
    color: #fff;
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .mobile-sheet-menu {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    padding-bottom: 10px;
  }

  .mobile-sheet-link {
    display: grid;
    justify-items: center;
    align-content: start;
    gap: 8px;
    min-height: 96px;
    padding: 12px 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
      rgba(255, 255, 255, 0.03);
    font-size: 0.72rem;
    font-weight: 800;
    text-align: center;
    line-height: 1.35;
  }

  .mobile-sheet-link-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(227, 29, 47, 0.12);
    border: 1px solid rgba(255, 104, 116, 0.18);
    color: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .site-footer {
    padding-bottom: 112px;
  }
}

@media (max-width: 540px) {
  .container {
    width: min(100vw - 24px, 1180px);
  }

  .brand-copy strong {
    font-size: 1.6rem;
  }

  .banner-slider-viewport {
    aspect-ratio: 16 / 10;
    min-height: 170px;
  }

  .hero-product-card {
    padding: 18px;
  }

  .product-media-hero {
    min-height: 300px;
  }

  .product-media-slider,
  .product-media-compact {
    min-height: 145px;
  }

  .product-media-slider {
    min-height: 124px;
    padding: 12px;
  }

  .product-card-slider .product-card-body,
  .product-card-compact .product-card-body {
    padding: 12px;
    gap: 10px;
  }

  .product-card-slider .product-head h3,
  .product-card-compact .product-head h3 {
    font-size: 1.18rem;
  }

  .product-card-slider .product-head h3 {
    font-size: 0.98rem;
  }

  .product-card-slider .product-label,
  .product-card-compact .product-label {
    font-size: 0.62rem;
  }

  .compact-price-list {
    gap: 6px;
  }

  .compact-price-item {
    padding: 8px;
  }

  .compact-price-item strong {
    font-size: 0.66rem;
  }

  .testimonial-card {
    min-height: 180px;
    padding: 16px 14px;
  }

  .testimonial-message {
    font-size: 0.8rem;
  }

  .delivery-card {
    aspect-ratio: 4 / 5.4;
  }

  .footer-brand,
  .footer-cta {
    width: 100%;
  }

  .footer-menu-grid {
    grid-template-columns: 1fr;
  }

  .product-media-compact {
    padding: 14px;
  }

  .price-list div {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 10px 12px;
  }

  .price-list dd {
    text-align: left;
    font-size: 0.78rem;
  }

  .media-badge,
  .media-hint {
    font-size: 0.62rem;
  }

  .mobile-bottom-nav {
    left: 8px;
    right: 8px;
    bottom: 8px;
    gap: 8px;
    padding: 8px;
  }

  .mobile-bottom-item span:last-child {
    font-size: 0.62rem;
  }

  .mobile-bottom-icon {
    width: 38px;
    height: 38px;
  }

  .mobile-sheet-profile-card {
    padding: 12px;
  }

  .mobile-sheet {
    bottom: calc(86px + env(safe-area-inset-bottom, 0px));
    padding: 12px 14px 18px;
    max-height: min(76vh, 780px);
    scroll-padding-bottom: 18px;
  }

  .mobile-sheet-portrait-photo {
    width: min(100%, 156px);
  }

  .mobile-sheet-contacts {
    grid-template-columns: 1fr;
  }

  .mobile-sheet-link {
    min-height: 88px;
    font-size: 0.66rem;
  }

  .mobile-sheet-link-icon {
    width: 38px;
    height: 38px;
  }
}
