:root {
  --ink: #100d1b;
  --paper: #fbf0d6;
  --cream: #f4d99d;
  --line: #d7ad55;
  --muted: #6a4f3a;
  --blue: #075b8b;
  --red: #b72b24;
  --gold: #f0aa27;
  --green: #176c4f;
  --violet: #502d83;
  --cyan: #009fb5;
  --shadow: 0 18px 44px rgba(16, 13, 27, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(183, 43, 36, 0.07) 1px, transparent 1px),
    linear-gradient(rgba(7, 91, 139, 0.06) 1px, transparent 1px),
    radial-gradient(circle at 12% 0%, rgba(240, 170, 39, 0.42), transparent 34rem),
    radial-gradient(circle at 100% 18%, rgba(80, 45, 131, 0.22), transparent 30rem),
    var(--paper);
  background-size: 34px 34px, 34px 34px, auto, auto, auto;
  font-family: Georgia, "Times New Roman", serif;
}

body.panel-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  padding: 10px clamp(16px, 4vw, 46px);
  color: #fff;
  background: rgba(16, 13, 27, 0.95);
  border-bottom: 3px solid var(--gold);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #fff;
  background: conic-gradient(from 20deg, var(--red), var(--gold), var(--cyan), var(--violet), var(--red));
  border-radius: 6px 18px 6px 18px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
}

.brand small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.site-header nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-header nav a {
  text-decoration: none;
}

.site-header nav a:hover,
.cart-toggle:hover {
  color: #fff;
}

.cart-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.82);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-transform: inherit;
  letter-spacing: inherit;
}

.cart-toggle span {
  display: inline-grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  font-size: 0.7rem;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: clamp(34px, 6vw, 76px) clamp(18px, 5vw, 72px);
  color: #fff;
  background:
    linear-gradient(110deg, rgba(16, 13, 27, 0.98), rgba(16, 13, 27, 0.76) 44%, rgba(183, 43, 36, 0.48)),
    url("../bigcartel-20260604-155507/assets/f8da767ba77f19ceba205bc2ca492665-RollingStones1969.jpg") center / cover;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  inset: 0;
  background:
    linear-gradient(135deg, transparent 0 44%, rgba(240, 170, 39, 0.18) 44% 47%, transparent 47%),
    linear-gradient(25deg, transparent 0 64%, rgba(0, 159, 181, 0.18) 64% 67%, transparent 67%);
}

.hero::after {
  right: -10vw;
  bottom: -18vw;
  width: 44vw;
  height: 44vw;
  border: clamp(18px, 4vw, 54px) solid rgba(240, 170, 39, 0.22);
  border-radius: 50%;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-family: Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.98;
}

h1 {
  max-width: 850px;
  font-size: clamp(3.4rem, 9vw, 8.4rem);
  text-shadow: 0.05em 0.05em 0 rgba(183, 43, 36, 0.58), -0.035em 0.035em 0 rgba(0, 159, 181, 0.42);
}

h2 {
  font-size: clamp(2.2rem, 5vw, 5rem);
}

h3 {
  font-size: 1.2rem;
}

.lede {
  max-width: 700px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.12rem, 2.1vw, 1.65rem);
  line-height: 1.5;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(20, 17, 15, 0.2);
  border-radius: 4px;
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--violet));
  border-color: var(--red);
}

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

.poster-wall {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(8px, 1.4vw, 18px);
  align-items: end;
}

.poster-wall img {
  width: 100%;
  height: clamp(180px, 28vw, 420px);
  object-fit: cover;
  background: #17111e;
  border: 4px solid rgba(255, 248, 226, 0.94);
  box-shadow: var(--shadow);
}

.poster-wall img:nth-child(2n) {
  transform: translateY(22px) rotate(1.2deg);
}

.poster-wall img:nth-child(3n) {
  transform: translateY(-12px) rotate(-1deg);
}

