:root {
    --ink: #111;
    --muted: #6a6a6a;
    --line: #e6e6e6;
    --bg: #fff;
    --white: #fff;
    --accent: #b50909;
    --max: 1440px;
}

* { box-sizing: border-box; }
html, body { margin: 0; background: #fff; }
body {
    font-family: "Instrument Sans", sans-serif;
    color: var(--ink);
    background: #fff;
    line-height: 1.55;
}
img { max-width: 100%; display: block; }
.skip-link {
    position: absolute;
    left: 16px;
    top: -48px;
    z-index: 100;
    padding: 8px 14px;
    background: var(--ink);
    color: #fff;
    font-size: 14px;
}
.skip-link:focus { top: 12px; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 {
    font-family: "Instrument Serif", serif;
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: #fff;
    border-bottom: 1px solid var(--line);
}
.header-bar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 72px;
    padding: 0 24px;
}
.header-left, .header-right { display: flex; align-items: center; gap: 8px; }
.header-right { justify-content: flex-end; gap: 16px; }
.header-link {
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ink);
    text-decoration: none;
}
.header-link:hover, .header-link.is-active { text-decoration: underline; }
.logo img { height: 36px; width: auto; }
.icon-btn {
    width: 40px;
    height: 40px;
    border: 0;
    background: none;
    color: var(--ink);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.menu-toggle {
    flex-direction: column;
    gap: 5px;
}
.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
}
.cart-count {
    position: absolute;
    top: 4px;
    right: 2px;
    min-width: 16px;
    height: 16px;
    border-radius: 99px;
    background: var(--ink);
    color: #fff;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}
.search-drawer {
    display: none;
    padding: 0 24px 16px;
}
.search-drawer.is-open { display: block; }
.search-drawer input {
    width: 100%;
    border: 0;
    border-bottom: 1px solid var(--ink);
    font: inherit;
    padding: 12px 0;
    background: transparent;
}

.nav-drawer {
    position: fixed;
    inset: 0 auto 0 0;
    width: min(420px, 92vw);
    background: #fff;
    z-index: 50;
    padding: 28px 32px 48px;
    overflow: auto;
    box-shadow: 16px 0 40px rgba(0,0,0,.08);
}
.nav-drawer[hidden], .nav-mask[hidden] { display: none; }
.nav-mask {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.35);
    z-index: 45;
}
.nav-drawer nav { display: flex; flex-direction: column; gap: 8px; }
.nav-drawer a { font-size: 15px; }
.drawer-label {
    margin: 28px 0 8px;
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--muted);
}
.drawer-close {
    float: right;
    border: 0;
    background: none;
    font-size: 32px;
    cursor: pointer;
}

