:root {
    --bg: #f7f7f7;
    --text: #111;
    --muted: #666;
    --card: #ffffff;
    --border: #e5e5e5;
    --gap: 16px;
    --radius: 10px;
}

/* Base */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
}

img {
    max-width: 100%;
}

/* Page container */

.site {
    max-width: 1320px;
    margin: 0 auto;
    padding: 40px 24px 60px;
}

/* Header */

.page-header {
    margin-bottom: 32px;
}

.page-header__eyebrow {
    margin: 0 0 8px;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.page-header h1 {
    margin: 0 0 6px 0;
    font-size: 2rem;
    line-height: 1.1;
}

.page-header p {
    margin: 0;
    color: var(--muted);
    max-width: 62ch;
    line-height: 1.55;
}

.page-header__nav {
    margin-top: 16px;
}

.page-header__nav a,
.text-link {
    color: var(--text);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.site--narrow {
    max-width: 760px;
}

.muted {
    color: var(--muted);
}

.info-section {
    margin-bottom: 32px;
}

.info-section h2 {
    margin: 0 0 10px;
    font-size: 1.15rem;
}

.info-list {
    margin: 0;
    padding-left: 1.2rem;
    color: var(--muted);
    line-height: 1.6;
}

.info-table-wrap {
    overflow-x: auto;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
}

.info-table th,
.info-table td {
    border-bottom: 1px solid var(--border);
    padding: 10px 8px;
    text-align: left;
}

.info-table th {
    font-weight: 600;
}

/* Gallery */

.gallery {
    position: relative;
}

.gallery.is-masonry-ready {
    min-height: 0;
}

.gallery-card {
    overflow: hidden;
    border-radius: var(--radius);
    background: #e9e9e9;
}

.gallery.is-masonry-ready .gallery-card {
    position: absolute;
    margin: 0;
    width: 100%;
}

.gallery-card.is-featured {
    /* neutral for now */
}

.gallery-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    border-radius: inherit;
    position: relative;
}

.gallery-card__image {
    display: block;
    width: 100%;
    height: auto;
    min-height: 180px;
    max-height: 520px;
    object-fit: cover;
    transition: transform 0.28s ease;
}

.gallery-card__image {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gallery-card__image.is-loaded {
    opacity: 1;
}

.gallery-card:hover .gallery-card__image {
    transform: scale(1.02);
}

/* Give the wall some rhythm without forcing weird gaps */

.gallery-card:nth-child(7n + 2) .gallery-card__image {
    aspect-ratio: 4 / 5;
}

.gallery-card:nth-child(7n + 3) .gallery-card__image {
    aspect-ratio: 3 / 2;
}

.gallery-card:nth-child(7n + 5) .gallery-card__image {
    aspect-ratio: 1 / 1;
}

.gallery-card:nth-child(7n + 6) .gallery-card__image {
    aspect-ratio: 5 / 4;
}

.gallery-card:nth-child(7n + 7) .gallery-card__image {
    aspect-ratio: 4 / 6;
}

/* Overlay */

.gallery-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 14px;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.25) 40%,
        rgba(0, 0, 0, 0.0) 70%
    );
    color: #fff;
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

/* Show on hover (desktop) */

.gallery-card:hover .gallery-card__overlay {
    opacity: 1;
}

/* Title */

.gallery-card__title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
}

/* Caption */

.gallery-card__caption {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
}

.gallery-card__buy-hint {
    margin-top: 8px;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0.85;
}

.gallery-card.is-featured .gallery-card__image {
    aspect-ratio: 4 / 5 !important;
    width: 100%;
    object-fit: cover;
}

.gallery-card.is-featured {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.gallery-card.is-featured .gallery-card__overlay {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.68) 0%,
        rgba(0, 0, 0, 0.32) 40%,
        rgba(0, 0, 0, 0) 72%
    );
}

/* Mobile: full overlay hidden; show a minimal buy strip */

@media (max-width: 768px) {
    .gallery-card__overlay {
        display: flex;
        opacity: 1;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 55%);
        padding: 10px 12px;
    }

    .gallery-card__title,
    .gallery-card__caption {
        display: none;
    }

    .gallery-card__buy-hint {
        margin-top: 0;
    }
}

/* Empty state */

.empty-state {
    padding: 60px 0;
    text-align: center;
    color: var(--muted);
}

/* Tablet */

@media (max-width: 780px) {
    .site {
        padding: 32px 20px 48px;
    }
}

/* Mobile */

