/* Retro NL shop — light surfaces + logo colours (navy, orange, off-white) */
:root {
    --bg: #dce6f4;
    --bg-elev: #eef3fb;
    --bg-card: #ffffff;
    --border: #b8c9dc;
    --text: #1a2744;
    --muted: #546278;
    --accent: #f07818;
    --accent-dim: #d9620e;
    --accent-hover: #c2410c;
    --accent-2: #2563eb;
    --accent-2-hover: #1d4ed8;
    --accent-2-soft: rgba(37, 99, 235, 0.12);
    --accent-2-border: rgba(37, 99, 235, 0.38);
    --danger: #dc2626;
    --radius: 12px;
    --font: "Archivo Narrow", system-ui, sans-serif;
    --mono: "JetBrains Mono", ui-monospace, monospace;
    --focus: 2px solid var(--accent);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 100%;
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.skip-link {
    position: absolute;
    left: -9999px;
    z-index: 999;
    padding: 0.5rem 1rem;
    background: var(--accent);
    color: #1a1408;
    font-weight: 700;
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: var(--font);
    background:
        radial-gradient(ellipse 85% 55% at 100% 0%, var(--accent-2-soft), transparent 52%),
        linear-gradient(165deg, #f5f8fd 0%, var(--bg) 45%, #c9d8ec 100%);
    color: var(--text);
    line-height: 1.55;
}

a {
    color: var(--accent);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

a:hover {
    color: var(--accent-hover);
}

a:focus-visible {
    outline: var(--focus);
    outline-offset: 2px;
}

.main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 1rem 4rem;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text);
    text-decoration: none;
}

.logo:hover {
    color: var(--accent);
}

.logo--image {
    gap: 0;
    line-height: 0;
}

.logo--image:hover {
    color: inherit;
}

.logo__img {
    display: block;
    height: auto;
    width: auto;
    max-height: 48px;
}

.logo--image:hover .logo__img {
    opacity: 0.92;
}

.logo--footer .logo__img {
    max-height: 72px;
}

.logo-mark {
    color: var(--accent);
    font-size: 1.2rem;
}

.logo--footer .logo-mark {
    font-size: 1.4rem;
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1rem;
    flex: 1;
    justify-content: center;
}

.site-nav a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.98rem;
    padding: 0.35rem 0.2rem;
}

.site-nav a:hover {
    color: var(--accent);
}

.site-nav a.is-active {
    color: var(--accent-2);
    box-shadow: 0 2px 0 0 var(--accent-2);
}

.nav-toggle {
    display: none;
    background: var(--bg-elev);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 0.45rem 0.65rem;
    border-radius: 8px;
    cursor: pointer;
}

@media (max-width: 900px) {
    .nav-toggle {
        display: block;
        margin-left: auto;
    }
    .site-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        padding: 0.5rem 0;
    }
    .site-nav.is-open {
        display: flex;
    }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.icon-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--text);
    text-decoration: none;
    border-radius: 10px;
    border: 1px solid transparent;
}

.icon-link:hover {
    background: var(--accent-2-soft);
    border-color: var(--accent-2-border);
    color: var(--accent-2);
}

.icon-link svg {
    width: 22px;
    height: 22px;
}

.badge {
    position: absolute;
    top: 4px;
    right: 4px;
    min-width: 1.1rem;
    height: 1.1rem;
    padding: 0 4px;
    font-size: 0.65rem;
    line-height: 1.1rem;
    text-align: center;
    background: var(--accent-2);
    color: #fff;
    border-radius: 999px;
    font-family: var(--mono);
}

.badge[hidden] {
    display: none !important;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.55rem 1.1rem;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 10px;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn:focus-visible {
    outline: var(--focus);
    outline-offset: 2px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-dim), #f59e0b);
    color: #fffaf5;
    border-color: #fbbf77;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
}

.btn-primary:hover {
    filter: brightness(1.08);
}

.btn-primary:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.btn-secondary {
    background: var(--bg-elev);
    color: var(--text);
    border-color: var(--border);
}

.btn-secondary:hover {
    border-color: var(--accent-2-border);
    color: var(--accent-2);
    background: var(--accent-2-soft);
}

.btn-ghost {
    background: transparent;
    color: var(--accent);
    border-color: var(--border);
}

.btn-ghost:hover {
    border-color: var(--accent);
}

.btn-ghost.is-on {
    border-color: rgba(220, 38, 38, 0.45);
    color: var(--danger);
}

.btn-sm {
    padding: 0.4rem 0.75rem;
    font-size: 0.85rem;
}

