/*
Theme Name:      Studio Roux
Version:         1.0.5
Description:     Standalone theme for Studio Roux — dark glass-morphism aesthetic with amber/gold accents.
*/

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
    0%   { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* ============================================================
   1. VARIABLES
   ============================================================ */
:root {
    --bg: #0f0f0f;
    --bg-card: rgba(20, 20, 20, 0.88);
    --purple: #7c5cbf;
    --gold: #d4a574;
    --gold-bright: #e8c49a;
    --gold-button: #c9955e;
    --text: #d4d4d4;
    --muted: #888;
    --border: #2c2c2c;
    --radius: 12px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --heading: 'Syncopate', 'Inter', sans-serif;
    --transition: 0.3s ease;
}

/* ============================================================
   2. BASE — full-page gradient background
   ============================================================ */
html { scroll-behavior: smooth; }

body {
    background-color: var(--bg) !important;
    background-image:
        radial-gradient(ellipse at 30% 40%, rgba(212,165,116,0.15) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 70%, rgba(124,92,191,0.08) 0%, transparent 50%) !important;
    font-family: var(--font) !important;
    color: var(--text);
    line-height: 1.75;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

img { max-width: 100%; height: auto; border-radius: 6px; }

/* ============================================================
   3. HEADER — sticky at top
   ============================================================ */
header {
    background: transparent;
    border-bottom: 1px solid rgba(212, 165, 116, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

header .header-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    flex-wrap: nowrap;
}

header .site-title a {
    color: var(--gold);
    font-family: var(--heading);
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    background: linear-gradient(135deg, var(--gold), var(--gold-bright), var(--gold));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

header nav {
    display: flex;
    gap: 2px;
    align-items: center;
}

header nav a {
    color: var(--text);
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 8px;
    transition: var(--transition);
    display: block;
}

header nav a:hover,
header nav a.current {
    color: var(--gold);
    background: rgba(212, 165, 116, 0.1);
    box-shadow: 0 0 15px rgba(212, 165, 116, 0.1);
}

/* Mobile nav toggle */
header .nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--gold);
}

header .nav-toggle svg {
    fill: var(--gold);
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    header nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(15, 15, 15, 0.98);
        backdrop-filter: blur(12px);
        padding: 10px;
        border-bottom: 1px solid rgba(212, 165, 116, 0.1);
    }

    header nav.open { display: flex; flex-direction: column; width: 100%; }

    header .nav-toggle { display: block; }

    header nav a {
        padding: 14px 20px;
        font-size: 0.9rem;
    }
}

/* ============================================================
   4. FOOTER — stays at bottom
   ============================================================ */
footer {
    background: rgba(15,15,15,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(212, 165, 116, 0.1);
    padding: 24px 20px 16px;
    margin-top: auto;
}

footer .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

footer .footer-info { text-align: center; }
footer .footer-links { margin-top: 8px; }

footer p {
    color: var(--muted) !important;
    font-size: 0.75rem !important;
    margin: 0;
    line-height: 1.6;
}

footer .footer-links a {
    color: var(--muted);
    font-size: 0.75rem;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

header nav a.nav-login {
    color: var(--muted);
    font-size: 0.7rem;
    border: 1px solid var(--border);
    padding: 6px 12px;
}

header nav a.nav-login:hover {
    color: var(--gold);
    border-color: var(--gold);
}

/* ============================================================
   5. MAIN CONTENT — centered
   ============================================================ */
main {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px 80px;
    flex: 1;
}

.entry-content {
    max-width: 100%;
    margin: 0 auto;
}

/* ============================================================
   6. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading) !important;
    color: var(--gold) !important;
    letter-spacing: 1px;
    line-height: 1.4 !important;
}

h1 { font-size: 1.8rem !important; }
h2 { font-size: 1.3rem !important; }
h3 { font-size: 1.1rem !important; }

a { color: var(--gold) !important; text-decoration: none !important; }
a:hover { color: var(--gold-bright) !important; }

p { color: var(--text); font-size: 0.95rem; line-height: 1.8; }

.has-text-align-center { text-align: center !important; }

.wp-block-group.is-layout-flex,
.is-layout-flex {
    display: flex;
    flex-wrap: wrap;
    gap: var(--wp--style--block-gap, 1em);
}
.wp-block-group.is-vertical,
.is-vertical { flex-direction: column; }
.is-content-justification-stretch { align-items: stretch; }
.is-content-justification-center { justify-content: center; }
.wp-block-group.alignfull { width: 100%; }
.wp-block-group.alignwide { max-width: 1100px; margin-left: auto; margin-right: auto; }
.wp-block-columns { display: flex; flex-wrap: wrap; gap: 2em; }
.wp-block-column { flex: 1; min-width: 250px; }
.wp-block-separator { border: none; border-top: 1px solid #333; margin: 12px 0; }
.has-x-large-font-size { font-size: 1.5rem !important; }
.has-medium-font-size { font-size: 1rem !important; }
.wp-block-button__width-100 { width: 100%; }
.has-border-color { border-style: solid; }

/* ============================================================
   7. IMAGES — centered
   ============================================================ */
.wp-block-image {
    margin: 24px auto !important;
    text-align: center;
}

.wp-block-image img {
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    width: 100%;
    height: auto;
}

figure.wp-block-image {
    margin: 24px auto !important;
    text-align: center;
}

/* ============================================================
   8. CARDS — glass-morphism
   ============================================================ */
.studio-card,
.studio-card-fixed,
.studio-card-wide,
.matrix-glass,
.matrix-container-fixed,
.matrix-glass-variable {
    background: var(--bg-card) !important;
    backdrop-filter: blur(14px) saturate(120%);
    -webkit-backdrop-filter: blur(14px) saturate(120%);
    border: 1px solid rgba(212, 165, 116, 0.15) !important;
    border-radius: var(--radius) !important;
    padding: 28px !important;
    width: 100% !important;
    margin: 16px auto !important;
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(212, 165, 116, 0.05) !important;
    box-sizing: border-box !important;
    animation: fadeUp 0.5s ease-out both;
    position: relative;
    overflow: hidden;
}

.studio-card::before,
.studio-card-fixed::before,
.studio-card-wide::before,
.matrix-glass::before,
.matrix-container-fixed::before,
.matrix-glass-variable::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.4;
}

.studio-card:hover,
.studio-card-fixed:hover,
.studio-card-wide:hover,
.matrix-glass:hover,
.matrix-container-fixed:hover,
.matrix-glass-variable:hover {
    border-color: rgba(212, 165, 116, 0.3) !important;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.65), 0 0 30px rgba(212, 165, 116, 0.08) !important;
}

.studio-card { max-width: 620px !important; }
.studio-card-fixed { max-width: 650px !important; }
.studio-card-wide { max-width: 960px !important; }

/* ============================================================
   9. BUTTONS
   ============================================================ */
.wp-block-button__link,
input[type="submit"] {
    background: linear-gradient(135deg, var(--gold-button), var(--gold)) !important;
    color: #0f0f0f !important;
    padding: 12px 24px !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    letter-spacing: 0.5px;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    border: 1px solid var(--gold-button) !important;
    display: inline-block;
    text-align: center;
    cursor: pointer;
}

.wp-block-button__link:hover,
input[type="submit"]:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-bright)) !important;
    color: #0f0f0f !important;
    box-shadow: 0 0 25px rgba(212, 165, 116, 0.3), 0 4px 15px rgba(0, 0, 0, 0.3) !important;
    transform: translateY(-1px);
}

