:root {
  --ink: #191816;
  --muted: #6d6a63;
  --paper: #f7f4ec;
  --panel: #fffdf8;
  --line: #ddd4c4;
  --accent: #b33e2d;
  --accent-dark: #812a20;
  --green: #236d62;
  --gold: #b98731;
  --shadow: 0 18px 42px rgba(31, 26, 18, 0.14);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  margin: 0;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  align-items: center;
  background: rgba(255, 253, 248, 0.96);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: auto 1fr auto;
  min-height: 72px;
  padding: 12px clamp(18px, 5vw, 64px);
  position: sticky;
  top: 0;
  z-index: 20;
}

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

.brand-mark {
  align-items: center;
  background: conic-gradient(from 190deg, var(--accent), var(--gold), var(--green), #294b86, var(--accent));
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.28);
  width: 42px;
}

.brand-title {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 4px;
  line-height: 1;
}

.brand-title .letter {
  display: inline-block;
}

.letter-red {
  color: var(--accent);
}

.letter-gold {
  color: var(--gold);
}

.letter-green {
  color: var(--green);
}

nav {
  display: flex;
  gap: 22px;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
}

.cart-pill,
.cart-head button,
.product button,
.primary,
.secondary {
  align-items: center;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 46px;
  padding: 0 17px;
}

.cart-pill {
  background: var(--ink);
  border: 0;
  color: #fff;
  gap: 10px;
}

.cart-pill span {
  align-items: center;
  background: var(--gold);
  border-radius: 999px;
  display: inline-flex;
  height: 24px;
  justify-content: center;
  min-width: 24px;
}

.primary,
.product button,
.checkout-button {
  background: var(--accent);
  border: 0;
  color: #fff;
}

.secondary {
  border: 1px solid var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(320px, 1.18fr);
  min-height: calc(100vh - 72px);
}

.hero-copy {
  align-self: center;
  padding: clamp(38px, 7vw, 88px);
}

.eyebrow {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(46px, 7vw, 86px);
  letter-spacing: 0;
  line-height: 0.96;
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(30px, 4vw, 52px);
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 16px;
}

.hero-copy p,
.artist-copy p,
.checkout p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

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

.actions .secondary {
  background: rgba(255, 253, 248, 0.68);
}

.hero-art {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
  padding: clamp(18px, 3vw, 34px);
}

.hero-art img {
  border-radius: 8px;
  box-shadow: var(--shadow);
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  width: 100%;
}

.hero-art img:first-child {
  grid-row: span 2;
}

.status-band {
  align-items: center;
  background: var(--ink);
  color: #fff;
  display: flex;
  gap: 14px;
  justify-content: center;
  padding: 18px;
  text-align: center;
}

.status-band span {
  color: rgba(255, 255, 255, 0.76);
}

.section,
.artist,
.checkout {
  padding: clamp(50px, 8vw, 96px) clamp(18px, 5vw, 70px);
}

.section-heading {
  max-width: 760px;
}

.products {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.product {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  overflow: hidden;
}

.product img {
  aspect-ratio: 1;
  display: block;
  object-fit: cover;
  width: 100%;
}

.product-body {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.product h3 {
  font-size: 22px;
  line-height: 1.1;
  margin-bottom: 0;
}

.meta {
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  line-height: 1.45;
}

.meta span {
  background: #f0eadf;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  padding: 6px 9px;
}

.price-row {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.price {
  color: var(--green);
  font-size: 24px;
  font-weight: 900;
}

.availability {
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.artist {
  background: var(--panel);
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(280px, 0.76fr) minmax(320px, 1fr);
}

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

.bio-grid img {
  border-radius: 8px;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  width: 100%;
}

.bio-grid img:first-child {
  grid-row: span 2;
}

.checkout {
  align-items: start;
  display: grid;
  gap: 38px;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 0.9fr);
}

.cart-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
  padding: 22px;
}

.cart-head,
.cart-total,
.cart-line {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.cart-head strong,
.cart-total strong {
  font-size: 22px;
}

.cart-head button {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--muted);
  min-height: 38px;
}

.cart-items {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 12px;
  min-height: 76px;
  padding: 14px 0;
}

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

.empty {
  color: var(--muted);
  margin: 12px 0;
}

.checkout-note {
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.45;
  margin: 0;
}

footer {
  align-items: center;
  background: var(--ink);
  color: #fff;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  padding: 24px clamp(18px, 5vw, 70px);
}

footer span {
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 980px) {
  .site-header,
  footer {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  nav {
    justify-content: flex-start;
  }

  .hero,
  .artist,
  .checkout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

@media (max-width: 640px) {
  nav,
  .status-band,
  footer {
    flex-direction: column;
  }

  .hero-art,
  .products,
  .bio-grid {
    grid-template-columns: 1fr;
  }

  .hero-art img:first-child,
  .bio-grid img:first-child {
    grid-row: auto;
  }
}
