:root {
  color-scheme: light;
  --ink: #171111;
  --muted: #665a56;
  --paper: #fffaf4;
  --panel: #ffffff;
  --line: #e6dcd3;
  --black: #111111;
  --charcoal: #272323;
  --red: #d52535;
  --teal: #088d91;
  --gold: #c79739;
  --rose: #fff0ee;
  --shadow: 0 18px 48px rgba(23, 17, 17, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body.locked {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

.topline {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 4vw, 3.5rem);
  padding: 0.65rem 1rem;
  background: var(--black);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 250, 244, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  width: min(1180px, calc(100% - 2rem));
  min-height: 92px;
  margin: 0 auto;
}

.nav-group {
  display: flex;
  align-items: center;
  gap: clamp(0.7rem, 2vw, 1.5rem);
}

.nav-group-right {
  justify-content: flex-end;
}

.nav-group a,
.cart-button {
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  white-space: nowrap;
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.cart-button span {
  display: inline-grid;
  place-items: center;
  min-width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 0.72rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  min-width: 255px;
  text-align: left;
}

.brand-logo {
  width: 62px;
  max-width: 18vw;
  height: auto;
  display: block;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 3px solid var(--black);
  border-radius: 50%;
  background: linear-gradient(145deg, var(--black), #3a3030);
  color: #fff;
  font-family: Georgia, serif;
  font-size: 2rem;
  font-weight: 900;
}

.brand-copy strong {
  display: block;
  max-width: 220px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 2vw, 1.42rem);
  line-height: 0.95;
}

.brand-copy small {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: min(720px, 74vh);
  overflow: hidden;
  isolation: isolate;
  background: var(--black);
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(10, 7, 7, 0.78), rgba(10, 7, 7, 0.34) 44%, rgba(10, 7, 7, 0.05)),
    linear-gradient(0deg, rgba(10, 7, 7, 0.7), rgba(10, 7, 7, 0.02) 48%);
}

.hero-content {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6rem) 0;
  color: #fff;
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.75rem;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero .eyebrow {
  color: #ffd9d5;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 1rem;
  font-size: clamp(3rem, 8vw, 6.85rem);
  line-height: 0.9;
}

h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 0.95;
}

h3 {
  font-size: clamp(1.45rem, 3vw, 2.45rem);
  line-height: 1;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.6;
}

.hero-actions,
.age-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button,
.signup button,
.products button,
.checkout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0.85rem 1.2rem;
  cursor: pointer;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.button-primary,
.signup button,
.products button,
.checkout {
  background: var(--red);
  color: #fff;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid var(--line);
  background: #fff;
}

.feature-band div {
  padding: clamp(1.1rem, 3vw, 2rem);
  text-align: center;
}

.feature-band div + div {
  border-left: 1px solid var(--line);
}

.feature-band strong,
.feature-band span {
  display: block;
}

.feature-band strong {
  font-size: 0.9rem;
  font-weight: 950;
  text-transform: uppercase;
}

.feature-band span {
  margin-top: 0.35rem;
  color: var(--muted);
}

.section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 7vw, 7rem) 0;
}

.intro {
  max-width: 930px;
  text-align: center;
}

.intro p,
.story-copy p,
.newsletter p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto clamp(4rem, 7vw, 6rem);
  border: 1px solid var(--line);
  background: #fff;
}

.category {
  display: grid;
  justify-items: center;
  gap: 0.55rem;
  min-height: 265px;
  padding: 2rem;
  text-align: center;
}

.category + .category {
  border-left: 1px solid var(--line);
}

.category strong {
  font-size: 1.15rem;
  font-weight: 950;
}

.category span:last-child {
  color: var(--muted);
  line-height: 1.45;
}

.category-art {
  position: relative;
  display: block;
  width: 130px;
  height: 138px;
}

.category-art::before,
.category-art::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: var(--charcoal);
}

.category-art::before {
  top: 12px;
  width: 48px;
  height: 108px;
  border-radius: 28px 28px 12px 12px;
}

.category-art::after {
  bottom: 3px;
  width: 92px;
  height: 18px;
  border-radius: 999px 999px 10px 10px;
}

.category-art-color::before {
  background: linear-gradient(90deg, var(--teal) 0 49%, var(--red) 51% 100%);
}

.category-art-color::after {
  background: var(--red);
}

.category-art-kit::before {
  width: 72px;
  height: 92px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--black) 0 52%, var(--teal) 52%);
}

.category-art-kit::after {
  width: 112px;
  background: var(--gold);
}

