:root {
    --bg: #f7f1e8;
    --surface: rgba(255, 250, 245, 0.82);
    --surface-strong: rgba(255, 252, 248, 0.94);
    --surface-dark: rgba(21, 31, 51, 0.92);
    --text: #1d2430;
    --muted: #5c6471;
    --border: rgba(28, 37, 53, 0.12);
    --accent: #c97849;
    --accent-dark: #8d4528;
    --forest: #2d6975;
    --wine: #7a3b33;
    --gold: #dfb680;
    --ink: #19263c;
    --shadow: 0 25px 70px rgba(22, 31, 46, 0.12);
    --shadow-soft: 0 18px 38px rgba(22, 31, 46, 0.1);
    --radius-xl: 32px;
    --radius-lg: 22px;
    --radius-md: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(201, 120, 73, 0.22), transparent 24%),
        radial-gradient(circle at 82% 8%, rgba(45, 105, 117, 0.18), transparent 26%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.22) 0%, transparent 40%),
        linear-gradient(180deg, #f9f3eb 0%, #f1e5d7 46%, #f8f3ee 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0.55;
    background:
        linear-gradient(rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05)),
        repeating-linear-gradient(90deg, rgba(25, 38, 60, 0.03) 0 1px, transparent 1px 120px),
        repeating-linear-gradient(0deg, rgba(25, 38, 60, 0.025) 0 1px, transparent 1px 120px);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.22s ease, transform 0.22s ease, opacity 0.22s ease;
}

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

small {
    color: var(--muted);
}

main {
    overflow: hidden;
}

.shell {
    width: min(1200px, calc(100vw - 32px));
    margin: 0 auto;
}

.topbar {
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, #10192a 0%, #19253d 52%, #223a47 100%);
    color: #f2e8da;
    font-size: 0.9rem;
}

.topbar::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, transparent 0 48%, rgba(223, 182, 128, 0.12) 70%, transparent 100%);
}

.topbar-inner,
.header-inner,
.hero-grid,
.footer-grid,
.dashboard-grid,
.checkout-grid,
.product-detail-grid {
    display: grid;
    gap: 24px;
}

.topbar-inner {
    position: relative;
    z-index: 1;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 12px 0;
}

.topbar-copy {
    color: rgba(242, 232, 218, 0.78);
}

.topbar-links,
.main-nav,
.hero-actions,
.product-flags,
.section-heading,
.product-footer,
.cart-row,
.panel-heading {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.topbar-links a {
    opacity: 0.82;
}

.topbar-links a:hover,
.footer-grid a:hover,
.text-link:hover {
    color: #fff6ea;
    opacity: 1;
}

.pill-link,
.button,
.status-pill {
    border-radius: 999px;
}

.pill-link {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    padding: 8px 14px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    overflow: hidden;
    backdrop-filter: blur(20px);
    background: rgba(249, 244, 237, 0.76);
    border-bottom: 1px solid rgba(28, 37, 53, 0.1);
    box-shadow: 0 10px 26px rgba(22, 31, 46, 0.07);
}

.site-header::before {
    content: "";
    position: absolute;
    inset: -110px 0 -45px 0;
    opacity: 0.36;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(249, 244, 237, 0.88), rgba(249, 244, 237, 0.62)),
        url("../img/site/hero-scene.238fe24e6a17.png") center 42% / cover no-repeat;
}

.header-inner {
    position: relative;
    z-index: 1;
    grid-template-columns: auto 1fr;
    align-items: center;
    padding: 18px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand strong,
h1,
h2,
h3,
.footer-brand {
    font-family: "Cormorant Garamond", serif;
}

.brand strong {
    display: block;
    font-size: 1.55rem;
}

.brand small {
    color: var(--muted);
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: linear-gradient(145deg, var(--accent), var(--accent-dark));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
    color: #fff8ee;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.main-nav {
    justify-content: flex-end;
    font-weight: 600;
}

.main-nav a {
    position: relative;
    padding: 6px 0;
    color: var(--muted);
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
    background: linear-gradient(90deg, var(--accent), var(--forest));
}

.main-nav a:hover {
    color: var(--ink);
}

.main-nav a:hover::after {
    transform: scaleX(1);
}

.hero,
.section {
    padding: 64px 0;
}

.hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    align-items: start;
    gap: 28px;
    padding: 44px 0 28px;
}

