/* Heritage Tracks — Vintage/Classic Theme */
:root {
  --gold: #C9A96E;
  --gold-light: #E8D5A8;
  --dark: #1a1714;
  --dark-warm: #2a2420;
  --cream: #FAF6F0;
  --cream-dark: #F0E8DA;
  --text: #3a3530;
  --text-light: #7a7068;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, sans-serif;
}

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

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

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

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(26, 23, 20, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-icon {
  font-size: 24px;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--gold);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.mobile-menu span {
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: var(--dark);
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(201, 169, 110, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201, 169, 110, 0.05) 0%, transparent 50%);
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,23,20,0.3) 0%, rgba(26,23,20,0.8) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 120px 0 80px;
}
.hero-tagline {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  gap: 48px;
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat-number {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
}
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ── Sections ── */
.section {
  padding: 96px 0;
}
.section-dark {
  background: var(--dark-warm);
}
.section-title {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
}
.section-title.light {
  color: #fff;
}
.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 16px;
  margin-bottom: 56px;
}

/* ── Grid ── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* ── Cards ── */
.card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.card-icon {
  font-size: 36px;
  margin-bottom: 20px;
}
.card h3 {
  font-family: var(--serif);
  font-size: 20px;
  margin-bottom: 12px;
}
.card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ── Process ── */
.process-item {
  padding: 32px;
}
.process-number {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.3;
  display: block;
  margin-bottom: 12px;
}
.process-item h3 {
  font-family: var(--serif);
  font-size: 20px;
  color: #fff;
  margin-bottom: 12px;
}
.process-item p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* ── Testimonial ── */
.testimonial-section {
  text-align: center;
  max-width: 700px;
}
.testimonial {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
  border: none;
  margin-bottom: 16px;
}
.testimonial em {
  color: var(--gold);
  font-style: italic;
}
.testimonial-author {
  font-size: 14px;
  color: var(--text-light);
}

/* ── Footer ── */
.footer {
  background: var(--dark);
  padding: 64px 0 32px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.footer-brand {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-brand p {
  color: rgba(255,255,255,0.35);
  font-size: 13px;
  margin-top: 12px;
  line-height: 1.6;
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--gold);
}
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(26, 23, 20, 0.98);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
  }
  .nav-links.open {
    display: flex;
  }
  .mobile-menu {
    display: flex;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }
  .hero-title {
    font-size: 36px;
  }
}

/* ── Page-specific (about, studio, catalog, contact) ── */
.page-header {
  background: var(--dark);
  padding: 120px 0 64px;
  text-align: center;
}
.page-header h1 {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.page-header p {
  color: rgba(255,255,255,0.5);
  font-size: 16px;
}
.page-content {
  padding: 64px 0;
}
.page-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 24px;
  color: var(--text-light);
}
.page-content h2 {
  font-family: var(--serif);
  font-size: 28px;
  margin: 48px 0 16px;
  color: var(--text);
}

/* Catalog genres */
.genre-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.genre-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  padding: 28px 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.genre-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.genre-card h3 {
  font-family: var(--serif);
  font-size: 18px;
  margin-bottom: 8px;
}
.genre-card p {
  font-size: 13px;
  color: var(--text-light);
  margin: 0;
}
.genre-card .count {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  margin-top: 12px;
}

/* Contact form */
.contact-form {
  max-width: 560px;
  margin: 0 auto;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 14px;
  background: #fff;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--dark);
  font-weight: 600;
  font-size: 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.2s;
}
.btn:hover {
  background: var(--gold-light);
}
