/* Reset básico */
@font-face {
    font-family: 'ABC Favorit Mono';
    src: url('./fonts/ABCFavoritMono-Light.otf') format('opentype');
    font-style: normal;
    font-weight: 300;
    font-display: swap;
}

/* Profile Page */
.profile-page {
    width: min(1728px, 100vw);
    margin: 0 auto;
    background: #fff;
    padding-bottom: 0;
}

.profile-namebar {
    width: 100%;
    padding: 37px 16px 36px;
    text-align: center;
}

.profile-namebar h1 {
    margin: 0;
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
}

.profile-image-block {
    width: 375px;
    max-width: calc(100vw - 32px);
    margin: 0 auto;
}

.profile-image-block img {
    width: 100%;
    height: auto;
    aspect-ratio: 375 / 458;
    object-fit: cover;
    display: block;
}

.profile-bio {
    width: 100%;
    max-width: 1106px;
    margin: 65px auto 0;
    margin-bottom: 140px;
    text-align: center;
    padding: 0 16px;
}

.profile-bio h2 {
    margin: 0 0 45px;
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
}

.profile-bio p {
    margin: 0;
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.4;
}

.profile-contact {
    width: 100%;
    max-width: 1106px;
    margin: 54px auto 0;
    text-align: center;
    padding: 0 16px;
}

.profile-contact h3 {
    margin: 0 0 28px;
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
}

.profile-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
}

.profile-contact-item {
    text-align: center;
}

.profile-contact-label {
    margin: 0 0 8px;
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.2;
}

.profile-contact-value,
.profile-contact-value a {
    margin: 0;
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.2;
    color: #000;
    text-decoration: none;
}

/* Foundation detail page */
.foundation-detail-page {
    width: min(1728px, 100vw);
    margin: 0 auto;
    background: #fff;
    padding: 0 0 40px;
}

body.foundation-page-body {
    background: #fff !important;
}

.foundation-detail-wrap {
    width: 100%;
    max-width: 1106px;
    margin: 0 auto;
    padding: 0 16px;
    text-align: center;
}

.foundation-detail-subtitle {
    margin: 0 0 32px;
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
}

.foundation-detail-wrap h2 {
    margin: 0 0 14px;
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
}

.foundation-detail-wrap p,
.foundation-detail-wrap li {
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.4;
    text-align: center;
}

.foundation-detail-wrap p {
    margin: 0 0 14px;
}

.foundation-detail-wrap ul {
    margin: 0 0 14px;
    padding: 0;
    list-style: none;
}

.foundation-detail-wrap li::before {
    content: "• ";
}

.foundation-detail-wrap hr {
    border: 0;
    border-top: 1px solid #d7d7d7;
    margin: 28px 0;
}

@media (max-width: 1100px) {
    .profile-page {
        padding-bottom: 0;
    }

    .profile-namebar {
        padding: 28px 16px 24px;
    }

    .profile-namebar h1 {
        font-size: 18px;
    }

    .profile-bio {
        margin-top: 100px;
        margin-bottom: 100px;
        padding: 0 31px;
    }

    .profile-bio h2 {
        margin-bottom: 28px;
    }

    .profile-contact {
        margin-top: 40px;
        padding: 0 24px;
    }

    .profile-contact-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .foundation-detail-page {
        padding: 0 0 28px;
    }

    .foundation-detail-wrap {
        max-width: 1106px;
        padding: 0 31px;
    }

    .foundation-detail-subtitle {
        font-size: 16px;
        line-height: 18px;
        margin-bottom: 24px;
    }

    .foundation-detail-wrap h2 {
        font-size: 16px;
        line-height: 18px;
        margin-bottom: 12px;
    }

    .foundation-detail-wrap p,
    .foundation-detail-wrap li {
        font-size: 14px;
        line-height: 1.4;
    }
}

@font-face {
    font-family: 'ABC Favorit Mono';
    src: url('./fonts/ABCFavoritMono-Regular.otf') format('opentype');
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'ABC Favorit Mono', monospace;
    background-color: #ffffff;
    color: #000000;
    min-height: 100vh;
    overflow-x: hidden;
    padding-top: 104px;
}

a,
a:visited,
a:hover,
a:active {
    color: #000;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 104px;
    width: min(1728px, 100vw);
    margin: 0;
    background: #ffffff;
    z-index: 1000;
    /* Anti-FOUC: el CSS crítico inline del <head> pone visibility:hidden en el
       header; aquí lo re-mostramos, así el header solo aparece ya con estilo. */
    visibility: visible;
}

.header-bg {
    display: none;
}

.header-content {
    position: relative;
    height: 100%;
    padding: 0;
}

.logo {
    position: absolute;
    top: 38px;
    left: 8px;
    width: 122px;
    height: 36px;
    font-family: 'Albert Sans', sans-serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 36px;
    margin: 0;
    text-align: center;
    text-decoration: none;
    color: #000;
    display: block;
}

.nav {
    position: absolute;
    right: 30px;
    top: 52px;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 12px;
    font-weight: 300;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.68);
    transition: opacity 0.3s;
}

.nav-link.is-active {
    font-weight: 400;
    color: #000000;
    opacity: 1;
}

.nav .nav-link.is-active:visited,
.nav .nav-link.is-active:hover,
.nav .nav-link.is-active:active {
    color: #000000;
    opacity: 1;
}

.nav-link:hover {
    opacity: 0.7;
}

.nav .nav-link {
    position: relative;
}

.nav-cart-link {
    display: none;
    align-items: center;
    justify-content: center;
    width: 24px;
    min-width: 24px;
    height: 24px;
    padding: 0;
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    margin: 0 -12px 0 -10px;
    pointer-events: none;
}

.nav-cart-link.is-visible {
    display: inline-flex;
    pointer-events: auto;
}

.nav-cart-icon {
    width: 24px;
    height: 24px;
    display: block;
}

.nav-cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    min-width: 16px;
    height: 16px;
    border-radius: 999px;
    background: #eac12c;
    color: #000;
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 9px;
    line-height: 16px;
    text-align: center;
    padding: 0 4px;
    font-weight: 400;
    pointer-events: none;
}

.nav-toggle {
    display: none;
    border: none;
    background: transparent;
    width: 40px;
    height: 40px;
    padding: 0;
    cursor: pointer;
    position: relative;
}

.nav-toggle span {
    position: absolute;
    left: 50%;
    width: 100%;
    height: 1px;
    background: #111;
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.nav-toggle span:nth-child(1) {
    top: 25%;
    transform: translateX(-50%);
}

.nav-toggle span:nth-child(2) {
    top: 50%;
    transform: translate(-50%, -50%);
}

.nav-toggle span:nth-child(3) {
    top: 75%;
    transform: translateX(-50%);
}

.nav-toggle.is-open span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(90deg);
}

.nav-toggle.is-open span:nth-child(1),
.nav-toggle.is-open span:nth-child(3) {
    opacity: 1;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 6px;
}

.lang-btn {
    border: none;
    background: transparent;
    padding: 0;
    color: #000000;
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 12px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    opacity: 0.55;
}

.lang-btn.is-active {
    opacity: 1;
    font-weight: 400;
}

.lang-sep {
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 12px;
    font-weight: 300;
    line-height: 1;
}