.kicker {
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: 12px;
    color: var(--muted);
    margin: 0 0 12px;
}
.text-link {
    display: inline-block;
    margin-right: 18px;
    border-bottom: 1px solid currentColor;
    padding-bottom: 2px;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: var(--ink);
    color: #fff;
    border: 0;
    padding: 16px 24px;
    font: inherit;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
}
.button:hover { background: #333; text-decoration: none; color: #fff; }
.checkout-lines { list-style: none; padding: 0; margin: 0 0 24px; }
.checkout-lines li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
}
.checkout-note { color: var(--muted); font-size: 14px; }
.checkout-pay { display: grid; gap: 12px; max-width: 360px; margin: 28px 0; }
.button-paypal { background: #003087; }
.button-paypal:hover { background: #001c55; }
.notice-error { color: var(--accent); }

.hero-slideshow { position: relative; background: #111; min-height: 88vh; }
.hero-slide { display: none; min-height: 88vh; position: relative; }
.hero-slide.is-active { display: block; }
.hero-slide img {
    width: 100%;
    height: 88vh;
    object-fit: cover;
    filter: brightness(.72);
}
.hero-copy {
    position: absolute;
    inset: auto 8% 14% 8%;
    color: #fff;
    max-width: 720px;
}
.hero-copy h1,
.hero-copy .hero-title { font-size: clamp(40px, 6vw, 84px); margin: 0 0 20px; }
.hero-copy .text-link { color: #fff; }
.hero-dots {
    position: absolute;
    right: 24px;
    bottom: 24px;
    display: flex;
    gap: 8px;
}
.hero-dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 0;
    background: rgba(255,255,255,.4);
    cursor: pointer;
}
.hero-dots button.is-active { background: #fff; }

.band, .section, .page-wrap { max-width: var(--max); margin: 0 auto; padding: 72px 24px; }
.center-line { text-align: center; max-width: 640px; margin: 0 auto; color: var(--muted); }
.section-title { text-align: center; font-size: clamp(32px, 4vw, 52px); margin: 0 0 40px; }
.lede { font-size: 20px; max-width: 640px; color: var(--muted); }
.product-journal-tags {
    justify-content: center;
    margin: -24px 0 40px;
}

.product-details {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: 24px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 96px 24px 72px;
    font-family: "Instrument Sans", sans-serif;
    color: #010101;
}
.product-details-col {
    grid-column: 7 / span 6;
    min-width: 0;
}
.product-details h2 {
    margin: 0;
    font-family: inherit;
    font-size: 16px;
    font-weight: 450;
    line-height: 1.4;
    letter-spacing: 0;
    color: rgb(1 1 1 / .8);
}
.product-details-col > p {
    margin: 24px 0 0;
    font-size: 16px;
    font-weight: 450;
    line-height: 1.4;
    color: #6a6a6a;
}
.stat-list {
    margin-top: 56px;
    border-top: 1px solid rgb(1 1 1 / .1);
}
.stat-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 32px 0;
    border-bottom: 1px solid rgb(1 1 1 / .1);
    color: inherit;
}
.stat-label {
    max-width: 13rem;
    flex: 0 1 13rem;
    font-size: 16px;
    font-weight: 450;
    line-height: 1.4;
    color: rgb(1 1 1 / .75);
}
.stat-value {
    font-family: "Instrument Serif", serif;
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -0.02em;
    text-align: right;
}

.collection-band {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    min-height: 70vh;
    background: var(--bg);
}
.collection-band:nth-of-type(even) { grid-template-columns: .8fr 1.2fr; }
.collection-band:nth-of-type(even) .collection-visual { order: 2; }
.collection-visual img {
    width: 100%;
    height: 100%;
    min-height: 70vh;
    object-fit: cover;
}
.collection-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 64px;
}
.collection-copy h2 { font-size: clamp(32px, 4vw, 56px); margin: 0 0 20px; }

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 28px;
}
.product-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
}
.product-card-image {
    background: var(--bg);
    aspect-ratio: 1;
    width: 100%;
}
.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.product-card-name { font-size: 14px; }
.product-card-price {
    color: var(--muted);
    font-style: normal;
    font-size: 13px;
}

.journal-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 820px;
    margin: 0 auto;
}
.journal-card {
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    column-gap: 16px;
    row-gap: 2px;
    align-items: start;
    text-align: left;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}