.section-heading-row {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 1.5rem;
}

.carousel-controls {
  display: flex;
  gap: 0.5rem;
}

.carousel-controls button,
.cart-header button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
}

.spotlight {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(260px, 1fr);
  align-items: stretch;
  min-height: 360px;
  margin-bottom: 1.5rem;
  background: var(--black);
  color: #fff;
  overflow: hidden;
}

.spotlight-copy {
  align-self: center;
  padding: clamp(2rem, 5vw, 4rem);
}

.spotlight-copy span {
  display: inline-flex;
  margin-bottom: 0.9rem;
  color: #ffd6d1;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.spotlight-copy p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.6;
}

.spotlight-stage {
  position: relative;
  min-height: 320px;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08)),
    radial-gradient(circle at 74% 44%, rgba(8, 141, 145, 0.28), transparent 34%),
    linear-gradient(145deg, #241f1f, #111);
}

.display-toy {
  position: absolute;
  bottom: 54px;
  width: 86px;
  height: 228px;
  border-radius: 48px 48px 14px 14px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.16), transparent 22% 76%, rgba(0, 0, 0, 0.3)),
    var(--charcoal);
  box-shadow: 0 28px 38px rgba(0, 0, 0, 0.38);
}

.display-toy::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -22px;
  width: 148px;
  height: 32px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: inherit;
}

.display-toy-main {
  right: 30%;
}

.display-toy-side {
  right: 12%;
  width: 64px;
  height: 184px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18), transparent 28% 76%, rgba(0, 0, 0, 0.24)),
    var(--red);
}

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

.product-card,
.review-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.product-shot {
  position: relative;
  display: grid;
  place-items: end center;
  min-height: 245px;
  padding-bottom: 38px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(8, 141, 145, 0.12), rgba(213, 37, 53, 0.1)),
    #fff;
}

.toy {
  position: relative;
  width: var(--toy-width, 58px);
  height: var(--toy-height, 158px);
  border-radius: 999px 999px 14px 14px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.2), transparent 25% 76%, rgba(0, 0, 0, 0.24)),
    var(--toy-color, var(--charcoal));
  transform: rotate(var(--toy-rotate, 0deg));
  box-shadow: 0 18px 24px rgba(23, 17, 17, 0.2);
}

.toy::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -17px;
  width: calc(var(--toy-width, 58px) * 1.8);
  height: 24px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: inherit;
}

.toy.ribbed {
  background:
    repeating-linear-gradient(-18deg, transparent 0 18px, rgba(255, 255, 255, 0.15) 18px 24px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18), transparent 27% 78%, rgba(0, 0, 0, 0.24)),
    var(--toy-color, var(--charcoal));
}

.product-body {
  padding: 1.1rem;
}

.product-body h3 {
  margin-bottom: 0.5rem;
  font-family: inherit;
  font-size: 1.02rem;
  line-height: 1.2;
}

.product-body p {
  color: var(--muted);
  line-height: 1.5;
}

.product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 1.1rem 1.1rem;
}

.product-foot strong {
  white-space: nowrap;
}

.products button {
  min-height: 40px;
  padding: 0.7rem 0.9rem;
}

.story-band,
.newsletter {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(4rem, 7vw, 7rem) max(1rem, calc((100vw - 1180px) / 2));
  background: #fff;
  border-block: 1px solid var(--line);
}

.story-media {
  min-height: 420px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(213, 37, 53, 0.12), rgba(8, 141, 145, 0.16)),
    #fff8f7;
}

.packing-slip {
  width: min(310px, calc(100% - 2rem));
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  transform: rotate(-4deg);
}

.packing-slip span {
  display: inline-flex;
  margin-bottom: 2rem;
  padding: 0.35rem 0.55rem;
  background: var(--black);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
}

.packing-slip strong {
  display: block;
  margin-bottom: 0.5rem;
}

.packing-slip p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 0.98;
}

