
Buffet Crampon R13 A 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 R13 A Clarinet The Legendary Choice of Professionals Since its creation in 1955 by Robert Carrée, the Buffet Crampon R13 A Clarinet has become a cornerstone of professional clarinet performance. Known for its rich harmonics, powerful projection, and warm centered tone, it continues to captivate soloists, orchestras, students, and amateurs worldwide. Overview Features Specifications A Clarinet for Every Repertoire The R13 A Clarinet offers unmatched versatility, excelling across symphonic, chamber, and solo repertoire. Its poly-cylindrical bore ensures precise intonation and seamless transitions, allowing musicians to explore the full range of their artistry with confidence and ease. Professional Design & Artistry Craftsmanship that Inspires Crafted from high-quality grenadilla wood, the R13 A Clarinet produces a warm, resonant tone. Its silver-plated keywork provides a smooth, reliable feel, while the adjustable thumb rest offers ergonomic comfort for extended play sessions. Designed for musicians who demand precision, this clarinet is a timeless classic. Trusted by Generations The R13’s legacy as a professional standard is rooted in its consistent performance and quality. Whether performing intricate technical passages or lyrical melodies, this clarinet delivers exceptional sound and reliability that players have trusted for decades. Key Specifications Model R13 A Clarinet Key A Pitch 440/442 Hz Body Material Grenadilla wood (Dalbergia Melanoxylon) or GreenLinE Bore Poly-cylindrical Barrel 65 mm Keywork 17 keys, 6 rings; silver-plated or nickel-plated Thumb Rest Adjustable Pads Bladder Case Traditional wooden case Accessories Ligature, mouthpiece cap, swab, cork grease, pencil The Buffet Crampon R13 A Clarinet continues to set the standard for professional clarinets. With its unparalleled craftsmanship, tonal flexibility, and rich legacy, it remains an essential instrument for musicians aspiring to greatness. // 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'); }); });