:root {
  --red: #7a0019;
  --red-dark: #4c0010;
  --yellow: #f5b719;
  --cream: #f7f4ef;
  --ink: #1a1614;
  --white: #fff;
  --muted: #6b6560;
  --line: rgba(26, 22, 20, 0.1);
  --line-light: rgba(255, 255, 255, 0.14);
  --container: 1120px;
  --radius: 2px;
  --space: clamp(72px, 10vw, 120px);
}

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

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.section {
  padding: var(--space) 0;
}

.section + .section {
  border-top: 1px solid var(--line);
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
  z-index: 999;
  top: 8px;
  left: 8px;
  width: auto;
  height: auto;
  padding: 12px 18px;
  clip: auto;
  background: var(--white);
  border: 2px solid var(--red);
}

/* Header */

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: background 0.25s, border-color 0.25s;
}

.site-header.scrolled {
  background: rgba(76, 0, 16, 0.97);
  border-bottom-color: var(--line-light);
  backdrop-filter: blur(8px);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}

.brand img {
  border-radius: 50%;
  border: 2px solid rgba(245, 183, 25, 0.35);
}

.brand strong {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.14em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  position: relative;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: width 0.2s;
}

.main-nav a:not(.nav-cta):hover::after,
.main-nav a:not(.nav-cta):focus-visible::after {
  width: 100%;
}

.nav-cta {
  padding: 12px 20px;
  background: var(--yellow);
  color: var(--red-dark);
  border-radius: var(--radius);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px;
  background: var(--white);
}

/* Hero */

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  border-bottom: 4px solid var(--yellow);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background: linear-gradient(
    105deg,
    rgba(48, 0, 8, 0.94) 0%,
    rgba(76, 0, 16, 0.78) 45%,
    rgba(76, 0, 16, 0.35) 100%
  );
}

.hero-content {
  position: relative;
  padding-top: 76px;
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--yellow);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
}

.eyebrow.dark {
  color: var(--red);
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(3.5rem, 9vw, 7.5rem);
}

h1 span {
  color: var(--yellow);
}

h2 {
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
}

h3 {
  font-size: 1.75rem;
}

.hero-copy {
  max-width: 520px;
  margin: 28px 0 0;
  font-size: 1.125rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 0.75rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

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

.button-primary {
  background: var(--yellow);
  color: var(--red-dark);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.button-ghost:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.7);
}

.scroll-cue::after {
  content: "";
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--yellow), transparent);
}

/* Stats strip */

.stats {
  padding: 0;
  background: var(--white);
  border-top: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.stat {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat span {
  display: block;
  margin-top: 10px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 600;
}

/* Intro */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: start;
}

.intro-copy {
  padding-top: 12px;
  border-left: 3px solid var(--yellow);
  padding-left: 28px;
}

.lead {
  margin-top: 0;
  font-size: 1.25rem;
  line-height: 1.55;
  font-weight: 600;
}

.intro-copy p:not(.lead),
.events-panel > div > p,
.join-content > p,
.section-heading > p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  text-decoration: none;
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 4px;
}

/* Highlights */

.highlights {
  color: var(--white);
  background: var(--red-dark);
  border-top: none;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line-light);
}

.section-heading > p {
  max-width: 380px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
}

.feature-card {
  position: relative;
  min-height: 320px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--red-dark);
  border-left: 4px solid var(--yellow);
}

.feature-card:nth-child(2) {
  background: #5a0012;
}

.feature-card:nth-child(3) {
  background: #3d000d;
  border-left-color: rgba(245, 183, 25, 0.5);
}

.card-number {
  color: var(--yellow);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.card-kicker {
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
  font-weight: 700;
  margin: 0 0 8px;
}

.feature-card h3 {
  margin-bottom: 12px;
}

.feature-card p:last-child {
  margin: 0;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

/* Events */

.events {
  background: var(--yellow);
  border-top: none;
}

.events-panel {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: end;
}

.events-panel h2 {
  color: var(--red-dark);
}

.events-action {
  padding: 32px;
  background: var(--white);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
}

.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(122, 0, 25, 0.35); }
  50% { box-shadow: 0 0 0 8px rgba(122, 0, 25, 0); }
}

.events-action p {
  font-weight: 600;
  margin: 16px 0 24px;
  color: var(--ink);
}

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

.button-dark:hover {
  background: var(--red);
}

/* Join */

