/* Patriot Maker - dark shop steel + ember metal
   Shape rule: buttons = pill; cards/panels = 12px; brand mark = 4px
   Note: file comment may mention theme; visible page copy has zero em-dashes. */

:root {
  --bg: #0c0d10;
  --bg-elev: #14161b;
  --bg-card: #1a1d24;
  --bg-card-hot: #1f232c;
  --text: #f0eee8;
  --muted: #9e9a90;
  --line: #2c303a;
  --line-soft: #23262e;
  --ember: #e8912d;
  --ember-hot: #f5a94a;
  --ember-dim: rgba(232, 145, 45, 0.14);
  --cta: #c43c2c;
  --cta-hover: #d94836;
  --focus: #f5a94a;
  --max: 1120px;
  --radius: 12px;
  --radius-sm: 8px;
  --font-display: "Barlow Condensed", "Arial Narrow", "Segoe UI", sans-serif;
  --font-body: "Barlow", "Segoe UI", system-ui, -apple-system, sans-serif;
  --ease: 160ms ease;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.55;
  background:
    radial-gradient(900px 480px at 88% -8%, rgba(80, 42, 12, 0.45) 0%, transparent 58%),
    radial-gradient(700px 420px at 6% 4%, rgba(28, 36, 52, 0.55) 0%, transparent 52%),
    linear-gradient(180deg, #101218 0%, var(--bg) 40%, var(--bg) 100%);
  min-height: 100dvh;
}

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

a {
  color: var(--ember-hot);
  text-decoration: none;
  transition: color var(--ease);
}
a:hover { color: var(--ember); text-decoration: underline; text-underline-offset: 3px; }

a:focus-visible,
.btn:focus-visible,
nav a:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Header */
.top {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 68px;
  max-height: 80px;
  padding: 0 1.35rem;
  background: rgba(12, 13, 16, 0.94);
  border-bottom: 1px solid var(--line-soft);
}

.brand { display: flex; align-items: center; text-decoration: none; }
.brand:hover { text-decoration: none; }

.brand-mark {
  height: 48px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
}

nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  flex-wrap: nowrap;
  white-space: nowrap;
}

nav a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
}
nav a:hover {
  color: var(--text);
  text-decoration: none;
}

/* Hero */
.hero {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 2.25rem;
  align-items: center;
  padding: 2.75rem 1.35rem 2.75rem;
}

.eyebrow {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ember);
}

.hero h1 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 4.6vw, 3.35rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

.lede {
  margin: 0 0 1.35rem;
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.5;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 0.85rem;
}

.promo-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}
.promo-note strong {
  color: var(--ember-hot);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero-art {
  position: relative;
  padding: 1.1rem;
  border-radius: var(--radius);
  border: 1px solid #3a3024;
  background:
    linear-gradient(155deg, #2a2118 0%, #14161c 55%, #101218 100%);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 180, 80, 0.1);
}

.hero-art img {
  width: 100%;
  border-radius: var(--radius-sm);
}

/* Buttons: pill radius */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
  white-space: nowrap;
  text-decoration: none !important;
  cursor: pointer;
  transition:
    transform var(--ease),
    background var(--ease),
    border-color var(--ease),
    color var(--ease),
    box-shadow var(--ease);
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0) scale(0.98); }

.btn-primary {
  background: var(--cta);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08) inset;
}
.btn-primary:hover {
  background: var(--cta-hover);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--ember);
  color: var(--ember-hot);
}

.btn-sm {
  padding: 0.62rem 1rem;
  font-size: 0.88rem;
  width: 100%;
}

/* Sections */
.shop,
.about,
.contact {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.25rem 1.35rem 1.25rem;
}

.section-head h2,
.about h2,
.contact h2 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.8vw, 2.05rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.section-head p {
  margin: 0 0 1.65rem;
  color: var(--muted);
  max-width: 40rem;
}

/* Asymmetric shop band: featured knuckle + stacked pair */
.shop-band {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 1rem;
  align-items: stretch;
}

.shop-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    border-color var(--ease),
    background var(--ease),
    transform var(--ease),
    box-shadow var(--ease);
}

.card:hover {
  border-color: #3d4350;
  background: var(--bg-card-hot);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  transform: translateY(-2px);
}

.card-media {
  background: #0a0b0e;
}

.card-media img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.card-featured .card-media img {
  aspect-ratio: 1 / 1.05;
}

.card-body {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 0.95rem 1rem 1.05rem;
  flex: 1;
}

.card-kicker {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ember);
}

.card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.card p:not(.card-kicker) {
  margin: 0 0 0.35rem;
  color: var(--muted);
  font-size: 0.94rem;
  flex: 1;
}

.card-featured {
  min-height: 100%;
}

.card-featured .card-body {
  padding: 1.15rem 1.2rem 1.25rem;
}

.card-featured h3 {
  font-size: 1.55rem;
}

.shop-side .card {
  flex-direction: row;
  align-items: stretch;
}

.shop-side .card-media {
  flex: 0 0 42%;
  max-width: 42%;
}

.shop-side .card-media img {
  height: 100%;
  aspect-ratio: auto;
  min-height: 140px;
}

.shop-side .card-body {
  flex: 1;
  justify-content: center;
}

.shop-all {
  text-align: center;
  padding: 1.75rem 0 0.35rem;
}

/* About / Contact */
.about,
.contact {
  border-top: 1px solid var(--line-soft);
  margin-top: 1.75rem;
  padding-top: 2.25rem;
}

.about p,
.contact p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  max-width: 42rem;
}

.contact a { font-weight: 600; }

/* Footer */
.foot {
  max-width: var(--max);
  margin: 2.25rem auto 0;
  padding: 1.5rem 1.35rem 2.5rem;
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 0.85rem;
}

.foot p { margin: 0 0 0.4rem; }
.fine { opacity: 0.8; }

/* Mobile */
@media (max-width: 900px) {
  .shop-band {
    grid-template-columns: 1fr;
  }

  .shop-side {
    grid-template-rows: none;
    grid-template-columns: 1fr;
  }

  .shop-side .card {
    flex-direction: column;
  }

  .shop-side .card-media {
    flex: none;
    max-width: none;
  }

  .shop-side .card-media img {
    aspect-ratio: 1;
    height: auto;
    min-height: 0;
  }
}

@media (max-width: 820px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.75rem 1.15rem 2rem;
  }

  .hero-art {
    order: -1;
    max-width: 380px;
    margin: 0 auto;
  }

  .hero h1 {
    font-size: clamp(1.95rem, 8vw, 2.55rem);
  }

  nav { gap: 0.95rem; }

  .top {
    height: auto;
    min-height: 60px;
    padding: 0.55rem 1.1rem;
  }

  .brand-mark { height: 42px; }

  .shop,
  .about,
  .contact {
    padding-left: 1.15rem;
    padding-right: 1.15rem;
  }
}

@media (max-width: 420px) {
  nav a { font-size: 0.85rem; }
  .cta-row { flex-direction: column; align-items: stretch; }
  .cta-row .btn { width: 100%; }
}

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

  .btn,
  .card,
  a {
    transition: none;
  }

  .btn:hover,
  .btn:active,
  .card:hover {
    transform: none;
  }
}