/* Hero Section */
.hero {
    position: relative;
    width: min(1728px, 100vw);
    height: 847px;
    margin: 0 auto;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

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

.quote-box {
    position: absolute;
    top: 41.79%;
    left: 50%;
    transform: translateX(-50%);
    width: min(1005px, calc(100vw - 40px));
    max-width: none;
    height: auto;
    min-height: 138px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.quote-box-inner {
    width: 100%;
    text-align: center;
}

.quote-text {
    font-family: 'ABC Favorit Mono', monospace;
    width: 1005px;
    max-width: 100%;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 31px;
    text-align: center;
    color: #000000;
    margin: 0;
}

/* H1 del autor — misma tipografía que quote-text */
.quote-author {
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 20px;
    font-weight: 300;
    line-height: 31px;
    text-align: center;
    color: #000000;
    margin: 0;
}

/* Tagline bajo el autor */
.quote-tagline {
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    text-align: center;
    color: #888888;
    margin: 4px 0 0;
    letter-spacing: 0.04em;
}

/* Gallery Section */
.gallery-section {
    position: relative;
    width: min(1728px, 100vw);
    margin: 0 auto;
    padding: 92px 0 120px;
    background-color: #ffffff;
}

.section-title {
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    margin-top: 35px;
    margin-bottom: 66px;
}

.gallery-container {
    width: 703px;
    margin: 0 auto;
}

.artwork-main-link {
    display: block;
    color: #000;
    text-decoration: none;
}

.gallery-image {
    width: 703px;
    height: 477px;
    object-fit: cover;
    margin-bottom: 34px;
    display: block;
}

.artwork-title {
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 3px;
}

.artwork-collection {
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 14px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 36px;
}

.artwork-link {
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 14px;
    font-weight: 300;
    text-align: center;
    display: block;
    width: fit-content;
    margin: 0 auto;
    color: #000;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s;
}

.artwork-link:hover {
    opacity: 0.7;
}

/* Gallery Navigation */
.gallery-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 397px;
    height: 24px;
    margin: 0;
}

.nav-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s;
}

.gallery-nav .nav-button:first-child {
    position: absolute;
    right: calc(50% + 539.5px);
}

.gallery-nav .nav-button:last-child {
    position: absolute;
    left: calc(50% + 539.5px);
}

.nav-button:hover {
    opacity: 0.7;
}

.nav-button:disabled {
    opacity: 0.35;
    cursor: default;
}

.nav-icon {
    width: 24px;
    height: 24px;
}

.nav-text {
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 14px;
    font-weight: 300;
}

/* Collections Section */
.collections-section {
    padding: 7px 2rem 205px;
    background-color: #ffffff;
}

.collections-section .section-title {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-top: 0;
    margin-bottom: 66px;
}

.collections-section .section-title::before,
.collections-section .section-title::after {
    content: "";
    display: block;
    width: min(24vw, 280px);
    border-top: 1px solid rgba(0, 0, 0, 0.16);
}

.collections-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 19px;
    margin: 0 auto;
}

.collection-card {
    position: relative;
    cursor: pointer;
    flex: 0 1 430px;
    width: min(430px, calc(100vw - 40px));
}

.collection-image-wrapper {
    position: relative;
    height: 436px;
    overflow: hidden;
}

.collection-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collection-overlay {
    position: absolute;
    inset: 0;
    background-color: #e9dede;
    mix-blend-mode: screen;
    opacity: 0.92;
    transition: opacity 0.28s ease;
    pointer-events: none;
}

.collection-image-wrapper:hover .collection-overlay,
.collection-card:hover .collection-overlay,
.collection-card:focus-within .collection-overlay {
    opacity: 0;
}

.collection-card.is-centered-mobile .collection-overlay {
    opacity: 0;
}

.collection-title {
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    margin-top: 27px;
    margin-bottom: 3px;
}

.collection-date {
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 14px;
    font-weight: 300;
    text-align: center;
    margin-top: 0;
}

/* Foundation Section */
.foundation-section {
    width: min(1728px, 100vw);
    height: 331px;
    margin: 0 auto;
    padding: 46px 2rem 36px;
    background-color: #fff8d1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.foundation-title {
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    margin: 0 0 23px;
}

.foundation-text {
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 16px;
    font-weight: 300;
    text-align: center;
    max-width: 56rem;
    margin: 0 auto 96px;
}

