:root {
  --ink: #151515;
  --ink-soft: #3f423f;
  --paper: #f8f5ee;
  --paper-strong: #ffffff;
  --line: #deded4;
  --steel: #59615d;
  --signal: #ff6000;
  --signal-dark: #ba4300;
  --oxide: #d84413;
  --green: #687c4f;
  --shadow: 0 24px 70px rgba(17, 17, 15, 0.16);
  --radius: 8px;
  --inner: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body.custom-cursor,
body.custom-cursor a,
body.custom-cursor button,
body.custom-cursor input,
body.custom-cursor textarea,
body.custom-cursor summary {
  cursor: none;
}

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

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

p {
  color: var(--ink-soft);
  font-size: 1rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(3rem, 6.4vw, 6.4rem);
  overflow-wrap: break-word;
}

h2 {
  font-size: clamp(2rem, 4vw, 4.2rem);
}

h3 {
  font-size: 1.35rem;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--signal);
  color: #000;
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.announcement {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 9px 18px;
  background: var(--ink);
  color: var(--paper-strong);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
}

.announcement a:first-child {
  color: var(--signal);
}

.announcement a {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-wrap: anywhere;
  text-align: center;
  white-space: normal;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 16px;
  min-height: 74px;
  padding: 12px max(18px, calc((100vw - 1180px) / 2));
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(21, 21, 21, 0.12);
  backdrop-filter: blur(18px);
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--signal), transparent);
  content: "";
}

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

.brand img {
  width: 104px;
  height: auto;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.18));
}

.brand span {
  display: none;
}

.desktop-nav {
  display: flex;
  align-self: stretch;
  align-items: stretch;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  white-space: nowrap;
}

.desktop-nav > a,
.nav-item > a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 8px;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-item::after {
  position: absolute;
  top: 100%;
  right: -14px;
  left: -14px;
  height: 18px;
  content: "";
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 3;
  min-width: 248px;
  padding: 14px 10px 10px;
  background: var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  visibility: hidden;
}

.nav-dropdown::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 16px;
  content: "";
}

.nav-dropdown a {
  display: block;
  padding: 11px 12px;
  border-radius: 6px;
  color: #f4f4ee;
  font-size: 0.9rem;
}

.nav-dropdown a:hover,
.desktop-nav > a:hover,
.nav-item:hover > a {
  background: rgba(240, 179, 35, 0.16);
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
}

.header-phone {
  padding: 11px 14px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 900;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.mobile-panel {
  position: fixed;
  inset: 76px 14px auto;
  z-index: 49;
  max-height: calc(100vh - 96px);
  overflow: auto;
  padding: 18px;
  background: var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow);
}

.mobile-panel a,
.mobile-panel summary {
  display: block;
  padding: 12px 4px;
  font-weight: 800;
  text-transform: uppercase;
}

.mobile-panel details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-panel details a {
  padding-left: 18px;
  color: #d9d8ce;
  font-size: 0.92rem;
  text-transform: none;
}

.section {
  padding: 92px 0;
}

.section-tight {
  padding: 36px 0;
}

.section-muted {
  background: #e8e9df;
}

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

.hero {
  position: relative;
  display: grid;
  align-content: end;
  gap: 28px;
  min-height: min(820px, calc(100vh - 40px));
  padding: 112px 0 34px;
  background: #151515;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  animation: heroFade 24s infinite;
}

.hero-slide-2 {
  animation-delay: 6s;
}

.hero-slide-3 {
  animation-delay: 12s;
}

.hero-slide-4 {
  animation-delay: 18s;
}

@keyframes heroFade {
  0%,
  22% {
    opacity: 1;
    transform: scale(1.04);
  }

  30%,
  92% {
    opacity: 0;
    transform: scale(1.1);
  }

  100% {
    opacity: 1;
    transform: scale(1.04);
  }
}

.hero-overlay,
.page-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 18% 38%, rgba(255, 96, 0, 0.32), transparent 34%),
    linear-gradient(90deg, rgba(15, 13, 11, 0.9), rgba(15, 13, 11, 0.62) 50%, rgba(15, 13, 11, 0.24)),
    linear-gradient(0deg, rgba(15, 13, 11, 0.82), rgba(15, 13, 11, 0.12) 58%, rgba(15, 13, 11, 0.42));
}

.hero-content {
  position: relative;
  width: var(--inner);
  margin: 0 auto;
  padding: 0;
  color: white;
}

