/* MW SOUND LLC — hybrid: Apple-grade foundation, console soul. */

:root {
  --bg: #0b0b0c;
  --panel: #141416;
  --panel2: #191920;
  --ink: #f4efe4;
  --ink-dim: rgba(244, 239, 228, 0.66);
  --ink-faint: rgba(244, 239, 228, 0.42);
  --gold: #c9a24b;
  --gold-bright: #e9c46a;
  --gold-deep: #8a6a24;
  --gold-soft: rgba(201, 162, 75, 0.12);
  --line: rgba(255, 255, 255, 0.09);
  --display: "Playfair Display", Georgia, "Times New Roman", serif;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
  overflow-x: hidden;
}
::selection { background: var(--gold); color: #000; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* ---------- header: fixed, blurred ---------- */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  height: 56px;
  background: rgba(11, 11, 12, 0.72);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
}
.site-header .bar {
  max-width: 1120px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand img { width: 26px; height: 26px; }
.brand-text { font-size: 13px; font-weight: 600; letter-spacing: 0.16em; }
.brand-text em { font-style: normal; color: var(--gold); }
.site-nav { display: flex; align-items: center; gap: 32px; }
.site-nav a {
  color: var(--ink);
  opacity: 0.75;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: opacity 0.25s ease;
}
.site-nav a:hover { opacity: 1; }
.nav-cta {
  background: var(--gold);
  color: #000 !important;
  opacity: 1 !important;
  font-weight: 600 !important;
  padding: 8px 18px;
  border-radius: 980px;
}
.nav-cta:hover { background: var(--gold-bright); }

/* ---------- hero ---------- */

.hero {
  text-align: center;
  padding: 168px 24px 110px;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 45% at 50% 22%, rgba(201, 162, 75, 0.10), transparent 70%);
  pointer-events: none;
}
.hero-brand {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(56px, 10vw, 138px);
  letter-spacing: 0.005em;
  line-height: 1.02;
  margin: 0;
  color: var(--ink);
  position: relative;
  text-wrap: balance;
}
.hero-sub {
  margin: 20px 0 0;
  font-size: clamp(17px, 2.2vw, 23px);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
  position: relative;
}
.lede {
  margin: 26px auto 0;
  max-width: 620px;
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-dim);
  position: relative;
}
.hero-cta {
  margin-top: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  padding: 15px 36px;
  border-radius: 980px;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.btn-primary { background: linear-gradient(180deg, var(--gold-bright), var(--gold)); color: #0b0b0c; font-weight: 600; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(201, 162, 75, 0.35); }
.btn-sm { font-size: 15px; padding: 11px 26px; }
.more-link {
  color: var(--gold);
  text-decoration: none;
  font-size: 19px;
  font-weight: 500;
}
.more-link:hover { text-decoration: underline; }
.more-link .chev { display: inline-block; transition: transform 0.25s ease; }
.more-link:hover .chev { transform: translateX(4px); }

/* ---------- sections ---------- */

.section { padding: 130px 24px; }
.wrap { max-width: 1120px; margin: 0 auto; }
.eyebrow {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.sec-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(40px, 5.6vw, 76px);
  letter-spacing: 0.005em;
  line-height: 1.04;
  margin: 18px 0 0;
  text-wrap: balance;
}
.sec-lede {
  margin: 22px auto 0;
  max-width: 640px;
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-dim);
}
.center { text-align: center; }

/* ---------- services: pro list ---------- */

.svc-list {
  list-style: none;
  padding: 0;
  margin: 64px 0 0;
  border-top: 1px solid var(--line);
}
.svc-list li {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 24px;
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.svc-num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold);
}
.svc-body h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 44px);
  letter-spacing: 0.005em;
  margin: 0;
  line-height: 1.04;
}
.svc-body p {
  margin: 14px 0 0;
  max-width: 580px;
  color: var(--ink-dim);
  font-size: 17px;
  line-height: 1.65;
}

/* ---------- credits: pro list ---------- */

