.page-store {
  overflow-x: hidden;
}

.page-store .container {
  width: min(1180px, calc(100% - 56px));
}

.page-store h1,
.page-store h2 {
  text-wrap: balance;
}

.page-store .nav-logo,
.page-store .nav-burger {
  position: relative;
  z-index: 2;
}

.page-store .nav-burger {
  margin-left: auto;
}

.page-store .nav-links {
  z-index: 1;
}

.store-hero {
  min-height: min(860px, 100svh);
  padding: 116px 0 64px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 20%, rgba(124, 58, 237, 0.24), transparent 34%),
    radial-gradient(circle at 12% 84%, rgba(232, 184, 75, 0.1), transparent 31%),
    var(--bg);
  border-bottom: 1px solid var(--border);
}

.store-hero::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  right: -300px;
  top: -240px;
  border: 1px solid rgba(167, 139, 250, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(167, 139, 250, 0.025), 0 0 0 160px rgba(167, 139, 250, 0.018);
}

.store-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(430px, .85fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.store-hero-copy {
  max-width: 630px;
}

.store-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 7vw, 6.7rem);
  font-weight: 900;
  line-height: .93;
  letter-spacing: -.045em;
  max-width: 9ch;
  margin-bottom: 28px;
}

.store-hero-copy > p {
  max-width: 580px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.8;
}

.store-hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.store-link {
  color: var(--white);
  font-weight: 700;
  font-size: .9rem;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid rgba(255, 255, 255, .25);
  padding-bottom: 5px;
  transition: color var(--t), border-color var(--t);
}

.store-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.store-hero-art {
  height: 560px;
  position: relative;
  perspective: 1200px;
}

.store-cover {
  position: absolute;
  margin: 0;
  width: min(330px, 63%);
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-card-2);
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 32px 80px rgba(0, 0, 0, .5);
  transition: transform .5s ease;
}

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

.store-cover--one {
  left: 3%;
  top: 18%;
  transform: rotate(-8deg) translateZ(-30px);
}

.store-cover--two {
  right: 2%;
  top: 2%;
  transform: rotate(7deg) translateZ(-80px);
}

.store-cover--three {
  right: 9%;
  bottom: 0;
  transform: rotate(2deg) translateZ(40px);
}

.store-hero-art:hover .store-cover--one { transform: rotate(-10deg) translate(-8px, -5px); }
.store-hero-art:hover .store-cover--two { transform: rotate(9deg) translate(8px, -9px); }
.store-hero-art:hover .store-cover--three { transform: rotate(1deg) translateY(-12px); }

.store-manifesto {
  padding: 112px 0;
  border-bottom: 1px solid var(--border-soft);
}

.store-manifesto-grid {
  display: grid;
  grid-template-columns: .7fr 1.35fr .85fr;
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
}

.store-manifesto h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.08;
  margin-bottom: 22px;
}

.store-manifesto p {
  color: var(--muted);
  line-height: 1.8;
  max-width: 620px;
}

.store-facts {
  margin: 0;
  border-top: 1px solid var(--border);
}

.store-facts > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 0;
  border-bottom: 1px solid var(--border-soft);
}

.store-facts dt {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.65rem;
  font-weight: 700;
}

.store-facts dd {
  color: var(--muted);
  font-size: .76rem;
  text-align: right;
  margin: 0;
}

.store-catalog {
  padding-top: 112px;
}

.catalog-header {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 40px;
}

.catalog-header .heading {
  max-width: 700px;
  margin-bottom: 0;
}

.catalog-header > p {
  color: var(--muted);
  line-height: 1.75;
  padding-bottom: 8px;
}