.fine-print {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.95rem !important;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.review-card {
  padding: 1.4rem;
}

.stars {
  margin-bottom: 1rem;
  color: var(--gold);
  font-weight: 950;
  letter-spacing: 0;
}

.review-card p {
  color: var(--ink);
  line-height: 1.55;
}

.review-card strong {
  color: var(--muted);
  font-size: 0.9rem;
}

.newsletter {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
  background: var(--black);
  color: #fff;
}

.newsletter .section-kicker {
  color: #ffd6d1;
}

.newsletter p {
  color: rgba(255, 255, 255, 0.76);
}

.signup label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.signup div {
  display: flex;
  gap: 0.55rem;
}

.signup input {
  min-width: 0;
  flex: 1;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 0 0.9rem;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.signup input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.form-status {
  min-height: 1.4rem;
  margin: 0.7rem 0 0;
  font-size: 0.9rem !important;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 2.5rem;
}

.site-footer p {
  max-width: 620px;
  margin: 0.4rem 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.product-category {
  margin-bottom: 0.35rem !important;
  color: var(--red) !important;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.sale-pill {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
  border-radius: 999px;
  padding: 0.35rem 0.55rem;
  background: var(--red);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
}

.was {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  text-decoration: line-through;
}

.footer-links {
  display: flex;
  gap: 1rem;
  align-items: start;
  font-weight: 900;
}

.age-gate,
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 50;
}

.age-gate {
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(17, 17, 17, 0.82);
}

.age-gate.hidden {
  display: none;
}

.age-panel {
  width: min(480px, 100%);
  border-radius: 8px;
  padding: clamp(1.5rem, 5vw, 2.5rem);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.age-panel h2 {
  font-size: clamp(2rem, 7vw, 3rem);
}

.age-panel p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.6;
}

.age-panel .button-secondary {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.cart-drawer {
  pointer-events: none;
  background: rgba(17, 17, 17, 0);
  transition: background 0.18s ease;
}

.cart-drawer.open {
  pointer-events: auto;
  background: rgba(17, 17, 17, 0.45);
}

.cart-panel {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  width: min(420px, 100%);
  height: 100%;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.18s ease;
}

.cart-drawer.open .cart-panel {
  transform: translateX(0);
}

.cart-header,
.cart-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid var(--line);
}

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

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

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

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

.checkout {
  margin: 0 1rem 1rem;
}

.social-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(4rem, 7vw, 7rem) max(1rem, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(135deg, rgba(8, 141, 145, 0.13), rgba(213, 37, 53, 0.1)),
    #fffaf4;
}

.social-art {
  display: grid;
  place-items: center;
}

.social-art img {
  width: min(310px, 78vw);
  filter: drop-shadow(0 24px 24px rgba(23, 17, 17, 0.18));
}

.social-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.social-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.4rem 0;
}

.social-buttons a {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.75rem 0.95rem;
  background: #fff;
  font-weight: 950;
}

.social-copy blockquote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
}

.locations h2 {
  max-width: 680px;
}

.location-controls {
  display: flex;
  gap: 0.5rem;
}

.location-controls button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
}

.location-controls .active {
  background: var(--black);
  color: #fff;
}

.location-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  gap: 1rem;
  align-items: stretch;
}

.nearest {
  grid-column: 1 / -1;
  display: flex;
  gap: 0.7rem;
  align-items: center;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0.85rem;
}

.nearest label {
  color: var(--muted);
  font-weight: 900;
  white-space: nowrap;
}

.nearest input {
  min-width: 0;
  flex: 1;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 0.8rem;
}

.location-list {
  display: grid;
  border: 1px solid var(--line);
  background: #fff;
}

.location-list article {
  display: grid;
  gap: 0.2rem;
  padding: 1rem;
}

.location-list article + article {
  border-top: 1px solid var(--line);
}

.location-list span {
  color: var(--muted);
}

.fake-map {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.08) 1px, transparent 1px) 0 0 / 58px 58px,
    linear-gradient(rgba(17, 17, 17, 0.08) 1px, transparent 1px) 0 0 / 58px 58px,
    linear-gradient(135deg, #f7eee5, #fff);
}

.fake-map::before,
.fake-map::after {
  content: "";
  position: absolute;
  inset: auto;
  background: var(--teal);
  opacity: 0.65;
}

.fake-map::before {
  width: 130%;
  height: 28px;
  left: -15%;
  top: 44%;
  transform: rotate(-12deg);
}

.fake-map::after {
  width: 28px;
  height: 130%;
  left: 58%;
  top: -15%;
  transform: rotate(28deg);
}

.fake-map span {
  position: absolute;
  z-index: 1;
  width: 18px;
  height: 18px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 8px 18px rgba(23, 17, 17, 0.24);
}

.fake-map span:nth-child(1) { left: 24%; top: 34%; }
.fake-map span:nth-child(2) { left: 48%; top: 61%; }
.fake-map span:nth-child(3) { left: 71%; top: 43%; }
.fake-map span:nth-child(4) { left: 36%; top: 74%; }

.location-panel[data-view="list"] .fake-map {
  display: block;
}

