/* =============================================================================
   Civilwarspecials.nl — Modern Dark Museum Theme
   ============================================================================= */

/* ── Google Fonts (loaded via header.php) ────────────────────────────────── */
/* Playfair Display (headings) + EB Garamond (body) */

/* ── Reset & Box Model ───────────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #0E0B08;
    background-image:
        radial-gradient(ellipse at 20% 0%, rgba(90, 50, 10, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 100%, rgba(60, 20, 10, 0.15) 0%, transparent 60%);
    font-family: 'EB Garamond', Georgia, Times, serif;
    font-size: 16px;
    color: #E8E0D0;
    min-height: 100vh;
    line-height: 1.7;
}

a {
    color: #C9A227;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #F0C84A;
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ── Outer Wrapper ───────────────────────────────────────────────────────── */
.jw-main-wrapper {
    max-width: 980px;
    margin: 24px auto;
    background: transparent;
    border-radius: 12px;
    overflow: visible;
}

/* ── Header ──────────────────────────────────────────────────────────────── */
.header {
    position: relative;
    width: 100%;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
}

.header-bar-1 {
    height: 4px;
    background: linear-gradient(90deg, #8B1A10, #C9A227, #8B1A10);
}

.header-bar-content {
    background: linear-gradient(135deg, #1C1208 0%, #2E1F0A 40%, #3D2A0C 70%, #261509 100%);
    padding: 22px 28px 18px;
    position: relative;
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

.header-bar-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 28px;
    right: 28px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.4), transparent);
}

.jw-header-container {
    position: relative;
}

.jw-header-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 26px;
    font-weight: 700;
    color: #C9A227;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
    margin-bottom: 6px;
    letter-spacing: 0.01em;
}

.jw-header-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.jw-header-title a:hover {
    color: #F0C84A;
    text-decoration: none;
}

.jw-header-slogan {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 13.5px;
    color: rgba(232, 224, 208, 0.6);
    font-style: italic;
    letter-spacing: 0.06em;
}

.header-bar-2 {
    height: 3px;
    background: linear-gradient(90deg, #3D2A0C, #1A1005, #3D2A0C);
}

.header-bar-gradient {
    height: 4px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
}

/* ── Mobile menu toggle ─────────────────────────────────────────────────── */
.mobile-menu-toggle {
    display: none;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    background: #0F0C08;
    border: none;
    cursor: pointer;
    padding: 14px 18px;
    width: 100%;
    border-bottom: 1px solid rgba(201, 162, 39, 0.15);
    transition: background 0.2s;
}

.mobile-menu-toggle:hover {
    background: #1A1208;
}

.mobile-menu-toggle span.burger-lines {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-toggle span.burger-lines i {
    display: block;
    width: 22px;
    height: 2px;
    background: #C9A227;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-menu-toggle span.burger-label {
    color: #C9A227;
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 14px;
    letter-spacing: 0.08em;
}

/* ── Layout ──────────────────────────────────────────────────────────────── */
.jw-layout {
    display: flex;
    align-items: flex-start;
    min-height: 600px;
    background: #181209;
    border-radius: 0 0 12px 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(201, 162, 39, 0.08);
}

/* ── Sidebar ─────────────────────────────────────────────────────────────── */
.sidebar {
    width: 210px;
    flex-shrink: 0;
    background: #0B0805;
    border-right: 1px solid rgba(201, 162, 39, 0.1);
    min-height: 600px;
    position: sticky;
    top: 0;
    align-self: flex-start;
}

/* ── Menu ─────────────────────────────────────────────────────────────── */
.jw-menu-wrapper {
    padding: 0;
}

ul.jw-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul.jw-menu>.jw-menu-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

ul.jw-menu>.jw-menu-item>.jw-menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    color: #B8AA94;
    font-size: 12.5px;
    font-family: 'EB Garamond', Georgia, serif;
    text-decoration: none;
    line-height: 1.3;
    transition: background 0.15s, color 0.15s, padding-left 0.2s;
    position: relative;
}

ul.jw-menu>.jw-menu-item>.jw-menu-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #C9A227;
    transform: scaleY(0);
    transition: transform 0.2s ease;
}

ul.jw-menu>.jw-menu-item>.jw-menu-link:hover,
ul.jw-menu>.jw-menu-is-active>.jw-menu-link {
    background: rgba(201, 162, 39, 0.07);
    color: #F0C84A;
    padding-left: 18px;
}

ul.jw-menu>.jw-menu-item>.jw-menu-link:hover::before,
ul.jw-menu>.jw-menu-is-active>.jw-menu-link::before {
    transform: scaleY(1);
}

/* Arrow indicator */
.jw-arrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid rgba(201, 162, 39, 0.4);
    margin-left: 6px;
    transition: transform 0.25s ease, border-top-color 0.2s;
    flex-shrink: 0;
}