.catalog-toolbar {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.catalog-filter {
  appearance: none;
  border: 1px solid var(--border-soft);
  color: var(--muted);
  background: transparent;
  border-radius: 999px;
  padding: 9px 15px;
  font: 600 .76rem var(--font-body);
  cursor: pointer;
  transition: color var(--t), background var(--t), border-color var(--t), transform var(--t);
}

.catalog-filter:hover,
.catalog-filter:focus-visible {
  color: var(--white);
  border-color: var(--border);
}

.catalog-filter.is-active {
  color: #080b14;
  background: var(--gold);
  border-color: var(--gold);
}

.catalog-filter:active { transform: scale(.97); }

.catalog-count {
  color: var(--muted);
  font-size: .76rem;
  margin: 22px 0 28px;
}

.catalog-count span { color: var(--white); font-weight: 700; }

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

.catalog-item {
  min-width: 0;
}

.catalog-item[hidden] { display: none; }

.catalog-media {
  display: block;
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--bg-card-2);
  border: 1px solid var(--border-soft);
}

.catalog-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.2, .7, .2, 1), filter .45s ease;
}

.catalog-item:hover .catalog-cover {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.03);
}

.catalog-format {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(8, 11, 20, .78);
  border: 1px solid rgba(255, 255, 255, .13);
  backdrop-filter: blur(8px);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .05em;
}

.catalog-copy {
  padding: 20px 2px 0;
}

.catalog-meta,
.related article > p {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .64rem;
  font-weight: 700;
  margin-bottom: 9px;
}

.catalog-copy h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1.2;
  margin-bottom: 10px;
}

.catalog-copy h3 a,
.related h3 a { color: var(--white); }

.catalog-copy > p:not(.catalog-meta) {
  color: var(--muted);
  font-size: .83rem;
  line-height: 1.65;
  min-height: 4.9em;
}

.catalog-bottom {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border-soft);
  margin-top: 18px;
  padding-top: 15px;
}

.text-arrow {
  color: var(--gold);
  font-size: .78rem;
  font-weight: 700;
  white-space: nowrap;
}

.text-arrow:hover { color: var(--gold-light); }

.store-placeholder {
  color: var(--gold-light);
  background:
    linear-gradient(145deg, rgba(232, 184, 75, .08), rgba(124, 58, 237, .14)),
    #0d1324;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.store-placeholder svg {
  width: 92%;
  height: 92%;
}

.custom-arrangement {
  padding: 0 0 120px;
  background: var(--bg-card);
}

.custom-arrangement-grid {
  min-height: 650px;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  background:
    radial-gradient(circle at 15% 35%, rgba(124, 58, 237, .32), transparent 45%),
    #090d19;
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
}

.custom-score {
  min-height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--violet-light);
}

.custom-score::after {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(232, 184, 75, .22);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(232, 184, 75, .025), 0 0 0 120px rgba(232, 184, 75, .015);
}

.custom-score span {
  font-family: serif;
  font-size: 16rem;
  line-height: 1;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 30px 70px rgba(124, 58, 237, .5));
}

.custom-score i {
  position: absolute;
  left: 5%;
  right: 5%;
  height: 1px;
  background: rgba(255, 255, 255, .08);
}

.custom-score i:nth-of-type(1) { top: 38%; }
.custom-score i:nth-of-type(2) { top: 44%; }
.custom-score i:nth-of-type(3) { top: 50%; }
.custom-score i:nth-of-type(4) { top: 56%; }
.custom-score i:nth-of-type(5) { top: 62%; }

.custom-copy {
  padding: clamp(48px, 5vw, 72px);
  border-left: 1px solid var(--border-soft);
  align-self: center;
}

.custom-copy h2,
.product-story h2,
.product-sample h2,
.product-custom-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 4rem);
  line-height: 1.08;
  margin-bottom: 24px;
}

.custom-copy h2 {
  font-size: clamp(2.25rem, 3.3vw, 3.4rem);
}

.custom-copy > p {
  color: var(--muted);
  line-height: 1.8;
  max-width: 650px;
}

.custom-steps {
  list-style: none;
  padding: 0;
  margin: 26px 0;
  border-top: 1px solid var(--border-soft);
}

.custom-steps li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
}

.custom-steps li > span {
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
}

.custom-steps strong,
.custom-steps small { display: block; }
.custom-steps strong { font-size: .9rem; margin-bottom: 3px; }
.custom-steps small { color: var(--muted); line-height: 1.5; }

