:root {
  --color-background: #000;
  --color-surface: #050505;
  --color-text: #ffe600;
  --color-accent: #ffe600;
  --color-muted: rgba(255, 230, 0, 0.72);
  --color-contrast: #050505;
  --font-primary: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Bebas Neue", "Impact", "Arial Narrow", sans-serif;
  --header-height: 132px;
}

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

body {
  font-family: var(--font-primary);
  color: var(--color-text);
  background-color: var(--color-background);
  line-height: 1.6;
  scroll-behavior: smooth;
  position: relative;
  letter-spacing: 0.01em;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  white-space: nowrap;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  background: var(--color-background);
  border-bottom: 1px solid rgba(255, 230, 0, 0.22);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.65);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.header-band {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem 1rem;
  gap: 1rem;
}

.logo {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
  text-shadow: 0 0 28px rgba(255, 230, 0, 0.6);
  text-decoration: none;
  display: inline-block;
  padding: 0.2rem 0.8rem;
  transition: letter-spacing 0.24s ease, text-shadow 0.24s ease;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 230, 0, 0.4);
  color: inherit;
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.menu-toggle__box {
  position: relative;
  display: block;
  width: 1.35rem;
  height: 1rem;
}

.menu-toggle__bar {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-accent);
  transform: translateY(-50%);
  transition: background 0.2s ease;
}

.menu-toggle__bar::before,
.menu-toggle__bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform 0.28s ease, top 0.28s ease, opacity 0.28s ease;
}

.menu-toggle__bar::before {
  top: -0.38rem;
}

.menu-toggle__bar::after {
  top: 0.38rem;
}

.menu-toggle.is-active {
  border-color: var(--color-accent);
  box-shadow: 0 0 18px rgba(255, 230, 0, 0.35);
  background: rgba(255, 230, 0, 0.08);
}

.menu-toggle.is-active .menu-toggle__bar {
  background: transparent;
}

.menu-toggle.is-active .menu-toggle__bar::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle.is-active .menu-toggle__bar::after {
  top: 0;
  transform: rotate(-45deg);
}

.logo:hover,
.logo:focus-visible {
  color: var(--color-text);
  text-shadow: 0 0 36px rgba(255, 230, 0, 0.8);
}

.menu-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1.5rem, 5vw, 3rem);
  padding: 0 1rem 1.25rem;
  flex-wrap: wrap;
  width: min(760px, 100%);
  margin: 0 auto;
}

.menu-bar a {
  text-decoration: none;
  color: var(--color-accent);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.2s ease, text-shadow 0.2s ease, transform 0.2s ease;
  position: relative;
  padding-bottom: 0.25rem;
}

.menu-bar a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 230, 0, 0.6);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.menu-bar a:hover,
.menu-bar a:focus-visible {
  color: var(--color-text);
  text-shadow: 0 0 16px rgba(255, 230, 0, 0.8);
  transform: translateY(-2px);
}

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

.site-header.is-condensed {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.55);
  border-color: rgba(255, 230, 0, 0.12);
}

.site-header.is-condensed .header-band {
  padding: 0.9rem 1rem 0.45rem;
}

.site-header.is-condensed .logo {
  letter-spacing: 0.16em;
  text-shadow: 0 0 22px rgba(255, 230, 0, 0.5);
}

.site-header.is-condensed .menu-bar {
  padding-bottom: 0.85rem;
  gap: clamp(1rem, 4vw, 2.4rem);
}

.site-header.is-condensed .menu-bar a {
  letter-spacing: 0.12em;
}

main {
  padding-top: calc((var(--navbar-height, var(--header-height)) + 3rem));
}

@media (max-width: 720px) {
  main {
    padding-top: calc((var(--navbar-height, var(--header-height)) + 1.6rem));
  }
}

.hero-carousel {
  position: relative;
  padding: clamp(2rem, 5vw, 4.2rem) 0 clamp(2.8rem, 5.5vw, 4.3rem);
  overflow: hidden;
}

.hero-carousel__inner {
  display: grid;
  gap: clamp(2rem, 6vw, 4.5rem);
  align-items: end;
}

@media (min-width: 960px) {
  .hero-carousel__inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }
}

.hero-carousel__intro {
  max-width: 30rem;
}

.hero-carousel__eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 0.92rem;
  color: var(--color-muted);
  margin-bottom: 1rem;
}

.hero-carousel__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 4.4rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.05;
}

.hero-carousel__subtitle {
  margin-top: 1.6rem;
  font-size: 1.05rem;
  color: var(--color-muted);
  max-width: 26rem;
}