/* Hero */
.hero {
    position: relative;
    padding: 3rem 1.5rem;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 2.5rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 40%, rgba(37, 99, 235, 0.12), transparent 55%),
        radial-gradient(ellipse 70% 50% at 80% 60%, rgba(240, 120, 24, 0.14), transparent 50%),
        linear-gradient(160deg, #e8f0fa 0%, #d0dff2 100%);
    z-index: 0;
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h30v30H0zm30 30h30v30H30z' fill='%231a2744' fill-opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.7;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
}

.hero h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin: 0 0 1rem;
    line-height: 1.15;
}

.hero h1 em {
    color: var(--accent);
    font-style: normal;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.75rem;
    color: var(--accent-2);
    margin: 0 0 0.5rem;
}

.lead {
    font-size: 1.1rem;
    color: var(--muted);
    margin: 0 0 1.5rem;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* Sections */
.section {
    margin-bottom: 3rem;
}

.section-head h1,
.section-head h2 {
    margin: 0 0 0.5rem;
}

.section-head p {
    color: var(--muted);
    margin: 0;
}

.section-more {
    text-align: center;
    margin-top: 2rem;
}

.section--split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
}

.split-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.split-card--accent {
    border-color: var(--accent-2-border);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, var(--accent-2-soft) 48%, rgba(255, 237, 213, 0.35) 100%);
    box-shadow: 0 0 0 1px rgba(240, 120, 24, 0.08), 0 8px 28px rgba(37, 99, 235, 0.08);
}

/* Product grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-card__media {
    display: block;
    background: #e8eef6;
}

.product-card__media img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.product-card__body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    flex: 1;
}

.product-card__cat {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--accent-2);
    margin: 0;
}

.product-card__title {
    font-size: 1.05rem;
    margin: 0;
    line-height: 1.3;
}

.product-card__title a {
    color: var(--text);
    text-decoration: none;
}

.product-card__title a:hover {
    color: var(--accent);
}

.product-card__price {
    margin-top: auto;
    padding-top: 0.5rem;
}

.price-old {
    text-decoration: line-through;
    color: var(--muted);
    font-size: 0.9rem;
    margin-right: 0.35rem;
}

.price-current {
    font-weight: 700;
    font-family: var(--mono);
    color: var(--accent);
}

.price-current--lg {
    font-size: 1.5rem;
}

.product-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.shop-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0 0;
}

.chip {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    color: var(--muted);
    text-decoration: none;
    font-size: 0.9rem;
}

.chip:hover,
.chip.is-active {
    border-color: var(--accent-2-border);
    color: var(--accent-2);
    background: var(--accent-2-soft);
}

.empty-msg {
    color: var(--muted);
    padding: 2rem;
    text-align: center;
    border: 1px dashed var(--border);
    border-radius: var(--radius);
}

/* Product page */
.breadcrumb {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 1.25rem;
}

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

.breadcrumb a:hover {
    color: var(--accent-2);
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 800px) {
    .product-layout {
        grid-template-columns: 1fr;
    }
}

.product-gallery-wrap {
    position: relative;
    min-width: 0;
}

.product-slider {
    position: relative;
    --slide-count: 1;
    outline: none;
}

.product-slider:focus-visible {
    box-shadow: 0 0 0 2px var(--accent-2);
    border-radius: var(--radius);
}

.product-slider__viewport {
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: linear-gradient(145deg, #f0f5fc, #e2eaf5);
    aspect-ratio: 1 / 1;
    max-height: min(72vh, 640px);
}

.product-slider__track {
    display: flex;
    height: 100%;
    width: calc(var(--slide-count) * 100%);
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.product-slider__slide {
    flex: 0 0 calc(100% / var(--slide-count));
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
}

.product-slider__slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.product-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.95);
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease, color 0.15s ease;
    box-shadow: 0 2px 10px rgba(26, 39, 68, 0.12);
}

.product-slider__arrow:hover {
    background: var(--accent-2-soft);
    color: var(--accent-2);
    border-color: var(--accent-2-border);
}

.product-slider__arrow:focus-visible {
    outline: var(--focus);
    outline-offset: 2px;
}

.product-slider__arrow--prev {
    left: 0.5rem;
}

.product-slider__arrow--next {
    right: 0.5rem;
}

.product-slider__thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
    justify-content: center;
}

.product-slider__thumb {
    padding: 0;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background: var(--bg-card);
    opacity: 0.65;
    transition: opacity 0.15s ease, border-color 0.15s ease;
}

.product-slider__thumb:hover,
.product-slider__thumb.is-active {
    opacity: 1;
    border-color: var(--accent-2);
}

.product-slider__thumb img {
    display: block;
    width: 72px;
    height: 72px;
    object-fit: cover;
}

.product-slider__status {
    text-align: center;
    font-size: 0.88rem;
    color: var(--muted);
    margin: 0.65rem 0 0;
    font-family: var(--mono);
}

