/* ===================================================
   EASY THINGS TO CHANGE
   ===================================================
   Want to change the gold accent color?  Edit:  --gold: #c9a96e;
   Want a lighter background?             Edit:  --bg-deep: #0c0c18;
   =================================================== */

:root {
  --bg-deep: #0c0c18;
  --bg-section: #10101e;
  --bg-card: #181830;
  --bg-card-hover: #1e1e3a;
  --gold: #c9a96e;
  --gold-light: #e0c88a;
  --gold-dim: #a08550;
  --text-primary: #e8e6e1;
  --text-secondary: #9997a8;
  --text-muted: #5c5a6a;
  --border: rgba(201, 169, 110, 0.12);
  --border-hover: rgba(201, 169, 110, 0.3);
  --radius: 12px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

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

/* Subtle film-grain texture */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* ===== Typography ===== */
h1, h2, h3 { font-family: var(--font-display); font-weight: 300; line-height: 1.2; }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; }
h2 em, h1 em { font-style: italic; color: var(--gold); }
p { color: var(--text-secondary); font-size: 1.05rem; max-width: 600px; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
}
.section-label::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 1.2rem; height: 1px;
  background: var(--gold);
}

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0; z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 4rem;
  background: rgba(12, 12, 24, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-links { display: flex; gap: 2.5rem; }
.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  background: radial-gradient(ellipse 60% 50% at 50% 40%, rgba(201, 169, 110, 0.06) 0%, transparent 70%);
}
.hero-content { animation: fadeUp 1s ease both; }
.hero-tag {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 2rem;
  animation: fadeUp 1s ease both;
}
.hero-title {
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 2rem;
  animation: fadeUp 1s ease 0.2s both;
}
.hero-sub {
  font-size: 1.15rem;
  max-width: 500px;
  margin: 0 auto 3rem;
  animation: fadeUp 1s ease 0.4s both;
}
.btn-primary {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg-deep);
  background: var(--gold);
  border: none;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s ease;
  animation: fadeUp 1s ease 0.6s both;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.3);
}

/* ===== About ===== */
.about {
  padding: 8rem 4rem;
  background: var(--bg-section);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 5rem;
  align-items: center;
}
.about-photo img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  object-fit: cover;
  aspect-ratio: 3/4;
  background: var(--bg-card);
  transition: border-color 0.3s;
}

.about-photo img:hover { border-color: var(--border-hover); }
.about-text p { margin-bottom: 1.2rem; }
.about-stats {
  display: flex;
  gap: 3rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.3rem;
  display: block;
}

/* ===== Demos ===== */
.demos { padding: 8rem 4rem; }
.demos-inner { max-width: 1100px; margin: 0 auto; }
.demos-intro { margin-bottom: 3.5rem; }

.demo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.demo-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.demo-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.demo-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-4px);
}
.demo-card:hover::before { opacity: 1; }

.demo-icon {
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.demo-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.7rem;
  color: var(--text-primary);
}
.demo-card p { font-size: 0.92rem; line-height: 1.6; margin-bottom: 1.5rem; }

/* --- Audio Player --- */
.demo-player {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 50px;
}
.demo-player.is-playing {
  background: rgba(201, 169, 110, 0.08);
}
.play-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--gold);
  color: var(--bg-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.3s;
}
.play-btn:hover {
  background: var(--gold-light);
  transform: scale(1.08);
}
.play-btn svg { margin-left: 2px; }
.demo-player.is-playing .play-btn {
  box-shadow: 0 0 12px rgba(201, 169, 110, 0.4);
}
.demo-player.is-playing .play-btn svg { margin-left: 0; }
.player-track {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
}
.player-progress {
  height: 100%;
  width: 0%;
  background: var(--gold);
  border-radius: 4px;
  transition: width 0.15s linear;
}
.player-time {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
  min-width: 3ch;
}

/* --- Tags --- */
.demo-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.demo-tags span {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-dim);
  padding: 0.3rem 0.7rem;
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: 50px;
}

/* ===== Clients Marquee ===== */
.clients {
  padding: 2rem 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-section);
}
.clients-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.clients-track span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--text-muted);
  padding: 0 1rem;
  letter-spacing: 0.05em;
}
.clients-track .sep { color: var(--gold-dim); opacity: 0.4; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== Testimonials ===== */
.testimonials { padding: 8rem 4rem; }
.testimonials-inner { max-width: 1100px; margin: 0 auto; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  transition: border-color 0.3s;
}
.testimonial:hover { border-color: var(--border-hover); }
.testimonial p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  max-width: none;
}
.testimonial footer { display: flex; flex-direction: column; }
.testimonial footer strong {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--gold);
}
.testimonial footer span {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

/* ===== Contact ===== */
.contact {
  padding: 8rem 4rem;
  background: var(--bg-section);
  border-top: 1px solid var(--border);
  text-align: center;
}
.contact-inner { max-width: 700px; margin: 0 auto; }
.contact-sub { margin: 0 auto 3rem; text-align: center; }
.contact-methods {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.95rem;
  transition: all 0.3s;
}
.contact-card svg {
  color: var(--gold);
  flex-shrink: 0;
}
.contact-card:hover {
  border-color: var(--border-hover);
  color: var(--text-primary);
  transform: translateY(-2px);
}
.contact-rep { margin-top: 1rem; }
.contact-rep p {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: none;
  text-align: center;
}
.contact-rep strong { color: var(--gold); font-weight: 500; }

/* ===== Footer ===== */
.footer { padding: 2rem 4rem; border-top: 1px solid var(--border); }
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-name { font-family: var(--font-display); font-size: 1.1rem; color: var(--text-muted); }
.footer-copy { font-size: 0.8rem; color: var(--text-muted); }

/* ===== Animations ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== Mobile / Small Screens ===== */
@media (max-width: 900px) {
  .nav { padding: 1.2rem 2rem; }
  .nav-links { gap: 1.5rem; }
  .about { padding: 5rem 2rem; }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .about-photo { max-width: 240px; margin: 0 auto; }
  .about-stats { justify-content: center; }
  .about-text p { margin-left: auto; margin-right: auto; }
  .demos, .testimonials { padding: 5rem 2rem; }
  .demo-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .contact { padding: 5rem 2rem; }
  .contact-methods { flex-direction: column; align-items: center; }
  .footer-inner { flex-direction: column; gap: 0.5rem; text-align: center; }
}

@media (max-width: 600px) {
  .nav { padding: 1rem 1.5rem; }
  .nav-links { gap: 1rem; }
  .nav-links a { font-size: 0.75rem; }
  .hero { padding: 7rem 1.5rem 4rem; }
  .hero-title { font-size: clamp(2.5rem, 10vw, 4rem); }
  .hero-waveform { width: 95%; }
}
