:root {
  --ink: #0b0b0c;
  --ink-2: #161618;
  --court: #1c1c1f;
  --mist: #f3f1ec;
  --fog: #d8d4cb;
  --gold: #e2b93b;
  --gold-soft: #f0d57a;
  --brand-red: #e31e24;
  --brand-green: #009640;
  --text: #f6f4ef;
  --muted: rgba(246, 244, 239, 0.68);
  --line: rgba(246, 244, 239, 0.14);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --font-display: "Barlow Condensed", Impact, sans-serif;
  --font-body: "Sora", sans-serif;
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(226, 185, 59, 0.12), transparent 55%),
    radial-gradient(900px 500px at 0% 20%, rgba(227, 30, 36, 0.08), transparent 50%),
    linear-gradient(180deg, #101012 0%, var(--ink) 40%, #0e0e10 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}

.proto-badge {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 80;
  padding: 0.4rem 0.7rem;
  border: 1px solid rgba(226, 185, 59, 0.45);
  background: rgba(11, 11, 12, 0.75);
  backdrop-filter: blur(8px);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft);
  pointer-events: none;
}

.announcement {
  background: linear-gradient(90deg, #1a1205, #2a1f08 40%, #121212);
  border-bottom: 1px solid rgba(226, 185, 59, 0.25);
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--gold-soft);
}

.announcement p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  backdrop-filter: blur(14px);
  background: rgba(11, 11, 12, 0.78);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(11, 11, 12, 0.92);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.brand img {
  width: 108px;
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}

.primary-nav {
  display: none;
  justify-content: center;
  gap: 1.5rem;
}

.primary-nav a {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s var(--ease);
}

.primary-nav a:hover {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  justify-self: end;
}

.locale {
  display: none;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  padding: 0.45rem 0.65rem;
  border: 1px solid var(--line);
  color: var(--muted);
}

.icon-btn {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  transition: background 0.25s var(--ease);
}

.icon-btn:hover {
  background: rgba(255, 255, 255, 0.06);
}

.icon-btn svg {
  width: 20px;
  height: 20px;
}

.menu-toggle {
  display: grid;
  gap: 5px;
  padding: 12px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
}

.cart-btn {
  position: relative;
}

.cart-count {
  position: absolute;
  top: 6px;
  right: 6px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--brand-red);
  color: white;
  font-size: 0.65rem;
  display: grid;
  place-items: center;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(0, 0, 0, 0.55);
}

.mobile-nav-panel {
  width: min(84vw, 320px);
  height: 100%;
  background: var(--ink-2);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow);
  animation: slideIn 0.35s var(--ease);
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.75rem;
}

.close-nav {
  align-self: flex-end;
  font-size: 1.8rem;
  line-height: 1;
}

.hero {
  position: relative;
  min-height: min(92vh, 860px);
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.04);
  animation: heroZoom 12s var(--ease) forwards;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 9, 0.88) 0%, rgba(8, 8, 9, 0.45) 48%, rgba(8, 8, 9, 0.2) 100%),
    linear-gradient(180deg, rgba(8, 8, 9, 0.15) 0%, rgba(8, 8, 9, 0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 5.5rem 1.25rem 3.5rem;
  animation: rise 0.9s var(--ease) both;
}

.brand-mark {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 4.8rem);
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.02em;
  line-height: 0.9;
  text-transform: lowercase;
  background: linear-gradient(90deg, #fff 20%, var(--gold) 70%, var(--brand-red) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero h1 {
  margin: 0;
  max-width: 12ch;
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 6.4rem);
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.01em;
  line-height: 0.92;
  text-transform: uppercase;
}

.hero-lead {
  margin: 1.1rem 0 0;
  max-width: 34ch;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--muted);
}

.hero-cta {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.75rem 1.25rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease),
    border-color 0.25s var(--ease);
}

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

.btn-primary {
  background: var(--gold);
  color: #121212;
}

.btn-primary:hover {
  background: var(--gold-soft);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-soft);
}

.btn-add {
  width: 100%;
  margin-top: 0.75rem;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  min-height: 42px;
}

.btn-add:hover {
  border-color: var(--gold);
  color: var(--gold-soft);
}

.btn.full {
  width: 100%;
}

.collections-rail {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-block: 1px solid var(--line);
}

.rail-item {
  padding: 1.25rem 1.1rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
  transition: background 0.3s var(--ease);
}

.rail-item:hover {
  background: rgba(226, 185, 59, 0.08);
}

.rail-label {
  display: block;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.rail-meta {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.product-section,
.reviews,
.shopify-notes {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4.5rem 1.25rem 1rem;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-head h2,
.editorial-copy h2,
.split-copy h2,
.players-copy h2,
.shopify-notes h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 0.95;
}

.text-link {
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-soft);
  border-bottom: 1px solid transparent;
}

.text-link:hover {
  border-bottom-color: var(--gold-soft);
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1rem;
}

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

.product {
  animation: rise 0.7s var(--ease) both;
}

.product:nth-child(2) {
  animation-delay: 0.08s;
}
.product:nth-child(3) {
  animation-delay: 0.16s;
}
.product:nth-child(4) {
  animation-delay: 0.24s;
}

.product-media {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), transparent 40%),
    var(--court);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}

