
RZ Conservatory 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; } Elevate Your Performance with the RZ Conservatory B♭ Clarinet The RZ Conservatory B♭ Clarinet is expertly designed for the intermediate musician, providing a rich and warm sound through its premium Grenadilla wood construction. With a 440/442 Hz pitch, this clarinet is crafted for serious players who demand quality and comfort. Overview Description Tech Specs Exceptional Construction & Ergonomic Design This clarinet features durable leather pads and an adjustable thumb rest, combining longevity with ergonomic comfort for extended playability. The heavily silver-plated keywork enhances elegance and provides increased resistance to wear, ensuring reliable performance over time. Comprehensive Package for Maintenance All Essentials at Your Fingertips Included with the RZ Conservatory B♭ Clarinet are a single barrel, an RZ case, and a cleaning set, offering everything you need for proper upkeep. For added functionality, an optional alternate E♭ lever is available, ensuring adaptability for a range of musical demands. Crafted for the Serious Musician Whether you’re focused on honing your skills or preparing for recitals, the RZ Conservatory B♭ Clarinet offers superior tone, reliable performance, and comfortable handling. Step up your musical journey with a clarinet designed to support and inspire intermediate players who strive for excellence. Key Features Material Premium Slow Aged Grenadilla wood Pitch 440/442 Hz Pads Leather pads for durability Thumb Rest Adjustable for ergonomic comfort Keywork Heavily silver-plated for elegance and reliability Accessories Includes single barrel, RZ case, and cleaning set Optional Alternate E♭ lever available Step up your musical journey with the RZ Conservatory B♭ Clarinet. Crafted for exceptional sound, comfort, and reliability, it is the ideal choice for the intermediate musician. // 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'); }); });