DW ×

Keywords

+

Categories

+
  • +
  • +
  • +
  • +
  • +
  • +

Brands

+












:root {
/* Premium palette  precision and luxury */
midnight-blue: #0a1628;
deep-navy: #1a2332;
slate-blue: #2c3e50;
silver: #bdc3c7;
platinum: #ecf0f1;
accent-gold: #c9a961;
pure-white: #ffffff;
text-primary: #2c3e50;
text-light: #7f8c8d;

/* Typography */
font-display: Oswald, sans-serif;
font-body: Lato, sans-serif;
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: var(font-body);
color: var(text-primary);
background: var(pure-white);
line-height: 1.7;
overflow-x: hidden;
}

/* Premium header with subtle gradient */
.brand-header {
background: linear-gradient(135deg, var(midnight-blue) 0%, var(deep-navy) 100%);
padding: 100px 20px 120px;
position: relative;
overflow: hidden;
}

.brand-header::before {
content: ;
position: absolute;
top: -50%;
right: -20%;
width: 800px;
height: 800px;
background: radial-gradient(circle, rgba(201,169,97,0.08) 0%, transparent 70%);
border-radius: 50%;
}

.brand-header::after {
content: ;
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 1px;
background: linear-gradient(90deg, transparent, var(accent-gold), transparent);
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
position: relative;
z-index: 1;
}

.content-wrapper {
max-width: 1160px;
margin: 0 auto;
}

.brand-logo {
font-family: var(font-display);
font-size: clamp(3.5rem, 8vw, 6rem);
font-weight: 700;
color: var(pure-white);
letter-spacing: 8px;
text-transform: uppercase;
margin-bottom: 20px;
animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

.brand-tagline {
font-family: var(font-body);
font-size: clamp(1.1rem, 2vw, 1.4rem);
color: var(silver);
font-weight: 300;
letter-spacing: 2px;
text-transform: uppercase;
animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Expert overview box  premium styling */
.expert-overview {
background: var(pure-white);
border-left: 4px solid var(accent-gold);
padding: 40px 45px;
margin: -60px 0 80px;
box-shadow: 0 20px 60px rgba(0,0,0,0.15);
position: relative;
}

.expert-overview::before {
content: ;
position: absolute;
top: 0;
left: 0;
right: 0;
height: 1px;
background: linear-gradient(90deg, var(accent-gold), transparent);
}

.expert-overview p {
font-size: 1.15rem;
line-height: 1.9;
color: var(text-primary);
font-weight: 300;
}

.expert-overview strong {
color: var(midnight-blue);
font-weight: 700;
}

/* EEAT credentials strip */
.credentials-strip {
background: linear-gradient(to right, var(slate-blue), var(deep-navy));
padding: 30px 40px;
margin-bottom: 80px;
}

.credentials-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 40px;
}

.credential {
text-align: center;
color: var(pure-white);
}

.credential-icon {
font-size: 2.5rem;
font-weight: 700;
font-family: var(font-display);
color: var(accent-gold);
margin-bottom: 10px;
}

.credential-title {
font-size: 1.1rem;
font-weight: 700;
font-family: var(font-display);
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 8px;
}

.credential-detail {
font-size: 0.95rem;
color: var(silver);
font-weight: 300;
}

/* Section styling */
section {
margin-bottom: 100px;
}

h2 {
font-family: var(font-display);
font-size: clamp(2.2rem, 4vw, 3rem);
font-weight: 700;
color: var(midnight-blue);
text-transform: uppercase;
letter-spacing: 2px;
margin-bottom: 30px;
position: relative;
padding-bottom: 20px;
}

h2::after {
content: ;
position: absolute;
bottom: 0;
left: 0;
width: 80px;
height: 3px;
background: var(accent-gold);
}

h3 {
font-family: var(font-display);
font-size: clamp(1.6rem, 3vw, 2rem);
font-weight: 600;
color: var(deep-navy);
text-transform: uppercase;
letter-spacing: 1px;
margin: 40px 0 20px;
}

p {
font-size: 1.05rem;
line-height: 1.8;
color: var(text-primary);
margin-bottom: 20px;
font-weight: 300;
}

/* Product series showcase */
.series-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 40px;
margin: 50px 0;
}

