:root {
  --paper: #f7f4ed;
  --paper-deep: #eee8dc;
  --ink: #11100f;
  --ink-soft: #47433d;
  --line: #cfc8bc;
  --white: #fff;
  --max: 1440px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
  --shadow: 0 18px 50px rgba(17, 16, 15, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
}

body.drawer-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.announcement {
  padding: 9px 20px;
  border-bottom: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  z-index: 60;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 244, 237, 0.96);
  backdrop-filter: blur(12px);
}

.header-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 78px;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  gap: 36px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  text-transform: uppercase;
}

.wordmark-cross {
  display: inline-block;
  margin: 0 0.14em;
  font-size: 1.35em;
  font-weight: 400;
  transform: translateY(0.04em);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.desktop-nav a,
.header-actions button,
.mobile-nav a {
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  padding: 28px 0 24px;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a.active::after {
  transform: scaleX(1);
}

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

.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0 10px;
  border: 1px solid transparent !important;
}

.icon-button:hover,
.icon-button:focus-visible {
  border-color: var(--ink) !important;
}

.bag-count {
  display: inline-grid;
  place-items: center;
  min-width: 21px;
  height: 21px;
  margin-left: 7px;
  border-radius: 99px;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.68rem;
  letter-spacing: 0;
}

.menu-button {
  display: none !important;
}

.section-switch-wrap {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.section-switch {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  gap: 8px;
}

.switch-link {
  min-width: 108px;
  padding: 9px 18px;
  border: 1px solid var(--ink);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
  transition:
    background 160ms ease,
    color 160ms ease;
}

.switch-link.active,
.switch-link:hover,
.switch-link:focus-visible {
  background: var(--ink);
  color: var(--paper);
}

.mobile-nav {
  display: none;
  padding: 8px 24px 24px;
  border-top: 1px solid var(--line);
}

.mobile-nav.open {
  display: grid;
  gap: 4px;
}

.mobile-nav a {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

main {
  min-height: 60vh;
}

.page-shell {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: clamp(68px, 8vw, 124px) 0;
}

.section-compact {
  padding: clamp(44px, 6vw, 80px) 0;
}

.section-white {
  background: var(--white);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--ink-soft);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.02;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(3rem, 7vw, 7.2rem);
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4.6vw, 4.7rem);
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  letter-spacing: -0.02em;
}

.lede {
  max-width: 620px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-align: center;
  text-transform: uppercase;
  transition:
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  background: transparent;
  color: var(--ink);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--ink);
  color: var(--paper);
}

.btn-small {
  min-height: 40px;
  padding: 10px 15px;
  font-size: 0.66rem;
}

.btn-full {
  width: 100%;
}

.text-link {
  border-bottom: 1px solid;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.landing {
  min-height: calc(100vh - 131px);
  padding: 42px 0;
}

.landing-intro {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.landing-intro h1 {
  margin-bottom: 6px;
  font-size: clamp(2.7rem, 6vw, 6rem);
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 610px;
  gap: 18px;
}

.path-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 600px;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--white);
}

.path-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.path-card.adult-path img {
  object-position: 50% 34%;
}

.path-card.kids-path img {
  object-position: center;
}

.path-card::after {
  position: absolute;
  inset: 34% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.82));
  content: "";
}

.path-card:hover img,
.path-card:focus-visible img {
  transform: scale(1.025);
}

.path-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(28px, 5vw, 54px);
  color: var(--white);
}

.path-copy h2 {
  margin-bottom: 10px;
  font-size: clamp(2.5rem, 5vw, 5.4rem);
}

.path-copy p {
  max-width: 460px;
  margin-bottom: 24px;
}

.path-copy .btn {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.kids-hero {
  min-height: min(760px, calc(100vh - 130px));
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kids-hero .hero-media img {
  object-position: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: inherit;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 70px 0;
}

.hero-copy {
  max-width: 570px;
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid rgba(17, 16, 15, 0.28);
  background: rgba(247, 244, 237, 0.88);
  backdrop-filter: blur(7px);
}

.hero-copy h1 {
  font-size: clamp(3.2rem, 7vw, 7rem);
}

.adult-hero {
  background: var(--paper);
}

.carousel {
  position: relative;
  min-height: min(760px, calc(100vh - 130px));
  overflow: hidden;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 450ms ease;
}

.carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.carousel-copy {
  z-index: 2;
  padding: clamp(42px, 8vw, 120px);
}

.carousel-copy h1,
.carousel-copy h2 {
  max-width: 650px;
}

.carousel-image {
  height: 100%;
  min-height: inherit;
  border-left: 1px solid var(--line);
  background: var(--white);
}

.carousel-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 30px;
}

.carousel-controls {
  position: absolute;
  z-index: 8;
  right: 30px;
  bottom: 30px;
  display: flex;
  gap: 8px;
}

.carousel-controls button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
}

.carousel-controls button:hover,
.carousel-controls button:focus-visible {
  background: var(--ink);
  color: var(--paper);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 24px;
}

.section-heading > div {
  max-width: 720px;
}

.section-heading p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.category-grid,
.character-grid,
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

.category-card,
.character-card {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--white);
}

.category-card img,
.character-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: transform 500ms ease;
}

.character-card img {
  object-fit: contain;
  padding: 16px 16px 92px;
  background: var(--paper-deep);
}

.category-card:hover img,
.category-card:focus-within img,
.character-card:hover img,
.character-card:focus-within img {
  transform: scale(1.025);
}

.card-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px;
  border-top: 1px solid var(--ink);
  background: var(--paper);
  gap: 20px;
}

.card-caption h3,
.card-caption p {
  margin: 0;
}

.card-caption p {
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.arrow {
  font-family: var(--serif);
  font-size: 1.8rem;
}

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

.product-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--white);
}

.product-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-bottom: 1px solid var(--line);
  background: #eeece7;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(1);
  transition: transform 400ms ease;
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.025);
}

.product-placeholder {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  overflow: hidden;
  background: var(--paper-deep);
}

