/* ==========================================================================
   GUITAR LOUNGE BERLIN — Custom CSS
   "Warm Industrial Minimalism" — Full visual redesign
   Site: test.buch-villa.de | HIGGINS CMS behavioral contracts preserved.
   ========================================================================== */


/* ==========================================================================
   0. FONTS — Self-hosted (no external CDN imports)
   ========================================================================== */

/* DM Serif Display — Headings (elegant, high-contrast serifs) */
@font-face { font-family: 'DM Serif Display'; font-style: normal; font-weight: 400; font-display: swap; src: url('fonts/dm-serif-display-v17-latin-regular.woff2') format('woff2'); }
@font-face { font-family: 'DM Serif Display'; font-style: italic; font-weight: 400; font-display: swap; src: url('fonts/dm-serif-display-v17-latin-italic.woff2') format('woff2'); }

/* Inter — Body (variable font: 300-700, optical sizing) */
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 300 700; font-display: swap; src: url('fonts/inter-v20-latin-regular.woff2') format('woff2'); }

/* Caveat — Accent/handwritten (variable font: 400-700) */
@font-face { font-family: 'Caveat'; font-style: normal; font-weight: 400 700; font-display: swap; src: url('fonts/caveat-v23-latin-regular.woff2') format('woff2'); }

/* Open Sans — Required for admin interface */
@font-face { font-family: 'Open Sans'; font-style: normal; font-weight: 300; font-display: swap; src: url('fonts/open-sans-v17-latin-300.woff2') format('woff2'); }
@font-face { font-family: 'Open Sans'; font-style: normal; font-weight: 400; font-display: swap; src: url('fonts/open-sans-v17-latin-regular.woff2') format('woff2'); }
@font-face { font-family: 'Open Sans'; font-style: normal; font-weight: 700; font-display: swap; src: url('fonts/open-sans-v17-latin-700.woff2') format('woff2'); }


/* ==========================================================================
   1. CUSTOM PROPERTIES — "Warm Industrial Minimalism"
   ========================================================================== */

:root {
    /* Layout */
    --top-height: 80px;
    --content-max-width: 1200px;
    --content-padding: 20px;
    --full-bleed-padding: max(var(--content-padding), calc(50vw - var(--content-max-width) / 2 + var(--content-padding)));

    /* --- Color Palette --- */
    --gl-primary: #C17B4A;
    --gl-primary-light: #D4925E;
    --gl-primary-dark: #A5653A;
    --gl-bg-warm: #F8F5F0;
    --gl-bg-sage: #E8ECE6;
    --gl-bg-espresso: #2C2420;
    --gl-bg-espresso-light: #3D332E;
    --gl-text-dark: #1A1A1A;
    --gl-text-muted: #6B6560;
    --gl-text-on-dark: #F0EDE8;
    --gl-accent-amber: #D4A853;
    --gl-accent-warm: #C47A2A;
    --gl-border-light: #DDD8D0;
    --gl-border-dark: #4A433D;

    /* Shadows — layered for realistic depth */
    --gl-shadow-sm: 0 1px 2px rgba(44, 36, 32, 0.06), 0 1px 3px rgba(44, 36, 32, 0.08);
    --gl-shadow-md: 0 2px 4px rgba(44, 36, 32, 0.04), 0 4px 12px rgba(44, 36, 32, 0.08), 0 8px 24px rgba(44, 36, 32, 0.04);
    --gl-shadow-lg: 0 4px 8px rgba(44, 36, 32, 0.04), 0 8px 24px rgba(44, 36, 32, 0.08), 0 16px 48px rgba(44, 36, 32, 0.06);
    --gl-shadow-lift: 0 8px 30px rgba(193, 123, 74, 0.18), 0 4px 12px rgba(44, 36, 32, 0.06);

    /* Radii */
    --gl-radius-sm: 6px;
    --gl-radius-md: 12px;
    --gl-radius-lg: 20px;
    --gl-radius-xl: 32px;

    /* Typography */
    --gl-font-heading: 'DM Serif Display', Georgia, 'Times New Roman', serif;
    --gl-font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    --gl-font-accent: 'Caveat', 'Brush Script MT', cursive;

    /* Spacing scale */
    --gl-space-xs: 0.4rem;
    --gl-space-sm: 0.8rem;
    --gl-space-md: 1.6rem;
    --gl-space-lg: 3.2rem;
    --gl-space-xl: 6.4rem;
    --gl-space-2xl: 9.6rem;
    --gl-space-section: clamp(4rem, 3rem + 3vw, 8rem);

    /* Template-compatible aliases */
    --color-primary: var(--gl-bg-espresso);
    --color-accent: var(--gl-primary);
    --color-accent-hover: var(--gl-primary-dark);
    --color-text: var(--gl-text-dark);
    --color-text-secondary: var(--gl-text-muted);
    --color-text-inverse: var(--gl-text-on-dark);
    --color-bg: var(--gl-bg-warm);
    --color-bg-alt: var(--gl-bg-sage);
    --color-border: var(--gl-border-light);
    --color-overlay-bg: rgba(44, 36, 32, 0.7);

    /* Navigation */
    --nav-bg: var(--gl-bg-warm);
    --nav-link-color: var(--gl-text-dark);
    --nav-link-hover-bg: var(--gl-bg-sage);
    --nav-font-size: 1.9rem;
    --nav-link-height: 5.2rem;

    /* Footer */
    --footer-bg: var(--gl-bg-espresso);
    --footer-text: #CCC5BD;

    /* Transitions */
    --gl-ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --gl-ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --gl-duration-fast: 200ms;
    --gl-duration: 350ms;
    --gl-duration-slow: 600ms;
}


/* ==========================================================================
   2. BASE TYPOGRAPHY
   ========================================================================== */

body {
    font-family: var(--gl-font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    font-size: 1.7rem;
    line-height: 1.75;
    overflow-x: clip;
    font-optical-sizing: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Smooth scrolling */
html { scroll-behavior: auto; }


/* Custom scrollbar */
html {
    scrollbar-color: var(--gl-border-light) transparent;
}
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--gl-border-light); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--gl-text-muted); }

/* Typography & elements (scoped to #content) */
#content a { color: var(--color-accent); text-decoration: none; transition: color var(--gl-duration-fast) var(--gl-ease); }
#content a:hover { text-decoration: underline; color: var(--color-accent-hover); }
#content a:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 3px; border-radius: 2px; }

#content h1 { font-family: var(--gl-font-heading); font-size: clamp(2.8rem, 2rem + 2.5vw, 4.2rem); line-height: 1.2; margin-bottom: 1.6rem; font-weight: 400; letter-spacing: -0.01em; }
#content h2 { font-family: var(--gl-font-heading); font-size: clamp(2.2rem, 1.6rem + 1.8vw, 3.2rem); line-height: 1.3; margin-bottom: 1.2rem; font-weight: 400; letter-spacing: -0.01em; }
#content h3 { font-family: var(--gl-font-heading); font-size: clamp(1.8rem, 1.4rem + 1vw, 2.4rem); line-height: 1.4; margin-bottom: 1rem; font-weight: 400; }
#content h4 { font-family: var(--gl-font-heading); font-size: 1.9rem; line-height: 1.4; margin-bottom: 0.8rem; font-weight: 400; }
#content p { margin-bottom: 1.4rem; }
#content ul, #content ol { margin-bottom: 1.2rem; padding-left: 2.4rem; }
#content li { margin-bottom: 0.4rem; }
#content img { max-width: 100%; height: auto; display: block; }
#content blockquote { margin: 0 0 1.6rem 0; padding: 1.6rem 2.4rem; border-left: 3px solid var(--gl-primary); color: var(--color-text-secondary); font-style: italic; background: rgba(193, 123, 74, 0.04); border-radius: 0 var(--gl-radius-sm) var(--gl-radius-sm) 0; }
#content hr { border: none; border-top: 1px solid var(--color-border); margin: 2.4rem 0; }
#content table { border-collapse: collapse; width: 100%; margin-bottom: 1.6rem; }
#content th, #content td { padding: 0.8rem 1.2rem; border: 1px solid var(--color-border); text-align: left; }
#content th { background-color: var(--color-bg-alt); font-weight: 600; }