.is-style-outline .wp-block-button__link {
    background: transparent !important;
    color: var(--gold-button) !important;
    border: 1px solid var(--gold-button) !important;
}

.is-style-outline .wp-block-button__link:hover {
    background: var(--gold-button) !important;
    color: #0f0f0f !important;
}

/* ============================================================
   10. CALENDAR
   ============================================================ */
.wp-block-calendar {
    background: var(--bg-card) !important;
    border: 1px solid rgba(212, 165, 116, 0.15) !important;
    border-radius: var(--radius) !important;
    padding: 20px 16px !important;
    position: relative;
    overflow: hidden;
}

.wp-block-calendar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
}

.wp-block-calendar th {
    background: rgba(212, 165, 116, 0.08) !important;
    color: var(--gold) !important;
    font-weight: 700;
    padding: 8px 4px;
}

.wp-block-calendar td {
    border-color: var(--border) !important;
    color: var(--text) !important;
    padding: 6px 4px;
}

.wp-block-calendar td a { color: var(--gold-button) !important; font-weight: 700; }

/* ============================================================
   11. BOOKING FORM
   ============================================================ */
.booking-form { max-width: 560px; margin: 0 auto; text-align: left; }

.booking-form label {
    display: block; color: var(--gold); font-weight: 700;
    font-size: 0.85rem; margin-bottom: 4px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%; padding: 12px 14px; margin-bottom: 16px;
    background: #1a1a1a; border: 1px solid rgba(212, 165, 116, 0.15);
    border-radius: 6px; color: var(--text);
    font-family: var(--font); font-size: 0.95rem;
    box-sizing: border-box; transition: all 0.3s ease;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none; border-color: var(--gold-button);
    box-shadow: 0 0 0 2px rgba(212, 165, 116, 0.1), 0 0 15px rgba(212, 165, 116, 0.1);
}