.product-slider__empty {
    padding: 2rem;
    text-align: center;
    color: var(--muted);
    border: 1px dashed var(--border);
    border-radius: var(--radius);
}

.product-meta {
    color: var(--muted);
}

.product-price-line {
    margin: 1rem 0;
}

.product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.product-specs ul {
    margin: 0;
    padding-left: 1.1rem;
}

.product-description {
    margin-top: 2.75rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.product-description__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
    gap: 2rem;
    align-items: start;
}

@media (max-width: 900px) {
    .product-description__grid {
        grid-template-columns: 1fr;
    }
}

.product-description__h {
    font-size: 1.35rem;
    margin: 0 0 1rem;
    color: var(--text);
}

.product-description__lead {
    font-size: 1.12rem;
    line-height: 1.65;
    color: var(--text);
    margin: 0 0 1.25rem;
    padding: 1rem 1.15rem;
    border-left: 4px solid var(--accent);
    background: rgba(240, 120, 24, 0.08);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.product-description__body {
    margin: 0 0 1rem;
    line-height: 1.7;
    color: var(--muted);
}

.product-description__muted {
    font-style: italic;
}

.product-description__main.prose {
    max-width: 52rem;
}

.product-aside-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.15rem 1.25rem;
    position: sticky;
    top: 5.5rem;
}

.product-aside-card__title {
    margin: 0 0 0.75rem;
    font-size: 1rem;
    color: var(--accent-2);
}

.product-aside-card__list {
    margin: 0;
    padding-left: 1rem;
    font-size: 0.95rem;
    color: var(--muted);
}

.product-aside-card__list li {
    margin: 0.35rem 0;
}

.product-aside-card__hint {
    margin: 1rem 0 0;
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.5;
}

.product-editorial {
    margin-top: 2.25rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--border);
}

.product-editorial__body {
    line-height: 1.7;
    color: var(--muted);
}

.product-editorial__body p {
    margin: 0 0 0.85rem;
}

.product-editorial__body strong {
    color: var(--text);
}

.prose h2,
.prose .h3 {
    margin-top: 1.5rem;
}

.h3 {
    font-size: 1.1rem;
}

