    :root {
      --bg-dark: #111418;
      --bg-card: #1c2127;
      --bg-soft: #181c20;
      --accent-brass: #d7b46a;
      --accent-wood: #9b6b3b;
      --accent-green: #3f5b34;
      --text-main: #f9fafb;
      --text-muted: #9ca3af;
      --border-subtle: #272c33;
      --radius-lg: 18px;
      --shadow-soft: 0 18px 45px rgba(0,0,0,0.45);
    }

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

    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: radial-gradient(circle at top, #1f2933 0, #05070a 55%, #000 100%);
      color: var(--text-main);
      line-height: 1.6;
    }

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

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

    .page {
      max-width: 1120px;
      margin: 0 auto;
      padding: 16px;
    }

    /* HERO */

    .hero {
      position: relative;
      border-radius: 28px;
      overflow: hidden;
      min-height: 420px;
      display: flex;
      align-items: stretch;
      box-shadow: var(--shadow-soft);
      isolation: isolate;
      margin-top: 12px;
    }

    .hero::before {
      /* TODO: place your cropped banner image in the same folder and name it banner.jpg
         or change the URL here. */
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(135deg, rgba(0,0,0,0.78), rgba(0,0,0,0.35)),
        url("banner.jpg") 35% 15%/cover no-repeat;
      z-index: -1;
      filter: saturate(1.05);
    }

    .hero-content {
      padding: 28px 28px 28px 28px;
      display: grid;
      grid-template-columns: minmax(0, 2.1fr) minmax(0, 1fr);
      gap: 24px;
      width: 100%;
    }

    .title-block h1 {
      font-size: clamp(2.1rem, 3vw, 2.7rem);
      letter-spacing: 0.03em;
      text-transform: uppercase;
    }

    .title-block h1 span {
      color: var(--accent-brass);
    }

    .title-block p {
      max-width: 34rem;
      margin-top: 8px;
      color: var(--text-muted);
    }

    .hero-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 14px;
    }

    .hero-tag {
      font-size: 0.78rem;
      padding: 6px 10px;
      border-radius: 999px;
      border: 1px solid rgba(215,180,106,0.35);
      background: rgba(0,0,0,0.35);
      text-transform: uppercase;
      letter-spacing: 0.09em;
      color: var(--text-muted);
    }

    .hero-actions {
      margin-top: 20px;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .btn {
      border-radius: 999px;
      padding: 10px 18px;
      font-size: 0.94rem;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 1px solid transparent;
      cursor: pointer;
      transition: transform 0.08s ease-out, box-shadow 0.08s ease-out, background 0.08s ease-out, border-color 0.08s ease-out;
      text-decoration: none;
      white-space: nowrap;
    }

    .btn-primary {
      background-image: linear-gradient(130deg, var(--accent-brass), var(--accent-wood));
      color: #111;
      box-shadow: 0 12px 30px rgba(0,0,0,0.6);
    }

    .btn-outline {
      border-color: rgba(255,255,255,0.24);
      background: rgba(0,0,0,0.35);
      color: var(--text-main);
    }

    .btn:hover {
      transform: translateY(0px);
      box-shadow: 0 16px 36px rgba(0,0,0,0.6);
    }

    .btn-outline:hover {
      background: rgba(0,0,0,0.6);
      border-color: rgba(255,255,255,0.45);
    }

    .hero-right {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      gap: 6px;
    }

    .avatar-wrap {
      width: 110px;
      height: 110px;
      border-radius: 999px;
      padding: 3px;
      background: conic-gradient(from 220deg, var(--accent-brass), var(--accent-wood), var(--accent-green), var(--accent-brass));
      box-shadow: 0 10px 25px rgba(0,0,0,0.65);
      margin-top: 6rem;
    }

    .avatar-inner {
      width: 100%;
      height: 100%;
      border-radius: 999px;
      overflow: hidden;
      background: #111;
    }

    .hero-right small {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--text-muted);
    }

    /* SECTIONS */

    section {
      margin-top: 30px;
    }

    .section-head {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      gap: 12px;
      margin-bottom: 12px;
    }

    .section-head h2 {
      font-size: 1.25rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .section-head p {
      font-size: 0.9rem;
      color: var(--text-muted);
    }

    .card-surface {
      background: radial-gradient(circle at top left, #232933 0, var(--bg-soft) 55%, #080a0d 100%);
      border-radius: var(--radius-lg);
      border: 1px solid var(--border-subtle);
      box-shadow: var(--shadow-soft);
      padding: 18px 18px 16px;
    }

    /* PRODUCT GRID */

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

    .gear-card {
      background: rgba(0,0,0,0.35);
      border-radius: 16px;
      padding: 14px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      border: 1px solid rgba(255,255,255,0.04);
    }

    .gear-title {
      font-weight: 600;
      font-size: 0.98rem;
    }

    .gear-meta {
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    .gear-price {
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--accent-brass);
    }

    .gear-card .btn {
      margin-top: 8px;
      font-size: 0.85rem;
      padding-inline: 14px;
    }

/* Always align buttons at the bottom of each gear card */
.gear-card {
  display: flex;
  flex-direction: column;
}

.gear-card .btn {
  margin-top: auto;
}

.gear-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.45);
  transition: all .16s ease-out;
}


.gear-card img:hover {
  transform: scale(1.04);
  transition: transform .2s ease-out;
}


    /* ABOUT & VIDEO */

    .two-col {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
      gap: 18px;
      align-items: start;
    }

    .about-text p {
      color: var(--text-muted);
      font-size: 0.94rem;
      margin-bottom: 8px;
    }

    .about-text ul {
      list-style: none;
      margin-top: 8px;
      color: var(--text-muted);
      font-size: 0.9rem;
    }

    .about-text li::before {
      content: "•";
      margin-right: 6px;
      color: var(--accent-brass);
    }

    .video-frame {
      aspect-ratio: 16 / 9;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid var(--border-subtle);
      box-shadow: var(--shadow-soft);
      background: #000;
    }

    iframe {
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
    }

    /* FOOTER */

    footer {
      margin: 30px 0 18px;
      font-size: 0.78rem;
      color: var(--text-muted);
    }

    footer p + p {
      margin-top: 6px;
    }

    /* RESPONSIVE */

    @media (max-width: 800px) {
      .hero-content {
        grid-template-columns: minmax(0, 1fr);
      }
      .hero-right {
        flex-direction: row;
        justify-content: flex-start;
        gap: 16px;
        margin-top: 6px;
      }
    }

    @media (max-width: 640px) {
      .hero {
        border-radius: 16px;
      }
      .card-surface {
        padding: 14px 12px 12px;
      }
      .section-head {
        flex-direction: column;
      }
      .two-col {
        grid-template-columns: minmax(0, 1fr);
      }
    }

.avatar-wrap:hover .avatar-inner img {
  transform: scale(1.03);
  filter: brightness(1.1);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.subscribe-hero-text {
  display: block;
  margin-top: -1rem;
  font-size: 1rem;
  font-weight: 600;
  color: #f5f5f5;
  text-align: center;
}

/* Subtle brass highlight on hover */
.btn-primary:hover {
  filter: brightness(1.05);
}