.srt-home {
  color: #0b0b0c;
  background: #ffffff;
}

.srt-home .srt-fullbleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.srt-home .srt-container {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding-left: clamp(18px, 4vw, 44px);
  padding-right: clamp(18px, 4vw, 44px);
}

.srt-hero {
  --srt-hero-progress: 0;
  position: relative;
  background: #060607;
  color: #ffffff;
  overflow: hidden;
}

.srt-hero-scroll {
  position: relative;
  height: 100vh;
}

.srt-hero-pin {
  position: relative;
  height: 100vh;
  width: 100%;
}

.srt-hero.is-pinned .srt-hero-pin {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  width: 100%;
  z-index: 1;
}

.srt-hero-canvas,
.srt-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.srt-hero-canvas {
  background: #060607;
}

.srt-hero-video {
  object-fit: cover;
  background: #060607;
}

.srt-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  pointer-events: none;
  padding: clamp(24px, 5vw, 56px) 0;
}

.srt-hero-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(1200px 700px at 50% 45%, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.65) 70%, rgba(0, 0, 0, 0.9) 100%);
  opacity: clamp(0.12, calc(1 - (var(--srt-hero-progress, 0) * 1.05)), 1);
  transition: opacity 200ms ease;
}

.srt-hero-overlay-inner {
  position: relative;
  width: 100%;
  opacity: clamp(0, calc(1 - (var(--srt-hero-progress, 0) * 1.1)), 1);
  transform: translate3d(0, calc(var(--srt-hero-progress, 0) * 18px), 0);
  transition: opacity 200ms ease, transform 200ms ease;
}

.srt-hero-kicker {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.srt-hero-title {
  margin: 14px 0 0;
  font-weight: 500;
  letter-spacing: -0.03em;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
  color: #ffffff;
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
}

.srt-hero-sub {
  margin: 14px 0 0;
  max-width: 46ch;
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.8);
}

.srt-hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  pointer-events: auto;
  flex-wrap: wrap;
}

.srt-hero-hint {
  margin-top: 26px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.srt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease, opacity 160ms ease;
  will-change: transform;
}

.srt-btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 2px;
}

.srt-btn:hover {
  transform: translate3d(0, -1px, 0);
}

.srt-btn--primary {
  background: #ffffff;
  color: #0b0b0c;
  border-color: #ffffff;
}

.srt-btn--primary:hover {
  opacity: 0.92;
}

.srt-btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.srt-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.srt-section {
  padding: clamp(56px, 8vw, 110px) 0;
}

.srt-section--contrast {
  background: #0b0b0c;
  color: #ffffff;
}

.srt-kicker {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(11, 11, 12, 0.6);
}

.srt-section--contrast .srt-kicker {
  color: rgba(255, 255, 255, 0.6);
}

.srt-h2 {
  margin: 16px 0 0;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 500;
}

.srt-section--contrast .srt-h2 {
  color: #ffffff;
}

.srt-p {
  margin: 18px 0 0;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(11, 11, 12, 0.78);
  max-width: 72ch;
}

.srt-section--contrast .srt-p {
  color: rgba(255, 255, 255, 0.78);
}

.srt-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
  align-items: start;
}

.srt-col-6 {
  grid-column: span 6;
}

.srt-col-4 {
  grid-column: span 4;
}

.srt-col-5 {
  grid-column: span 5;
}

.srt-col-7 {
  grid-column: span 7;
}

.srt-col-12 {
  grid-column: span 12;
}

.srt-card {
  border-radius: 18px;
  border: 1px solid rgba(11, 11, 12, 0.12);
  background: rgba(255, 255, 255, 0.6);
  padding: clamp(18px, 2.5vw, 26px);
}

[data-srt-reveal] {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition: opacity 520ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform, opacity;
}

[data-srt-reveal].is-in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.srt-section--contrast .srt-card {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.srt-card-title {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(11, 11, 12, 0.75);
}

.srt-section--contrast .srt-card-title {
  color: rgba(255, 255, 255, 0.75);
}

.srt-card-text {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(11, 11, 12, 0.75);
}

.srt-section--contrast .srt-card-text {
  color: rgba(255, 255, 255, 0.78);
}

.srt-figure {
  border-radius: 22px;
  overflow: hidden;
  background: #060607;
  border: 1px solid rgba(11, 11, 12, 0.12);
}

.srt-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.srt-figure--cover {
  aspect-ratio: 4 / 3;
}

.srt-figure--cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.srt-figure-media {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.srt-section--contrast .srt-figure {
  border-color: rgba(255, 255, 255, 0.14);
}

.srt-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: clamp(22px, 3vw, 34px);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.srt-cta-title {
  margin: 0;
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: #ffffff;
}

.srt-cta-sub {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
}

.srt-spacer {
  display: block;
  width: 100%;
}

.srt-spacer--14 {
  height: 14px;
}

.srt-spacer--28 {
  height: 28px;
}

.srt-hero-actions--mt18 {
  margin-top: 18px;
}

.srt-hero-actions--reset {
  margin: 0;
}

.srt-kicker--no-margin {
  margin: 0;
}

.srt-hidden-preload {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 920px) {
  .srt-col-6,
  .srt-col-4,
  .srt-col-5,
  .srt-col-7 {
    grid-column: span 12;
  }
}

.srt-hero-video {
  display: none;
}

@media (max-width: 768px) {
  .srt-hero-video {
    display: block;
  }

  .srt-hero-canvas {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .srt-btn,
  .srt-hero-overlay-inner,
  .srt-hero-overlay::before {
    transition: none;
  }

  [data-srt-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

body.srt-hero-on #nm-header,
body.srt-hero-on #nm-header a,
body.srt-hero-on #nm-header .nm-menu > li > a {
  color: rgba(255, 255, 255, 0.92);
}

body.srt-hero-on #nm-header {
  background: transparent;
  box-shadow: none;
}

body.srt-hero-on #nm-header a:hover,
body.srt-hero-on #nm-header .nm-menu > li > a:hover {
  color: #ffffff;
}

.srt-cat-carousel {
  margin-top: 18px;
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 6px 2px 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.srt-cat-carousel::-webkit-scrollbar {
  height: 6px;
}

.srt-cat-carousel::-webkit-scrollbar-thumb {
  background: rgba(11, 11, 12, 0.14);
  border-radius: 999px;
}

.srt-cat-pill {
  flex: 0 0 auto;
  width: clamp(86px, 16vw, 110px);
  text-decoration: none;
  scroll-snap-align: start;
  display: grid;
  gap: 10px;
}

.srt-cat-pill-img {
  width: clamp(86px, 16vw, 110px);
  height: clamp(86px, 16vw, 110px);
  border-radius: 999px;
  background: #0b0b0c;
  border: 1px solid rgba(11, 11, 12, 0.14);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}

.srt-cat-pill-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(11, 11, 12, 0.76);
}

.srt-products-list .products {
  margin-top: 0;
}

.srt-products-list .woocommerce ul.products li.product {
  margin-bottom: 22px;
}
