/* ============================================
   Eviga Music — evigamusic.com
   Palette: navy #1e2d4a · dusty #2d4268 / #a8c0e8 · accent #7aaee8
   ============================================ */

:root {
  --navy: #1e2d4a;
  --navy-deep: #16223a;
  --dusty: #2d4268;
  --dusty-light: #a8c0e8;
  --accent: #7aaee8;
  --cream: #faf7f2;
  --cream-dark: #f2ede4;
  --ink: #232b3a;
  --ink-soft: #55617a;
  --white: #ffffff;
  --gold: #c9a86a;
  --radius: 14px;
  --shadow: 0 10px 40px rgba(30, 45, 74, 0.12);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.narrow { max-width: 760px; }

/* ---------- Typography ---------- */

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 0.5em; }
h3 { font-size: 1.45rem; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.18rem;
  color: var(--ink-soft);
  max-width: 44em;
}

.on-dark h1, .on-dark h2, .on-dark h3 { color: var(--white); }
.on-dark p, .on-dark .lead { color: var(--dusty-light); }
.on-dark .eyebrow { color: var(--accent); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 32px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-decoration: none !important;
}

.btn-primary {
  background: var(--accent);
  color: var(--navy-deep);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(122, 174, 232, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(168, 192, 232, 0.55);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30, 45, 74, 0.35);
}

.btn-lg { padding: 18px 42px; font-size: 1.08rem; }

/* ---------- Nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(22, 34, 58, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(168, 192, 232, 0.12);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1160px;
  margin: 0 auto;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--white);
  text-decoration: none !important;
}
.nav-logo span { color: var(--accent); }

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

.nav-links a {
  color: var(--dusty-light);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none !important;
}
.nav-links a:hover { color: var(--white); }

.nav-links .btn {
  padding: 10px 22px;
  font-size: 0.92rem;
}

.nav-links a.btn-primary { color: var(--navy-deep); }
.nav-links a.btn-primary:hover { color: var(--navy-deep); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.7rem;
  cursor: pointer;
  line-height: 1;
}

/* ---------- Hero ---------- */

.hero {
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(122, 174, 232, 0.16), transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 90%, rgba(45, 66, 104, 0.55), transparent 65%),
    var(--navy-deep);
  color: var(--white);
  padding: 100px 0 110px;
  text-align: center;
  overflow: hidden;
}

.hero h1 {
  color: var(--white);
  max-width: 18em;
  margin: 0 auto 0.5em;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero .lead {
  color: var(--dusty-light);
  margin: 0 auto 2.2rem;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.6rem;
}

.pills {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
}

.pills li {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dusty-light);
  border: 1px solid rgba(168, 192, 232, 0.3);
  border-radius: 999px;
  padding: 7px 18px;
}

/* ---------- Sections ---------- */

section { padding: 90px 0; }

.section-dark { background: var(--navy); }
.section-deep { background: var(--navy-deep); }
.section-alt { background: var(--cream-dark); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-head .lead { margin: 0 auto; }

/* ---------- Keepsake / emotion block ---------- */

.keepsake-quote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  font-style: italic;
  line-height: 1.35;
  color: var(--white);
  text-align: center;
  max-width: 21em;
  margin: 0 auto;
}
.keepsake-quote strong { color: var(--accent); font-weight: 600; }

.keepsake-sub {
  text-align: center;
  color: var(--dusty-light);
  margin-top: 1.6rem;
  font-size: 1.05rem;
}

/* ---------- Steps ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  counter-reset: step;
}

.step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 26px;
  box-shadow: var(--shadow);
  position: relative;
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 14px;
}

.step h3 { margin-bottom: 8px; font-size: 1.3rem; }
.step p { font-size: 0.96rem; color: var(--ink-soft); }

/* ---------- Samples ---------- */

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

.sample-card {
  background: var(--dusty);
  border: 1px solid rgba(168, 192, 232, 0.18);
  border-radius: var(--radius);
  padding: 28px;
}

.sample-card h3 { color: var(--white); font-size: 1.25rem; margin-bottom: 4px; }
.sample-card .sample-meta {
  color: var(--dusty-light);
  font-size: 0.88rem;
  margin-bottom: 18px;
}

.sample-card audio {
  width: 100%;
  border-radius: 8px;
}

/* ---------- Pricing ---------- */

.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.price-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  text-align: center;
  border: 2px solid transparent;
}

.price-card.featured {
  border-color: var(--accent);
  transform: scale(1.03);
  position: relative;
}

.badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--navy-deep);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

.price-card h3 { font-size: 1.6rem; }

.price-tag {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--navy);
  margin: 10px 0 2px;
}

.price-sub {
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin-bottom: 24px;
}

.price-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
  flex-grow: 1;
}

