/* =========================================================
   brendandekora.com — Design system
   DESIGN.md contract applied
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@200;300;400&family=Barlow:wght@300;400;500&display=swap');

/* ---------------------------------------------------------
   Custom properties
--------------------------------------------------------- */
:root {
  --bg:         #000000;
  --surface:    #0d0d0d;
  --text:       #f0ede8;
  --muted:      #888880;
  --accent:     #c8a96e;
  --divider:    rgba(255,255,255,0.08);
  --overlay:    rgba(0,0,0,0.55);

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;

  --max-w: 1200px;
  --pad-x: clamp(24px, 5vw, 80px);
}

/* ---------------------------------------------------------
   Reset & base
--------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ---------------------------------------------------------
   Typography utilities
--------------------------------------------------------- */
.label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.display {
  font-family: var(--font-display);
  font-weight: 200;
  letter-spacing: -0.01em;
  line-height: 0.95;
}

.section-heading {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -0.01em;
  line-height: 1.05;
}

/* ---------------------------------------------------------
   Layout helpers
--------------------------------------------------------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.divider {
  border: none;
  border-top: 1px solid var(--divider);
}

/* ---------------------------------------------------------
   Navigation
--------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 28px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, padding 0.4s ease;
}

.nav.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  padding: 18px var(--pad-x);
  border-bottom: 1px solid var(--divider);
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--accent); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile nav overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.nav-overlay.open { display: flex; }

.nav-overlay a {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(36px, 8vw, 56px);
  letter-spacing: -0.01em;
  color: var(--text);
  transition: color 0.2s;
}

.nav-overlay a:hover { color: var(--accent); }

/* ---------------------------------------------------------
   Hero
--------------------------------------------------------- */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg img {
  height: 82vh;
  width: auto;
  max-width: 55%;
  object-fit: contain;
  display: block;
  opacity: 0;
  transition: opacity 1s ease 0.2s;
}

.hero-bg img.loaded { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, #000 0%, transparent 18%, transparent 82%, #000 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, transparent 30%, transparent 60%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
}

.hero-content {
  position: absolute;
  bottom: clamp(48px, 8vh, 80px);
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  text-align: center;
  opacity: 0;
  transition: opacity 0.9s ease 0.2s, transform 0.9s ease 0.2s;
  width: 90%;
  max-width: 700px;
}

.hero-content.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.hero-credential {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(14px, 1.3vw, 17px);
  color: var(--text);
  line-height: 1.6;
  margin-top: 22px;
}

.hero-name {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(64px, 10vw, 136px);
  letter-spacing: -0.02em;
  line-height: 0.92;
  color: var(--text);
  margin-bottom: 18px;
}

.hero-tagline {
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
}

.hero-scroll {
  position: absolute;
  bottom: clamp(48px, 8vh, 80px);
  right: var(--pad-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.8s ease 1.2s;
}

.hero-scroll.visible { opacity: 1; }

.hero-scroll span {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: var(--accent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------------------------------------------------------
   Sections — shared
--------------------------------------------------------- */
.section {
  padding: clamp(72px, 10vw, 140px) var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
}

/* Fade-in on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------------------------------------------------
   Label logos strip
--------------------------------------------------------- */
.logos-section {
  padding: clamp(40px, 5vw, 64px) var(--pad-x);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}

.logos-row {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: clamp(24px, 4vw, 48px);
}

.logos-row img {
  height: clamp(40px, 5vw, 64px);
  width: auto;
  max-width: 200px;
  opacity: 0.85;
  transition: opacity 0.3s;
}

.logos-row img:hover { opacity: 1; }

/* ---------------------------------------------------------
   About section
--------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.about-left .section-number {
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: 200;
  color: var(--divider);
  line-height: 1;
  margin-bottom: -20px;
  user-select: none;
}

.about-photo {
  margin-top: 32px;
  position: relative;
}

.about-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: contrast(1.05) brightness(0.92);
}

.about-right p {
  color: rgba(240,237,232,0.95);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.8;
  margin-bottom: 28px;
}

.about-right p:last-child { margin-bottom: 0; }

/* ---------------------------------------------------------
   Production / Mixing
--------------------------------------------------------- */
.services-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.services-panel {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  display: block;
  cursor: pointer;
}

.services-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.services-panel:hover img { transform: scale(1.03); }

.services-panel-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.6) 50%, transparent 100%);
}