.hero-side {
    display: grid;
    gap: 22px;
}

.hero-copy,
.spotlight-card,
.world-card,
.news-card,
.panel,
.summary-card,
.product-card,
.form-card,
.stack-card,
.stat-card,
.address-card,
.library-item,
.detail-cover,
.page-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 249, 241, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.58);
    box-shadow: var(--shadow);
}

.hero-copy,
.page-hero {
    isolation: isolate;
}

.hero-copy {
    padding: 46px;
    border-radius: var(--radius-xl);
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.86), rgba(255, 249, 241, 0.74) 48%, rgba(223, 182, 128, 0.18) 100%);
}

.hero-copy::after {
    content: "";
    position: absolute;
    right: -140px;
    bottom: -145px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(223, 182, 128, 0.34), rgba(223, 182, 128, 0));
}

.hero-copy > *,
.page-hero > * {
    position: relative;
    z-index: 1;
}

.hero-art {
    position: relative;
    min-height: 320px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: #15203a;
}

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

.hero-art::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.92;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 42%, rgba(8, 12, 24, 0.18) 100%),
        url("../img/site/cover-frame.76b8c8f33892.png") center / 100% 100% no-repeat;
}

.progress-panel,
.panel,
.summary-card,
.form-card {
    padding: 28px;
    border-radius: var(--radius-lg);
}

.progress-panel {
    color: #f5eadb;
    background:
        linear-gradient(160deg, rgba(22, 33, 58, 0.95), rgba(35, 76, 85, 0.88)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.progress-panel p,
.progress-panel span,
.progress-panel small {
    color: rgba(245, 234, 219, 0.78);
}

.panel-title {
    margin: 0 0 20px;
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #f7ecdd;
}

h1 {
    margin: 0 0 14px;
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    line-height: 0.94;
}

h2 {
    margin: 0;
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 0.98;
}

h3 {
    margin: 0 0 12px;
    font-size: 1.7rem;
    line-height: 1;
}

.hero-text,
.article-body p,
.stack-card p,
.news-card p,
.world-card p,
.spotlight-card p,
.product-card p,
.form-note,
.panel p,
.address-card p,
.library-item p {
    color: var(--muted);
    line-height: 1.75;
}

.eyebrow,
.tag,
.footer-heading {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.76rem;
    font-weight: 800;
    color: var(--accent-dark);
}

.button,
.link-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    cursor: pointer;
    font: inherit;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.button {
    padding: 14px 22px;
    font-weight: 800;
    box-shadow: var(--shadow-soft);
}

.button.primary {
    background: linear-gradient(145deg, var(--accent), var(--accent-dark));
    color: #fff9f1;
}

.button.secondary {
    background: rgba(45, 105, 117, 0.1);
    color: var(--forest);
    border: 1px solid rgba(45, 105, 117, 0.16);
}

.link-button {
    padding: 0;
    background: none;
    color: inherit;
}

.text-link {
    color: var(--forest);
    font-weight: 800;
}

.progress-item + .progress-item,
.cart-row + .cart-row,
.library-item + .library-item,
.stack-card + .stack-card {
    margin-top: 18px;
}

.stack-list .stack-card + .stack-card,
.library-list .library-item + .library-item,
.cart-list .cart-row + .cart-row {
    margin-top: 0;
}

.progress-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.progress-meta strong {
    color: #fff7ed;
}

.progress-bar {
    height: 10px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(25, 38, 60, 0.08);
}

.progress-bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--gold), #f4d6ad 44%, var(--accent));
    box-shadow: 0 0 18px rgba(223, 182, 128, 0.35);
}