.price-card li {
  padding: 9px 0 9px 30px;
  position: relative;
  font-size: 0.95rem;
  color: var(--ink-soft);
  border-bottom: 1px solid rgba(30, 45, 74, 0.07);
}
.price-card li:last-child { border-bottom: none; }

.price-card li::before {
  content: "♪";
  position: absolute;
  left: 4px;
  color: var(--accent);
  font-weight: 700;
}

/* ---------- Packages (Utah) ---------- */

.package-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--accent);
  margin-bottom: 18px;
}

/* ---------- Offer banner ---------- */

.offer {
  background: linear-gradient(120deg, var(--dusty), var(--navy));
  border: 1px solid rgba(122, 174, 232, 0.35);
  border-radius: var(--radius);
  padding: 48px 40px;
  text-align: center;
  color: var(--white);
}

.offer h2 { color: var(--white); }
.offer p { color: var(--dusty-light); max-width: 40em; margin: 0 auto 1.8rem; }
.offer .fineprint { font-size: 0.85rem; opacity: 0.75; margin-top: 1.2rem; }

/* ---------- Spotify / status ---------- */

.spotify-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.spotify-mock {
  background: #121212;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  color: #fff;
  font-family: var(--font-body);
}

.spotify-mock .sp-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1db954;
  font-weight: 700;
  margin-bottom: 14px;
}

.spotify-mock .sp-art {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--dusty) 0%, var(--navy-deep) 60%, var(--accent) 130%);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
}

.spotify-mock .sp-title { font-weight: 700; font-size: 1.15rem; }
.spotify-mock .sp-artist { color: #b3b3b3; font-size: 0.95rem; margin-top: 3px; }
.spotify-mock .sp-artist strong { color: #fff; font-weight: 600; }

/* ---------- Testimonials ---------- */

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

.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.testimonial .stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 14px; }

.testimonial blockquote {
  font-size: 0.98rem;
  color: var(--ink-soft);
  flex-grow: 1;
  font-style: italic;
}

.testimonial cite {
  display: block;
  margin-top: 18px;
  font-style: normal;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
}

/* ---------- About ---------- */

.about-split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}

.about-photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--dusty-light), var(--dusty));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- FAQ ---------- */

.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 14px;
  box-shadow: 0 4px 18px rgba(30, 45, 74, 0.07);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 22px 26px;
  font-weight: 600;
  color: var(--navy);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item .faq-body {
  padding: 0 26px 24px;
  color: var(--ink-soft);
  font-size: 0.97rem;
}

/* ---------- Form ---------- */

.form-wrap {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px 44px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-field { display: flex; flex-direction: column; }
.form-field.full { grid-column: 1 / -1; }

.form-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-field input,
.form-field select {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 13px 16px;
  border: 1.5px solid rgba(30, 45, 74, 0.18);
  border-radius: 10px;
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.15s ease;
}

.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
}

.form-wrap .btn { width: 100%; margin-top: 26px; }

.form-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 16px;
}

/* ---------- Utah cross-sell ---------- */

.utah-banner {
  background:
    radial-gradient(ellipse 70% 90% at 85% 10%, rgba(122, 174, 232, 0.18), transparent 60%),
    var(--navy);
  border-radius: var(--radius);
  padding: 56px 48px;
  color: var(--white);
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 40px;
  align-items: center;
}

.utah-banner h2 { color: var(--white); margin-bottom: 0.4em; }
.utah-banner p { color: var(--dusty-light); }
.utah-banner .btn { justify-self: start; }

/* ---------- Footer ---------- */

footer {
  background: var(--navy-deep);
  color: var(--dusty-light);
  padding: 60px 0 40px;
  font-size: 0.92rem;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
}
.footer-brand span { color: var(--accent); }

.footer-links { display: flex; gap: 26px; flex-wrap: wrap; list-style: none; }
.footer-links a { color: var(--dusty-light); }
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(168, 192, 232, 0.14);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  opacity: 0.8;
}

/* ---------- Thank-you ---------- */

.hero-minimal {
  min-height: 72vh;
  display: flex;
  align-items: center;
}

/* ---------- Reveal animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr 1fr; }
  .pricing, .samples, .testimonials { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .price-card.featured { transform: none; }
  .spotify-split, .about-split { grid-template-columns: 1fr; gap: 40px; }
  .spotify-mock { max-width: 380px; margin: 0 auto; }
  .utah-banner { grid-template-columns: 1fr; padding: 44px 32px; }
}

@media (max-width: 720px) {
  section { padding: 64px 0; }
  .hero { padding: 72px 0 80px; }

  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--navy-deep);
    padding: 20px 24px 28px;
    gap: 18px;
    border-bottom: 1px solid rgba(168, 192, 232, 0.14);
  }
  .nav-links.open { display: flex; }

  .steps { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-wrap { padding: 36px 24px; }
}