.product:hover .product-media img {
  transform: scale(1.05);
}

.product-info {
  padding: 0.9rem 0.1rem 0.2rem;
}

.product-info h3 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.35;
}

.price {
  margin: 0.4rem 0 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.rating {
  margin: 0.25rem 0 0;
  font-size: 0.75rem;
  color: var(--muted);
}

.editorial,
.split-banner,
.players {
  margin-top: 3.5rem;
  min-height: 420px;
  display: grid;
  position: relative;
  overflow: hidden;
}

.editorial-media,
.split-media,
.players-media {
  position: absolute;
  inset: 0;
}

.editorial-media img,
.split-media img,
.players-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial::after,
.split-banner::after,
.players::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 8, 9, 0.88), rgba(8, 8, 9, 0.35) 70%, rgba(8, 8, 9, 0.15));
}

.editorial-copy,
.split-copy,
.players-copy {
  position: relative;
  z-index: 1;
  align-self: end;
  max-width: 520px;
  padding: 3rem 1.25rem;
}

.editorial-copy p,
.split-copy p,
.players-copy p:not(.brand-mark):not(.eyebrow) {
  color: var(--muted);
  line-height: 1.55;
}

.editorial-copy .btn,
.split-copy .btn {
  margin-top: 0.5rem;
}

.reviews-track {
  display: grid;
  gap: 1rem;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 78%);
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
}

.review {
  margin: 0;
  scroll-snap-align: start;
  padding: 1.4rem 1.2rem;
  border-top: 2px solid var(--gold);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent);
}

.review p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.5;
}

.review footer {
  margin-top: 1.1rem;
  display: grid;
  gap: 0.2rem;
}

.review strong {
  font-size: 0.9rem;
}

.review span {
  font-size: 0.75rem;
  color: var(--muted);
}

.shopify-notes {
  padding-bottom: 4rem;
}

.notes-inner {
  padding: 1.75rem 0;
  border-top: 1px solid var(--line);
}

.shopify-notes ul {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
  color: var(--muted);
}

.shopify-notes li::before {
  content: "→ ";
  color: var(--gold);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #09090a;
  padding: 3rem 1.25rem 1.5rem;
}

.footer-brand img {
  width: 96px;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  margin: 0.35rem 0;
  color: var(--muted);
  max-width: 36ch;
  font-size: 0.92rem;
}

.footer-contact {
  font-size: 0.8rem !important;
}

.footer-cols {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.footer-cols h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-cols a {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.footer-cols a:hover {
  color: var(--gold-soft);
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 85;
  background: rgba(0, 0, 0, 0.55);
}

.cart-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 90;
  width: min(100%, 400px);
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  pointer-events: none;
}

.cart-drawer.is-open {
  transform: translateX(0);
  pointer-events: auto;
}

.cart-panel {
  height: 100%;
  background: var(--ink-2);
  border-left: 1px solid var(--line);
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.cart-head,
.cart-foot {
  padding: 1.1rem 1.2rem;
  border-bottom: 1px solid var(--line);
}

.cart-foot {
  border-bottom: 0;
  border-top: 1px solid var(--line);
}

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cart-items {
  padding: 1.2rem;
  overflow: auto;
}

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

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

.cart-line strong {
  font-size: 0.92rem;
}

.cart-line span {
  color: var(--muted);
  font-size: 0.82rem;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.9rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroZoom {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1);
  }
}

@keyframes slideIn {
  from {
    transform: translateX(-16px);
    opacity: 0.6;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@media (min-width: 760px) {
  .proto-badge {
    left: auto;
    right: 14px;
  }

  .menu-toggle {
    display: none;
  }

  .header-inner {
    grid-template-columns: 140px 1fr auto;
  }

  .primary-nav,
  .locale {
    display: flex;
  }

  .collections-rail {
    grid-template-columns: repeat(4, 1fr);
  }

  .rail-item {
    border-bottom: 0;
  }

  .product-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem 1.15rem;
  }

  .product-grid.two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 640px;
  }

  .editorial,
  .split-banner,
  .players {
    min-height: 520px;
  }

  .editorial-copy,
  .split-copy,
  .players-copy {
    padding: 4rem 4vw;
  }

  .reviews-track {
    grid-auto-columns: minmax(280px, 32%);
  }

  .site-footer {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 2rem;
    padding: 4rem clamp(1.25rem, 4vw, 3rem) 1.75rem;
  }

  .footer-cols {
    margin-top: 0;
  }

  .footer-bottom {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: space-between;
  }

  .split-banner {
    grid-template-columns: 1fr 1.1fr;
  }

  .split-banner .split-media {
    position: relative;
    min-height: 520px;
  }

  .split-banner::after {
    background: linear-gradient(90deg, #09090a 0%, #09090a 42%, transparent 70%);
  }

  .split-copy {
    position: relative;
    z-index: 2;
    align-self: center;
    padding-left: clamp(1.25rem, 5vw, 4rem);
  }
}

@media (min-width: 1100px) {
  .hero-content {
    padding-bottom: 4.5rem;
  }

  .brand-mark {
    font-size: 5.2rem;
  }
}