.product-placeholder::before {
  position: absolute;
  top: 13%;
  width: 65%;
  height: 72%;
  border-radius: 22px 22px 8px 8px;
  background: #151515;
  box-shadow: var(--shadow);
  clip-path: polygon(
    18% 0,
    34% 7%,
    66% 7%,
    82% 0,
    100% 18%,
    83% 30%,
    77% 22%,
    77% 100%,
    23% 100%,
    23% 22%,
    17% 30%,
    0 18%
  );
  content: "";
}

.product-placeholder.hoodie::before {
  top: 14%;
  height: 70%;
  clip-path: polygon(
    32% 7%,
    40% 0,
    60% 0,
    68% 7%,
    84% 10%,
    100% 34%,
    86% 43%,
    76% 28%,
    76% 100%,
    24% 100%,
    24% 28%,
    14% 43%,
    0 34%,
    16% 10%
  );
}

.product-placeholder.pjs::before {
  top: 10%;
  width: 62%;
  height: 46%;
}

.product-placeholder.pjs::after {
  position: absolute;
  bottom: 9%;
  width: 52%;
  height: 39%;
  background: repeating-linear-gradient(
    90deg,
    #151515 0 16px,
    #2b2b2b 16px 22px
  );
  clip-path: polygon(8% 0, 92% 0, 100% 100%, 56% 100%, 50% 38%, 44% 100%, 0 100%);
  content: "";
}

.placeholder-mark {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-top: -36%;
  border: 1px solid var(--paper);
  border-radius: 50%;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 1.4rem;
}

