
Buffet Crampon E11 A Clarinet
.h1 { text-align: center; font-size: 2.5rem; font-style: bold strong; font-family: "Philosopher"; } .h2 { text-align: center; font-size: 2rem; font-style: italic; } .text-center { text-align: center; } .text-center1 { text-align: center; font-style: italic; color: #9b7733; } .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 E11 A Clarinet The First Wooden Clarinet, Reliable and Solid The Buffet Crampon E11 A Clarinet, crafted from African Blackwood (Dalbergia Melanoxylon), sets the benchmark for advancing musicians seeking their first wooden clarinet. Hand-finished in Buffet Crampon's German workshops, this clarinet combines tradition with modern precision to deliver a warm, resonant tone and smooth playability. Overview Features Technical Specifications A Clarinet for Advancing Musicians The E11 A Clarinet offers an exceptional balance of tone, comfort, and durability. Featuring a poly-cylindrical bore inspired by Buffet Crampon’s professional models, this clarinet provides the precision and response needed for both solo and ensemble performances. Its hand-finished craftsmanship ensures a smooth, free-blowing experience, making it an ideal choice for musicians progressing from beginner to intermediate levels. Traditional Craftsmanship Meets Modern Innovation Made in Germany The E11 A Clarinet is meticulously manufactured in Buffet Crampon’s dedicated workshops in Markneukirchen, Germany. Combining traditional methods with state-of-the-art technology, this instrument delivers exceptional reliability and tonal quality. Its silver-plated keywork offers a refined aesthetic while ensuring durability and a smooth playing experience. Comfort and Playability Designed with the advancing musician in mind, the E11 A Clarinet features a fixed thumb rest for stability and comfort during extended practice sessions. Stainless steel springs provide effortless key action, while bladder pads ensure consistent sealing and reliability. Technical Specifications Key A Pitch 442 Hz Body Dalbergia Melanoxylon, Stained African Blackwood Bore Poly-cylindrical Keys 17 Rings 6 Thumb Rest Fixed Keywork Finish Silver-Plated Springs Stainless Steel Pads Bladder Barrels 42.2 mm The Buffet Crampon E11 A Clarinet represents a perfect blend of tradition, precision, and playability, making it a trusted choice for advancing musicians seeking their first wooden clarinet. // 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'); }); });