/* Cart */
.cart-table table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.cart-table th,
.cart-table td {
    padding: 0.65rem 0.5rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.cart-table thead th {
    color: var(--accent-2);
    font-weight: 700;
    border-bottom-color: var(--accent-2-border);
}

.cart-table img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-qty {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.cart-qty button {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    border: 1px solid var(--border);
    background: var(--bg-elev);
    color: var(--text);
    cursor: pointer;
}

.cart-remove {
    background: none;
    border: none;
    color: var(--danger);
    cursor: pointer;
    text-decoration: underline;
}

.cart-total {
    margin-top: 1rem;
    font-size: 1.25rem;
    font-family: var(--mono);
    color: var(--accent-2);
}

.cart-loading {
    color: var(--muted);
}

.cart-actions {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.wishlist-grid .product-card {
    max-width: 280px;
}

/* Checkout */
.checkout-form fieldset {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    margin: 0 0 1rem;
}

.checkout-form fieldset legend {
    font-weight: 700;
    color: var(--accent-2);
    padding: 0 0.35rem;
}

.checkout-form label {
    display: block;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.checkout-form input,
.checkout-form textarea {
    width: 100%;
    max-width: 420px;
    margin-top: 0.25rem;
    padding: 0.5rem 0.65rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--bg-elev);
    color: var(--text);
    font-family: inherit;
}

.checkout-form input:focus-visible,
.checkout-form textarea:focus-visible {
    outline: 2px solid var(--accent-2);
    outline-offset: 2px;
    border-color: var(--accent-2-border);
}

.form-error {
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    border-radius: var(--radius);
    border: 1px solid rgba(220, 38, 38, 0.35);
    background: rgba(254, 226, 226, 0.6);
    color: #991b1b;
}

.field-hint {
    font-size: 0.88rem;
    color: var(--muted);
    margin: 0.35rem 0 0;
}

.label-promo input {
    max-width: 420px;
    margin-top: 0.25rem;
    font-family: var(--mono);
    letter-spacing: 0.04em;
}

.checkout--thanks .lead {
    max-width: 42rem;
}

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.hidden,
.modal[hidden] {
    display: none !important;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

.modal-panel {
    position: relative;
    z-index: 1;
    max-width: 440px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Cookie (AVG): modal overlay + gecentreerde kaart bij eerste bezoek) */
.cookie-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.cookie-popup.hidden,
.cookie-popup[hidden] {
    display: none !important;
}

.cookie-inner {
    max-width: 520px;
    width: 100%;
    max-height: min(90vh, 640px);
    overflow: auto;
    margin: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem 1.35rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.cookie-title {
    margin: 0;
    font-weight: 700;
    width: 100%;
    color: var(--accent-2);
}

.cookie-text {
    margin: 0;
    width: 100%;
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.5;
}

.cookie-text a {
    color: var(--accent-2);
    font-weight: 600;
}

.cookie-text a:hover {
    color: var(--accent-2-hover);
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: flex-end;
    width: 100%;
}

@media (max-width: 520px) {
    .cookie-actions {
        flex-direction: column;
    }

    .cookie-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Legal pages (AVG / privacy / etc.) */
.legal-page__lead {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.6;
}

/* Footer */
.site-footer {
    border-top: 1px solid var(--border);
    padding: 2.5rem 1rem;
    margin-top: 2rem;
    background: linear-gradient(180deg, #f0f5fc 0%, #e8f0fa 100%);
    box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.8);
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.footer-col a {
    display: block;
    color: var(--muted);
    text-decoration: none;
    margin: 0.25rem 0;
    font-size: 0.92rem;
}

.footer-col a:hover {
    color: var(--accent-2-hover);
}

.footer-col strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--accent-2);
}

.footer-tagline {
    color: var(--muted);
    font-size: 0.9rem;
    margin: 0.5rem 0 0;
    max-width: 280px;
}

.footer-payments {
    max-width: 1200px;
    margin: 1.5rem auto 0;
}

.footer-payments__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    align-items: center;
    justify-content: center;
}

.footer-payments__item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
}

.footer-payments__img {
    display: block;
    height: 24px;
    width: auto;
    max-width: 72px;
    object-fit: contain;
    opacity: 0.9;
}

.footer-payments__img:hover {
    opacity: 1;
}

.footer-payments__img[src$="ideal.svg"] {
    height: 20px;
    max-width: 56px;
}

.footer-copy {
    max-width: 1200px;
    margin: 1.5rem auto 0;
    font-size: 0.85rem;
    color: var(--muted);
    text-align: center;
}

.footer-copy a {
    color: var(--text);
}

/* Gift page */
.section--gift .gift-hero {
    position: relative;
    margin: 0 0 1.75rem;
    padding: 0;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
}

.section--gift .gift-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(240, 120, 24, 0.12), rgba(37, 99, 235, 0.1));
    pointer-events: none;
}

.section--gift .gift-hero__img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 220px;
    object-fit: cover;
}

.gift-page__header h1 {
    margin-top: 0;
}

.gift-page__content h2 {
    margin-top: 2rem;
    font-size: 1.25rem;
    color: var(--accent);
}

.gift-page__content h2:nth-of-type(even) {
    color: var(--accent-2);
}

.gift-page__content h2:first-of-type {
    margin-top: 0;
}

.gift-page__steps {
    margin: 1rem 0 0;
    padding-left: 1.25rem;
    line-height: 1.65;
}

.gift-page__steps li {
    margin: 0.5rem 0;
}

.gift-page__intro-codes {
    margin-bottom: 1.25rem;
}

.gift-page__muted {
    color: var(--muted);
    font-size: 0.95rem;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin: 1.5rem 0 2rem;
}

.promo-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem 1.35rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.promo-card__badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #fffaf5;
    background: linear-gradient(135deg, var(--accent-dim), #f59e0b);
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
}

.promo-card__desc {
    margin: 0.35rem 0 0;
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.5;
}

.promo-card__code-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
    margin-top: 0.25rem;
}

.promo-card__code {
    flex: 1;
    min-width: 0;
    font-family: var(--mono);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 0.5rem 0.75rem;
    background: var(--bg-elev);
    border: 1px dashed var(--accent);
    border-radius: 8px;
    color: var(--accent);
}

.promo-card__meta {
    margin: 0;
    font-size: 0.88rem;
    color: var(--muted);
}

.promo-card__meta dt {
    font-weight: 600;
    color: var(--text);
    margin: 0 0 0.15rem;
}

.promo-card__meta dd {
    margin: 0;
}

.promo-card__conditions {
    margin: 0;
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.45;
}

.gift-faq {
    margin: 1rem 0 0;
}

.gift-faq dt {
    font-weight: 700;
    margin-top: 1rem;
    color: var(--text);
}

.gift-faq dt:first-child {
    margin-top: 0;
}

.gift-faq dd {
    margin: 0.35rem 0 0;
    color: var(--muted);
    line-height: 1.55;
}

.gift-page__cta {
    margin-top: 2.5rem;
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: rgba(240, 120, 24, 0.08);
}

.gift-page__cta p {
    margin: 0 0 1rem;
}

