
RZ Allegro B♭ Clarinet
.h1 { text-align: center; font-size: 2.5rem; font-style: bold strong; font-family: "Philosopher"; } .h2 { text-align: center; font-size: 2.5rem; font-style: bold strong; font-family: "Philosopher"; } .h3 { text-align: center; font-size: 2rem; font-style: italic; } .text-center { text-align: center; } .text-center1 { text-align: center; font-style: italic; color: #9b7733; } .text-center2 { text-align: center; text-decoration: underline; color: #414040; } .tabs { display: flex; justify-content: center; border-bottom: 2px solid #ddd; border-radius: 5px 5px 0 0; margin: 20px 0; } .tab { padding: 10px 20px; cursor: pointer; font-weight: bold; background-color: #C7B38A; border: 1px solid #ddd; border-bottom: none; margin-right: 5px; border-radius: 5px 5px 0 0; } .tab.active { background-color: #dcc18825; border-bottom: 2px solid #dcc18825; box-shadow: 2px 0px 5px rgba(0, 0, 0, 0.6); } .tab-content { display: none; padding: 15px; background-color: #DCC18850; border: 1px solid #ddd; border-radius: 5px; } .tab-content.active { display: block; } .spec-table { width: 100%; border-collapse: collapse; margin: 0 auto; } .spec-table th, .spec-table td { padding: 8px; border: 1px solid #ddd; } .spec-table th { background-color: #f9f9f9; text-align: left; } RZ Allegro B♭ Clarinet Step Up Your Musical Journey Experience unparalleled craftsmanship with the RZ Allegro B♭ Clarinet, meticulously crafted from unstained, slow-aged Grenadilla wood for a warm, resonant tone. Featuring a spring displacement mechanism for superior key action, heavily silver-plated keywork, and comfortable leather pads, this clarinet helps you focus on what truly matters—your performance. Overview Description Tech Specs Designed for Responsiveness & Comfort With a unique spring displacement mechanism attaching the flaps between the posts, the RZ Allegro responds instantly to the player’s touch. Its durable leather pads and an adjustable thumb rest ensure a secure seal and effortless handling, making practice sessions and performances equally enjoyable. Exclusive Key Action & Superior Craftsmanship Elevate Your Performance Handcrafted from a minimum of 7-year slow-aged Grenadilla wood, the RZ Allegro’s unstained finish showcases its natural beauty. This model boasts heavily silver-plated keywork with carbon rings for added durability and style, embodying the fusion of form and function that is the hallmark of Czech instrument design. Complete Package for Optimal Versatility Featuring two barrels for precise intonation adjustments, the RZ Allegro B♭ Clarinet adapts seamlessly to a range of musical settings. Along with an RZ case and cleaning set, you’ll have everything you need to maintain and transport your clarinet with ease. Whether you’re advancing your studies or taking the stage, the RZ Allegro delivers performance-ready reliability and the warmth of authentic Czech craftsmanship. Key Features Wood Material Slow-aged Grenadilla (7+ years), unstained finish Pads Leather pads for secure sealing Thumb Rest Adjustable for personalized comfort Key Mechanism Spring displacement mechanism for superior key action Keywork Heavily silver-plated keys Rings Carbon rings for enhanced durability Barrels 2 barrels included for precise intonation Accessories RZ case and cleaning set Embodying remarkable craftsmanship and authentic tonal excellence, the RZ Allegro B♭ Clarinet is an investment in your musical future. Harness its quick response, comfortable design, and beautiful resonance to transform every note into an inspiring performance. // Tab functionality const tabs = document.querySelectorAll('.tab'); const contents = document.querySelectorAll('.tab-content'); tabs.forEach(tab => { tab.addEventListener('click', () => { // Remove 'active' class from all tabs and contents tabs.forEach(t => t.classList.remove('active')); contents.forEach(c => c.classList.remove('active')); // Add 'active' class to the clicked tab and corresponding content tab.classList.add('active'); document.getElementById(tab.dataset.tab).classList.add('active'); }); });