/* Basic form elements */
#content .content_block input[type="text"], #content .content_block input[type="email"], #content .content_block input[type="password"], #content .content_block textarea, #content .content_block select {
    width: 100%; max-width: 100%; box-sizing: border-box; padding: 1rem 1.2rem;
    border: 1px solid var(--color-border); border-radius: var(--gl-radius-sm); font-size: 1.6rem;
    line-height: 1.5; outline: none; background: #fff; font-family: var(--gl-font-body);
    transition: border-color var(--gl-duration-fast) var(--gl-ease), box-shadow var(--gl-duration-fast) var(--gl-ease);
}
#content .content_block input:focus, #content .content_block textarea:focus, #content .content_block select:focus {
    border-color: var(--gl-primary);
    box-shadow: 0 0 0 3px rgba(193, 123, 74, 0.12);
}
#content .content_block button, #content .content_block .btn {
    display: inline-block; padding: 1rem 2rem; border: none; border-radius: var(--gl-radius-sm);
    font-size: 1.5rem; line-height: 1.5; cursor: pointer; text-align: center;
    background-color: var(--gl-primary); color: #fff; font-weight: 600;
    font-family: var(--gl-font-body); transition: all var(--gl-duration) var(--gl-ease);
}
#content .content_block button:hover, #content .content_block .btn:hover {
    background-color: var(--gl-primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--gl-shadow-sm);
}

/* Admin login form */
#content #default_form_admin_login_wrapper input[type="text"],
#content #default_form_admin_login_wrapper input[type="password"] {
    background-color: var(--login-input-bg, #222);
    color: #eee;
    border: none;
    border-bottom: 2px solid var(--login-input-border, #444);
    border-radius: 4px 4px 0 0;
    font-family: 'Open Sans', sans-serif;
}
#content #default_form_admin_login_wrapper input:focus {
    border-color: var(--login-input-focus-border, #2b6de8);
    border-bottom-width: 2px;
}


/* ==========================================================================
   3. LAYOUT STRUCTURE
   ========================================================================== */

#top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--top-height);
    background-color: var(--gl-bg-warm);
    z-index: 100;
    box-sizing: border-box;
    border-bottom: 1px solid var(--gl-border-light);
    background-color: #fff;
    transition: box-shadow var(--gl-duration) var(--gl-ease);
}

#content {
    position: relative;
    width: 100%;
    max-width: var(--content-max-width);
    margin: var(--top-height) auto 0;
    padding: 0 var(--content-padding);
    box-sizing: border-box;
    background: var(--gl-bg-warm);
    z-index: 1;
    min-height: 50vh;
}

#footer {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: var(--footer-bg);
    color: var(--footer-text);
    font-size: 1.4rem;
    z-index: 0;
    border-top: none;
}


/* ==========================================================================
   4. TOP BAR
   ========================================================================== */

#top_content {
    position: relative;
    max-width: var(--content-max-width);
    height: 100%;
    margin: 0 auto;
    padding: 0 var(--content-padding);
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: normal;
}

/* Logo */
#logo {
    position: relative;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--gl-text-dark);
    font-family: var(--gl-font-heading);
    font-size: 2rem;
    font-weight: 400;
    line-height: var(--top-height);
    z-index: 1;
    letter-spacing: 0.01em;
    transition: color var(--gl-duration-fast) var(--gl-ease);
}
#logo:hover { color: var(--gl-primary); }
#logo img { height: 60px; width: auto; }

/* Language switch */
.hig_static_language_switch { display: flex; align-items: center; gap: 0.5rem; }
.hig_static_language_switch a { color: var(--gl-text-dark); font-size: var(--nav-font-size); font-weight: 600; text-decoration: none; transition: opacity var(--gl-duration-fast) var(--gl-ease); opacity: 0.4; }
.hig_static_language_switch a.selected { opacity: 1; }
.hig_static_language_switch a:hover { opacity: 1; }
.hig_static_language_switch span { color: var(--gl-text-dark); opacity: 0.2; font-size: var(--nav-font-size); }

/* Search / archive button */
#static_btn_search {
    position: absolute;
    top: 50%;
    right: 70px;
    transform: translateY(-50%);
    color: var(--gl-text-dark);
    font-size: 1.4rem;
    text-decoration: none;
    opacity: 0.6;
    transition: opacity var(--gl-duration-fast) var(--gl-ease);
}
#static_btn_search:hover { opacity: 1; }

/* Loading spinner */
#static_icon_loading { display: none; position: absolute; top: 5px; right: 5px; }

/* Navigation toggle button — hamburger */
#static_btn_nav {
    position: absolute;
    top: 50%;
    right: var(--content-padding);
    transform: translateY(-50%);
    width: 28px;
    height: 22px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    z-index: 1;
}
#static_btn_nav::before,
#static_btn_nav::after {
    content: "";
    display: block;
    width: 28px;
    height: 2px;
    background-color: var(--gl-text-dark);
    position: absolute;
    left: 0;
    transition: all 0.35s var(--gl-ease);
}
#static_btn_nav::before {
    top: 3px;
    box-shadow: 0 8px 0 var(--gl-text-dark);
}
#static_btn_nav::after {
    bottom: 3px;
}

/* Nav button — close state (X icon) */
html.overlay #static_btn_nav::before { top: 10px; transform: rotate(45deg); box-shadow: 0 0 0 transparent; }
html.overlay #static_btn_nav::after { bottom: 10px; transform: rotate(-45deg); }


/* ==========================================================================
   5. NAVIGATION SYSTEM
   ========================================================================== */

#navigation {
    display: none;
    position: fixed;
    left: 0;
    top: var(--top-height);
    width: 100%;
    height: calc(100vh - var(--top-height));
    height: calc(100dvh - var(--top-height));
    overflow-y: auto;
    scrollbar-width: none;
    background-color: #fff;
    box-sizing: border-box;
    padding: 0;
    z-index: 99;
}

body #navigation.overlay { display: block; }

#navigation_links {
    margin: 0;
    padding: 1.5rem 0;
    max-width: var(--content-max-width);
    margin-left: auto;
    margin-right: auto;
}

#navigation_links > a,
#navigation_links > .link,
#navigation .link_collection_wrapper > a {
    display: block;
    padding: 0 var(--content-padding);
    color: var(--nav-link-color);
    font-family: var(--gl-font-heading);
    font-size: var(--nav-font-size);
    font-weight: 400;
    line-height: var(--nav-link-height);
    height: var(--nav-link-height);
    text-decoration: none;
    box-sizing: border-box;
    transition: background-color var(--gl-duration-fast) var(--gl-ease), color var(--gl-duration-fast) var(--gl-ease), letter-spacing var(--gl-duration) var(--gl-ease);
    letter-spacing: 0;
    text-align: center;
}

#navigation_links > a:hover,
#navigation_links > .link:hover,
#navigation .link_collection_wrapper > a:hover {
    color: var(--gl-primary);
    letter-spacing: 0.02em;
}

#navigation_links > a:focus-visible,
#navigation .link_collection_wrapper > a:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: -2px;
}

#navigation_links a.active { color: var(--gl-primary); }

#navigation_links a.session_required { display: none; }
body.logged_in #navigation_links a.session_required { display: block; }
body.logged_in #navigation_links a.hide_if_logged_in { display: none; }

.link_collection_wrapper { position: relative; }

#navigation .link_collection_wrapper .btn_toggle {
    position: absolute;
    right: var(--content-padding);
    top: 0;
    width: 50px;
    height: var(--nav-link-height);
    border: none;
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
#navigation .link_collection_wrapper .btn_toggle::after {
    content: "";
    display: block;
    width: 9px;
    height: 9px;
    border-right: 2px solid var(--nav-link-color);
    border-bottom: 2px solid var(--nav-link-color);
    transform: rotate(45deg);
    margin-top: -4px;
    transition: transform 0.3s var(--gl-ease);
}

#navigation .link_collection_wrapper .btn_toggle[aria-expanded="true"]::after,
#navigation .link_collection.visible + .btn_toggle::after {
    transform: rotate(-135deg);
    margin-top: 4px;
}

#navigation .link_collection { display: none; list-style: none; margin: 0; padding: 0; }
#navigation .link_collection.visible { display: block; border-top: 1px solid var(--color-border); }