.gift-page__cta .btn {
    margin: 0.35rem 0.5rem 0.35rem 0;
}

.faq dt {
    font-weight: 700;
    margin-top: 1rem;
}

.faq dd {
    margin: 0.35rem 0 0 0;
    color: var(--muted);
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    margin: 0.5rem 0;
}

.hint {
    font-size: 0.85rem;
    color: var(--muted);
}

/* Home — hero mosaic & rich landing */
.hero--home {
    min-height: min(72vw, 420px);
    display: flex;
    align-items: stretch;
    padding: 0;
}

.hero-mosaic {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: minmax(52px, 1fr);
    gap: 3px;
}

.hero-mosaic__cell {
    background-image: var(--tile);
    background-size: cover;
    background-position: center;
    min-height: 0;
}

.hero-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(105deg, rgba(255, 255, 255, 0.82) 0%, rgba(232, 240, 250, 0.5) 45%, rgba(200, 216, 236, 0.28) 100%),
        radial-gradient(ellipse 90% 80% at 0% 50%, rgba(248, 251, 255, 0.75), transparent 55%);
    pointer-events: none;
}

.hero--home .hero-content {
    padding: 2.25rem 1.5rem;
    max-width: 560px;
    align-self: center;
    margin: 1rem;
    background: rgba(255, 255, 255, 0.94);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.98);
    box-shadow: 0 16px 48px rgba(26, 39, 68, 0.12);
}

.hero-promo-badge {
    margin: 0 0 1rem;
    font-size: 0.82rem;
    line-height: 1.4;
}

.hero-promo-badge__inner {
    display: inline-block;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(240, 120, 24, 0.35);
    background: rgba(255, 250, 245, 0.95);
    color: var(--muted);
}

.hero-promo-badge__inner strong {
    color: var(--accent-dim);
    font-family: var(--mono);
    font-weight: 600;
}

@media (max-width: 720px) {
    .hero-mosaic {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-auto-rows: minmax(48px, 1fr);
    }

    .hero--home {
        min-height: 340px;
    }
}

/* Home — category spotlight */
.section--categories .section-head {
    margin-bottom: 1.25rem;
}

.home-cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
}

.home-cat-card {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-card);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 4px 20px rgba(26, 39, 68, 0.06);
}

.home-cat-card:hover {
    border-color: var(--accent-2-border);
    box-shadow: 0 12px 36px rgba(37, 99, 235, 0.12);
}

.home-cat-card__media {
    display: block;
    aspect-ratio: 16 / 10;
    background: #e8eef6;
    overflow: hidden;
}

.home-cat-card__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-cat-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1.15rem 1.25rem 1.35rem;
}

.home-cat-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
}

.home-cat-card__text {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.45;
}

.home-cat-card__cta {
    margin-top: 0.35rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-2);
}

/* Home — split with photo */
.section--split-media {
    gap: 1.5rem;
}

.split-card--media {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 0;
    padding: 0;
    overflow: hidden;
    align-items: stretch;
}

.split-card--media .split-card__figure {
    margin: 0;
    min-height: 200px;
    background: #e8eef6;
}

.split-card--media .split-card__img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 200px;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.split-card--media .split-card__main {
    padding: 1.5rem 1.5rem 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.split-card--media .split-card__main h3 {
    margin: 0;
    font-size: 1.2rem;
}

.split-card--media .split-card__main p {
    margin: 0;
    color: var(--muted);
    flex: 1;
}

@media (max-width: 720px) {
    .split-card--media {
        grid-template-columns: 1fr;
    }

    .split-card--media .split-card__img {
        min-height: 180px;
        aspect-ratio: 16 / 9;
    }
}

/* Home — welcome promo (nieuwe spelers) */
.home-welcome-promo {
    margin-top: 0.5rem;
}

.home-welcome-promo__card {
    position: relative;
    overflow: hidden;
    border-radius: calc(var(--radius) + 4px);
    border: 2px solid rgba(245, 158, 11, 0.85);
    background:
        linear-gradient(145deg, #fff7ed 0%, #ffedd5 38%, #fef9c3 100%);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.6) inset,
        0 12px 40px rgba(234, 88, 12, 0.18),
        0 4px 14px rgba(26, 39, 68, 0.08);
}

.home-welcome-promo__shine {
    position: absolute;
    inset: -40% -20% auto auto;
    width: 55%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.55) 0%, transparent 68%);
    pointer-events: none;
}

.home-welcome-promo__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
    gap: 1.5rem 2rem;
    padding: 1.65rem 1.5rem 1.75rem;
    align-items: start;
}

.home-welcome-promo__eyebrow {
    margin: 0 0 0.4rem;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-dim);
}

