/* ============================================================================
   BESPØKE – Minimal & Luxe (FINAL VERSION - All improvements included)
   ========================================================================= */

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

:root {
  /* Colors */
  --bg: #0a0a0a;
  --bg-elevated: #141414;
  --bg-card: #0f0f0f;
  --accent: #d4af37;
  --accent-hover: #e6c154;
  --accent-dim: rgba(212, 175, 55, 0.12);
  --text-main: #fafafa;
  --text-soft-white: #e8e8e8;
  --text-muted: #9a9a9a;
  --border: rgba(212, 175, 55, 0.18);
  --border-strong: rgba(212, 175, 55, 0.4);
  
  /* Spacing & Borders */
  --radius: 14px;
  --radius-sm: 8px;
  --spacing-section: 80px;
  
  /* Shadows */
  --shadow-soft: 0 14px 50px rgba(0, 0, 0, 0.65);
  --shadow-strong: 0 20px 70px rgba(0, 0, 0, 0.85), 0 0 30px rgba(212, 175, 55, 0.15);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", "Helvetica Neue", sans-serif;
  background: var(--bg);
  color: var(--text-main);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================================
   HEADER (IMPROVED)
   ========================================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  backdrop-filter: blur(16px) saturate(180%);
  background: rgba(10, 10, 10, 0.88);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  color: var(--accent);
  border: 1px solid var(--border);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.logo:hover .logo-mark {
  border-color: var(--accent);
  transform: scale(1.05);
}

.logo-text {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-main);
}

.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
  font-size: 13px;
}

.main-nav a {
  color: var(--text-muted);
  padding: 7px 13px;
  border-radius: 22px;
  transition: color 0.2s ease, background 0.2s ease;
}

.main-nav a:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.06);
}

.nav-cta {
  background: var(--accent);
  color: var(--bg) !important;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.35);
}

.nav-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

/* ============================================================================
   HERO (OPTIMIZED)
   ========================================================================= */

.hero {
  padding: 50px 0 90px;
  text-align: center;
  background: radial-gradient(ellipse at top, rgba(212, 175, 55, 0.04), transparent 60%);
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.6em;
  font-size: 18px;
  color: var(--accent);
  margin-bottom: 24px;
  font-weight: 200;
}

.hero-title {
  font-size: 64px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 16px;
  font-weight: 200;
  line-height: 1.1;
}

.hero-o-highlight {
  color: var(--accent);
}

.hero-subtitle {
  font-size: 22px;
  margin: 0 0 32px;
  font-weight: 400;
  color: var(--text-main);
  text-align: center;
  max-width: 100%;
  letter-spacing: 0.01em;
}

.hero-description {
  font-size: 16px;
  color: var(--text-soft-white);
  max-width: 820px;
  margin: 0 auto 40px;
  line-height: 1.85;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================================
   SECTIONS (OPTIMIZED SPACING)
   ========================================================================= */

.section {
  padding: var(--spacing-section) 0;
}

.section-elevated {
  background: var(--bg-elevated);
}

.section-dark {
  background: linear-gradient(to bottom, var(--bg), var(--bg-elevated) 40%, var(--bg) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-title {
  text-align: center;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 0 0 10px;
  font-weight: 400;
}

.section-intro {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 0 50px;
  font-style: italic;
}

/* ============================================================================
   HOW IT WORKS
   ========================================================================= */

.step-hero {
  max-width: 680px;
  margin: 0 auto 60px;
  text-align: center;
  padding: 50px 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}

.step-number-large {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  font-weight: 600;
}

.step-title-large {
  font-size: 28px;
  margin: 0 0 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.step-description-large {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 0 28px;
  line-height: 1.75;
}

.step-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
}

.step-number {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  font-weight: 600;
}

.step-card h3 {
  font-size: 17px;
  margin: 0 0 10px;
  font-weight: 500;
}

.step-card p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
}

/* ============================================================================
   SOUND EXAMPLES SECTION (NEW)
   ========================================================================= */

.section-sound-examples {
  background: var(--bg-elevated);
  padding: var(--spacing-section) 0;
}

.sound-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-bottom: 50px;
}

.sound-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.sound-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
  border-color: var(--accent);
}

.sound-preview {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #000;
  overflow: hidden;
}

.sound-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sound-info {
  padding: 20px;
}

.sound-title {
  font-size: 17px;
  font-weight: 500;
  margin: 0 0 6px;
  color: var(--text-main);
}

.sound-description {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 0 12px;
  line-height: 1.6;
}

.sound-tag {
  display: inline-block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--accent);
  border-radius: 12px;
  font-weight: 600;
}

.sound-cta {
  text-align: center;
  padding-top: 30px;
}

.sound-cta-text {
  font-size: 16px;
  color: var(--text-muted);
  margin: 0 0 20px;
}

/* ============================================================================
   STATEMENT SECTION (OPTIMIZED)
   ========================================================================= */

.section-statement {
  background: var(--bg);
  padding: 100px 0;
}

.statement-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.statement-text {
  font-size: 32px;
  font-weight: 300;
  line-height: 1.5;
  margin: 0;
  color: var(--text-main);
  letter-spacing: 0.01em;
}

