/* ═══════════════════════════════════════════════════════════
   MM Theme – Main Stylesheet
   Music & More Bookings · musicandmore.nl
   ═══════════════════════════════════════════════════════════ */

/* ─── Design Tokens ───────────────────────────────────────── */
:root {
    --color-gold: #D4A843;
    --color-gold-hover: #c49a38;
    --color-bg-dark: #1a1a1a;
    --color-bg-overlay: rgba(87, 85, 76, 0.8);
    --color-footer: #222222;
    --color-text: #666666;
    --color-text-light: #898887;
    --color-text-dark: #333333;
    --color-white: #ffffff;
    --color-border: #e0e0e0;

    --font-main: 'Open Sans', Arial, sans-serif;
    --header-height: 80px;
    --container-width: 1200px;
    --gap: 2rem;
}

/* ─── Reset ───────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

img, video, iframe, embed, object {
    max-width: 100%;
    height: auto;
    display: block;
}

table {
    max-width: 100%;
    overflow-x: auto;
    display: block;
}

/* ─── Base ────────────────────────────────────────────────── */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

a {
    color: var(--color-gold);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover,
a:focus {
    color: var(--color-gold-hover);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--color-text-dark);
    line-height: 1.3;
    font-weight: 700;
}

h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p + p { margin-top: 1em; }

/* ─── Layout ──────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    overflow-x: hidden;
}

.section {
    padding: 4rem 0;
}

.section--dark {
    background: var(--color-bg-dark);
    color: var(--color-white);
}

.section--dark h1,
.section--dark h2,
.section--dark h3 {
    color: var(--color-white);
}

/* Dark mode cards */
.section--dark .card {
    background: var(--color-bg-overlay);
    color: var(--color-white);
}
.section--dark .card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}
.section--dark .card__body {
    color: var(--color-white);
}
.section--dark .card__body h3,
.section--dark .card__title a {
    color: var(--color-white);
}
.section--dark .card__title a:hover {
    color: var(--color-gold);
}
.section--dark .card__meta {
    color: var(--color-gold);
}
.section--dark .card__excerpt {
    color: rgba(255, 255, 255, 0.75);
}

/* Dark mode pagination */
.section--dark .pagination a,
.section--dark .pagination span {
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
}
.section--dark .pagination a:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}
.section--dark .pagination .current {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-white);
}

/* Dark mode breadcrumbs */
.section--dark .breadcrumbs,
.section--dark .breadcrumbs a {
    color: rgba(255, 255, 255, 0.6);
}
.section--dark .breadcrumbs a:hover {
    color: var(--color-gold);
}

.section--overlay {
    background: var(--color-bg-overlay);
    color: var(--color-white);
}

.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section--dark .section-title {
    color: var(--color-white);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--color-gold);
    margin: 0.75rem auto 0;
}

/* ─── Grid ────────────────────────────────────────────────── */
.grid {
    display: grid;
    gap: var(--gap);
}

.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr 1fr; }
.grid--5 { grid-template-columns: 1fr 1fr; }
.grid--6 { grid-template-columns: 1fr 1fr; }