.hero-content p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--signal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-categories {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.hero-category {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "icon title"
    "icon text";
  column-gap: 14px;
  min-height: 120px;
  padding: 18px;
  border: 1px solid rgba(255, 96, 0, 0.4);
  border-top: 4px solid var(--signal);
  border-radius: var(--radius);
  background: rgba(18, 18, 16, 0.82);
  color: white;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.hero-category:hover {
  transform: translateY(-4px);
  border-color: var(--signal);
  background: rgba(30, 26, 21, 0.92);
}

.hero-category span {
  grid-area: icon;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 10px 28px rgba(255, 96, 0, 0.4);
}

.hero-category img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.hero-category h2 {
  grid-area: title;
  align-self: end;
  color: white;
  font-size: 1.2rem;
}

.hero-category p {
  grid-area: text;
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.btn-primary {
  background: var(--signal);
  color: #15120a;
}

.btn-light {
  border-color: rgba(255, 96, 0, 0.85);
  color: white;
  background: rgba(255, 96, 0, 0.08);
}

.btn-ghost {
  border-color: var(--ink);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 820px;
  margin-top: 36px;
  background: rgba(255, 255, 255, 0.26);
}

.hero-stats span {
  padding: 16px;
  background: rgba(17, 17, 15, 0.72);
  color: #deded4;
  font-size: 0.88rem;
}

.hero-stats b {
  display: block;
  margin-bottom: 4px;
  color: white;
  font-size: 1.1rem;
  text-transform: uppercase;
}

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

.category-tile,
.product-card,
.feature-card,
.process-step {
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.category-tile {
  position: relative;
  min-height: 190px;
  padding: 24px;
  overflow: hidden;
}

.category-tile span,
.feature-card span {
  display: block;
  width: 36px;
  height: 36px;
  margin-bottom: 28px;
  border: 8px solid var(--signal);
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px var(--paper-strong);
}

.category-tile h2,
.process-step h2 {
  font-size: 1.5rem;
}

.category-tile p {
  margin-bottom: 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 54px;
  align-items: center;
}

.about-band {
  background:
    linear-gradient(90deg, transparent 0 58%, #dadbd0 58% 100%);
}

.check-list,
.content-list {
  padding: 0;
  list-style: none;
}

.check-list li,
.content-list li {
  position: relative;
  margin: 12px 0;
  padding-left: 28px;
  color: var(--ink-soft);
}

.check-list li::before,
.content-list li::before {
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 12px;
  height: 2px;
  background: var(--oxide);
  content: "";
}

.media-panel {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.media-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
  margin-bottom: 34px;
}

.section-heading h2 {
  max-width: 760px;
}

.section-heading a {
  color: var(--oxide);
  font-weight: 900;
  text-transform: uppercase;
}

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

.product-card {
  display: grid;
  min-height: 100%;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.product-card figure {
  margin: 0;
  background: #d8d8cf;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
  transition: transform 400ms ease;
}

.product-card:hover img {
  transform: scale(1.04);
}

.product-card div {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.product-card span {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-card p {
  margin: 0;
}

.product-card b {
  color: var(--oxide);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.process-section {
  background: var(--ink);
  color: var(--paper);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.process-step {
  min-height: 250px;
  padding: 24px;
  background: #20211f;
}

.process-step span {
  color: var(--signal);
  font-weight: 900;
}

.process-step p {
  color: #c9c9bd;
}

.page-hero {
  position: relative;
  min-height: 430px;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
}

.page-hero-content {
  position: relative;
  width: var(--inner);
  margin: 0 auto;
  padding: 130px 0 62px;
  color: white;
}

.page-hero-content h1 {
  max-width: 1000px;
  font-size: clamp(2.7rem, 6.5vw, 6.5rem);
}

.page-hero-content p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.12rem;
}

.simple-hero {
  padding: 96px 0 44px;
  background: var(--ink);
  color: var(--paper);
}

.simple-hero p {
  max-width: 760px;
  color: #d2d2c8;
}

.product-layout,
.article-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: 42px;
  align-items: start;
}

.product-slider {
  position: sticky;
  top: 104px;
}

.slider-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #c9cbc2;
  box-shadow: var(--shadow);
}

.slider-frame > img {
  display: none;
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: contain;
  background: #20211f;
}

.slider-frame > img.is-active {
  display: block;
}

.slider-btn {
  position: absolute;
  top: 50%;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(247, 247, 242, 0.92);
  color: var(--ink);
  font-size: 2rem;
  transform: translateY(-50%);
}

.slider-btn.prev {
  left: 14px;
}

.slider-btn.next {
  right: 14px;
}

.slider-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.slider-thumbs button {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 6px;
  background: transparent;
  overflow: hidden;
}

.slider-thumbs button.is-active {
  border-color: var(--signal);
}

.slider-thumbs img {
  width: 100%;
  aspect-ratio: 1 / 0.72;
  object-fit: cover;
}

.content-panel {
  padding: 34px;
  border-radius: var(--radius);
  background: var(--paper-strong);
}

.content-panel h2,
.content-panel h3,
.legal-content h2,
.legal-content h3 {
  margin: 34px 0 12px;
  font-size: clamp(1.55rem, 2.8vw, 2.4rem);
}

.content-panel h2:first-child,
.content-panel h3:first-child {
  margin-top: 0;
}

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

.feature-card {
  min-height: 160px;
  padding: 24px;
}

.feature-card h3 {
  font-size: 1.22rem;
}

.contact-section {
  padding: 92px 0;
  background: #dfe1d7;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  gap: 46px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 13px;
  background: #fbfbf7;
  color: var(--ink);
  font: inherit;
}

.contact-form .check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.35;
  text-transform: none;
}

.contact-form .check input {
  width: auto;
  margin-top: 3px;
}

.legal-content {
  max-width: 900px;
  padding: 40px;
  border-radius: var(--radius);
  background: var(--paper-strong);
}

.site-footer {
  padding: 56px 0 20px;
  background: #171816;
  color: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 0.8fr;
  gap: 32px;
}

.footer-logo {
  width: 170px;
  margin-bottom: 18px;
}

.site-footer p,
.site-footer span {
  color: #c5c4ba;
}

.site-footer h2 {
  margin-bottom: 14px;
  color: white;
  font-size: 1rem;
}

.site-footer a {
  display: block;
  margin: 8px 0;
  color: #d9d8ce;
}

.footer-bottom {
  width: var(--inner);
  margin: 34px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #97978f;
  font-size: 0.85rem;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.js-enabled .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  pointer-events: none;
  opacity: 0;
}

.custom-cursor .cursor-dot,
.custom-cursor .cursor-ring {
  opacity: 1;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  border-radius: 50%;
  background: var(--signal);
}

.cursor-ring {
  width: 34px;
  height: 34px;
  margin: -17px 0 0 -17px;
  border: 2px solid rgba(240, 179, 35, 0.72);
  border-radius: 50%;
  transition: width 160ms ease, height 160ms ease, margin 160ms ease, border-color 160ms ease;
}

.cursor-hover .cursor-ring {
  width: 54px;
  height: 54px;
  margin: -27px 0 0 -27px;
  border-color: rgba(173, 63, 47, 0.72);
}

@media (max-width: 1100px) {
  .desktop-nav,
  .header-phone {
    display: none;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .menu-toggle {
    display: block;
  }

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

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

@media (max-width: 1220px) and (min-width: 1101px) {
  .header-phone {
    display: none;
  }

  .desktop-nav {
    justify-content: end;
    gap: 5px;
  }

  .desktop-nav > a,
  .nav-item > a {
    padding-inline: 6px;
    font-size: 0.76rem;
  }
}

@media (max-width: 760px) {
  :root {
    --inner: min(100vw - 28px, 1180px);
  }

  .announcement {
    flex-direction: column;
    gap: 3px;
    padding: 8px 12px;
    text-align: center;
    font-size: 0.74rem;
  }

  .site-header {
    min-height: 68px;
    padding: 12px 14px;
  }

  .brand span {
    display: none;
  }

  .hero {
    min-height: 760px;
    padding: 88px 0 20px;
  }

  h1,
  .page-hero-content h1 {
    font-size: clamp(2.25rem, 9.4vw, 2.65rem);
  }

  .page-hero-content h1 {
    max-width: 11ch;
  }

  .page-hero-content p:not(.eyebrow) {
    max-width: 34ch;
  }

  .hero-content {
    padding-bottom: 34px;
  }

  .hero-stats,
  .category-strip,
  .hero-categories,
  .split,
  .product-grid,
  .process-grid,
  .product-layout,
  .article-layout,
  .feature-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-categories {
    gap: 8px;
  }

  .hero-category {
    min-height: auto;
    padding: 13px;
  }

  .hero-category span {
    width: 44px;
    height: 44px;
  }

  .hero-category img {
    width: 25px;
    height: 25px;
  }

  .section {
    padding: 64px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .about-band {
    background: #e8e9df;
  }

  .product-slider {
    position: relative;
    top: auto;
  }

  .content-panel,
  .legal-content {
    padding: 24px;
  }

  .page-hero-content {
    padding-top: 96px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
