:root {
  --ink: #070707;
  --panel: #0d0d0d;
  --paper: #f1eee7;
  --gold: #e2b24a;
  --gold-soft: #85682e;
  --muted: #9b978e;
  --line: rgba(255, 255, 255, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

img,
video {
  max-width: 100%;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.045em;
}

.site-header {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  max-width: 1500px;
  height: 86px;
  margin: auto;
  padding: 0 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
}

.brand-bear {
  display: block;
  flex: 0 0 auto;
  width: 42px;
  height: 52px;
  background-image: url("/products/brand-bear.webp");
  background-repeat: no-repeat;
  background-size: 103px auto;
  background-position: -30px -16px;
  filter: drop-shadow(0 0 7px rgba(214, 173, 77, 0.24));
}

.brand b {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 500;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 5px;
  color: #8f8c86;
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: clamp(18px, 2.3vw, 34px);
  color: #c7c3bb;
  font-size: 13px;
}

nav a,
footer a {
  transition: color 0.2s ease;
}

nav a:hover,
footer a:hover {
  color: var(--gold);
}

.header-cta {
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  font-size: 12px;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.header-cta:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.hero {
  min-height: 700px;
  padding: 168px 4vw 105px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 62%, rgba(79, 46, 9, 0.63) 0%, rgba(25, 16, 8, 0.72) 30%, transparent 67%),
    linear-gradient(180deg, #060606, #090807 73%, #070707);
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: #aaa69e;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 38px;
  height: 1px;
  background: var(--gold);
}

.hero .eyebrow,
.order-section .eyebrow {
  justify-content: center;
}

.hero h1 {
  margin: 0;
  font-size: clamp(64px, 7vw, 108px);
  line-height: 0.92;
}

.hero-copy {
  max-width: 720px;
  margin: 31px 0 34px;
  color: #b2aea6;
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.button {
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

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

.button-primary:hover {
  background: #f0c562;
}

.button-ghost {
  color: #e1ddd4;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.52);
}

.section-shell {
  max-width: 1500px;
  margin: auto;
  padding: 118px 4vw;
}

.section-heading {
  margin-bottom: 52px;
  display: grid;
  grid-template-columns: 1fr 0.58fr;
  align-items: end;
  gap: 70px;
}

.section-heading h2,
.pouch-copy h2 {
  margin: 0;
  font-size: clamp(47px, 5vw, 76px);
  line-height: 0.98;
}

.section-heading > p {
  max-width: 470px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.comparison {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

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

.variant-card {
  min-height: 365px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #11100e, #0b0b0b 70%);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.variant-card:hover {
  transform: translateY(-5px);
  border-color: rgba(226, 178, 74, 0.55);
  background: linear-gradient(145deg, #17130c, #0b0b0b 70%);
}

.variant-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.variant-card-top span {
  color: #5f5a51;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
}

.variant-card-top strong {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 400;
}

.variant-card h3 {
  min-height: 62px;
  margin: 50px 0 24px;
  color: #ded9cf;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.15;
}

.variant-formula {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #c7c1b6;
}

.variant-formula b {
  padding: 8px 10px;
  border: 1px solid rgba(226, 178, 74, 0.36);
  border-radius: 999px;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.variant-formula i {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-style: normal;
}

.variant-card p {
  margin: 22px 0 20px;
  color: #8e8a82;
  font-size: 13px;
  line-height: 1.65;
}

.variant-card small {
  margin-top: auto;
  color: #a78843;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.discount-note {
  margin-top: 14px;
  padding: 22px 25px;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 20px;
  align-items: center;
  color: #8f8a81;
  border: 1px solid rgba(226, 178, 74, 0.25);
  background: rgba(226, 178, 74, 0.035);
  font-size: 11px;
}

.discount-note > span {
  color: #cfc9bd;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
}

.discount-note b {
  display: block;
  margin-bottom: 5px;
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-section {
  display: grid;
  grid-template-columns: minmax(0, 0.83fr) minmax(0, 1.17fr);
  gap: 6vw;
  align-items: start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  scroll-margin-top: 20px;
}

.product-reverse {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.product-number {
  margin: 0 0 30px;
  color: #3d3932;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 78px;
  line-height: 0.8;
}

.product-title-row {
  padding-bottom: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.product-title-row h2 {
  margin: 0;
  font-size: clamp(48px, 5vw, 74px);
  line-height: 0.93;
}

.product-title-row > strong {
  padding-bottom: 5px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 400;
  white-space: nowrap;
}

.product-lead {
  margin: 28px 0 20px;
  color: #d0cbc2;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  line-height: 1.52;
}

.product-paragraph {
  margin: 0 0 30px;
  color: #98948c;
  font-size: 14px;
  line-height: 1.8;
}

.product-copy h3 {
  margin: 32px 0 13px;
  color: #d1cbc0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 400;
}

.feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-list li {
  position: relative;
  padding: 13px 0 13px 26px;
  color: #aaa69e;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  line-height: 1.55;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 1px;
  top: 13px;
  color: var(--gold);
  font-size: 11px;
}

.meaning-note {
  margin-top: 28px;
  padding: 18px 20px;
  border-left: 1px solid var(--gold-soft);
  background: rgba(255, 255, 255, 0.02);
}

.meaning-note span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.meaning-note p {
  margin: 10px 0 0;
  color: #a6a198;
  font-size: 13px;
  line-height: 1.7;
}

.media-grid {
  display: grid;
  gap: 14px;
}

.media-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0a0a0a;
}

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

.media-sticky {
  position: sticky;
  top: 30px;
}

.champion-media {
  grid-template-columns: 1fr 1fr;
}

.legacy-media {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.legacy-media .media-wide {
  grid-column: 1 / -1;
  grid-row: 2;
}

.video-section {
  max-width: 1500px;
  margin: auto;
  padding: 110px 7vw;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  gap: 8vw;
  align-items: center;
  background: linear-gradient(125deg, #171208, #0c0a08 48%, #070707);
  border-top: 1px solid #70582b;
  border-bottom: 1px solid #70582b;
}

.video-copy h2 {
  margin: 0;
  font-size: clamp(47px, 5vw, 76px);
  line-height: 0.98;
}

.video-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin: 27px 0 0;
  color: #9c988f;
  font-size: 14px;
  line-height: 1.75;
}

.video-frame {
  width: 100%;
  max-width: 520px;
  margin: auto;
  padding: 9px;
  border: 1px solid var(--gold-soft);
  background: #040404;
  box-shadow: 0 24px 75px rgba(0, 0, 0, 0.58);
}

.video-frame video {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #020202;
}

.combo-section {
  max-width: 1500px;
  min-height: 345px;
  margin: auto;
  padding: 60px 6vw;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) auto;
  gap: 50px;
  align-items: center;
  background: radial-gradient(circle at 5% 50%, #2c1a08 0%, #130e09 30%, #080808 74%);
  border-top: 1px solid #80672f;
  border-bottom: 1px solid #80672f;
  scroll-margin-top: 20px;
}

.combo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.combo-mark span {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid #8a713b;
  border-radius: 50%;
  color: #d9d2c5;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
}

.combo-mark i {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-style: normal;
}

.combo-copy h2 {
  margin: 0;
  font-size: clamp(45px, 4.7vw, 70px);
  line-height: 0.98;
}

.combo-copy > p:not(.eyebrow) {
  max-width: 760px;
  margin: 20px 0 0;
  color: #9b978f;
  font-size: 14px;
  line-height: 1.75;
}

.combo-formula {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: #c7c1b6;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
}

.combo-formula span {
  color: var(--gold-soft);
}

.combo-section > strong {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
  white-space: nowrap;
}

.pouch-section {
  padding-top: 34px;
  padding-bottom: 110px;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 6vw;
  align-items: center;
}

.pouch-copy > p:not(.eyebrow) {
  max-width: 490px;
  margin: 26px 0 0;
  color: #9d9991;
  font-size: 15px;
  line-height: 1.75;
}

.pouch-card {
  margin: 0;
  border: 1px solid var(--line);
  background: #080808;
}

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

.order-section {
  min-height: 580px;
  padding: 100px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(ellipse at center, #301109 0%, #100907 36%, #050505 70%);
  border-top: 1px solid var(--line);
}

.order-section h2 {
  margin: 0;
  font-size: clamp(54px, 6vw, 88px);
  line-height: 0.96;
}

.order-section > p:not(.eyebrow) {
  max-width: 570px;
  margin: 27px 0 31px;
  color: #9c978e;
  font-size: 15px;
  line-height: 1.7;
}

footer {
  max-width: 1500px;
  min-height: 145px;
  margin: auto;
  padding: 35px 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--line);
}

footer > p {
  margin: 0;
  color: #6f6b65;
  font-size: 11px;
  line-height: 1.7;
  text-align: center;
}

footer > div {
  display: flex;
  gap: 22px;
  color: #9b978f;
  font-size: 11px;
}

@media (max-width: 1100px) {
  .variant-grid {
    grid-template-columns: 1fr 1fr;
  }

  .variant-card {
    min-height: 320px;
  }

  .discount-note {
    grid-template-columns: 1fr 1fr;
  }

  .product-section {
    gap: 4vw;
  }

  .champion-media {
    grid-template-columns: 1fr;
  }

  .combo-section {
    grid-template-columns: 150px 1fr;
  }

  .combo-section > strong {
    grid-column: 2;
  }
}

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

  nav {
    display: none;
  }

  .hero {
    min-height: 620px;
    padding-top: 140px;
  }

  .section-heading,
  .product-section,
  .video-section,
  .pouch-section {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .pouch-section {
    gap: 36px;
  }

  .product-copy {
    max-width: 760px;
  }

  .media-sticky {
    position: static;
  }

  .champion-media {
    grid-template-columns: 1fr 1fr;
  }

  .video-section {
    gap: 46px;
  }

  .pouch-section {
    padding-top: 70px;
  }
}

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

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 590px;
    padding: 126px 20px 74px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero-copy {
    margin: 25px 0 29px;
    font-size: 14px;
    line-height: 1.7;
  }

  .hero-actions {
    width: 100%;
    display: grid;
  }

  .button {
    width: 100%;
  }

  .section-shell {
    padding: 80px 20px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .pouch-copy h2 {
    font-size: 43px;
  }

  .section-heading > p {
    font-size: 13px;
  }

  .variant-grid {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .variant-card {
    min-height: 0;
    padding: 22px;
  }

  .variant-card h3 {
    min-height: 0;
    margin: 30px 0 20px;
    font-size: 24px;
  }

  .discount-note {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 11px;
  }

  .discount-note > div {
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .product-number {
    margin-bottom: 22px;
    font-size: 60px;
  }

  .product-title-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
  }

  .product-title-row h2 {
    font-size: 45px;
  }

  .product-title-row > strong {
    font-size: 26px;
  }

  .product-lead {
    font-size: 19px;
  }

  .product-paragraph {
    font-size: 13px;
  }

  .champion-media,
  .legacy-media {
    grid-template-columns: 1fr;
  }

  .legacy-media .media-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .video-section {
    padding: 78px 20px;
  }

  .video-copy h2 {
    font-size: 43px;
  }

  .video-frame {
    max-width: 460px;
  }

  .combo-section {
    padding: 72px 20px;
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .combo-copy .eyebrow {
    justify-content: center;
  }

  .combo-copy h2 {
    font-size: 43px;
  }

  .combo-formula {
    justify-content: center;
    font-size: 15px;
  }

  .combo-section > strong {
    grid-column: auto;
    font-size: 31px;
  }

  .pouch-section {
    padding-top: 24px;
  }

  .order-section {
    min-height: 540px;
    padding: 80px 20px;
  }

  .order-section h2 {
    font-size: 48px;
  }

  .order-actions {
    width: 100%;
  }

  footer {
    padding: 42px 20px;
    flex-direction: column;
    text-align: center;
  }
}

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

  * {
    transition: none !important;
  }
}