@media (min-width: 640px) {
    .grid--2 { grid-template-columns: repeat(2, 1fr); }
    .grid--3 { grid-template-columns: repeat(2, 1fr); }
    .grid--4 { grid-template-columns: repeat(3, 1fr); }
    .grid--5 { grid-template-columns: repeat(3, 1fr); }
    .grid--6 { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 960px) {
    .grid--3 { grid-template-columns: repeat(3, 1fr); }
    .grid--4 { grid-template-columns: repeat(4, 1fr); }
    .grid--5 { grid-template-columns: repeat(5, 1fr); }
    .grid--6 { grid-template-columns: repeat(6, 1fr); }
}

/* ─── Header ──────────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--color-white);
    height: var(--header-height);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.site-logo {
    display: flex;
    align-items: center;
}

.site-logo img,
.site-logo .custom-logo {
    max-height: 50px;
    width: auto;
}

/* ─── Navigation ──────────────────────────────────────────── */
.site-nav .nav-list {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.site-nav a {
    color: var(--color-text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.site-nav a:hover,
.site-nav .current-menu-item > a,
.site-nav .current_page_item > a {
    color: var(--color-gold);
    border-bottom-color: var(--color-gold);
}

.site-nav .external-link a::after {
    content: '';
}

.site-nav .external-icon {
    font-size: 0.75em;
    margin-left: 0.2em;
}

/* Search toggle - always visible */
@media (min-width: 768px) {
    .search-toggle {
        margin-left: 1rem;
        order: unset;
    }
}

/* Hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 110;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text-dark);
    margin: 5px 0;
    transition: transform 0.3s, opacity 0.3s;
}

/* Mobile nav */
@media (max-width: 767px) {
    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--color-white);
        box-shadow: -2px 0 8px rgba(0, 0, 0, 0.15);
        padding: calc(var(--header-height) + 1rem) 2rem 2rem;
        transition: right 0.3s ease;
        overflow-y: auto;
        z-index: 105;
    }

    .site-nav.is-open {
        right: 0;
    }

    .site-nav .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .site-nav li {
        border-bottom: 1px solid var(--color-border);
    }

    .site-nav a {
        display: block;
        padding: 0.75rem 0;
        border-bottom: none;
    }

    /* Hamburger animation */
    .nav-toggle.is-active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.is-active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.is-active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 90;
    }

    .nav-overlay.is-visible {
        display: block;
    }
}

/* ─── Footer ──────────────────────────────────────────────── */
.site-footer {
    background: var(--color-footer);
    color: var(--color-text-light);
    padding: 3rem 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
}

@media (min-width: 640px) {
    .footer-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 960px) {
    .footer-inner {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-col {
    min-width: 0;
}

.footer-title {
    color: var(--color-white);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.site-footer h3,
.site-footer h4 {
    color: var(--color-white);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

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

.site-footer a:hover {
    color: var(--color-gold);
}

.footer-links {
    list-style: none;
}

.footer-links li + li {
    margin-top: 0.4rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

.footer-bottom-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
    font-size: 0.85rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    transition: background 0.2s;
}

.footer-social a:hover {
    background: var(--color-gold);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

/* ─── Newsletter form ─────────────────────────────────────── */
.newsletter-form label {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
    color: var(--color-text-light);
}

.newsletter-form input[type="email"],
.newsletter-form input[type="text"] {
    width: 100%;
    padding: 0.5rem 0.75rem;
    margin-bottom: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    font-family: var(--font-main);
    font-size: 0.9rem;
}

.newsletter-form input::placeholder {
    color: var(--color-text-light);
}

.newsletter-form .required {
    color: var(--color-gold);
}

.btn-subscribe {
    padding: 0.5rem 1.25rem;
    background: var(--color-gold);
    color: var(--color-white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-family: var(--font-main);
    cursor: pointer;
    transition: background 0.2s;
}

.btn-subscribe:hover {
    background: var(--color-gold-hover);
}

/* ─── Buttons ─────────────────────────────────────────────── */
.btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: background 0.2s, color 0.2s;
}

.btn--primary {
    background: var(--color-gold);
    color: var(--color-white);
}

.btn--primary:hover {
    background: var(--color-gold-hover);
    color: var(--color-white);
}

.btn--outline {
    background: transparent;
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
}

.btn--outline:hover {
    background: var(--color-gold);
    color: var(--color-white);
}

.btn--small {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
}

/* ─── Breadcrumbs ─────────────────────────────────────────── */
.breadcrumbs {
    padding: 1rem 0;
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.breadcrumbs a {
    color: var(--color-text-light);
}

.breadcrumbs a:hover {
    color: var(--color-gold);
}

.breadcrumbs .sep {
    margin: 0 0.4rem;
}

.breadcrumbs .current {
    color: var(--color-text-dark);
}

/* ─── Cards ───────────────────────────────────────────────── */
.card {
    background: var(--color-white);
    color: var(--color-text);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.card__image {
    aspect-ratio: 1;
    overflow: hidden;
}

.card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.card:hover .card__image img {
    transform: scale(1.05);
}

.card__body {
    padding: 1.25rem;
    color: var(--color-text);
}

.card__body h3 {
    color: var(--color-text-dark);
}

.card__title {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.card__title a {
    color: var(--color-text-dark);
}

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

.card__meta {
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

.card__excerpt {
    font-size: 0.9rem;
    color: var(--color-text);
}

/* ─── Artiest cards (overlay style) ──────────────────────── */
.artiest-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--color-bg-dark);
}

.artiest-card__link {
    display: block;
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.artiest-card__link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.artiest-card:hover .artiest-card__link img {
    transform: scale(1.08);
}

.artiest-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1rem 1rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    color: #fff;
    transition: padding-bottom 0.3s ease;
}

.artiest-card:hover .artiest-card__overlay {
    padding-bottom: 1.25rem;
}

.artiest-card__name {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.artiest-card__genre {
    font-size: 0.75rem;
    color: var(--color-gold);
    display: block;
    margin-top: 0.2rem;
}

/* ─── Blog cards ──────────────────────────────────────────── */
.blog-card .card__image {
    aspect-ratio: 3/2;
    display: block;
}

.blog-card .card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ─── Hero slider ─────────────────────────────────────────── */
.hero-slider {
    position: relative;
    overflow: hidden;
    background: var(--color-bg-dark);
}

.hero-slider__track {
    display: flex;
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.hero-slider__track::-webkit-scrollbar {
    display: none;
}

.hero-slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.hero-slide__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-slide__content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--color-white);
    padding: 2rem;
}

.hero-slide__content h1 {
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.hero-slide__content p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    max-width: 600px;
}

.hero-slider__dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 2;
}

.hero-slider__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.hero-slider__dot.is-active {
    background: var(--color-gold);
}

/* ─── Genre filter ────────────────────────────────────────── */
.genre-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.genre-filter__btn {
    padding: 0.4rem 1rem;
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    font-family: var(--font-main);
    font-size: 0.85rem;
    color: var(--color-text);
    cursor: pointer;
    transition: all 0.2s;
}

.genre-filter__btn:hover,
.genre-filter__btn.is-active {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-white);
}

/* ─── Embeds ──────────────────────────────────────────────── */
.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    margin: 1.5rem 0;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
}

.audio-embed {
    margin: 1.5rem 0;
}

.audio-embed iframe {
    border-radius: 12px;
    height: 500px;
}

/* ─── Contact form ────────────────────────────────────────── */
.contact-form {
    max-width: 600px;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--color-text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-family: var(--font-main);
    font-size: 0.95rem;
    color: var(--color-text-dark);
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
}

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

.form-message {
    padding: 0.75rem 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.form-message--success {
    background: #e8f5e9;
    color: #2e7d32;
}

.form-message--error {
    background: #ffebee;
    color: #c62828;
}

/* Honeypot */
.form-hp {
    position: absolute;
    left: -9999px;
}

/* ─── Pagination ──────────────────────────────────────────── */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.5rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-size: 0.9rem;
    color: var(--color-text);
    transition: all 0.2s;
}

.pagination a:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.pagination .current {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-white);
}

/* ─── Archive Hero Banner ─────────────────────────────────── */
.archive-hero {
    position: relative;
    min-height: 340px;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-color: var(--color-footer);
}

.archive-hero__overlay {
    display: flex;
    align-items: flex-end;
    min-height: 340px;
    padding: 2.5rem 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.15) 100%
    );
}

.archive-hero__content h1 {
    color: var(--color-white);
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.archive-hero__tagline {
    color: var(--color-gold);
    font-size: 1.1rem;
    margin: 0;
}

@media (min-width: 768px) {
    .archive-hero {
        min-height: 420px;
    }

    .archive-hero__overlay {
        min-height: 420px;
    }

    .archive-hero__content h1 {
        font-size: 3rem;
    }
}

/* ─── Utilities ───────────────────────────────────────────── */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.text-center { text-align: center; }
.text-gold { color: var(--color-gold); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

/* ─── WordPress defaults ──────────────────────────────────── */
.alignleft {
    float: left;
    margin: 0 1.5rem 1rem 0;
}

.alignright {
    float: right;
    margin: 0 0 1rem 1.5rem;
}

.aligncenter {
    display: block;
    margin: 1rem auto;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-top: 0.3rem;
}

/* ─── Page content ────────────────────────────────────────── */
.page-content {
    padding: 2rem 0 4rem;
}

.page-content h1 {
    margin-bottom: 1.5rem;
}

.page-content img {
    border-radius: 6px;
}

.page-content ul,
.page-content ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.page-content li + li {
    margin-top: 0.4rem;
}

/* ─── 404 ─────────────────────────────────────────────────── */
.error-404 {
    text-align: center;
    padding: 6rem 0;
}

.error-404 h1 {
    font-size: 5rem;
    color: var(--color-gold);
}

/* ─── Search Toggle Button ────────────────────────────────── */
.search-toggle {
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: var(--color-text);
    display: flex;
    align-items: center;
    transition: color 0.2s;
    order: 2;
}
.search-toggle:hover {
    color: var(--color-gold);
}

/* ─── Search Overlay ─────────────────────────────────────── */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}
.search-overlay.is-active {
    opacity: 1;
    visibility: visible;
}
.search-overlay__inner {
    width: 90%;
    max-width: 640px;
    position: relative;
}
.search-overlay__form {
    display: flex;
    border-bottom: 2px solid var(--color-gold);
}
.search-overlay__input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--color-white);
    font-family: var(--font-main);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    padding: 1rem 0;
}
.search-overlay__input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}
.search-overlay__submit {
    background: none;
    border: none;
    color: var(--color-gold);
    cursor: pointer;
    padding: 1rem;
    transition: color 0.2s;
}
.search-overlay__submit:hover {
    color: var(--color-white);
}
.search-overlay__close {
    position: absolute;
    top: -4rem;
    right: 0;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.2s;
}
.search-overlay__close:hover {
    color: var(--color-white);
}

