/* ── IMPORTS ────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

/* ── VARIABLES ──────────────────────────────── */
:root {
  --bg:     #f4f1ec;
  --ink:    #1a1a18;
  --mid:    #7a7570;
  --rule:   #ddd9d2;
  --serif:  'Syne', sans-serif;
  --sans:   'DM Sans', sans-serif;
}

/* ── RESET ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--sans); }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── GRAIN OVERLAY ──────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.028;
  pointer-events: none;
  z-index: 9999;
}

/* ── NAV ────────────────────────────────────── */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 52px;
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 100;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mid);
  transition: color 0.15s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--ink); }
.nav-cta {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 9px 20px;
  background: var(--ink);
  color: var(--bg);
  border: none;
  font-weight: 500;
  flex-shrink: 0;
  transition: opacity 0.15s;
}
.nav-cta:hover { opacity: 0.8; }

/* Hamburger (mobile) */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.2s, opacity 0.2s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── SHARED COMPONENTS ──────────────────────── */
.section-label {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 400;
}
.section-title {
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
}
.arrow-line {
  width: 28px;
  height: 1px;
  background: var(--ink);
  position: relative;
  flex-shrink: 0;
}
.arrow-line::after {
  content: '';
  position: absolute;
  right: 0; top: -3px;
  width: 6px; height: 6px;
  border-right: 1px solid var(--ink);
  border-top: 1px solid var(--ink);
  transform: rotate(45deg);
}

.btn-ink {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 28px;
  background: var(--ink);
  color: var(--bg);
  border: none;
  font-weight: 500;
  transition: opacity 0.15s;
  display: inline-block;
}
.btn-ink:hover { opacity: 0.8; }

.btn-ghost {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid);
  background: none;
  border: none;
  font-weight: 400;
  transition: color 0.15s;
}
.btn-ghost:hover { color: var(--ink); }

/* ── TICKER ─────────────────────────────────── */
.ticker {
  overflow: hidden;
  white-space: nowrap;
  background: var(--ink);
  border-top: 1px solid #2a2a28;
  border-bottom: 1px solid #2a2a28;
  padding: 13px 0;
}
.ticker-inner {
  display: inline-flex;
  animation: ticker 24s linear infinite;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 22px;
  font-family: var(--serif);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.ticker-item .dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  flex-shrink: 0;
}

/* ── HERO ───────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 520px;
  border-bottom: 1px solid var(--rule);
}
.hero-left {
  padding: 64px 52px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--rule);
  gap: 32px;
}
.hero-tag {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--mid);
}
.hero-headline {
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -1.5px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.hero-headline .dim {
  font-weight: 400;
  color: var(--mid);
}
.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}
.hero-desc {
  font-size: 13px;
  line-height: 1.75;
  color: var(--mid);
  font-style: italic;
  max-width: 300px;
}
.hero-photo {
  position: relative;
  overflow: hidden;
  background: #c5bfb5;
  min-height: 520px;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-photo-placeholder {
  width: 100%;
  height: 100%;
  min-height: 520px;
  background: linear-gradient(160deg, #bfbab1 0%, #a8a39a 50%, #928d85 100%);
  display: flex;
  align-items: flex-end;
  padding: 28px;
}
.photo-label {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ── CREDITS STRIP ──────────────────────────── */
.credits-strip {
  display: flex;
  border-bottom: 1px solid var(--rule);
}
.credit-item {
  flex: 1;
  padding: 24px 32px;
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.credit-item:last-child { border-right: none; }
.credit-val {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.2px;
}

/* ── SERVICES SECTION ───────────────────────── */
.services-section {
  border-bottom: 1px solid var(--rule);
}
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 52px;
  border-bottom: 1px solid var(--rule);
}
.services-rows {
  padding: 0 52px;
}
.svc-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 32px;
  padding: 26px 0;
  border-bottom: 1px solid var(--rule);
  transition: opacity 0.15s;
}
.svc-row:last-child { border-bottom: none; }
.svc-row:hover { opacity: 0.6; }
.svc-name {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1;
}
.svc-tag {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mid);
  margin-top: 4px;
}
.svc-price {
  font-size: 12px;
  color: var(--mid);
  letter-spacing: 1px;
  white-space: nowrap;
}
.svc-arrow {
  font-size: 16px;
  color: var(--rule);
  transition: color 0.15s;
}
.svc-row:hover .svc-arrow { color: var(--ink); }