.location-panel[data-view="map"] .location-list {
  display: none;
}

.location-panel[data-view="map"] .fake-map {
  grid-column: 1 / -1;
  min-height: 480px;
}

.contact-form {
  display: grid;
  gap: 0.55rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 0.8rem 0.9rem;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  resize: vertical;
}

.button-dark {
  background: var(--black);
  color: #fff;
}

.page-hero {
  padding: clamp(4rem, 8vw, 8rem) max(1rem, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(135deg, rgba(213, 37, 53, 0.13), rgba(8, 141, 145, 0.14)),
    #fff;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  color: var(--ink);
}

.page-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.store-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0.8rem;
}

.store-toolbar label {
  color: var(--muted);
  font-weight: 900;
}

.store-toolbar select {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  padding: 0 0.6rem;
}

.store-cats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.store-callout {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  border: 1px solid var(--line);
  background: var(--black);
  color: #fff;
  padding: 1.2rem;
}

.store-callout img {
  width: 82px;
}

.store-callout p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 5rem);
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 7vw, 7rem) 0;
}

.detail-gallery {
  display: grid;
  gap: 1rem;
}

.detail-shot {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 560px;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(8, 141, 145, 0.13), rgba(213, 37, 53, 0.1)),
    #fff;
}

.detail-shot .toy {
  --toy-height: 310px;
  --toy-width: 104px;
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.thumb-row span {
  position: relative;
  display: grid;
  place-items: end center;
  min-height: 142px;
  padding-bottom: 28px;
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
}

.detail-copy h1 {
  color: var(--ink);
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 0.92;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: baseline;
  margin: 1rem 0;
}

.price-row strong {
  font-size: 2rem;
}

.price-row span {
  color: var(--muted);
  text-decoration: line-through;
}

.price-row em {
  color: var(--red);
  font-style: normal;
  font-weight: 950;
}

.stock {
  color: var(--teal);
  font-weight: 950;
}

.quantity-row {
  display: grid;
  grid-template-columns: auto 90px;
  gap: 0.8rem;
  align-items: center;
  max-width: 220px;
  margin-bottom: 1rem;
}

.quantity-row input {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 0.6rem;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 2rem;
}

.detail-copy h2 {
  margin-top: 2rem;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}

.detail-copy h3 {
  margin-top: 1.5rem;
}

.detail-copy p,
.detail-copy li {
  color: var(--muted);
  line-height: 1.65;
}

.plain-toggle {
  border: 0;
  background: transparent;
  color: var(--red);
  cursor: pointer;
  padding: 0;
  font-weight: 950;
}

.article-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.article-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.article-card .category-art {
  margin: 1.5rem auto 0;
}

.article-card div:not(.category-art) {
  padding: 1.2rem;
}

.article-card p {
  color: var(--muted);
  line-height: 1.55;
}

.text-page {
  max-width: 900px;
}

.text-page p,
.text-page li {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.mission-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 1.4rem;
}

@media (max-width: 980px) {
  .nav-shell {
    grid-template-columns: 1fr;
    gap: 0.65rem;
    padding: 0.75rem 0;
  }

  .brand {
    order: -1;
    justify-self: center;
  }

  .nav-group,
  .nav-group-right {
    justify-content: center;
    flex-wrap: wrap;
  }

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

  .spotlight,
  .story-band,
  .newsletter,
  .social-band,
  .location-panel,
  .product-detail {
    grid-template-columns: 1fr;
  }

  .article-list,
  .mission-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .topline {
    display: grid;
    gap: 0.2rem;
    text-align: center;
  }

  .hero {
    min-height: 650px;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(10, 7, 7, 0.84), rgba(10, 7, 7, 0.22) 70%),
      linear-gradient(90deg, rgba(10, 7, 7, 0.55), rgba(10, 7, 7, 0.08));
  }

  .feature-band,
  .category-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .feature-band div + div,
  .category + .category {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .section-heading-row,
  .site-footer {
    align-items: start;
    flex-direction: column;
  }

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

  .signup div {
    flex-direction: column;
  }

  .signup button {
    width: 100%;
  }

  .store-toolbar,
  .nearest {
    align-items: stretch;
    flex-direction: column;
  }

  .store-cats {
    grid-template-columns: 1fr;
  }

  .store-callout {
    grid-template-columns: 1fr;
  }

  .detail-shot {
    min-height: 430px;
  }

  .detail-shot .toy {
    --toy-height: 245px;
    --toy-width: 84px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