.series-card {
background: linear-gradient(to bottom, var(pure-white), #f8f9fa);
border: 1px solid #e9ecef;
padding: 40px 35px;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
}

.series-card::before {
content: ;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 3px;
background: var(accent-gold);
transform: scaleX(0);
transform-origin: left;
transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.series-card:hover::before {
transform: scaleX(1);
}

.series-card:hover {
box-shadow: 0 15px 50px rgba(0,0,0,0.12);
transform: translateY(-5px);
}

.series-name {
font-family: var(font-display);
font-size: 1.8rem;
font-weight: 700;
color: var(midnight-blue);
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 15px;
}

.series-tagline {
font-size: 0.95rem;
color: var(accent-gold);
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.5px;
margin-bottom: 20px;
}

.series-description {
font-size: 1rem;
line-height: 1.7;
color: var(text-light);
margin-bottom: 25px;
}

.series-features {
list-style: none;
padding: 0;
}

.series-features li {
padding: 10px 0;
font-size: 0.95rem;
color: var(text-primary);
border-bottom: 1px solid #e9ecef;
position: relative;
padding-left: 25px;
}

.series-features li:last-child {
border-bottom: none;
}

.series-features li::before {
content: ¸;
position: absolute;
left: 0;
color: var(accent-gold);
font-weight: 700;
}

/* Why choose DW section */
.why-dw {
background: linear-gradient(135deg, var(midnight-blue) 0%, var(slate-blue) 100%);
padding: 80px 50px;
margin: 80px 0;
position: relative;
overflow: hidden;
}

.why-dw::before {
content: ;
position: absolute;
top: -30%;
left: -10%;
width: 500px;
height: 500px;
background: radial-gradient(circle, rgba(201,169,97,0.1) 0%, transparent 70%);
border-radius: 50%;
}

.why-dw-content {
position: relative;
z-index: 1;
max-width: 1000px;
margin: 0 auto;
}

.why-dw h2 {
color: var(pure-white);
}

.why-dw h2::after {
background: var(accent-gold);
}

.why-dw-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 35px;
margin-top: 50px;
}

.why-item {
background: rgba(255,255,255,0.05);
padding: 35px 30px;
border-left: 3px solid var(accent-gold);
transition: all 0.3s;
}

.why-item:hover {
background: rgba(255,255,255,0.08);
}

.why-number {
font-family: var(font-display);
font-size: 3rem;
font-weight: 700;
color: var(accent-gold);
opacity: 0.3;
line-height: 1;
margin-bottom: 15px;
}

.why-item h4 {
font-family: var(font-display);
font-size: 1.3rem;
font-weight: 700;
color: var(pure-white);
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 12px;
}

.why-item p {
color: var(silver);
font-size: 1rem;
line-height: 1.7;
}

/* Services section */
.services-section {
background: #f8f9fa;
padding: 80px 50px;
margin: 80px 0;
}

.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 40px;
margin-top: 40px;
}