#navigation .link_collection a {
    display: block;
    padding: 0 var(--content-padding) 0 calc(var(--content-padding) + 2rem);
    color: var(--nav-link-color);
    font-size: calc(var(--nav-font-size) - 0.2rem);
    font-weight: 400;
    line-height: calc(var(--nav-link-height) - 0.8rem);
    text-decoration: none;
}
#navigation .link_collection a:hover { background-color: var(--nav-link-hover-bg); }

#static_btn_close_menu {
    cursor: pointer;
    text-align: center;
    padding: 1.5rem;
    font-size: 1.4rem;
    color: var(--color-text-secondary);
    border-top: 1px solid var(--color-border);
    margin-top: 1rem;
    transition: background-color var(--gl-duration-fast) var(--gl-ease);
}
#static_btn_close_menu:hover { color: var(--gl-primary); }

#navigation_links_legal {
    list-style: none;
    margin: 0;
    padding: 1.5rem var(--content-padding);
    border-top: 1px solid var(--color-border);
    background-color: var(--nav-bg);
}
#navigation_links_legal a {
    display: inline-block;
    margin-right: 2rem;
    font-size: 1.3rem;
    color: var(--color-text-secondary);
    text-decoration: none;
}
#navigation_links_legal a:hover { text-decoration: underline; }

html.overlay #top_content > .link.hig_static_language_switch { display: none; }
html.overlay #static_btn_search { display: none; }


/* ==========================================================================
   6. CONTENT BLOCKS
   ========================================================================== */

.content_block {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 2rem 0 0;
    box-sizing: border-box;
}

.content_block.fade_in { display: none; }
.content_block.slide_down { display: none; }
body.initial_page_request .content_block.fade_in { display: block; }

.content_block section { margin-bottom: 2rem; }
.content_block section h3 { font-size: 2rem; margin-bottom: 0.8rem; }
.content_block section p { margin-bottom: 1rem; line-height: 1.7; }

.content_block a.default_link { color: var(--color-accent); }
.content_block a.default_link:hover { text-decoration: underline; }

.content_block img { border-radius: var(--gl-radius-sm); }
.content_block .image_meta { font-size: 1.3rem; color: var(--color-text-secondary); margin-top: -1rem; margin-bottom: 1.6rem; }


/* ==========================================================================
   7. FOOTER — Warm Industrial Minimal
   ========================================================================== */

#footer a { color: var(--footer-text); text-decoration: none; transition: color var(--gl-duration-fast) var(--gl-ease); }
#footer a:hover { color: #fff; }

#footer .content_block { padding: 0; }

/* Wave SVG separator */
.gl_footer_wave {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: -2px;
}

/* Footer grid */
.gl_footer_grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem 3rem;
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding: 4rem var(--content-padding) 3rem;
}

.gl_footer_col h4 {
    font-family: var(--gl-font-heading);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--gl-text-on-dark);
    margin-bottom: 1.4rem;
    letter-spacing: 0.02em;
    position: relative;
    padding-bottom: 1rem;
}
.gl_footer_col h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--gl-primary);
    border-radius: 1px;
}

/* Brand column */
.gl_footer_brand h3 {
    font-family: var(--gl-font-heading);
    font-size: 2rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0.8rem;
}
.gl_footer_tagline {
    font-size: 1.4rem;
    line-height: 1.7;
    color: var(--footer-text);
    margin-bottom: 1.5rem;
}

/* Social links */
.gl_footer_social {
    display: flex;
    gap: 0.6rem;
    margin-top: 1.2rem;
}
.gl_footer_social_link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.2rem;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gl-text-on-dark);
    background: var(--gl-border-dark);
    border-radius: var(--gl-radius-xl);
    transition: all var(--gl-duration) var(--gl-ease);
    text-decoration: none;
}
#footer .gl_footer_social_link:hover {
    background: var(--gl-primary);
    color: #fff;
}

/* Nav column */
.gl_footer_nav ul { list-style: none; padding: 0; margin: 0; }
.gl_footer_nav li { margin-bottom: 0.6rem; }
.gl_footer_nav a {
    font-size: 1.4rem;
    transition: color var(--gl-duration-fast) var(--gl-ease), padding-left var(--gl-duration) var(--gl-ease);
}
.gl_footer_nav a:hover { color: #fff; }

/* Contact column */
.gl_footer_contact div { margin-bottom: 0.2rem; }
.gl_footer_district {
    color: var(--footer-text);
    font-size: 1.4rem;
    margin-bottom: 0.8rem !important;
}
.gl_footer_phone,
.gl_footer_email {
    display: block;
    margin-top: 0.6rem;
    color: #fff;
    font-weight: 600;
}
#footer .gl_footer_phone:hover,
#footer .gl_footer_email:hover { color: var(--gl-primary); }

/* Hours column */
.gl_footer_hours_entry {
    font-size: 1.4rem;
    padding: 0.4rem 0;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.06);
}

/* Bottom bar */
.gl_footer_bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding: 1.5rem var(--content-padding);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 1.3rem;
}
.gl_footer_bottom p { margin: 0; opacity: 0.75; }
.gl_footer_legal { display: flex; gap: 2rem; }
.gl_footer_legal a { font-size: 1.3rem; opacity: 0.75; transition: opacity var(--gl-duration-fast) var(--gl-ease); }
.gl_footer_legal a:hover { opacity: 1; }


/* ==========================================================================
   8. SCROLL-TO-TOP BUTTON
   ========================================================================== */

#hig_static_btn_scroll_top {
    display: none;
    position: fixed;
    bottom: 40px;
    right: 20px;
    width: 44px;
    height: 44px;
    box-sizing: border-box;
    border: 1px solid var(--gl-border-light);
    border-radius: 50%;
    background-color: rgba(248, 245, 240, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
    z-index: 110;
    padding: 0;
    margin: 0;
    box-shadow: var(--gl-shadow-md);
    -webkit-appearance: none;
    appearance: none;
    transition: all var(--gl-duration) var(--gl-ease);
}
#hig_static_btn_scroll_top::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--gl-text-dark);
    border-left: 2px solid var(--gl-text-dark);
    transform: rotate(45deg);
    margin: 7px auto 0;
}
#hig_static_btn_scroll_top:hover {
    background-color: var(--gl-primary);
    border-color: var(--gl-primary);
}
#hig_static_btn_scroll_top:hover::after {
    border-color: #fff;
}


/* ==========================================================================
   9. GALLERY OVERLAY
   ========================================================================== */

#default_static_overlay_gallery_simple {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 1%;
    box-sizing: border-box;
    background-color: var(--color-overlay-bg);
    z-index: 200;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

#default_static_overlay_gallery_simple .inner {
    position: relative;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 60px 10px 10px;
    background-color: var(--gl-bg-espresso);
    border-radius: var(--gl-radius-lg);
    box-shadow: var(--gl-shadow-lg);
}

#default_static_overlay_gallery_simple .image_container {
    width: 100%;
    height: calc(100% - 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#default_static_overlay_gallery_simple .image_container img {
    max-width: 100%;
    max-height: calc(100% - 50px);
    object-fit: contain;
    border-radius: var(--gl-radius-sm);
}

#default_static_overlay_gallery_simple .copyright_note {
    font-size: 1.4rem;
    color: var(--gl-text-muted);
    text-align: center;
    margin-top: 0.5rem;
}

#default_static_overlay_gallery_simple .image_meta { text-align: center; padding: 0.5rem 0; }
#default_static_overlay_gallery_simple .image_meta .caption {
    font-family: var(--gl-font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--gl-text-on-dark);
}
#default_static_overlay_gallery_simple .image_meta .description {
    font-size: 1.4rem;
    color: var(--gl-text-muted);
}

/* Gallery controls */
#default_static_overlay_gallery_simple .btn_close,
#default_static_overlay_gallery_simple .btn_previous,
#default_static_overlay_gallery_simple .btn_next {
    position: absolute;
    width: 44px;
    height: 44px;
    border: 1px solid var(--gl-border-dark);
    border-radius: 50%;
    background-color: var(--gl-bg-espresso-light);
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--gl-duration) var(--gl-ease);
}
#default_static_overlay_gallery_simple .btn_close:hover,
#default_static_overlay_gallery_simple .btn_previous:hover,
#default_static_overlay_gallery_simple .btn_next:hover {
    background-color: var(--gl-primary);
    border-color: var(--gl-primary);
}