.journal-card:last-child { border-bottom: 0; }
.journal-card:hover { text-decoration: none; }
.journal-card:hover strong { text-decoration: underline; }
.journal-card-thumb {
    grid-column: 1;
    grid-row: 1 / span 3;
    width: 80px;
    height: 80px;
    background: var(--bg);
    overflow: hidden;
}
.journal-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.journal-card-meta,
.journal-card strong,
.journal-card em {
    grid-column: 2;
}
.journal-card-meta {
    color: var(--muted);
    font-style: normal;
    font-size: 13px;
}
.journal-card strong {
    font-size: 16px;
    line-height: 1.3;
    font-weight: 600;
}
.journal-card em {
    color: var(--muted);
    font-style: normal;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-stage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    background: var(--white);
}
.product-photo-col {
    display: flex;
    flex-direction: column;
    grid-column: 1;
    grid-row: 1;
    height: 0;
    min-height: 100%;
    background: var(--white);
}
.product-photo-col img {
    width: 100%;
    height: auto;
    display: block;
    background: var(--white);
    flex-shrink: 0;
}
.product-photo-pin {
    flex: 1 1 auto;
}
.product-photo-sticky {
    position: sticky;
    top: 73px;
    z-index: 1;
    background: var(--white);
}
.photo-buy {
    padding: 16px 24px 20px;
}
.photo-buy-sold {
    padding: 16px 24px 20px;
    margin: 0;
}
.product-main {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    background: #fff;
}
.gallery { display: none; }
.gallery-main {
    width: 100%;
    max-height: 82vh;
    object-fit: contain;
    margin: 0 auto;
}
.gallery-thumbs { display: flex; gap: 8px; justify-content: center; margin-top: 20px; flex-wrap: wrap; }
.thumb {
    width: 64px;
    padding: 0;
    border: 1px solid transparent;
    background: none;
    cursor: pointer;
}
.thumb.is-active { border-color: var(--ink); }
.buy-panel {
    background: #fff;
    padding: 64px 48px 80px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.buy-panel h1 { font-size: clamp(28px, 3vw, 44px); margin: 0 0 12px; }
.price { font-size: 22px; margin: 0 0 28px; }
.add-form { display: grid; gap: 12px; }
.qty input { width: 72px; padding: 8px; font: inherit; }
.qty-total {
    margin: 0;
    font-size: 22px;
}
.qty-available {
    margin: 0;
    font-size: 13px;
    color: var(--muted);
}
.tags { display: flex; flex-wrap: wrap; gap: 10px 16px; margin: 0; font-size: 13px; }
.tags .quiet { color: var(--muted); }
.buy-story {
    margin-top: 48px;
    padding-top: 36px;
    border-top: 1px solid var(--line);
}
.buy-story h2 {
    font-family: "Instrument Sans", sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 32px 0 12px;
}
.buy-story h2:first-child { margin-top: 0; }
.buy-story p {
    font-size: 16px;
    line-height: 1.55;
    margin: 0 0 16px;
}
.tag-group { margin-top: 28px; }
.tag-label {
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: 11px;
    color: var(--muted);
    margin: 0 0 10px;
}
.product-main .media-stack {
    max-width: none;
    margin: 0;
    padding: 8px 48px 48px;
}
.product-main .product-details {
    display: block;
    max-width: none;
    margin: 0;
    padding: 48px 48px 72px;
}
.product-main .product-details-col { grid-column: auto; }
.product-main .product-details h2 {
    font-family: "Instrument Serif", serif;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: inherit;
}
.product-main .section {
    max-width: none;
    padding: 56px 48px 72px;
}
.product-main .section-title {
    text-align: left;
    font-size: clamp(28px, 3vw, 40px);
}
.product-main .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 20px;
}
.product-journal .journal-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.product-journal .journal-card {
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    column-gap: 16px;
    row-gap: 2px;
    align-items: start;
    text-align: left;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    gap: 2px 16px;
}
.product-journal .journal-card:last-child { border-bottom: 0; }
.product-journal .journal-card-thumb {
    grid-column: 1;
    grid-row: 1 / span 3;
}
.product-journal .journal-card-meta,
.product-journal .journal-card strong,
.product-journal .journal-card em {
    grid-column: 2;
}
.product-journal .journal-card strong {
    font-size: 16px;
    line-height: 1.3;
}
.product-journal .journal-card em {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-journal .tag-group { margin-top: 0; }
.product-main .product-journal-tags {
    justify-content: flex-start;
    margin: 0;
}
.product-journal-posts {
    margin-top: 28px;
}
.product-journal-posts .tag-label {
    margin-bottom: 8px;
}

.media-stack { max-width: 1100px; margin: 0 auto; padding: 24px; }
.media-embed, .story-figure, .audio-embed { margin: 32px 0; }
.media-embed iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    background: #111;
}
.story-figure img { width: 100%; }
figcaption, .audio-note { color: var(--muted); font-size: 13px; margin-top: 8px; }
.audio-embed audio { width: 100%; }