.hero-ribbon {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  gap: 0;
  overflow: hidden;
  color: #fff;
  background: var(--red);
  border-top: 3px solid var(--gold);
  font-family: Arial, sans-serif;
  font-size: clamp(0.72rem, 1.2vw, 0.95rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-ribbon span {
  flex: 1;
  min-width: max-content;
  padding: 13px 22px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
}

.poster-wall img:nth-child(1),
.poster-wall img:nth-child(4) {
  grid-column: span 2;
  height: clamp(250px, 38vw, 560px);
}

.poster-wall img:nth-child(2),
.poster-wall img:nth-child(3),
.poster-wall img:nth-child(5),
.poster-wall img:nth-child(6) {
  grid-column: span 2;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats div {
  min-height: 112px;
  padding: 22px clamp(18px, 4vw, 48px);
  border-right: 1px solid var(--line);
  background: rgba(255, 250, 235, 0.86);
}

.stats div:last-child {
  border-right: 0;
}

.stats strong,
.stats span {
  display: block;
}

.stats strong {
  font-size: clamp(1.7rem, 3vw, 3.5rem);
  line-height: 1;
}

.stats span {
  margin-top: 7px;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.shop-section,
.person-section,
.about-section,
.timeline-section,
.legacy-section,
.estate-section,
.facebook-section {
  padding: clamp(42px, 7vw, 96px) clamp(18px, 5vw, 72px);
}

.person-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  color: #fff;
  background:
    linear-gradient(118deg, rgba(183, 43, 36, 0.42), transparent 36%),
    linear-gradient(28deg, transparent 0 68%, rgba(240, 170, 39, 0.17) 68% 71%, transparent 71%),
    var(--ink);
}

.portrait-card {
  margin: 0;
  padding: 14px;
  background: #fff8e8;
  border: 4px solid var(--gold);
  box-shadow: 12px 12px 0 var(--red);
  transform: rotate(-1.5deg);
}

.portrait-card img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.05) contrast(1.05);
}

.portrait-card figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 0.72rem;
  line-height: 1.4;
}

.person-copy p:not(.eyebrow) {
  max-width: 860px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.06rem, 1.7vw, 1.32rem);
  line-height: 1.66;
}

.person-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.person-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 13px;
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-family: Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.person-links a:hover {
  background: var(--red);
  border-color: var(--red);
}

.timeline-section {
  background: #fff8e8;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(11, minmax(260px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding: 4px 4px 24px;
  scroll-snap-type: x mandatory;
}

.timeline article {
  min-height: 290px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(240, 170, 39, 0.18), transparent 45%),
    var(--paper);
  border: 3px solid var(--ink);
  box-shadow: 7px 7px 0 rgba(16, 13, 27, 0.2);
  scroll-snap-align: start;
}

.timeline article img {
  width: 100%;
  height: 170px;
  margin-bottom: 16px;
  object-fit: cover;
  background: var(--cream);
  border: 0;
}

.timeline article:nth-child(3n + 1) {
  box-shadow: 7px 7px 0 var(--red);
}

.timeline article:nth-child(3n + 2) {
  box-shadow: 7px 7px 0 var(--blue);
}

.timeline article:nth-child(3n) {
  box-shadow: 7px 7px 0 var(--gold);
}

.timeline span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  color: #fff;
  background: var(--ink);
  font-family: Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.timeline h3 {
  font-size: 1.55rem;
}

.timeline p {
  color: var(--muted);
  line-height: 1.56;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 0.55fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 28px;
}

.section-heading p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.55;
}