.hero-carousel__stage {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.hero-carousel__slides {
  position: relative;
  overflow: hidden;
  border-radius: 1.6rem;
  background: radial-gradient(circle at 20% 20%, rgba(255, 230, 0, 0.08), rgba(0, 0, 0, 0.9));
  box-shadow:
    0 18px 60px rgba(0, 0, 0, 0.55),
    inset 0 0 0 1px rgba(255, 230, 0, 0.2);
  min-height: clamp(320px, 48vw, 440px);
}

.hero-carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(28px) scale(0.94);
  transition: opacity 0.8s ease, transform 1s cubic-bezier(0.19, 1, 0.22, 1);
  pointer-events: none;
  display: grid;
}

.hero-carousel__slide.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.hero-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-carousel__slide figcaption {
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1.4rem 1.8rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.82) 65%, rgba(0, 0, 0, 0.92) 100%);
  color: var(--color-text);
  align-self: end;
}

.hero-carousel__indicators {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
}

.hero-carousel__indicator {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 999px;
  border: none;
  background: rgba(255, 230, 0, 0.22);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.hero-carousel__indicator.is-active {
  background: var(--color-accent);
  transform: scale(1.4);
  box-shadow: 0 0 24px rgba(255, 230, 0, 0.5);
}

.hero-carousel__indicator:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(10, 10, 10, 0.9), 0 0 0 4px rgba(255, 230, 0, 0.6);
}

.ticker {
  position: relative;
  overflow: hidden;
  border-block: 1px solid rgba(255, 230, 0, 0.1);
  background: var(--color-background);
  padding: 0.6rem 0;
}

.ticker::before,
.ticker::after {
  content: "";
  position: absolute;
  top: 0;
  width: clamp(16px, 6vw, 60px);
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.ticker::before {
  left: 0;
  background: linear-gradient(90deg, var(--color-background) 0%, transparent 100%);
}

.ticker::after {
  right: 0;
  background: linear-gradient(270deg, var(--color-background) 0%, transparent 100%);
}

.ticker__inner {
  display: flex;
  align-items: center;
  gap: 0;
  animation: ticker-scroll 12s linear infinite;
  will-change: transform;
}

.ticker__track {
  display: flex;
  align-items: center;
  gap: clamp(3rem, 8vw, 5.5rem);
  flex: 0 0 auto;
  min-width: 100%;
}

.ticker__item {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-accent);
  opacity: 0.72;
}

.ticker__item--bold {
  font-weight: 700;
  opacity: 1;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 780px) {
  .hero-carousel {
    padding-top: clamp(1.4rem, 8vw, 3rem);
  }

  .hero-carousel__inner {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .hero-carousel__slides {
    min-height: clamp(280px, 72vw, 360px);
    border-radius: 1.1rem;
  }

  .hero-carousel__indicators {
    justify-content: center;
  }

  .ticker__inner {
    animation-duration: 16s;
  }
}

@media (max-width: 720px) {
  .header-band {
    justify-content: space-between;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .menu-bar {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 0 1.1rem 1rem;
    gap: 0.85rem;
    background: var(--color-background);
  }

  .menu-bar.is-open {
    display: flex;
  }

  .menu-bar a {
    width: 100%;
    text-align: left;
    padding-bottom: 0;
  }

  .contact-actions {
    flex-direction: column;
  }

  .contact-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .header-band {
    padding: 1.15rem 1.1rem 0.5rem;
  }

  .logo {
    font-size: clamp(1.8rem, 8.5vw, 2.2rem);
    letter-spacing: 0.18em;
  }

  .menu-bar {
    gap: 0.75rem;
    padding: 0 1rem 0.9rem;
  }

  .menu-bar a {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
  }

  .ticker__item {
    letter-spacing: 0.24em;
    font-size: clamp(1.2rem, 5vw, 1.6rem);
  }

  .category-card {
    padding: 1.4rem;
  }

  .category-card h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 420px) {
  .menu-bar {
    padding: 0 1rem 0.8rem;
    gap: 0.75rem;
  }

  .menu-bar a {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
  }

  .categories {
    gap: 0.9rem;
  }

  .category-card {
    padding: 1.25rem;
  }
}

.btn {
  display: inline-block;
  padding: 0.9rem 1.9rem;
  border-radius: 999px;
  background: transparent;
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  text-decoration: none;
  box-shadow: 0 0 0 rgba(255, 230, 0, 0);
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  background-color: var(--color-accent);
  color: var(--color-contrast);
  box-shadow: 0 0 28px rgba(255, 230, 0, 0.55);
  transform: translateY(-3px);
}

.section {
  padding: 6rem 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
  text-align: left;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.section-subtitle {
  color: var(--color-muted);
  max-width: 520px;
}

.section-header {
  display: grid;
  gap: 0.6rem;
}

.categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.1rem;
}

.category-card {
  display: block;
  background: var(--color-surface);
  border: 1px solid rgba(255, 230, 0, 0.18);
  padding: 1.6rem;
  border-radius: 16px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.32);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  text-align: left;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 48px rgba(0, 0, 0, 0.46);
  border-color: rgba(255, 230, 0, 0.4);
  background: rgba(20, 20, 20, 0.9);
}

.category-card:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
}