.jw-menu-is-active .jw-arrow-toplevel {
    transform: rotate(180deg);
    border-top-color: #C9A227;
}

/* Submenu */
ul.jw-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    background: rgba(0, 0, 0, 0.25);
    border-top: 1px solid rgba(201, 162, 39, 0.06);
}

ul.jw-submenu .jw-menu-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

ul.jw-submenu .jw-menu-link {
    display: block;
    padding: 7px 12px 7px 24px;
    color: #8A7D68;
    font-size: 12px;
    font-family: 'EB Garamond', Georgia, serif;
    text-decoration: none;
    transition: background 0.15s, color 0.15s, padding-left 0.2s;
    position: relative;
}

ul.jw-submenu .jw-menu-link::before {
    content: '›';
    position: absolute;
    left: 12px;
    color: rgba(201, 162, 39, 0.3);
    transition: color 0.2s;
}

ul.jw-submenu .jw-menu-link:hover,
ul.jw-submenu .jw-menu-is-active .jw-menu-link {
    background: rgba(201, 162, 39, 0.05);
    color: #C9A227;
    padding-left: 28px;
}

ul.jw-submenu .jw-menu-link:hover::before,
ul.jw-submenu .jw-menu-is-active .jw-menu-link::before {
    color: #C9A227;
}

/* Submenu hide/show */
.jw-menu-has-submenu .jw-submenu {
    display: none;
}

.jw-menu-is-active .jw-submenu {
    display: block;
    animation: slideDown 0.25s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Main Content ─────────────────────────────────────────────────────────── */
.content {
    flex: 1;
    min-width: 0;
    padding: 28px 30px 40px;
    background: #181209;
}

/* Page title */
.content h1,
.content h2 {
    font-family: 'Playfair Display', Georgia, serif;
    color: #C9A227;
    margin-bottom: 14px;
    line-height: 1.2;
    letter-spacing: 0.01em;
}

.content h1 {
    font-size: 28px;
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.content h2 {
    font-size: 22px;
    border-bottom: 1px solid rgba(201, 162, 39, 0.15);
    padding-bottom: 8px;
    margin-bottom: 16px;
}

.content h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 17px;
    color: #D4B440;
    margin-bottom: 10px;
    line-height: 1.3;
}

.content p {
    margin-bottom: 14px;
    line-height: 1.75;
    font-size: 15.5px;
    color: #D4C9B5;
}

.content ul,
.content ol {
    margin: 8px 0 14px 24px;
    line-height: 1.75;
    color: #D4C9B5;
}

.content hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.3), transparent);
    margin: 22px 0;
}

.content img {
    border: 1px solid rgba(201, 162, 39, 0.15);
    border-radius: 4px;
    margin: 12px auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.content img:hover {
    transform: scale(1.01);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
    border-color: rgba(201, 162, 39, 0.4);
}

.content table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    margin: 14px 0;
    border: 1px solid rgba(201, 162, 39, 0.1);
    border-radius: 6px;
    overflow: hidden;
}

.content table th {
    background: rgba(201, 162, 39, 0.12);
    color: #C9A227;
    padding: 9px 12px;
    text-align: left;
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 13px;
    letter-spacing: 0.05em;
    font-weight: bold;
}

.content table td {
    padding: 7px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    color: #C4B8A4;
}

.content table tr:last-child td {
    border-bottom: none;
}

.content table tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.02);
}

/* ── Product Title Block ─────────────────────────────────────────────────── */
.cws-page-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 30px;
    font-weight: 700;
    color: #C9A227;
    text-align: center;
    margin-bottom: 6px;
    letter-spacing: 0.01em;
    line-height: 1.2;
}

.cws-page-subtitle {
    text-align: center;
    color: #8A7D68;
    font-style: italic;
    font-size: 14px;
    margin-bottom: 20px;
    font-family: 'EB Garamond', Georgia, serif;
    letter-spacing: 0.04em;
}

.cws-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.35), transparent);
    margin: 20px 0;
}

/* ── Hero Banner (wide cinema strip) ─────────────────────────────────────── */
.cws-hero-banner {
    width: 100%;
    max-height: 220px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 24px;
    border: 1px solid rgba(201, 162, 39, 0.15);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.6);
}

/* ── Product Section Card ─────────────────────────────────────────────────── */
.cws-product-section {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(201, 162, 39, 0.1);
    border-radius: 8px;
    padding: 22px 24px;
    margin-bottom: 28px;
    transition: border-color 0.3s ease;
}

.cws-product-section:hover {
    border-color: rgba(201, 162, 39, 0.22);
}

.cws-product-section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px;
    color: #C9A227;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(201, 162, 39, 0.15);
    letter-spacing: 0.01em;
}

