
:root {
    --bg-color: #f7f7f5;
    --text-main: #1c1c1c;
    --accent-green: #2a5a46;
    --accent-gold: #cfa86e;
    --sidebar-width: 100px;
    --serif-font: 'Playfair Display', serif;
    --sans-font: 'Manrope', sans-serif;
    --sign-font: 'Mrs Saint Delafield', cursive;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { background-color: var(--bg-color); color: var(--text-main); font-family: var(--sans-font); overflow-x: hidden; }
body.no-scroll { overflow: hidden; } 


.noise-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; z-index: 900; opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.preloader {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: #fff; z-index: 9999; display: flex; justify-content: center; align-items: center;
    transition: opacity 0.5s ease;
}
.preloader.fade-out { opacity: 0; }
.loader-text { font-family: var(--serif-font); font-size: 2rem; color: var(--accent-green); font-weight: 700; margin-bottom: 10px; display: block; animation: pulse 2s infinite; }
.loader-line { width: 0; height: 2px; background: var(--accent-green); animation: loadLine 1.5s ease forwards; }

@keyframes loadLine { to { width: 100%; } }
@keyframes pulse { 0% { opacity: 0.5; } 50% { opacity: 1; } 100% { opacity: 0.5; } }



.sidebar-nav {
    position: fixed; top: 0; left: 0; height: 100vh; width: var(--sidebar-width);
    background: #fff; border-right: 1px solid rgba(0,0,0,0.05);
    display: flex; flex-direction: column; justify-content: space-between; align-items: center;
    padding: 40px 0; z-index: 100;
}
.logo { font-family: var(--serif-font); font-weight: 700; font-size: 1.1rem; text-align: center; line-height: 1.1; letter-spacing: -0.5px; }
.logo span { color: var(--accent-green); font-style: italic; }
.nav-links { list-style: none; writing-mode: vertical-rl; transform: rotate(180deg); display: flex; gap: 35px; }
.nav-links a { text-decoration: none; color: #aaa; font-weight: 500; font-size: 0.85rem; transition: 0.3s; letter-spacing: 1px; text-transform: uppercase; }
.nav-links a:hover { color: var(--accent-green); }
.btn-sidebar {
    writing-mode: vertical-rl; transform: rotate(180deg);
    text-decoration: none; color: var(--text-main); font-weight: 700; font-size: 0.75rem;
    display: flex; align-items: center; gap: 10px; border: 1px solid #ddd; padding: 15px 10px; border-radius: 50px; transition: 0.3s;
}
.btn-sidebar:hover { background: var(--text-main); color: #fff; border-color: var(--text-main); }
.content-wrapper { margin-left: var(--sidebar-width); width: calc(100% - var(--sidebar-width)); }



.mobile-header {
    display: none; 
    position: fixed; top: 0; left: 0; width: 100%;
    padding: 15px 20px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}
.mobile-logo { font-family: var(--serif-font); font-weight: 700; font-size: 1.2rem; }
.mobile-logo span { color: var(--accent-green); }

.hamburger-btn {
    width: 30px; height: 20px; background: none; border: none; position: relative; cursor: pointer; z-index: 1002;
}
.hamburger-btn span {
    display: block; position: absolute; height: 2px; width: 100%;
    background: #111; border-radius: 2px; transition: 0.3s ease-in-out;
}
.hamburger-btn span:nth-child(1) { top: 0; }
.hamburger-btn span:nth-child(2) { top: 9px; }
.hamburger-btn span:nth-child(3) { top: 18px; }
.hamburger-btn.active span:nth-child(1) { top: 9px; transform: rotate(45deg); }
.hamburger-btn.active span:nth-child(2) { opacity: 0; }
.hamburger-btn.active span:nth-child(3) { top: 9px; transform: rotate(-45deg); }

.mobile-menu-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: var(--bg-color); z-index: 1001;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}
.mobile-menu-overlay.open { transform: translateY(0); }
.mobile-nav-links { display: flex; flex-direction: column; gap: 30px; text-align: center; margin-bottom: 40px; }
.m-link { font-family: var(--serif-font); font-size: 2rem; color: #111; text-decoration: none; transition: 0.3s; }
.m-link:hover { color: var(--accent-green); }
.btn-mobile-cta { background: var(--accent-green); color: white; padding: 15px 40px; border-radius: 50px; text-decoration: none; font-weight: 600; }



.hero-editorial { min-height: 100vh; display: flex; position: relative; overflow: hidden; padding: 0 5%; align-items: center; }
.hero-bg-text { position: absolute; bottom: -5%; left: -2%; font-size: 23vw; font-weight: 900; color: rgba(42, 90, 70, 0.03); font-family: var(--serif-font); z-index: 0; pointer-events: none; line-height: 1; }
.hero-content { flex: 1; z-index: 2; padding-right: 50px; }
.subtitle { text-transform: uppercase; letter-spacing: 3px; font-size: 0.75rem; color: var(--accent-green); margin-bottom: 25px; font-weight: 700; display: flex; align-items: center; gap: 10px; }
.subtitle::before { content: ''; display: block; width: 30px; height: 1px; background: var(--accent-green); }
h1 { font-family: var(--serif-font); font-size: 4.8rem; line-height: 1.05; margin-bottom: 40px; color: #111; }
h1 em { color: var(--accent-green); font-style: italic; font-weight: 400; }
.description { max-width: 450px; color: #555; line-height: 1.8; margin-bottom: 50px; font-size: 1.05rem; }
.stats-row { display: flex; gap: 60px; border-top: 1px solid #ddd; padding-top: 30px; width: fit-content; }
.stats-row strong { font-size: 2.2rem; font-family: var(--serif-font); display: block; color: var(--text-main); }
.stats-row span { font-size: 0.75rem; color: #888; text-transform: uppercase; letter-spacing: 1px; display: block; }

.hero-visual { flex: 1; position: relative; height: 90vh; display: flex; align-items: center; justify-content: center; }
.image-backdrop { position: absolute; width: 80%; height: 90%; right: 0; top: 5%; z-index: 1; overflow: hidden; border-radius: 200px 0 0 0; }
.image-backdrop img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%) contrast(1.1); opacity: 0.8; transition: 1s ease; }
.hero-editorial:hover .image-backdrop img { filter: grayscale(50%); }


.phone-floater { position: relative; z-index: 10; transform: translateY(60px) rotate(-6deg); transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1); }
.phone-floater:hover { transform: translateY(40px) rotate(0deg) scale(1.02); }
.phone-frame { width: 300px; height: 620px; background: #1a1a1a; border-radius: 45px; padding: 12px; box-shadow: -30px 40px 80px rgba(0,0,0,0.3); position: relative; border: 2px solid #333; }
.phone-notch { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 100px; height: 28px; background: #1a1a1a; border-bottom-left-radius: 18px; border-bottom-right-radius: 18px; z-index: 20; }
.phone-screen { width: 100%; height: 100%; background: #fff; border-radius: 35px; overflow: hidden; position: relative; }
.widget-ui { padding: 50px 25px 30px; height: 100%; display: flex; flex-direction: column; background: linear-gradient(to bottom, #fcfcfc, #f4f4f4); }
.w-head { display: flex; align-items: center; gap: 15px; margin-bottom: 35px; }
.w-avatar { width: 55px; height: 55px; background-color: #ddd; border-radius: 50%; background-size: cover; background-position: center; border: 2px solid #fff; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.w-info b { display: block; font-size: 1rem; color: #222; }
.w-info small { font-size: 0.75rem; color: var(--accent-green); font-weight: 600; text-transform: uppercase; }
.slot { background: #fff; padding: 18px; border-radius: 16px; margin-bottom: 12px; font-size: 0.9rem; font-weight: 600; border: 1px solid rgba(0,0,0,0.04); box-shadow: 0 2px 10px rgba(0,0,0,0.02); transition: 0.2s; cursor: pointer; }
.slot:hover { transform: translateX(5px); }
.slot.active { background: var(--accent-green); color: white; border-color: var(--accent-green); box-shadow: 0 10px 20px rgba(42, 90, 70, 0.25); }
.w-btn { background: #111; color: white; text-align: center; padding: 18px; border-radius: 14px; font-weight: 600; cursor: pointer; margin-top: auto; transition: 0.2s; }
.w-btn:hover { background: var(--accent-green); }



.partners-strip { padding: 40px 5%; background: white; border-bottom: 1px solid #f0f0f0; display: flex; align-items: center; gap: 40px; }
.partners-strip p { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; color: #999; white-space: nowrap; }
.logos-grid { display: flex; gap: 50px; flex-wrap: wrap; align-items: center; opacity: 0.5; filter: grayscale(100%); transition: 0.3s; }
.logos-grid:hover { opacity: 1; filter: grayscale(0%); }
.logos-grid i { font-size: 2rem; color: #333; }



.about-extended { padding: 100px 5%; background: white; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-photo img { width: 100%; border-radius: 5px; filter: grayscale(100%); transition: 0.5s; }
.about-photo:hover img { filter: grayscale(0); }
.section-heading { font-family: var(--serif-font); font-size: 3.5rem; margin-bottom: 10px; color: #111; }
.section-heading em { color: var(--accent-green); font-style: italic; }
.lead-text { font-size: 1.2rem; font-weight: 600; margin-bottom: 30px; color: var(--accent-green); }
.text-columns { column-count: 2; column-gap: 40px; color: #555; line-height: 1.8; margin-bottom: 40px; }
.sign-font { font-family: var(--sign-font); font-size: 3rem; color: var(--text-main); display: block; line-height: 0.8; }
.signature-block small { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; color: #999; margin-left: 10px; }


.services-accordion-section { padding: 120px 5%; background: var(--bg-color); }
.section-sub { margin-bottom: 60px; color: #888; }
.accordion-item { border-bottom: 1px solid rgba(0,0,0,0.1); }
.accordion-header { display: flex; align-items: center; padding: 30px 0; cursor: pointer; transition: 0.3s; }
.accordion-header:hover .acc-title { color: var(--accent-green); padding-left: 10px; }
.acc-num { font-family: var(--serif-font); font-size: 1.5rem; color: #ccc; margin-right: 40px; width: 40px; }
.acc-title { font-family: var(--serif-font); font-size: 2rem; font-weight: 400; flex: 1; transition: 0.3s; }
.acc-icon { font-size: 1.5rem; color: var(--accent-green); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.5s ease-out; }
.acc-content { padding: 0 0 40px 80px; color: #555; max-width: 700px; font-size: 1.05rem; line-height: 1.8; }
.acc-content ul { margin-top: 20px; list-style: none; }
.acc-content ul li { margin-bottom: 12px; position: relative; padding-left: 25px; }
.acc-content ul li::before { content: '•'; color: var(--accent-green); position: absolute; left: 0; font-size: 1.5rem; line-height: 1; top: -2px; }


.reviews-section { padding: 100px 5%; background: #111; color: white; }
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.review-card { padding: 40px; border: 1px solid rgba(255,255,255,0.1); border-radius: 4px; transition: 0.3s; }
.review-card:hover { background: rgba(255,255,255,0.05); transform: translateY(-5px); }
.review-card.highlight { border-color: var(--accent-green); }
.stars { color: var(--accent-gold); margin-bottom: 20px; letter-spacing: 2px; font-size: 0.8rem; }
.review-card blockquote { font-family: var(--serif-font); font-size: 1.3rem; line-height: 1.5; margin-bottom: 30px; font-style: italic; color: #ddd; border: none; padding: 0; }
.review-author { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; color: #888; }



.lead-magnet-section { padding: 100px 5%; background: #f0f2f0; }
.magnet-container { display: flex; align-items: center; justify-content: space-between; gap: 60px; background: white; padding: 60px; border-radius: 20px; box-shadow: 0 20px 50px rgba(0,0,0,0.05); }
.magnet-content { flex: 1; }
.tag { background: var(--accent-green); color: white; padding: 5px 15px; border-radius: 30px; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; margin-bottom: 20px; display: inline-block; }
.magnet-content h2 { font-family: var(--serif-font); font-size: 2.5rem; margin-bottom: 20px; line-height: 1.2; }
.magnet-content p { color: #666; margin-bottom: 30px; }
.magnet-form { display: flex; gap: 10px; margin-bottom: 15px; }
.magnet-form input { flex: 1; padding: 15px; border: 1px solid #ddd; border-radius: 8px; font-family: var(--sans-font); }
.magnet-form button { padding: 15px 30px; background: #111; color: white; border: none; border-radius: 8px; font-weight: 600; cursor: pointer; transition: 0.2s; }
.magnet-form button:hover { background: var(--accent-green); }
.magnet-content small { color: #aaa; font-size: 0.8rem; }
.book-mockup { width: 300px; height: 400px; background: #ddd; position: relative; perspective: 1000px; }
.book-cover { width: 100%; height: 100%; background: #222; color: white; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; font-family: var(--serif-font); font-size: 2rem; box-shadow: 20px 20px 50px rgba(0,0,0,0.3); transform: rotateY(-20deg) rotateX(10deg); transition: 0.5s; position: relative; }
.book-cover i { font-size: 4rem; margin-top: 20px; color: var(--accent-green); }
.lead-magnet-section:hover .book-cover { transform: rotateY(0) rotateX(0); }



.faq-section { padding: 120px 5%; background-color: var(--accent-green); color: white; position: relative; overflow: hidden; }
.faq-section::before { content: 'Fizjo'; position: absolute; top: -50px; right: -50px; font-family: var(--serif-font); font-size: 20rem; opacity: 0.03; color: white; pointer-events: none; z-index: 0; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-top: 60px; position: relative; z-index: 2; align-items: start; }
.faq-section .section-heading { color: white; margin-bottom: 20px; }
.faq-section .section-heading em { color: var(--accent-gold); font-style: italic; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 30px; transition: 0.3s; }
.faq-item:hover { transform: translateX(10px); }
.faq-item h4 { font-family: var(--serif-font); font-size: 1.4rem; margin-bottom: 15px; color: #fff; line-height: 1.4; }
.faq-item p { color: rgba(255,255,255, 0.8); line-height: 1.8; font-size: 0.95rem; }



.pricing-contact-wrapper { padding: 100px 5%; background: #fdfdfd; }
.pc-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 80px; align-items: start; }
.pricing-column { padding-right: 20px; }
.menu-pricelist { margin-top: 40px; }
.menu-item { margin-bottom: 30px; }
.mi-header { display: flex; align-items: flex-end; font-family: var(--serif-font); font-size: 1.3rem; color: #111; margin-bottom: 5px; }
.mi-name { font-weight: 400; white-space: nowrap; }
.mi-dots { flex: 1; border-bottom: 1px dotted #ccc; margin: 0 15px 5px 15px; }
.mi-price { font-weight: 600; color: var(--accent-green); white-space: nowrap; }
.mi-desc { font-size: 0.9rem; color: #777; margin-left: 0; max-width: 90%; line-height: 1.5; }
.menu-item.highlight .mi-header, .menu-item.highlight .mi-desc { color: var(--accent-green); font-weight: 500; }
.menu-item.small { margin-bottom: 15px; }
.menu-item.small .mi-header { font-size: 1.1rem; }


.contact-column { position: relative; height: 600px; }
.map-wrapper { width: 100%; height: 100%; border-radius: 20px; overflow: hidden; position: absolute; top: 0; left: 0; z-index: 1; }
.contact-card-floating { position: relative; z-index: 10; background: #fff; padding: 40px; border-radius: 10px; box-shadow: 0 20px 60px rgba(0,0,0,0.15); max-width: 380px; margin: 40px 0 0 40px; border-left: 4px solid var(--accent-green); }
.contact-card-floating h3 { font-family: var(--serif-font); font-size: 1.8rem; margin-bottom: 20px; color: #111; }
.phone-big { display: block; font-size: 2rem; font-family: var(--serif-font); color: var(--accent-green); text-decoration: none; font-weight: 700; margin-bottom: 5px; transition: 0.3s; }
.phone-big:hover { color: #111; }
.email-link { color: #888; margin-bottom: 25px; }
.divider { border: 0; border-top: 1px solid #eee; margin: 25px 0; }
.address-block, .hours-block { display: flex; gap: 15px; margin-bottom: 20px; color: #444; font-size: 0.95rem; line-height: 1.6; }
.address-block i, .hours-block i { color: var(--accent-green); font-size: 1.2rem; margin-top: 3px; }
.hours-block span { font-weight: 600; color: #111; display: inline-block; width: 60px; }
.btn-directions { display: inline-block; margin-top: 10px; text-decoration: none; color: #111; font-weight: 700; font-size: 0.9rem; border-bottom: 2px solid #ddd; padding-bottom: 2px; transition: 0.3s; }
.btn-directions:hover { border-color: var(--accent-green); color: var(--accent-green); }
.grayscale-map { filter: grayscale(100%) invert(5%); transition: 0.5s; }
.map-box:hover .grayscale-map { filter: grayscale(0%); }



.cookie-modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5); z-index: 9999;
    display: none; justify-content: center; align-items: flex-end; padding-bottom: 20px;
}
.cookie-modal {
    background: #fff; width: 90%; max-width: 600px;
    padding: 30px; border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    animation: slideUp 0.4s ease-out;
}
@keyframes slideUp { from { transform: translateY(50px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.cm-header h3 { font-family: var(--serif-font); font-size: 1.5rem; margin-bottom: 10px; }
.cm-body p { font-size: 0.9rem; color: #555; line-height: 1.6; margin-bottom: 25px; }
.cm-footer { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; }
.btn-cookie-settings { background: none; border: none; text-decoration: underline; color: #777; cursor: pointer; font-size: 0.9rem; }
.cm-actions { display: flex; gap: 10px; }
.btn-cookie-reject { background: #f0f0f0; border: none; padding: 12px 20px; border-radius: 6px; cursor: pointer; font-weight: 600; color: #333; transition: 0.2s; }
.btn-cookie-accept { background: var(--accent-green); border: none; padding: 12px 20px; border-radius: 6px; cursor: pointer; font-weight: 600; color: #fff; transition: 0.2s; }
.btn-cookie-accept:hover { background: #1a3c2f; }





@media (max-width: 1024px) {
    .desktop-only { display: none !important; }
    .mobile-only { display: flex !important; }
    .content-wrapper { margin-left: 0; margin-top: 60px; width: 100%; }
    
    .hero-editorial { flex-direction: column; padding-top: 40px; text-align: center; min-height: auto; }
    .hero-bg-text { display: none; }
    .hero-content { padding-right: 0; margin-bottom: 40px; }
    h1 { font-size: 3rem; }
    .subtitle { justify-content: center; }
    .stats-row { margin: 0 auto; }
    .hero-visual { width: 100%; height: auto; min-height: 500px; }
    .image-backdrop { width: 90%; height: 400px; top: 50px; right: 5%; border-radius: 20px; }
    .phone-floater { transform: translateY(0); }
    
    .pc-grid { grid-template-columns: 1fr; gap: 50px; }
    .contact-column { height: auto; }
    .contact-card-floating { margin: 0; max-width: 100%; box-shadow: none; border: 1px solid #eee; border-left: 4px solid var(--accent-green); }
    .map-wrapper { position: relative; height: 350px; margin-top: 30px; border-radius: 10px; }
    
    .about-grid, .faq-grid { grid-template-columns: 1fr; }
    .about-photo { order: -1; margin-bottom: 30px; }
    .text-columns { column-count: 1; }
    .acc-content { padding-left: 0; }
    .magnet-container { flex-direction: column; text-align: center; }
    .book-mockup { margin: 0 auto; width: 250px; height: 350px; }
    .magnet-form { flex-direction: column; }
    .partners-strip { flex-direction: column; gap: 20px; text-align: center; }
}


@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .pricing-contact-wrapper { padding: 60px 5%; }
    .mi-header { flex-wrap: wrap; }
    .mi-dots { display: none; }
    .mi-price { width: 100%; margin-top: 5px; font-size: 1.1rem; }
    .cm-footer { flex-direction: column; align-items: stretch; }
    .cm-actions { flex-direction: column; }
    .btn-cookie-settings { text-align: center; margin-bottom: 10px; }
}
.sidebar-nav {
    position: fixed; top: 0; left: 0; height: 100vh;
    width: var(--sidebar-width); 
    background: #fff;
    border-right: 1px solid rgba(0,0,0,0.05);
    display: flex; flex-direction: column; 
    align-items: center;
    padding: 40px 0 20px 0; 
    z-index: 100;
}

.logo { 
    font-family: var(--serif-font); 
    font-weight: 700; 
    font-size: 1.1rem; 
    text-align: center; 
    line-height: 1.1; 
    letter-spacing: -0.5px;
    margin-bottom: auto; 
}
.logo span { color: var(--accent-green); font-style: italic; }


.nav-links { 
    list-style: none; 
    writing-mode: vertical-rl; 
    transform: rotate(180deg); 
    display: flex; 
    gap: 35px; 
    margin: auto 0; 
}
.nav-links a { 
    text-decoration: none; 
    color: #aaa; 
    font-weight: 500; 
    font-size: 0.85rem; 
    transition: 0.3s; 
    letter-spacing: 1px; 
    text-transform: uppercase; 
}
.nav-links a:hover { color: var(--accent-green); }


.nav-bottom {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
}


.btn-sidebar-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid #ddd;
    border-radius: 50px;
    padding: 20px 10px;
    text-decoration: none;
    transition: 0.3s;
    color: var(--text-main);
}
.btn-sidebar-vertical:hover {
    border-color: var(--text-main);
    background: #f9f9f9;
}
.btn-sidebar-vertical i {
    font-size: 0.9rem;
}
.btn-sidebar-vertical span {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}


.brand-signature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 1;
    cursor: default;
}

.brand-text {
    line-height: 1;
}

.b-name {
    font-family: 'Manrope', sans-serif; 
    font-weight: 800; 
    font-size: 0.55rem; 
    letter-spacing: 0.5px;
    color: #000;
    text-transform: uppercase;
    display: block;
}

.b-sub {
    font-family: 'Playfair Display', serif; 
    font-size: 0.45rem;
    color: #4169E1; 
    font-style: italic;
    display: block;
    margin-top: 2px;
}

    .sidebar-nav { 
        display: none !important; 
    }

    
    .mobile-header { 
        display: flex !important; 
    }

    
    .desktop-only { display: none !important; }
    .mobile-only { display: flex !important; }
    .content-wrapper { margin-left: 0; margin-top: 60px; width: 100%; }
    
    