.category-card.is-selected {
  border-color: rgba(255, 230, 0, 0.55);
  box-shadow: 0 26px 52px rgba(255, 230, 0, 0.18);
}

.category-icon {
  font-size: 1.8rem;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
  text-shadow: 0 0 18px rgba(255, 230, 0, 0.55);
}

.category-card h3 {
  font-family: var(--font-display);
  margin-bottom: 0.55rem;
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.category-card p {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--color-muted);
}

.product-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.category-hero {
  padding-top: calc(var(--navbar-height, 80px) + 3rem);
  padding-bottom: 4rem;
  background: linear-gradient(135deg, rgba(8, 8, 8, 0.96), rgba(12, 12, 12, 0.8));
  border-bottom: 1px solid rgba(255, 230, 0, 0.1);
}

.category-hero__content {
  display: grid;
  gap: 1.25rem;
  max-width: 760px;
}

.back-link {
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: rgba(255, 230, 0, 0.78);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.back-link:hover,
.back-link:focus-visible {
  text-decoration: underline;
  color: var(--color-accent);
}

.category-description {
  max-width: 720px;
  color: rgba(248, 248, 242, 0.78);
  line-height: 1.65;
}

.product-card {
  background: rgba(12, 12, 12, 0.92);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 230, 0, 0.15);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  padding: 1.4rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  cursor: zoom-in;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0) 40%, rgba(255, 230, 0, 0.12));
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55);
}

.product-card:hover::before {
  opacity: 1;
}

.product-card img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: min(520px, 70vh);
  margin: 0 auto;
  align-self: center;
  transition: filter 0.3s ease;
  filter: saturate(1.05) contrast(1.05);
}

.product-card:hover img {
  filter: saturate(1.2) contrast(1.1);
}

.product-card.is-filtered {
  display: none;
}

.product-card:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 6px;
}

.contact {
  background: linear-gradient(135deg, rgba(8, 8, 8, 0.95), rgba(0, 0, 0, 0.75));
}

.contact-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.contact-intro {
  display: grid;
  gap: 1.2rem;
}

.contact-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
  color: var(--color-muted);
  font-size: 0.94rem;
}

.contact-points li {
  position: relative;
  padding-left: 1.6rem;
}

.contact-points li::before {
  content: "✶";
  position: absolute;
  left: 0;
  top: 0.05rem;
  font-size: 0.9rem;
  color: var(--color-accent);
  text-shadow: 0 0 12px rgba(255, 230, 0, 0.4);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  border-width: 1px;
}

.contact-btn:not(.contact-btn--outline) {
  background: var(--color-accent);
  color: var(--color-contrast);
  box-shadow: 0 0 24px rgba(255, 230, 0, 0.45);
}

.contact-btn:not(.contact-btn--outline):hover {
  box-shadow: 0 0 32px rgba(255, 230, 0, 0.55);
}

.contact-btn--outline {
  background: transparent;
  color: var(--color-accent);
  box-shadow: none;
}

.contact-card {
  background: rgba(14, 14, 14, 0.92);
  border-radius: 18px;
  padding: 2rem;
  border: 1px solid rgba(255, 230, 0, 0.22);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.contact-card::after {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at top right, rgba(255, 230, 0, 0.26), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.contact-card:hover::after {
  opacity: 1;
}

.contact-card h3 {
  font-family: var(--font-display);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-list {
  margin: 0 0 1.4rem;
  display: grid;
  gap: 0.9rem;
}

.contact-list__item {
  display: grid;
  gap: 0.25rem;
}

.contact-list__item dt {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 230, 0, 0.6);
}

.contact-list__item dd {
  margin: 0;
}

.contact-list__item .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0;
}

.contact-meta {
  list-style: none;
  margin: 0 0 1.4rem;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.contact-meta__label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 230, 0, 0.55);
}

.contact-meta__value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
}

.contact-link {
  display: block;
  font-weight: 600;
  color: var(--color-accent);
  text-decoration: none;
  margin-bottom: 0.7rem;
  text-shadow: 0 0 16px rgba(255, 230, 0, 0.52);
}