.services-panel-content .label { margin-bottom: 12px; }

.services-panel-content h3 {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  margin-bottom: 14px;
}

.services-panel-content p {
  font-size: clamp(15px, 1.3vw, 17px);
  color: var(--text);
  line-height: 1.7;
  max-width: 380px;
}

/* ---------------------------------------------------------
   Availability
--------------------------------------------------------- */
.availability {
  padding: clamp(72px, 10vw, 140px) var(--pad-x);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}

.availability-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.availability-left .section-heading { margin-top: 8px; }

.availability-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 10px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

.availability-right p {
  font-size: clamp(17px, 1.5vw, 20px);
  color: rgba(240,237,232,0.95);
  line-height: 1.8;
  margin-bottom: 32px;
}

.north-stars {
  list-style: none;
}

.north-stars li {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(18px, 1.8vw, 24px);
  color: var(--muted);
  padding: 9px 0;
  border-bottom: 1px solid var(--divider);
  letter-spacing: -0.01em;
  transition: color 0.2s;
}

.north-stars li:hover { color: var(--text); }

.north-stars--cols {
  columns: 2;
  column-gap: clamp(24px, 4vw, 56px);
}

.north-stars--cols li {
  break-inside: avoid;
}

/* ---------------------------------------------------------
   Grammy / award callout
--------------------------------------------------------- */
.grammy-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(72px, 10vw, 140px) var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.grammy-image {
  position: relative;
}

.grammy-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: #000;
  mix-blend-mode: lighten;
}

.grammy-text .label { margin-bottom: 20px; }

.grammy-text h2 {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.grammy-text p {
  font-size: clamp(17px, 1.5vw, 20px);
  color: rgba(240,237,232,0.95);
  line-height: 1.8;
  max-width: 520px;
}

/* ---------------------------------------------------------
   Testimonials
--------------------------------------------------------- */
.testimonials {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(72px, 10vw, 140px) var(--pad-x);
}

.testimonials-header {
  margin-bottom: 64px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.testimonial {
  padding-left: 24px;
  border-left: 2px solid var(--accent);
}

.testimonial blockquote {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 24px;
  font-style: normal;
}

.testimonial-credit .name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.04em;
}

.testimonial-credit .role {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

/* ---------------------------------------------------------
   Bio expand
--------------------------------------------------------- */
.bio-section {
  border-top: 1px solid var(--divider);
  padding: clamp(60px, 8vw, 100px) var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
}

.bio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  cursor: pointer;
  gap: 24px;
}

.bio-header h2 {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.bio-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  flex-shrink: 0;
  margin-top: 8px;
  transition: color 0.2s;
}

.bio-toggle:hover { color: var(--text); }

.bio-toggle-icon {
  width: 28px;
  height: 28px;
  border: 1px solid var(--divider);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease, border-color 0.2s;
}

.bio-toggle-icon svg {
  transition: transform 0.4s ease;
}

.bio-section.open .bio-toggle-icon svg {
  transform: rotate(45deg);
}

.bio-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
}

.bio-blurb {
  margin-top: 28px;
  max-width: 720px;
}

.bio-blurb p {
  font-size: clamp(17px, 1.5vw, 20px);
  color: rgba(240,237,232,0.95);
  line-height: 1.8;
}

.bio-body-inner {
  padding-top: 40px;
  columns: 2;
  column-gap: clamp(40px, 5vw, 80px);
}

.bio-body-inner p {
  font-size: clamp(16px, 1.4vw, 18px);
  color: rgba(240,237,232,0.9);
  line-height: 1.8;
  margin-bottom: 20px;
  break-inside: avoid;
}

/* ---------------------------------------------------------
   Contact
--------------------------------------------------------- */
.booking-embed {
  border: 1px solid var(--divider);
  border-radius: 12px;
  overflow: hidden;
  background: #f5f3ef;
  padding: 4px;
}

.booking-embed iframe {
  display: block;
}

.contact-section {
  border-top: 1px solid var(--divider);
  padding: clamp(80px, 12vw, 160px) var(--pad-x);
}