.credit-list {
  list-style: none;
  padding: 0;
  margin: 64px 0 0;
  border-top: 1px solid var(--line);
}
.credit-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.c-name {
  font-size: clamp(24px, 3.4vw, 40px);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.c-role {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

/* ---------- about ---------- */

.about-panel {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(36px, 5vw, 72px);
}
.about-panel figure { margin: 0; }
.about-panel img { border-radius: 20px; }
.about-panel figcaption { margin-top: 14px; font-size: 13px; color: var(--ink-faint); letter-spacing: 0.04em; }
.about-panel h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.06;
  letter-spacing: 0.005em;
  margin: 16px 0 0;
  text-wrap: balance;
}
.about-panel p.body { color: var(--ink-dim); font-size: 17.5px; line-height: 1.7; margin: 22px 0 0; }
.checklist {
  list-style: none;
  padding: 0;
  margin: 34px 0 0;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.checklist li {
  border: 1px solid rgba(201, 162, 75, 0.35);
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gold-soft);
}
.about-cta { display: flex; gap: 28px; align-items: center; flex-wrap: wrap; margin-top: 38px; }

/* ---------- closing ---------- */

.closing {
  text-align: center;
  padding: 150px 24px 140px;
  position: relative;
}
.closing::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 60%, rgba(201, 162, 75, 0.09), transparent 70%);
  pointer-events: none;
}
.closing .sec-title {
  font-size: clamp(56px, 9vw, 120px);
  background: linear-gradient(180deg, #fffdf6 30%, var(--gold-bright) 78%, var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  position: relative;
}
.closing .sec-lede { position: relative; }
.email-link {
  display: inline-block;
  margin-top: 48px;
  font-size: clamp(22px, 3.4vw, 34px);
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  word-break: break-all;
  position: relative;
}
.email-link:hover { color: var(--gold-bright); }
.follow-line { margin: 32px 0 0; font-size: 15px; color: var(--ink-dim); position: relative; }
.follow-line a { color: var(--gold); text-decoration: none; font-weight: 600; }
.follow-line a:hover { text-decoration: underline; }

/* ---------- footer: tiny ---------- */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 40px 24px 48px;
  text-align: center;
  font-size: 12.5px;
  color: var(--ink-faint);
}
.footer-lockup { width: 130px; margin: 0 auto 20px; opacity: 0.92; }
.site-footer nav { margin-bottom: 14px; display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.site-footer nav a { text-decoration: none; color: var(--ink-dim); }
.site-footer nav a:hover { text-decoration: underline; }
.site-footer nav span { opacity: 0.4; }
.copyright { margin: 0; }

/* ---------- sticky CTA ---------- */

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translate(-50%, 90px);
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(20, 20, 22, 0.88);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(201, 162, 75, 0.35);
  border-radius: 999px;
  padding: 10px 12px 10px 26px;
  font-size: 14.5px;
  font-weight: 500;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  max-width: calc(100vw - 32px);
}
.sticky-cta.show { transform: translate(-50%, 0); }

/* ---------- legal / send pages ---------- */

.legal { max-width: 760px; margin: 0 auto; padding: 150px 24px 110px; }
.legal h1 { font-family: var(--display); font-weight: 500; font-size: clamp(36px, 5vw, 58px); letter-spacing: 0.005em; line-height: 1.05; margin: 0 0 8px; }
.legal .updated { color: var(--ink-faint); font-size: 14px; margin-bottom: 40px; }
.legal h2 { font-size: 22px; font-weight: 700; letter-spacing: -0.01em; margin: 44px 0 12px; }
.legal p, .legal li { font-size: 16.5px; line-height: 1.7; color: var(--ink-dim); }
.legal ul { padding-left: 22px; }
.legal a { color: var(--gold); }
.stems-spec {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px 38px;
  margin: 36px 0;
}
.stems-spec h2 { margin-top: 0; }
.steps { counter-reset: step; list-style: none; padding: 0; margin: 30px 0; }
.steps li {
  counter-increment: step;
  position: relative;
  padding: 0 0 28px 54px;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink-dim);
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0; top: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--gold);
  color: #0b0b0c;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* shared with send page */
.kicker {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.page-lede, .lede {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-dim);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- reveal ---------- */

.rv {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.rv.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */

@media (max-width: 900px) {
  .svc-list li { grid-template-columns: 1fr; gap: 10px; padding: 32px 0; }
  .credit-list li { padding: 20px 0; }
  .about-panel { grid-template-columns: 1fr; }
  .section { padding: 92px 20px; }
  .hero { padding: 140px 20px 88px; }
  .closing { padding: 110px 20px 100px; }
  .site-nav a:not(.nav-cta) { display: none; }
  .sticky-cta span { display: none; }
  .sticky-cta { padding: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rv { opacity: 1; transform: none; transition: none; }
  .more-link .chev { transition: none; }
}