.booking-form input[type="submit"] { width: 100%; margin-top: 4px; }

.booking-form .form-row {
    display: flex; flex-direction: column; gap: 0;
}

@media (min-width: 480px) {
    .booking-form .form-row { flex-direction: row; gap: 16px; }
    .booking-form .form-row > * { flex: 1; }
}

.form-success {
    background: rgba(201, 149, 94, 0.1); border: 1px solid var(--gold-button);
    border-radius: 8px; padding: 24px 20px; text-align: center; color: var(--text);
    position: relative; overflow: hidden;
}

.form-success::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.form-error {
    background: rgba(200, 80, 60, 0.1); border: 1px solid #c8503c;
    border-radius: 6px; padding: 14px 20px; margin-bottom: 16px; color: #e08070;
    position: relative; overflow: hidden;
}

.form-error::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, #c8503c, transparent);
}

/* ============================================================
   12. PAYPAL
   ============================================================ */
.paypal-box {
    max-width: 400px; margin: 0 auto; text-align: center;
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(212, 165, 116, 0.15);
    border-radius: var(--radius);
    padding: 20px;
    position: relative; overflow: hidden;
}

.paypal-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.4;
}

.paypal-box label {
    display: block; color: var(--gold); font-weight: 700;
    font-size: 0.85rem; margin-bottom: 4px; text-align: left;
}

.paypal-row { display: flex; gap: 8px; }

.paypal-row input[type="number"] {
    flex: 1; padding: 12px 14px; background: #1a1a1a;
    border: 1px solid rgba(212, 165, 116, 0.15); border-radius: 6px;
    color: var(--text); font-family: var(--font); font-size: 0.95rem;
    transition: all 0.3s ease;
}

.paypal-row input[type="number"]:focus {
    outline: none; border-color: var(--gold-button);
    box-shadow: 0 0 0 2px rgba(212, 165, 116, 0.1), 0 0 15px rgba(212, 165, 116, 0.1);
}

.paypal-row button {
    background: linear-gradient(135deg, #0070ba, #005a96); color: #fff; border: none;
    padding: 12px 24px; border-radius: 6px; font-weight: 700;
    font-size: 0.9rem; cursor: pointer; transition: all 0.3s ease;
    white-space: nowrap;
}

.paypal-row button:hover {
    background: linear-gradient(135deg, #005a96, #004a7a);
    box-shadow: 0 0 20px rgba(0, 112, 186, 0.3);
    transform: translateY(-1px);
}

.paypal-hint {
    font-size: 0.8rem; color: var(--muted); margin-top: 8px;
    font-style: italic;
}

/* ============================================================
   13. BLOCKQUOTE
   ============================================================ */
blockquote {
    border-left: 3px solid var(--gold) !important;
    background: rgba(212, 165, 116, 0.04);
    padding: 16px 20px !important;
    font-style: italic;
    position: relative; overflow: hidden;
}

blockquote::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
    opacity: 0.3;
}

.wp-block-columns { gap: 20px !important; }
.wp-block-column { padding: 0 !important; }



.posts-list {
    list-style: none;
    padding: 0;
}
.posts-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}
.posts-list a {
    color: var(--gold);
    font-size: 1.1rem;
    transition: var(--transition);
}
.posts-list a:hover { color: var(--gold-bright); }

/* ============================================================
   14. MEDIA PLAYER
   ============================================================ */

/* ============================================================
   14a. COMMENTS — both template and block styles
   ============================================================ */
#comments,
.wp-block-comments {
    margin-top: 64px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    width: 100% !important;
    max-width: 100% !important;
}

#comments h2, #comments h3,
.wp-block-comments h2, .wp-block-comments h3 {
    font-size: 1rem !important;
    margin-bottom: 16px;
    text-align: left;
}

.comment-list,
.wp-block-comment-template {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 24px !important;
}

.comment-list li.comment,
.wp-block-comment-template li.comment {
    padding: 12px 0 !important;
    margin-bottom: 8px !important;
    border-bottom: 1px solid var(--border) !important;
    text-align: left !important;
    min-height: auto !important;
}

.comment-list li.comment:last-child,
.wp-block-comment-template li.comment:last-child {
    border-bottom: none !important;
}