.section-heading {
    justify-content: space-between;
    margin-bottom: 26px;
}

.card-grid {
    display: grid;
    gap: 20px;
}

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

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

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

.spotlight-card,
.world-card,
.news-card,
.product-card,
.address-card {
    padding: 24px;
    border-radius: var(--radius-lg);
}

.spotlight-card::before,
.news-card::before,
.product-card::before,
.address-card::before,
.library-item::before {
    content: "";
    position: absolute;
    top: -40px;
    left: -35px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(223, 182, 128, 0.26), rgba(223, 182, 128, 0));
    pointer-events: none;
}

.world-card {
    border-top: 4px solid var(--accent, var(--accent));
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 239, 228, 0.88)),
        rgba(255, 250, 242, 0.9);
}

.section-dark {
    position: relative;
}

.section-dark::before {
    content: "";
    position: absolute;
    inset: 22px 0;
    border-radius: 42px;
    opacity: 0.12;
    pointer-events: none;
    background:
        linear-gradient(135deg, rgba(23, 38, 61, 0.08), rgba(37, 79, 88, 0.05)),
        url("../img/site/footer-scene.e6e63dee83cc.png") center / cover no-repeat;
}

.section-dark > .shell {
    position: relative;
    z-index: 1;
}

.card-cover,
.product-cover,
.detail-cover {
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 20px;
    isolation: isolate;
    background: linear-gradient(160deg, var(--ink), #2c5c66 44%, #ddb37a 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.card-cover::before,
.product-cover::before,
.detail-cover::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 35%, rgba(9, 15, 27, 0.2) 100%);
}

.card-cover::after,
.product-cover::after,
.detail-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    opacity: 0.85;
    pointer-events: none;
    background: url("../img/site/cover-frame.76b8c8f33892.png") center / 100% 100% no-repeat;
}

.card-cover img,
.product-cover img,
.detail-cover img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-cover {
    width: 92px;
    height: 120px;
    margin-bottom: 18px;
}

.product-cover {
    aspect-ratio: 3 / 4;
    margin-bottom: 18px;
}

.detail-cover {
    min-height: 500px;
}

.cover-placeholder-kind {
    position: absolute;
    left: 14px;
    bottom: 14px;
    z-index: 4;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(18, 27, 45, 0.78);
    color: #f7ead8;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.card-cover .cover-placeholder-kind {
    left: 8px;
    bottom: 8px;
    padding: 5px 8px;
    font-size: 0.58rem;
}

.detail-cover .cover-placeholder-kind {
    left: 24px;
    bottom: 24px;
    padding: 10px 14px;
    font-size: 0.8rem;
}

.product-footer,
.library-item,
.cart-row {
    justify-content: space-between;
}

.product-flags span,
.muted,
.article-meta {
    color: var(--muted);
}

.product-flags span {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(201, 120, 73, 0.12);
    font-size: 0.86rem;
}

.page-hero {
    max-width: 100%;
    margin-bottom: 28px;
    padding: 34px 34px 38px;
    border-radius: var(--radius-xl);
}

.page-hero::after {
    content: "";
    position: absolute;
    top: -22px;
    right: -48px;
    width: min(34vw, 360px);
    aspect-ratio: 1;
    opacity: 0.18;
    pointer-events: none;
    background: url("../img/site/hero-scene.238fe24e6a17.png") center / cover no-repeat;
}

.page-hero p:last-child {
    max-width: 720px;
}

.page-hero.compact {
    padding: 28px 30px 30px;
    margin-bottom: 22px;
}

.page-hero.compact::after {
    width: min(26vw, 240px);
    opacity: 0.14;
}

.filter-bar,
.inline-form,
.form-grid {
    display: grid;
    gap: 16px;
}

.filter-bar {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    margin-bottom: 24px;
}

input,
select,
textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(28, 37, 53, 0.11);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
    font: inherit;
}