.home-welcome-promo__title {
    margin: 0 0 0.65rem;
    font-size: clamp(1.45rem, 3.2vw, 1.85rem);
    line-height: 1.2;
    color: var(--text);
}

.home-welcome-promo__lead {
    margin: 0 0 1rem;
    font-size: 1.05rem;
    line-height: 1.55;
    color: var(--text);
}

.home-welcome-promo__lead strong {
    color: var(--accent-dim);
}

.home-welcome-promo__fine {
    margin: 0;
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.5;
}

.home-welcome-promo__fine a {
    font-weight: 600;
    margin-left: 0.25rem;
}

.home-welcome-promo__aside {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(240, 120, 24, 0.35);
    border-radius: var(--radius);
    padding: 1.15rem 1.25rem 1.35rem;
    box-shadow: 0 6px 24px rgba(26, 39, 68, 0.07);
}

.home-welcome-promo__code-label {
    margin: 0 0 0.5rem;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
}

.home-welcome-promo__code-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.75rem;
}

.home-welcome-promo__code {
    flex: 1;
    min-width: 0;
    font-family: var(--mono);
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 0.55rem 0.85rem;
    border-radius: 10px;
    border: 2px dashed var(--accent);
    background: linear-gradient(180deg, #fffbeb 0%, #fff7ed 100%);
    color: var(--accent-dim);
}

.home-welcome-promo__copy {
    flex-shrink: 0;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(234, 88, 12, 0.25);
}

.home-welcome-promo__conditions {
    margin: 0 0 1rem;
    font-size: 0.8rem;
    line-height: 1.45;
    color: var(--muted);
}

.home-welcome-promo__shop {
    width: 100%;
    justify-content: center;
    text-align: center;
}

@media (max-width: 720px) {
    .home-welcome-promo__grid {
        grid-template-columns: 1fr;
        padding: 1.35rem 1.15rem 1.25rem;
    }

    .home-welcome-promo__aside {
        order: 0;
    }
}

/* Home — info blocks (assets/img) */
.home-usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.35rem;
    margin-top: 1.25rem;
}

.home-usp-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 22px rgba(26, 39, 68, 0.07);
}

.home-usp-card__media {
    aspect-ratio: 16 / 10;
    background: var(--bg-elev);
    overflow: hidden;
}

.home-usp-card__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-usp-card__title {
    margin: 0;
    padding: 1rem 1.15rem 0.35rem;
    font-size: 1.1rem;
    color: var(--text);
}

.home-usp-card__text {
    margin: 0;
    padding: 0 1.15rem 1.2rem;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--muted);
    flex: 1;
}

.home-band {
    position: relative;
    margin: 0 0 3rem;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-band__bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.94) 0%, rgba(232, 240, 250, 0.88) 45%, rgba(200, 216, 236, 0.75) 100%),
        var(--home-band-art) center/cover no-repeat;
    z-index: 0;
}

.home-band__inner {
    position: relative;
    z-index: 1;
    padding: 2rem 1.5rem;
    max-width: 560px;
    text-align: center;
}

.home-band__inner h2 {
    margin: 0 0 0.65rem;
    font-size: clamp(1.35rem, 3vw, 1.65rem);
    color: var(--text);
}

.home-band__lead {
    margin: 0 0 1.25rem;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.55;
}

.home-showcase {
    margin-bottom: 3rem;
}

.home-showcase__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 0;
    align-items: stretch;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-card);
    box-shadow: 0 6px 28px rgba(26, 39, 68, 0.08);
}

.home-showcase__media {
    min-height: 240px;
    background: var(--bg-elev);
}

.home-showcase__img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.home-showcase__body {
    padding: 1.75rem 1.75rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: center;
}

.home-showcase__body h2 {
    margin: 0;
    font-size: clamp(1.25rem, 2.5vw, 1.45rem);
    color: var(--text);
}

.home-showcase__body p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.home-showcase--reverse .home-showcase__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
}

.home-showcase--reverse .home-showcase__media {
    order: 2;
}

.home-showcase--reverse .home-showcase__body {
    order: 1;
}

@media (max-width: 820px) {
    .home-showcase__grid,
    .home-showcase--reverse .home-showcase__grid {
        grid-template-columns: 1fr;
    }

    .home-showcase--reverse .home-showcase__media {
        order: -1;
    }

    .home-showcase--reverse .home-showcase__body {
        order: 0;
    }

    .home-showcase__img {
        min-height: 220px;
        aspect-ratio: 16 / 10;
    }
}

/* Home — reviews slider */
.home-reviews {
    margin-bottom: 3rem;
}

.home-reviews-slider {
    position: relative;
    --slide-count: 1;
    --slides-per-view: 1;
    margin-top: 1.5rem;
    outline: none;
}