.category-tiles {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.category-tile {
  display: grid;
  gap: 8px;
  min-height: 118px;
  padding: 18px;
  color: #fff;
  text-align: left;
  background:
    linear-gradient(135deg, rgba(240, 170, 39, 0.2), transparent 44%),
    var(--ink);
  border: 3px solid var(--ink);
  box-shadow: 6px 6px 0 var(--red);
  cursor: pointer;
}

.category-tile:nth-child(2n) {
  background:
    linear-gradient(135deg, rgba(183, 43, 36, 0.28), transparent 44%),
    var(--blue);
}

.category-tile:nth-child(3n) {
  background:
    linear-gradient(135deg, rgba(0, 159, 181, 0.24), transparent 44%),
    var(--violet);
}

.category-tile strong {
  font-size: clamp(1.25rem, 2vw, 2rem);
  line-height: 1;
}

.category-tile span {
  color: rgba(255, 255, 255, 0.78);
  font-family: Arial, sans-serif;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.category-tile:hover {
  transform: translate(-2px, -2px);
  box-shadow: 10px 10px 0 var(--gold);
}

.toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(180px, 240px) minmax(180px, 240px);
  gap: 12px;
  padding: 14px;
  background: rgba(255, 250, 235, 0.92);
  border: 3px solid var(--ink);
  box-shadow: 8px 8px 0 var(--gold);
}

.toolbar label {
  display: grid;
  gap: 7px;
}

.toolbar span {
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.toolbar input,
.toolbar select {
  width: 100%;
  min-height: 44px;
  padding: 10px 11px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 3px;
}

.catalog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin: 18px 0;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.catalog-meta button {
  color: var(--blue);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  text-transform: uppercase;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 18px;
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  background: #fff8e8;
  border: 3px solid var(--ink);
  box-shadow: 8px 8px 0 rgba(16, 13, 27, 0.22);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.product-card button {
  display: grid;
  grid-template-rows: 330px 1fr;
  width: 100%;
  height: 100%;
  padding: 0;
  color: inherit;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.product-image {
  position: relative;
  display: grid;
  place-items: center;
  padding: 0;
  background:
    linear-gradient(135deg, rgba(183, 43, 36, 0.14), transparent 36%),
    linear-gradient(45deg, transparent 0 46%, rgba(7, 91, 139, 0.16) 46% 54%, transparent 54%),
    var(--cream);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  box-shadow: none;
}

.product-body {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.product-categories {
  color: var(--blue);
  font-family: Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.product-title {
  min-height: 3.2em;
  font-size: 1.1rem;
  line-height: 1.1;
}

.product-description {
  display: -webkit-box;
  min-height: 4.5em;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.product-price {
  color: var(--red);
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 900;
}

.product-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 12px 12px 0 var(--red);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
  background: rgba(255, 248, 232, 0.76);
}

.about-art {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 14px;
  align-items: center;
}

.about-art img {
  width: 100%;
  max-height: 640px;
  object-fit: contain;
  padding: 12px;
  background: var(--ink);
  border: 8px solid #fff7df;
  box-shadow: var(--shadow);
}

.about-art img:nth-child(2) {
  transform: translateY(42px) rotate(2deg);
}

.about-copy p:not(.eyebrow),
.estate-section p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.68;
}

.legacy-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 5vw, 72px);
  color: #fff;
  background:
    linear-gradient(120deg, rgba(80, 45, 131, 0.48), transparent 42%),
    linear-gradient(25deg, transparent 0 66%, rgba(240, 170, 39, 0.12) 66% 69%, transparent 69%),
    var(--ink);
}

.legacy-copy p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
  line-height: 1.65;
}

.legacy-list {
  display: grid;
  gap: 14px;
}

.legacy-list article {
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(240, 170, 39, 0.38);
  box-shadow: 7px 7px 0 rgba(183, 43, 36, 0.4);
}

.legacy-list p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.estate-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(240, 170, 39, 0.28), transparent 36%),
    #fff8e8;
  border-top: 3px solid var(--ink);
}

.estate-cards {
  display: grid;
  gap: 14px;
}

.estate-cards article {
  padding: 22px;
  color: #fff;
  background: var(--ink);
  border: 3px solid var(--ink);
  box-shadow: 7px 7px 0 var(--gold);
}

.estate-cards p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.facebook-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background: #fff;
  border-top: 1px solid var(--line);
}

.facebook-section p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.55;
}

.product-panel {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
}

.cart-panel {
  position: fixed;
  inset: 0;
  z-index: 55;
  display: none;
}

.cart-panel[aria-hidden="false"] {
  display: block;
}

