:root {
  --yellow: #ffcc00;
  --yellow-deep: #e6b800;
  --black: #0a0a0a;
  --ink: #111111;
  --ink-soft: #1c1c1c;
  --muted: #b8b8b8;
  --paper: #141414;
  --cream: #0a0a0a;
  --white: #fff8d6;
  --olive: #ffcc00;
  --olive-deep: #e6b800;
  --bronze: #ffcc00;
  --bronze-dark: #ffcc00;
  --line: rgba(255, 204, 0, 0.28);
  --shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
  --radius: 6px;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", system-ui, sans-serif;
  color: var(--white);
  background: var(--black);
  line-height: 1.6;
}

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

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

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(10, 10, 10, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 2px solid var(--yellow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 16px;
}

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

.mark {
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 4px;
  padding: 0;
  overflow: hidden;
  background: #000;
}

.mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.wordmark {
  font-family: "Oswald", Impact, sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.18em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--yellow);
}

.wordmark span {
  display: block;
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  color: var(--muted);
}

nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav a {
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow);
}

nav a:hover,
nav a[aria-current="page"] {
  color: #fff;
}

.menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--yellow);
  color: var(--yellow);
  border-radius: 4px;
  padding: 8px 10px;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  place-items: end start;
  overflow: hidden;
  color: var(--white);
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.2), rgba(10, 10, 10, 0.86));
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: 72px 0 64px;
  max-width: 640px;
}

.kicker {
  display: inline-block;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--yellow);
  margin-bottom: 12px;
}

.hero h1,
.page-hero h1,
h1,
h2,
h3 {
  font-family: "Oswald", Impact, sans-serif;
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  margin: 0 0 16px;
  color: var(--yellow);
}

.lede {
  font-size: 1.15rem;
  color: rgba(255, 248, 214, 0.88);
  max-width: 38rem;
}

.page-hero .lede,
.section .lede {
  color: var(--muted);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 4px;
  border: 2px solid transparent;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}

.btn-primary {
  background: var(--yellow);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--yellow-deep);
}

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

.btn-ghost.dark {
  border-color: var(--yellow);
  color: var(--yellow);
}

.section {
  padding: 88px 0;
}

.section.alt {
  background: var(--paper);
}

.section-head {
  max-width: 640px;
  margin-bottom: 40px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 8px 0 12px;
  color: var(--yellow);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.split img,
.card img,
.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.frame {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-height: 360px;
  border: 2px solid var(--yellow);
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 22px;
}

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

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.card,
.product-card {
  background: #111;
  border: 2px solid var(--yellow);
  border-radius: var(--radius);
  overflow: hidden;
}

.card .body,
.product-card .body {
  padding: 22px 22px 26px;
}

.card h3,
.product-card h3 {
  margin: 0 0 8px;
  font-size: 1.35rem;
  color: var(--yellow);
}

.meta {
  color: var(--yellow);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
  margin-bottom: 8px;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 0;
}

.badge {
  border: 1px solid var(--yellow);
  background: #000;
  color: var(--yellow);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.page-hero {
  padding: 72px 0 28px;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin: 0 0 12px;
  color: var(--yellow);
}

.form {
  display: grid;
  gap: 14px;
  background: #111;
  border: 2px solid var(--yellow);
  border-radius: var(--radius);
  padding: 28px;
}

label {
  display: grid;
  gap: 6px;
  font-size: 0.88rem;
  color: var(--yellow);
}

input,
select,
textarea {
  font: inherit;
  padding: 12px 14px;
  border-radius: 4px;
  border: 1px solid var(--yellow);
  background: #000;
  color: var(--white);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

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

.note {
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  background: #000;
  color: var(--yellow);
  padding: 48px 0 28px;
  border-top: 2px solid var(--yellow);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 204, 0, 0.25);
}

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

.site-footer a:hover {
  color: #fff;
}

.legal {
  padding-top: 18px;
  font-size: 0.85rem;
  color: var(--muted);
}

.status {
  display: none;
  padding: 12px 14px;
  border-radius: 4px;
  background: var(--yellow);
  color: #000;
}

.status.show {
  display: block;
}

.logo-panel {
  background: #000;
  border: 2px solid var(--yellow);
  min-height: 360px;
  display: grid;
  place-items: center;
}

.logo-panel img {
  width: min(100%, 420px);
  height: auto;
  object-fit: contain;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cart-link {
  color: var(--yellow);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.92rem;
}

.cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 1.3rem;
  height: 1.3rem;
  margin-left: 4px;
  border-radius: 999px;
  background: var(--yellow);
  color: #000;
  font-size: 0.72rem;
  font-weight: 700;
}

.price,
.total {
  font-family: "Oswald", Impact, sans-serif;
  color: var(--yellow);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
}

.buy-form {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.buy-form input,
.buy-form select {
  width: 100%;
}

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

.cart-table {
  width: 100%;
  border-collapse: collapse;
}

.cart-table th,
.cart-table td {
  border-bottom: 1px solid var(--line);
  padding: 14px 8px;
  text-align: left;
  vertical-align: middle;
}

.cart-table td:first-child {
  display: flex;
  gap: 12px;
  align-items: center;
}

.cart-table img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border: 1px solid var(--yellow);
}

.cart-table input[type="number"] {
  width: 72px;
}

.text-btn {
  background: none;
  border: 0;
  color: var(--yellow);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cart-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.pay-box {
  display: grid;
  gap: 10px;
}

code {
  color: var(--yellow);
}

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

  nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 84px;
    background: #000;
    border-bottom: 2px solid var(--yellow);
    padding: 12px 20px 20px;
  }

  nav.open {
    display: block;
  }

  nav ul {
    flex-direction: column;
    gap: 14px;
  }

  .split,
  .grid-3,
  .grid-2,
  .footer-grid,
  .form-row,
  .shop-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 68vh;
  }
}