/* Post page comments: avatar + name on same line, date below, content below */
.comment-body {
    text-align: left;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.comment-author .avatar {
    border-radius: 50%;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.comment-author .fn {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.85rem;
}

.comment-author .says {
    display: none;
}

.comment-meta {
    font-size: 0.75rem;
    color: var(--muted);
    margin: 0 0 8px;
}

.comment-meta a {
    color: var(--muted) !important;
}

.comment-body p {
    font-size: 0.85rem;
    color: var(--text);
    margin: 0 0 8px;
    line-height: 1.6;
}

.reply {
    text-align: left;
}

.reply a {
    font-size: 0.75rem !important;
    color: var(--muted) !important;
}

.reply a:hover {
    color: var(--gold) !important;
}

/* Comment form (shared) */
.comment-respond,
.wp-block-post-comments-form {
    margin-top: 24px;
    text-align: left;
}

.comment-respond h3,
.wp-block-post-comments-form h3 {
    font-size: 0.95rem !important;
    margin-bottom: 16px;
    text-align: left;
}

.comment-form label,
.wp-block-post-comments-form label {
    display: block !important;
    color: var(--gold) !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    margin-bottom: 4px !important;
    text-align: left !important;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea,
.wp-block-post-comments-form input[type="text"],
.wp-block-post-comments-form input[type="email"],
.wp-block-post-comments-form input[type="url"],
.wp-block-post-comments-form textarea {
    width: 100% !important;
    padding: 10px 12px !important;
    background: #1a1a1a !important;
    border: 1px solid rgba(212, 165, 116, 0.15) !important;
    border-radius: 6px !important;
    color: var(--text) !important;
    font-family: var(--font) !important;
    font-size: 0.85rem !important;
    box-sizing: border-box !important;
    text-align: left !important;
}

.comment-form input:focus,
.comment-form textarea:focus,
.wp-block-post-comments-form input:focus,
.wp-block-post-comments-form textarea:focus {
    outline: none !important;
    border-color: var(--gold-button) !important;
    box-shadow: 0 0 0 2px rgba(212, 165, 116, 0.1) !important;
}

.comment-form textarea,
.wp-block-post-comments-form textarea {
    min-height: 100px !important;
    resize: vertical !important;
}

.comment-form .form-submit,
.wp-block-post-comments-form .form-submit {
    text-align: left !important;
}

.comment-form .form-submit input[type="submit"],
.wp-block-post-comments-form .form-submit input[type="submit"] {
    background: linear-gradient(135deg, var(--gold-button), var(--gold)) !important;
    color: #0f0f0f !important;
    padding: 10px 24px !important;
    border: none !important;
    border-radius: 6px !important;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    cursor: pointer !important;
}

.comment-form .form-submit input[type="submit"]:hover,
.wp-block-post-comments-form .form-submit input[type="submit"]:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-bright)) !important;
    box-shadow: 0 0 20px rgba(212, 165, 116, 0.2) !important;
}

.comment-form .comment-form-cookies-consent,
.wp-block-post-comments-form .comment-form-cookies-consent {
    font-size: 0.8rem !important;
    color: var(--muted) !important;
    text-align: left !important;
}

.comment-form .required,
.wp-block-post-comments-form .required {
    color: var(--gold) !important;
}

.comment-reply-title,
.wp-block-post-comments-form .comment-reply-title {
    text-align: left !important;
}

.comment-reply-title small a,
.wp-block-post-comments-form .comment-reply-title small a {
    font-size: 0.8rem !important;
    color: var(--muted) !important;
}

.wp-block-post-comments-form .comment-notes {
    font-size: 0.8rem !important;
    color: var(--muted) !important;
    text-align: left !important;
}

.wp-block-post-comments .commentlist .comment {
    padding-left: 0 !important;
}

/* ============================================================
   Media page block comments — match post page layout
   ============================================================ */
.wp-block-comments .wp-block-columns {
    display: flex !important;
    gap: 10px !important;
    align-items: flex-start !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
}

.wp-block-comments .wp-block-column:first-child {
    flex: 0 0 36px !important;
    max-width: 36px !important;
}

.wp-block-comments .wp-block-column:last-child {
    flex: 1 !important;
    min-width: 0 !important;
}

.wp-block-comments .wp-block-avatar img {
    border-radius: 50% !important;
    width: 36px !important;
    height: 36px !important;
}

.wp-block-comments .wp-block-comment-author-name {
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    margin-bottom: 0 !important;
}

.wp-block-comments .wp-block-comment-author-name a {
    color: var(--gold) !important;
    font-size: 0.85rem !important;
}

.wp-block-comments .wp-block-group.is-layout-flex {
    display: block !important;
    margin: 0 0 8px !important;
}

