:root {
  --ink: #0b0b0c;
  --ink-soft: #171719;
  --paper: #f2efe8;
  --white: #fff;
  --muted: #8b8984;
  --line: rgba(12, 12, 13, .16);
  --copper: #c4874d;
  --copper-light: #e4b67b;
  --acid: #dfed52;
  --display: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--body); -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.site-header {
  position: absolute;
  z-index: 10;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  min-height: 92px;
  padding: 0 clamp(22px, 4vw, 72px);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.brand { display: inline-flex; align-items: center; gap: 14px; width: max-content; }
.brand-mark { display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid currentColor; font: 800 11px/1 var(--body); letter-spacing: .08em; }
.brand-name { font-size: 14px; font-weight: 800; letter-spacing: .18em; }
.main-nav { display: flex; gap: 34px; font-size: 13px; font-weight: 650; }
.main-nav a { position: relative; padding: 10px 0; color: rgba(255,255,255,.76); }
.main-nav a::after { content: ""; position: absolute; inset: auto 0 4px; height: 1px; background: var(--copper-light); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.main-nav a:hover { color: var(--white); }
.main-nav a:hover::after { transform: scaleX(1); }
.header-cta { justify-self: end; padding: 12px 18px; border: 1px solid rgba(255,255,255,.5); font-size: 12px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; transition: .2s ease; }
.header-cta:hover { background: var(--white); color: var(--ink); }
.menu-toggle { display: none; background: none; color: inherit; border: 1px solid rgba(255,255,255,.4); padding: 9px 12px; }

.hero {
  position: relative;
  min-height: 780px;
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(460px, 1.14fr);
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 77% 42%, rgba(179,117,65,.2), transparent 32%),
    linear-gradient(118deg, #0b0b0c 0%, #121113 48%, #070708 100%);
}
.hero::before { content: ""; position: absolute; inset: 0; opacity: .08; background-image: linear-gradient(rgba(255,255,255,.3) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.3) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(to right, transparent, #000); }
.hero-copy { position: relative; z-index: 2; align-self: center; padding: 150px 7vw 90px; }
.eyebrow { margin: 0 0 28px; color: var(--copper-light); font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow span { display: inline-block; width: 26px; height: 1px; margin: 0 10px 3px; background: currentColor; }
.eyebrow.dark { color: #86603d; }
.hero h1, .section-heading h2, .craft h2, .story h2 { margin: 0; font-family: var(--display); font-weight: 300; letter-spacing: -.055em; text-transform: uppercase; }
.hero h1 { font-size: clamp(74px, 8.2vw, 132px); line-height: .82; }
.hero h1 em, .craft h2 em { color: var(--copper-light); font-style: normal; }
.hero-lede { max-width: 570px; margin: 36px 0 0; color: rgba(255,255,255,.65); font-size: clamp(16px, 1.3vw, 19px); line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 34px; margin-top: 42px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 24px; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.button-primary { color: var(--ink); background: var(--acid); }
.button-primary:hover { background: #efff64; }
.text-link { padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.5); font-size: 13px; font-weight: 700; }

.hero-art { position: relative; z-index: 1; min-height: 680px; display: grid; place-items: center; padding: 105px 30px 30px 0; }
.hero-art svg { position: relative; z-index: 1; width: min(100%, 800px); filter: saturate(.88); animation: reveal 1.1s cubic-bezier(.2,.8,.2,1) both; }
.hero-glow { position: absolute; width: 58%; aspect-ratio: 1; border-radius: 50%; background: rgba(210,143,77,.15); filter: blur(70px); }
.art-label { position: absolute; z-index: 2; right: 8%; bottom: 9%; padding: 16px 20px; border-left: 2px solid var(--copper); background: rgba(8,8,9,.7); backdrop-filter: blur(12px); }
.art-label span, .art-label small { display: block; }
.art-label span { font-family: var(--display); font-size: 20px; text-transform: uppercase; }
.art-label small { margin-top: 4px; color: rgba(255,255,255,.54); font-size: 11px; letter-spacing: .08em; }
@keyframes reveal { from { opacity: 0; transform: translateY(28px) scale(.98); } to { opacity: 1; transform: none; } }

.spec-strip { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid var(--line); background: var(--white); }
.spec-strip p { margin: 0; padding: 27px clamp(18px, 3vw, 44px); border-right: 1px solid var(--line); color: #686762; font-size: 12px; }
.spec-strip p:last-child { border-right: 0; }
.spec-strip strong { margin-right: 5px; color: var(--ink); font-family: var(--display); font-size: 20px; font-weight: 500; }

.section-shell { padding: clamp(90px, 10vw, 150px) clamp(22px, 5vw, 84px); }
.section-heading { display: grid; grid-template-columns: 1fr minmax(260px, 420px); gap: 60px; align-items: end; max-width: 1500px; margin: 0 auto 70px; }
.section-heading h2, .craft h2 { font-size: clamp(52px, 6vw, 92px); line-height: .9; }
.section-heading > p { margin: 0; color: #6e6c67; font-size: 16px; line-height: 1.7; }

.product-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; max-width: 1500px; margin: 0 auto; }
.product-card { position: relative; grid-column: span 3; min-height: 600px; display: flex; flex-direction: column; overflow: hidden; padding: 24px; background: #e7e3db; }
.product-card.featured { background: #dcd7cc; }
.product-card.dark-card { color: var(--white); background: #111214; }
.product-card.brass-card { background: #d9c4a7; }
.product-index { position: absolute; z-index: 2; top: 20px; right: 20px; font: 700 11px/1 var(--body); opacity: .5; }
.product-visual { position: relative; height: 310px; flex: 0 0 auto; margin: -24px -24px 25px; overflow: hidden; background: linear-gradient(145deg, rgba(255,255,255,.56), rgba(255,255,255,.05)); }
.product-visual::after { content: ""; position: absolute; left: 15%; right: 15%; bottom: 14%; height: 13%; border-radius: 50%; background: rgba(0,0,0,.22); filter: blur(18px); }
.product-meta { display: flex; justify-content: space-between; color: #74716b; font-size: 10px; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.dark-card .product-meta { color: #8e8e91; }
.product-card h3 { margin: 13px 0 12px; font-family: var(--display); font-size: 34px; font-weight: 400; letter-spacing: -.04em; text-transform: uppercase; }
.product-card > p { margin: 0; color: #6c6963; font-size: 13px; line-height: 1.55; }
.dark-card > p { color: #8c8c90; }
.product-footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: auto; padding-top: 28px; border-top: 1px solid rgba(0,0,0,.14); }
.dark-card .product-footer { border-color: rgba(255,255,255,.14); }
.product-footer strong { font-size: 13px; }
.product-open { padding: 0; border: 0; border-bottom: 1px solid currentColor; background: none; color: inherit; font-size: 11px; font-weight: 750; cursor: pointer; }

.product-visual span { position: absolute; z-index: 1; display: block; }
.cymbal { top: 24%; width: 38%; height: 7%; border-radius: 50%; background: linear-gradient(90deg,#75512f,#e2b473,#76502e); box-shadow: 0 4px 0 #88603a; }
.cymbal-left { left: 4%; transform: rotate(-8deg); }.cymbal-right { right: 4%; transform: rotate(8deg); }
.drum { border: 4px solid #b27e4c; background: linear-gradient(90deg,#17171a,#494048,#151517); box-shadow: inset 0 7px #dedbd5, inset 0 -7px #aaa69f; }
.drum-kick { left: 33%; bottom: 12%; width: 35%; aspect-ratio: 1; border-radius: 50%; }
.drum-tom-a { left: 24%; top: 38%; width: 25%; height: 27%; border-radius: 6px; }.drum-tom-b { right: 23%; top: 36%; width: 25%; height: 29%; border-radius: 6px; }
.pad { width: 29%; aspect-ratio: 1.5; border: 5px solid #33363a; border-radius: 50%; background: #111315; box-shadow: inset 0 0 0 5px #787b7d; transform: rotateX(54deg); }
.pad-one { left: 10%; top: 29%; }.pad-two { left: 36%; top: 18%; }.pad-three { right: 8%; top: 32%; }.atlas-kick { left: 35%; bottom: 12%; width: 31%; aspect-ratio: 1; border: 7px solid #35383b; border-radius: 50%; background: #121416; box-shadow: inset 0 0 0 6px #858789; }
.pulse-ring { border: 4px solid #d7e35a; border-radius: 50%; box-shadow: 0 0 22px rgba(215,227,90,.3), inset 0 0 0 8px #1f2124; background: #0c0d0f; }
.ring-a { left: 8%; top: 28%; width: 31%; aspect-ratio: 1.45; }.ring-b { left: 35%; top: 16%; width: 32%; aspect-ratio: 1.45; }.ring-c { right: 5%; top: 31%; width: 31%; aspect-ratio: 1.45; }.pulse-module { left: 39%; bottom: 8%; width: 27%; height: 28%; border: 4px solid #373b3f; border-radius: 50%; background: #101214; box-shadow: inset 0 0 0 8px #22252a; }
.snare-shell { left: 12%; right: 12%; top: 29%; height: 43%; border: 6px solid #8b5e31; border-radius: 50% / 16%; background: linear-gradient(90deg,#7d4e25,#e7b873 30%,#a7733e 58%,#efd096 76%,#70441f); box-shadow: inset 0 14px rgba(255,255,255,.38), inset 0 -13px rgba(55,30,10,.36), 0 18px 0 -10px #5b3c21; }

.craft { display: grid; grid-template-columns: 1fr 1fr; min-height: 720px; background: var(--ink); color: var(--white); }
.craft-copy { padding: clamp(90px, 9vw, 150px) clamp(24px, 7vw, 110px); background: radial-gradient(circle at 20% 80%, rgba(193,126,67,.18), transparent 35%); }
.craft-copy > p:last-child { max-width: 580px; margin: 42px 0 0; color: rgba(255,255,255,.54); font-size: 17px; line-height: 1.75; }
.craft-list { margin: 0; padding: 0; list-style: none; border-left: 1px solid rgba(255,255,255,.14); }
.craft-list li { min-height: 33.333%; display: grid; grid-template-columns: 70px 1fr; align-items: center; gap: 18px; padding: 40px clamp(25px, 6vw, 90px); border-bottom: 1px solid rgba(255,255,255,.14); }
.craft-list > li > span { color: var(--copper-light); font: 700 11px/1 var(--body); }
.craft-list h3 { margin: 0 0 8px; font-family: var(--display); font-size: 34px; font-weight: 400; text-transform: uppercase; }
.craft-list p { max-width: 420px; margin: 0; color: rgba(255,255,255,.48); font-size: 14px; line-height: 1.6; }

.story { background: var(--white); }
.story-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 8vw; max-width: 1500px; margin: 0 auto; }
.story h2 { font-size: clamp(52px, 6vw, 94px); line-height: .92; }
.story-grid > div { align-self: end; }
.story-grid p { margin: 0; color: #56544f; font-size: 17px; line-height: 1.75; }
.story-grid .availability { margin-top: 34px; padding-top: 24px; border-top: 1px solid var(--line); color: #86603d; font-size: 13px; font-weight: 700; }

.site-footer { min-height: 150px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; padding: 35px clamp(22px, 5vw, 84px); background: var(--ink); color: var(--white); }
.site-footer > p { margin: 0; color: rgba(255,255,255,.5); font-size: 12px; }
.site-footer > p:nth-child(2) { justify-self: center; }
.footer-note { justify-self: end; }

.product-dialog { width: min(560px, calc(100vw - 32px)); padding: 42px; border: 0; color: var(--ink); background: var(--paper); box-shadow: 0 30px 100px rgba(0,0,0,.45); }
.product-dialog::backdrop { background: rgba(5,5,6,.75); backdrop-filter: blur(8px); }
.product-dialog h2 { margin: 0 0 20px; font-family: var(--display); font-size: 54px; font-weight: 400; letter-spacing: -.04em; text-transform: uppercase; }
.dialog-close { position: absolute; top: 12px; right: 16px; border: 0; background: none; font-size: 30px; cursor: pointer; }
.dialog-note { color: #5f5d58; line-height: 1.7; }
.dialog-footer { display: flex; justify-content: space-between; gap: 20px; margin-top: 35px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 12px; }
.dialog-footer span { color: #86603d; font-weight: 700; }

@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; }
  .hero-copy { padding-bottom: 10px; }
  .hero-art { min-height: 560px; padding: 0 5vw 30px; }
  .product-card { grid-column: span 6; }
}

@media (max-width: 760px) {
  .site-header { grid-template-columns: 1fr auto; min-height: 76px; padding: 0 20px; }
  .brand-mark { width: 34px; height: 34px; }.brand-name { font-size: 12px; }
  .menu-toggle { display: block; justify-self: end; }
  .header-cta { display: none; }
  .main-nav { position: absolute; left: 0; right: 0; top: 76px; display: none; flex-direction: column; gap: 0; padding: 12px 20px 22px; background: #0b0b0c; border-bottom: 1px solid rgba(255,255,255,.15); }
  .main-nav.open { display: flex; }.main-nav a { padding: 14px 0; }
  .hero { min-height: 900px; }
  .hero-copy { padding: 125px 22px 0; }
  .hero h1 { font-size: clamp(66px, 21vw, 92px); }
  .hero-lede { font-size: 15px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-art { min-height: 440px; padding: 0; transform: scale(1.08); }
  .art-label { right: 18px; bottom: 24px; }
  .spec-strip { grid-template-columns: 1fr 1fr; }
  .spec-strip p { border-bottom: 1px solid var(--line); }
  .section-heading, .story-grid, .craft { grid-template-columns: 1fr; }
  .section-heading { gap: 28px; margin-bottom: 48px; }
  .product-card { grid-column: 1 / -1; min-height: 560px; }
  .craft-list { border-left: 0; border-top: 1px solid rgba(255,255,255,.14); }
  .craft-list li { min-height: 220px; padding: 40px 24px; }
  .story-grid { gap: 36px; }
  .site-footer { grid-template-columns: 1fr; text-align: left; }
  .site-footer > p:nth-child(2), .footer-note { justify-self: start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