.contact-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.contact-inner .label { margin-bottom: 20px; }

.contact-inner h2 {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(40px, 6vw, 80px);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 16px;
}

.contact-inner .contact-sub {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 56px;
}

.contact-form {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field[hidden] {
  display: none;
}

.form-field label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
}

.form-field input,
.form-field textarea,
.form-field select {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.35);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  padding: 14px 0;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  -webkit-appearance: none;
}

.form-field textarea {
  resize: none;
  min-height: 120px;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-bottom-color: var(--accent);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(240,237,232,0.25);
}

.form-field select option { background: #1a1a1a; }

.required-tag {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--muted);
}

.form-field .hint {
  font-size: 16px;
  font-weight: 300;
  color: rgba(240,237,232,0.75);
  line-height: 1.7;
}

.q-section-label {
  margin-top: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--divider);
}

.q-section-label .label {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
  align-self: flex-start;
}

.btn-primary:hover {
  background: var(--accent);
  color: var(--bg);
}

.btn-primary svg { transition: transform 0.25s; }
.btn-primary:hover svg { transform: translateX(4px); }

.form-success {
  display: none;
  padding: 20px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-align: center;
}

/* ---------------------------------------------------------
   Footer
--------------------------------------------------------- */
footer {
  border-top: 1px solid var(--divider);
  padding: 48px var(--pad-x);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo img { height: 36px; opacity: 0.65; }

.footer-social {
  display: flex;
  gap: 28px;
  align-items: center;
}

.footer-social a {
  color: var(--muted);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.footer-social a:hover { color: var(--text); }

.footer-copy {
  font-size: 11px;
  color: rgba(136,136,128,0.5);
  letter-spacing: 0.06em;
}

/* ---------------------------------------------------------
   Inner page hero (services, portfolio, podcast)
--------------------------------------------------------- */
.page-hero {
  padding: clamp(120px, 16vw, 200px) var(--pad-x) clamp(36px, 4vw, 52px);
  max-width: var(--max-w);
  margin: 0 auto;
}

.page-hero .label { margin-bottom: 20px; }

.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(52px, 8vw, 110px);
  letter-spacing: -0.02em;
  line-height: 0.92;
}

.page-hero .page-hero-sub {
  margin-top: 24px;
  font-size: clamp(17px, 1.5vw, 20px);
  color: rgba(240,237,232,0.95);
  max-width: 560px;
  line-height: 1.7;
}

.welcome-photo {
  position: relative;
  width: 100%;
  margin: clamp(40px, 6vw, 72px) 0;
}

.welcome-photo-hero {
  margin-top: 0;
}

.welcome-photo-overlay.welcome-photo-overlay-top {
  top: 0;
  bottom: auto;
  align-items: flex-start;
  background: none;
  padding-top: clamp(120px, 16vw, 180px);
  padding-bottom: clamp(60px, 8vw, 120px);
  height: 55%;
}


.welcome-photo-overlay-top h1 {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(52px, 8vw, 110px);
  letter-spacing: -0.02em;
  line-height: 0.92;
}

.welcome-photo-overlay-top .label {
  display: block;
  margin-bottom: 20px;
}

.welcome-photo img {
  display: block;
  width: 100%;
  height: auto;
  filter: contrast(1.05) brightness(0.85);
}

.welcome-photo-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 38%;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(0deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.6) 55%, rgba(10,10,10,0) 100%);
  padding: clamp(28px, 5vw, 64px) var(--pad-x);
}

.welcome-photo-text {
  max-width: 640px;
}

.welcome-photo-text p {
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.7;
  color: rgba(240,237,232,0.97);
}

/* ---------------------------------------------------------
   Deliveries DAW branch cards
--------------------------------------------------------- */
.daw-branch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 32px);
}

.daw-branch-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--divider);
  text-decoration: none;
  color: var(--text);
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.daw-branch-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.4);
}

.daw-branch-image {
  position: relative;
  width: 100%;
  aspect-ratio: 754 / 454;
  overflow: hidden;
  background: #000;
}

.daw-branch-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.daw-branch-card:hover .daw-branch-image img {
  transform: scale(1.05);
}

.daw-branch-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(28px, 3.6vw, 40px);
  flex: 1;
  transition: background 0.3s ease;
}

