
Buffet Crampon Gala 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; } Buffet Crampon Gala B♭ Clarinet Tradition Meets Modern Innovation The Buffet Crampon Gala B♭ Clarinet, inspired by the acclaimed Legende and Tradition models, represents the next evolution in clarinet craftsmanship. Introduced in 2020, this clarinet combines rich harmonics, elegant aesthetics, and innovative features, making it a trusted choice for professional and advanced amateur musicians alike. Overview Design Specifications A Harmonious Blend of Heritage & Innovation The Gala B♭ Clarinet is a testament to Buffet Crampon’s commitment to excellence. Crafted from high-quality grenadilla wood, its poly-cylindrical bore produces a centered tone rich in harmonics. Whether you're performing on stage or in a studio, the Gala delivers impeccable sound and balance. Exquisite Craftsmanship Refined Aesthetics & Functionality With black nickel-plated keywork, a flat-bottomed bell rim, and wooden chimneys, the Gala stands out for its understated elegance. Leather pads ensure consistent sealing and durability, while the adjustable thumb rest and ergonomic design make it a joy to play for extended periods. Made in France with Pride Handcrafted at Buffet Crampon’s French workshops, the Gala Clarinet embodies a tradition of precision and artistry. Its thoughtful design makes it accessible to a broad range of musicians, from dedicated students to seasoned professionals seeking a reliable, versatile instrument. Key Specifications Model Gala B♭ Clarinet Key B♭ Pitch 440/442 Hz Body Material Stained Grenadilla wood (Dalbergia melanoxylon) Bore Poly-cylindrical Keywork 17 keys, black nickel-plated Barrels 65 mm and 66 mm Pads Leather and cork Thumb Rest Adjustable Case Pochette style, wooden design Elevate your performance with the Buffet Crampon Gala B♭ Clarinet. Its innovative features, elegant design, and exceptional craftsmanship make it the perfect companion for musicians seeking both style and substance. // 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'); }); });