/* Product pages */
.product-hero {
  padding: 104px 0 90px;
  background:
    radial-gradient(circle at 85% 20%, rgba(124, 58, 237, .18), transparent 32%),
    var(--bg);
  border-bottom: 1px solid var(--border-soft);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: .74rem;
  margin: 20px 0 42px;
}

.breadcrumb a { color: var(--gold); }

.product-hero-grid {
  display: grid;
  grid-template-columns: minmax(360px, .9fr) minmax(0, 1.1fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
}

.product-art {
  margin: 0;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  box-shadow: 0 32px 80px rgba(0, 0, 0, .46);
}

.product-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-eyebrow {
  color: var(--gold);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.product-intro h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.7rem);
  line-height: .97;
  letter-spacing: -.04em;
  margin-bottom: 16px;
}

.product-subtitle {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 22px;
}

.product-lead {
  color: var(--muted);
  line-height: 1.8;
  max-width: 630px;
}

.product-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 30px 0;
  padding: 22px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.product-specs > div + div {
  border-left: 1px solid var(--border-soft);
  padding-left: 22px;
}

.product-specs dt {
  color: var(--muted);
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .11em;
  margin-bottom: 7px;
}

.product-specs dd {
  margin: 0;
  font-size: .82rem;
  font-weight: 700;
}

.product-consult {
  display: flex;
  align-items: center;
  margin-top: 30px;
}

.product-note {
  color: var(--muted);
  font-size: .68rem;
  line-height: 1.55;
  max-width: 580px;
  margin-top: 16px;
}

.product-story {
  padding: 110px 0;
}

.product-story-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(50px, 8vw, 120px);
}

.product-prose {
  padding-top: 34px;
}

.product-prose p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 22px;
}

.product-includes {
  padding-top: 108px;
}

.includes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 48px;
  border-top: 1px solid var(--border);
}

.includes-grid article {
  padding: 32px 34px 12px 0;
  position: relative;
}

.includes-grid article + article {
  border-left: 1px solid var(--border-soft);
  padding-left: 34px;
}

.includes-grid svg {
  width: 38px;
  height: 38px;
  color: var(--gold);
  margin-bottom: 46px;
}

.includes-grid article > span {
  position: absolute;
  top: 34px;
  right: 28px;
  color: var(--muted);
  font-size: .65rem;
  letter-spacing: .12em;
}

.includes-grid h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.25;
  margin-bottom: 12px;
}

.includes-grid p {
  color: var(--muted);
  font-size: .8rem;
  line-height: 1.65;
}

.product-sample {
  padding: 110px 0;
}

.product-sample-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.product-sample-grid > div:first-child > p {
  color: var(--muted);
  line-height: 1.75;
}

