:root {
    /* Color System - Luxury Sommelier Palette */
    --clr-bg-dark: #141715;
    --clr-surface-dark: #1c211e;
    --clr-primary-wine: #7c2438;
    --clr-primary-wine-hover: #962f47;
    --clr-accent-gold: #d8b27d;
    --clr-accent-gold-light: #f3e5ce;
    --clr-text-light: #f6f2eb;
    --clr-text-muted: #b5ada3;
    
    --clr-paper: #faf6f0;
    --clr-paper-dark: #eee6da;
    --clr-text-dark: #2a1f22;
    --clr-text-subtle: #5c4d51;
    --clr-border-light: rgba(124, 36, 56, 0.15);

    --clr-organic: #4a7c59;
    --clr-organic-bg: rgba(74, 124, 89, 0.12);

    /* Typography */
    --font-heading: 'Glamour Absolute', 'Playfair Display', Georgia, serif;
    --font-body: 'Avenir LT Std Heavy', 'Avenir LT Std', 'Avenir', 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    
    /* Layout & Shadow */
    --radius-sm: 4px;
    --radius-md: 10px;
    --radius-lg: 18px;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-deep: 0 20px 40px rgba(0, 0, 0, 0.35);
}

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

html, body {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
}

img, iframe, svg, video {
    max-width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--clr-text-light);
    background-color: var(--clr-bg-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.25;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Nav */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2.5rem;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(18, 24, 21, 0.95), rgba(18, 24, 21, 0));
    backdrop-filter: blur(8px);
}

/* Hamburger Trigger (Top Left) */
.hamburger-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: transparent;
    border: none;
    color: var(--clr-text-light);
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    opacity: 0.9;
    transition: opacity 0.25s ease, color 0.25s ease;
    padding: 0.5rem 0;
}

.hamburger-btn:hover {
    opacity: 1;
    color: var(--clr-accent-gold);
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 20px;
}

.hamburger-icon span {
    display: block;
    width: 100%;
    height: 1.5px;
    background-color: currentColor;
}

.nav-brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-brand-logo {
    height: 42px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
    transition: transform 0.25s ease;
}

.nav-brand-logo:hover {
    transform: scale(1.06);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-nav-map {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1.1rem;
    background: transparent;
    border: 1px solid var(--clr-accent-gold);
    color: var(--clr-accent-gold) !important;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.btn-nav-map:hover {
    background: var(--clr-accent-gold);
    color: var(--clr-bg-dark) !important;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.85rem;
    color: var(--clr-text-muted);
}

.lang-toggle button {
    background: none;
    border: none;
    color: var(--clr-text-muted);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0.2rem 0.4rem;
    transition: color 0.25s ease;
}

.lang-toggle button.active, .lang-toggle button:hover {
    color: var(--clr-accent-gold);
}

/* Dark Transparent Overlay Hamburger Drawer */
.nav-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 24, 21, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 2500;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.nav-drawer-overlay.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.drawer-close {
    position: absolute;
    top: 2.5rem;
    left: 2.5rem;
    background: none;
    border: none;
    color: var(--clr-text-light);
    font-size: 2rem;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    opacity: 0.75;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.drawer-close:hover {
    opacity: 1;
    color: var(--clr-accent-gold);
    transform: scale(1.1);
}

.drawer-nav {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
}

.drawer-nav li a {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--clr-text-light);
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.25s ease, transform 0.25s ease;
    display: inline-block;
}

.drawer-nav li a:hover {
    color: var(--clr-accent-gold);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--clr-bg-dark);
    background-image: 
        radial-gradient(ellipse at center, rgba(20, 23, 21, 0.35) 0%, rgba(20, 23, 21, 0.82) 100%),
        url('images/violeta-exterior.webp');
    background-size: cover;
    background-position: center;
    padding-top: 6rem;
}

.hero-content {
    max-width: 850px;
    padding: 3rem 1.5rem;
    z-index: 2;
}

.hero-logo {
    max-width: 620px;
    width: 90%;
    height: auto;
    margin-bottom: 1.5rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.hero-title-tag {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--clr-accent-gold);
    letter-spacing: 3px;
    margin-bottom: 2rem;
    font-style: italic;
}

.hero-quote {
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--clr-text-light);
    opacity: 0.92;
    margin-bottom: 1rem;
}