/* ── ABOUT SNIPPET ──────────────────────────── */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--rule);
}
.about-left {
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  border-right: 1px solid var(--rule);
}
.about-quote {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.3;
}
.about-quote strong { font-weight: 700; }
.about-bio {
  font-size: 13px;
  line-height: 1.8;
  color: var(--mid);
}
.about-right {
  display: flex;
  flex-direction: column;
}
.about-photo {
  flex: 1;
  background: #bbb6ae;
  min-height: 200px;
  position: relative;
  overflow: hidden;
}
.about-photo + .about-photo {
  border-top: 1px solid var(--rule);
}
.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-photo-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #c2bdb4, #a0998f);
  display: flex;
  align-items: flex-end;
  padding: 18px 24px;
  min-height: 200px;
}

/* ── AUDIO SECTION ──────────────────────────── */
.audio-section {
  padding: 48px 52px;
  border-bottom: 1px solid var(--rule);
}
.audio-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 24px;
}
.audio-header a {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mid);
  transition: color 0.15s;
}
.audio-header a:hover { color: var(--ink); }
.audio-tracks {
  display: flex;
  flex-direction: column;
}
.track-row {
  display: grid;
  grid-template-columns: 32px 1fr 100px 32px;
  align-items: center;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  cursor: pointer;
  transition: opacity 0.15s;
}
.track-row:last-child { border-bottom: none; }
.track-row:hover { opacity: 0.6; }
.track-num {
  font-family: var(--serif);
  font-size: 10px;
  font-weight: 700;
  color: var(--mid);
}
.track-title {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.2px;
}
.track-type {
  font-size: 11px;
  color: var(--mid);
  font-weight: 300;
  margin-left: 8px;
  font-family: var(--sans);
}
.track-bar {
  height: 2px;
  background: var(--rule);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.track-bar-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  background: var(--ink);
  border-radius: 2px;
}
.track-play {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  color: var(--mid);
  transition: border-color 0.15s, color 0.15s;
}
.track-play:hover { border-color: var(--ink); color: var(--ink); }
.track-play::after { content: '▶'; }

/* embed wrapper (Work page) */
.embed-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: var(--rule);
}
.embed-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ── CTA SECTION ────────────────────────────── */
.cta-section {
  padding: 72px 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  border-bottom: 1px solid var(--rule);
}
.cta-headline {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 0.95;
}
.cta-headline .dim {
  color: var(--mid);
  font-weight: 400;
}
.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  flex-shrink: 0;
}