.cws-product-desc {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 15.5px;
    line-height: 1.78;
    color: #C4B8A4;
    margin-bottom: 12px;
}

/* ── Image Gallery Grid ───────────────────────────────────────────────────── */
.cws-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 12px;
    margin: 18px 0;
}

.cws-gallery-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.cws-gallery-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.cws-gallery-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid rgba(201, 162, 39, 0.15);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.55);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: block;
}

.cws-gallery-img:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.75);
    border-color: rgba(201, 162, 39, 0.45);
}

.cws-gallery-img.tall {
    height: 280px;
}

.cws-gallery-img.wide {
    grid-column: span 2;
    height: 200px;
}

/* ── Single full-width image ─────────────────────────────────────────────── */
.cws-image-full {
    width: 100%;
    border-radius: 6px;
    border: 1px solid rgba(201, 162, 39, 0.15);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.55);
    margin: 16px 0;
    cursor: pointer;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.cws-image-full:hover {
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.75);
    border-color: rgba(201, 162, 39, 0.4);
}

/* ── Pull Quote / Provenance ─────────────────────────────────────────────── */
.cws-pull-quote {
    border-left: 3px solid #C9A227;
    padding: 10px 16px;
    margin: 16px 0;
    background: rgba(201, 162, 39, 0.05);
    border-radius: 0 6px 6px 0;
    color: #A09484;
    font-style: italic;
    font-size: 14px;
    font-family: 'EB Garamond', Georgia, serif;
}

/* ── Badge label ─────────────────────────────────────────────────────────── */
.cws-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 3px;
    font-size: 11.5px;
    font-family: 'EB Garamond', Georgia, serif;
    letter-spacing: 0.06em;
    font-weight: bold;
    vertical-align: middle;
}

.cws-badge-gold {
    background: rgba(201, 162, 39, 0.15);
    color: #C9A227;
    border: 1px solid rgba(201, 162, 39, 0.3);
}

.cws-badge-red {
    background: rgba(139, 26, 16, 0.2);
    color: #E05040;
    border: 1px solid rgba(139, 26, 16, 0.4);
}

/* ── Category list (overview pages) ─────────────────────────────────────── */
.cws-category-list {
    list-style: none;
    padding: 0;
    margin: 16px 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 8px;
}