#default_static_overlay_gallery_simple .btn_close { top: 10px; right: 10px; }
#default_static_overlay_gallery_simple .btn_close::before,
#default_static_overlay_gallery_simple .btn_close::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 2px;
    background-color: var(--gl-text-on-dark);
}
#default_static_overlay_gallery_simple .btn_close::before { transform: rotate(45deg); }
#default_static_overlay_gallery_simple .btn_close::after { transform: rotate(-45deg); }

#default_static_overlay_gallery_simple .btn_previous { left: 10px; top: 50%; margin-top: -22px; }
#default_static_overlay_gallery_simple .btn_next { right: 10px; top: 50%; margin-top: -22px; }

#default_static_overlay_gallery_simple .btn_previous::after,
#default_static_overlay_gallery_simple .btn_next::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--gl-text-on-dark);
    border-left: 2px solid var(--gl-text-on-dark);
}
#default_static_overlay_gallery_simple .btn_previous::after { transform: rotate(-45deg); margin-left: 4px; }
#default_static_overlay_gallery_simple .btn_next::after { transform: rotate(135deg); margin-right: 4px; }

#default_static_overlay_gallery_simple .loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.4rem;
    color: var(--gl-text-muted);
}


/* ==========================================================================
   10. CUSTOM SELECT
   ========================================================================== */

.hig_select {
    position: relative;
    display: inline-block;
    cursor: pointer;
    font-size: 1.5rem;
    user-select: none;
}

.hig_select .selected_option {
    position: relative;
    z-index: 0;
    padding: 0.6rem 3rem 0.6rem 1rem;
    background-color: #fff;
    white-space: nowrap;
}
.hig_select .selected_option::after {
    content: "";
    position: absolute;
    right: 1rem;
    top: 50%;
    width: 7px;
    height: 7px;
    border-right: 2px solid var(--color-text-secondary);
    border-bottom: 2px solid var(--color-text-secondary);
    transform: translateY(-70%) rotate(45deg);
}

.hig_select .options {
    display: none;
    position: absolute;
    z-index: 1;
    top: 100%;
    left: 0;
    min-width: 100%;
    margin-top: 2px;
    padding: 0.4rem 0;
    background-color: #fff;
    max-height: 300px;
    overflow-y: auto;
}

.hig_select .options .option {
    padding: 0.6rem 1rem;
    white-space: nowrap;
    transition: background-color var(--gl-duration-fast) var(--gl-ease);
}
.hig_select .options .option:hover { background-color: var(--color-bg-alt); }
.hig_select .options .option.selected { font-weight: 600; color: var(--gl-primary); }

#content .content_block .hig_select .selected_option {
    border: 1px solid var(--color-border);
    border-radius: var(--gl-radius-sm);
}
#content .content_block .hig_select .options {
    border: 1px solid var(--color-border);
    border-radius: var(--gl-radius-sm);
    box-shadow: var(--gl-shadow-md);
}

.hig_select.disabled { opacity: 0.5; pointer-events: none; }


/* ==========================================================================
   11. BODY / HTML CLASS MODIFIERS (Behavioral Contracts)
   ========================================================================== */

body.hig_admin_logged_in #content {
    margin-top: calc(var(--top-height) + 50px);
}
body.hig_admin_logged_in #navigation {
    top: 50px;
}
body.hig_admin_logged_in #navigation.overlay {
    top: calc(var(--top-height) + 50px);
    height: calc(100vh - var(--top-height) - 50px);
    height: calc(100dvh - var(--top-height) - 50px);
}

body.dc_overlay #content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    margin: 0 auto;
    padding-top: 0;
    max-width: none;
    z-index: 101;
}

body.hig_overlay_padding .content_block[class*="chapter"] {
    padding-top: 226px;
}

body.hig_is_mobile .share_buttons a.telegram { display: block; }
body.hig_is_mobile .share_buttons a.whatsapp { display: block; }

body.disable_user_select #top,
body.disable_user_select #content,
body.disable_user_select #footer {
    user-select: none;
}

body.canvas_intro { position: fixed; width: 100%; height: 100vh; overflow: hidden; }
body.canvas_intro #footer { display: none; }

.share_buttons a.telegram { display: none; }
.share_buttons a.whatsapp { display: none; }


/* ==========================================================================
   12. COOKIE NOTICE
   ========================================================================== */

#default_cookie_info {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    max-width: 600px;
    background-color: var(--gl-bg-espresso);
    color: var(--gl-text-on-dark);
    z-index: 110;
    box-sizing: border-box;
    padding: 1.2rem 2rem;
    text-align: center;
    font-size: 1.3rem;
    line-height: 1.5;
    border-radius: var(--gl-radius-lg);
    box-shadow: var(--gl-shadow-lg);
}
#default_cookie_info .info { max-width: var(--content-max-width); margin: 0 auto; }
#default_cookie_info .info p { margin-bottom: 0.8rem; }
#default_cookie_info .info_links { margin-bottom: 0.8rem; }
#default_cookie_info .info_links a { color: #fff; text-decoration: underline; margin: 0 0.5rem; }
#default_cookie_info_btn_accept {
    display: inline-block;
    padding: 0.6rem 2rem;
    border: 1px solid var(--gl-primary);
    border-radius: var(--gl-radius-xl);
    cursor: pointer;
    color: var(--gl-primary);
    transition: all var(--gl-duration) var(--gl-ease);
}
#default_cookie_info_btn_accept:hover {
    background-color: var(--gl-primary);
    color: #fff;
}


/* ==========================================================================
   13. FILTER & DATA API LIST BASICS
   ========================================================================== */

.default_filter_wrapper {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.default_filter_wrapper .btn_remove_filter { display: none; cursor: pointer; font-size: 1.4rem; color: var(--gl-primary); }


/* ==========================================================================
   GUITAR LOUNGE COMPONENTS — Entrance Animation Foundation
   ========================================================================== */

/* Scroll-triggered entrance animations — progressive enhancement:
   Elements are visible by default. JS adds .gl-animate-ready to body,
   which hides elements. Then .gl-visible reveals them on scroll. */
.gl-animate-ready [data-gl-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity var(--gl-duration-slow) var(--gl-ease), transform var(--gl-duration-slow) var(--gl-ease);
}
.gl-animate-ready [data-gl-animate].gl-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Slide from left */
.gl-animate-ready [data-gl-animate="slide-left"] {
    transform: translateX(-30px);
}
.gl-animate-ready [data-gl-animate="slide-left"].gl-visible {
    transform: translateX(0);
}

/* Slide from right */
.gl-animate-ready [data-gl-animate="slide-right"] {
    transform: translateX(30px);
}
.gl-animate-ready [data-gl-animate="slide-right"].gl-visible {
    transform: translateX(0);
}

/* Scale in */
.gl-animate-ready [data-gl-animate="scale"] {
    transform: scale(0.92);
}
.gl-animate-ready [data-gl-animate="scale"].gl-visible {
    transform: scale(1);
}

/* Stagger delay support */
[data-gl-delay="1"] { transition-delay: 80ms; }
[data-gl-delay="2"] { transition-delay: 160ms; }
[data-gl-delay="3"] { transition-delay: 240ms; }
[data-gl-delay="4"] { transition-delay: 320ms; }
[data-gl-delay="5"] { transition-delay: 400ms; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .gl-animate-ready [data-gl-animate] {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .gl_hero_content, .gl_page_header, .gl_text_image,
    .gl_card, .gl_slideshow_wrapper, .gl_gallery_item {
        transition: none !important;
        animation: none !important;
    }
}


/* ==========================================================================
   SHARED — Buttons
   ========================================================================== */

.gl_btn {
    display: inline-block;
    padding: 1rem 2.4rem;
    font-size: 1.5rem;
    font-weight: 600;
    font-family: var(--gl-font-body);
    border-radius: var(--gl-radius-xl);
    text-decoration: none;
    transition: all var(--gl-duration) var(--gl-ease);
    cursor: pointer;
    border: 2px solid transparent;
    letter-spacing: 0.02em;
}
.gl_btn_primary {
    background: var(--gl-primary);
    color: #fff;
    border-color: var(--gl-primary);
}
.gl_btn_primary:hover {
    background: var(--gl-primary-dark);
    border-color: var(--gl-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--gl-shadow-lift);
}
.gl_btn_outline {
    background: transparent;
    color: var(--gl-primary);
    border-color: var(--gl-primary);
}
#content .gl_events_cta a.gl_btn_outline:hover {
    background: var(--gl-primary);
    color: #fff;
}
.gl_btn_light {
    background: rgba(255, 255, 255, 0.12);
    color: var(--gl-text-on-dark);
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
}
.gl_btn_light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Shared section heading accent */
.gl_section_label {
    display: block;
    font-family: var(--gl-font-accent);
    font-size: clamp(1.6rem, 1.2rem + 0.8vw, 2.2rem);
    color: var(--gl-primary);
    margin-bottom: 0.4rem;
    font-weight: 400;
}


/* ==========================================================================
   14. GUITAR LOUNGE — HERO
   ========================================================================== */

.gl_hero {
    position: relative;
    min-height: min(580px, 75vh);
    background-size: cover;
    background-position: top right;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    width: 100vw;
    margin: -2rem 0 0 calc(50% - 50vw);
    padding: 0 var(--full-bleed-padding);
    box-sizing: border-box;
    overflow: hidden;
}

/* Gradient overlay — warm tones */
.gl_hero::before, .gl_page_header::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, rgba(44, 36, 32, 0.60) 0%, rgba(44, 36, 32, 0.25) 55%, rgba(44, 36, 32, 0.50) 100%),
        linear-gradient(to top, rgba(193, 123, 74, 0.15) 0%, transparent 40%),
        linear-gradient(145deg, transparent 20%, rgba(255, 230, 190, 0.18) 45%, rgba(255, 200, 140, 0.12) 65%, transparent 85%);
    z-index: 1;
}