.story-hero { position: relative; background: #111; }
.story-hero img { width: 100%; height: min(82vh, 860px); object-fit: cover; filter: brightness(.7); }
.story-hero-copy {
    position: absolute;
    inset: auto 8% 12% 8%;
    color: #fff;
    max-width: 900px;
}
.story-hero-copy h1 { font-size: clamp(40px, 6vw, 80px); margin: 0; }
.story-hero.compact img { height: 54vh; filter: none; }
.journal-banner img { height: min(72vh, 720px); filter: none; }
.journal-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.55) 0%, rgba(0,0,0,.15) 45%, transparent 70%);
    pointer-events: none;
}
.journal-banner .story-hero-copy { z-index: 1; }
.journal-banner .story-hero-copy p { margin: 12px 0 0; max-width: 520px; font-size: 18px; }

.journal-promo { background: #111; }
.journal-promo-link {
    display: grid;
    grid-template-columns: 1.3fr .9fr;
    min-height: 64vh;
    color: #fff;
    text-decoration: none;
}
.journal-promo-link:hover { text-decoration: none; }
.journal-promo img {
    width: 100%;
    height: 100%;
    min-height: 64vh;
    object-fit: cover;
}
.journal-promo-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 64px;
}
.journal-promo-copy h2 { font-size: clamp(36px, 5vw, 64px); margin: 0 0 16px; }
.journal-promo-copy .text-link { color: #fff; margin-top: 16px; }

.journal-tools {
    max-width: var(--max);
    margin: 0 auto;
    padding: 28px 24px 0;
    position: sticky;
    top: 72px;
    z-index: 15;
    background: #fff;
}
.journal-filters {
    display: grid;
    grid-template-columns: 1.4fr 1fr auto;
    gap: 20px;
    align-items: end;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
}
.journal-filters label span,
.party-toggle legend {
    display: block;
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px;
}
.journal-filters input[type="search"],
.journal-filters select {
    width: 100%;
    border: 0;
    border-bottom: 1px solid var(--ink);
    background: transparent;
    font: inherit;
    padding: 8px 0;
}
.party-toggle {
    border: 0;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 0;
}
.party-toggle legend { width: 100%; }
.party-toggle label {
    border: 1px solid var(--ink);
    padding: 8px 16px;
    font-size: 13px;
    cursor: pointer;
    margin-left: -1px;
}
.party-toggle label:first-of-type { margin-left: 0; }
.party-toggle input { position: absolute; opacity: 0; pointer-events: none; }
.party-toggle label.is-on { background: var(--ink); color: #fff; }
.journal-card.is-hidden,
.product-card.is-hidden,
.visual-panel.is-hidden { display: none; }
.journal-empty { text-align: center; color: var(--muted); padding: 48px 0; }
.journal-results { padding-top: 40px; }

.page-journal,
.page-category,
.page-products {
    --header-h: 73px;
    background: #fff;
}
.page-journal .site-footer,
.page-category .site-footer,
.page-products .site-footer {
    margin-top: 0;
    position: relative;
    z-index: 4;
}
.visual-cover {
    height: auto;
    margin: 0;
    background: #111;
}
.visual-cover-pin,
.visual-panel {
    width: 100%;
    overflow: clip;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background: #111;
}
.visual-cover-pin {
    position: relative;
    height: 60vh;
    max-height: 60vh;
    z-index: 0;
    overflow: hidden;
}
.visual-panel {
    position: relative;
    height: calc(100dvh - var(--header-h));
}
.visual-cover-pin img,
.visual-cover-media img,
.visual-panel img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
}
.visual-cover-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.visual-cover-media img {
    transform-origin: center 40%;
    animation: visual-zoom 16s ease-out forwards;
}
.visual-dim {
    position: absolute;
    inset: 0;
    background: #000;
    opacity: .46;
    pointer-events: none;
}
.visual-copy {
    position: relative;
    z-index: 1;
    width: min(1100px, 92vw);
    padding: 0 4vw 9vh;
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.visual-display {
    font-family: "Instrument Serif", serif;
    font-weight: 400;
    font-size: clamp(42px, calc(78vw / max(var(--letters, 8), 3)), 168px);
    line-height: .88;
    letter-spacing: clamp(.08em, calc(.62em - .035em * var(--letters, 8)), .48em);
    text-transform: uppercase;
    margin: 0;
    color: #fff;
    text-align: center;
    padding-left: .12em;
}
.visual-sub {
    font-family: "Instrument Sans", sans-serif;
    font-weight: 400;
    font-size: clamp(13px, 2vw, 26px);
    letter-spacing: .36em;
    text-transform: uppercase;
    margin: 16px 0 0;
    color: #fff;
    max-width: 46em;
}
.visual-cover .visual-copy {
    position: relative;
    z-index: 1;
}
.visual-cover .visual-display {
    display: inline-flex;
    justify-content: center;
    width: 100%;
}
.visual-cover .visual-display span {
    display: inline-block;
    opacity: 0;
    animation: visual-bounce .8s ease-out forwards;
    animation-delay: calc(.12s * var(--i, 0) + .1s);
}
.visual-cover .visual-display .visual-space {
    animation: none;
    opacity: 1;
    width: .2em;
}
.visual-cover .visual-sub {
    opacity: 0;
    animation: visual-fade 1.6s cubic-bezier(.22, 1, .36, 1) forwards;
    animation-delay: calc(.12s * var(--letters, 6) + .45s);
}
.visual-meta {
    display: block;
    margin-top: 18px;
    font-size: 13px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.84);
}
.category-intro {
    position: relative;
    z-index: 2;
    background: #fff;
    padding: 64px 24px;
    font-size: 18px;
    line-height: 1.6;
}
.category-intro-kicker,
.category-intro h2,
.category-intro p {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.category-intro-kicker {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 16px;
    color: var(--muted);
}
.category-intro h2 {
    font-size: clamp(28px, 4vw, 44px);
    margin-top: 0;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    text-transform: none;
}
.category-intro p { margin-bottom: 1.15em; }
.category-intro p:last-child { margin-bottom: 0; }
.visual-type {
    position: relative;
    z-index: 2;
    background: #fff;
    min-height: calc(100dvh - var(--header-h));
    padding: 14vh 24px 16vh;
    text-align: center;
}
.visual-type-compact {
    min-height: 0;
    padding: 12vh 24px 8vh;
}
.visual-display-ink { color: #d4d4d4; }
.visual-sub-ink {
    color: var(--ink);
    letter-spacing: .28em;
}
.visual-type-copy {
    max-width: 680px;
    margin: 48px auto 0;
    text-align: left;
    font-size: 18px;
    line-height: 1.6;
}
.visual-type-copy p { margin: 0 0 1.15em; }
.visual-type-copy p:last-child { margin-bottom: 0; }
.visual-media {
    position: relative;
    z-index: 2;
    background: #111;
    min-height: calc(100dvh - var(--header-h));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8vh 24px;
}
.visual-media-frame {
    width: min(1100px, 100%);
    margin: 0;
}
.visual-media-frame iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    background: #000;
}
.visual-stack {
    position: relative;
    z-index: 2;
    background: #111;
}
.visual-panel {
    position: relative;
    color: #fff;
    text-decoration: none;
}
.visual-panel:hover { text-decoration: none; }
.visual-panel:hover .visual-dim { opacity: .36; }
.page-journal .journal-tools,
.page-category .journal-tools,
.page-products .journal-tools {
    position: relative;
    top: auto;
    z-index: 3;
    max-width: none;
    margin: 0;
    background: #fff;
    padding: 28px 24px 0;
}
.page-category .category-shop,
.page-products .category-shop {
    background: #fff;
    margin: 0;
    padding: 48px 24px 72px;
    position: relative;
    z-index: 2;
}
.page-category .category-shop .journal-tools,
.page-products .category-shop .journal-tools {
    max-width: var(--max);
    margin: 0 auto 28px;
    padding: 0;
}
.page-category .product-grid,
.page-products .product-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 28px 16px;
    max-width: var(--max);
    margin: 0 auto;
}
.page-category .product-card-name,
.page-products .product-card-name {
    font-size: 13px;
}
.shop-head {
    max-width: var(--max);
    margin: 0 auto 36px;
}
.shop-head-kicker {
    margin: 0 0 8px;
    font-size: 13px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muted);
}
.shop-head h1 {
    margin: 0;
    font-size: clamp(36px, 5vw, 64px);
    letter-spacing: -0.02em;
}
.page-journal .journal-results,
.page-category .journal-results {
    background: #fff;
    margin: 0;
    padding: 40px 24px 80px;
    position: relative;
    z-index: 2;
}
.page-journal .journal-empty,
.page-category .journal-empty,
.page-products .journal-empty {
    background: #fff;
    margin: 0;
    padding: 32px 24px 64px;
}
@keyframes visual-fade {
    from { opacity: 0; transform: translateY(36px); }
    to { opacity: 1; transform: none; }
}
@keyframes visual-bounce {
    0% { opacity: 0; transform: translateY(56px) scale(.72); }
    50% { opacity: 1; transform: translateY(-26px) scale(1.16); }
    75% { transform: translateY(8px) scale(.96); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes visual-zoom {
    from { transform: scale(1.04); }
    to { transform: scale(1.14); }
}
@media (prefers-reduced-motion: reduce) {
    .visual-cover { height: auto; }
    .visual-cover-pin { position: relative; }
    .visual-cover .visual-display span,
    .visual-cover .visual-sub {
        animation: none;
        opacity: 1;
        transform: none;
    }
    .visual-cover-media img {
        animation: none;
        transform: none;
    }
}

.story-column {
    max-width: 720px;
    margin: 0 auto;
    padding: 64px 24px;
    font-size: 18px;
}
.story-column h1 { font-size: clamp(36px, 5vw, 64px); }
.post-head { padding-bottom: 0; }

.collection-index {
    display: grid;
    gap: 80px;
    margin-top: 48px;
}
.collection-index article img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: var(--bg);
    margin-bottom: 20px;
}
.tag-row { display: flex; flex-wrap: wrap; gap: 10px 16px; margin: 24px 0 40px; }

.cart-list { list-style: none; padding: 0; }
.cart-row {
    display: grid;
    grid-template-columns: 96px 1fr auto auto auto;
    gap: 16px;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}
.cart-row img { width: 96px; height: 96px; object-fit: cover; background: var(--bg); }
.cart-qty { display: grid; gap: 6px; justify-items: start; }
.cart-qty form { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.cart-line-total { justify-self: end; white-space: nowrap; }
.cart-qty-fixed { margin: 0; color: var(--muted); font-size: 13px; }
.cart-summary { display: flex; justify-content: space-between; align-items: center; margin-top: 24px; }
.cart-summary .button { width: auto; padding-inline: 36px; }

.contact-form { display: grid; gap: 16px; max-width: 560px; }
.contact-form label { display: grid; gap: 6px; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.contact-form input, .contact-form textarea {
    border: 0;
    border-bottom: 1px solid var(--ink);
    padding: 10px 0;
    font: inherit;
}
.narrow { max-width: 760px; }

.site-footer {
    background: #111;
    color: #fff;
    padding: 72px 24px 32px;
    margin-top: 40px;
}
.footer-grid {
    max-width: var(--max);
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.site-footer h2 {
    font-family: "Instrument Sans", sans-serif;
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin: 7px 0; font-size: 14px; }
.copyright { text-align: center; color: #888; font-size: 13px; }

.page-journal-post {
    --ink: #010101;
    --muted: #6a6a6a;
    --surface: #fff;
    background: #fff;
}
.page-journal-post .site-header {
    background: #fff;
}
.page-journal-post h1,
.page-journal-post h2,
.page-journal-post h3 {
    font-family: "Instrument Serif", serif;
    font-weight: 400;
}
.page-journal-post .site-footer { margin-top: 0; }

.post-page { color: var(--ink); }
.post-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: 24px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}
.post-back {
    grid-column: 1 / -1;
    margin: 0;
    padding: 28px 0 0;
    font-size: 16px;
    font-weight: 450;
}
.post-back a { text-decoration: none; }
.post-back a:hover { opacity: .7; }

.post-mast {
    padding-top: 36px;
    padding-bottom: 28px;
}
.post-date {
    grid-column: 1 / -1;
    margin: 0 0 16px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muted);
}
.post-date a {
    color: inherit;
    text-decoration: none;
}
.post-date a:hover { text-decoration: underline; }
.post-title {
    grid-column: 1 / -1;
    margin: 0;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -0.02em;
}
.post-dek {
    grid-column: 1 / -1;
    margin: 20px 0 0;
    max-width: 40em;
    font-size: 20px;
    line-height: 1.45;
    color: var(--muted);
}
.post-byline {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 40px;
    font-size: 16px;
    font-weight: 450;
}
.post-authors {
    display: flex;
    align-items: center;
    gap: 14px;
}
.post-authors p { margin: 0; }
.post-avatar {
    display: block;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 0 0 2px var(--surface);
}
.post-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.post-read { margin: 0; color: var(--ink); }

.post-hero {
    width: 100%;
    max-width: 760px;
    margin: 8px auto 0;
    padding: 0 24px;
    background: transparent;
}
.post-hero img {
    width: 100%;
    height: auto;
    display: block;
    background: #e8e4dc;
}
.post-hero figcaption {
    margin: 12px 0 0;
    font-size: 14px;
    line-height: 1.4;
    color: var(--muted);
}

.post-body {
    padding-top: 56px;
    padding-bottom: 96px;
}
.post-col {
    grid-column: 7 / span 6;
    min-width: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;
    color: var(--muted);
}
.post-tldr {
    margin: 0 0 42px;
}
.post-tldr span {
    display: block;
    color: rgb(1 1 1 / .8);
    font-size: 16px;
}
.post-tldr p {
    margin: 16px 0 0;
    color: var(--muted);
}
.post-col .story-copy { margin: 0; }
.post-col .story-copy + .story-copy { margin-top: 24px; }
.post-col > .story-copy:first-of-type > p:first-child {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 0;
    color: var(--ink);
    margin: 0 0 24px;
}
.post-col .story-copy p {
    margin: 24px 0 0;
    color: var(--muted);
}
.post-col .story-copy a,
.post-col .story-copy strong,
.post-col .story-copy em,
.post-col .story-copy code {
    color: var(--ink);
}
.post-col .story-copy h2,
.post-col .story-copy h3,
.post-shop h2 {
    font-family: "Instrument Serif", serif;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: inherit;
    margin: 48px 0 0;
}
.post-col .story-copy h2 + p,
.post-col .story-copy h3 + p { margin-top: 24px; }
.post-col .story-copy ul,
.post-col .story-copy ol {
    list-style: none;
    padding: 0;
    margin: 0;
}
.post-col .story-copy ul li {
    position: relative;
    padding-left: 1.15em;
    margin-top: 12px;
}
.post-col .story-copy ul li::before {
    content: "–";
    position: absolute;
    left: 0;
    color: var(--ink);
}
.post-col .story-copy ol {
    counter-reset: post-ol;
}
.post-col .story-copy ol li {
    counter-increment: post-ol;
    display: flex;
    gap: 24px;
    margin-top: 24px;
}
.post-col .story-copy ol li::before {
    content: counter(post-ol) ".";
    flex-shrink: 0;
    font-variant-numeric: tabular-nums;
    color: var(--muted);
}
.post-col .story-copy blockquote {
    margin: 32px 0 0;
    padding: 0 0 0 20px;
    border-left: 2px solid var(--ink);
    color: var(--ink);
    font-family: "Instrument Serif", serif;
    font-size: 22px;
    line-height: 1.35;
}
.post-col .story-copy blockquote p { margin: 0; color: inherit; }
.post-col .story-figure,
.post-col .media-embed,
.post-col .audio-embed {
    margin: 56px 0;
}
.post-col .story-figure img { width: 100%; }
.post-col figcaption,
.post-col .audio-note {
    margin-top: 10px;
    font-size: 14px;
    color: var(--muted);
}
.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin: 64px 0 0;
    font-size: 14px;
}
.post-tags a { color: var(--ink); }
.post-gallery { margin-top: 56px; }
.post-gallery h2 {
    font-family: "Instrument Serif", serif;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 400;
    margin: 0 0 24px;
}
.post-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.post-gallery-grid a {
    display: grid;
    gap: 8px;
    text-decoration: none;
    color: var(--ink);
}
.post-gallery-grid img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    background: #e8e4dc;
}
.post-gallery-grid span {
    font-size: 12px;
    line-height: 1.3;
    color: var(--muted);
}
.post-shop { margin-top: 48px; }
.post-shop-row {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgb(1 1 1 / .1);
    text-decoration: none;
    color: var(--ink);
}
.post-shop-row:hover { text-decoration: none; opacity: .75; }
.post-shop-row img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    background: #fff;
}
.post-shop-name { font-size: 16px; }
.post-shop-price { font-size: 14px; color: var(--muted); }