/* ── PAGE HERO (inner pages) ────────────────── */
.page-hero {
  padding: 64px 52px 48px;
  border-bottom: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.page-hero-headline {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 0.92;
}
.page-hero-headline .dim {
  color: var(--mid);
  font-weight: 400;
}
.page-hero-sub {
  font-size: 13px;
  color: var(--mid);
  max-width: 480px;
  line-height: 1.75;
}

/* ── SERVICES PAGE ──────────────────────────── */
.services-full {
  padding: 0 52px;
  border-bottom: 1px solid var(--rule);
}
.svc-block {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0;
  border-bottom: 1px solid var(--rule);
  padding: 48px 0;
  scroll-margin-top: 80px;
}
.svc-block:last-child { border-bottom: none; }
.svc-block-left {
  padding-right: 48px;
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.svc-block-name {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1.1;
}
.svc-block-desc {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.75;
}
.svc-block-right {
  padding-left: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
}
.price-row:last-child { border-bottom: none; }
.price-tier {
  font-size: 13px;
  font-weight: 500;
}
.price-tier-sub {
  font-size: 11px;
  color: var(--mid);
  margin-top: 2px;
}
.price-val {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.2px;
}
.price-badge {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  background: var(--ink);
  color: var(--bg);
  font-weight: 500;
  margin-left: 8px;
  vertical-align: middle;
}

/* ── WORK PAGE ──────────────────────────────── */
.work-grid {
  padding: 48px 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  border-bottom: 1px solid var(--rule);
}
.work-item {}
.work-item-label {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 12px;
}
.work-item-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}
.beat-store-cta {
  padding: 48px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--ink);
  color: var(--bg);
}
.beat-store-cta .cta-headline { color: var(--bg); }
.beat-store-cta .cta-headline .dim { color: rgba(255,255,255,0.4); }
.btn-bg {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 28px;
  background: var(--bg);
  color: var(--ink);
  border: none;
  font-weight: 500;
  white-space: nowrap;
  transition: opacity 0.15s;
}
.btn-bg:hover { opacity: 0.85; }

/* ── ABOUT PAGE ─────────────────────────────── */
.about-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--rule);
}
.about-full-left {
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  border-right: 1px solid var(--rule);
}
.about-full-left p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--mid);
}
.about-full-left p strong {
  color: var(--ink);
  font-weight: 500;
}
.about-stats {
  display: flex;
  gap: 40px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}
.stat-val {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 700;
  display: block;
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.5px;
}
.stat-label {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid);
}
.about-full-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.about-photo-grid-item {
  overflow: hidden;
  position: relative;
  min-height: 280px;
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
}
.about-photo-grid-item:nth-child(even) { border-right: none; }
.about-photo-grid-item:nth-last-child(-n+2) { border-bottom: none; }
.about-photo-grid-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.about-photo-grid-item:hover img { transform: scale(1.03); }

/* ── CONTACT PAGE ───────────────────────────── */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--rule);
}
.contact-left {
  padding: 56px 52px;
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
}
.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-info-label {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mid);
}
.contact-info-val {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
}
.contact-social {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.contact-social a {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 2px;
  transition: color 0.15s, border-color 0.15s;
}
.contact-social a:hover { color: var(--ink); border-color: var(--ink); }
.contact-service-redirect {
  padding: 24px;
  border: 1px solid var(--rule);
  background: transparent;
}
.contact-redirect-label {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}
.contact-redirect-sub {
  font-size: 12px;
  color: var(--mid);
  line-height: 1.6;
}
.contact-right {
  padding: 56px 52px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-group label {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--mid);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule);
  padding: 10px 0;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--ink); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; }
.form-honeypot { display: none; }
.form-submit {
  margin-top: 8px;
}

/* ── REQUEST PAGE ───────────────────────────── */
.req-tabs {
  display: flex;
  border-bottom: 1px solid var(--rule);
}
.req-tab {
  padding: 18px 40px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--mid);
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
  margin-bottom: -1px;
  font-family: var(--sans);
}
.req-tab:hover { color: var(--ink); }
.req-tab.active { color: var(--ink); border-bottom-color: var(--ink); }

.req-section { display: none; }
.req-section.active { display: block; }

.req-beatstars-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px 52px;
  background: var(--ink);
  color: var(--bg);
  border-bottom: 1px solid #2a2a28;
}
.req-beatstars-label {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}
.req-beatstars-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.req-beatstars-banner .btn-ink {
  background: var(--bg);
  color: var(--ink);
  white-space: nowrap;
  flex-shrink: 0;
}

.req-form {
  padding: 48px 52px;
}
.req-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 64px;
}
.req-col {
  padding-bottom: 40px;
}
.req-form-heading {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
}