.contact-link:hover {
  text-decoration: underline;
}

.contact-note {
  color: var(--color-muted);
  font-size: 0.9rem;
  margin-top: 0.8rem;
}

.footer {
  background: #000;
  color: rgba(255, 230, 0, 0.8);
  padding: 2rem 0;
  box-shadow: 0 -18px 40px rgba(0, 0, 0, 0.65);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.footer-link {
  color: rgba(255, 230, 0, 0.8);
  text-decoration: none;
}

.footer-link--button {
  background: none;
  border: none;
  font: inherit;
  color: inherit;
  padding: 0;
  cursor: pointer;
}

.footer-link:hover {
  text-decoration: underline;
}

.filter-bar {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.filter-btn {
  border: 1px solid rgba(255, 230, 0, 0.35);
  background: rgba(12, 12, 12, 0.85);
  border-radius: 999px;
  padding: 0.55rem 1.3rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--color-text);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.filter-btn:hover {
  border-color: rgba(255, 230, 0, 0.6);
  box-shadow: 0 14px 32px rgba(255, 230, 0, 0.38);
  transform: translateY(-2px) scale(1.02);
}

.filter-btn.is-active {
  background: var(--color-accent);
  color: #050505;
  border-color: transparent;
  box-shadow: 0 18px 36px rgba(255, 230, 0, 0.45);
}

.filter-btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.privacy-card {
  background: rgba(12, 12, 12, 0.85);
  border-radius: 18px;
  border: 1px solid rgba(255, 230, 0, 0.25);
  padding: 1.6rem;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.48);
  display: grid;
  gap: 0.9rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.privacy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.55);
  border-color: rgba(255, 230, 0, 0.45);
}

.privacy-card h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 1.1rem;
  color: var(--color-accent);
}

.privacy-card p {
  color: rgba(248, 248, 242, 0.78);
  line-height: 1.6;
  font-size: 0.98rem;
}

.privacy-card a {
  color: var(--color-accent);
  text-decoration: underline;
}

.privacy-note {
  color: rgba(248, 248, 242, 0.6);
  font-size: 0.88rem;
}

.privacy-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  background: rgba(0, 0, 0, 0.82);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 130;
}

.privacy-modal.is-active {
  opacity: 1;
  pointer-events: auto;
}

.privacy-modal__inner {
  position: relative;
  background: linear-gradient(135deg, rgba(12, 12, 12, 0.96), rgba(6, 6, 6, 0.9));
  border-radius: 28px;
  border: 1px solid rgba(255, 230, 0, 0.2);
  padding: 2.2rem 2.6rem 2.4rem;
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.72);
  max-width: min(960px, 92vw);
  max-height: min(90vh, 720px);
  overflow-y: auto;
  display: grid;
  gap: 2rem;
}

.privacy-modal__header {
  display: grid;
  gap: 0.9rem;
}

.privacy-modal__header .section-title {
  margin-bottom: 0;
}

.privacy-modal__header .section-subtitle {
  max-width: none;
}

.privacy-modal__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 230, 0, 0.45);
  background: rgba(0, 0, 0, 0.7);
  color: var(--color-accent);
  font-size: 1.75rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.privacy-modal__close:hover {
  transform: scale(1.08);
  border-color: rgba(255, 230, 0, 0.85);
  box-shadow: 0 18px 32px rgba(255, 230, 0, 0.22);
}

.privacy-modal__close:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
}

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

.lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.86);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 120;
}

.lightbox.is-active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox__inner {
  position: relative;
  background: rgba(10, 10, 10, 0.92);
  border-radius: 24px;
  border: 1px solid rgba(255, 230, 0, 0.2);
  padding: 1.8rem 2.4rem 2.2rem;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.7);
  max-width: 92vw;
  max-height: 92vh;
  display: grid;
  gap: 1.4rem;
  place-items: center;
}

.lightbox__image {
  max-width: 100%;
  max-height: calc(80vh - 4rem);
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.65);
}

.lightbox__caption {
  color: rgba(248, 248, 242, 0.75);
  text-align: center;
  line-height: 1.5;
  max-width: 640px;
}

.lightbox__caption.is-hidden {
  display: none;
}

.lightbox__close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 230, 0, 0.45);
  background: rgba(0, 0, 0, 0.75);
  color: var(--color-accent);
  font-size: 1.8rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.lightbox__close:hover {
  transform: scale(1.08);
  border-color: rgba(255, 230, 0, 0.85);
  box-shadow: 0 12px 24px rgba(255, 230, 0, 0.22);
}

.lightbox__close:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
}

[data-parallax] {
  --parallax-offset: 0px;
  will-change: transform;
}

