/* ─────────────────────────────────────────────────────────────
   La Vie Studio — Main Stylesheet
   Dark, premium music studio aesthetic
   ───────────────────────────────────────────────────────────── */

:root {
  --bg:          #0d0c0a;
  --surface:     #141210;
  --card:        rgba(255,255,255,0.04);
  --card-raised: rgba(255,255,255,0.07);
  --text:        #f0ebe0;
  --muted:       #7a7469;
  --subtle:      rgba(240,235,224,0.10);
  --gold:        #c49a5e;
  --gold-glow:   rgba(196,154,94,0.15);
  --border:      rgba(240,235,224,0.08);
  --border-mid:  rgba(240,235,224,0.14);
  --radius:      20px;
  --radius-sm:   12px;
  --radius-lg:   28px;
  --pill:        999px;
  --max-w:       1180px;
  --nav-h:       68px;
  --shadow:      0 1px 3px rgba(0,0,0,0.5), 0 8px 32px rgba(0,0,0,0.4);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 24px);
}

body {
  font-family: "Inter", system-ui, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img   { display: block; max-width: 100%; height: auto; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }
iframe { display: block; width: 100%; border: 0; }
button { font: inherit; cursor: pointer; }


/* ── Typography ──────────────────────────────────── */

h1, h2, h3 {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--text);
}

h1 { font-size: clamp(3.4rem, 6.5vw, 6.8rem); }
h2 { font-size: clamp(2.4rem, 4.2vw, 4.4rem); }
h3 { font-size: clamp(1.35rem, 1.8vw, 1.85rem); }

em { font-style: italic; font-weight: 400; }

.eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.eyebrow-light { color: rgba(240,235,224,0.5); }
.eyebrow-gold  { color: var(--gold); }


/* ── Layout ──────────────────────────────────────── */

.container {
  width: min(100% - 48px, var(--max-w));
  margin-inline: auto;
}

.section {
  padding-block: 72px;
}

.section-header {
  display: grid;
  gap: 12px;
  margin-bottom: 40px;
}

.section-header h2 {
  max-width: 680px;
}

.section-sub {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 580px;
}


/* ── Buttons ─────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--pill);
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 140ms ease, background 200ms, border-color 200ms, color 200ms, box-shadow 200ms;
  white-space: nowrap;
}

.btn:hover          { transform: translateY(-1px); }
.btn:active         { transform: translateY(0); }

.btn-primary {
  background: var(--text);
  color: var(--bg);
}
.btn-primary:hover  { background: #fff; box-shadow: 0 4px 20px rgba(240,235,224,0.15); }

.btn-ghost {
  background: transparent;
  color: var(--muted);
  border-color: var(--border);
}
.btn-ghost:hover    { color: var(--text); border-color: var(--border-mid); }

.btn-gold {
  background: var(--gold);
  color: #fff;
}
.btn-gold:hover     { background: #d4aa6e; box-shadow: 0 4px 20px rgba(196,154,94,0.35); }

.btn-ghost-light {
  background: transparent;
  color: rgba(240,235,224,0.65);
  border-color: rgba(240,235,224,0.18);
}
.btn-ghost-light:hover { color: var(--text); border-color: rgba(240,235,224,0.36); }

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.action-row-center {
  justify-content: center;
}


/* ── Card ────────────────────────────────────────── */

.card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
}


/* ── Image Frame ─────────────────────────────────── */

.image-frame {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  position: relative;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
}

.image-frame:hover img { transform: scale(1.02); }

/* Placeholder styling when image is absent */
.image-frame::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
  padding: 24px;
  pointer-events: none;
  opacity: 0;
}

.image-frame.placeholder::after { opacity: 1; }


/* ── Navigation ──────────────────────────────────── */

.nav {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 100;
  height: var(--nav-h);
  border-bottom: 1px solid var(--border);
  background: rgba(13,12,10,0.86);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: min(100% - 48px, var(--max-w));
  margin-inline: auto;
}

.nav-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text);
  transition: color 200ms;
}

.nav-brand:hover { color: #fff; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
}

.nav-links a { transition: color 200ms; }
.nav-links a:hover { color: var(--text); }

.nav-cta {
  padding: 7px 18px;
  border: 1px solid var(--border-mid);
  border-radius: var(--pill);
  color: var(--text) !important;
  transition: border-color 200ms, background 200ms, box-shadow 200ms !important;
}

.nav-cta:hover {
  border-color: var(--gold);
  background: var(--gold-glow);
  box-shadow: 0 0 16px var(--gold-glow);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 280ms ease, opacity 280ms ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* ── Hero ────────────────────────────────────────── */

.hero {
  min-height: 82vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 50% 110%, rgba(196,154,94,0.10) 0%, transparent 65%),
    var(--bg);
}

.hero-inner {
  position: relative;
  width: min(100% - 48px, var(--max-w));
  margin-inline: auto;
  display: grid;
  gap: 28px;
  padding-block: 56px;
}

.hero h1 {
  max-width: 900px;
}

.hero-sub {
  max-width: 520px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.85;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.hero-tags span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: var(--pill);
  background: var(--card);
}


/* ── Intro Section ───────────────────────────────── */

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.intro-text {
  display: grid;
  gap: 24px;
}

.intro-text p { color: var(--muted); line-height: 1.85; }

.intro-image-wrap {
  aspect-ratio: 4/3;
}


/* ── Producer Banner ─────────────────────────────── */

.producer-section {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
}

.producer-bg {
  position: absolute;
  inset: 0;
}

.producer-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.producer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,9,8,0.94) 0%,
    rgba(10,9,8,0.76) 40%,
    rgba(10,9,8,0.34) 100%
  );
}