/* ============================================================================
   PRICING – 3 cards top, 1 card bottom HORIZONTAL
   ========================================================================= */

.pricing-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.pricing-private-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}

.pricing-card-private {
  width: 100%;
  max-width: 100%;
}

.pricing-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.pricing-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.9), 0 0 28px rgba(212, 175, 55, 0.45);
  border-color: var(--accent);
}

.pricing-card-featured {
  border-color: var(--accent);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.88), 0 0 20px rgba(212, 175, 55, 0.2);
}

/* Horizontal layout for Private Producer */
.pricing-card-horizontal {
  flex-direction: row;
  gap: 40px;
  align-items: flex-start;
}

.private-left {
  flex: 0 0 280px;
}

.private-right {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--accent);
  color: var(--bg);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 5px 11px;
  border-radius: 24px;
  font-weight: 700;
}

.pricing-title {
  font-size: 18px;
  margin: 0 0 7px;
  font-weight: 500;
}

.pricing-tagline {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0 0 16px;
  font-style: italic;
}

.pricing-price {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 0 16px;
}

.price-value {
  font-size: 22px;
  color: var(--text-main);
  font-weight: 600;
}

.price-period {
  font-size: 13px;
  color: var(--text-muted);
}

.custom-price {
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  font-size: 12px;
  color: var(--text-muted);
}

.pricing-list li {
  padding-left: 16px;
  position: relative;
  margin-bottom: 7px;
}

.pricing-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.pricing-footer {
  margin-top: auto;
  font-size: 11px;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 14px;
  line-height: 1.5;
}

/* ============================================================================
   BUTTONS
   ========================================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border-radius: 32px;
  font-size: 13px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-large {
  padding: 13px 28px;
  font-size: 14px;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.35);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(212, 175, 55, 0.45);
}

.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--text-main);
}

.btn-outline:hover {
  background: var(--accent-dim);
  border-color: var(--accent);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--text-main);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-block {
  width: 100%;
}

/* ============================================================================
   ABOUT SECTION (WITH PHOTO LAYOUT)
   ========================================================================= */

.about-layout {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

.about-photo {
  position: relative;
}

.about-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-img:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}

.about-bio {
  padding-top: 20px;
}

.about-name {
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin: 0 0 6px;
  color: var(--text-main);
}

.about-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin: 0 0 30px;
  font-weight: 600;
}

.about-text {
  margin-bottom: 0;
}

.about-text p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-soft-white);
  margin: 0 0 16px;
}

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

.about-text strong {
  color: var(--accent);
  font-weight: 600;
}

/* Responsive */
@media (max-width: 880px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-photo {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .about-photo {
    max-width: 100%;
  }
  
  .about-name {
    font-size: 22px;
  }
  
  .about-text p {
    font-size: 14px;
  }
}


/* ============================================================================
   FINAL CTA
   ========================================================================= */

.section-cta-final {
  padding: var(--spacing-section) 0;
  text-align: center;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.05), transparent 70%);
}

.cta-final-title {
  font-size: 28px;
  margin: 0 0 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.cta-final-text {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 0 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-final-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================================
   FOOTER (IMPROVED)
   ========================================================================= */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 20px 0 24px;
  background: var(--bg);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--text-muted);
  gap: 20px;
}

.footer-left p {
  margin: 4px 0;
}

.footer-right {
  display: flex;
  gap: 20px;
  font-size: 12px;
}

.footer-right a {
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.footer-right a:hover {
  color: var(--accent);
}

/* ============================================================================
   RESPONSIVE
   ========================================================================= */

@media (max-width: 1024px) {
  .pricing-grid-3 {
    grid-template-columns: 1fr;
  }
  
  .pricing-card-horizontal {
    flex-direction: column;
    gap: 20px;
  }
  
  .private-left {
    flex: 1;
  }
  
  .sound-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 880px) {
  :root {
    --spacing-section: 60px;
  }
  
  .hero {
    padding: 50px 0 60px;
  }
  
  .hero-eyebrow {
    display: none;
  }
  
  .hero-title {
    font-size: 48px;
  }
  
  .hero-subtitle {
    font-size: 20px;
  }
  
  .hero-description {
    font-size: 15px;
  }
  
  .statement-text {
    font-size: 24px;
  }
  
  .main-nav {
    font-size: 11px;
    gap: 14px;
    flex-wrap: wrap;
  }
  
  .step-hero {
    padding: 40px 28px;
  }
  
  .step-actions,
  .cta-final-actions,
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .step-actions .btn,
  .cta-final-actions .btn,
  .hero-cta .btn {
    width: 100%;
  }
  
  .section-statement {
    padding: 70px 0;
  }
}

@media (max-width: 640px) {
  .logo-text {
    display: none;
  }
  
  .hero-title {
    font-size: 38px;
    letter-spacing: 0.18em;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .hero-description {
    font-size: 14px;
  }
  
  .statement-text {
    font-size: 22px;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
  }
  
  .sound-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .sound-preview {
    aspect-ratio: 9 / 16;
  }
  
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .footer-right {
    flex-direction: column;
    gap: 8px;
  }
  
  .site-header {
    position: static;
  }
}
