
Buffet Crampon R13 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 R13 B♭ Clarinet A Timeless Standard of Professional Excellence Introduced in 1955 by the visionary Robert Carrée, the Buffet Crampon R13 B♭ Clarinet continues to dominate the musical world. Revered for its centered tone, rich harmonics, and powerful projection, the R13 is the instrument of choice for soloists, orchestras, students, and enthusiasts alike. Its design and craftsmanship ensure it remains a top choice for musicians across all repertoires. Overview Features Specifications The Quintessential Clarinet The R13’s poly-cylindrical bore and premium grenadilla wood construction deliver a harmonically rich tone with outstanding clarity and projection. Whether performing intricate solo passages or blending seamlessly in ensemble settings, the R13 offers unparalleled versatility for professional and aspiring musicians. Crafted for Every Musical Style Unmatched Versatility The R13 is perfectly suited for a wide range of musical genres, from classical symphonies to modern compositions. Its rich tone and precise intonation allow players to explore dynamic expression and tonal flexibility. Combined with silver-plated keywork and an adjustable thumb rest, it provides exceptional comfort and control. Key Specifications Model R13 Key B♭ Keywork 17 keys, 6 rings, silver-plated, adjustable thumb rest Pitch 440 Hz Body Material Grenadilla wood (Dalbergia Melanoxylon) Pads Bladder Case Traditional wooden case Accessories Ligature, mouthpiece cap, swab, cork grease, pencil Barrel 66 mm Elevate your artistry with the Buffet Crampon R13 B♭ Clarinet. Renowned for its exceptional craftsmanship and tonal excellence, it is a clarinet that continues to inspire musicians around the world. // 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'); }); });