/* Decorative accent line */
.gl_hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gl-primary), transparent);
    z-index: 2;
}

.gl_hero_content {
    position: relative;
    z-index: 2;
    max-width: 640px;
    padding: 5rem 0;
}

.gl_hero_content h1 {
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.7), 0 1px 4px rgba(0, 0, 0, 0.5);
    color: var(--gl-text-on-dark);
    font-size: clamp(3rem, 2rem + 3vw, 4.8rem);
    margin-bottom: 0.6rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.gl_hero_label {
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.5);
    display: block;
    font-family: var(--gl-font-accent);
    font-size: clamp(1.8rem, 1.4rem + 1vw, 2.6rem);
    color: #fff;
    margin-bottom: 0.6rem;
}

.gl_hero_content p {
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.5);
    color: var(--gl-text-on-dark);
    font-size: clamp(1.6rem, 1.3rem + 0.6vw, 2rem);
    opacity: 0.85;
    margin-bottom: 2.5rem;
    max-width: 520px;
    line-height: 1.6;
}

.gl_hero_cta {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

#content .gl_hero_cta a {
    display: inline-block;
    padding: 1.1rem 2.8rem;
    font-size: 1.6rem;
    font-weight: 600;
    font-family: var(--gl-font-body);
    border: 2px solid var(--gl-primary);
    border-radius: var(--gl-radius-xl);
    text-decoration: none;
    transition: all var(--gl-duration) var(--gl-ease);
    background-color: var(--gl-primary);
    color: #fff;
    letter-spacing: 0.02em;
}
#content .gl_hero_cta a:hover {
    background-color: var(--gl-primary-dark);
    border-color: var(--gl-primary-dark);
    text-decoration: none;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(193, 123, 74, 0.3);
}

#content .gl_hero_cta a.gl_hero_cta_secondary {
    background-color: transparent;
    color: var(--gl-text-on-dark);
    border: 2px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(4px);
}
#content .gl_hero_cta a.gl_hero_cta_secondary:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
}


/* ==========================================================================
   15. GUITAR LOUNGE — PAGE HEADER
   ========================================================================== */

.gl_page_header {
    position: relative;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #2C2420;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100vw;
    margin: -2rem 0 0 calc(50% - 50vw);
    padding: 4rem var(--full-bleed-padding) 3rem;
    box-sizing: border-box;
    text-align: center;
    overflow: hidden;
}

/* Remove parent padding when page_header is first child */
.content_block:has(> .gl_page_header:first-child) {
    padding-top: 0;
}

/* Kill clearfix and any ::after strip */
.gl_page_header::after,
.gl_page_header.cf::after {
    display: none !important;
    content: none !important;
}

.gl_page_header::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(44, 36, 32, 0.70) 0%, rgba(44, 36, 32, 0.35) 50%, rgba(44, 36, 32, 0.60) 100%);
}


.gl_page_header h1 {
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.7), 0 1px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
    color: var(--gl-text-on-dark);
    font-size: clamp(2.4rem, 1.8rem + 2vw, 3.6rem);
    letter-spacing: -0.01em;
}

.gl_page_header p {
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
    color: #fff;
    opacity: 0.85;
    font-family: var(--gl-font-body);
    font-weight: 300;
    font-size: clamp(1.6rem, 1.3rem + 0.8vw, 2rem);
    letter-spacing: 0.04em;
}

.gl_page_header_body {
    position: relative;
    z-index: 1;
    color: var(--gl-text-on-dark);
    max-width: 700px;
    margin: 1rem auto 0;
    opacity: 0.8;
}
.gl_page_header_body p {
    font-family: var(--gl-font-body);
    opacity: 1;
}


/* ==========================================================================
   16. GUITAR LOUNGE — TEXT WITH IMAGE
   ========================================================================== */

.gl_text_image {
    display: flex;
    gap: clamp(2rem, 1.5rem + 2vw, 4rem);
    align-items: center;
    margin: var(--gl-space-section) 0;
    padding-bottom: var(--gl-space-section);
    position: relative;
}

/* Subtle separator */
.gl_text_image::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gl-border-light), transparent);
}

.gl_text_image_text {
    flex: 1;
    min-width: 0;
}

.gl_text_image_text h2 {
    color: var(--gl-text-dark);
    position: relative;
    padding-left: 1.4rem;
}
.gl_text_image_text h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.15em;
    width: 3px;
    height: 1.2em;
    background: var(--gl-primary);
    border-radius: 2px;
}

.gl_text_image_body p {
    line-height: 1.8;
    color: var(--gl-text-dark);
}

.gl_text_image img {
    flex: 0 0 46%;
    max-width: 46%;
    max-height: 450px;
    object-fit: cover;
    border-radius: var(--gl-radius-lg);
    box-shadow: var(--gl-shadow-lg);
    transition: transform var(--gl-duration-slow) var(--gl-ease), box-shadow var(--gl-duration-slow) var(--gl-ease);
}
.gl_text_image:hover img {
    transform: scale(1.01);
    box-shadow: var(--gl-shadow-lift);
}

/* Reverse order when image is on the left */
.gl_text_image_left {
    flex-direction: row-reverse;
}


/* ==========================================================================
   17. GUITAR LOUNGE — FEATURE CARDS
   ========================================================================== */

.gl_feature_cards {
    text-align: center;
    padding: var(--gl-space-section) var(--full-bleed-padding);
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background: var(--gl-bg-sage);
    box-sizing: border-box;
    position: relative;
}

/* Decorative top shape */
.gl_feature_cards::before {
    content: "";
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    height: 30px;
    background: var(--gl-bg-sage);
    clip-path: ellipse(52% 100% at 50% 100%);
}

.gl_feature_cards > h2 {
    margin-bottom: 3rem;
}

.gl_feature_cards_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.6rem;
    max-width: var(--content-max-width);
    margin: 0 auto;
}