.product-panel[aria-hidden="false"] {
  display: block;
}

.panel-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 17, 15, 0.72);
}

.panel-card {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(300px, 0.9fr);
  width: min(1000px, calc(100vw - 28px));
  max-height: calc(100vh - 28px);
  overflow: auto;
  background: var(--paper);
  border: 3px solid var(--ink);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
  transform: translate(-50%, -50%);
}

.cart-card {
  position: absolute;
  top: 50%;
  right: clamp(14px, 4vw, 46px);
  width: min(620px, calc(100vw - 28px));
  max-height: calc(100vh - 28px);
  overflow: auto;
  padding: clamp(22px, 4vw, 42px);
  background: var(--paper);
  border: 3px solid var(--ink);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
  transform: translateY(-50%);
}

.cart-items {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

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

.cart-row {
  display: grid;
  grid-template-columns: 82px 1fr 72px auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  background: #fff8e8;
  border: 2px solid var(--ink);
}

.cart-row img {
  width: 82px;
  height: 92px;
  object-fit: contain;
  background: var(--cream);
}

.cart-row strong,
.cart-row span,
.cart-row a {
  display: block;
}

.cart-row strong {
  font-size: 0.96rem;
  line-height: 1.16;
}

.cart-row span,
.cart-row a,
.checkout-note {
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  line-height: 1.45;
}

.checkout-note.is-error {
  color: #b91c1c;
  font-weight: 700;
}

.cart-row a {
  color: var(--blue);
  margin-top: 4px;
}

.cart-row label {
  display: grid;
  gap: 4px;
  font-family: Arial, sans-serif;
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.cart-row input {
  width: 64px;
  min-height: 38px;
  padding: 7px;
  border: 1px solid var(--line);
}

.cart-row button {
  color: var(--red);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  font-family: Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cart-total strong {
  color: var(--red);
  font-size: 1.3rem;
}

.checkout-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.checkout-form label {
  display: grid;
  gap: 6px;
}

.checkout-form span {
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.checkout-form input,
.checkout-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px;
  color: var(--ink);
  background: #fff8e8;
  border: 1px solid var(--line);
}

.panel-card > img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: contain;
  padding: 0;
  background:
    linear-gradient(135deg, rgba(183, 43, 36, 0.12), transparent 42%),
    var(--cream);
}

.panel-content {
  padding: clamp(22px, 4vw, 42px);
}

.panel-content h2 {
  font-size: clamp(2rem, 4vw, 4.4rem);
}

.panel-price {
  margin: 18px 0;
  color: var(--red);
  font-family: Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
}

#panelDescription {
  white-space: pre-line;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.panel-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: var(--ink);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 42px;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  text-align: center;
}

.store-featured {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.store-featured article {
  display: grid;
  grid-template-rows: 290px auto;
  background: #fff8e8;
  border: 3px solid var(--ink);
  box-shadow: 8px 8px 0 rgba(16, 13, 27, 0.22);
  overflow: hidden;
}

.store-featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--cream);
}

.store-featured div {
  display: grid;
  gap: 8px;
  padding: 14px;
}