/* Also darken bottom for text legibility */
.producer-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,9,8,0.5) 0%, transparent 50%);
}

.producer-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 24px;
  max-width: 620px;
  padding-block: 56px;
}

.producer-content h2 { color: var(--text); }

.producer-bio {
  display: grid;
  gap: 14px;
}

.producer-bio p {
  color: rgba(240,235,224,0.68);
  line-height: 1.85;
}

.producer-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  padding-top: 8px;
  border-top: 1px solid rgba(240,235,224,0.12);
}

.stat { display: grid; gap: 5px; }

.stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1;
}

.stat-label {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}


/* ── Work / Recordings ───────────────────────────── */

.work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.soundcloud-card {
  display: grid;
  gap: 24px;
  padding: 28px;
}

.playlist-header {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  align-items: center;
}

.playlist-art {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.playlist-header h3 { font-size: 1.5rem; }

.playlist-header .meta { color: var(--muted); font-size: 0.88rem; margin-top: 8px; line-height: 1.6; }

.soundcloud-embed {
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
}

.text-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  transition: opacity 200ms;
}
.text-link:hover { opacity: 0.75; }

.work-image {
  aspect-ratio: 16/9;
}


/* ── Filmed ──────────────────────────────────────── */

.filmed-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.2fr;
  gap: 20px;
}

.filmed-copy {
  padding: 32px;
  display: flex;
  align-items: center;
}

.filmed-copy p {
  color: var(--muted);
  line-height: 1.85;
}

.video-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 300px;
  display: block;
  background: var(--surface);
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.video-card:hover img { transform: scale(1.04); }

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, transparent 55%);
  gap: 8px;
  transition: background 300ms;
}

.video-card:hover .video-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.1) 55%);
}

.play-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 4px;
  transition: background 200ms;
}

.video-card:hover .play-btn { background: rgba(255,255,255,0.25); }

.video-label {
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  font-size: 0.9rem;
}


/* ── Rates ───────────────────────────────────────── */

.rates-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.rate-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  padding: 28px;
  display: grid;
  gap: 12px;
  align-content: start;
  transition: border-color 200ms, background 200ms, transform 160ms;
}

.rate-card:hover {
  border-color: var(--border-mid);
  background: var(--card-raised);
  transform: translateY(-2px);
}

.rate-featured {
  grid-column: span 2;
  background: linear-gradient(145deg, #1c1710, #141210);
  border-color: rgba(196,154,94,0.2);
}

.rate-featured:hover {
  border-color: rgba(196,154,94,0.38);
  background: linear-gradient(145deg, #211d12, #181512);
}

.rate-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1;
}

.rate-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.rate-card ul { display: grid; gap: 8px; }

.rate-card ul li {
  color: var(--muted);
  font-size: 0.85rem;
  padding-left: 18px;
  position: relative;
  line-height: 1.6;
}

.rate-card ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.8rem;
}


/* ── Process ─────────────────────────────────────── */

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 33.33%;
  right: 33.33%;
  border-inline: 1px solid var(--border);
  pointer-events: none;
}

.process-step {
  padding: 36px;
  display: grid;
  gap: 16px;
}

.step-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--gold);
  opacity: 0.45;
  line-height: 1;
}

.process-step h3 { color: var(--text); }
.process-step p  { color: var(--muted); font-size: 0.93rem; line-height: 1.8; }


/* ── Testimonials ────────────────────────────────── */

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

.quote-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  padding: 32px;
  display: grid;
  gap: 22px;
  align-content: space-between;
}

.quote-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
  font-style: italic;
}

.quote-card cite {
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.quote-featured {
  background: linear-gradient(145deg, #1c1710, #141210);
  border-color: rgba(196,154,94,0.18);
}

.quote-featured p    { color: rgba(240,235,224,0.68); }
.quote-featured cite { color: var(--text); }


/* ── CTA Section ─────────────────────────────────── */

.cta-section {
  padding-block: 88px;
  background: linear-gradient(135deg, #141210 0%, #1a1710 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(196,154,94,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  display: grid;
  gap: 28px;
  justify-items: center;
}

.cta-section h2 {
  max-width: 680px;
  color: var(--text);
}


/* ── Footer ──────────────────────────────────────── */

.footer {
  padding-block: 36px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
}

.footer-links {
  display: flex;
  gap: 24px;
  font-size: 0.84rem;
  color: var(--muted);
}

.footer-links a { transition: color 200ms; }
.footer-links a:hover { color: var(--text); }

.footer-copy {
  font-size: 0.82rem;
  color: var(--muted);
}


/* ── Responsive ──────────────────────────────────── */

@media (max-width: 1080px) {
  .intro-grid,
  .work-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .intro-image-wrap { aspect-ratio: 16/9; }

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

  .filmed-copy { grid-column: 1 / -1; }

  .rates-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rate-featured { grid-column: span 2; }

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

  .process-grid::before { display: none; }

  .process-step {
    border-bottom: 1px solid var(--border);
    padding: 32px;
  }

  .process-step:last-child { border-bottom: none; }

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

@media (max-width: 768px) {
  .section { padding-block: 72px; }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    inset-inline: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(13,12,10,0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 24px;
    display: none;
  }

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

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
  }

  .nav-links li:last-child a { border-bottom: none; }

  .nav-cta {
    border: none !important;
    padding: 14px 0 !important;
    background: none !important;
  }

  .nav-toggle { display: flex; }

  .rates-grid { grid-template-columns: 1fr; }
  .rate-featured { grid-column: span 1; }

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

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

  .btn { padding: 12px 22px; }

  .hero-inner { padding-block: 56px; }
}