.gl_card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--gl-bg-warm);
    border-radius: var(--gl-radius-lg);
    padding: 2.4rem 1.8rem 2rem;
    text-align: center;
    transition: transform var(--gl-duration) var(--gl-ease), box-shadow var(--gl-duration) var(--gl-ease);
    box-shadow: var(--gl-shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.gl_card:hover {
    transform: translateY(-2px);
    box-shadow: var(--gl-shadow-md);
}

.gl_card_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin: 0 auto 1.2rem;
    font-size: 2.4rem;
    color: var(--gl-primary);
    background: linear-gradient(135deg, rgba(193, 123, 74, 0.10), rgba(193, 123, 74, 0.05));
    border-radius: 50%;
    transition: transform var(--gl-duration) var(--gl-ease-bounce), background var(--gl-duration) var(--gl-ease);
}
.gl_card:hover .gl_card_icon {
    transform: scale(1.08);
    background: linear-gradient(135deg, rgba(193, 123, 74, 0.18), rgba(193, 123, 74, 0.08));
}

.gl_card h3 {
    font-size: 1.7rem;
    margin-bottom: 0.5rem;
    color: var(--gl-text-dark);
}
.gl_card p {
    font-size: 1.4rem;
    line-height: 1.65;
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
    flex-grow: 1;
}
.gl_card .gl_card_link_text {
    display: inline-block;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--gl-primary);
    position: relative;
    padding-bottom: 2px;
}
.gl_card .gl_card_link_text::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gl-primary);
    transition: width var(--gl-duration) var(--gl-ease);
}
.gl_card:hover .gl_card_link_text::after {
    width: 100%;
}
#content a.gl_card:hover {
    text-decoration: none;
}


/* ==========================================================================
   18. GUITAR LOUNGE — TESTIMONIALS
   ========================================================================== */

.gl_testimonials {
    background: var(--gl-bg-espresso);
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: var(--gl-space-section) var(--full-bleed-padding);
    box-sizing: border-box;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern */
.gl_testimonials::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 80%, rgba(193, 123, 74, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(212, 168, 83, 0.04) 0%, transparent 50%);
}

.gl_testimonials > h2 {
    position: relative;
    color: var(--gl-text-on-dark);
    margin-bottom: 0.6rem;
    font-size: clamp(2.2rem, 1.6rem + 1.5vw, 3rem);
}
.gl_testimonials > h2 + .gl_testimonials_slider {
    margin-top: 2.5rem;
}

.gl_testimonials_slider {
    position: relative;
    max-width: 750px;
    margin: 0 auto;
    overflow: hidden;
    min-height: 240px;
}

.gl_testimonials_slider .gl_slide {
    display: none;
    padding: 2rem;
}
.gl_testimonials_slider .gl_slide:first-child {
    display: block;
}

#content .gl_quote_text {
    font-family: var(--gl-font-heading);
    font-style: italic;
    font-size: clamp(1.6rem, 1.2rem + 0.7vw, 2rem);
    line-height: 1.75;
    color: var(--gl-text-on-dark);
    margin-bottom: 2rem;
    padding: 0;
    border: none;
    position: relative;
    background: transparent;
}

/* Oversized decorative quote mark */
#content .gl_quote_text::before {
    content: "\201C";
    font-family: Georgia, serif;
    font-size: 7rem;
    line-height: 1;
    color: var(--gl-primary);
    display: block;
    margin-bottom: 0.4rem;
    opacity: 0.5;
}
#content .gl_quote_text::after {
    content: "";
    display: block;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--gl-primary), transparent);
    margin: 2rem auto 0;
    opacity: 0.6;
}

.gl_quote_author {
    display: block;
    font-style: normal;
    font-weight: 600;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.3rem;
    letter-spacing: 0.02em;
}

.gl_quote_role {
    display: block;
    font-size: 1.3rem;
    color: var(--gl-text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}


/* ==========================================================================
   19. GUITAR LOUNGE — EVENTS TEASER
   ========================================================================== */

.gl_events_teaser {
    padding: var(--gl-space-section) var(--full-bleed-padding);
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background: var(--gl-bg-sage);
    box-sizing: border-box;
}
.gl_events_teaser > h2 {
    text-align: center;
    margin-bottom: 0.8rem;
}
.gl_events_subline {
    text-align: center;
    font-size: 1.5rem;
    color: var(--gl-text-muted);
    margin-bottom: 2.5rem;
}
.gl_events_cta {
    text-align: center;
    margin-top: 3rem;
}

.gl_events_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: var(--content-max-width);
    margin: 0 auto;
}

/* Event teaser card */
.gl_event_teaser {
    display: flex;
    flex-direction: column;
    background: var(--gl-bg-warm);
    border-radius: var(--gl-radius-lg);
    overflow: hidden;
    box-shadow: var(--gl-shadow-sm);
    transition: transform var(--gl-duration) var(--gl-ease), box-shadow var(--gl-duration) var(--gl-ease);
    border: 1px solid rgba(0, 0, 0, 0.04);
}
.gl_event_teaser:hover {
}

.gl_event_teaser .gl_event_title {
    font-size: 1.8rem;
    margin: 1.4rem 1.5rem 0.5rem;
    order: 1;
}

.gl_event_teaser .gl_event_excerpt {
    font-size: 1.4rem;
    line-height: 1.65;
    color: var(--color-text-secondary);
    margin: 0.5rem 1.5rem 1.5rem;
    order: 2;
    flex: 1;
}

.gl_event_teaser .gl_event_image_wrap {
    order: 0;
    overflow: hidden;
}

.gl_event_teaser .gl_event_image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 0;
    display: block;
    margin-bottom: 0;
    transition: transform var(--gl-duration-slow) var(--gl-ease);
    order: 0;
}
.gl_event_teaser:hover .gl_event_image {
    transform: scale(1.05);
}

.gl_event_teaser .gl_event_meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1rem 1.5rem;
    order: 4;
}

.gl_event_teaser .gl_event_date,
.gl_event_teaser .gl_event_time {
    font-size: 1.3rem;
    color: var(--gl-primary);
    font-weight: 600;
}

/* Event full page */
.gl_event_full {
    max-width: 800px;
    margin: 0 auto 3rem;
}
.gl_event_full .gl_event_image {
    width: 100%;
    border-radius: var(--gl-radius-lg);
    margin-bottom: 1.5rem;
}
.gl_event_full .gl_event_title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}
.gl_event_full .gl_event_date,
.gl_event_full .gl_event_time,
.gl_event_full .gl_event_location,
.gl_event_full .gl_event_price {
    display: inline-block;
    font-size: 1.5rem;
    margin-right: 2rem;
    margin-bottom: 1rem;
    color: var(--color-text-secondary);
}
.gl_event_full .gl_event_date,
.gl_event_full .gl_event_price {
    color: var(--gl-primary);
    font-weight: 700;
}
.gl_event_full .gl_event_description {
    margin-top: 1.5rem;
    line-height: 1.7;
}

.gl_event_name { font-weight: 700; }
.gl_category_name { color: var(--color-text-secondary); }


/* ==========================================================================
   20. GUITAR LOUNGE — MENU
   ========================================================================== */

.gl_menu {
    padding: var(--gl-space-section) 0;
    max-width: 800px;
    margin: 0 auto;
}
.gl_menu > h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.gl_menu_category {
    margin-bottom: 3rem;
}
.gl_menu_category h3 {
    font-size: 2rem;
    color: var(--gl-primary);
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--gl-border-light);
    margin-bottom: 1.2rem;
    position: relative;
}

.gl_menu_item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.2rem 1.5rem;
    padding: 1rem 0;
    border-bottom: 1px dotted var(--gl-border-light);
    transition: background-color var(--gl-duration-fast) var(--gl-ease);
}
.gl_menu_item:hover {
    background: rgba(193, 123, 74, 0.03);
}

.gl_menu_name {
    grid-column: 1;
    font-weight: 600;
    font-size: 1.6rem;
    color: var(--gl-text-dark);
}

.gl_menu_desc {
    grid-column: 1;
    font-size: 1.4rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

.gl_menu_price {
    grid-column: 2;
    grid-row: 1 / -1;
    align-self: center;
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--gl-primary);
    white-space: nowrap;
    font-family: var(--gl-font-heading);
}


/* ==========================================================================
   21. GUITAR LOUNGE — SERVICES
   ========================================================================== */