.placeholder-note {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 3;
  padding: 8px;
  border: 1px solid var(--line);
  background: rgba(247, 244, 237, 0.92);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.badge {
  position: absolute;
  z-index: 5;
  top: 12px;
  left: 12px;
  padding: 7px 9px;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.product-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 7px;
  gap: 14px;
}

.product-meta h3 {
  margin: 0;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.price {
  white-space: nowrap;
  font-size: 0.85rem;
  font-weight: 800;
}

.product-subtitle {
  min-height: 42px;
  margin-bottom: 18px;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  margin-top: auto;
  gap: 8px;
}

.page-hero {
  padding: clamp(72px, 11vw, 150px) 0;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.page-hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
}

.page-hero h1 {
  margin-bottom: 0;
}

.breadcrumb {
  margin-bottom: 22px;
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  text-decoration: underline;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 34px;
  gap: 8px;
}

.filter-chip {
  padding: 9px 14px;
  border: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.filter-chip.active,
.filter-chip:hover,
.filter-chip:focus-visible {
  background: var(--ink);
  color: var(--paper);
}

.character-hero {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  min-height: 680px;
  border-bottom: 1px solid var(--line);
}

.character-hero-copy {
  display: flex;
  align-items: center;
  padding: clamp(40px, 8vw, 120px);
}

.trait-list {
  display: flex;
  flex-wrap: wrap;
  margin: 24px 0 34px;
  padding: 0;
  gap: 8px;
  list-style: none;
}

.trait-list li {
  padding: 8px 11px;
  border: 1px solid var(--ink);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.character-hero-art {
  min-height: 680px;
  border-left: 1px solid var(--line);
  background: var(--paper-deep);
}

.character-hero-art img {
  width: 100%;
  height: 100%;
  max-height: 760px;
  object-fit: contain;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;
  border: 1px solid var(--ink);
  background: var(--white);
}

.story-image {
  min-height: 520px;
  border-right: 1px solid var(--ink);
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 6vw, 74px);
}

.story-copy p:last-child {
  margin-bottom: 0;
}

.launch-lines {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 30px;
  gap: 12px;
}

.launch-line {
  padding: 18px;
  border: 1px solid var(--line);
}

.launch-line span {
  display: block;
  margin-bottom: 5px;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.launch-line strong {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
}

.product-detail {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  padding: 52px 0 90px;
  gap: clamp(32px, 7vw, 90px);
}

.product-gallery {
  position: sticky;
  top: 164px;
  align-self: start;
}

.product-gallery-main {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  background: var(--white);
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-info {
  padding-top: 20px;
}

.product-info h1 {
  font-size: clamp(2.7rem, 5vw, 5.2rem);
}

.product-info-price {
  margin-bottom: 28px;
  font-size: 1.2rem;
  font-weight: 800;
}

.field {
  display: grid;
  margin: 22px 0;
  gap: 8px;
}

.field label,
.field-label {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.field select,
.field input,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.size-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 7px;
}

.size-btn {
  min-height: 46px;
  border: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 800;
}

.size-btn.active,
.size-btn:hover,
.size-btn:focus-visible {
  background: var(--ink);
  color: var(--paper);
}

.detail-actions {
  display: grid;
  margin: 24px 0;
  gap: 10px;
}

.detail-list {
  margin-top: 32px;
  border-top: 1px solid var(--line);
}

.detail-list details {
  border-bottom: 1px solid var(--line);
}

.detail-list summary {
  padding: 18px 0;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail-list details p {
  padding-bottom: 18px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.empty-state,
.coming-soon {
  padding: clamp(48px, 8vw, 100px);
  border: 1px solid var(--line);
  background: var(--white);
  text-align: center;
}

.empty-state p,
.coming-soon p {
  max-width: 620px;
  margin-right: auto;
  margin-left: auto;
  color: var(--ink-soft);
}

.basket-drawer-backdrop {
  position: fixed;
  z-index: 90;
  inset: 0;
  background: rgba(17, 16, 15, 0.48);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}

.basket-drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.basket-drawer {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  display: flex;
  width: min(480px, 100%);
  height: 100dvh;
  flex-direction: column;
  border-left: 1px solid var(--ink);
  background: var(--paper);
  transform: translateX(100%);
  transition: transform 260ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.drawer-header,
.drawer-footer {
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-header h2 {
  margin: 0;
  font-size: 1.7rem;
}

.drawer-close {
  width: 42px;
  height: 42px;
  border: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
}

.drawer-body {
  flex: 1;
  overflow: auto;
  padding: 22px;
}

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

.drawer-line,
.summary-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 11px;
  gap: 20px;
}

.drawer-line.total,
.summary-line.total {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--ink);
  font-weight: 800;
}

.basket-item {
  display: grid;
  grid-template-columns: 78px 1fr auto;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  gap: 14px;
}

.basket-thumb {
  width: 78px;
  height: 94px;
  object-fit: contain;
  border: 1px solid var(--line);
  background: var(--white);
}

.basket-item h3 {
  margin-bottom: 4px;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 800;
}

.basket-item p {
  margin-bottom: 9px;
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.quantity-control {
  display: inline-grid;
  grid-template-columns: 30px 30px 30px;
  border: 1px solid var(--ink);
}

.quantity-control button,
.quantity-control span {
  display: grid;
  min-height: 30px;
  place-items: center;
  border: 0;
  background: transparent;
  font-size: 0.72rem;
}

.quantity-control button {
  cursor: pointer;
}

.quantity-control button:hover,
.quantity-control button:focus-visible {
  background: var(--ink);
  color: var(--paper);
}

.remove-link {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 0.65rem;
  text-decoration: underline;
  text-transform: uppercase;
}

.basket-page {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  padding: 52px 0 90px;
  gap: clamp(30px, 8vw, 100px);
}

.checkout-card {
  position: sticky;
  top: 164px;
  align-self: start;
  padding: 28px;
  border: 1px solid var(--ink);
  background: var(--white);
}

.setup-note {
  padding: 13px;
  border: 1px solid var(--line);
  background: var(--paper-deep);
  color: var(--ink-soft);
  font-size: 0.76rem;
}

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

.form-grid .span-two {
  grid-column: 1 / -1;
}

.toast {
  position: fixed;
  z-index: 120;
  right: 24px;
  bottom: 24px;
  max-width: min(420px, calc(100% - 48px));
  padding: 14px 18px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font-size: 0.8rem;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  border-top: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 64px 0;
  gap: 40px;
}

.footer-brand p {
  max-width: 360px;
  color: #c9c3b8;
  font-size: 0.88rem;
}

.footer-column h3 {
  margin-bottom: 16px;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  margin: 10px 0;
  color: #d8d2c6;
  font-size: 0.82rem;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--white);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 20px 0 30px;
  border-top: 1px solid #45413c;
  color: #aaa39a;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.prose {
  max-width: 820px;
}

.prose h2 {
  margin-top: 54px;
  font-size: 2rem;
}

.prose h3 {
  margin-top: 32px;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 800;
}

.prose p,
.prose li {
  color: var(--ink-soft);
}

.noscript {
  padding: 60px 24px;
  text-align: center;
}

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 18px;
  }

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

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

  .character-grid .character-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .header-main {
    min-height: 66px;
    width: min(100% - 32px, var(--max));
    gap: 14px;
  }

  .wordmark {
    font-size: 1.2rem;
  }

  .desktop-nav {
    display: none;
  }

  .header-actions {
    justify-self: end;
  }

  .menu-button {
    display: inline-flex !important;
  }

  .page-shell,
  .hero-content {
    width: min(100% - 32px, var(--max));
  }

  .path-grid,
  .carousel-slide,
  .character-hero,
  .story-grid,
  .product-detail,
  .basket-page {
    grid-template-columns: 1fr;
  }

  .path-grid {
    min-height: 0;
  }

  .path-card {
    min-height: 540px;
  }

  .carousel {
    min-height: 780px;
  }

  .carousel-slide {
    grid-template-rows: auto 1fr;
  }

  .carousel-copy {
    padding: 48px 32px 28px;
  }

  .carousel-image {
    min-height: 420px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .character-hero-copy {
    padding: 64px 32px;
  }

  .character-hero-art {
    min-height: 520px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .story-image {
    min-height: 430px;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .product-gallery,
  .checkout-card {
    position: static;
  }

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

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

@media (max-width: 620px) {
  .announcement {
    padding: 8px 12px;
    font-size: 0.6rem;
  }

  .header-main {
    width: min(100% - 20px, var(--max));
  }

  .wordmark {
    font-size: 1rem;
  }

  .wordmark-cross {
    margin: 0 0.08em;
  }

  .icon-button {
    min-width: 40px;
    padding: 0 7px !important;
    font-size: 0.65rem !important;
  }

  .section-switch {
    min-height: 46px;
  }

  .switch-link {
    min-width: 94px;
    padding: 8px 13px;
    font-size: 0.62rem;
  }

  .page-shell,
  .hero-content,
  .footer-grid,
  .footer-bottom {
    width: min(100% - 24px, var(--max));
  }

  .landing {
    padding-top: 28px;
  }

  .landing-intro {
    margin-bottom: 24px;
  }

  .path-grid,
  .category-grid,
  .category-grid.two,
  .character-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .path-card {
    min-height: 440px;
  }

  .character-grid .character-card:last-child {
    grid-column: auto;
  }

  .kids-hero {
    min-height: 680px;
  }

  .kids-hero .hero-media img {
    object-position: 62% center;
    opacity: 0.72;
  }

  .hero-content {
    align-items: flex-end;
    padding-bottom: 34px;
  }

  .hero-copy {
    width: 100%;
    padding: 26px;
  }

  .hero-copy h1 {
    font-size: 3rem;
  }

  .section-heading,
  .page-hero-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-hero-inner {
    display: flex;
  }

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

  .character-card,
  .category-card {
    min-height: 430px;
  }

  .launch-lines,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-grid .span-two {
    grid-column: auto;
  }

  .basket-item {
    grid-template-columns: 66px 1fr;
  }

  .basket-thumb {
    width: 66px;
    height: 82px;
  }

  .basket-item > .price {
    grid-column: 2;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .toast {
    right: 12px;
    bottom: 12px;
    max-width: calc(100% - 24px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* CRYPT FINAL POLISH — WHITE SHOP */
:root {
  --paper: #ffffff;
  --paper-deep: #ffffff;
  --white: #ffffff;
  --line: #d9d9d6;
  --max: 1180px;
  --shadow: 0 10px 30px rgba(17, 16, 15, 0.06);
}

html { font-size: 14px; }
body,
main,
.site-header,
.section-switch-wrap,
.landing,
.adult-hero,
.page-hero,
.section,
.section-white,
.basket-drawer,
.quick-dialog,
.checkout-card,
.product-card,
.product-copy,
.category-card,
.character-card,
.story-grid,
.character-hero,
.character-hero-copy,
.mobile-nav {
  background: #fff;
}

.announcement {
  padding: 7px 18px;
  border-bottom: 1px solid var(--ink);
  background: #fff;
  color: var(--ink);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
}

.site-header { background: rgba(255, 255, 255, 0.98); }
.header-main {
  min-height: 64px;
  width: min(var(--max), calc(100% - 40px));
  gap: 26px;
}
.brand-lockup img {
  width: auto;
  max-width: 220px;
  max-height: 42px;
  object-fit: contain;
}
.desktop-nav { gap: 20px; }
.desktop-nav a,
.header-actions button,
.mobile-nav a { font-size: 0.68rem; }
.section-switch { min-height: 46px; }
.switch-link { min-width: 98px; padding: 7px 15px; font-size: 0.63rem; }

.page-shell,
.hero-content,
.footer-grid,
.footer-bottom { width: min(var(--max), calc(100% - 40px)); }
.section { padding: clamp(46px, 5vw, 72px) 0; }
.section-compact { padding: clamp(34px, 4vw, 54px) 0; }
h1 { margin-bottom: 16px; font-size: clamp(2.55rem, 5.6vw, 5.3rem); }
h2 { margin-bottom: 14px; font-size: clamp(1.85rem, 3.5vw, 3.35rem); }
h3 { margin-bottom: 9px; font-size: clamp(1.15rem, 1.8vw, 1.55rem); }
.lede { margin-bottom: 22px; font-size: clamp(0.96rem, 1.25vw, 1.08rem); }
.eyebrow { margin-bottom: 11px; font-size: 0.62rem; }
.section-heading { margin-bottom: 26px; }
.section-heading p { max-width: 650px; }
.btn { min-height: 40px; padding: 10px 17px; font-size: 0.67rem; }
.btn-small { min-height: 34px; padding: 8px 12px; font-size: 0.61rem; }

.landing { min-height: auto; padding: 30px 0 52px; }
.landing-intro { max-width: 650px; margin-bottom: 25px; }
.landing-intro h1 { font-size: clamp(2.4rem, 4.6vw, 4.4rem); }
.path-grid { min-height: 0; gap: 16px; }
.path-card { min-height: 470px; background: #fff; }
.path-card img,
.category-card img {
  object-fit: contain;
  object-position: center;
  padding: 18px;
  background: #fff;
}

.path-card.kids-path img {
  padding: 0;
  background: #f4eddd;
}
.path-copy { padding: 28px; }
.path-copy h2 { font-size: clamp(2rem, 3.4vw, 3.25rem); }

.kids-hero { min-height: 560px; background: #fff; }
.kids-hero .hero-media { background: #fff; }
.kids-hero .hero-media img {
  object-fit: contain;
  object-position: center;
  padding: 12px 3vw;
}
.hero-content { padding: 42px 0; }
.hero-copy {
  max-width: 480px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.92);
}
.hero-copy h1 { font-size: clamp(2.8rem, 5.5vw, 5rem); }

.carousel { min-height: 540px; }
.carousel-copy { padding: clamp(34px, 6vw, 72px); }
.carousel-image { background: #fff; }
.carousel-image img { padding: 22px; object-fit: contain; }
.carousel-controls { right: 20px; bottom: 20px; }

.category-grid,
.character-grid,
.product-grid { gap: 14px; }
.product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.category-card,
.character-card { min-height: 380px; }
.character-card img {
  object-fit: contain;
  padding: 14px 14px 80px;
  background: #fff;
}
.card-caption { padding: 16px; background: #fff; }
.card-caption p { font-size: 0.72rem; }

.page-hero { padding: clamp(44px, 6vw, 74px) 0; }
.page-hero-inner { gap: 24px; }
.breadcrumb { margin-bottom: 16px; }

.product-card { border: 1px solid var(--line); box-shadow: none; }
.product-image-wrap {
  aspect-ratio: 4 / 3;
  background: #fff;
}
.product-image-wrap img {
  object-fit: contain;
  padding: 9px;
  background: #fff;
}
.product-copy { padding: 14px; }
.product-meta { margin-bottom: 5px; gap: 10px; }
.product-meta h3 { font-size: 0.78rem; line-height: 1.3; }
.price { font-size: 0.78rem; }
.product-subtitle { min-height: 34px; margin-bottom: 12px; font-size: 0.7rem; }
.badge { top: 9px; left: 9px; font-size: 0.55rem; }
.product-actions { gap: 6px; }

.shop-type-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 0 34px;
  border: 1px solid var(--ink);
  background: #fff;
}
.shop-type-nav a {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  padding: 15px 18px;
  border-right: 1px solid var(--ink);
  background: #fff;
  gap: 12px;
}
.shop-type-nav a:last-child { border-right: 0; }
.shop-type-nav a:hover,
.shop-type-nav a:focus-visible { background: #f4f4f2; }
.shop-type-nav span { color: var(--ink-soft); font-size: 0.58rem; letter-spacing: 0.14em; }
.shop-type-nav strong { font-family: var(--serif); font-size: 1.15rem; font-weight: 500; }

.character-stock { padding: 38px 0 10px; border-top: 1px solid var(--ink); }
.character-stock:first-of-type { border-top: 0; }
.character-stock-heading,
.collection-line-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}
.character-stock-heading { margin-bottom: 24px; }
.character-stock-heading h2 { margin-bottom: 0; }
.collection-lines { display: grid; gap: 28px; }
.collection-line-row { padding-top: 22px; border-top: 1px solid var(--line); }
.collection-line-heading { margin-bottom: 16px; }
.collection-line-heading h3 { margin-bottom: 0; font-size: 1.55rem; }
.collection-line-heading > p { margin: 0; color: var(--ink-soft); font-size: 0.78rem; text-align: right; }
.collection-product-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.coming-product { background: #fff; }
.coming-product-art {
  display: grid;
  aspect-ratio: 4 / 3;
  place-content: center;
  border-bottom: 1px solid var(--line);
  background: #fff;
  text-align: center;
  gap: 7px;
}
.coming-product-art span { font-family: var(--serif); font-size: 2rem; }
.coming-product-art strong { font-size: 0.63rem; letter-spacing: 0.18em; text-transform: uppercase; }
.disabled-button { cursor: default; opacity: 0.55; pointer-events: none; }

.category-nav-wrap { padding-top: 30px; }
.character-shortcuts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 12px;
  gap: 12px;
}
.character-shortcuts a {
  display: grid;
  grid-template-columns: 86px 1fr;
  align-items: center;
  min-height: 92px;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: #fff;
}
.character-shortcuts img { width: 86px; height: 92px; object-fit: contain; background: #fff; }
.character-shortcuts span { display: grid; padding: 12px; gap: 2px; }
.character-shortcuts strong { font-family: var(--serif); font-size: 1.15rem; font-weight: 500; }
.character-shortcuts small { color: var(--ink-soft); font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.1em; }
.character-category { border-top: 1px solid var(--ink); }
.accessory-coming {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding: 16px 18px;
  border: 1px dashed var(--ink);
  background: #fff;
}
.accessory-coming span { font-size: 0.62rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }

.character-hero { min-height: 560px; }
.character-hero-copy { padding: clamp(36px, 5vw, 68px); }
.character-hero-art { min-height: 560px; background: #fff; }
.character-hero-art img { max-height: 620px; object-fit: contain; padding: 14px; }
.story-grid { background: #fff; }
.story-image { min-height: 430px; background: #fff; }
.story-image img { object-fit: contain; padding: 10px; background: #fff; }
.story-copy { padding: clamp(28px, 4vw, 48px); }
.launch-lines { margin-top: 22px; }

.product-detail { padding: 38px 0 68px; gap: clamp(28px, 5vw, 64px); }
.product-gallery-main { background: #fff; }
.product-gallery-main img { object-fit: contain; background: #fff; }
.image-note { margin: 9px 0 0; color: var(--ink-soft); font-size: 0.67rem; }
.product-info-price { font-size: 1.35rem; font-weight: 800; }
.colour-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.colour-btn {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 700;
  gap: 8px;
}
.colour-btn.active { border-color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.colour-swatch { width: 15px; height: 15px; border: 1px solid var(--ink); border-radius: 50%; background: #111; }
.colour-swatch.bone { background: #e8e0cf; }
.colour-swatch.grey { background: #777; }
.payments-pending { background: #e9e9e6; color: #666; border-color: #bdbdb8; cursor: not-allowed; }
.setup-note { background: #fff; }

.site-footer {
  border-top: 1px solid var(--ink);
  background: #fff;
  color: var(--ink);
}
.footer-grid { padding: 46px 0; gap: 30px; }
.footer-brand p,
.footer-column a,
.footer-bottom { color: var(--ink-soft); }
.footer-column a:hover,
.footer-column a:focus-visible { color: var(--ink); }
.footer-bottom { padding: 17px 0 24px; border-top: 1px solid var(--line); }

@media (max-width: 1000px) {
  .product-grid,
  .collection-product-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .carousel { min-height: 620px; }
}

@media (max-width: 860px) {
  .header-main { min-height: 60px; width: min(100% - 28px, var(--max)); }
  .brand-lockup img { max-width: 175px; max-height: 36px; }
  .carousel { min-height: 650px; }
  .carousel-copy { padding: 32px 26px 20px; }
  .carousel-image { min-height: 330px; }
  .path-card { min-height: 410px; }
  .kids-hero { min-height: 610px; }
  .character-hero-art { min-height: 430px; }
  .story-image { min-height: 360px; }
  .shop-type-nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .shop-type-nav a:nth-child(2) { border-right: 0; }
  .shop-type-nav a:nth-child(-n+2) { border-bottom: 1px solid var(--ink); }
  .character-shortcuts { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  html { font-size: 13px; }
  .announcement { font-size: 0.55rem; }
  .page-shell,
  .hero-content,
  .footer-grid,
  .footer-bottom { width: min(100% - 24px, var(--max)); }
  .landing { padding-top: 22px; }
  .path-card { min-height: 370px; }
  .path-card img { padding: 8px; }
  .kids-hero { min-height: 520px; }
  .kids-hero .hero-media img { padding: 4px; }
  .hero-content { align-items: flex-end; padding-bottom: 18px; }
  .hero-copy { padding: 20px; }
  .hero-copy h1 { font-size: 2.65rem; }
  .category-card,
  .character-card { min-height: 350px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
  .collection-product-row {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(220px, 78vw);
    overflow-x: auto;
    padding-bottom: 9px;
    scroll-snap-type: x mandatory;
  }
  .collection-product-row > * { scroll-snap-align: start; }
  .collection-line-heading { align-items: flex-start; flex-direction: column; gap: 3px; }
  .collection-line-heading > p { text-align: left; }
  .shop-type-nav a { min-height: 58px; padding: 12px; }
  .shop-type-nav strong { font-size: 1rem; }
  .character-shortcuts a { grid-template-columns: 72px 1fr; min-height: 78px; }
  .character-shortcuts img { width: 72px; height: 78px; }
  .product-copy { padding: 11px; }
  .product-subtitle { display: none; }
  .product-actions { grid-template-columns: 1fr; }
  .product-actions .btn-outline { display: none; }
  .character-hero { min-height: auto; }
  .character-hero-copy { padding: 40px 20px; }
  .character-hero-art { min-height: 390px; }
  .story-image { min-height: 300px; }
  .footer-grid { padding: 36px 0; }
}


/* KIDS HOME TIGHTENING */
#kids-shop { padding-bottom: 18px; }
#kids-shop + .section { padding-top: 26px; }


/* MOBILE HERO REFRAME */
@media (max-width: 620px) {
  .kids-hero {
    display: flex;
    min-height: 0;
    flex-direction: column;
  }
  .kids-hero .hero-media {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 3 / 2;
  }
  .kids-hero .hero-media img {
    width: 100%;
    height: 100%;
    padding: 0;
    object-fit: contain;
  }
  .kids-hero .hero-content {
    width: min(100% - 24px, var(--max));
    min-height: 0;
    margin: -28px auto 0;
    padding: 0 0 18px;
  }
  .kids-hero .hero-copy {
    position: relative;
    width: 100%;
    max-width: none;
  }
}


/* CHARACTER SHOP CLARITY */
.character-return {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.character-return a:first-child { text-decoration: underline; text-underline-offset: 4px; }
.collection-product-row .accessory-product-card {
  margin-left: 13px;
  box-shadow: -14px 0 0 -13px var(--ink);
}
.collection-product-row .accessory-product-card::before {
  content: "Character extra";
  position: absolute;
  z-index: 3;
  top: 10px;
  left: 10px;
  padding: 5px 7px;
  background: #fff;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
@media (max-width: 620px) {
  .character-return { font-size: .62rem; gap: 12px; }
  .collection-product-row .accessory-product-card { margin-left: 18px; }
}


/* Final spacing and content polish */
.adult-audience-section { padding: clamp(38px, 5vw, 58px) 0; }
.adult-audience-section + .section { padding-top: clamp(48px, 6vw, 76px); }
.carousel { min-height: min(620px, calc(100vh - 130px)); }
.carousel-copy { padding: clamp(36px, 5vw, 72px); }
.page-hero { padding: clamp(52px, 7vw, 88px) 0; }
.compact-hero { padding: clamp(40px, 5vw, 64px) 0; }
.compact-hero h1 { font-size: clamp(2.8rem, 5vw, 5.2rem); }
.compact-content { padding: clamp(40px, 5vw, 62px) 0; }
.prose h2 { margin-top: 34px; }
.contact-grid { display:grid; grid-template-columns:minmax(260px,.72fr) minmax(360px,1.28fr); border:1px solid var(--ink); background:#fff; }
.contact-details { padding: clamp(26px, 4vw, 46px); }
.contact-details h2 { margin-bottom:12px; font-family:var(--sans); font-size:clamp(1.05rem,2vw,1.5rem); font-weight:800; letter-spacing:-.02em; overflow-wrap:anywhere; }
.contact-form { padding: clamp(26px, 4vw, 46px); border-left:1px solid var(--ink); }
.contact-form .field { margin-bottom:16px; }
.contact-form textarea { min-height:120px; }
.kids-hero { min-height:min(650px, calc(100vh - 130px)); }
.kids-hero + .section { padding:clamp(44px,5vw,64px) 0; }
#kids-shop.section { padding:clamp(32px,4vw,48px) 0; }
.character-stock { padding:26px 0 6px; }
.character-stock-heading { margin-bottom:18px; }
.collection-lines { gap:22px; }
.collection-line-row { padding-top:18px; }
.character-hero { min-height:590px; }
.character-hero-copy { padding:clamp(36px,5vw,72px); }
.character-hero-art { min-height:590px; }
.character-hero + .section { padding:clamp(42px,5vw,64px) 0; }
[id^="shop-"].section { padding:clamp(38px,5vw,58px) 0; }
.character-category.section-compact { padding:clamp(32px,4vw,48px) 0; }
.category-nav-wrap { padding-top:22px; }
@media (max-width:860px) {
  .contact-grid { grid-template-columns:1fr; }
  .contact-form { border-left:0; border-top:1px solid var(--ink); }
  .kids-hero { min-height:560px; }
}

.path-card.adult-path img { object-position:50% 50%; transform:scale(1.12); }
.path-card.adult-path:hover img,
.path-card.adult-path:focus-visible img { transform:scale(1.155); }
.landing-intro { margin-bottom:26px; }


/* Match the shop frames to the supplied 3:2 product boards. */
.product-card:not(.accessory-product-card) .product-image-wrap {
  aspect-ratio: 3 / 2;
}
.product-card:not(.accessory-product-card) .product-image-wrap img {
  padding: 0;
}
.accessory-product-card .product-image-wrap {
  aspect-ratio: 4 / 3;
}
.product-gallery-main {
  aspect-ratio: 3 / 2;
}
@media (max-width: 620px) {
  .product-card:not(.accessory-product-card) .product-image-wrap {
    aspect-ratio: 4 / 3;
  }
}


/* Uniform compact rhythm across the kids shop. */
#characters.section {
  padding-bottom: clamp(20px, 2.8vw, 32px);
}
#kids-shop.section {
  padding: clamp(12px, 1.8vw, 20px) 0 clamp(10px, 1.4vw, 16px);
}
#kids-shop .shop-type-nav {
  margin-bottom: 0;
}
#kids-shop + .section {
  padding-top: clamp(18px, 2.4vw, 28px);
}
#kids-shop + .section > .character-stock:first-child {
  padding-top: 0;
}
.category-nav-wrap {
  padding-top: clamp(14px, 1.8vw, 20px);
}
.category-nav-wrap .shop-type-nav {
  margin-bottom: 14px;
}
.character-category.section-compact {
  padding: clamp(24px, 3vw, 36px) 0;
}
.character-hero + .section {
  padding: clamp(28px, 3.5vw, 42px) 0;
}
[id^="shop-"].section {
  padding: clamp(22px, 2.8vw, 34px) 0;
}
[id^="shop-"] .shop-type-nav {
  margin-bottom: 18px;
}
.character-stock {
  padding: clamp(18px, 2.3vw, 28px) 0 4px;
}
.character-stock-heading {
  margin-bottom: 14px;
}
.collection-lines {
  gap: 18px;
}
.collection-line-row {
  padding-top: 16px;
}
@media (max-width: 620px) {
  #characters.section {
    padding-bottom: 18px;
  }
  #kids-shop.section {
    padding: 8px 0 10px;
  }
  #kids-shop + .section {
    padding-top: 16px;
  }
  .character-category.section-compact,
  [id^="shop-"].section {
    padding: 22px 0;
  }
}

.kids-category-hero {
  padding: clamp(34px, 4.2vw, 52px) 0;
}
@media (max-width: 620px) {
  .kids-category-hero { padding: 28px 0; }
}

/* Keep horizontal product carousels inside the mobile page. */
@media (max-width: 620px) {
  .collection-lines {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    min-width: 0;
  }
  .collection-line-row {
    width: 100%;
    min-width: 0;
  }
  .collection-product-row {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
}


/* Final artwork, carousel and family-business content polish. */
.product-gallery-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 10px;
  border: 1px solid var(--ink);
}
.product-gallery-options button {
  min-height: 46px;
  border: 0;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.product-gallery-options button + button { border-left: 1px solid var(--ink); }
.product-gallery-options button.active,
.product-gallery-options button:hover,
.product-gallery-options button:focus-visible { background: var(--ink); color: var(--white); }
.product-gallery .image-note { margin: 10px 0 0; color: var(--ink-soft); font-size: .78rem; }

.carousel { padding-bottom: 70px; }
.carousel-slide { inset: 0 0 70px; }
.carousel-image { min-height: 0; }
.carousel-controls {
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  min-height: 70px;
  grid-template-columns: auto minmax(120px, 1fr) auto;
  align-items: center;
  padding: 0 clamp(18px, 3vw, 40px);
  border-top: 1px solid var(--ink);
  background: var(--white);
  gap: clamp(18px, 3vw, 38px);
}
.carousel-index { min-width: 62px; font-size: .68rem; font-weight: 900; letter-spacing: .14em; }
.carousel-progress { position: relative; display: block; height: 2px; overflow: hidden; background: #d9d7d2; }
.carousel-progress > span { position: absolute; inset: 0 auto 0 0; width: 25%; background: var(--ink); transition: width 300ms ease; }
.carousel-buttons { display: flex; }
.carousel-controls button { width: 48px; height: 48px; background: var(--white); font-size: 1rem; }
.carousel-controls button + button { border-left: 0; }

.about-hero,
.contact-hero,
.policy-hero { padding: clamp(28px, 3.4vw, 44px) 0; }
.brand-story-section,
.policy-content { padding: clamp(30px, 3.8vw, 48px) 0 clamp(42px, 5vw, 64px); }
.brand-story-copy { max-width: 900px; }
.brand-story-copy h2,
.policy-content .prose h2 { margin-top: 26px; }
.contact-section { padding: 24px 0 38px; }
.contact-grid { max-width: 1080px; margin: 0 auto; grid-template-columns: minmax(250px, .72fr) minmax(520px, 1.45fr); }
.contact-details,
.contact-form { padding: 22px 24px; }
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 12px 14px;
}
.contact-form .field { margin: 0; gap: 6px; }
.contact-form .field input { min-height: 42px; padding: 9px 11px; }
.contact-form .field textarea { min-height: 66px; padding: 9px 11px; }
.contact-form label span { color: var(--ink-soft); font-weight: 500; letter-spacing: 0; text-transform: none; }
.contact-submit { display: flex; grid-column: 1 / -1; align-items: center; gap: 14px; }
.contact-submit .btn { min-height: 42px; padding: 10px 20px; }
.contact-submit small { max-width: 360px; color: var(--ink-soft); font-size: .72rem; }
.policy-content .prose { max-width: 900px; }
.faq-list { max-width: 900px; border-top: 1px solid var(--ink); }
.faq-list details { border-bottom: 1px solid var(--ink); }
.faq-list summary { padding: 18px 0; cursor: pointer; font-family: var(--serif); font-size: clamp(1.1rem, 2vw, 1.45rem); }
.faq-list details p { max-width: 760px; padding: 0 0 20px; color: var(--ink-soft); }

@media (max-width: 860px) {
  .carousel { padding-bottom: 62px; }
  .carousel-slide { inset: 0 0 62px; }
  .carousel-controls { min-height: 62px; padding: 0 16px; gap: 14px; }
  .carousel-controls button { width: 42px; height: 42px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-message-field,
  .contact-submit { grid-column: 1; }
}
@media (max-width: 620px) {
  .carousel-index { min-width: 50px; font-size: .6rem; }
  .carousel-controls { grid-template-columns: auto minmax(50px, 1fr) auto; gap: 10px; }
  .contact-details,
  .contact-form { padding: 18px; }
  .contact-submit { align-items: flex-start; flex-direction: column; }
  .product-gallery-options button { min-height: 42px; font-size: .62rem; }
}

/* Keep the contact email readable on one line at desktop sizes. */
@media (min-width: 861px) {
  .contact-grid { grid-template-columns: minmax(330px, .85fr) minmax(520px, 1.45fr); }
  .contact-details h2 { font-size: clamp(1rem, 1.35vw, 1.12rem); white-space: nowrap; }
}
@media (max-width: 860px) {
  .contact-details h2 { font-size: 1.05rem; white-space: normal; }
}

/* Stack the contact columns before the email address becomes cramped. */
@media (min-width: 861px) and (max-width: 1000px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-message-field,
  .contact-submit { grid-column: 1; }
}


/* Limited launch: final compactness and product-image pass. */
.section { padding: clamp(38px, 4.6vw, 66px) 0; }
.section-compact { padding: clamp(28px, 3.8vw, 48px) 0; }
.page-hero { padding: clamp(42px, 5.8vw, 76px) 0; }
.page-hero h1 { font-size: clamp(2.7rem, 5.2vw, 5rem); }
.section-heading { margin-bottom: 24px; }
.category-nav-wrap { padding-top: 20px; }
.character-shortcuts { margin-bottom: 8px; }
.character-stock { padding: 24px 0 6px; }
.character-stock-heading { margin-bottom: 14px; }
.collection-lines { gap: 18px; }
.collection-line-row { padding-top: 16px; }
.collection-line-heading { margin-bottom: 12px; }
.collection-product-row { gap: 10px; }
.product-image-wrap { aspect-ratio: 3 / 2; background: var(--white); }
.product-copy { padding: 14px; }
.product-subtitle { min-height: 0; margin-bottom: 12px; }
.product-actions { margin-top: auto; }
.product-detail { padding: 34px 0 54px; gap: clamp(28px, 4.5vw, 58px); }
.product-gallery { top: 142px; }
.product-gallery-main { aspect-ratio: 3 / 2; background: var(--white); }
.product-info { padding-top: 8px; }
.product-info h1 { font-size: clamp(2.35rem, 4.2vw, 4.35rem); }
.product-info-price { margin-bottom: 18px; }
.field { margin: 16px 0; }
.product-gallery-options-four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.product-gallery-options-four button + button { border-left: 1px solid var(--ink); }
.character-hero { min-height: 560px; }
.character-hero-copy { padding: clamp(34px, 5.4vw, 74px); }
.story-image { min-height: 420px; }
.story-copy { padding: clamp(28px, 4vw, 52px); }
.kids-hero,
.carousel { min-height: min(640px, calc(100vh - 130px)); }
.footer-grid { padding: 44px 0; gap: 28px; }

@media (max-width: 860px) {
  .section { padding: 34px 0; }
  .page-hero { padding: 34px 0; }
  .product-detail { padding: 24px 0 40px; }
  .product-gallery { position: static; }
  .character-hero { min-height: 0; }
  .story-image { min-height: 340px; }
}
@media (max-width: 620px) {
  .section { padding: 28px 0; }
  .page-hero h1 { font-size: clamp(2.35rem, 12vw, 3.5rem); }
  .product-image-wrap,
  .product-gallery-main { aspect-ratio: 4 / 3; }
  .product-gallery-options-four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-gallery-options-four button:nth-child(3),
  .product-gallery-options-four button:nth-child(4) { border-top: 1px solid var(--ink); }
  .product-gallery-options-four button:nth-child(3) { border-left: 0; }
  .kids-hero,
  .carousel { min-height: 520px; }
  .footer-grid { padding: 34px 0; gap: 22px; }
}


/* Final opening-card fit and launch polish. */
.path-card.kids-path img {
  object-fit: contain;
  object-position: center 34%;
  background: #f6f1e6;
}
.path-card.kids-path::after { inset: 28% 0 0; }
@media (max-width: 860px) {
  .path-grid { min-height: 0; }
  .path-card { min-height: 500px; }
  .path-card.kids-path img { object-position: center 28%; }
}


/* CRYPT FINAL DENSITY PASS — 2026-07-26 */
.section { padding: clamp(30px, 3.4vw, 46px) 0; }
.section-compact { padding: clamp(22px, 2.8vw, 36px) 0; }
.page-hero { padding: clamp(30px, 3.8vw, 44px) 0; }
.page-hero-inner { gap: 18px; }
.page-hero .eyebrow,
.section-heading .eyebrow { margin-bottom: 9px; }
.section-heading { margin-bottom: 18px; }
.adult-audience-section { padding: clamp(28px, 3.2vw, 42px) 0; }
.adult-audience-section + .section { padding-top: clamp(28px, 3.4vw, 44px); }
.category-nav-wrap { padding-top: 14px; }
.character-shortcuts { margin-bottom: 4px; }
.kids-hero + .section,
.character-hero + .section,
[id^="shop-"].section { padding: clamp(28px, 3.4vw, 44px) 0; }
#characters.section,
#kids-shop.section,
.character-category.section-compact { padding: clamp(24px, 3vw, 38px) 0; }
.character-stock { padding: 18px 0 4px; }
.character-stock-heading { margin-bottom: 12px; }
.collection-lines { gap: 14px; }
.collection-line-row { padding-top: 14px; }
.collection-line-heading { margin-bottom: 10px; }
.brand-story-section,
.policy-content { padding: clamp(26px, 3vw, 40px) 0 clamp(34px, 4vw, 52px); }
.contact-section { padding: 20px 0 32px; }
.footer-grid { padding: 34px 0; gap: 22px; }
@media (max-width: 860px) {
  .section { padding: 28px 0; }
  .section-compact { padding: 22px 0; }
  .page-hero { padding: 28px 0; }
  .adult-audience-section,
  .adult-audience-section + .section,
  .kids-hero + .section,
  .character-hero + .section,
  [id^="shop-"].section { padding: 26px 0; }
}
@media (max-width: 620px) {
  .section { padding: 24px 0; }
  .page-hero { padding: 24px 0; }
  .section-heading { margin-bottom: 15px; }
  .footer-grid { padding: 28px 0; gap: 18px; }
}

/* Version 7 accounts, member savings and data-driven shop states. */
.account-link {
  padding: 10px 6px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}
.account-link:hover { text-decoration: underline; }
.account-auth-grid,
.account-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 4vw, 54px);
  align-items: start;
}
.account-card {
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid var(--ink);
  background: var(--white);
}
.account-card h2 { margin-bottom: 16px; }
.account-name-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.account-card-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}
.account-card-heading button { padding: 0; border: 0; background: transparent; cursor: pointer; }
.account-email { margin-top: -7px; color: var(--ink-soft); }
.account-message { min-height: 1.4em; margin: 12px 0 0; font-size: 0.78rem; font-weight: 700; }
.account-message.error { color: #9f1d1d; }
.account-orders { border-top: 1px solid var(--line); }
.account-order {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.account-order strong,
.account-order small,
.account-order span { display: block; }
.account-order div:last-child { text-align: right; }
.account-order small,
.account-order span { margin-top: 3px; color: var(--ink-soft); font-size: 0.72rem; }
.member-active,
.member-invite {
  margin: 14px 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: var(--paper-deep);
  font-size: 0.76rem;
  font-weight: 700;
}
.member-saving { color: #245d3d; }
.basket-checkout-form { margin-top: 18px; }
.basket-checkout-form .field { margin-bottom: 12px; }
.basket-checkout-form input { min-height: 44px; }
.product-actions button:disabled,
.detail-actions button:disabled,
.size-btn:disabled { cursor: not-allowed; opacity: 0.42; }
@media (max-width: 860px) {
  .account-auth-grid,
  .account-layout { grid-template-columns: 1fr; }
  .account-link { display: none; }
}
@media (max-width: 620px) {
  .account-name-grid { grid-template-columns: 1fr; gap: 0; }
  .account-card { padding: 20px; }
}

/* Version 7 live opening-page correction — 2026-08-12.
   Keep the artwork clearly visible while retaining readable card labels. */
.path-card::after {
  inset: 52% 0 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0.22) 20%,
    rgba(0, 0, 0, 0.9) 62%,
    rgba(0, 0, 0, 0.96)
  );
}

.path-card.adult-path img {
  object-position: center 44%;
  transform: scale(1.04);
}

.path-card.adult-path:hover img,
.path-card.adult-path:focus-visible img {
  transform: scale(1.065);
}

.path-card.kids-path img {
  object-position: center 42%;
}

@media (max-width: 860px) {
  .path-card::after { inset: 48% 0 0; }
  .path-card.adult-path img { object-position: center 40%; }
  .path-card.kids-path img { object-position: center 36%; }
}