.store-featured span {
  color: var(--blue);
  font-family: Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.store-featured strong {
  font-size: 1.2rem;
  line-height: 1.08;
}

.home-page .person-section,
.home-page .shop-section,
.home-page .timeline-section,
.home-page .about-section,
.home-page .legacy-section,
.home-page .estate-section,
.home-page .facebook-section,
.home-page .product-panel,
.home-page .cart-panel {
  display: none;
}

.home-gateways,
.home-signature,
.page-hero,
.split-page,
.copy-grid,
.source-strip {
  padding: clamp(42px, 7vw, 96px) clamp(18px, 5vw, 72px);
}

.home-gateways {
  background: #fff8e8;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}

.gateway-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.gateway-card {
  display: grid;
  grid-template-rows: 320px auto auto;
  gap: 10px;
  min-height: 100%;
  padding: 0 0 20px;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
  border: 3px solid var(--ink);
  box-shadow: 8px 8px 0 rgba(16, 13, 27, 0.22);
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.gateway-card:nth-child(2n) {
  box-shadow: 8px 8px 0 var(--red);
}

.gateway-card:nth-child(3n) {
  box-shadow: 8px 8px 0 var(--blue);
}

.gateway-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 12px 12px 0 var(--gold);
}

.gateway-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0;
  background:
    linear-gradient(135deg, rgba(183, 43, 36, 0.16), transparent 42%),
    var(--cream);
}

.gateway-card span {
  padding: 0 14px;
  color: var(--blue);
  font-family: Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.gateway-card strong {
  padding: 0 14px;
  font-size: clamp(1.35rem, 2.4vw, 2.1rem);
  line-height: 1;
}

.home-signature {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.72fr) auto;
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(183, 43, 36, 0.62), transparent 44%),
    linear-gradient(28deg, transparent 0 64%, rgba(0, 159, 181, 0.22) 64% 67%, transparent 67%),
    var(--ink);
}

.home-signature p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.14rem;
  line-height: 1.62;
}

.page-hero {
  color: #fff;
  background:
    linear-gradient(110deg, rgba(16, 13, 27, 0.98), rgba(16, 13, 27, 0.72) 52%, rgba(183, 43, 36, 0.42)),
    url("../bigcartel-20260604-155507/assets/f8da767ba77f19ceba205bc2ca492665-RollingStones1969.jpg") center / cover;
  border-bottom: 3px solid var(--gold);
}

.page-hero h1 {
  max-width: 1100px;
  font-size: clamp(3.2rem, 8vw, 8rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.08rem, 2vw, 1.55rem);
  line-height: 1.55;
}

.shop-hero {
  background-image:
    linear-gradient(110deg, rgba(16, 13, 27, 0.98), rgba(16, 13, 27, 0.72) 52%, rgba(7, 91, 139, 0.46)),
    url("../bigcartel-20260604-155507/assets/5d91bc938728496360d56fff91ac70b5-JimiHendrix-680.jpg");
}

.about-hero {
  background-image:
    linear-gradient(110deg, rgba(16, 13, 27, 0.98), rgba(16, 13, 27, 0.76) 52%, rgba(80, 45, 131, 0.48)),
    url("../bigcartel-20260604-155507/assets/5a6fc65d97cda6121f1fe658f213473d-ByrdShow2011.jpg");
}

.timeline-hero {
  background-image:
    linear-gradient(110deg, rgba(16, 13, 27, 0.98), rgba(16, 13, 27, 0.72) 52%, rgba(240, 170, 39, 0.32)),
    url("../bigcartel-20260604-155507/assets/274ae1e8b248b08f66490463a542291b-Woodstock.jpg");
}

.legacy-hero {
  background-image:
    linear-gradient(110deg, rgba(16, 13, 27, 0.98), rgba(16, 13, 27, 0.76) 52%, rgba(183, 43, 36, 0.48)),
    url("../bigcartel-20260604-155507/assets/85fe018bdb6123de9e1dbbb3303a58a1-PINK-FLOYD-_SEND_.jpg");
}

.press-hero {
  background-image:
    linear-gradient(110deg, rgba(16, 13, 27, 0.98), rgba(16, 13, 27, 0.74) 52%, rgba(240, 170, 39, 0.28)),
    url("../bigcartel-20260604-155507/assets/FILLMORE-FOLIO-_1A3.jpg");
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}

.proof-band article {
  min-height: 190px;
  padding: 22px;
  color: #fff;
  background: var(--ink);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.proof-band article:nth-child(2n) {
  background: var(--red);
}

.proof-band strong {
  display: block;
  color: var(--gold);
  font-size: clamp(1.3rem, 2vw, 2rem);
  line-height: 1;
}

.proof-band p,
.source-board p {
  margin-bottom: 0;
  line-height: 1.5;
}

.proof-band p {
  color: rgba(255, 255, 255, 0.78);
}

.source-board a {
  min-height: 220px;
}

.source-board p {
  color: var(--muted);
}

.dark-research .source-board p {
  color: rgba(255, 255, 255, 0.74);
}

.split-page {
  display: grid;
  grid-template-columns: minmax(280px, 0.52fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  color: #fff;
  background: var(--ink);
}

.split-page p:not(.eyebrow),
.copy-grid p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.66;
}

.copy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  background: #fff8e8;
}