.sample-request,
.audio-sample {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.sample-request > div,
.audio-sample > div {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.sample-request svg,
.audio-sample svg {
  width: 34px;
  height: 34px;
  color: var(--violet-light);
}

.sample-request strong,
.sample-request small,
.audio-sample strong,
.audio-sample small { display: block; }
.sample-request small,
.audio-sample small { color: var(--muted); margin-top: 4px; }
.sample-request > p { color: var(--muted); line-height: 1.7; font-size: .86rem; margin-bottom: 22px; max-width: 560px; }
.audio-sample audio { width: 100%; accent-color: var(--gold); }

.video-frame {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.video-frame iframe { width: 100%; height: 100%; border: 0; }

.product-custom-cta {
  padding: 90px 0;
  background:
    radial-gradient(circle at 18% 30%, rgba(124, 58, 237, .28), transparent 35%),
    #0b1020;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.product-custom-cta .container {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
}

.product-custom-cta h2 { max-width: 760px; margin-bottom: 0; }

.related { padding-top: 106px; }
.related .heading { margin-bottom: 48px; }

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.related-media {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-soft);
  margin-bottom: 18px;
}

.related-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.related article:hover .related-cover { transform: scale(1.035); }
.related h3 { font-family: var(--font-display); font-size: 1.45rem; margin-bottom: 12px; }

@media (max-width: 980px) {
  .store-hero { min-height: auto; }
  .store-hero-inner { grid-template-columns: 1fr 380px; gap: 30px; }
  .store-hero-art { height: 460px; }
  .store-manifesto-grid { grid-template-columns: 1fr 1.5fr; }
  .store-manifesto-grid > .label { grid-column: 1 / -1; }
  .catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .custom-arrangement-grid { grid-template-columns: .7fr 1.3fr; }
  .product-hero-grid { grid-template-columns: minmax(310px, .82fr) 1.18fr; gap: 48px; }
}

@media (max-width: 760px) {
  .page-store .container { width: min(100% - 36px, 1180px); }
  .store-hero { padding: 110px 0 62px; }
  .store-hero-inner { grid-template-columns: 1fr; }
  .store-hero h1 { font-size: clamp(3.35rem, 15vw, 5rem); }
  .store-hero-art { height: 430px; margin-top: 16px; }
  .store-cover { width: 58%; }
  .store-manifesto { padding: 78px 0; }
  .store-manifesto-grid,
  .catalog-header,
  .custom-arrangement-grid,
  .product-hero-grid,
  .product-story-grid,
  .product-sample-grid { grid-template-columns: 1fr; }
  .store-manifesto-grid { gap: 28px; }
  .store-catalog { padding-top: 78px; }
  .catalog-header { gap: 18px; }
  .catalog-toolbar { flex-wrap: nowrap; overflow-x: auto; margin-right: -18px; padding-right: 18px; scrollbar-width: none; }
  .catalog-toolbar::-webkit-scrollbar { display: none; }
  .catalog-filter { flex: 0 0 auto; }
  .catalog-grid { gap: 44px 16px; }
  .catalog-copy h3 { font-size: 1.4rem; }
  .catalog-bottom { align-items: center; }
  .custom-arrangement { padding-bottom: 78px; }
  .custom-score { min-height: 350px; }
  .custom-score span { font-size: 11rem; }
  .custom-copy { border-left: 0; border-top: 1px solid var(--border-soft); }
  .product-hero { padding: 94px 0 72px; }
  .breadcrumb { margin-bottom: 30px; }
  .product-art { max-width: 560px; margin-inline: auto; }
  .product-intro h1 { font-size: clamp(3rem, 13vw, 4.7rem); }
  .product-story,
  .product-sample { padding: 78px 0; }
  .product-prose { padding-top: 0; }
  .includes-grid { grid-template-columns: 1fr; }
  .includes-grid article + article { border-left: 0; border-top: 1px solid var(--border-soft); padding-left: 0; }
  .product-custom-cta .container { align-items: flex-start; flex-direction: column; }
  .related-grid { grid-template-columns: repeat(3, minmax(230px, 1fr)); overflow-x: auto; padding-bottom: 12px; scroll-snap-type: x mandatory; }
  .related article { scroll-snap-align: start; }
}

@media (max-width: 540px) {
  .store-hero-actions { align-items: flex-start; flex-direction: column; }
  .store-hero-art { height: 350px; }
  .store-cover { width: 60%; }
  .store-cover--one { left: 0; }
  .store-cover--two { right: 0; }
  .store-cover--three { right: 10%; }
  .store-manifesto-grid { grid-template-columns: 1fr; }
  .store-facts { margin-top: 12px; }
  .catalog-grid { grid-template-columns: 1fr; }
  .catalog-copy > p:not(.catalog-meta) { min-height: 0; }
  .catalog-bottom { align-items: center; }
  .custom-copy { padding: 44px 24px; }
  .product-specs { grid-template-columns: 1fr; gap: 14px; }
  .product-specs > div + div { border-left: 0; padding-left: 0; padding-top: 14px; border-top: 1px solid var(--border-soft); }
  .product-consult { align-items: flex-start; flex-direction: column; }
  .product-consult .btn { width: 100%; justify-content: center; }
  .sample-request,
  .audio-sample { padding: 21px; }
}

@media (prefers-reduced-motion: reduce) {
  .store-cover,
  .catalog-cover,
  .related-cover { transition: none; }
}