@media (max-width: 640px) {
    .site {
        padding: 24px 16px 40px;
    }

    .page-header {
        margin-bottom: 24px;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .gallery-card {
        border-radius: 8px;
    }

    .gallery-card__image {
        min-height: 140px;
        max-height: 360px;
    }
}

/* Lightbox */

.lightbox[hidden] {
    display: none !important;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
}

.lightbox-stage {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 72px 24px 24px;
    overflow-y: auto;
}

.lightbox-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 380px);
    gap: 24px;
    width: min(1200px, 100%);
    align-items: start;
}

.lightbox-image-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 240px;
}

#lightboxImage {
    display: block;
    max-width: 100%;
    max-height: calc(100vh - 120px);
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 1;
    transition: opacity 0.2s ease;
    border-radius: 6px;
}

.lightbox-shop {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 20px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

#lightboxImage.is-fading,
#lightboxImage.is-loading {
    opacity: 0;
}

.lightbox-meta {
    margin-bottom: 18px;
    color: #f3f3f3;
}

.lightbox-meta h2:empty,
.lightbox-meta p:empty {
    display: none;
}

.lightbox-meta h2 {
    margin: 0 0 8px;
    font-size: 1.15rem;
    line-height: 1.25;
}

.lightbox-meta p {
    margin: 0;
    color: #d0d0d0;
    line-height: 1.5;
    font-size: 0.92rem;
}

.shop-panel {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.shop-field__label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}

.shop-toggle {
    display: flex;
    gap: 8px;
}

.shop-toggle--wrap {
    flex-wrap: wrap;
}

.shop-toggle__btn {
    flex: 1;
    min-width: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    border-radius: 999px;
    padding: 10px 12px;
    font: inherit;
    font-size: 0.88rem;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.shop-toggle__btn.is-active {
    background: rgba(255, 255, 255, 0.92);
    color: #111;
    border-color: transparent;
}

.shop-variant-note {
    margin: 0;
    font-size: 0.84rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.72);
}

.shop-price {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 12px;
    display: grid;
    gap: 8px;
}

.shop-price__row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.82);
}

.shop-price__row--total {
    margin-top: 4px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

.shop-buy-btn {
    width: 100%;
    border: 0;
    border-radius: 999px;
    padding: 14px 18px;
    background: #fff;
    color: #111;
    font: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.shop-buy-btn:hover:not(:disabled) {
    transform: translateY(-1px);
}

.shop-buy-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.shop-footnote {
    margin: 0;
    font-size: 0.76rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.55);
}

.shop-error {
    margin: 0;
    font-size: 0.84rem;
    color: #ffb4b4;
}

.lightbox-close,
.lightbox-nav {
    position: fixed;
    z-index: 1001;
    border: 0;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    cursor: pointer;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.lightbox-close:hover,
.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.16);
}

.lightbox-close {
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    font-size: 32px;
    line-height: 1;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.lightbox.show-ui .lightbox-close {
    opacity: 0.7;
}

.lightbox.show-ui .lightbox-close:hover {
    opacity: 1;
}

.lightbox-nav {
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    font-size: 40px;
    line-height: 1;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.lightbox.show-ui .lightbox-nav {
    opacity: 0.7;
}

.lightbox.show-ui .lightbox-nav:hover {
    opacity: 1;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: #ffffff;
    font-size: 0.82rem;
    background: rgba(0, 0, 0, 0.45);
    padding: 6px 10px;
    border-radius: 999px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

@media (max-width: 900px) {
    .lightbox-layout {
        grid-template-columns: 1fr;
    }

    #lightboxImage {
        max-height: 52vh;
    }
}

@media (max-width: 700px) {
    .lightbox-stage {
        padding: 64px 14px 18px;
    }

    .lightbox-nav {
        width: 48px;
        height: 48px;
        font-size: 34px;
    }

    .lightbox-prev {
        left: 12px;
    }

    .lightbox-next {
        right: 12px;
    }

    .lightbox-close {
        top: 12px;
        right: 12px;
        width: 44px;
        height: 44px;
        font-size: 28px;
    }
}

@media (hover: none) and (pointer: coarse) {
    .lightbox-nav {
        display: none;
    }

    .lightbox-close {
        opacity: 0.85;
    }
}

/* Site header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(247, 247, 247, 0.92);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.site-header__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.site-header__brand {
    display: inline-flex;
    align-items: center;
    margin-right: auto;
    line-height: 0;
    text-decoration: none;
}

.site-brand-logo {
    display: block;
    width: 364px;
    height: 100px;
    object-fit: contain;
    flex-shrink: 0;
}

.site-header__nav {
    display: flex;
    gap: 18px;
}

.site-header__nav a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.92rem;
}

.site-header__nav a.is-active,
.site-header__nav a:hover {
    color: var(--text);
}

.site-header__collection {
    border: 1px solid var(--border);
    background: #fff;
    border-radius: 999px;
    padding: 8px 14px;
    font: inherit;
    font-size: 0.88rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.site-header__collection-count {
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    background: var(--text);
    color: #fff;
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

body.collection-open {
    overflow: hidden;
}

/* Landing hero */

.hero {
    max-width: 1320px;
    margin: 0 auto;
    padding: 48px 24px 32px;
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.25fr);
    gap: 40px;
    align-items: center;
}

.hero__eyebrow {
    margin: 0 0 10px;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.hero__title {
    margin: 0 0 16px;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.05;
    font-weight: 600;
}

.hero__lead {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
    max-width: 42ch;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.92rem;
    border: 1px solid transparent;
}

.hero__btn--primary {
    background: var(--text);
    color: #fff;
}

.hero__btn--ghost {
    border-color: var(--border);
    color: var(--text);
    background: #fff;
}

/* Carousel */

.carousel {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #e9e9e9;
    min-height: 420px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.carousel__track {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 420px;
}

.carousel__slide {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.carousel__slide.is-active {
    opacity: 1;
    z-index: 1;
}

.carousel__slide img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
}

.carousel__caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 48px 20px 18px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.62), transparent);
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.88rem;
}

