:root {
  --black: #060607;
  --charcoal: #0f0f11;
  --charcoal-soft: #17171b;
  --graphite: #24242b;
  --text: #f1ede5;
  --muted: #c6bfb2;
  --red: #b7121b;
  --red-bright: #ef2633;
  --gold: #c59b56;
  --gold-bright: #f0c779;
  --line: rgba(197, 155, 86, 0.36);
  --shadow-1: 0 15px 34px rgba(0, 0, 0, 0.42);
  --shadow-2: 0 28px 68px rgba(0, 0, 0, 0.58);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 8% -5%, rgba(183, 18, 27, 0.34), transparent 43%),
    radial-gradient(circle at 95% 5%, rgba(197, 155, 86, 0.24), transparent 45%),
    linear-gradient(180deg, #080809 0%, #0b0b0d 46%, #121216 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

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

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

.wrap {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.bg-layers {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.bg-orb {
  position: absolute;
  filter: blur(58px);
  opacity: 0.55;
}

.bg-orb-a {
  width: 520px;
  height: 520px;
  top: -220px;
  left: -140px;
  background: radial-gradient(circle, rgba(183, 18, 27, 0.92), transparent 70%);
}

.bg-orb-b {
  width: 560px;
  height: 560px;
  right: -180px;
  top: 210px;
  background: radial-gradient(circle, rgba(197, 155, 86, 0.78), transparent 72%);
}

.bg-grid {
  position: absolute;
  inset: 0;
  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: 46px 46px;
  opacity: 0.4;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 14px 0;
}

.nav-shell {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 12px;
  position: relative;
  border-radius: 999px;
  padding: 8px 10px;
  background: linear-gradient(145deg, rgba(17, 17, 20, 0.95), rgba(10, 10, 12, 0.95));
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-1);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(160deg, #0f0f11 0%, #18181d 100%);
  border: 1px solid rgba(239, 38, 51, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 10px 18px rgba(0, 0, 0, 0.45);
}

.brand-logo {
  width: auto;
  height: 32px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1 1 auto;
  min-width: 0;
}

.site-nav a {
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 650;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.site-nav a:hover {
  background: rgba(197, 155, 86, 0.14);
  color: var(--text);
  transform: translateY(-1px);
}

.site-nav a.active {
  color: #fff;
  background: linear-gradient(135deg, #950f16 0%, #c91620 55%, #e82630 100%);
  box-shadow: 0 10px 22px rgba(183, 18, 27, 0.42);
}

.store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 10px 16px;
  border-radius: 999px;
  white-space: nowrap;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, #8d0f15 0%, #c71621 55%, #c59b56 100%);
  border: 1px solid rgba(240, 199, 121, 0.42);
  box-shadow: 0 12px 28px rgba(141, 15, 21, 0.46);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.store-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 15px 31px rgba(141, 15, 21, 0.54);
}

.menu-toggle {
  display: none;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  background: rgba(36, 36, 43, 0.95);
  color: var(--text);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 700;
}

main {
  padding: 34px 0 74px;
}

.hero {
  padding: 62px 0 24px;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 24px;
}

.hero-copy {
  display: grid;
  gap: 18px;
  align-content: start;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.77rem;
  font-weight: 700;
  color: rgba(240, 199, 121, 0.86);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.9rem);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: 0.01em;
  max-width: 14ch;
  color: #fcf8f1;
  text-shadow: 0 0 24px rgba(183, 18, 27, 0.34);
}

.lead {
  font-size: clamp(1.02rem, 1.65vw, 1.25rem);
  line-height: 1.58;
  color: #d3ccbe;
  max-width: 62ch;
}

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

.hero-visual {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.media-card {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(197, 155, 86, 0.34);
  background: linear-gradient(165deg, rgba(24, 24, 28, 0.92), rgba(17, 17, 20, 0.9));
  box-shadow: var(--shadow-2);
}

.media-card-main {
  min-height: 300px;
}

.media-card-side {
  min-height: 170px;
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #8f1017 0%, #c7141f 52%, #ea2934 100%);
  box-shadow: 0 15px 30px rgba(174, 22, 31, 0.42);
}

.btn-ghost {
  color: #f3ede1;
  border-color: rgba(197, 155, 86, 0.45);
  background: rgba(34, 34, 40, 0.84);
}

.btn-ghost:hover {
  border-color: rgba(240, 199, 121, 0.76);
}

.quote-block {
  margin-top: 28px;
  border-radius: 28px;
  padding: clamp(24px, 5vw, 38px);
  background: linear-gradient(140deg, rgba(22, 22, 26, 0.96) 0%, rgba(136, 17, 24, 0.94) 58%,
      rgba(197, 155, 86, 0.88) 100%);
  border: 1px solid rgba(240, 199, 121, 0.32);
  box-shadow: var(--shadow-2);
  display: grid;
  gap: 14px;
  align-content: start;
}

.quote-block p {
  font-size: clamp(1.08rem, 2.05vw, 1.62rem);
  line-height: 1.45;
  font-weight: 700;
}

.quote-block span {
  font-size: 0.95rem;
  opacity: 0.9;
}

.showcase-tiles {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.showcase-tile {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(197, 155, 86, 0.27);
  background: linear-gradient(160deg, rgba(20, 20, 23, 0.92), rgba(30, 30, 35, 0.92));
  box-shadow: var(--shadow-1);
  min-height: 180px;
}

.showcase-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stack {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.panel {
  background: linear-gradient(160deg, rgba(20, 20, 23, 0.93), rgba(29, 29, 34, 0.9));
  border: 1px solid rgba(197, 155, 86, 0.27);
  border-radius: 22px;
  padding: 20px;
  box-shadow: var(--shadow-1);
  display: grid;
  gap: 8px;
  align-content: start;
}

.panel-kicker {
  font-size: 0.77rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: rgba(240, 199, 121, 0.9);
  font-weight: 700;
}

.panel h2 {
  font-size: 1.2rem;
  font-weight: 780;
  color: #f8f2e9;
}

.panel p {
  color: #c9c1b6;
  line-height: 1.48;
}

.product-grid {
  margin-top: 18px;
}

.product-card {
  display: grid;
  grid-template-columns: minmax(240px, 360px) 1fr;
  align-items: center;
  gap: 22px;
  border-radius: 26px;
  padding: 24px;
  box-shadow: var(--shadow-2);
  background: linear-gradient(155deg, rgba(18, 18, 21, 0.95), rgba(29, 29, 34, 0.93));
  border: 1px solid rgba(197, 155, 86, 0.3);
}

.product-art {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(240, 199, 121, 0.31);
  background: linear-gradient(160deg, rgba(26, 26, 30, 0.95), rgba(132, 16, 24, 0.9));
  min-height: 260px;
}

.product-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-content {
  display: grid;
  gap: 12px;
  align-content: start;
}

.product-content h2 {
  font-size: clamp(1.42rem, 2.3vw, 1.92rem);
  font-weight: 800;
}

.product-content p {
  color: #cbc4b8;
  line-height: 1.58;
  max-width: 62ch;
}

.product-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(12, 12, 15, 0.92);
  border: 1px solid rgba(197, 155, 86, 0.42);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-logo-link:hover {
  transform: translateY(-2px);
  border-color: rgba(240, 199, 121, 0.75);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.52);
}

.product-logo-link img {
  width: min(210px, 70vw);
  height: auto;
}

.contact-layout {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 16px;
}

.contact-panel {
  background: linear-gradient(160deg, rgba(19, 19, 22, 0.95), rgba(29, 29, 34, 0.92));
  border: 1px solid rgba(197, 155, 86, 0.28);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow-1);
  display: grid;
  gap: 14px;
  align-content: start;
}

.contact-media {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(240, 199, 121, 0.32);
  min-height: 150px;
}

.contact-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-panel h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #f8f2ea;
}

.contact-panel p {
  color: #c9c2b7;
  line-height: 1.55;
}

.contact-form {
  display: grid;
  gap: 10px;
  align-content: start;
}

.contact-captcha {
  margin-top: 4px;
}

.contact-captcha .cf-turnstile {
  width: 100%;
  min-height: 65px;
}

.contact-form label {
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: rgba(240, 199, 121, 0.86);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid rgba(197, 155, 86, 0.34);
  background: rgba(40, 40, 45, 0.76);
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
  color: #f7f3ec;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 2px solid rgba(183, 18, 27, 0.55);
  border-color: rgba(240, 199, 121, 0.8);
}

.contact-field-hint {
  margin: -2px 0 6px;
  color: #c9c2b7;
  font-size: 0.82rem;
  line-height: 1.45;
}

.contact-fieldset {
  border: 1px solid rgba(197, 155, 86, 0.32);
  border-radius: 14px;
  padding: 12px;
  display: grid;
  gap: 10px;
}

.contact-fieldset legend {
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: rgba(240, 199, 121, 0.86);
  padding: 0 8px;
}

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

.checkbox-option {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(197, 155, 86, 0.24);
  background: rgba(20, 20, 24, 0.72);
  border-radius: 12px;
  padding: 9px 10px;
  color: #f7f3ec;
}

.checkbox-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #b7121b;
}

.checkbox-inline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(197, 155, 86, 0.24);
  background: rgba(20, 20, 24, 0.72);
  border-radius: 12px;
  padding: 9px 10px;
  color: #f7f3ec;
  text-transform: none;
  letter-spacing: 0;
}

.checkbox-inline input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #b7121b;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.contact-links a,
.inline-link {
  color: #f0c779;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-feedback {
  min-height: 1.35em;
  font-size: 0.95rem;
  color: #d0c8bc;
}

.form-feedback.error {
  color: #ff8f91;
}

.affiliate-wrap {
  margin-top: 14px;
}

.affiliate-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
  border-radius: 26px;
  padding: clamp(22px, 4vw, 34px);
  box-shadow: var(--shadow-2);
  background: linear-gradient(145deg, rgba(17, 17, 21, 0.96) 0%, rgba(131, 17, 24, 0.93) 68%,
      rgba(197, 155, 86, 0.9) 100%);
  border: 1px solid rgba(240, 199, 121, 0.35);
}

.affiliate-copy {
  display: grid;
  gap: 14px;
  align-content: start;
}

.affiliate-card h2 {
  font-size: clamp(1.36rem, 2.25vw, 1.88rem);
  font-weight: 800;
}

.affiliate-card p {
  line-height: 1.6;
  opacity: 0.94;
  max-width: 62ch;
}

.affiliate-card .panel-kicker {
  color: rgba(240, 199, 121, 0.9);
}

.affiliate-media {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(240, 199, 121, 0.34);
  min-height: 180px;
  background: rgba(22, 22, 25, 0.62);
}

.affiliate-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-footer {
  margin: 48px 0 0;
  border-top: 1px solid rgba(197, 155, 86, 0.25);
  background: linear-gradient(180deg, rgba(14, 14, 16, 0.52), rgba(9, 9, 11, 0.93));
}

.footer-grid {
  padding: 30px 0 16px;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 16px;
}

.footer-grid > div {
  display: grid;
  gap: 4px;
  align-content: start;
}

.footer-grid h3 {
  font-size: 1rem;
  margin-bottom: 9px;
  color: #f5f0e8;
}

.footer-grid p {
  color: #c0b8ab;
  line-height: 1.5;
  margin-bottom: 4px;
}

.footer-grid a:hover {
  color: #f0c779;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(197, 155, 86, 0.2);
  padding: 12px 0 22px;
  color: #9f978b;
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (max-width: 1080px) {
  .site-nav a {
    padding: 8px 10px;
    font-size: 0.86rem;
  }

  .store-btn {
    padding: 10px 13px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
    margin-left: 8px;
  }

  .store-btn {
    margin-left: auto;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 4vw;
    right: 4vw;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    background: rgba(14, 14, 17, 0.98);
    border: 1px solid rgba(197, 155, 86, 0.36);
    border-radius: 20px;
    padding: 10px;
    box-shadow: var(--shadow-1);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    text-align: center;
    font-size: 0.92rem;
  }

  .hero-layout,
  .showcase-tiles,
  .stack,
  .footer-grid,
  .contact-layout,
  .product-card,
  .affiliate-card {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 16px;
  }

  .media-card-main {
    min-height: 240px;
  }

  .media-card-side,
  .affiliate-media {
    min-height: 150px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 10px 0;
  }

  .nav-shell {
    gap: 8px;
    padding: 7px 8px;
  }

  .brand {
    padding: 5px 10px;
  }

  .brand-logo {
    height: 26px;
  }

  .store-btn,
  .menu-toggle {
    font-size: 0.78rem;
    padding: 8px 10px;
  }

  .hero {
    padding-top: 40px;
  }

  h1 {
    max-width: none;
  }
}

@media (max-width: 420px) {
  .wrap {
    width: min(1140px, 94vw);
  }

  .brand-logo {
    height: 23px;
  }

  .store-btn,
  .menu-toggle {
    padding: 7px 8px;
    font-size: 0.73rem;
  }
}