.home-reviews-slider:focus-visible {
    box-shadow: 0 0 0 2px var(--accent-2);
    border-radius: var(--radius);
}

.home-reviews-slider__viewport {
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--bg-card);
    margin: 0 2.75rem;
    min-height: 12rem;
}

.home-reviews-slider__track {
    display: flex;
    width: calc(var(--slide-count) * 100% / var(--slides-per-view));
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
    .home-reviews-slider__track {
        transition: none;
    }
}

.home-reviews-slider__slide {
    flex: 0 0 calc(100% / var(--slide-count));
    padding: 0.35rem 0.65rem 0.65rem;
    box-sizing: border-box;
    display: flex;
    align-items: stretch;
}

.home-reviews-slider__slide .home-review-card {
    width: 100%;
}

.home-reviews-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.95);
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    line-height: 1;
    padding: 0;
    box-shadow: 0 2px 10px rgba(26, 39, 68, 0.12);
    transition: opacity 0.15s ease, background 0.15s ease;
}

.home-reviews-slider__arrow:hover:not(:disabled) {
    background: var(--accent-2-soft);
    color: var(--accent-2);
    border-color: var(--accent-2-border);
}

.home-reviews-slider__arrow:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.home-reviews-slider__arrow--prev {
    left: 0;
}

.home-reviews-slider__arrow--next {
    right: 0;
}

.home-reviews-slider__status {
    text-align: center;
    margin: 0.85rem 0 0;
    font-size: 0.9rem;
    color: var(--muted);
    font-family: var(--mono);
}

@media (max-width: 560px) {
    .home-reviews-slider__viewport {
        margin: 0 2.25rem;
    }

    .home-reviews-slider__arrow {
        width: 38px;
        height: 38px;
        font-size: 1.35rem;
    }
}

.home-review-card {
    background: var(--bg-elev);
    border: 1px solid transparent;
    border-radius: var(--radius);
    padding: 1.15rem 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    box-shadow: 0 2px 12px rgba(26, 39, 68, 0.05);
}

.home-review-card__top {
    font-size: 0.95rem;
    line-height: 1;
    letter-spacing: 0.08em;
}

.home-review-card__star {
    color: #c5d0e0;
}

.home-review-card__star.is-on {
    color: var(--accent);
}

.home-review-card__quote {
    margin: 0;
    flex: 1;
}

.home-review-card__quote p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--text);
}

.home-review-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.65rem;
    align-items: baseline;
    font-size: 0.88rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border);
}

.home-review-card__name {
    font-weight: 700;
    color: var(--text);
}

.home-review-card__place {
    color: var(--muted);
    font-size: 0.85rem;
}

.home-reviews__note {
    margin: 1.5rem auto 0;
    font-size: 0.85rem;
    color: var(--muted);
    text-align: center;
    max-width: 40rem;
    line-height: 1.5;
}

/* Home — FAQ */
.home-faq {
    margin-bottom: 3rem;
}

.home-faq__panel {
    margin-top: 1.25rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--bg-card);
    box-shadow: 0 4px 22px rgba(26, 39, 68, 0.06);
    overflow: hidden;
}

.home-faq__accordion {
    display: flex;
    flex-direction: column;
}

.home-faq__item {
    border-bottom: 1px solid var(--border);
}

.home-faq__item:last-child {
    border-bottom: none;
}

.home-faq__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    padding: 1rem 2.75rem 1rem 1.2rem;
    margin: 0;
    list-style: none;
    cursor: pointer;
    font: inherit;
    font-weight: 700;
    font-size: 1.02rem;
    line-height: 1.35;
    color: var(--text);
    text-align: left;
    background: var(--bg-card);
    position: relative;
    transition: background 0.15s ease;
}

.home-faq__trigger::-webkit-details-marker {
    display: none;
}

.home-faq__trigger::after {
    content: "";
    position: absolute;
    right: 1.2rem;
    top: 50%;
    width: 0.5rem;
    height: 0.5rem;
    margin-top: -0.25rem;
    border-right: 2px solid var(--accent-dim);
    border-bottom: 2px solid var(--accent-dim);
    transform: rotate(45deg);
    transition: transform 0.22s ease;
    flex-shrink: 0;
}

.home-faq__item[open] > .home-faq__trigger {
    background: rgba(240, 120, 24, 0.06);
}

.home-faq__item[open] > .home-faq__trigger::after {
    transform: rotate(-135deg);
    margin-top: 0.12rem;
}

.home-faq__trigger:hover {
    background: rgba(37, 99, 235, 0.06);
}

.home-faq__trigger:focus-visible {
    outline: var(--focus);
    outline-offset: -2px;
    z-index: 1;
}