/* ─── Search Results ─────────────────────────────────────── */
.search-count {
    color: var(--color-gold);
    font-size: 1rem;
    margin-bottom: 2rem;
}
.search-no-results {
    text-align: center;
    padding: 3rem 0;
}
.search-no-results a {
    color: var(--color-gold);
}

/* ─── Search Form (legacy) ───────────────────────────────── */
.search-form {
    display: flex;
    gap: 0.5rem;
    max-width: 500px;
}

.search-form input[type="search"] {
    flex: 1;
    padding: 0.6rem 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-family: var(--font-main);
    font-size: 0.95rem;
}

.search-form button {
    padding: 0.6rem 1.25rem;
    background: var(--color-gold);
    color: var(--color-white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
}

/* ─── Mobile fixes ────────────────────────────────────────── */
@media (max-width: 480px) {
    .alignleft,
    .alignright {
        float: none;
        display: block;
        margin: 1rem auto;
    }

    .container {
        padding: 0 1rem;
    }

    .section {
        padding: 2.5rem 0;
    }
}

/* ─── Print ───────────────────────────────────────────────── */
@media print {
    .site-header,
    .site-footer,
    .breadcrumbs,
    .nav-toggle,
    .hero-slider__dots {
        display: none;
    }

    body {
        color: #000;
        background: #fff;
    }
}