input:focus,
select:focus,
textarea:focus {
    outline: 2px solid rgba(45, 105, 117, 0.18);
    border-color: rgba(45, 105, 117, 0.28);
}

textarea {
    min-height: 120px;
    resize: vertical;
}

.form-grid p {
    margin: 0;
}

.stack-list {
    display: grid;
    gap: 18px;
}

.dashboard-flow {
    display: grid;
    gap: 24px;
}

.library-list,
.cart-list {
    display: grid;
    gap: 18px;
}

.stack-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 24px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 240, 231, 0.88));
    border: 1px solid rgba(28, 37, 53, 0.08);
}

.stack-card h3 {
    margin-bottom: 6px;
}

.stack-card p {
    margin: 0;
}

.summary-card .stack-card {
    background: rgba(255, 255, 255, 0.48);
    box-shadow: none;
    border: 1px solid var(--border);
}

.narrow-shell {
    width: min(720px, calc(100vw - 32px));
}

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

.stats-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 24px;
}

.stat-card {
    padding: 22px;
    border-radius: 18px;
}

.stat-card strong {
    display: block;
    font-size: 2.1rem;
}

.dashboard-grid > :first-child,
.checkout-grid > :first-child,
.product-detail-grid > :last-child {
    grid-column: span 2;
}

.detail-copy {
    align-self: center;
}

.product-meta,
.detail-copy,
.compact-card {
    position: relative;
    z-index: 1;
}

.product-meta {
    display: grid;
    gap: 12px;
}

.product-meta h2 {
    font-size: clamp(1.7rem, 2vw, 2rem);
}

.compact-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(248, 240, 231, 0.82));
}

.summary-card,
.sticky {
    position: sticky;
    top: 112px;
}

.order-summary {
    display: grid;
    gap: 14px;
}

.summary-line {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: baseline;
    margin: 0;
}

.summary-line span {
    min-width: 0;
    color: var(--muted);
}

.summary-line strong {
    white-space: nowrap;
    text-align: right;
}

.summary-total {
    padding-top: 16px;
    border-top: 1px solid var(--border);
    font-size: 1.1rem;
}

.summary-total span,
.summary-total strong {
    color: var(--ink);
}

.order-summary > .button {
    margin-top: 6px;
    justify-self: start;
}

.panel-heading {
    margin-bottom: 18px;
}

.account-stack {
    margin-top: 4px;
}

.library-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 20px 22px;
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 240, 231, 0.86));
    border: 1px solid rgba(28, 37, 53, 0.08);
}

.library-copy strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.04rem;
    line-height: 1.35;
}

.library-item p {
    margin: 0;
}

.cart-row {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(140px, 190px) auto;
    gap: 24px;
    align-items: center;
    padding: 22px 24px;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 240, 231, 0.86));
    border: 1px solid rgba(28, 37, 53, 0.08);
}

.cart-copy strong {
    display: block;
    margin-bottom: 8px;
    line-height: 1.35;
}

.cart-copy p {
    margin: 0;
}

.cart-quantity {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-size: 0.95rem;
}

.cart-price {
    white-space: nowrap;
    justify-self: end;
}

.cart-panel > .button {
    margin-top: 22px;
}

.status-pill {
    display: inline-flex;
    padding: 8px 12px;
    font-size: 0.86rem;
    font-weight: 700;
}

.status-awaiting_payment {
    background: rgba(201, 120, 73, 0.12);
    color: var(--accent-dark);
}

.status-paid,
.status-packing {
    background: rgba(45, 105, 117, 0.12);
    color: var(--forest);
}

.status-shipped,
.status-completed {
    background: rgba(54, 94, 159, 0.14);
    color: #2c4c86;
}

.status-cancelled,
.status-refunded {
    background: rgba(122, 59, 51, 0.12);
    color: var(--wine);
}

.article-shell {
    max-width: 860px;
}

.article-related {
    margin-top: 42px;
}

.sbp-box {
    margin: 22px 0;
    padding: 18px;
    border-radius: 18px;
    background: rgba(45, 105, 117, 0.06);
    border: 1px solid rgba(45, 105, 117, 0.1);
}