.join {
  background: var(--red);
  color: var(--white);
  border-top: none;
}

.join-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.join-mark {
  font-size: clamp(5rem, 14vw, 10rem);
  line-height: 0.85;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(245, 183, 25, 0.35);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  user-select: none;
}

.join-content {
  max-width: 560px;
}

.join-content > p {
  color: rgba(255, 255, 255, 0.75);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 32px;
  border-top: 1px solid var(--line-light);
}

.check-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line-light);
  display: flex;
  align-items: center;
  gap: 12px;
}

.check-list li::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 2px;
  background: var(--yellow);
}

.button-light {
  background: var(--white);
  color: var(--red);
}

.button-light:hover {
  background: var(--yellow);
}

/* Merch */

.merch {
  background: var(--white);
}

.merch-grid {
  align-items: center;
}

.button-outline {
  color: var(--red);
  border-color: var(--red);
  margin-top: 24px;
}

.button-outline:hover {
  background: var(--red);
  color: var(--white);
}

.merch-visual {
  position: relative;
  min-height: 400px;
  display: grid;
  place-items: center;
  background: var(--cream);
  border: 1px solid var(--line);
  border-left: 4px solid var(--yellow);
}

.merch-visual img {
  width: min(55%, 260px);
}

.merch-visual span {
  position: absolute;
  bottom: 20px;
  left: 24px;
  color: var(--red-dark);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
}

/* Contact */

.contact {
  background: var(--ink);
  color: var(--white);
  border-top: none;
}

.contact-heading > p {
  color: rgba(255, 255, 255, 0.55);
}

.contact-links {
  border-top: 1px solid var(--line-light);
}

.contact-links a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-light);
  text-decoration: none;
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: color 0.2s, padding-left 0.2s;
}

.contact-links a:hover {
  color: var(--yellow);
  padding-left: 12px;
}

.contact-links b {
  color: var(--yellow);
  font-weight: 400;
  font-size: 1.25rem;
}

.location-note {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--line-light);
  display: flex;
  justify-content: space-between;
  gap: 30px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
}

.location-note span {
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  white-space: nowrap;
}

.location-note p {
  margin: 0;
  text-align: right;
}

/* Footer */

footer {
  padding: 28px 0;
  color: var(--white);
  background: #100c0b;
  border-top: 3px solid var(--yellow);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-brand {
  color: var(--white);
}

/* Responsive */

@media (max-width: 850px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    padding: 20px;
    background: var(--red-dark);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line-light);
  }

  .main-nav a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 12px;
    text-align: center;
    border: 0 !important;
  }

  .split,
  .events-panel,
  .join-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .intro-copy {
    border-left: 0;
    padding-left: 0;
    border-top: 3px solid var(--yellow);
    padding-top: 24px;
  }

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

  .stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat:last-child {
    border-bottom: 0;
  }

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

  .feature-card {
    min-height: auto;
  }

  .section-heading {
    display: block;
  }

  .section-heading > p {
    margin-top: 20px;
  }

  .join-mark {
    display: none;
  }

  .merch-visual {
    min-height: 320px;
  }

  .location-note,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .location-note p {
    text-align: left;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .nav-wrap {
    min-height: 68px;
  }

  .main-nav {
    top: 68px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .scroll-cue {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}

/* Commerce and membership */

.cart-trigger {
  min-height: 42px;
  padding: 0 14px;
  border: 0;
  background: var(--yellow);
  color: var(--red-dark);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  cursor: pointer;
}

.cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  margin-left: 6px;
  padding: 0 5px;
  color: var(--white);
  background: var(--red-dark);
  border-radius: 50%;
}

.membership {
  background: var(--white);
}

.membership-heading,
.shop-heading {
  border-bottom-color: var(--line);
}

.membership-heading > p,
.shop-heading > p {
  color: var(--muted);
}

.membership-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.membership-form {
  padding: clamp(24px, 4vw, 44px);
  background: var(--cream);
  border: 1px solid var(--line);
}

.form-notice {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  padding: 15px 18px;
  color: var(--red-dark);
  background: rgba(245, 183, 25, 0.18);
  border-left: 3px solid var(--yellow);
  font-size: 0.84rem;
}

.form-notice span,
.photo-upload small,
.choice-card small {
  color: var(--muted);
}

.membership-form fieldset {
  margin: 0 0 32px;
  padding: 0;
  border: 0;
}

.membership-form legend {
  width: 100%;
  margin-bottom: 18px;
  padding-bottom: 10px;
  color: var(--red);
  border-bottom: 1px solid var(--line);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.76rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.membership-form label,
.product-info label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
}

input,
select {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(26, 22, 20, 0.22);
  font: inherit;
}

input:focus,
select:focus {
  outline: 3px solid rgba(245, 183, 25, 0.35);
  border-color: var(--red);
}

.photo-upload {
  grid-template-columns: 50px 1fr;
  align-items: center;
  padding: 20px;
  border: 1px dashed rgba(122, 0, 25, 0.45);
  background: var(--white);
  cursor: pointer;
}

.photo-upload input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.photo-upload-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
  font-size: 1.5rem;
}

