:root {
  --black: #090909;
  --charcoal: #111212;
  --soft-black: #191a1a;
  --white: #fff;
  --off-white: #efefef;
  --muted: #a8a8a5;
  --gold: #b59c59;
  --line: rgba(255, 255, 255, 0.14);
  --max-width: 1380px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--off-white);
  background: var(--black);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
}

body.dialog-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  padding: 10px 16px;
  color: var(--black);
  background: var(--white);
  transform: translateY(-150%);
}

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  padding: 14px 5vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand {
  display: block;
  width: 170px;
  padding: 7px 9px;
  background: rgba(255, 255, 255, 0.94);
}

.brand img {
  width: 100%;
  height: 40px;
  object-fit: cover;
  object-position: center;
}

.navigation {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 42px);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.navigation a {
  position: relative;
}

.navigation a::after {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.navigation a:hover::after,
.navigation a:focus-visible::after,
.navigation a.is-current::after {
  transform: scaleX(1);
  transform-origin: left;
}

.language-button {
  display: flex;
  gap: 5px;
  padding: 8px 0;
  color: var(--muted);
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.language-button .language-active {
  color: var(--gold);
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: min(930px, 100svh);
  overflow: hidden;
  background: #17191c;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  background:
    url("Produktbilder 4zu3/Cthulhu-Solo-Forest.jpg") center / cover no-repeat;
  transform: scale(1.04);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.78) 35%, rgba(5, 5, 5, 0.12) 72%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.72) 0%, transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(90%, var(--max-width));
  min-height: min(930px, 100svh);
  margin: 0 auto;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-top: var(--header-height);
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Manrope, Inter, "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

h1 {
  max-width: 880px;
  margin-bottom: 30px;
  font-size: clamp(3.15rem, 7vw, 7.3rem);
}

h2 {
  margin-bottom: 28px;
  font-size: clamp(2.7rem, 5.8vw, 6.2rem);
}

h3 {
  font-size: 1.25rem;
}

.hero-copy {
  max-width: 570px;
  margin-bottom: 36px;
  color: #d0d0cd;
  font-size: clamp(1rem, 1.4vw, 1.24rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
  border: 1px solid var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease;
}

.button-primary {
  color: var(--black);
  background: var(--gold);
}

.button-primary:hover,
.button-primary:focus-visible {
  color: var(--white);
  background: transparent;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-product {
  position: absolute;
  z-index: 2;
  right: 5vw;
  bottom: 28px;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-shell {
  width: min(90%, var(--max-width));
  margin: 0 auto;
  padding: clamp(90px, 11vw, 170px) 0;
}

.principles {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
  gap: 9vw;
}

.section-intro h2 {
  font-size: clamp(2.6rem, 4.4vw, 5rem);
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.principle-grid article {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.principle-number {
  display: block;
  margin-bottom: 54px;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
}

.principle-grid p,
.section-copy,
.about-copy,
.material-content > p {
  color: var(--muted);
}

.products {
  width: 100%;
  max-width: none;
  padding-right: 5%;
  padding-left: 5%;
  background: var(--off-white);
  color: var(--black);
}

.section-heading {
  display: grid;
  max-width: var(--max-width);
  margin: 0 auto 64px;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: end;
  gap: 8vw;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-copy {
  margin-bottom: 5px;
  color: #5f605d;
}

.product-grid {
  display: grid;
  max-width: 1600px;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
  background: #c7c7c3;
}

.product-card {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  color: var(--white);
  background: var(--soft-black);
  cursor: pointer;
}

.product-card img {
  display: block;
  width: 100%;
  height: 100%;
}

.product-card .product-image {
  position: absolute;
  inset: 0;
  object-fit: contain;
  transition: transform 550ms cubic-bezier(0.2, 0.65, 0.3, 1);
}

.product-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9), transparent 57%);
}

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

.product-card-content {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: clamp(24px, 3vw, 46px);
}

.product-compatible {
  margin-bottom: 10px;
  color: #d2d2cf;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(1.8rem, 2.7vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.product-count {
  padding-bottom: 8px;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.material-section {
  display: grid;
  min-height: 760px;
  grid-template-columns: 1.08fr 0.92fr;
  background: #151616;
}

.material-image {
  overflow: hidden;
  aspect-ratio: 1;
}

.material-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.material-content {
  display: flex;
  max-width: 700px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px, 8vw, 130px);
}

.material-content h2 {
  font-size: clamp(2.8rem, 4.8vw, 5.4rem);
}

.feature-list {
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.feature-list li {
  padding: 17px 0;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  font-weight: 700;
}

.feature-list li::before {
  margin-right: 14px;
  color: var(--gold);
  content: "+";
}

.games-teaser {
  display: grid;
  min-height: 520px;
  grid-template-columns: 0.5fr 1.4fr auto;
  align-items: start;
  gap: 5vw;
}

.games-teaser h2 {
  font-size: clamp(3rem, 6.6vw, 7.2rem);
}

.games-teaser div p {
  max-width: 570px;
  color: var(--muted);
}

.coming-soon {
  padding: 9px 13px;
  color: var(--gold);
  border: 1px solid var(--gold);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.about-section {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 12vw;
  border-top: 1px solid var(--line);
}

.about-section h2 {
  font-size: clamp(2.7rem, 5vw, 5.5rem);
}

.about-copy {
  padding-top: 39px;
  font-size: 1.05rem;
}

.about-copy p {
  margin-bottom: 26px;
}

.about-copy .text-link {
  margin-top: 18px;
  color: var(--white);
}

.newsletter-section {
  padding: clamp(90px, 12vw, 170px) 5%;
  color: var(--black);
  background: var(--gold);
}

.newsletter-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-section .eyebrow {
  color: rgba(0, 0, 0, 0.65);
}

.newsletter-section h2 {
  font-size: clamp(3rem, 6.3vw, 7rem);
}

.newsletter-section p {
  max-width: 580px;
  margin-right: auto;
  margin-left: auto;
}

.newsletter-form {
  display: flex;
  max-width: 650px;
  margin: 36px auto 12px;
  border-bottom: 2px solid var(--black);
}

.newsletter-form input {
  width: 100%;
  padding: 18px 0;
  color: var(--black);
  background: transparent;
  border: 0;
  outline: 0;
}

.newsletter-form input::placeholder {
  color: rgba(0, 0, 0, 0.62);
}

.newsletter-form button {
  padding: 0 0 0 20px;
  color: var(--black);
  background: none;
  border: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-note {
  font-size: 0.72rem;
  opacity: 0.65;
}

.contact-link {
  display: inline-block;
  margin-top: 30px;
  border-bottom: 1px solid var(--black);
  font-weight: 700;
}

.site-footer {
  display: grid;
  width: min(90%, var(--max-width));
  min-height: 180px;
  margin: 0 auto;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  color: var(--muted);
  font-size: 0.72rem;
}

.footer-brand {
  width: 150px;
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  justify-content: flex-end;
  gap: 26px;
}

.product-dialog {
  width: min(1180px, calc(100% - 36px));
  max-height: calc(100svh - 36px);
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  color: var(--off-white);
  background: #111212;
  border: 1px solid var(--line);
  scrollbar-width: none;
}

.product-dialog::-webkit-scrollbar {
  display: none;
}

.product-dialog::backdrop {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
}

.dialog-close {
  position: absolute;
  z-index: 4;
  top: 18px;
  right: 20px;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0 0 3px;
  place-items: center;
  color: var(--white);
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 0;
}

.dialog-product-nav {
  position: fixed;
  z-index: 5;
  top: 50%;
  display: grid;
  width: 52px;
  height: 72px;
  place-items: center;
  color: var(--white);
  background: rgba(9, 9, 9, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.22);
  cursor: pointer;
  font-size: 1.35rem;
  transform: translateY(-50%);
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.dialog-product-nav:hover,
.dialog-product-nav:focus-visible {
  color: var(--black);
  background: var(--gold);
  border-color: var(--gold);
}

.dialog-product-prev {
  left: 0;
  border-left: 0;
}

.dialog-product-next {
  right: 0;
  border-right: 0;
}

.dialog-layout {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 58fr) minmax(440px, 42fr);
}

.dialog-visual {
  position: relative;
  width: 100%;
  min-height: 0;
  min-width: 0;
  aspect-ratio: 1;
  background: #2b3038;
}

.dialog-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.dialog-image-caption {
  position: absolute;
  right: 22px;
  bottom: 20px;
  left: 22px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 16px 18px;
  margin: 0;
  background: rgba(8, 8, 8, 0.82);
  backdrop-filter: blur(8px);
}

.dialog-image-caption strong,
.dialog-image-caption span {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dialog-image-caption span {
  color: var(--gold);
  font-weight: 800;
}

.dialog-info {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 28px 44px;
}

.dialog-info h2 {
  margin-bottom: 6px;
  font-size: clamp(2.8rem, 4vw, 4.2rem);
}

.dialog-info .compatible {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.variant-heading {
  margin: 10px 0 8px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.variant-list {
  display: grid;
  padding: 10px 0 12px;
  margin: 0 0 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.variant-card {
  display: grid;
  min-width: 0;
  padding: 0;
  color: #c9c9c6;
  background: #171818;
  border: 1px solid var(--line);
  cursor: pointer;
  grid-template-columns: 44px minmax(0, 1fr);
  text-align: left;
  transition: border-color 160ms ease, background 160ms ease;
}

.variant-card:hover,
.variant-card:focus-visible {
  border-color: rgba(181, 156, 89, 0.7);
}

.variant-card.is-active {
  background: #20201d;
  border-color: var(--gold);
}

.variant-card img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.variant-card > span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 5px 6px;
}

.variant-card strong {
  overflow: hidden;
  font-size: 0.54rem;
  font-weight: 700;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.variant-card small {
  margin-top: 3px;
  color: var(--gold);
  font-size: 0.52rem;
  font-weight: 700;
}

.dialog-meta {
  display: grid;
  margin-bottom: 18px;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.dialog-meta > div:last-child {
  grid-column: 1 / -1;
}

.dialog-meta span {
  display: block;
  color: var(--muted);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dialog-meta strong {
  font-size: 0.9rem;
}

.pair-note {
  padding: 10px 12px;
  margin: -7px 0 14px;
  color: #d0c6aa;
  background: rgba(181, 156, 89, 0.1);
  border-left: 2px solid var(--gold);
  font-size: 0.68rem;
  line-height: 1.45;
}

.pair-note[hidden] {
  display: none;
}

.detail-pair-note {
  max-width: 570px;
  padding: 15px 17px;
  margin: -15px 0 28px;
  font-size: 0.8rem;
}

.combined-player-note {
  padding: 9px 12px;
  margin: -7px 0 14px;
  color: var(--gold);
  border: 1px solid rgba(181, 156, 89, 0.45);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.trademark-note {
  margin: 14px 0 0;
  color: #7d7e7b;
  font-size: 0.65rem;
}

.section-action {
  max-width: var(--max-width);
  margin: 46px auto 0;
  text-align: center;
}

.button-dark {
  color: var(--white);
  background: var(--black);
}

.internal-header {
  position: relative;
  color: var(--off-white);
  background: var(--black);
}

.internal-page {
  padding-top: 0;
}

.light-page {
  color: var(--black);
  background: var(--off-white);
}

.page-hero {
  width: min(90%, var(--max-width));
  margin: 0 auto;
  padding: clamp(90px, 10vw, 150px) 0 70px;
}

.page-hero h1,
.simple-page h1 {
  margin-bottom: 30px;
  font-size: clamp(3.5rem, 7.5vw, 8rem);
}

.page-hero > p:last-child {
  max-width: 620px;
  color: #656662;
  font-size: 1.1rem;
}

.catalog-shell {
  display: grid;
  width: min(90%, var(--max-width));
  margin: 0 auto;
  padding-bottom: 130px;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: clamp(40px, 6vw, 90px);
}

.filters {
  position: sticky;
  top: 24px;
  align-self: start;
  padding: 24px;
  color: var(--off-white);
  background: var(--black);
}

.filter-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.filter-heading h2 {
  margin: 0;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}

.filter-heading button {
  padding: 0;
  color: var(--gold);
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
}

.filters label {
  display: block;
  margin-top: 22px;
}

.filters label span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.filters select {
  width: 100%;
  padding: 12px 34px 12px 10px;
  color: var(--white);
  background: #1c1d1d;
  border: 1px solid var(--line);
}

.result-heading {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 18px;
  border-bottom: 1px solid #c8c8c3;
  color: #686963;
  font-size: 0.75rem;
  font-weight: 700;
}

.result-heading p {
  margin: 0;
}

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

.catalog-card-image {
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
  background: #292d34;
}

.catalog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 350ms ease;
}

.catalog-card-image:hover img {
  transform: scale(1.025);
}

.catalog-card-body {
  padding-top: 18px;
}

.catalog-card-body > p {
  margin-bottom: 7px;
  color: #6b6c67;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-card h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.catalog-card-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid #cacac5;
  border-bottom: 1px solid #cacac5;
  color: #686963;
  font-size: 0.72rem;
}

.catalog-variants {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 12px;
}

.catalog-variants a {
  padding: 6px 8px;
  color: #52534f;
  border: 1px solid #c3c3be;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
}

.empty-results {
  padding: 70px 0;
  color: #656662;
}

.dark-footer {
  width: 100%;
  padding: 0 5%;
  color: var(--muted);
  background: var(--black);
}

.detail-hero {
  display: grid;
  width: min(92%, 1500px);
  margin: 0 auto;
  padding: 70px 0 110px;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.75fr);
  gap: clamp(50px, 8vw, 120px);
}

.detail-main-image {
  aspect-ratio: 1;
  background: #292d34;
}

.detail-main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.detail-thumbnails {
  display: grid;
  margin-top: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.detail-thumbnails button {
  padding: 0;
  overflow: hidden;
  color: var(--white);
  background: #171818;
  border: 1px solid var(--line);
  cursor: pointer;
  text-align: left;
}

.detail-thumbnails button.is-active {
  border-color: var(--gold);
}

.detail-thumbnails img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.detail-thumbnails span {
  display: block;
  overflow: hidden;
  padding: 7px;
  font-size: 0.58rem;
  font-weight: 700;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.detail-copy {
  align-self: center;
}

.back-link {
  display: inline-block;
  margin-bottom: 60px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.detail-copy h1 {
  font-size: clamp(4rem, 7vw, 7rem);
}

.detail-intro {
  max-width: 570px;
  color: var(--muted);
  font-size: 1.08rem;
}

.detail-data {
  margin: 35px 0;
}

.detail-data div {
  display: grid;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  grid-template-columns: 120px 1fr;
}

.detail-data dt {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.detail-data dd {
  margin: 0;
  font-weight: 700;
}

.available {
  color: var(--gold);
}

.detail-benefits {
  display: grid;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.detail-benefits article > span {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
}

.detail-benefits h2 {
  margin: 44px 0 18px;
  font-size: 2rem;
}

.detail-benefits p {
  color: var(--muted);
}

.simple-page {
  width: min(90%, var(--max-width));
  min-height: 70vh;
  margin: 0 auto;
  padding: clamp(100px, 13vw, 190px) 0;
}

.simple-lead {
  max-width: 620px;
  margin-bottom: 35px;
  color: var(--muted);
  font-size: 1.12rem;
}

.editorial-grid,
.contact-page {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 12vw;
}

.editorial-grid h2 {
  font-size: clamp(2.8rem, 5vw, 5.3rem);
}

.editorial-copy {
  color: var(--muted);
  font-size: 1.1rem;
}

.about-intro {
  border-top: 1px solid var(--line);
}

.about-intro .editorial-copy p {
  margin: 0 0 28px;
}

.inline-link {
  color: var(--white);
  border-bottom: 1px solid var(--gold);
}

.about-statement {
  color: var(--black);
  background: var(--gold);
}

.about-statement .section-shell {
  display: grid;
  grid-template-columns: 0.36fr 1.3fr;
  gap: 5vw 8vw;
}

.about-statement .eyebrow {
  color: rgba(0, 0, 0, 0.62);
}

.about-statement blockquote {
  max-width: 1080px;
  margin: 0;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(3rem, 6.8vw, 7.4rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.about-statement-copy {
  max-width: 680px;
  margin: 10px 0 0;
  grid-column: 2;
  font-size: 1.08rem;
}

.about-principles {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 9vw;
}

.about-principles-heading h2 {
  font-size: clamp(2.8rem, 5vw, 5.3rem);
}

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

.about-principles-grid article {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.about-principles-grid span {
  display: block;
  margin-bottom: 58px;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
}

.about-principles-grid h3 {
  margin-bottom: 16px;
  font-size: 1.55rem;
}

.about-principles-grid p {
  color: var(--muted);
}

.about-closing {
  padding-top: 0;
  text-align: center;
}

.about-closing h2 {
  margin-bottom: 42px;
  font-size: clamp(3rem, 6.4vw, 7rem);
}

.about-closing .button {
  display: inline-flex;
}

.contact-email {
  border-bottom: 2px solid var(--gold);
  font-size: clamp(1.5rem, 3vw, 3rem);
  font-weight: 700;
}

.contact-placeholder {
  padding: 35px;
  color: var(--off-white);
  background: var(--black);
}

.contact-placeholder h2 {
  font-size: 2rem;
}

.legal-page {
  width: min(90%, 900px);
  margin: 0 auto;
  padding: clamp(80px, 10vw, 140px) 0;
}

.legal-page > h1 {
  margin-bottom: 60px;
  font-size: clamp(3.5rem, 7vw, 7rem);
}

.legal-page section {
  padding: 30px 0;
  border-top: 1px solid #c9c9c4;
}

.legal-page h2 {
  margin-bottom: 18px;
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
  letter-spacing: -0.025em;
}

.legal-page p,
.legal-page address {
  color: #555651;
  font-style: normal;
}

.legal-page a {
  border-bottom: 1px solid var(--gold);
}

.legal-updated {
  margin-top: -40px;
  margin-bottom: 50px;
  color: #777873;
  font-size: 0.8rem;
}

.legal-review-note {
  padding: 18px 20px;
  margin-top: 45px;
  background: #e3e0d7;
  border-left: 3px solid var(--gold);
  font-size: 0.78rem;
}

.contact-form-panel {
  padding: clamp(28px, 4vw, 48px);
  color: var(--off-white);
  background: var(--black);
}

.contact-form-panel h2 {
  margin-bottom: 30px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.contact-form {
  display: grid;
  gap: 20px;
}

.form-field label {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--white);
  background: #1a1b1b;
  border: 1px solid var(--line);
  border-radius: 0;
  outline: none;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--gold);
}

.form-field textarea {
  min-height: 170px;
  resize: vertical;
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.75rem;
}

.privacy-check input {
  margin-top: 4px;
  accent-color: var(--gold);
}

.privacy-check a {
  color: var(--white);
  border-bottom: 1px solid var(--gold);
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-required {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.68rem;
}

.form-status {
  padding: 13px 15px;
  margin-bottom: 24px;
  border-left: 3px solid var(--gold);
  background: #212221;
}

.form-status.is-success {
  border-color: #8aa46f;
}

.form-status.is-invalid,
.form-status.is-error {
  border-color: #b96868;
}

@media (max-width: 980px) {
  .site-header {
    height: 72px;
  }

  .brand {
    width: 150px;
  }

  .menu-button {
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 7px;
    color: var(--white);
    background: none;
    border: 0;
  }

  .menu-button span:not(.sr-only) {
    display: block;
    width: 24px;
    height: 1px;
    background: currentColor;
  }

  .navigation {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    padding: 28px 5vw 34px;
    background: rgba(9, 9, 9, 0.97);
    flex-direction: column;
    gap: 0;
  }

  .navigation.is-open {
    display: flex;
  }

  .navigation a,
  .language-button {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }

  .principles,
  .about-section {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .principle-grid {
    gap: 20px;
  }

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

  .material-section,
  .dialog-layout,
  .detail-hero {
    grid-template-columns: 1fr;
  }

  .dialog-visual {
    aspect-ratio: 1;
  }

  .dialog-info {
    padding: 36px 28px;
  }

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

  .variant-card {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .variant-card img {
    width: 58px;
    height: 58px;
  }

  .material-image {
    min-height: 500px;
  }

  .games-teaser {
    grid-template-columns: 1fr auto;
  }

  .games-teaser > div {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .catalog-shell {
    grid-template-columns: 1fr;
  }

  .filters {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 18px;
  }

  .filter-heading {
    grid-column: 1 / -1;
  }

  .detail-copy {
    padding: 0 3vw;
  }

  .detail-benefits,
  .editorial-grid,
  .contact-page,
  .about-principles {
    grid-template-columns: 1fr;
  }

  .about-statement .section-shell {
    grid-template-columns: 1fr;
  }

  .about-statement-copy {
    grid-column: 1;
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: 760px;
  }

  .hero-content {
    min-height: 760px;
    padding-top: 120px;
    padding-bottom: 70px;
    justify-content: flex-end;
  }

  .hero-image {
    background-position: 61% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(5, 5, 5, 0.98) 5%, rgba(5, 5, 5, 0.72) 55%, rgba(5, 5, 5, 0.12) 90%),
      linear-gradient(90deg, rgba(5, 5, 5, 0.62), transparent);
  }

  .hero-actions {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .button {
    width: 100%;
  }

  .hero-product {
    display: none;
  }

  .principle-grid {
    grid-template-columns: 1fr;
  }

  .principle-number {
    margin-bottom: 28px;
  }

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

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

  .product-card {
    aspect-ratio: 1;
  }

  .product-card-content {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .material-section {
    min-height: 0;
  }

  .material-image {
    min-height: 360px;
  }

  .material-content {
    padding: 70px 5vw;
  }

  .games-teaser {
    min-height: 0;
  }

  .about-copy {
    padding-top: 0;
  }

  .about-principles-grid {
    grid-template-columns: 1fr;
  }

  .about-principles-grid span {
    margin-bottom: 28px;
  }

  .about-closing .button {
    display: flex;
  }

  .site-footer {
    padding: 50px 0;
    grid-template-columns: 1fr;
    justify-items: start;
  }

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

  .dialog-layout {
    display: block;
  }

  .dialog-visual {
    min-height: 300px;
  }

  .dialog-info {
    padding: 36px 24px;
  }

  .dialog-product-nav {
    top: auto;
    bottom: 18px;
    width: 48px;
    height: 48px;
    transform: none;
  }

  .dialog-meta {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .dialog-image-caption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 12px;
  }

  .variant-list {
    max-height: none;
    grid-template-columns: 1fr;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .filters {
    display: block;
  }

  .result-heading {
    flex-direction: column;
    gap: 6px;
  }

  .detail-hero {
    width: 100%;
    padding-top: 0;
  }

  .detail-thumbnails {
    display: flex;
    overflow-x: auto;
    padding: 0 4vw 10px;
    scroll-snap-type: x proximity;
  }

  .detail-thumbnails button {
    min-width: 112px;
    flex: 0 0 112px;
    scroll-snap-align: start;
  }

  .detail-copy {
    padding: 20px 5vw 0;
  }

  .back-link {
    margin-bottom: 35px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