.hero-quote-credit {
    font-size: 0.95rem;
    color: var(--clr-accent-gold);
    margin-bottom: 2.5rem;
}

.hero-quote-credit a {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    background-color: var(--clr-primary-wine);
    color: var(--clr-text-light);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    letter-spacing: 1px;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(124, 36, 56, 0.4);
}

.btn-primary:hover {
    background-color: var(--clr-primary-wine-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 36, 56, 0.6);
}

.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    background-color: transparent;
    border: 1px solid var(--clr-accent-gold);
    color: var(--clr-accent-gold);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    letter-spacing: 1px;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--clr-accent-gold);
    color: var(--clr-bg-dark);
    transform: translateY(-2px);
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background-color: var(--clr-surface-dark);
    text-align: center;
    border-bottom: 1px solid rgba(216, 178, 125, 0.1);
}

.about-section h2 {
    font-size: 2.5rem;
    color: var(--clr-accent-gold);
    margin-bottom: 1.2rem;
}

.about-section p {
    font-size: 1.35rem;
    font-family: var(--font-heading);
    max-width: 750px;
    margin: 0 auto 0.8rem;
    color: var(--clr-text-light);
}

.about-section .subtext {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--clr-text-muted);
}

/* Menu Section - Paper Style */
.menu-section {
    padding: 6rem 0;
    background-color: var(--clr-paper);
    color: var(--clr-text-dark);
}

.menu-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.menu-header h2 {
    font-size: 3.2rem;
    color: var(--clr-primary-wine);
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
}

.menu-header p {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--clr-text-subtle);
    max-width: 700px;
    margin: 0 auto;
}

/* Menu Navigation Tabs */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
    padding: 0.5rem;
    background: var(--clr-paper-dark);
    border-radius: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.menu-tab-btn {
    padding: 0.75rem 1.6rem;
    border: none;
    background: transparent;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--clr-text-subtle);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.menu-tab-btn:hover {
    color: var(--clr-primary-wine);
}

.menu-tab-btn.active {
    background: var(--clr-primary-wine);
    color: var(--clr-text-light);
    box-shadow: 0 4px 12px rgba(124, 36, 56, 0.25);
}

/* Organic Pill Indicator */
.organic-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.15rem 0.5rem;
    background: var(--clr-organic-bg);
    color: var(--clr-organic);
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: var(--font-body);
    vertical-align: middle;
    margin-left: 0.4rem;
}

.organic-badge svg {
    fill: currentColor;
}

/* Menu Items Grid Layout */
.menu-grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

@media (max-width: 992px) {
    .menu-grid-2col {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.menu-category-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 20px rgba(76, 42, 53, 0.05);
    border: 1px solid var(--clr-border-light);
    margin-bottom: 2.5rem;
}

.menu-section-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: 1.8rem;
    border: 1px solid var(--clr-border-light);
    display: block;
}

.menu-category-title {
    font-size: 1.8rem;
    color: var(--clr-primary-wine);
    border-bottom: 2px solid var(--clr-border-light);
    padding-bottom: 0.6rem;
    margin-bottom: 1.8rem;
}

.menu-subcategory-title {
    font-size: 1.25rem;
    color: var(--clr-text-subtle);
    font-style: italic;
    margin-top: 1.8rem;
    margin-bottom: 1rem;
}

.item-list {
    list-style: none;
}

.item-row {
    padding: 0.9rem 0;
    border-bottom: 1px dashed rgba(124, 36, 56, 0.15);
}

.item-row:last-child {
    border-bottom: none;
}

.item-main {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
}

.item-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--clr-text-dark);
}