.daw-branch-card:hover .daw-branch-body {
  background: rgba(200,169,110,0.05);
}

.daw-branch-card h3 {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(28px, 3.4vw, 38px);
  letter-spacing: -0.01em;
  line-height: 1.05;
}

.daw-branch-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.daw-branch-link svg { transition: transform 0.3s ease; }
.daw-branch-card:hover .daw-branch-link svg { transform: translateX(4px); }

@media (max-width: 720px) {
  .daw-branch-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------------------------------------------------------
   FAQ accordion
--------------------------------------------------------- */
.faq-list {
  max-width: 760px;
}

.faq-item {
  border-top: 1px solid var(--divider);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--divider);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: clamp(10px, 1.2vw, 14px) 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--text);
  letter-spacing: -0.01em;
}

.faq-question:hover { color: var(--accent); }

.faq-icon {
  flex: none;
  width: 20px;
  height: 20px;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  transform: translateY(-50%);
}

.faq-icon::after {
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  transform: translateX(-50%);
}

.faq-item[open] .faq-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  overflow: hidden;
  padding-bottom: clamp(16px, 2vw, 22px);
}

.faq-answer p {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.8;
  color: rgba(240,237,232,0.92);
  max-width: 680px;
}

.faq-answer p + p { margin-top: 18px; }

.faq-answer ul {
  margin-top: 4px;
  padding-left: 20px;
}

.faq-answer li {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.8;
  color: rgba(240,237,232,0.92);
  margin-bottom: 10px;
}

.faq-answer li::marker { color: var(--accent); }

@media (max-width: 720px) {
  /* On narrow screens the hero photo is much shorter relative to its
     width (it's a wide landscape shot), so there isn't enough room
     to overlay both the heading and the blurb on top of it without
     them colliding. Instead, drop the overlay positioning and let
     the heading and blurb stack in normal flow below the photo,
     each on its own solid background. The photo stays full, uncropped. */
  .welcome-photo-overlay,
  .welcome-photo-overlay.welcome-photo-overlay-top {
    position: static;
    height: auto;
    width: auto;
    background: var(--bg);
    align-items: flex-start;
    padding: clamp(28px, 7vw, 40px) var(--pad-x);
  }

  .welcome-photo-overlay.welcome-photo-overlay-top {
    padding-bottom: clamp(16px, 4vw, 24px);
  }

  .welcome-photo-overlay:not(.welcome-photo-overlay-top) {
    padding-top: 0;
  }

  .welcome-photo-overlay-top h1 {
    font-size: clamp(40px, 14vw, 64px);
    line-height: 1;
  }

  .welcome-photo-overlay-top .label {
    margin-bottom: 10px;
  }
}

/* ---------------------------------------------------------
   Services page
--------------------------------------------------------- */
.services-list {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x) clamp(80px, 10vw, 140px);
}

.service-item {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: clamp(40px, 5vw, 80px);
  padding: clamp(48px, 6vw, 72px) 0;
  border-bottom: 1px solid var(--divider);
  align-items: start;
}

.service-item:first-child { border-top: 1px solid var(--divider); }
.service-item:last-child { border-bottom: none; padding-bottom: clamp(48px, 6vw, 72px); }

.service-num {
  font-family: var(--font-display);
  font-size: clamp(72px, 8vw, 100px);
  font-weight: 200;
  color: rgba(240,237,232,0.28);
  line-height: 1;
  letter-spacing: -0.02em;
  user-select: none;
}

.service-left { position: relative; }

.service-title {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(28px, 3.5vw, 44px);
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin-bottom: 8px;
  margin-top: -8px;
}

.service-right p {
  font-size: clamp(17px, 1.5vw, 20px);
  color: rgba(240,237,232,0.95);
  line-height: 1.8;
  margin-bottom: 12px;
}

.service-details {
  margin-top: 24px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-details li {
  font-size: 15px;
  color: rgba(240,237,232,0.95);
  line-height: 1.6;
  padding-left: 16px;
  position: relative;
}

.service-details li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 6px;
  height: 1px;
  background: var(--accent);
}

.service-subgroup {
  padding-top: 28px;
  margin-top: 28px;
  border-top: 1px solid var(--divider);
}