.copy-grid article {
  padding: 24px;
  color: #fff;
  background: var(--ink);
  border: 3px solid var(--ink);
  box-shadow: 8px 8px 0 var(--gold);
}

.source-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: #fff;
  background: var(--red);
  border-top: 3px solid var(--gold);
}

.source-strip a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  color: #fff;
  background: rgba(16, 13, 27, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-family: Arial, sans-serif;
  font-size: 0.74rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.research-section {
  padding: clamp(42px, 7vw, 96px) clamp(18px, 5vw, 72px);
  background: #fff8e8;
}

.dark-research {
  color: #fff;
  background: var(--ink);
}

.dark-research .section-heading p:last-child {
  color: rgba(255, 255, 255, 0.76);
}

.research-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.research-grid a {
  display: grid;
  gap: 12px;
  min-height: 150px;
  padding: 20px;
  color: var(--ink);
  background: var(--paper);
  border: 3px solid var(--ink);
  box-shadow: 7px 7px 0 var(--red);
  text-decoration: none;
}

.dark-research .research-grid a {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(240, 170, 39, 0.4);
}

.research-grid span {
  color: var(--blue);
  font-family: Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.dark-research .research-grid span {
  color: var(--gold);
}

.research-grid strong {
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  line-height: 1.08;
}

.page-section {
  border-top: 0;
}

.sales-log-section {
  padding: clamp(30px, 5vw, 64px) clamp(18px, 5vw, 72px);
}

.sales-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.sales-log-table {
  overflow: auto;
}

.sales-table {
  min-width: 900px;
}

.page-timeline {
  grid-template-columns: repeat(11, minmax(280px, 1fr));
}

@media (max-width: 980px) {
  .site-header,
  .facebook-section {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header nav {
    justify-content: flex-start;
  }

  .hero,
  .section-heading,
  .person-section,
  .about-section,
  .timeline-section,
  .legacy-section,
  .estate-section,
  .home-signature,
  .split-page,
  .panel-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .poster-wall img,
  .poster-wall img:nth-child(1),
  .poster-wall img:nth-child(4) {
    height: clamp(170px, 45vw, 360px);
  }

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

  .stats div:nth-child(2) {
    border-right: 0;
  }

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

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

  .gateway-grid,
  .copy-grid,
  .store-featured,
  .research-grid,
  .proof-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .panel-card > img {
    min-height: 360px;
  }

  .cart-card {
    right: 14px;
  }

  .timeline {
    grid-template-columns: repeat(11, minmax(240px, 82vw));
  }
}

@media (max-width: 620px) {
  .site-header {
    position: static;
  }

  .brand {
    min-width: 0;
  }

  .hero,
  .shop-section,
  .person-section,
  .timeline-section,
  .about-section,
  .legacy-section,
  .estate-section,
  .facebook-section,
  .home-gateways,
  .home-signature,
  .page-hero,
  .split-page,
  .copy-grid,
  .source-strip {
    padding-inline: 16px;
  }

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

  .poster-wall img,
  .poster-wall img:nth-child(1),
  .poster-wall img:nth-child(2),
  .poster-wall img:nth-child(3),
  .poster-wall img:nth-child(4),
  .poster-wall img:nth-child(5),
  .poster-wall img:nth-child(6) {
    grid-column: span 1;
    height: 220px;
    border-width: 5px;
  }

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

  .stats div {
    border-right: 0;
  }

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

  .category-tiles,
  .cart-row,
  .gateway-grid,
  .copy-grid,
  .store-featured,
  .research-grid,
  .proof-band {
    grid-template-columns: 1fr;
  }

  .cart-row img {
    width: 100%;
  }
}