.item-price {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--clr-primary-wine);
    white-space: nowrap;
}

.item-detail {
    font-size: 0.9rem;
    color: var(--clr-text-subtle);
    margin-top: 0.25rem;
    line-height: 1.45;
}

/* Feature Special Banner */
.special-charcuterie-banner {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin-top: 3.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border: 1px solid var(--clr-border-light);
}

.special-charcuterie-banner img {
    width: 45%;
    border-radius: var(--radius-md);
    object-fit: cover;
    height: 300px;
}

.special-charcuterie-content h3 {
    font-size: 2.2rem;
    color: var(--clr-primary-wine);
    margin-bottom: 0.5rem;
}

.special-charcuterie-content .price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr-primary-wine);
    display: block;
    margin-bottom: 1rem;
}

.special-charcuterie-content p {
    font-size: 1rem;
    color: var(--clr-text-subtle);
    line-height: 1.7;
}

.menu-footnote {
    text-align: center;
    margin-top: 3.5rem;
    font-size: 0.95rem;
    font-style: italic;
    color: var(--clr-text-subtle);
}

/* Events Section */
.events-section {
    padding: 6rem 0;
    background-color: var(--clr-surface-dark);
    color: var(--clr-text-light);
}

.events-section h2 {
    text-align: center;
    font-size: 2.6rem;
    color: var(--clr-accent-gold);
    margin-bottom: 3.5rem;
}

.events-card {
    display: flex;
    align-items: center;
    gap: 4rem;
    background: rgba(20, 23, 21, 0.6);
    border: 1px solid rgba(216, 178, 125, 0.2);
    border-radius: var(--radius-lg);
    padding: 3rem;
}

.events-text {
    flex: 1;
}

.events-text h3 {
    font-size: 2.2rem;
    color: var(--clr-text-light);
    margin-bottom: 1.5rem;
}

.events-text .accent {
    color: var(--clr-accent-gold);
}

.events-lineup {
    list-style: none;
    margin-bottom: 2rem;
}

.events-lineup li {
    font-size: 1.15rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.events-lineup strong {
    color: var(--clr-accent-gold);
}

.events-dates-badge {
    background: rgba(124, 36, 56, 0.3);
    border-left: 4px solid var(--clr-accent-gold);
    padding: 1.25rem 1.5rem;
    font-size: 1.2rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.events-media {
    flex: 1;
    text-align: center;
}

.events-media img {
    max-width: 100%;
    max-height: 450px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-deep);
}

/* Reviews Section */
.reviews-section {
    padding: 6rem 0;
    background: linear-gradient(rgba(20, 23, 21, 0.88), rgba(20, 23, 21, 0.92)), url('images/corks1.webp');
    background-size: cover;
    background-position: center;
    text-align: center;
}

.reviews-section h2 {
    font-size: 2.5rem;
    color: var(--clr-accent-gold);
    margin-bottom: 3.5rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

.review-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(216, 178, 125, 0.2);
    border-radius: var(--radius-md);
    padding: 2.2rem;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.quote-mark {
    font-size: 3rem;
    line-height: 1;
    color: var(--clr-accent-gold);
    font-family: var(--font-heading);
    opacity: 0.6;
    margin-bottom: 0.5rem;
}

.review-card p {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--clr-text-light);
    opacity: 0.95;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.reviewer-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--clr-accent-gold);
}

/* Google Maps Full Section */
.map-section {
    position: relative;
    width: 100%;
}

.map-section iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
    filter: brightness(0.9) contrast(1.05);
}

/* NEW Editorial Footer (Matching Reference Image) */
.editorial-footer {
    background-color: #161f1c;
    color: var(--clr-text-light);
    padding: 5rem 0 3rem;
    border-top: 1px solid rgba(216, 178, 125, 0.15);
}

.editorial-footer-brand {
    text-align: center;
    margin-bottom: 3.5rem;
}