.home-faq__q {
    flex: 1;
    min-width: 0;
}

.home-faq__body {
    padding: 0 1.2rem 1.1rem;
}

.home-faq__answer {
    margin: 0;
    padding-top: 0.15rem;
    font-size: 0.98rem;
    line-height: 1.55;
    color: var(--muted);
}

.home-faq__answer a {
    font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
    .home-faq__trigger::after {
        transition: none;
    }
}

.home-faq__more {
    margin: 1.35rem 0 0;
    text-align: center;
}

/* About page (over-ons) */
.about-hero {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    margin-bottom: 2rem;
    box-shadow: 0 10px 36px rgba(26, 39, 68, 0.1);
}

.about-hero__media {
    line-height: 0;
    background: var(--bg-elev);
}

.about-hero__img {
    display: block;
    width: 100%;
    min-height: 220px;
    max-height: min(48vh, 440px);
    object-fit: cover;
}

.about-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(185deg, rgba(26, 39, 68, 0.25) 0%, rgba(248, 251, 255, 0.55) 55%, rgba(255, 255, 255, 0.96) 100%);
    display: flex;
    align-items: flex-end;
}

.about-hero__inner {
    padding: 1.5rem 1.5rem 1.75rem;
    max-width: 52rem;
}

.about-hero__inner h1 {
    margin: 0 0 0.5rem;
    font-size: clamp(1.85rem, 4vw, 2.35rem);
    color: var(--text);
}

.about-hero__lead {
    margin: 0;
    font-size: 1.08rem;
    color: var(--muted);
    line-height: 1.55;
    max-width: 40rem;
}

.about-intro {
    margin-bottom: 2.5rem;
}

.about-outro {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border);
}

.about-duo .section-head {
    margin-bottom: 1.25rem;
}

.about-duo__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.35rem;
}

.about-duo__card {
    margin: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 22px rgba(26, 39, 68, 0.07);
}

.about-duo__media {
    aspect-ratio: 16 / 10;
    background: var(--bg-elev);
    overflow: hidden;
}

.about-duo__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-duo__cap {
    padding: 1rem 1.15rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.55;
}

.about-duo__cap strong {
    color: var(--text);
    font-size: 1.06rem;
}

.home-band__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 0.25rem;
}

.about-band .home-band__inner {
    max-width: 560px;
}

/* Contact page */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.35rem 1.5rem 1.5rem;
    box-shadow: 0 4px 22px rgba(26, 39, 68, 0.07);
}

.contact-card__title {
    margin: 0 0 0.65rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--accent-2);
}

.contact-card__main {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
    font-family: var(--mono);
    font-weight: 600;
}

.contact-card__lead {
    font-family: var(--font);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text);
}

.contact-card__link {
    color: var(--accent-2);
    text-decoration: none;
    word-break: break-word;
}

.contact-card__link:hover {
    color: var(--accent-2-hover);
    text-decoration: underline;
}

.contact-card__hint {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--muted);
}

.contact-card__muted {
    color: var(--muted);
}

.contact-code {
    font-family: var(--mono);
    font-size: 0.85em;
    padding: 0.1em 0.35em;
    background: var(--bg-elev);
    border-radius: 4px;
}

.contact-prose {
    margin-bottom: 2.5rem;
}

.contact-prose__h {
    margin-top: 0;
    font-size: 1.35rem;
}

.contact-bullets {
    margin: 0;
    padding-left: 1.2rem;
    line-height: 1.65;
    color: var(--muted);
}

.contact-bullets li {
    margin: 0.5rem 0;
}

.contact-bullets strong {
    color: var(--text);
}

.contact-split {
    margin-bottom: 3rem;
}

.contact-split__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 320px);
    gap: 2rem;
    align-items: start;
    padding: 1.5rem 1.75rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 4px 22px rgba(26, 39, 68, 0.06);
}

.contact-split__h {
    margin: 0 0 0.75rem;
    font-size: 1.05rem;
    color: var(--accent-2);
}

.contact-hours {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.contact-hours th,
.contact-hours td {
    padding: 0.45rem 0;
    border-bottom: 1px solid var(--border);
    text-align: left;
    vertical-align: top;
}

.contact-hours th {
    font-weight: 600;
    color: var(--text);
    padding-right: 1rem;
    white-space: nowrap;
}

.contact-hours tr:last-child th,
.contact-hours tr:last-child td {
    border-bottom: none;
}

.contact-split__note {
    margin: 1rem 0 0;
    font-size: 0.88rem;
    color: var(--muted);
}

.contact-footer-note {
    margin-top: 0.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}

@media (max-width: 800px) {
    .contact-split__grid {
        grid-template-columns: 1fr;
    }
}