.service-subgroup:first-child {
  padding-top: 0;
  margin-top: 0;
  border-top: none;
}

.service-subhead {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(19px, 2vw, 23px);
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 12px;
}

/* ---------------------------------------------------------
   Portfolio page
--------------------------------------------------------- */
.portfolio-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(16px, 2vw, 28px) var(--pad-x) 0;
}

.playlist-block {
  margin-bottom: clamp(48px, 5vw, 64px);
}

.playlist-block:last-child {
  margin-bottom: 0;
}

.playlist-header {
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--divider);
}

.playlist-header h2 {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin-bottom: 12px;
}

.playlist-header p {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  line-height: 1.6;
}

/* Audio player */
.audio-player {
  background: var(--surface);
  padding: 0;
  overflow: hidden;
}

.now-playing {
  padding: 28px 32px;
  border-bottom: 1px solid var(--divider);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
}

.np-info { min-width: 0; }

.np-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}

.np-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(20px, 2.5vw, 28px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.np-artist {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

.np-cover {
  width: 110px;
  height: 110px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
  background: #1a1a1a;
}

.np-controls {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-play {
  width: 44px;
  height: 44px;
  border: 1px solid var(--accent);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
}

.btn-play:hover { background: rgba(200,169,110,0.12); }

.btn-play svg { fill: var(--accent); }

.btn-skip {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  opacity: 0.5;
  transition: opacity 0.2s;
}

.btn-skip:hover { opacity: 1; }
.btn-skip svg { fill: var(--text); }

.progress-bar-wrap {
  padding: 0 32px 0;
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 16px;
  padding-bottom: 20px;
}

.progress-time {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

.progress-track {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,0.1);
  position: relative;
  cursor: pointer;
}

.progress-fill {
  height: 100%;
  background: var(--accent);
  width: 0%;
  pointer-events: none;
}

.progress-thumb {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  left: 0%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
}

.progress-track:hover .progress-thumb { opacity: 1; }

.track-list { list-style: none; }

.track-item {
  display: grid;
  grid-template-columns: 24px 54px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 10px 32px;
  border-top: 1px solid var(--divider);
  cursor: pointer;
  transition: background 0.15s;
}

.track-cover {
  width: 54px;
  height: 54px;
  object-fit: cover;
  display: block;
  background: #1a1a1a;
  flex-shrink: 0;
}

.track-item:hover { background: rgba(255,255,255,0.03); }
.track-item.active { background: rgba(200,169,110,0.06); }

.track-num {
  font-size: 12px;
  color: var(--muted);
  width: 20px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.track-item.active .track-num { color: var(--accent); }

.track-info .track-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}

.track-info .track-artist {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 3px;
}

.track-item.active .track-info .track-title { color: var(--accent); }

.track-duration {
  font-size: 12px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.mix-sampler {
  background: var(--surface);
  padding: 40px 32px;
  margin-bottom: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.mix-sampler-text .label { margin-bottom: 10px; }

.mix-sampler-text h3 {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: -0.01em;
}

.mix-sampler-text p {
  color: var(--muted);
  font-size: 14px;
  margin-top: 8px;
}

.mix-sampler-player {
  flex-shrink: 0;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.06em;
  border: 1px solid var(--divider);
  padding: 12px 24px;
}

/* ---------------------------------------------------------
   Full Reel (homepage)
--------------------------------------------------------- */
.reel-section {
  background: var(--surface);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  padding: clamp(72px, 10vw, 140px) var(--pad-x);
}

.reel-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.reel-text .label { margin-bottom: 16px; }

.reel-heading {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 20px;
}

.reel-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  max-width: 360px;
  margin-bottom: 32px;
}

.reel-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s;
}

.reel-link:hover { opacity: 0.7; }

.reel-player {
  position: relative;
}

.reel-player-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--divider);
  padding: 28px 32px;
}

.reel-play-btn {
  width: 52px;
  height: 52px;
  border: 1px solid var(--accent);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}

.reel-play-btn:hover { background: rgba(200,169,110,0.12); }

.reel-track-area {
  flex: 1;
  min-width: 0;
}

.reel-track-label {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 20px;
  margin-bottom: 14px;
}

.reel-progress-track {
  position: relative;
  height: 2px;
  background: rgba(255,255,255,0.1);
  cursor: pointer;
  margin-bottom: 10px;
}

.reel-progress-fill {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 0%;
  background: var(--accent);
  transition: width 0.1s linear;
}

.reel-progress-thumb {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
}

.reel-times {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

@media (max-width: 768px) {
  .reel-inner { grid-template-columns: 1fr; }
  .reel-sub { max-width: 100%; }
}

.spotify-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  margin-bottom: 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--accent);
  background: rgba(200,169,110,0.08);
  border: 1px solid rgba(200,169,110,0.35);
  padding: 12px 20px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.spotify-link:hover {
  background: rgba(200,169,110,0.15);
  border-color: rgba(200,169,110,0.6);
  color: var(--accent);
}

.spotify-link svg { flex-shrink: 0; }

/* ---------------------------------------------------------
   Podcast page
--------------------------------------------------------- */
.podcast-list {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x) clamp(80px, 10vw, 140px);
}