.site-footer {
    margin-top: 54px;
    padding: 0 0 60px;
    overflow: hidden;
    background: linear-gradient(180deg, #172136 0%, #0d1526 100%);
    color: #efe5d8;
}

.footer-visual-shell {
    padding-top: 42px;
    margin-bottom: 30px;
}

.footer-visual {
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.18);
}

.footer-visual img {
    width: 100%;
    height: clamp(190px, 23vw, 260px);
    object-fit: cover;
}

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

.footer-brand {
    margin-top: 0;
    font-size: 2rem;
    color: #fff7ea;
}

.footer-heading {
    color: #dfb680;
}

.footer-grid a,
.footer-grid form,
.footer-grid p,
.footer-grid .link-button {
    display: block;
    margin-bottom: 10px;
    color: rgba(239, 229, 216, 0.82);
}

.message-stack {
    padding-top: 18px;
}

.message {
    margin-bottom: 12px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(45, 105, 117, 0.08);
    border: 1px solid rgba(45, 105, 117, 0.12);
}

.price-line {
    margin: 22px 0;
    font-size: 2rem;
    font-weight: 800;
    color: var(--ink);
}

.nav-queue-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-badge {
    display: inline-grid;
    place-items: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    background: linear-gradient(145deg, var(--accent), var(--accent-dark));
    color: #fff9f1;
    font-size: 0.72rem;
    font-weight: 800;
}

.newsletter-card {
    margin-top: 22px;
    padding: 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.newsletter-copy {
    color: rgba(239, 229, 216, 0.8);
}

.newsletter-form,
.fulfillment-form {
    display: grid;
    gap: 12px;
}

.newsletter-form {
    max-width: 360px;
}

.newsletter-form input {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
    color: #fff6ea;
}

.newsletter-form input::placeholder {
    color: rgba(255, 246, 234, 0.58);
}

.queue-panel {
    margin-bottom: 0;
}

.queue-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.fulfillment-card {
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 320px);
    align-items: start;
}

.fulfillment-copy p {
    margin: 0 0 10px;
}

@media (max-width: 980px) {
    .hero-grid,
    .product-detail-grid,
    .dashboard-grid,
    .checkout-grid,
    .footer-grid,
    .spotlight-grid,
    .news-grid,
    .product-grid,
    .worlds-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .header-inner,
    .topbar-inner,
    .stack-card,
    .cart-row,
    .library-item,
    .filter-bar,
    .fulfillment-card {
        grid-template-columns: 1fr;
    }

    .main-nav {
        justify-content: flex-start;
    }

    .dashboard-grid > :first-child,
    .checkout-grid > :first-child,
    .product-detail-grid > :last-child {
        grid-column: auto;
    }

    .sticky {
        position: static;
    }

    .page-hero::after {
        width: 220px;
        opacity: 0.12;
    }

    .cart-price,
    .library-item .button,
    .library-item .muted {
        justify-self: start;
    }

    .page-hero p:last-child {
        max-width: none;
    }

    .detail-cover {
        min-height: 380px;
    }
}

@media (max-width: 640px) {
    body::before {
        display: none;
    }

    .shell,
    .narrow-shell {
        width: min(calc(100vw - 20px), 1200px);
    }

    .hero,
    .section {
        padding: 46px 0;
    }

    .hero-copy,
    .page-hero,
    .progress-panel,
    .panel,
    .summary-card,
    .form-card,
    .stack-card,
    .stat-card,
    .spotlight-card,
    .world-card,
    .news-card,
    .product-card,
    .address-card,
    .library-item {
        padding: 22px;
    }

    h1 {
        font-size: clamp(2.35rem, 10vw, 3.4rem);
    }

    .brand-mark {
        width: 50px;
        height: 50px;
    }

    .hero-art {
        min-height: 250px;
    }

    .cover-placeholder-kind {
        font-size: 0.64rem;
    }
}