.photo-upload span:last-child,
.choice-card span {
  display: grid;
}

.membership-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.choice-card {
  grid-template-columns: auto 1fr;
  align-items: center;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
}

.choice-card input,
.privacy-check input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--red);
}

.privacy-check {
  grid-template-columns: auto 1fr;
  align-items: start;
  margin-bottom: 24px;
  color: var(--muted) !important;
  font-weight: 400 !important;
  line-height: 1.5;
}

.form-submit,
.add-to-cart,
.cart-summary .button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-status,
.checkout-status {
  min-height: 24px;
  margin-bottom: 0;
  color: var(--red);
  font-size: 0.84rem;
  font-weight: 700;
}

.card-station {
  position: sticky;
  top: 105px;
}

.card-station-label {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  font-weight: 700;
}

.digital-card {
  position: relative;
  aspect-ratio: 1.586;
  padding: clamp(18px, 3vw, 28px);
  color: var(--white);
  background: linear-gradient(135deg, rgba(245, 183, 25, 0.18), transparent 45%), var(--red-dark);
  border: 3px solid var(--yellow);
  box-shadow: 0 24px 60px rgba(76, 0, 16, 0.22);
  overflow: hidden;
}

.digital-card::after {
  content: "RCB";
  position: absolute;
  right: -10px;
  bottom: -60px;
  color: rgba(255, 255, 255, 0.04);
  font-size: 10rem;
  font-weight: 900;
}

.digital-card-top,
.digital-card-body,
.digital-card-footer {
  position: relative;
  z-index: 1;
  display: flex;
}

.digital-card-top {
  align-items: center;
  gap: 12px;
}

.digital-card-top img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.digital-card-top div {
  display: grid;
  line-height: 1.05;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
}

.digital-card-top strong {
  color: var(--yellow);
  font-size: 1rem;
}

.digital-card-top b {
  margin-left: auto;
  color: var(--yellow);
  font-size: 0.74rem;
}

.digital-card-body {
  align-items: center;
  gap: 22px;
  margin-top: clamp(18px, 4vw, 34px);
}

.member-photo-preview {
  flex: 0 0 28%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  overflow: hidden;
}

.member-photo-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-details {
  display: grid;
  min-width: 0;
}

.member-details small {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.55rem;
}