.footer-brand-logo {
    max-width: 360px;
    width: 80%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Schedule Info Box */
.footer-schedule-info {
    max-width: 600px;
    margin: 0 auto 4.5rem;
    text-align: center;
}

.footer-schedule-info p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--clr-text-light);
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.footer-schedule-info p:last-child {
    margin-bottom: 0;
    font-size: 0.95rem;
    opacity: 0.7;
}

/* Footer Link Columns Layout */
.editorial-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 0 1rem;
}

.footer-nav-col {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-nav-col.align-left {
    text-align: left;
}

.footer-nav-col.align-right {
    text-align: right;
}

.footer-nav-col a {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: var(--clr-text-light);
    opacity: 0.9;
    transition: color 0.25s ease, opacity 0.25s ease;
}

.footer-nav-col a:hover {
    opacity: 1;
    color: var(--clr-accent-gold);
}

/* Bottom Bar */
.editorial-footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-social-links {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.footer-social-links a {
    color: var(--clr-text-light);
    opacity: 0.8;
    transition: opacity 0.25s ease, color 0.25s ease;
}

.footer-social-links a:hover {
    opacity: 1;
    color: var(--clr-accent-gold);
}

.footer-credit {
    font-size: 0.85rem;
    color: rgba(246, 242, 235, 0.6);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1a1e1b;
    border-top: 1px solid var(--clr-accent-gold);
    color: var(--clr-text-light);
    padding: 1.25rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    z-index: 2000;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.5);
}

.cookie-banner p {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
}

.cookie-banner .btn-primary {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

/* Animations */
.fade-in {
    animation: fadeIn 0.4s ease forwards;
}

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

/* Responsive Rules */
@media (max-width: 900px) {
    /* Hide Google Maps button from header on mobile to prevent overlapping logo */
    .btn-nav-map {
        display: none !important;
    }

    .main-nav {
        padding: 0.8rem 1rem;
    }

    .nav-brand-logo {
        height: 32px;
    }

    .container {
        padding: 0 1.25rem;
    }

    .hero-title-tag {
        font-size: 1.6rem;
    }

    .hero-content {
        padding: 2rem 1rem;
    }

    .hero-logo {
        max-width: 320px;
        width: 80%;
    }

    /* Swipeable Horizontal Scroll for Menu Tabs on Mobile */
    .menu-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        max-width: 100%;
        padding: 0.5rem;
        border-radius: 30px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
    }

    .menu-tabs::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }

    .menu-tab-btn {
        flex-shrink: 0;
        white-space: nowrap;
        padding: 0.6rem 1.15rem;
        font-size: 0.9rem;
    }

    .special-charcuterie-banner {
        flex-direction: column;
        padding: 1.5rem;
    }

    .special-charcuterie-banner img {
        width: 100%;
        height: 220px;
    }

    .events-card {
        flex-direction: column;
        padding: 1.75rem 1.25rem;
    }

    .editorial-footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-nav-col.align-left, .footer-nav-col.align-right {
        text-align: center;
    }

    .editorial-footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .drawer-close {
        top: 1.5rem;
        left: 1.5rem;
    }

    .drawer-nav li a {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .form-row-2col {
        grid-template-columns: 1fr;
    }

    .form-row-2col .newsletter-input:first-child {
        border-right: 1px solid rgba(255, 255, 255, 0.25);
        border-bottom: none;
    }

    .newsletter-input-full {
        border-top: none;
    }

    .menu-category-card {
        padding: 1.5rem 1rem;
    }

    .menu-header h2 {
        font-size: 2.2rem;
    }

    .about-section p {
        font-size: 1.15rem;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(216, 178, 125, 0.35);
    background: rgba(20, 23, 21, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--clr-accent-gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease, background-color 0.25s ease, border-color 0.25s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: rgba(124, 36, 56, 0.7);
    border-color: var(--clr-accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(124, 36, 56, 0.4);
}

@media (max-width: 600px) {
    .scroll-to-top {
        width: 42px;
        height: 42px;
        bottom: 1.25rem;
        right: 1.25rem;
    }
}