.service-card {
background: var(pure-white);
padding: 40px 35px;
border-left: 4px solid var(accent-gold);
box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.service-card h3 {
font-size: 1.5rem;
margin-top: 0;
margin-bottom: 15px;
}

.service-card p {
color: var(text-light);
margin-bottom: 20px;
}

.service-card ul {
list-style: none;
padding: 0;
}

.service-card li {
padding: 8px 0;
font-size: 0.95rem;
color: var(text-primary);
position: relative;
padding-left: 20px;
}

.service-card li::before {
content: ;
position: absolute;
left: 0;
color: var(accent-gold);
font-weight: 700;
}

/* CTA buttons */
.cta-section {
display: flex;
gap: 20px;
flex-wrap: wrap;
margin: 40px 0;
}

.btn {
display: inline-block;
padding: 18px 45px;
font-family: var(font-display);
font-size: 1rem;
font-weight: 600;
text-decoration: none;
text-transform: uppercase;
letter-spacing: 1px;
transition: all 0.3s;
}

.btn-primary {
background: var(midnight-blue);
color: var(pure-white);
border: 2px solid var(midnight-blue);
}

.btn-primary:hover {
background: var(deep-navy);
border-color: var(deep-navy);
box-shadow: 0 8px 25px rgba(10,22,40,0.3);
transform: translateY(-2px);
}

.btn-secondary {
background: transparent;
color: var(midnight-blue);
border: 2px solid var(midnight-blue);
}

.btn-secondary:hover {
background: var(midnight-blue);
color: var(pure-white);
}

/* Final CTA */
.final-cta {
background: linear-gradient(to right, var(accent-gold), #d4b76a);
padding: 70px 50px;
text-align: center;
margin: 100px 0 0;
}

.final-cta h2 {
color: var(midnight-blue);
margin-bottom: 20px;
}

.final-cta h2::after {
display: none;
}

.final-cta p {
font-size: 1.2rem;
color: var(deep-navy);
margin-bottom: 35px;
font-weight: 400;
}

.final-cta .btn-primary {
background: var(midnight-blue);
border-color: var(midnight-blue);
}

.final-cta .btn-secondary {
background: transparent;
color: var(midnight-blue);
border-color: var(midnight-blue);
}

.final-cta .btn-secondary:hover {
background: var(midnight-blue);
color: var(pure-white);
}

/* Mobile responsive */
@media (max-width: 968px) {
.container {
padding: 0 15px;
}

.content-wrapper {
max-width: 100%;
}

.brand-header {
padding: 60px 20px 80px;
}

.brand-logo {
font-size: 3rem;
}

.expert-overview {
padding: 30px 25px;
margin: -40px 15px 60px;
}

.credentials-strip {
padding: 25px 20px;
}

.credentials-grid {
grid-template-columns: 1fr;
gap: 30px;
}

.series-grid {
grid-template-columns: 1fr;
gap: 30px;
}

.why-dw {
padding: 50px 25px;
}

.why-dw-grid {
grid-template-columns: 1fr;
gap: 25px;
}

.services-section {
padding: 50px 25px;
}

.services-grid {
grid-template-columns: 1fr;
}

.cta-section {
flex-direction: column;
}

.btn {
width: 100%;
text-align: center;
}

.final-cta {
padding: 50px 25px;
}
}



DW DRUMS

The Drummers Choice Since 1972







DW Drums (Drum Workshop) represents the pinnacle of American drum manufacturing, combining traditional craftsmanship with modern innovation since 1972. At Angkor Music Melbourne, we stock the complete DW range including Performance Series, Design Series, and premium Collectors Series drum kits. DW pioneered numerous drum industry innovations including timbre matching shells, True-Pitch tensioning, and the revolutionary Vertical Low Timbre design. Every DW drum features North American maple or specialized hybrid shells, precision-bearing edges, and proprietary hardware ensuring superior tone, projection, and tuning stability. Our 15+ years drum expertise includes professional drum repairs performed by qualified technicians, comprehensive drum lessons taught by working session drummers, and expert custom configuration consulting. Whether youre a beginner seeking your first quality kit or a touring professional requiring precise specifications, our Melbourne drum department provides hands-on evaluation, professional setup, and ongoing technical support. Located 4-6 Drake Boulevard, Altona VIC 3018. Call (03) 8360 7799 for expert drum advice or visit our showroom to experience DW quality firsthand.






15+

Years Drum Expertise

Professional drummers and qualified drum technicians on staff





On-Site Drum Repairs

Expert maintenance, tuning, and hardware servicing





Melbourne Drum School

Professional lessons from working session drummers





Authorized DW Dealer

Full range with manufacturer warranty and support






Premium American Drum Craftsmanship

DW Drums transformed the drum industry by refusing to compromise on quality, tone, or innovation. Founded in 1972 by Don Lombardi in California, Drum Workshop began as a teaching studio before revolutionizing drum hardware design and manufacturing. Today, DW represents the gold standard for professional drum kits worldwide, chosen by touring artists, studio session players, and discerning drummers who demand exceptional sound quality and reliability.

At Angkor Music Melbourne, our drum department specializes in DW because we understand what serious drummers require. Our professional drummers on staff have toured extensively, recorded in major studios, and taught hundreds of students from beginner to advanced levels. This real-world experience informs every consultation we provide, ensuring you select the DW configuration perfectly matched to your playing style, musical genre, and performance requirements.

Every DW drum kit in our showroom is professionally set up and tuned by our qualified drum technicians. We maintain comprehensive stock across the Performance, Design, and Collectors Series ranges, allowing hands-on comparison of shell materials, bearing edge profiles, and hardware configurations. Our on-site drum repair facility handles everything from basic tuning and head replacement through complete hardware restoration and custom modification, providing ongoing support throughout your drum ownership experience.




DW Drum Kit Series



Performance Series

Professional Quality, Accessible Pricing

DWs Performance Series delivers authentic DW tone and construction at an accessible price point. Featuring all-maple shells with reinforcement hoops, True-Pitch tensioning, and DWs renowned low-mass lugs, Performance Series kits provide the foundation for professional drumming across all genres.


North American maple shells with reinforcement hoops
True-Pitch tension rods for precise tuning stability
STM (Suspension Tom Mounts) for maximum resonance
Professional-grade DW 9000 Series hardware compatible
Available in multiple finish options and configurations




Design Series

Custom Aesthetics, Premium Performance

Design Series bridges performance and collector quality, offering exotic finishes, specialized shell construction, and premium hardware appointments. These kits combine DWs signature sound with striking visual presentation, ideal for drummers seeking distinctive stage presence alongside professional tone.


Exotic lacquer finishes and FinishPly options
Hybrid shell construction (maple/mahogany, maple/poplar)
True-Pitch tension system with low-mass lugs
Precision-bearing edges for optimal head contact
Includes premium DW hardware and mounting systems




Collectors Series

Handcrafted Excellence, Ultimate Customization

DW Collectors Series represents the absolute pinnacle of drum manufacturing. Each shell is handcrafted in California using DWs proprietary Vertical Low Timbre (VLT) or X-Shell technology, timbre-matched for tonal consistency, and finished to exacting specifications. Collectors kits are fully customizable with virtually unlimited shell, finish, and hardware options.


Handcrafted VLT or X-Shell construction in California
Timbre matching ensures tonal consistency across kit
Unlimited custom finish and exotic wood options
Premium True-Hoops and low-mass Mag lugs
Complete customization of sizes, depths, and configurations











What Makes DW Drums Different



01

Proprietary Shell Technology

DW pioneered Vertical Low Timbre shell construction and X-Shell designs, creating shells with superior resonance, projection, and tonal character. Their precision-bearing edges ensure optimal head contact and tuning response across the entire kit.



02

Timbre Matching Process

Collectors Series shells undergo rigorous timbre matching, ensuring every drum in your kit produces harmonically compatible tones. This creates musical cohesion impossible to achieve with standard manufacturing processes, making the entire kit sound unified and balanced.



03

True-Pitch Tensioning

DWs True-Pitch tension rods feature finer threading than standard drums, allowing micro-adjustments for precise tuning control. This system maintains tuning stability during aggressive playing and enables sophisticated tone shaping across your entire dynamic range.



04

Suspension Tom Mounts

DWs STM isolation mounting system suspends toms via a single lug, allowing shells to vibrate freely without dampening from mounting hardware. This maximizes sustain, resonance, and overall tone quality compared to traditional mounting methods.



05

Premium Hardware Innovation

DW invented numerous industry-standard hardware innovations including the bass drum turret system, Delta Ball-and-Socket pedal adjustment, and Mag throw-off mechanisms. Their 9000 Series hardware sets the professional touring standard for strength and precision.



06

American Craftsmanship

Every DW Collectors Series drum is handcrafted in Oxnard, California by skilled drum builders using traditional techniques combined with modern precision. Performance and Design Series maintain DWs quality standards while offering accessible pricing through efficient manufacturing.









Custom Configuration Consulting

DWs modular design philosophy allows extensive customization across all series. Our professional drummers provide expert consultation on shell sizes, depth configurations, and hardware selection tailored to your specific musical requirements. Whether youre building a compact jazz kit, versatile studio setup, or comprehensive rock configuration, we guide you through the decision-making process ensuring optimal results.

Shell Size Selection

Drum shell diameter and depth dramatically affect tone, volume, and tuning range. Smaller, shallower drums produce higher pitch with faster attack and shorter sustain, ideal for jazz and fusion playing. Larger, deeper shells generate lower fundamental pitch with extended sustain and greater volume projection, suited to rock and contemporary styles. Our staff demonstrates these tonal differences allowing informed decisions based on actual listening experience rather than specifications alone.

Shell Material Options

DW offers multiple shell materials each producing distinct tonal characteristics. All-maple shells deliver warm, balanced tone with excellent projection across all frequencies. Maple-mahogany hybrids emphasize low-end warmth with pronounced midrange punch. Specialty materials like maple-gum and all-mahogany configurations provide unique tonal signatures for specific musical applications. We maintain demonstration kits showcasing these differences enabling comparative evaluation.

Hardware and Finish Selection

Hardware finish options include chrome, black nickel, gold, and specialty coatings affecting both aesthetics and shell vibration characteristics. Finish selection ranges from traditional lacquers through exotic FinishPly veneers and custom graphics. Our design consultation service helps visualize your custom configuration before ordering, ensuring the finished kit exceeds expectations.








Professional Drum Services

Our Melbourne drum department provides comprehensive services supporting drummers from beginner through professional levels. Our qualified technicians and working drummers deliver expertise covering every aspect of drum ownership, performance, and maintenance.



Expert Drum Repairs

Our on-site drum repair facility handles all maintenance and restoration requirements:


Professional drum tuning and head replacement
Hardware servicing, cleaning, and lubrication
Bearing edge restoration and refinishing
Lug replacement and mounting system repair
Custom modification and hardware upgrades
Complete drum kit restoration and refurbishment




Melbourne Drum School

Professional drum lessons taught by working session drummers with touring and recording experience:


Beginner fundamentals: grip, posture, basic coordination
Intermediate technique: rudiments, reading, independence
Advanced concepts: jazz comping, odd meters, polyrhythms
Genre-specific training: rock, jazz, metal, funk, Latin
Studio preparation and session playing techniques
Performance coaching and ensemble training




Custom Setup Service

Professional drum setup and optimization performed by experienced drum technicians:


Complete kit assembly and hardware positioning
Ergonomic adjustment for optimal playing comfort
Professional tuning across entire dynamic range
Head selection consultation and installation
Dampening and tone-shaping recommendations
Hardware maintenance and adjustment optimization










Why Buy DW Drums From Angkor Music Melbourne

Our drum departments 15+ years Melbourne presence provides expertise impossible to replicate through online retailers. Our professional drummers maintain active performance schedules playing diverse genres from jazz through progressive metal, informing realistic advice grounded in actual playing experience rather than marketing materials.

Every DW drum kit receives comprehensive professional setup before delivery or pickup. This includes precision tuning, hardware adjustment, and thorough inspection ensuring optimal performance from the moment you begin playing. Our setup service eliminates the frustration and guesswork new drummers often experience attempting to achieve quality tone from improperly configured kits.

Our on-site drum repair facility provides ongoing technical support throughout drum ownership. Whether you require seasonal tuning maintenance, hardware servicing, or bearing edge restoration, our qualified technicians handle all requirements without shipping instruments elsewhere. This local service availability creates long-term value far exceeding initial purchase price considerations.

We stock comprehensive DW hardware, accessories, and replacement parts enabling immediate solutions rather than waiting for special orders. Our experienced staff identifies compatible components and provides installation guidance ensuring proper function and optimal performance. This parts availability and technical knowledge proves invaluable as your playing develops and requirements evolve.

Call (03) 8360 7799 Visit Our Showroom







Experience DW Drums Quality

Visit our Melbourne showroom to compare DW drum series and receive expert consultation from working drummers.

Call (03) 8360 7799 View DW Drums Online

Angkor Music Melbourne | 4-6 Drake Boulevard, Altona VIC 3018 | Professional Drum Services Since 2010




{
@context: https://schema.org,
@type: MusicStore,
name: Angkor Music Melbourne  DW Drums Specialist,
description: Premium DW Drums dealer in Melbourne. Professional drum repairs, Melbourne Drum School lessons, and expert custom configuration. 15+ years drum expertise with working session drummers on staff.,
url: https://www.angkormusic.com.au/dw-drums/,
telephone: +61-3-8360-7799,
address: {
@type: PostalAddress,
streetAddress: 4-6 Drake Boulevard,
addressLocality: Altona,
addressRegion: VIC,
postalCode: 3018,
addressCountry: AU
},
geo: {
@type: GeoCoordinates,
latitude: -37.8687,
longitude: 144.8317
},
openingHoursSpecification: [
{
@type: OpeningHoursSpecification,
dayOfWeek: [Monday, Tuesday, Wednesday, Thursday, Friday],
opens: 09:00,
closes: 17:30
},
{
@type: OpeningHoursSpecification,
dayOfWeek: Saturday,
opens: 09:00,
closes: 17:00
}
],
priceRange: $$-$$$,
paymentAccepted: Cash, Credit Card, Debit Card,
areaServed: {
@type: GeoCircle,
geoMidpoint: {
@type: GeoCoordinates,
latitude: -37.8687,
longitude: 144.8317
},
geoRadius: 50000
}
}

{
@context: https://schema.org,
@type: Product,
name: DW Drums  Drum Workshop Kits,
description: Complete range of DW Drums including Performance Series, Design Series, and Collectors Series drum kits. Professional American drum manufacturing with superior tone and customization.,
brand: {
@type: Brand,
name: DW Drums
},
offers: {
@type: AggregateOffer,
availability: https://schema.org/InStock,
priceCurrency: AUD,
seller: {
@type: MusicStore,
name: Angkor Music Melbourne
}
},
aggregateRating: {
@type: AggregateRating,
ratingValue: 4.9,
reviewCount: 127
}
}

{
@context: https://schema.org,
@type: Organization,
name: Angkor Music Melbourne Drum Department,
description: Professional drum services including DW Drums sales, expert drum repairs, and Melbourne Drum School lessons taught by working session drummers.,
url: https://www.angkormusic.com.au/,
logo: https://www.angkormusic.com.au/logo.png,
contactPoint: {
@type: ContactPoint,
telephone: +61-3-8360-7799,
contactType: Sales and Service,
areaServed: AU,
availableLanguage: English
},
sameAs: [
https://www.facebook.com/angkormusic,
https://www.instagram.com/angkormusic
]
}

{
@context: https://schema.org,
@type: BreadcrumbList,
itemListElement: [
{
@type: ListItem,
position: 1,
name: Home,
item: https://www.angkormusic.com.au/
},
{
@type: ListItem,
position: 2,
name: Drums,
item: https://www.angkormusic.com.au/drums/
},
{
@type: ListItem,
position: 3,
name: DW Drums,
item: https://www.angkormusic.com.au/dw-drums/
}
]
}






Read More