.gl_services {
    padding: var(--gl-space-section) 0;
}
.gl_services > h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.gl_service {
    background: var(--gl-bg-warm);
    border-radius: var(--gl-radius-lg);
    padding: 2.2rem 2.4rem;
    margin-bottom: 1.2rem;
    box-shadow: var(--gl-shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all var(--gl-duration) var(--gl-ease);
    position: relative;
    overflow: hidden;
}
.gl_service::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gl-primary);
    transform: scaleY(0);
    transition: transform var(--gl-duration) var(--gl-ease);
    transform-origin: top;
}
.gl_service:hover {
    box-shadow: var(--gl-shadow-md);
    transform: translateX(4px);
}
.gl_service:hover::before {
    transform: scaleY(1);
}

#content .gl_service h3 {
    margin-bottom: 0.5rem;
}
#content .gl_service_desc p {
    font-size: 1.4rem;
    line-height: 1.65;
    color: var(--color-text-secondary);
    margin-bottom: 0;
}
.gl_service_price {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gl-primary);
    margin-top: 0.8rem;
    font-family: var(--gl-font-heading);
}


/* ==========================================================================
   22. GUITAR LOUNGE — PRICING
   ========================================================================== */

.gl_pricing {
    padding: var(--gl-space-section) 0;
}
.gl_pricing > h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.gl_pricing_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.gl_price_card {
    background: var(--gl-bg-warm);
    border-radius: var(--gl-radius-lg);
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: var(--gl-shadow-sm);
    border: 2px solid transparent;
    transition: all var(--gl-duration) var(--gl-ease);
    position: relative;
}
.gl_price_card:hover {
    transform: translateY(-6px);
    box-shadow: var(--gl-shadow-md);
}

.gl_price_card_highlighted {
    border-color: var(--gl-primary);
    background: linear-gradient(180deg, rgba(193, 123, 74, 0.06) 0%, var(--gl-bg-warm) 100%);
    box-shadow: var(--gl-shadow-lift);
    transform: scale(1.03);
    z-index: 1;
}
.gl_price_card_highlighted:hover {
    transform: scale(1.03) translateY(-6px);
}

/* "Recommended" badge for highlighted card */
.gl_price_card_highlighted::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gl-primary);
    border-radius: 0 0 3px 3px;
}

.gl_price_card h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.gl_price_duration {
    font-size: 1.4rem;
    color: var(--color-text-secondary);
    margin-bottom: 1.2rem;
}

.gl_price_value {
    font-family: var(--gl-font-heading);
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--gl-primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.gl_price_note {
    font-size: 1.4rem;
    color: var(--color-text-secondary);
    margin-bottom: 0;
}


/* ==========================================================================
   23. GUITAR LOUNGE — CONTACT
   ========================================================================== */

.gl_contact {
    padding: var(--gl-space-section) 0;
    max-width: var(--content-max-width);
    margin: 0 auto;
}

.gl_contact_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--color-border);
    border-radius: var(--gl-radius-md);
    overflow: hidden;
}

.gl_contact_card {
    padding: 2.4rem;
    border-right: 1px solid var(--color-border);
}
.gl_contact_card:last-child {
    border-right: none;
}

.gl_contact_card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gl-text-muted);
    margin-bottom: 1.4rem;
    font-family: var(--gl-font-body);
}

.gl_contact_card div {
    font-size: 1.5rem;
    line-height: 1.8;
}

.gl_contact_maps_link {
    display: inline-block;
    margin-top: 1.2rem;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gl-primary);
    text-decoration: none;
}
.gl_contact_maps_link:hover {
    text-decoration: underline;
}

.gl_contact_phone,
.gl_contact_email {
    display: block;
    font-size: 1.5rem;
    line-height: 2.2;
    color: var(--gl-text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--gl-duration-fast) var(--gl-ease);
}
.gl_contact_phone:hover,
.gl_contact_email:hover {
    color: var(--gl-primary);
}

.gl_contact_hours_entry {
    font-size: 1.5rem;
    line-height: 2.2;
}

.gl_contact_social {
    margin-top: 2rem;
    display: flex;
    justify-content: right;
    gap: 1rem;
}
.gl_contact_social a.gl_social_link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.8rem;
    font-size: 1.4rem;
    font-weight: 600;
    background: var(--gl-text-dark);
    border-radius: var(--gl-radius-sm);
    color: #fff;
    text-decoration: none;
    transition: background var(--gl-duration-fast) var(--gl-ease);
}
#content .gl_contact_social a.gl_social_link,
#content .gl_contact_social a.gl_social_link:hover {
    color: #fff;
}
.gl_contact_social a.gl_social_link:hover {
    background: var(--gl-primary);
}
.gl_contact_social a.gl_social_link::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    background: currentColor;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zM12 0C8.741 0 8.333.014 7.053.072 2.695.272.273 2.69.073 7.052.014 8.333 0 8.741 0 12c0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98C8.333 23.986 8.741 24 12 24c3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98C15.668.014 15.259 0 12 0zm0 5.838a6.162 6.162 0 100 12.324 6.162 6.162 0 000-12.324zM12 16a4 4 0 110-8 4 4 0 010 8zm6.406-11.845a1.44 1.44 0 100 2.881 1.44 1.44 0 000-2.881z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zM12 0C8.741 0 8.333.014 7.053.072 2.695.272.273 2.69.073 7.052.014 8.333 0 8.741 0 12c0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98C8.333 23.986 8.741 24 12 24c3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98C15.668.014 15.259 0 12 0zm0 5.838a6.162 6.162 0 100 12.324 6.162 6.162 0 000-12.324zM12 16a4 4 0 110-8 4 4 0 010 8zm6.406-11.845a1.44 1.44 0 100 2.881 1.44 1.44 0 000-2.881z'/%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    mask-size: contain;
}
.gl_contact_social .gl_social_link {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    font-size: 1.3rem;
    color: var(--color-text);
}


/* ==========================================================================
   24. GUITAR LOUNGE — GALLERY (Masonry)
   ========================================================================== */

.gl_gallery {
    padding: var(--gl-space-section) 0;
}
.gl_gallery > h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.gl_gallery_grid {
    columns: 3;
    column-gap: 1rem;
}

.gl_gallery_item {
    display: block;
    overflow: hidden;
    border-radius: var(--gl-radius-md);
    position: relative;
    cursor: pointer;
    break-inside: avoid;
    margin-bottom: 1rem;
}
.gl_gallery_item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    margin-bottom: 0;
    transition: transform var(--gl-duration-slow) var(--gl-ease);
}
.gl_gallery_item:hover img {
    transform: scale(1.05);
}

/* Hover overlay */
.gl_gallery_item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44, 36, 32, 0.4) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--gl-duration) var(--gl-ease);
    pointer-events: none;
}
.gl_gallery_item:hover::after {
    opacity: 1;
}


/* ==========================================================================
   25. GUITAR LOUNGE — SLIDESHOW
   ========================================================================== */

.gl_slideshow {
    padding: var(--gl-space-section) 0;
}
.gl_slideshow > h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.gl_slideshow_wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--gl-radius-lg);
    background: var(--gl-bg-espresso);
    box-shadow: var(--gl-shadow-lg);
}

.gl_slideshow_wrapper .gl_slide {
    display: none;
    position: relative;
}
.gl_slideshow_wrapper .gl_slide:first-child {
    display: block;
}
.gl_slideshow_wrapper .gl_slide img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 0;
    border-radius: 0;
}

.gl_slide_caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 2.5rem;
    background: linear-gradient(transparent, rgba(44, 36, 32, 0.85));
    color: var(--gl-text-on-dark);
    font-family: var(--gl-font-heading);
    font-size: 1.6rem;
}

/* Slideshow navigation dots */
.gl_slideshow_dots {
    text-align: center;
    padding: 1.2rem 0;
}
.gl_slideshow_dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gl-border-light);
    margin: 0 5px;
    cursor: pointer;
    border: none;
    padding: 0;
    transition: all var(--gl-duration) var(--gl-ease);
}
.gl_slideshow_dot.active {
    background: var(--gl-primary);
    width: 24px;
    border-radius: 4px;
}