.podcast-item {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding: clamp(32px, 4vw, 48px) 0;
  border-bottom: 1px solid var(--divider);
  text-decoration: none;
  transition: background 0.15s;
}

.podcast-item:first-child { border-top: 1px solid var(--divider); }

.podcast-img {
  display: flex;
  align-items: center;
}

.podcast-img img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0.85) grayscale(0.2);
  transition: filter 0.4s, transform 0.4s;
}

.podcast-item:hover .podcast-img img {
  filter: brightness(0.95) grayscale(0);
  transform: scale(1.03);
}

.podcast-info .label { margin-bottom: 10px; }

.podcast-info h3 {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 8px;
}

.podcast-info p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.podcast-arrow {
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.podcast-item:hover .podcast-arrow {
  opacity: 1;
  transform: translateX(4px);
}

/* ---------------------------------------------------------
   Responsive
--------------------------------------------------------- */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-left .section-number { display: none; }

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

  .availability-inner {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .grammy-section {
    grid-template-columns: 1fr;
  }

  .bio-body-inner { columns: 1; }

  .service-item {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-num {
    font-size: 48px;
    margin-bottom: -8px;
  }

  .playlist-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .playlist-header p { max-width: 100%; }

  .podcast-item {
    grid-template-columns: 120px 1fr;
  }

  .podcast-arrow { display: none; }

  .form-row { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 20px; }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

@media (max-width: 768px) {
  .hero-bg img {
    height: 100%;
    width: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .hero-content {
    bottom: clamp(36px, 6vh, 64px);
  }

  .hero-scroll { display: none; }
}

@media (max-width: 600px) {
  .now-playing {
    grid-template-columns: 1fr auto;
    padding: 20px;
  }

  .np-label { display: none; }

  .progress-bar-wrap { padding: 12px 20px 16px; }

  .track-item { padding: 12px 20px; }

  .podcast-item { grid-template-columns: 1fr; }
  .podcast-img { width: 100%; max-width: 320px; }

  .mix-sampler { flex-direction: column; align-items: flex-start; }

  .logo-hide-mobile { display: none; }
  .logos-row { justify-content: center; }

  .services-panel-content {
    background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.5) 40%, transparent 100%);
    padding: 24px;
  }

  .services-panel-content p { display: none; }
}

/* Cookie banner */
#cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(18,18,18,0.96);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(240,237,232,0.75);
  font-size: 12px;
  padding: 8px 16px;
  border-radius: 6px;
  z-index: 9999;
  max-width: 90vw;
  backdrop-filter: blur(8px);
  white-space: nowrap;
}

@media (max-width: 600px) {
  #cookie-banner {
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
    max-width: 100%;
    width: 100%;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-bottom: none;
    flex-direction: row;
    justify-content: space-between;
    gap: 12px;
    white-space: normal;
    font-size: 12px;
  }
}

#cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }

#cookie-banner button {
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  background: transparent;
  color: var(--text);
  transition: background 0.2s;
}

#cookie-banner #cookie-accept {
  background: var(--gold, #c8a96e);
  border-color: var(--gold, #c8a96e);
  color: #000;
}

#cookie-banner button:hover { opacity: 0.8; }