.member-details strong {
  color: var(--yellow);
  font-size: clamp(1.1rem, 2.5vw, 1.7rem);
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.member-details span {
  font-size: 0.78rem;
}

.digital-card-footer {
  position: absolute;
  left: clamp(18px, 3vw, 28px);
  right: clamp(18px, 3vw, 28px);
  bottom: clamp(14px, 2vw, 22px);
  justify-content: space-between;
  padding-top: 8px;
  color: rgba(255, 255, 255, 0.62);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.52rem;
}

.button-outline {
  color: var(--red);
  border-color: var(--red);
  margin-top: 24px;
  background: transparent;
}

.button-outline:hover:not(:disabled) {
  background: var(--red);
  color: var(--white);
}

.button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.download-card {
  width: 100%;
  cursor: pointer;
}

.card-help {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.shop {
  background: var(--cream);
}

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

.product-card {
  background: var(--white);
  border: 1px solid var(--line);
}

.product-art {
  position: relative;
  min-height: 330px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.product-art-shirt {
  align-content: center;
  color: var(--yellow);
  background: var(--red);
  clip-path: polygon(18% 0, 35% 10%, 65% 10%, 82% 0, 100% 20%, 87% 34%, 78% 26%, 78% 100%, 22% 100%, 22% 26%, 13% 34%, 0 20%);
  margin: 20px;
}

.product-art-shirt img {
  width: 82px;
}

.product-art-shirt b {
  margin-top: 8px;
  text-align: center;
  line-height: 1.1;
  letter-spacing: 0.08em;
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 6px 10px;
  color: var(--red-dark);
  background: var(--yellow);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  z-index: 2;
}

.product-art-scarf {
  grid-template-columns: 1fr auto 1fr;
  min-height: 170px;
  margin: 80px 18px;
  padding: 20px;
  color: var(--yellow);
  background: repeating-linear-gradient(90deg, var(--red-dark) 0 30px, var(--red) 30px 60px);
  border-block: 14px solid var(--yellow);
}

.product-art-scarf img {
  width: 78px;
}

.product-art-scarf span {
  font-size: 0.65rem;
  font-weight: 900;
  writing-mode: vertical-rl;
  letter-spacing: 0.08em;
}

.product-art-scarf span:first-child {
  transform: rotate(180deg);
}

.product-art-cap {
  background: #ece5da;
}

.cap-shape {
  position: relative;
  width: 190px;
  height: 145px;
  display: grid;
  place-items: center;
  background: var(--red);
  border-radius: 50% 50% 32% 32%;
}

.cap-shape::after {
  content: "";
  position: absolute;
  right: -65px;
  bottom: 2px;
  width: 110px;
  height: 34px;
  background: var(--red-dark);
  border-radius: 0 90% 35% 0;
  transform: rotate(8deg);
}

.cap-shape img {
  width: 80px;
}

.product-info {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-top: 1px solid var(--line);
}

.product-info p {
  margin: 0 0 5px;
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.product-info h3 {
  font-size: 1.45rem;
}

.product-price {
  color: var(--red);
  font-size: 1.2rem;
}

.shop-note {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  margin-top: 34px;
  padding: 22px 24px;
  background: var(--white);
  border-left: 4px solid var(--yellow);
}

.shop-note span {
  color: var(--muted);
  font-size: 0.86rem;
}

.shop-note .text-link {
  margin: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.drawer-backdrop {
  position: fixed;
  z-index: 190;
  inset: 0;
  background: rgba(16, 12, 11, 0.62);
  backdrop-filter: blur(3px);
}

.cart-drawer {
  position: fixed;
  z-index: 200;
  top: 0;
  right: 0;
  width: min(100%, 480px);
  height: 100dvh;
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: var(--white);
  box-shadow: -20px 0 60px rgba(16, 12, 11, 0.2);
  transform: translateX(105%);
  transition: transform 0.25s ease;
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.cart-header h2 {
  font-size: 2.6rem;
}

.drawer-close {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--cream);
  cursor: pointer;
  font-size: 1.8rem;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item h3 {
  font-size: 1rem;
  line-height: 1.2;
}

.cart-item p {
  margin: 5px 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-item-actions button {
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  background: var(--cream);
  cursor: pointer;
}

.cart-remove {
  color: var(--red);
  border: 0 !important;
  background: transparent !important;
  text-decoration: underline;
  width: auto !important;
}

.cart-empty {
  flex: 1;
  display: grid;
  place-content: center;
  gap: 5px;
  text-align: center;
  color: var(--muted);
}

.cart-empty strong {
  color: var(--ink);
}

.cart-summary {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.cart-summary > div {
  display: flex;
  justify-content: space-between;
  font-size: 1.25rem;
}

.cart-summary > p {
  color: var(--muted);
  font-size: 0.78rem;
}

body.drawer-open {
  overflow: hidden;
}

@media (max-width: 850px) {
  .cart-trigger {
    width: 100%;
    margin-top: 12px;
  }

  .membership-layout {
    grid-template-columns: 1fr;
  }

  .card-station {
    position: static;
  }

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

  .product-art {
    min-height: 300px;
  }

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

@media (max-width: 520px) {
  .form-grid,
  .membership-options {
    grid-template-columns: 1fr;
  }

  .form-notice {
    display: grid;
  }

  .membership-form {
    padding: 22px 16px;
  }

  .digital-card {
    padding: 14px;
  }

  .digital-card-top img {
    width: 38px;
    height: 38px;
  }

  .digital-card-body {
    gap: 14px;
    margin-top: 12px;
  }

  .digital-card-footer {
    left: 14px;
    right: 14px;
    bottom: 10px;
  }

  .cart-drawer {
    padding: 20px 16px;
  }
}