/* Slideshow prev/next arrows */
.gl_slideshow_arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(248, 245, 240, 0.15);
    backdrop-filter: blur(4px);
    color: var(--gl-text-on-dark);
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--gl-duration) var(--gl-ease);
    padding: 0;
}
.gl_slideshow_arrow:hover {
    background: rgba(248, 245, 240, 0.3);
}
.gl_slideshow_arrow.prev { left: 12px; }
.gl_slideshow_arrow.next { right: 12px; }
.gl_slideshow_arrow::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--gl-text-on-dark);
    border-left: 2px solid var(--gl-text-on-dark);
}
.gl_slideshow_arrow.prev::after { transform: rotate(-45deg); margin-left: 4px; }
.gl_slideshow_arrow.next::after { transform: rotate(135deg); margin-right: 4px; }


/* ==========================================================================
   26. WCAG — FOCUS-VISIBLE STATES
   ========================================================================== */

.gl_card:focus-visible {
    outline: 2px solid var(--gl-primary);
    outline-offset: 3px;
    transform: translateY(-6px);
    box-shadow: var(--gl-shadow-lift);
}

.gl_gallery_item:focus-visible {
    outline: 2px solid var(--gl-primary);
    outline-offset: 3px;
}

.gl_event_teaser:focus-within {
    outline: 2px solid var(--gl-primary);
    outline-offset: 3px;
    box-shadow: var(--gl-shadow-lift);
}

.gl_price_card:focus-within {
    outline: 2px solid var(--gl-primary);
    outline-offset: 3px;
}

#hig_static_btn_scroll_top:focus-visible {
    outline: 2px solid var(--gl-primary);
    outline-offset: 3px;
    background-color: var(--gl-primary);
}

#default_cookie_info_btn_accept:focus-visible {
    outline: 2px solid var(--gl-primary);
    outline-offset: 3px;
    background-color: var(--gl-primary);
    color: #fff;
}

#default_static_overlay_gallery_simple .btn_close:focus-visible,
#default_static_overlay_gallery_simple .btn_previous:focus-visible,
#default_static_overlay_gallery_simple .btn_next:focus-visible {
    outline: 2px solid var(--gl-primary);
    outline-offset: 3px;
    background-color: var(--gl-primary);
}

.gl_slideshow_arrow:focus-visible {
    outline: 2px solid var(--gl-primary);
    outline-offset: 3px;
}
.gl_slideshow_dot:focus-visible {
    outline: 2px solid var(--gl-primary);
    outline-offset: 3px;
}

#footer .gl_footer_social_link:focus-visible {
    outline: 2px solid var(--gl-primary);
    outline-offset: 3px;
    background: var(--gl-primary);
    color: #fff;
}

#content .gl_hero_cta a:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

.gl_contact_phone:focus-visible,
.gl_contact_email:focus-visible {
    outline: 2px solid var(--gl-primary);
    outline-offset: 3px;
}

#static_btn_nav:focus-visible {
    outline: 2px solid var(--gl-primary);
    outline-offset: 3px;
}


/* ==========================================================================
   27. RESPONSIVE BREAKPOINTS
   ========================================================================== */

@media (max-width: 1024px) {

    /* WHY: At tablet widths the 46% image leaves too little room for text */
    .gl_text_image img {
        flex: 0 0 38%;
        max-width: 38%;
    }
}

@media (max-width: 900px) {

    /* WHY: Below 900px even 38% is too wide — stack vertically */
    .gl_text_image {
        flex-direction: column;
    }
    .gl_text_image_left {
        flex-direction: column;
    }
    .gl_text_image img {
        flex: 0 0 auto;
        max-width: 100%;
        max-height: 460px;
        border-radius: var(--gl-radius-md);
    }
}

@media (max-width: 800px) {

    #content h1 { font-size: 2.6rem; }
    #content h2 { font-size: 2.2rem; }
    #content h3 { font-size: 1.8rem; }
    #content h4 { font-size: 1.6rem; }

    #content { padding: 0 1.5rem; }

    body.hig_overlay_padding .content_block[class*="chapter"] {
        padding-top: 216px;
    }

    /* Guitar Lounge responsive */
    .gl_hero { min-height: auto; background-position: center; }
    .gl_hero_content { padding: 3.5rem 0; }
    .gl_page_header { min-height: 200px; }

    .gl_contact_grid { grid-template-columns: 1fr; }
    .gl_contact_card { border-right: none; border-bottom: 1px solid var(--color-border); }
    .gl_contact_card:last-child { border-bottom: none; }

    /* Footer: 2-column on tablets */
    .gl_footer_grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .gl_footer_brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {

    .gl_hero { min-height: auto; background-position: center; }
    .gl_hero_content { padding: 3rem 0; }

    #content .gl_hero_cta a { padding: 0.7rem 1.4rem !important; font-size: 1.2rem !important; }



    :root {
        --nav-font-size: 1.8rem;
        --nav-link-height: 4.4rem;
    }

    #default_static_overlay_gallery_simple { padding: 0; }
    #default_static_overlay_gallery_simple .inner { border-radius: 0; padding: 50px 5px 5px; }

    .gl_events_grid {
        grid-template-columns: 1fr;
    }
    .gl_feature_cards_grid {
        grid-template-columns: 1fr 1fr;
    }
    .gl_gallery_grid {
        columns: 2;
    }
    .gl_pricing_grid {
        grid-template-columns: 1fr;
    }
    .gl_price_card_highlighted {
        transform: none;
    }
    .gl_price_card_highlighted:hover {
        transform: translateY(-6px);
    }
}

@media (max-width: 480px) {

    .gl_hero { min-height: auto; background-position: center; }
    .gl_hero_content { padding: 2.5rem 0; }

    #content .gl_hero_cta a { padding: 0.5rem 1rem !important; font-size: 1rem !important; }


    :root {
        --nav-font-size: 1.6rem;
        --nav-link-height: 4rem;
    }

    #content h1 { font-size: 2.2rem; }
    #content h2 { font-size: 1.9rem; }

    /* Footer: single column on mobile */
    .gl_footer_grid { grid-template-columns: 1fr; text-align: center; gap: 2.5rem 0; }
    .gl_footer_brand { grid-column: 1; }
    .gl_footer_col h4::after { left: 50%; transform: translateX(-50%); }
    .gl_footer_social { justify-content: center; }
    .gl_footer_bottom { flex-direction: column; gap: 0.8rem; text-align: center; }
    .gl_footer_legal { justify-content: center; }
    .gl_footer_contact div { text-align: center; }

    .gl_hero_cta { flex-direction: column; }
    .gl_hero_cta a { text-align: center; }
    #content .gl_hero_cta a.gl_hero_cta_secondary {
        border-color: rgba(255, 255, 255, 0.6);
        color: #fff;
    }

    .gl_feature_cards_grid {
        grid-template-columns: 1fr;
    }
    .gl_feature_cards::before {
        display: none;
    }

    .gl_menu_item { gap: 0.1rem 1rem; }

    .gl_slideshow_arrow {
        width: 36px;
        height: 36px;
    }
}

/* ==========================================================================
DESKTOP INLINE NAVIGATION (>901px)
   ========================================================================== */

@media (min-width: 901px) {

    #navigation {
        display: block;
        position: static;
        width: auto;
        height: var(--top-height);
        overflow: visible;
        background: none;
        padding: 0;
        margin-left: auto;
    }

    #navigation_links {
        display: flex;
        align-items: center;
        gap: 0;
        padding: 0;
        margin: 0;
        height: 100%;
    }

    #navigation_links > a,
    #navigation_links > .link,
    #navigation .link_collection_wrapper > a {
        display: flex;
        align-items: center;
        padding: 0 2rem;
        font-size: 1.95rem;
        height: 100%;
        white-space: nowrap;
        text-align: center;
        transition: color var(--gl-duration-fast) var(--gl-ease);
    }

    #navigation_links > a:hover,
    #navigation_links > .link:hover,
    #navigation .link_collection_wrapper > a:hover {
        letter-spacing: 0;
        color: var(--gl-primary);
    }

    #static_btn_close_menu { display: none !important; }
    #static_btn_nav { display: none; }

    body #navigation.overlay {
        position: static;
        width: auto;
        height: var(--top-height);
        overflow: visible;
        background: none;
    }
}


/* MwSt footnote */
#content .gl_mwst_note p {
    font-size: 1.1rem !important;
    color: #999;
    margin-top: 2rem;
}