.carousel__caption strong {
    font-size: 1rem;
}

.carousel__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    color: #111;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.carousel__btn--prev {
    left: 14px;
}

.carousel__btn--next {
    right: 14px;
}

.carousel__dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 14px;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.carousel__dot {
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    padding: 0;
}

.carousel__dot.is-active {
    background: #fff;
    width: 22px;
}

.intro {
    padding-top: 20px;
    padding-bottom: 72px;
}

.intro h2 {
    margin: 0 0 10px;
    font-size: 1.35rem;
}

.intro p {
    color: var(--muted);
    line-height: 1.65;
}

.intro__list {
    margin: 18px 0 24px;
    padding-left: 1.2rem;
    color: var(--muted);
    line-height: 1.7;
}

/* Collection drawer */

.collection-drawer[hidden] {
    display: none !important;
}

.collection-drawer {
    position: fixed;
    inset: 0;
    z-index: 1100;
}

.collection-drawer__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.collection-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(420px, 100%);
    height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
}

.collection-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid var(--border);
}

.collection-drawer__header h2 {
    margin: 0;
    font-size: 1.1rem;
}

.collection-drawer__close {
    border: 0;
    background: transparent;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: var(--muted);
}

.collection-drawer__body {
    flex: 1;
    overflow-y: auto;
    padding: 18px 20px;
}

.collection-drawer__footer {
    padding: 16px 20px 20px;
    border-top: 1px solid var(--border);
}

.collection-field {
    margin-bottom: 18px;
}

.collection-field__label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
}

.collection-items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
}

.collection-item {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    gap: 12px;
    align-items: start;
}

.collection-item__thumb {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 8px;
    background: #eee;
}

.collection-item__title {
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.3;
}

.collection-item__meta,
.collection-item__price {
    font-size: 0.82rem;
    color: var(--muted);
}

.collection-item__remove {
    border: 0;
    background: transparent;
    color: var(--muted);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.collection-empty {
    color: var(--muted);
    font-size: 0.92rem;
}

.collection-summary {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    display: grid;
    gap: 8px;
}

.collection-summary__row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.92rem;
}

.collection-summary__row--total {
    margin-top: 6px;
    padding-top: 10px;
    border-top: 1px solid var(--border);
    font-weight: 600;
}

.shop-toggle--light .shop-toggle__btn {
    border-color: var(--border);
    background: #fff;
    color: var(--text);
}

.shop-toggle--light .shop-toggle__btn.is-active {
    background: var(--text);
    color: #fff;
    border-color: var(--text);
}

.shop-buy-btn--dark {
    background: var(--text);
    color: #fff;
}

.shop-footnote--light {
    color: var(--muted);
}

.shop-added {
    margin: 0;
    font-size: 0.84rem;
    color: #2f7a3f;
}

/* Classic lightbox */

.lightbox-stage--classic {
    flex-direction: column;
    justify-content: center;
    padding: 72px 88px 40px;
}

.lightbox-stage--classic #lightboxImage {
    max-height: calc(100vh - 220px);
}