[data-parallax]:not([data-reveal]) {
  transform: translate3d(0, var(--parallax-offset), 0);
  transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

[data-reveal] {
  opacity: 0;
  --reveal-y: 32px;
  transform: translate3d(0, calc(var(--reveal-y) + var(--parallax-offset)), 0) scale(0.98);
  transition: opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}

[data-reveal].is-visible {
  opacity: 1;
  --reveal-y: 0px;
  transform: translate3d(0, calc(var(--reveal-y) + var(--parallax-offset)), 0) scale(1);
}

[data-reveal="fade-up"] {
  --reveal-y: 32px;
}

@media (max-width: 720px) {
  :root {
    --navbar-height: 112px;
  }

  .nav-content {
    flex-direction: column;
    gap: 0.8rem;
  }

  nav a {
    margin: 0 0.8rem;
  }

  .hero {
    min-height: 86vh;
    padding-top: calc(var(--navbar-height, 72px) + 2.6rem);
    padding-bottom: 4.5rem;
    align-items: start;
    align-content: start;
    justify-items: center;
  }

  .hero-content {
    padding-top: 0;
    gap: 1.1rem;
  }

  .section {
    padding: 4.5rem 0;
  }

  .filter-bar {
    gap: 0.6rem;
  }

  .category-hero {
    padding-top: calc(var(--navbar-height, 96px) + 2.5rem);
    padding-bottom: 3.5rem;
  }

  .category-hero__content {
    gap: 1rem;
  }

  .privacy-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .privacy-card {
    padding: 1.4rem;
  }

  .privacy-note {
    font-size: 0.84rem;
  }

  .privacy-modal {
    padding: 1.8rem;
  }

  .privacy-modal__inner {
    padding: 1.8rem 2.2rem 2rem;
    max-height: 84vh;
    gap: 1.6rem;
  }

  .privacy-modal__close {
    top: 1.1rem;
    right: 1.1rem;
    width: 2.7rem;
    height: 2.7rem;
    font-size: 1.55rem;
  }

  .lightbox {
    padding: 1.5rem;
  }

  .lightbox__inner {
    padding: 1.4rem 1.8rem 1.8rem;
  }

  .lightbox__image {
    max-height: calc(70vh - 3rem);
  }

  .lightbox__close {
    width: 2.6rem;
    height: 2.6rem;
    font-size: 1.5rem;
  }
}

@media (max-width: 540px) {
  :root {
    --navbar-height: 128px;
  }

  .nav-content {
    padding: 0.75rem 0;
  }

  .logo {
    font-size: 1.25rem;
    letter-spacing: 0.1em;
  }

  nav a {
    margin: 0 0.35rem;
    font-size: 0.9rem;
  }

  .hero {
    min-height: 78vh;
    padding-top: calc(var(--navbar-height, 72px) + 2rem);
    padding-bottom: 3.5rem;
  }

  .hero-content {
    padding-top: 0;
    gap: 0.9rem;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 9vw, 3.1rem);
  }

  .hero p {
    font-size: 0.98rem;
  }

  .categories {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .category-card {
    padding: 1.6rem;
  }

  .filter-bar {
    gap: 0.45rem;
  }

  .filter-btn {
    padding: 0.5rem 1.1rem;
    font-size: 0.85rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .contact-content {
    gap: 1.6rem;
  }

  .category-hero {
    padding-top: calc(var(--navbar-height, 110px) + 2rem);
    padding-bottom: 2.8rem;
  }

  .category-hero__content {
    gap: 0.85rem;
  }

  .back-link {
    font-size: 0.75rem;
  }

  .privacy-card {
    padding: 1.2rem;
  }

  .privacy-grid {
    gap: 1rem;
  }

  .privacy-note {
    font-size: 0.8rem;
  }

  .privacy-modal {
    padding: 1.2rem;
  }

  .privacy-modal__inner {
    padding: 1.2rem 1.5rem 1.6rem;
    gap: 1.2rem;
  }

  .privacy-modal__close {
    top: 0.9rem;
    right: 0.9rem;
    width: 2.4rem;
    height: 2.4rem;
    font-size: 1.4rem;
  }

  .lightbox {
    padding: 1rem;
  }

  .lightbox__inner {
    padding: 1.1rem 1.4rem 1.4rem;
    gap: 1rem;
  }

  .lightbox__image {
    max-height: calc(65vh - 2rem);
  }

  .lightbox__close {
    top: 0.8rem;
    right: 0.8rem;
    width: 2.4rem;
    height: 2.4rem;
    font-size: 1.35rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .ticker__inner {
    transform: translateX(0) !important;
  }
}
