/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white:    #ffffff;
  --off:      #faf9f7;
  --tint:     #f5f2ee;
  --border:   #e8e3de;
  --muted:    #9a9490;
  --text:     #1a1816;
  --dark:     #111110;
  --accent:   #2d2b29;
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --radius:   4px;
  --transition: 0.2s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ===== LAYOUT ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ===== NAV ===== */
.nav-wrapper {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.logo-mark {
  width: 32px; height: 32px;
  background: var(--dark);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--muted);
  transition: color var(--transition);
  letter-spacing: 0.02em;
}

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

.nav-cta {
  background: var(--dark) !important;
  color: var(--white) !important;
  padding: 8px 18px !important;
  border-radius: var(--radius);
  font-weight: 500 !important;
  transition: background var(--transition) !important;
}
.nav-cta:hover { background: #333 !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--text);
  transition: var(--transition);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover { background: #333; }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { border-color: var(--text); }
.btn-full { width: 100%; }
.mt-1 { margin-top: 28px; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 64px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(220,215,210,0.3) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(200,205,215,0.2) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--muted);
  margin-bottom: 44px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}
.scroll-line {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--muted));
  margin: 0 auto;
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.1); }
}

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }
.section-tinted { background: var(--tint); }

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 24px;
}
.section-title em { font-style: italic; }
.section-intro {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 56px;
  font-weight: 300;
}
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ===== ABOUT ===== */
.about-image-wrap { position: relative; }
.about-image-placeholder {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 5/6;
  background: var(--tint);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-image-placeholder svg { width: 70%; height: 70%; }
.about-text p { color: #4a4744; margin-bottom: 16px; line-height: 1.75; }

/* ===== STUDIO FEATURES ===== */
.studio-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 24px;
}
.feature-icon {
  font-size: 1.75rem;
  margin-bottom: 16px;
  line-height: 1;
}
.feature-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark);
}
.feature-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ===== SERVICES ===== */
.services-list { border-top: 1px solid var(--border); }
.service-row {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.service-row:hover { background: var(--off); margin: 0 -24px; padding-left: 24px; padding-right: 24px; }
.service-num {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--border);
  font-weight: 400;
  flex-shrink: 0;
  width: 40px;
}
.service-body { flex: 1; }
.service-body h3 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--dark);
}
.service-body p { font-size: 0.9rem; color: var(--muted); }
.service-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--transition);
  white-space: nowrap;
}
.service-link:hover { color: var(--dark); }

/* ===== MUSIC ===== */
.music-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.music-card {
  cursor: pointer;
}
.music-cover {
  aspect-ratio: 1;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition);
  margin-bottom: 16px;
}
.music-card:hover .music-cover { transform: scale(1.02); }
.play-btn {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--dark);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity var(--transition), transform var(--transition);
  backdrop-filter: blur(4px);
}
.play-btn svg { width: 22px; height: 22px; padding-left: 3px; }
.music-card:hover .play-btn { opacity: 1; transform: scale(1); }
.music-title { font-weight: 500; font-size: 0.95rem; color: var(--dark); margin-bottom: 4px; }
.music-meta  { font-size: 0.8rem; color: var(--muted); }

/* ===== CONTACT ===== */
.contact-grid { align-items: start; gap: 80px; }
.contact-text p { color: #4a4744; margin-bottom: 16px; line-height: 1.75; }
.contact-details {
  list-style: none;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
}
.contact-icon { font-size: 1.1rem; flex-shrink: 0; }
.contact-details a { color: var(--text); transition: color var(--transition); }
.contact-details a:hover { color: var(--muted); }

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.8rem; font-weight: 500; letter-spacing: 0.05em; color: var(--muted); text-transform: uppercase; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
  resize: vertical;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #bbb; }
.form-group select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239a9490' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.5);
  padding: 32px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-brand { color: rgba(255,255,255,0.8); font-size: 0.9rem; font-weight: 500; }
.footer-copy  { font-size: 0.8rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .studio-features { grid-template-columns: repeat(2, 1fr); }
  .music-grid       { grid-template-columns: repeat(2, 1fr); }
  .grid-2           { grid-template-columns: 1fr; gap: 40px; }
  .about-image-wrap { max-width: 400px; }
  .contact-grid     { gap: 48px; }
}

@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .hero-title { font-size: 3rem; }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 16px;
    align-items: flex-start;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; color: var(--text); }
  .nav-cta { padding: 10px 20px !important; }
  .nav-toggle { display: flex; }

  .studio-features { grid-template-columns: 1fr; }
  .music-grid       { grid-template-columns: 1fr; }

  .service-row { flex-wrap: wrap; gap: 16px; }
  .service-link { width: 100%; }

  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; justify-content: center; }

  .footer-inner { flex-direction: column; text-align: center; }
}