.form-check-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 4px;
}
.form-check-group--row {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 6px;
}
.form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--mid);
  cursor: pointer;
  padding: 9px 14px;
  border: 1px solid var(--rule);
  background: transparent;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
  user-select: none;
  letter-spacing: 0.3px;
}
.form-check:hover { border-color: var(--ink); color: var(--ink); }
.form-check input[type="radio"],
.form-check input[type="checkbox"] {
  display: none;
}
.form-check::before {
  content: '';
  width: 10px;
  height: 10px;
  border: 1.5px solid currentColor;
  border-radius: 2px;
  flex-shrink: 0;
  transition: background 0.15s, border-color 0.15s;
}
.form-check:has(input[type="radio"])::before { border-radius: 50%; }
.form-check:has(input:checked) {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--bg);
}
.form-check:has(input:checked)::before {
  background: var(--bg);
  border-color: var(--bg);
}

.req-submit {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  margin-top: 8px;
}
.req-submit-note {
  font-size: 12px;
  color: var(--mid);
  font-style: italic;
}

.req-rights-note {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  background: rgba(26,26,24,0.04);
  border-left: 2px solid var(--ink);
}
.req-rights-note p {
  font-size: 12px;
  line-height: 1.7;
  color: var(--mid);
}
.req-rights-note strong { color: var(--ink); font-weight: 500; }

/* ── FOOTER ─────────────────────────────────── */
.footer {
  border-top: 1px solid var(--rule);
  padding: 22px 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.footer-name {
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid);
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mid);
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--ink); }
.footer-copy {
  font-size: 10px;
  color: var(--rule);
  letter-spacing: 1px;
}