.lightbox-meta--centered {
    margin-top: 18px;
    max-width: min(760px, 100%);
    text-align: center;
    color: #f3f3f3;
}

.lightbox-meta--centered h2:empty,
.lightbox-meta--centered p:empty {
    display: none;
}

.lightbox-meta--centered h2 {
    margin: 0 0 8px;
    font-size: 1.15rem;
}

.lightbox-meta--centered p {
    margin: 0 0 16px;
    color: #d0d0d0;
    line-height: 1.5;
}

.lightbox-buy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 20px;
    border-radius: 999px;
    background: #fff;
    color: #111;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
}

.lightbox-stage--classic .lightbox-counter {
    position: fixed;
    bottom: 20px;
    right: 24px;
}

/* Product page */

.product-back {
    margin: 0 0 24px;
}

.product {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 40px;
    align-items: start;
}

.product__media {
    border-radius: 14px;
    overflow: hidden;
    background: #e9e9e9;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.product__image {
    display: block;
    width: 100%;
    height: auto;
}

.product__eyebrow {
    margin: 0 0 8px;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.product__title {
    margin: 0 0 12px;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    line-height: 1.15;
}

.product__caption {
    margin: 0 0 24px;
    color: var(--muted);
    line-height: 1.6;
}

.shop-panel--light {
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
}

.shop-panel--light .shop-field__label {
    color: var(--muted);
}

.shop-price--light .shop-price__row {
    color: var(--text);
}

.product-view-collection {
    width: 100%;
    margin-top: 10px;
    border: 0;
    background: transparent;
    color: var(--text);
    font: inherit;
    font-size: 0.88rem;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
}

@media (max-width: 900px) {
    .product {
        grid-template-columns: 1fr;
    }

    .lightbox-stage--classic {
        padding: 64px 20px 32px;
    }
}

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        padding-top: 28px;
    }

    .carousel,
    .carousel__track,
    .carousel__slide img {
        min-height: 320px;
    }

    .site-header__inner {
        padding: 12px 16px;
    }

    .site-brand-logo {
        width: min(364px, calc(100vw - 32px));
        height: auto;
        aspect-ratio: 364 / 100;
    }

    .site-header__nav {
        display: none;
    }
}

/* Art Collector */

.collector-hero {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(300px, 420px);
    gap: 40px;
    align-items: start;
    padding-top: 48px;
    padding-bottom: 48px;
}

.collector-hero__eyebrow {
    margin: 0 0 10px;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.collector-hero__title {
    margin: 0 0 16px;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.05;
}

.collector-hero__lead {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
    max-width: 46ch;
}

.collector-hero__price {
    margin: 24px 0 8px;
    font-size: 1.8rem;
    font-weight: 600;
}

.collector-hero__price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--muted);
}

.collector-hero__meta {
    margin: 0;
    font-size: 0.88rem;
    color: var(--muted);
}

.collector-hero__card {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.collector-hero__card h2 {
    margin: 0 0 10px;
    font-size: 1.25rem;
}

.collector-form__intro {
    margin: 0 0 20px;
    color: var(--muted);
    line-height: 1.55;
    font-size: 0.92rem;
}

.collector-form {
    display: grid;
    gap: 14px;
}

.collector-form__field {
    display: grid;
    gap: 6px;
}

.collector-form__field span {
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
}

.collector-form__field input {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 14px;
    font: inherit;
}

.collector-form__submit {
    margin-top: 4px;
}

.collector-notice {
    padding: 16px;
    border-radius: 12px;
    background: #f3f3f3;
    line-height: 1.55;
}

.collector-notice p {
    margin: 8px 0 0;
    color: var(--muted);
}

.collector-notice--success {
    background: #eef6ef;
    border: 1px solid #cfe3d1;
}

.collector-details {
    padding-bottom: 72px;
}

.collector-details h2 {
    margin: 0 0 12px;
    font-size: 1.25rem;
}

.collector-steps {
    margin: 0 0 32px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 18px;
}

.collector-steps li {
    display: grid;
    gap: 4px;
    padding-left: 28px;
    position: relative;
}

.collector-steps li::before {
    content: counter(step);
    counter-increment: step;
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background: var(--text);
    color: #fff;
    font-size: 0.72rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collector-steps {
    counter-reset: step;
}

.collector-steps span {
    color: var(--muted);
    line-height: 1.55;
    font-size: 0.94rem;
}

.collector-note {
    color: var(--muted);
    line-height: 1.65;
}

@media (max-width: 900px) {
    .collector-hero {
        grid-template-columns: 1fr;
        padding-top: 28px;
    }
}