/* Footer */
.footer {
    width: min(1728px, 100vw);
    margin: 0 auto;
    padding: 0 2rem 26px;
    background-color: #fff8d1;
    position: relative;
    z-index: 2;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.footer-link {
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
    color: #000000;
    transition: opacity 0.3s;
}

.footer-link:hover {
    opacity: 0.7;
}

.footer-copyright {
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    text-align: center;
    text-transform: uppercase;
    opacity: 0.4;
    margin: 0;
}

.footer-copyright a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.footer-copyright a:hover {
    border-bottom-color: currentColor;
}

.legal-page {
    width: min(1728px, 100vw);
    margin: 0 auto;
    background: #fff8d1;
    padding: 132px 32px 32px;
}

.legal-content {
    max-width: 980px;
    margin: 0 auto;
    color: #000;
    font-family: 'ABC Favorit Mono', monospace;
}

.legal-content h1 {
    font-size: 28px;
    font-weight: 400;
    margin: 0 0 24px;
}

.legal-content h2 {
    font-size: 18px;
    font-weight: 400;
    margin: 0 0 10px;
}

.legal-content p,
.legal-content li {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.55;
}

.legal-content ul {
    margin: 0 0 24px 18px;
    padding: 0;
}

.legal-content hr {
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    margin: 26px 0;
}

.legal-footer {
    padding-top: 8px;
}

/* Responsive */
@media (max-width: 1100px) {
    .nav-cart-link {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        margin: 2px 0 0;
        display: none;
    }

    .nav-cart-link.is-visible {
        display: inline-flex;
    }

    body {
        padding-top: 78px;
    }

    .header {
        height: 78px;
    }

    .logo {
        top: 50%;
        left: 16px;
        transform: translateY(-50%);
        width: auto;
        height: auto;
        font-size: 34px;
        line-height: 1;
        text-align: left;
    }

    .nav {
        display: none;
        top: 78px;
        left: 0;
        right: 0;
        gap: 12px;
        overflow: visible;
        white-space: normal;
        scrollbar-width: auto;
        background: #fff;
        border-top: 1px solid #ececec;
        padding: 14px 16px 16px;
        flex-direction: column;
        align-items: flex-start;
    }

    .nav.is-open {
        display: flex;
    }

    .nav-toggle {
        display: block;
        position: absolute;
        right: 16px;
        top: 50%;
        width: 28px;
        height: 22px;
        transform: translateY(-50%);
    }

    .nav-link,
    .lang-switch {
        flex: 0 0 auto;
    }

    .hero {
        width: 100%;
        height: min(72vh, 640px);
    }

    .quote-box {
        top: calc(60% - 50px) !important;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100vw - 28px);
        height: auto;
        min-height: 110px;
        padding: 16px 14px;
    }

    .quote-text {
        width: 100%;
        font-size: 17px;
        line-height: 1.45;
    }

    .gallery-section {
        width: 100%;
        padding: 148px 16px 78px;
        }

    .section-title {
        margin-top: 0;
        margin-bottom: 26px;
    }

    .gallery-container {
        width: 100%;
        max-width: 703px;
    }

    .gallery-image {
        width: 100%;
        height: auto;
        aspect-ratio: 703 / 477;
        margin-top: 34px;
        margin-bottom: 34px;
    }

    .artwork-title {
        margin-top: 10px;
        margin-bottom: 5px;
    }

    .artwork-collection {
        margin-bottom: 20px;
    }

    .gallery-nav {
        position: static;
        height: auto;
        margin-top: 16px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .gallery-nav .nav-button:first-child,
    .gallery-nav .nav-button:last-child {
        position: static;
    }

    .collections-section {
        padding: 38px 16px 92px;
    }

    .collections-section .section-title {
        gap: 14px;
        margin-bottom: 66px;
    }

    .collections-section .section-title::before,
    .collections-section .section-title::after {
        width: min(18vw, 80px);
    }

    .collections-grid {
        gap: 44px;
    }

    .collection-card {
        flex: 1 1 100%;
        width: 100%;
        max-width: 520px;
    }

    .collection-image-wrapper {
        height: auto;
        aspect-ratio: 430 / 436;
    }

    .collection-title {
        margin-top: 16px;
    }

    .collection-image-wrapper:hover .collection-overlay,
    .collection-card:hover .collection-overlay,
    .collection-card:focus-within .collection-overlay {
        opacity: 0.92;
    }

    .collection-card.is-centered-mobile .collection-overlay {
        opacity: 0;
    }

    .foundation-section {
        width: 100%;
        height: auto;
        padding: 32px 16px 26px;
    }

    .foundation-text {
        font-size: 14px;
        margin-bottom: 34px;
    }

    .footer {
        width: 100%;
        margin: 0 auto;
        padding: 0 16px 24px;
    }

    .footer-link,
    .footer-copyright {
        font-size: 11px;
    }

    .legal-page {
        padding: 108px 16px 20px;
    }

    .legal-content h1 {
        font-size: 21px;
    }

    .legal-content h2 {
        font-size: 16px;
    }

    .legal-content p,
    .legal-content li {
        font-size: 14px;
    }
}

@media (max-width: 640px) {
    .logo {
        font-size: 32px;
    }

    .quote-text {
        font-size: 15px;
    }

    .nav-text {
        font-size: 12px;
    }

    .nav-icon {
        width: 20px;
        height: 20px;
    }
}

/* Collection Detail Page */
.collection-page {
    width: min(1728px, 100vw);
    margin: 0 auto;
    background: #fff;
    padding-bottom: 120px;
}

.collection-titlebar {
    width: 100%;
    padding: 40px 16px 43px;
    text-align: center;
    position: sticky;
    top: 104px;
    z-index: 950;
    background: #fff;
}

/* h1 y h2 comparten exactamente los mismos estilos dentro del titlebar */
.collection-titlebar h1,
.collection-titlebar h2 {
    margin: 0 auto;
    max-width: 980px;
    font-family: 'ABC Favorit Mono', monospace;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.25;
}

.collection-media {
    width: 100%;
    padding: 0 30px;
}

.collection-media-frame {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.collection-media-frame iframe,
.collection-media-frame img {
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
}

.collection-media-fallback {
    position: relative;
}

.collection-media-fallback p {
    position: absolute;
    inset: auto 0 24px 0;
    margin: 0;
    text-align: center;
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 14px;
    font-weight: 400;
}

.collection-description {
    width: 100%;
    max-width: 1106px;
    margin: 157px auto 0;
    margin-bottom: 40px;
    text-align: center;
    padding: 0 16px;
}

.collection-description p {
    margin: 0;
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.45;
}

.collection-description .collection-date {
    margin-top: 24px;
}

.collection-pieces {
    margin-top: 157px;
}

.section-title-collection {
    margin-top: 0;
    margin-bottom: 64px;
}

.collection-gallery-wrap {
    position: relative;
    width: 100%;
    min-height: 600px;
}

.collection-gallery-main {
    width: 703px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.collection-piece-link {
    color: #000;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.collection-gallery-main .gallery-image {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 703px;
    aspect-ratio: auto;
    object-fit: contain;
    background: transparent;
    margin-bottom: 34px;
}

.collection-gallery-main .artwork-title {
    margin-bottom: 3px;
}

.collection-gallery-main .artwork-collection {
    margin-bottom: 0;
}

.collection-nav {
    position: absolute;
    top: 188px;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 14px;
    font-weight: 300;
}

.collection-nav-prev {
    right: calc(50% + 539.5px);
}

.collection-nav-next {
    left: calc(50% + 539.5px);
}

.collection-nav:disabled {
    opacity: 0.35;
    cursor: default;
}

.collection-more-link {
    margin: 113px auto 0;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #000;
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 14px;
    font-weight: 300;
}

.collection-more-link span {
    font-size: 20px;
    line-height: 1;
}

.collection-not-found {
    width: 100%;
    min-height: calc(100vh - 104px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
}

.collection-not-found h2,
.collection-not-found a {
    font-family: 'ABC Favorit Mono', monospace;
    color: #111;
}

/* Collections List Page */
.collections-list-page {
    width: min(1728px, 100vw);
    margin: 0 auto;
    background: #fff;
    padding-bottom: 120px;
}

.collections-list-titlebar {
    width: 100%;
    padding: 38px 16px 32px;
    text-align: center;
}

.collections-list-titlebar h1 {
    margin: 0;
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
}

.store-subtitlebar {
    width: 100%;
    padding: 10px 16px 0;
    margin: 0 0 52px;
    text-align: center;
    background: #fff;
}

.store-subtitlebar h2 {
    margin: 0 auto;
    max-width: 1106px;
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.15;
    text-align: center;
}

.nft-page {
    width: min(1728px, 100vw);
    margin: 0 auto;
    background: #fff;
    padding-bottom: 96px;
}

.nft-introbar {
    width: 100%;
    padding: 10px 16px 0;
    margin: 0 0 52px;
    text-align: center;
}

.nft-introbar p {
    margin: 0 auto;
    max-width: 1106px;
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.15;
}

.nft-experience-wrap {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 16px;
}

.nft-experience-frame {
    width: 100%;
    min-height: 900px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #0a0a09;
}

.collections-vertical-list {
    width: 100%;
    max-width: 824px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    gap: 78px;
}

.collection-vertical-item {
    display: block;
    color: #000;
    text-decoration: none;
}

.collection-vertical-item.is-hidden-by-limit {
    display: none !important;
}

.collection-vertical-image-wrap {
    width: 100%;
    aspect-ratio: 821 / 605;
    background: transparent;
    overflow: hidden;
}

.collection-vertical-image-wrap.has-back-image {
    position: relative;
}

.collection-vertical-image-wrap.is-video {
    aspect-ratio: 16 / 9;
}

.collection-vertical-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: transparent;
}

.collection-vertical-image.is-temporal {
    object-fit: cover;
    object-position: center;
}

.collection-vertical-image-wrap.has-back-image .collection-vertical-image {
    position: absolute;
    inset: 0;
    transition: opacity 0.28s ease;
}

.collection-vertical-image-wrap.has-back-image .collection-vertical-image.image-front {
    opacity: 1;
}

.collection-vertical-image-wrap.has-back-image .collection-vertical-image.image-back {
    opacity: 0;
}

@media (hover: hover) and (pointer: fine) {
    .collection-vertical-item:hover .collection-vertical-image-wrap.has-back-image .collection-vertical-image.image-front,
    .collection-vertical-item:focus-visible .collection-vertical-image-wrap.has-back-image .collection-vertical-image.image-front {
        opacity: 0;
    }

    .collection-vertical-item:hover .collection-vertical-image-wrap.has-back-image .collection-vertical-image.image-back,
    .collection-vertical-item:focus-visible .collection-vertical-image-wrap.has-back-image .collection-vertical-image.image-back {
        opacity: 1;
    }
}

.collection-vertical-video {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    background: transparent;
}

.collection-vertical-title {
    margin-top: 38px;
    margin-bottom: 0;
    text-align: center;
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 14px;
    font-weight: 400;
    line-height: 27px;
}

.collection-vertical-date {
    margin-top: 0;
    margin-bottom: 0;
    text-align: center;
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 14px;
    font-weight: 300;
    line-height: 27px;
}

/* ── Subrayado unificado en links de obra y colección ────────────────────────
   El título y la fecha/colección de todos los links de navegación muestran
   siempre subrayado para indicar que son clicables. Se aplica en:
   - Página galería, tienda y colecciones (collection-vertical-item como <a>)
   - Página de colección individual (collection-piece-link)
   - Página de perfil / inicio (collection-card generado por JS)
   Los botones anterior/siguiente (collection-nav) son <button>, no se afectan. */
a.collection-vertical-item .collection-vertical-title,
a.collection-vertical-item .collection-vertical-date,
.collection-piece-link .artwork-title,
.collection-piece-link .artwork-collection,
a.collection-card .collection-title,
a.collection-card .collection-date,
a.artwork-main-link .artwork-title,
a.artwork-main-link .artwork-collection {
    text-decoration: underline;
}

.gallery-load-more-wrap {
    width: min(1106px, calc(100vw - 32px));
    margin: 34px auto 0;
    display: flex;
    justify-content: center;
}

.gallery-load-more-btn {
    border: 1px solid #d6d6d6;
    background: #fff;
    color: #111;
    border-radius: 0;
    padding: 8px 10px;
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.2;
    cursor: pointer;
}

.gallery-filter-wrap {
    width: min(1106px, calc(100vw - 32px));
    margin: 8px auto 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.gallery-filter-btn {
    border: 1px solid #d6d6d6;
    background: #fff;
    color: #111;
    border-radius: 0;
    padding: 8px 10px;
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.2;
    cursor: pointer;
}

.gallery-filter-btn.is-active {
    background: #111;
    color: #fff;
    border-color: #111;
}

@media (max-width: 1100px) {
    .nft-experience-wrap {
        padding: 0;
    }

    .collection-titlebar {
        top: 78px;
    }

    .collection-titlebar {
        padding: 28px 16px 20px;
    }

    .collection-titlebar h1,
    .collection-titlebar h2 {
        font-size: 16px;
    }

    .collection-media {
        padding: 0 16px;
    }

    .collection-description {
        margin-top: 80px;
        margin-bottom: 0;
        padding: 0 31px 45px;
    }

    .collection-pieces {
        margin-top: 0;
        padding: 0 16px;
    }

    .collection-gallery-wrap {
        min-height: 0;
    }

    .collection-gallery-main {
        width: 100%;
        max-width: 703px;
    }

    .collection-gallery-main .gallery-image {
        max-height: 72vh;
    }

    .collection-nav {
        position: static;
        transform: none;
    }

    .collection-gallery-wrap {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "main main"
            "prev next";
        row-gap: 16px;
        align-items: center;
    }

    .collection-gallery-main {
        grid-area: main;
    }

    .collection-nav-prev {
        grid-area: prev;
        order: 2;
        align-self: center;
        justify-self: start;
        margin-top: 25px;
    }

    .collection-nav-next {
        grid-area: next;
        order: 3;
        align-self: center;
        justify-self: end;
        margin-top: 25px;
    }

    .collection-more-link {
        margin-top: 34px;
    }

    .section-title.section-title-collection {
        margin-top: 40px !important;
        margin-bottom: 32px !important;
    }

    .collections-list-titlebar {
        padding: 26px 16px 24px;
    }

    .store-subtitlebar {
        padding: 8px 16px 0;
        margin-bottom: 30px;
    }

    .store-subtitlebar h2 {
        font-size: 13px;
        line-height: 1.15;
    }

    .nft-page {
        padding-bottom: 72px;
    }

    .nft-introbar {
        padding: 0 16px 14px;
    }

    .nft-introbar p {
        font-size: 13px;
        line-height: 1.45;
    }

    .nft-experience-wrap {
        padding: 0;
    }

    .nft-experience-frame {
        min-height: 760px;
        border-left: none;
        border-right: none;
    }

    .gallery-filter-wrap {
        margin: 0 auto 26px;
        gap: 10px;
    }

    .gallery-filter-btn {
        padding: 8px 10px;
        font-size: 12px;
    }

    .collections-vertical-list {
        max-width: 824px;
        gap: 44px;
        padding: 0 16px;
    }

    .collection-vertical-title {
        margin-top: 18px;
        line-height: 1.35;
    }

    .collection-vertical-date {
        line-height: 1.35;
    }

    .gallery-load-more-wrap {
        margin-top: 24px;
    }

    .gallery-load-more-btn {
        padding: 8px 10px;
        font-size: 12px;
    }
}

/* Piece Page */
.piece-page {
    width: min(1728px, 100vw);
    margin: 0 auto;
    background: #fff;
}

.piece-titlebar {
    width: 100%;
    padding: 39px 16px 38px;
    text-align: center;
    position: sticky;
    top: 104px;
    z-index: 950;
    background: #fff;
}

.piece-titlebar h1 {
    margin: 0 auto;
    max-width: 980px;
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.1;
    text-transform: uppercase;
}

.piece-artwork-wrap {
    position: relative;
    width: 100%;
    min-height: 648px;
    margin: 0 auto;
    padding: 0 16px;
    display: grid;
    grid-template-columns: minmax(120px, 1fr) minmax(0, 931px) minmax(120px, 1fr);
    align-items: center;
    column-gap: 24px;
}

.piece-artwork-wrap.has-series {
    grid-template-columns: 227px fit-content(931px) 210px 227px;
    justify-content: center;
    column-gap: 6px;
    align-items: stretch;
}

.piece-artwork-wrap.has-series .piece-artwork-image {
    height: 648px;
    width: auto;
    max-width: 931px;
    max-height: none;
    object-fit: contain;
    justify-self: end;
}

.piece-artwork-image {
    display: block;
    /* width: auto para que el navegador calcule el tamaño respetando max-width y la
       proporción original sin forzar el ancho al 100% del contenedor.
       Sin max-height: las imágenes landscape (ratio > 1) se escalan a max-width y su
       alto resultante ya queda bajo 648px. Las imágenes portrait (ratio < 1) como
       "la-ballena-y-yo" se muestran a ancho completo (931px) en lugar de quedar
       comprimidas a ~320px por el límite max-height: 648px anterior. */
    width: auto;
    height: auto;
    max-width: 931px;
    margin: 0 auto;
    object-fit: contain;
    background: transparent;
    grid-column: 2;
    justify-self: center;
}

.piece-artwork-image.is-temporal {
    /* aspect-ratio se fija inline desde PHP con las dimensiones reales de la obra original */
    height: auto;
    max-height: 648px;
    width: auto;
    max-width: 931px;
    object-fit: cover;
    object-position: center;
}

/* En modo serie: altura fija 648px igual que la obra original,
   el aspect-ratio inline de PHP fija el ancho correcto automáticamente */
.piece-artwork-wrap.has-series .piece-artwork-image.is-temporal {
    height: 648px;
    width: auto;
    max-width: 931px;
}

.piece-nav {
    position: static;
    top: auto;
    transform: none;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 14px;
    font-weight: 300;
    color: #000;
}

.piece-nav-prev {
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
    align-self: center;
}

.piece-nav-next {
    grid-column: 3;
    grid-row: 1;
    justify-self: center;
    align-self: center;
}

.piece-audio-btn {
    display: none;
}

.piece-series-thumbs {
    grid-column: 3;
    grid-row: 1;
    width: 210px;
    height: 648px;
    display: flex;
    flex-direction: column-reverse;
    gap: 9px;
    align-self: stretch;
    justify-self: start;
}

.piece-series-thumb {
    display: block;
    width: 100%;
    height: auto;
    flex: 1 1 0;
    border: 1px solid #d0d0d0;
    background: #fff;
    overflow: hidden;
}

.piece-series-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: filter .2s ease, opacity .2s ease;
}

.piece-series-thumb.is-inactive img {
    filter: blur(2px) saturate(0.86);
    opacity: .72;
}

.piece-series-thumb.is-active {
    border-color: #000;
}

.piece-artwork-wrap.has-series .piece-nav-next {
    grid-column: 4;
    grid-row: 1;
}

.piece-content {
    width: 100%;
    max-width: 1106px;
    margin: 109px auto 0;
    text-align: center;
    padding: 0 16px 138px;
}

.piece-content h2 {
    margin: 0;
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase;
}

/* ── Player de audio inline (bajo el título de la obra) ── */
.piece-inline-audio {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
    cursor: pointer;
    user-select: none;
}
.piece-inline-audio-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #888;
}
.piece-inline-audio-dot {
    width: 3px;
    height: 3px;
    background: #bbb;
    border-radius: 50%;
    flex-shrink: 0;
}
.piece-inline-audio-play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border: 1px solid #111;
    border-radius: 0;
    background: #fff;
    color: #111;
    cursor: pointer;
    flex-shrink: 0;
    transition: background .18s, color .18s;
    padding: 0;
}
.piece-inline-audio-play .piece-inline-play-icon { margin-left: 2px; }
.piece-inline-audio-play[aria-pressed="true"] {
    background: #111;
    color: #fff;
}
.piece-inline-audio-label {
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #444;
}

.piece-content > p {
    margin: 65px 0 0;
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.45;
}

.piece-tech-grid {
    margin-top: 49px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.piece-tech-grid p {
    margin: 0;
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.4;
}

.piece-options {
    margin-top: 113px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
}

.piece-options p,
.piece-options a,
.piece-price-btn {
    margin: 0;
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    text-decoration: none;
    color: #000;
    text-align: center;
}

.piece-price-btn {
    appearance: none;
    -webkit-appearance: none;
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
    cursor: pointer;
    display: block;
    width: 100%;
    box-shadow: none;
}

.piece-price-btn:hover {
    text-decoration: underline;
}

.piece-options a:hover {
    text-decoration: underline;
}

.piece-options p.piece-option-unavailable {
    color: #aaa;
}

@media (max-width: 1100px) {
    .piece-titlebar {
        top: 78px;
        padding: 28px 16px 24px;
    }

    .piece-titlebar h1 {
        font-size: 16px;
        line-height: 1.25;
    }

    .piece-artwork-wrap {
        min-height: 0;
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        grid-template-areas:
            "image image"
            "series series"
            "prev next";
        row-gap: 16px;
        align-items: center;
        padding: 0 16px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .piece-artwork-wrap.has-series {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        grid-template-areas:
            "image image"
            "prev next"
            "series series";
        justify-content: initial;
        column-gap: 0;
        row-gap: 12px;
        align-items: start;
    }

    .piece-artwork-wrap.has-audio-control {
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
        grid-template-areas:
            "image image image"
            "series series series"
            "prev audio next";
    }

    .piece-artwork-wrap.has-series.has-audio-control {
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
        grid-template-areas:
            "image image image"
            "prev audio next"
            "series series series";
    }

    .piece-artwork-image {
        grid-area: image;
        width: 100%;
        max-width: calc(100vw - 32px);
        max-height: 72vh;
        justify-self: center;
    }

    .piece-artwork-wrap.has-series .piece-artwork-image {
        width: calc(100vw - 32px);
        height: calc(100vw - 32px);
        max-width: calc(100vw - 32px);
        max-height: calc(100vw - 32px);
        object-fit: cover;
        object-position: center;
        justify-self: center;
    }

    .piece-artwork-image.is-temporal {
        width: 100%;
        max-width: calc(100vw - 32px);
        height: auto;
        max-height: 72vh;
        object-fit: cover;
    }

    .piece-nav {
        position: static;
        transform: none;
        top: auto;
    }

    .piece-nav-prev {
        grid-area: prev;
        justify-self: start;
    }

    .piece-nav-next {
        grid-area: next;
        justify-self: end;
    }

    .piece-audio-btn {
        grid-area: audio;
        display: inline-flex;
        align-items: center;
        gap: 7px;
        justify-self: center;
        border: 1px solid #151515;
        background: #151515;
        color: #fff;
        border-radius: 0;
        padding: 9px 14px;
        font-family: 'ABC Favorit Mono', monospace;
        font-size: 12px;
        font-weight: 400;
        line-height: 1.2;
        cursor: pointer;
        min-width: 118px;
        text-align: center;
        white-space: nowrap;
    }

    .piece-audio-btn[aria-pressed="true"] {
        background: #fff;
        color: #111;
        border-color: #d6d6d6;
    }

    .piece-audio-icon {
        font-size: 13px;
        line-height: 1;
    }

    .piece-artwork-wrap.has-series .piece-nav-prev {
        grid-area: prev;
        grid-column: auto;
        grid-row: auto;
        align-self: center;
        justify-self: start;
    }

    .piece-artwork-wrap.has-series .piece-nav-next {
        grid-area: next;
        grid-column: auto;
        grid-row: auto;
        align-self: center;
        justify-self: end;
    }

    .piece-artwork-wrap.has-series.has-audio-control .piece-audio-btn {
        grid-area: audio;
        justify-self: center;
        align-self: center;
    }

    .piece-series-thumbs {
        grid-area: series;
        grid-column: auto;
        width: calc(100vw - 32px);
        max-width: calc(100vw - 32px);
        height: auto;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-template-rows: none;
        gap: 6px;
        align-items: center;
        justify-content: center;
    }

    .piece-artwork-wrap.has-series + .piece-content,
    .piece-content.piece-content-series {
        margin-top: 40px !important;
    }

    .piece-series-thumb {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .piece-content {
        margin-top: 40px;
        padding: 0 31px 92px;
    }

    .piece-content h2 {
        font-size: 18px;
    }

    .piece-content > p {
        margin-top: 32px;
    }

    .piece-tech-grid {
        margin-top: 28px;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .piece-options {
        margin-top: 48px;
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

/* Print Page */
.lamina-page {
    width: min(1728px, 100vw);
    margin: 0 auto;
    background: #fff;
    padding-bottom: 126px;
}

.lamina-title-section {
    width: 100%;
    text-align: center;
    min-height: 114px;
    padding: 35px 16px 31px;
    position: sticky;
    top: 104px;
    z-index: 950;
    background: #fff;
}

.lamina-title-section h1 {
    margin: 0;
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase;
}

.lamina-units {
    margin: 12px 0 0;
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.2;
    text-transform: uppercase;
}

.lamina-product-grid {
    width: 100%;
    margin-top: 0;
    padding: 0 16px 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 673px));
    justify-content: center;
    gap: 26px;
}

.lamina-image-block {
    text-align: center;
}

.lamina-image {
    width: 100%;
    height: 469px;
    object-fit: cover;
    background: #f2f2f2;
    display: block;
}

.lamina-image-label {
    margin: 20px 0 0;
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.2;
}

.lamina-piece-title {
    margin: 109px auto 0;
    width: min(1106px, calc(100vw - 32px));
    text-align: center;
}

.lamina-piece-title h2 {
    margin: 0;
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase;
}

.lamina-description {
    margin: 65px auto 0;
    width: min(1106px, calc(100vw - 32px));
    text-align: center;
}

.lamina-description p {
    margin: 0;
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.45;
}

.lamina-tech-grid {
    margin: 65px auto 0;
    width: min(1106px, calc(100vw - 32px));
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.lamina-tech-grid p {
    margin: 0;
    text-align: center;
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.4;
}

.lamina-tech-grid p:nth-child(1) {
    text-align: left;
}

.lamina-tech-grid p:nth-child(2) {
    text-align: center;
}

.lamina-tech-grid p:nth-child(3) {
    text-align: right;
}

.lamina-buy {
    margin: 78px auto 0;
    width: fit-content;
}

.lamina-buy p,
.lamina-buy a {
    margin: 0;
    text-decoration: none;
    color: #000;
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase;
}

.lamina-size-prices {
    width: min(1106px, calc(100vw - 32px));
    margin: 18px auto 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.lamina-size-prices .lamina-size-pill {
    border: 1px solid #111111;
    background: #111111;
    color: #ffffff;
    border-radius: 0;
    padding: 8px 10px;
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.2;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.lamina-size-prices .lamina-size-pill:hover,
.lamina-size-prices .lamina-size-pill:focus-visible {
    background: #000000;
    border-color: #000000;
    color: #ffffff;
}

.lamina-size-prices .lamina-size-pill.is-disabled {
    opacity: 0.55;
    cursor: not-allowed;
    pointer-events: auto;
}

.lamina-remove-wrap {
    width: min(1106px, calc(100vw - 32px));
    margin: 10px auto 0;
    display: flex;
    justify-content: flex-end;
}

.lamina-remove-btn {
    border: none;
    background: transparent;
    color: #e58a8f;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 2px 4px;
    cursor: pointer;
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 11px;
    line-height: 1;
}

.lamina-remove-btn svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.lamina-remove-btn:hover {
    opacity: 0.8;
}

@media (max-width: 1100px) {
    .lamina-remove-wrap {
        justify-content: flex-end;
        padding-right: 4px;
    }
}

.lamina-order {
    width: min(1106px, calc(100vw - 32px));
    margin: 40px auto 0;
}

.lamina-order h3 {
    margin: 0;
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase;
    text-align: center;
}

.lamina-order-intro {
    margin: 14px 0 0;
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.4;
    text-align: center;
}

.lamina-order-form {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 16px;
}

.lamina-order-form .full {
    grid-column: 1 / -1;
}

.lamina-order-form label {
    display: block;
    margin-bottom: 6px;
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 12px;
    font-weight: 300;
}

.lamina-order-form input,
.lamina-order-form select,
.lamina-order-form textarea {
    width: 100%;
    border: 1px solid #cfcfcf;
    border-radius: 0;
    padding: 10px 12px;
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.2;
    background: #fff;
    color: #000;
}

.lamina-order-form textarea {
    min-height: 94px;
    resize: vertical;
}

.lamina-order-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.stripe-card-wrap {
    margin-top: 6px;
}

.stripe-card-label {
    margin-bottom: 6px;
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 12px;
    font-weight: 300;
}

.stripe-card-label-line {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    flex-wrap: wrap;
}

.stripe-card-total {
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 12px;
    font-weight: 700;
    color: #000;
}

.stripe-card-brands {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.stripe-brand-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #cfcfcf;
    min-height: 26px;
    min-width: 42px;
    padding: 3px 8px;
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.2;
    color: #333;
    background: #fff;
    white-space: nowrap;
    border-radius: 2px;
}

.stripe-brand-badge.is-visa {
    border-color: #d7dbef;
    background: #ffffff;
}

.stripe-brand-badge.is-visa > span {
    font-family: "Arial Black", "Arial", sans-serif;
    font-size: 11px;
    letter-spacing: 0.4px;
    color: #1a1f71;
}

.stripe-brand-badge.is-mastercard {
    width: 34px;
    min-width: 34px;
    padding: 0;
    border-color: #e5e5e5;
}

.stripe-brand-badge.is-mastercard > span {
    position: relative;
    width: 20px;
    height: 12px;
    display: inline-block;
}

.stripe-brand-badge.is-mastercard > span::before,
.stripe-brand-badge.is-mastercard > span::after {
    content: "";
    position: absolute;
    top: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.stripe-brand-badge.is-mastercard > span::before {
    left: 1px;
    background: #eb001b;
}

.stripe-brand-badge.is-mastercard > span::after {
    right: 1px;
    background: #f79e1b;
}

.stripe-brand-badge.is-amex {
    border-color: #b8d9ea;
    background: #e7f6fd;
}

.stripe-brand-badge.is-amex > span {
    font-family: "Arial Black", "Arial", sans-serif;
    font-size: 9px;
    letter-spacing: 0.5px;
    color: #016fd0;
}

.stripe-brand-badge.is-applepay > span {
    font-family: "Helvetica Neue", "Arial", sans-serif;
    font-size: 11px;
    color: #111;
    font-weight: 600;
}

.stripe-brand-badge.is-gpay > span {
    font-family: "Helvetica Neue", "Arial", sans-serif;
    font-size: 10px;
    font-weight: 600;
    color: #3c4043;
}

.stripe-card-element {
    width: 100%;
    border: 1px solid #cfcfcf;
    background: #fff;
    padding: 12px;
    min-height: 44px;
}

.stripe-express-element {
    width: 100%;
    min-height: 0;
    margin: 0 0 6px;
}

.stripe-express-element:empty {
    display: none;
    margin: 0;
}

.stripe-card-hint {
    margin-top: 6px;
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.35;
    color: #444;
}

.stripe-card-legal {
    margin-top: 4px;
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.35;
    color: #111;
}

.stripe-card-legal strong {
    font-size: inherit !important;
    line-height: inherit !important;
    font-weight: inherit !important;
}

.stripe-card-legal a {
    color: inherit;
    text-decoration: underline;
}

.billing-toggle-wrap {
    margin-top: 4px;
}

.check-inline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 13px;
    font-weight: 300;
}

.check-inline input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 0;
}

.billing-fields {
    border: 1px solid #d6d6d6;
    background: #fff;
    padding: 12px;
}

.billing-fields h4 {
    margin: 0 0 10px;
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
}

.billing-grid {
    margin-top: 0;
}

.checkout-form {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.checkout-form > div {
    grid-column: span 3;
}

.checkout-form > .email-row {
    grid-column: span 3;
}

.checkout-form > .full {
    grid-column: 1 / -1;
}

.checkout-form > .third {
    grid-column: span 2;
}

.checkout-form > .phone-row {
    grid-column: span 3;
}

.phone-row > label {
    display: block;
    margin-bottom: 6px;
}

.phone-combo {
    display: flex;
    align-items: stretch;
    border: 1px solid #cfcfcf;
    background: #fff;
    min-height: 48px;
}

.phone-prefix-group {
    display: flex;
    align-items: center;
    border: none;
    background: transparent;
    padding: 0 10px;
    gap: 8px;
    border-right: 1px solid #d7d7d7;
    flex: 0 0 220px;
    min-width: 220px;
}

.phone-prefix-group .phone-flag {
    font-size: 20px;
    line-height: 1;
}

.phone-prefix-group select {
    border: none;
    padding: 10px 0;
    background: transparent;
    min-width: 88px;
    width: 100%;
    font-size: 18px;
    font-family: 'ABC Favorit Mono', monospace;
    box-shadow: none;
    outline: none;
}

.phone-combo > input {
    flex: 1;
    border: none;
    background: transparent;
    margin: 0;
    box-shadow: none;
    outline: none;
    min-width: 0;
}

.lamina-order-actions button {
    border: 1px solid #111;
    background: #111;
    color: #fff;
    padding: 11px 18px;
    border-radius: 0;
    cursor: pointer;
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
}

.lamina-order-actions button[disabled] {
    opacity: 0.45;
    cursor: not-allowed;
}

.lamina-order-status {
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 13px;
    line-height: 1.3;
}

.lamina-order-status.is-ok {
    color: #1d5a29;
}

.lamina-order-status.is-error {
    color: #8a1f1f;
}

.checkout-page {
    padding-bottom: 126px;
}

.checkout-title-section h1 {
    letter-spacing: 0.08em;
}

.checkout-title-section p {
    margin: 8px 0 0;
}

.checkout-back-store-link {
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid #000;
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.2;
}

.checkout-summary {
    width: min(1106px, calc(100vw - 32px));
    margin: 30px auto 0;
    border: 1px solid #d6d6d6;
    padding: 16px;
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    background: #fff;
}

.checkout-summary-thumb-wrap {
    width: 140px;
    height: 140px;
    border: 1px solid #d6d6d6;
    overflow: hidden;
}

.checkout-summary-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.checkout-summary-content h2 {
    margin: 0;
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase;
}

.checkout-summary-content {
    position: relative;
    padding-right: 340px;
    padding-bottom: 38px;
}

.checkout-summary-content p {
    margin: 8px 0 0;
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.35;
}

.checkout-summary-content .checkout-remove-wrap {
    position: absolute;
    right: 0;
    bottom: 0;
    margin-top: 0;
    display: flex;
    justify-content: flex-end !important;
    align-items: center;
    width: 320px;
}

.checkout-summary-content .checkout-remove-wrap .lamina-remove-btn {
    margin-left: auto;
    font-size: 15px;
}

.checkout-side-controls {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.checkout-side-controls label {
    display: inline-block;
    margin: 0 8px 0 0;
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 12px;
    font-weight: 400;
    min-width: 66px;
}

.checkout-side-controls > div {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.checkout-side-controls > .checkout-remove-wrap {
    justify-content: flex-end;
    align-items: center;
}

.checkout-side-controls select,
.checkout-side-controls input {
    width: auto;
    flex: 1;
    border: 1px solid #cfcfcf;
    border-radius: 0;
    padding: 10px 12px;
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.2;
    background: #fff;
    color: #000;
}

.checkout-side-controls input[type="number"] {
    flex: 0 0 74px;
    width: 74px;
    max-width: 74px;
    min-height: 26px;
    padding: 2px 6px;
    font-size: 11px;
    text-align: left;
}

.checkout-summary-content a {
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid #000;
}

.checkout-order {
    margin-top: 64px;
}

.checkout-extra-items {
    width: min(1106px, calc(100vw - 32px));
    margin: 14px auto 0;
}

.checkout-extra-items h3 {
    margin: 0 0 10px;
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    text-transform: uppercase;
}

.checkout-extra-list {
    display: grid;
    gap: 10px;
}

.checkout-summary--extra {
    width: 100%;
    margin: 0;
}

.checkout-summary--extra .checkout-summary-content {
    position: relative;
    padding-right: 340px;
}

.checkout-summary--extra .checkout-summary-content h4 {
    margin: 0;
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase;
}

.checkout-extra-card {
    border: 1px solid #d6d6d6;
    background: #fff;
    padding: 12px;
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
}

.checkout-extra-thumb {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border: 1px solid #d6d6d6;
}

.checkout-extra-meta h4 {
    margin: 0;
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase;
}

.checkout-extra-meta p {
    margin: 6px 0 0;
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.3;
}

.checkout-extra-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.checkout-empty-state {
    width: min(1106px, calc(100vw - 32px));
    margin: 48px auto 0;
    text-align: center;
}

.checkout-empty-state h2 {
    margin: 0;
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.25;
    text-transform: uppercase;
}

.checkout-empty-state p {
    margin: 18px 0 0;
}

.checkout-empty-link {
    display: inline-block;
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid #000;
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
}

@media (max-width: 1100px) {
    .lamina-page {
        padding-bottom: 92px;
    }

    .lamina-title-section {
        top: 78px;
        padding: 28px 16px 18px;
    }

    .lamina-title-section h1 {
        font-size: 16px;
        line-height: 1.3;
    }

    .lamina-units {
        font-size: 14px;
    }

    .lamina-product-grid {
        grid-template-columns: 1fr;
        gap: 22px;
        padding-top: 0;
    }

    .lamina-image {
        height: auto;
        max-height: 72vh;
        object-fit: contain;
    }

    .lamina-piece-title {
        margin-top: 40px;
        width: calc(100vw - 32px);
    }

    .lamina-piece-title h2 {
        font-size: 18px;
        line-height: 1.3;
    }

    .lamina-description {
        margin-top: 32px;
        width: calc(100vw - 32px);
    }

    .lamina-tech-grid {
        margin-top: 28px;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .lamina-tech-grid p:nth-child(1),
    .lamina-tech-grid p:nth-child(2),
    .lamina-tech-grid p:nth-child(3) {
        text-align: center;
    }

    .lamina-buy {
        margin-top: 58px;
    }

    .lamina-size-prices {
        margin-top: 14px;
        gap: 6px;
    }

    .lamina-order {
        margin-top: 28px;
    }

    .lamina-order-form {
        grid-template-columns: 1fr;
    }

    .checkout-form {
        grid-template-columns: 1fr;
    }

    .checkout-form > div,
    .checkout-form > .email-row,
    .checkout-form > .full,
    .checkout-form > .third,
    .checkout-form > .phone-row {
        grid-column: 1 / -1;
    }

    .phone-combo {
        display: flex;
        align-items: stretch;
    }

    .phone-prefix-group {
        padding: 0 12px;
        min-width: 160px;
        flex-basis: 160px;
    }

    .lamina-order-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .checkout-page {
        padding-bottom: 92px;
    }

    .checkout-summary {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        margin-top: 20px;
    }

    .checkout-summary-content h2 {
        font-size: 16px;
    }

    .checkout-summary-content {
        padding-right: 0;
        padding-bottom: 0;
        width: 100%;
        text-align: center;
    }

    .checkout-summary--extra .checkout-summary-content {
        padding-right: 0;
        padding-bottom: 0;
        width: 100%;
        text-align: center;
    }

    .checkout-side-controls {
        position: static;
        width: 100%;
        grid-template-columns: 1fr;
        margin-top: 8px;
    }

    .checkout-side-controls > div {
        justify-content: center;
        width: 100%;
    }

    .checkout-summary-content .checkout-remove-wrap {
        position: static;
        justify-content: center;
        margin-top: 18px;
        width: 100%;
    }

    .checkout-summary-content .checkout-remove-wrap .lamina-remove-btn {
        font-size: 11px;
    }

    .checkout-summary-content p:last-of-type {
        margin-top: 14px;
    }

    .checkout-order {
        margin-top: 44px;
    }

    .checkout-side-controls input[type="number"] {
        flex: 0 0 66px;
        width: 66px;
        max-width: 66px;
        min-height: 24px;
        padding: 2px 5px;
        font-size: 10px;
    }

    .checkout-extra-card {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .checkout-extra-actions {
        justify-content: center;
    }
}

/* Checkout remove button: desktop right / mobile centered */
@media (min-width: 769px) {
    .checkout-summary-content .checkout-remove-wrap {
        position: absolute !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 320px !important;
        display: flex !important;
        justify-content: flex-end !important;
        margin-top: 0 !important;
        text-align: right !important;
    }

    .checkout-summary-content .checkout-remove-wrap .lamina-remove-btn {
        margin-left: auto !important;
        font-size: 14px !important;
        line-height: 1.1 !important;
    }
}

@media (max-width: 768px) {
    .checkout-summary-content .checkout-remove-wrap {
        position: static !important;
        width: 100% !important;
        justify-content: center !important;
        margin-top: 18px !important;
    }

    .checkout-summary-content .checkout-remove-wrap .lamina-remove-btn {
        margin-left: 0 !important;
        font-size: 11px !important;
    }
}

/* 404 Page */
.not-found-page {
    width: min(1728px, 100vw);
    margin: 0 auto;
    min-height: calc(100vh - 104px);
    padding: 74px 16px 88px;
    display: grid;
    place-items: center;
    background:
        linear-gradient(180deg, rgba(245, 243, 236, 0.82) 0%, rgba(247, 246, 241, 0.92) 100%),
        repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.02) 0 1px, rgba(255, 255, 255, 0.02) 1px 4px),
        repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.018) 0 1px, rgba(255, 255, 255, 0.018) 1px 4px);
}

.not-found-wrap {
    width: min(980px, calc(100vw - 32px));
    text-align: center;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 64px 28px;
}

.not-found-code {
    margin: 0;
    font-family: 'ABC Favorit Mono', monospace;
    font-size: clamp(48px, 10vw, 120px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.04em;
}

.not-found-title {
    margin: 18px 0 0;
    font-family: 'ABC Favorit Mono', monospace;
    font-size: clamp(16px, 3.5vw, 22px);
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.12em;
}

.not-found-text {
    margin: 26px auto 0;
    max-width: 640px;
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.55;
}

.not-found-actions {
    margin-top: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.not-found-btn,
.not-found-link {
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none;
    color: #000;
    transition: opacity 0.3s;
}

.not-found-btn {
    border: 1px solid #000;
    padding: 12px 24px;
    background: #fff;
}

.not-found-link {
    padding: 12px 6px;
}

.not-found-btn:hover,
.not-found-link:hover {
    opacity: 0.7;
}

@media (max-width: 1100px) {
    .not-found-page {
        width: 100%;
        min-height: calc(100vh - 78px);
        padding: 40px 16px 68px;
    }

    .not-found-wrap {
        padding: 44px 20px;
    }

    .not-found-title {
        letter-spacing: 0.09em;
    }

    .not-found-text {
        margin-top: 22px;
    }

    .not-found-actions {
        margin-top: 28px;
    }
}

/* =========================================================
   Lead Capture (Footer replacement block)
   ========================================================= */
.lead-capture-section {
    width: min(1728px, 100vw);
    margin: 0 auto;
    background: #d8ff00;
    padding: 96px 24px 78px;
}

.lead-capture-inner {
    width: 100%;
    max-width: 1106px;
    margin: 0 auto;
}

.lead-capture-inner h2 {
    margin: 0;
    text-align: center;
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 64px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
}

.lead-capture-subtitle {
    margin: 38px auto 52px;
    max-width: 980px;
    text-align: center;
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 28px;
    font-weight: 300;
    line-height: 1.35;
}

.lead-capture-form {
    width: 100%;
    max-width: 1106px;
    margin: 0 auto;
}

.lead-capture-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.lead-capture-form input[type="text"],
.lead-capture-form input[type="email"],
.lead-capture-form textarea {
    width: 100%;
    border: 0;
    border-radius: 16px;
    padding: 22px 24px;
    background: #efefef;
    color: #000;
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 22px;
    font-weight: 300;
    line-height: 1.25;
    outline: none;
}

.lead-capture-form input[type="text"]::placeholder,
.lead-capture-form input[type="email"]::placeholder,
.lead-capture-form textarea::placeholder {
    color: #777;
    opacity: 1;
}

.lead-capture-form input[type="email"] {
    margin-bottom: 24px;
}

.lead-capture-form textarea {
    resize: vertical;
    min-height: 132px;
}

.lead-capture-hp {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.lead-capture-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 20px 0 28px;
    cursor: pointer;
}

.lead-capture-consent input[type="checkbox"] {
    margin-top: 2px;
    width: 18px;
    height: 18px;
    accent-color: #000;
    flex: 0 0 auto;
}

.lead-capture-consent span {
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.4;
}

.lead-capture-form button[type="submit"] {
    display: block;
    margin: 0 auto;
    min-width: 320px;
    border-radius: 999px;
    border: 3px solid #000;
    background: transparent;
    color: #000;
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 28px;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
    padding: 19px 24px;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.lead-capture-form button[type="submit"]:hover {
    background: #000;
    color: #d8ff00;
}

.lead-capture-form button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.lead-capture-feedback {
    min-height: 24px;
    margin: 14px 0 0;
    text-align: center;
    font-family: 'ABC Favorit Mono', monospace;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;
}

.lead-capture-feedback.ok {
    color: #1f5f00;
}

.lead-capture-feedback.error {
    color: #8b0000;
}

@media (max-width: 1100px) {
    .lead-capture-section {
        padding: 62px 16px 52px;
    }

    .lead-capture-inner h2 {
        font-size: 36px;
        line-height: 1.05;
    }

    .lead-capture-subtitle {
        margin: 22px auto 30px;
        font-size: 18px;
        line-height: 1.4;
    }

    .lead-capture-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-bottom: 14px;
    }

    .lead-capture-form input[type="text"],
    .lead-capture-form input[type="email"],
    .lead-capture-form textarea {
        border-radius: 12px;
        padding: 16px;
        font-size: 18px;
    }

    .lead-capture-form input[type="email"] {
        margin-bottom: 14px;
    }

    .lead-capture-form textarea {
        min-height: 104px;
    }

    .lead-capture-consent {
        margin: 14px 0 18px;
    }

    .lead-capture-consent span {
        font-size: 14px;
    }

    .lead-capture-form button[type="submit"] {
        min-width: 230px;
        font-size: 20px;
        padding: 14px 18px;
        border-width: 2px;
    }
}