.cws-category-list li {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(201, 162, 39, 0.1);
    border-radius: 6px;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.cws-category-list li:hover {
    background: rgba(201, 162, 39, 0.07);
    border-color: rgba(201, 162, 39, 0.3);
    transform: translateY(-2px);
}

.cws-category-list a {
    display: block;
    padding: 13px 16px;
    color: #C4B8A4;
    font-size: 14px;
    font-family: 'EB Garamond', Georgia, serif;
    transition: color 0.2s;
}

.cws-category-list a:hover {
    color: #F0C84A;
    text-decoration: none;
}

.cws-category-list a::before {
    content: '›  ';
    color: #C9A227;
    opacity: 0.6;
}

/* ── Flags ───────────────────────────────────────────────────────────────── */
.jw-flags {
    display: flex;
    gap: 10px;
    margin: 10px 0;
}

.flag-icon {
    font-size: 22px;
    cursor: default;
    line-height: 1;
}

.flag-icon--clickable {
    cursor: pointer;
    opacity: 0.65;
    transition: opacity 0.2s, transform 0.2s;
}

.flag-icon--clickable:hover {
    opacity: 1;
    transform: scale(1.15);
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
.footer {
    background: #0A0704;
    color: #5C5044;
    padding: 14px 24px;
    border-radius: 0 0 12px 12px;
    border-top: 1px solid rgba(201, 162, 39, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copy {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 12.5px;
    color: #4A4438;
    letter-spacing: 0.03em;
}

.footer-flags {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-flags .flag-icon {
    font-size: 18px;
}

/* ── Contact form ────────────────────────────────────────────────────────── */
.cws-contact-form {
    max-width: 520px;
}

.cws-contact-form label {
    display: block;
    font-size: 13px;
    font-family: 'EB Garamond', Georgia, serif;
    color: #A09080;
    margin-bottom: 5px;
    letter-spacing: 0.03em;
}

.cws-contact-form input[type="text"],
.cws-contact-form input[type="email"],
.cws-contact-form textarea {
    width: 100%;
    padding: 10px 13px;
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 5px;
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.04);
    color: #E0D8C8;
    margin-bottom: 14px;
    transition: border-color 0.2s, background 0.2s;
}

.cws-contact-form input:focus,
.cws-contact-form textarea:focus {
    outline: none;
    border-color: rgba(201, 162, 39, 0.5);
    background: rgba(255, 255, 255, 0.07);
}

.cws-contact-form textarea {
    min-height: 130px;
    resize: vertical;
}

.cws-contact-form button[type="submit"] {
    background: linear-gradient(135deg, #8B5E10, #C9A227);
    color: #0E0B08;
    border: none;
    padding: 11px 28px;
    font-size: 14.5px;
    font-family: 'Playfair Display', Georgia, serif;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 700;
    letter-spacing: 0.04em;
    transition: opacity 0.2s, transform 0.15s;
    box-shadow: 0 4px 16px rgba(201, 162, 39, 0.2);
}

.cws-contact-form button[type="submit"]:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

/* ── 404 page ────────────────────────────────────────────────────────────── */
.cws-404 {
    text-align: center;
    padding: 60px 20px;
}

.cws-404 h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 56px;
    color: #8B1A10;
    margin-bottom: 12px;
    text-shadow: 0 2px 12px rgba(139, 26, 16, 0.3);
}

.cws-404 p {
    font-size: 17px;
    color: #7A6E60;
    margin-bottom: 28px;
}

.cws-404 a {
    background: linear-gradient(135deg, #8B5E10, #C9A227);
    color: #0E0B08;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 14px;
    display: inline-block;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    transition: opacity 0.2s, transform 0.15s;
}

.cws-404 a:hover {
    opacity: 0.88;
    text-decoration: none;
    transform: translateY(-2px);
}

/* ── Lightbox ────────────────────────────────────────────────────────────── */
.cws-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.2s ease;
}

.cws-lightbox.is-open {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.cws-lightbox-img {
    max-width: 92vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.85);
    border: 1px solid rgba(201, 162, 39, 0.2);
    animation: zoomIn 0.25s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.92);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.cws-lightbox-close {
    position: fixed;
    top: 20px;
    right: 24px;
    width: 40px;
    height: 40px;
    background: rgba(201, 162, 39, 0.15);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #C9A227;
    transition: background 0.2s, transform 0.2s;
    z-index: 10000;
    font-family: sans-serif;
    line-height: 1;
}

.cws-lightbox-close:hover {
    background: rgba(201, 162, 39, 0.3);
    transform: scale(1.1) rotate(90deg);
}

.cws-lightbox-caption {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #A09080;
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 14px;
    font-style: italic;
    text-align: center;
    max-width: 80vw;
}

/* ── Back link ───────────────────────────────────────────────────────────── */
.cws-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #8A7D68;
    font-size: 13px;
    font-family: 'EB Garamond', Georgia, serif;
    margin-bottom: 20px;
    transition: color 0.2s;
}

.cws-back-link:hover {
    color: #C9A227;
    text-decoration: none;
}

/* ── Front page hero card ────────────────────────────────────────────────── */
.cws-hero-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 28px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

.cws-hero-wrapper img {
    width: 100%;
    max-height: 260px;
    object-fit: cover;
    display: block;
    border: none;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
}

.cws-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.1) 60%);
    display: flex;
    align-items: flex-end;
    padding: 22px 26px;
}

.cws-hero-overlay h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28px;
    color: #F0C84A;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    margin: 0;
    border: none;
    padding: 0;
    line-height: 1.2;
}

/* ── Feature cards on homepage ───────────────────────────────────────────── */
.cws-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 24px;
}

.cws-feature-card {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(201, 162, 39, 0.12);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    text-decoration: none;
    display: block;
}

.cws-feature-card:hover {
    border-color: rgba(201, 162, 39, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    text-decoration: none;
}

.cws-feature-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
    border: none;
    margin: 0;
    box-shadow: none;
    border-radius: 0;
    transition: transform 0.4s ease;
}

.cws-feature-card:hover img {
    transform: scale(1.05);
}

.cws-feature-card-body {
    padding: 14px 16px;
}

.cws-feature-card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 15px;
    color: #C9A227;
    margin-bottom: 6px;
}

.cws-feature-card-desc {
    font-size: 13px;
    color: #7A6E60;
    font-family: 'EB Garamond', Georgia, serif;
    line-height: 1.5;
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 740px) {
    .jw-layout {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        min-height: auto;
        border-right: none;
        border-bottom: 1px solid rgba(201, 162, 39, 0.1);
        position: static;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    #jw-sidebar {
        display: none;
    }

    #jw-sidebar.is-open {
        display: block;
    }

    .content {
        padding: 18px 16px 30px;
    }

    .jw-header-title {
        font-size: 19px;
    }

    .cws-feature-grid {
        grid-template-columns: 1fr;
    }

    .cws-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cws-gallery-grid.cols-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .cws-gallery-img.wide {
        grid-column: span 1;
    }

    .cws-category-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .jw-main-wrapper {
        margin: 0;
        border-radius: 0;
    }

    .jw-layout {
        border-radius: 0;
    }

    .content {
        padding: 14px 12px 24px;
    }

    .cws-gallery-grid {
        grid-template-columns: 1fr;
    }

    .cws-hero-overlay h1 {
        font-size: 20px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}