.wp-block-comments .wp-block-comment-date {
    font-size: 0.75rem !important;
    color: var(--muted) !important;
    line-height: 1.4 !important;
}

.wp-block-comments .wp-block-comment-date a {
    color: var(--muted) !important;
    font-size: 0.75rem !important;
}

.wp-block-comments .wp-block-comment-content {
    font-size: 0.85rem !important;
    line-height: 1.6 !important;
    color: var(--text) !important;
}

.wp-block-comments .wp-block-comment-content p {
    font-size: 0.85rem !important;
    margin: 0 0 8px !important;
    line-height: 1.6 !important;
}

.wp-block-comments .wp-block-comment-reply-link {
    font-size: 0.75rem !important;
    color: var(--muted) !important;
    margin-top: 8px !important;
}

.wp-block-comments .wp-block-comment-reply-link a {
    color: var(--muted) !important;
    font-size: 0.75rem !important;
}

.wp-block-comments .wp-block-comment-reply-link a:hover {
    color: var(--gold) !important;
}

/* ============================================================
   14b. MEDIA PLAYER
   ============================================================ */
.wp-block-columns.is-layout-flex {
    gap: 20px !important;
}

.wp-block-audio {
    background: var(--bg-card);
    border: 1px solid rgba(212, 165, 116, 0.15);
    border-radius: var(--radius);
    padding: 16px;
    margin: 0;
}

.wp-block-column {
    padding: 0 10px;
}

.wp-block-column:first-child {
    padding-left: 0;
}

.wp-block-column:last-child {
    padding-right: 0;
}

.wp-block-audio audio {
    width: 100%;
    height: 36px;
    filter: invert(100%) hue-rotate(180deg) brightness(1.5);
}

.wp-block-audio figcaption {
    color: var(--muted);
    font-size: 0.8rem;
    text-align: center;
    margin-top: 8px;
}

@media (max-width: 768px) {
    .wp-block-columns.is-layout-flex {
        flex-direction: column !important;
    }
    .wp-block-column {
        width: 100% !important;
    }
}

/* ============================================================
   14b. FILES DOWNLOADS GRID
   ============================================================ */
.matrix-download-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)) !important;
    gap: 16px !important;
    text-align: center;
}

.wp-block-file {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 16px;
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(212, 165, 116, 0.15);
    border-radius: var(--radius);
    transition: all 0.3s ease;
    position: relative; overflow: hidden;
}

.wp-block-file::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.4;
}

.wp-block-file:hover {
    border-color: rgba(212, 165, 116, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 15px rgba(212, 165, 116, 0.06);
}

.wp-block-file a:first-child {
    color: var(--gold) !important;
    font-family: var(--heading);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-decoration: none;
    word-break: break-word;
}

.wp-block-file .wp-block-file__button {
    background: linear-gradient(135deg, var(--gold-button), var(--gold)) !important;
    color: #0f0f0f !important;
    padding: 8px 20px !important;
    border-radius: 6px !important;
    font-weight: 700 !important;
    font-size: 0.8rem !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

.wp-block-file .wp-block-file__button:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-bright)) !important;
    box-shadow: 0 0 15px rgba(212, 165, 116, 0.3) !important;
    transform: translateY(-1px);
}

/* ============================================================
   15. RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
    main {
        padding: 30px 16px 60px !important;
    }

    header .header-inner {
        padding: 12px 14px;
    }

    header .site-title a {
        font-size: 0.85rem;
        letter-spacing: 2px;
        line-height: 1.3;
    }

    .wp-block-columns {
        flex-direction: column !important;
        gap: 32px !important;
    }

    .wp-block-column {
        flex-basis: 100% !important;
        min-width: 0 !important;
    }

    .wp-block-calendar {
        padding: 12px 8px !important;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .wp-block-calendar table {
        min-width: 300px;
    }

    .booking-form {
        padding: 0 4px;
    }

    .paypal-box {
        max-width: 100%;
        margin: 0 4px;
    }

    .paypal-row {
        flex-direction: column;
        gap: 8px;
    }

    .paypal-row button {
        width: 100%;
    }
}

@media (max-width: 600px) {
    h1 { font-size: 1.3rem !important; }
    h2 { font-size: 1.1rem !important; }
    h3 { font-size: 0.95rem !important; }

    .studio-card, .studio-card-fixed, .studio-card-wide,
    .matrix-glass, .matrix-container-fixed, .matrix-glass-variable {
        padding: 16px !important;
        margin: 10px auto !important;
    }

    header .site-title a {
        font-size: 0.78rem;
        letter-spacing: 1px;
        line-height: 1.3;
    }
}

@media (max-width: 400px) {
    header .site-title a {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }
}