@media (max-width: 980px) {
    .post-mast { padding-top: 20px; }
    .post-date { margin-bottom: 20px; font-size: 18px; }
    .post-byline { margin-top: 28px; }
    .post-hero {
        padding: 0 24px;
        height: auto;
        max-width: none;
        margin-top: 0;
    }
    .post-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .post-body { padding-top: 48px; padding-bottom: 72px; }
    .post-col { grid-column: 1 / -1; }
    .post-col > .story-copy:first-of-type > p:first-child { font-size: 18px; }
    .post-col .story-copy h2,
    .post-col .story-copy h3 { margin-top: 56px; }
    .product-grid,
    .page-category .product-grid,
    .page-products .product-grid { grid-template-columns: repeat(2, 1fr); }
    .collection-band, .collection-band:nth-of-type(even), .product-stage { grid-template-columns: 1fr; }
    .collection-band:nth-of-type(even) .collection-visual { order: 0; }
    .collection-visual img, .hero-slide img, .hero-slideshow, .hero-slide { min-height: 70vh; height: 70vh; }
    .collection-copy { padding: 36px 24px; }
    .product-photo-col { display: none; }
    .product-main {
        grid-column: 1;
        grid-row: auto;
    }
    .gallery {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 24px 24px 0;
    }
    .thumb { width: 56px; }
    .buy-panel {
        position: static;
        min-height: 0;
        padding: 36px 24px;
    }
    .product-main .media-stack,
    .product-main .product-details,
    .product-main .section {
        padding-left: 24px;
        padding-right: 24px;
    }
    .visual-display {
        letter-spacing: clamp(.06em, calc(.42em - .028em * var(--letters, 8)), .28em);
        font-size: clamp(40px, calc(88vw / max(var(--letters, 8), 3)), 96px);
    }
    .visual-sub { letter-spacing: .18em; }
    .visual-cover { height: auto; }
    .visual-cover-pin { height: 60vh; max-height: 60vh; }
    .visual-copy { padding-bottom: 7vh; }
    .journal-promo-link, .journal-filters { grid-template-columns: 1fr; }
    .journal-promo img { min-height: 42vh; }
    .journal-promo-copy { padding: 36px 24px; }
    .journal-tools { position: static; }
    .cart-row { grid-template-columns: 72px 1fr auto; }
    .cart-row > a:first-child { grid-row: 1 / span 3; }
    .cart-qty, .cart-remove { grid-column: 2; }
    .cart-line-total { grid-column: 3; grid-row: 1; }
    .footer-grid { grid-template-columns: 1fr; }
    .product-details { padding: 64px 24px; }
    .product-details-col { grid-column: 1 / -1; }
}