/* ── LANGUAGE SWITCHER (footer) ─────────────── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
}
.lang-select {
  background: none;
  border: 1px solid var(--rule);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid);
  cursor: pointer;
  padding: 4px 8px;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='5' viewBox='0 0 8 5'%3E%3Cpath d='M0 0l4 5 4-5z' fill='%237a7570'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 6px center;
  transition: color 0.15s, border-color 0.15s;
}
.lang-select:hover {
  color: var(--ink);
  border-color: var(--ink);
}

/* ── LANGUAGE POPUP ─────────────────────────── */
.lang-popup {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(26, 26, 24, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
  backdrop-filter: blur(2px);
}
.lang-popup.visible {
  opacity: 1;
  pointer-events: all;
}
.lang-popup-inner {
  background: var(--bg);
  border: 1px solid var(--rule);
  padding: 52px 48px 48px;
  max-width: 420px;
  width: 90%;
  text-align: center;
}
.lang-popup-label {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 16px;
}
.lang-popup-name {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 36px;
}
.lang-popup-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lang-popup-btn {
  display: block;
  width: 100%;
  padding: 14px 24px;
  background: var(--ink);
  color: var(--bg);
  border: 1px solid var(--ink);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.lang-popup-btn:hover {
  background: transparent;
  color: var(--ink);
}
.lang-popup-btn.secondary {
  background: transparent;
  color: var(--ink);
}
.lang-popup-btn.secondary:hover {
  background: var(--ink);
  color: var(--bg);
}

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 768px) {

  /* ── Nav ── */
  .nav { padding: 18px 24px; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--rule);
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 24px; border-bottom: 1px solid var(--rule); }
  .nav-links a:last-child { border-bottom: none; }
  .nav-burger { display: flex; }
  .nav-cta { display: none; }

  /* ── Hero ── */
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 40px 24px; border-right: none; border-bottom: 1px solid var(--rule); }
  .hero-headline { font-size: 48px; }
  .hero-photo { min-height: 300px; }
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 20px; }

  /* ── Credits strip ── */
  .credits-strip { flex-wrap: wrap; }
  .credit-item { flex: 0 0 50%; border-bottom: 1px solid var(--rule); }
  .credit-item:nth-child(even) { border-right: none; }
  /* 5th item spans full width so it doesn't hang alone */
  .credit-item:last-child:nth-child(odd) { flex: 0 0 100%; border-right: none; }

  /* ── Services (home preview) ── */
  .services-header { padding: 20px 24px; }
  .services-rows { padding: 0 24px; }
  .svc-name { font-size: 22px; }
  .svc-row { gap: 12px; }

  /* ── About snippet ── */
  .about-section { grid-template-columns: 1fr; }
  .about-left { padding: 40px 24px; border-right: none; border-bottom: 1px solid var(--rule); }
  .about-right { flex-direction: row; }
  .about-photo { min-height: 180px; }
  .about-photo + .about-photo { border-top: none; border-left: 1px solid var(--rule); }

  /* ── Audio (home) ── */
  .audio-section { padding: 36px 24px; }
  .audio-section > div[style*="grid-template-columns"] { grid-template-columns: 1fr !important; gap: 20px !important; }

  /* ── CTA ── */
  .cta-section { padding: 48px 24px; flex-direction: column; align-items: flex-start; gap: 28px; }
  .cta-headline { font-size: 38px; }
  .cta-actions { align-items: flex-start; }

  /* ── Page hero (inner pages) ── */
  .page-hero { padding: 36px 24px 28px; }
  .page-hero-headline { font-size: 40px; }

  /* ── Services page ── */
  .services-full { padding: 0 24px; }
  .svc-block { grid-template-columns: 1fr; padding: 32px 0; }
  .svc-block-left { padding-right: 0; border-right: none; border-bottom: 1px solid var(--rule); padding-bottom: 24px; }
  .svc-block-right { padding-left: 0; padding-top: 24px; }

  /* ── Work page ── */
  .work-grid { padding: 32px 24px; grid-template-columns: 1fr; }
  .beat-store-cta { padding: 36px 24px; flex-direction: column; align-items: flex-start; gap: 20px; }
  .beat-store-cta .cta-headline { font-size: 32px; }
  .work-video-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
  /* inline-padded section wrappers on work.html */
  .work-section-pad { padding: 28px 24px !important; }

  /* ── About page ── */
  .about-full { grid-template-columns: 1fr; }
  .about-full-left { padding: 40px 24px; border-right: none; border-bottom: 1px solid var(--rule); }
  .about-full-right { grid-template-columns: 1fr 1fr; }
  .about-photo-grid-item { min-height: 180px; }
  .about-stats { flex-wrap: wrap; gap: 20px; padding-top: 12px; }
  .stat-val { font-size: 28px; }

  /* ── Contact page ── */
  .contact-section { grid-template-columns: 1fr; }
  .contact-left { padding: 36px 24px; border-right: none; border-bottom: 1px solid var(--rule); }
  .contact-right { padding: 36px 24px; }

  /* ── Footer ── */
  .footer { flex-direction: column; align-items: flex-start; padding: 24px; gap: 16px; }
  .footer-links { flex-wrap: wrap; gap: 12px; }
  .footer-copy { display: none; }

  /* ── Request page ── */
  .req-tabs { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .req-tab { padding: 16px 20px; white-space: nowrap; font-size: 10px; }
  .req-form { padding: 32px 24px; }
  .req-form-grid { grid-template-columns: 1fr; }
  .req-beatstars-banner { padding: 24px; flex-direction: column; align-items: flex-start; gap: 16px; }
  .req-submit { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ── Extra-small screens (≤ 480px) ── */
@media (max-width: 480px) {
  .hero-headline { font-size: 40px; }
  .page-hero-headline { font-size: 34px; }
  .cta-headline { font-size: 32px; }
  .beat-store-cta .cta-headline { font-size: 28px; }
  .about-quote { font-size: 22px; }
  .svc-name { font-size: 20px; }
  .about-stats { gap: 16px; }
  /* stack credits to single column on very small screens */
  .credit-item { flex: 0 0 100% !important; border-right: none; }
}
