/* Songbook Gift — shared styles. Mobile-first, system fonts, minimal. */

:root {
  --ink: #1a1a1a;
  --muted: #6b6b6b;
  --line: #e6e6e6;
  --bg: #ffffff;
  --bg-soft: #f7f6f4;
  --accent: #b5482e;        /* warm guitar-wood red, single accent */
  --accent-dark: #8f3722;
  --radius: 14px;
  --maxw: 620px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 32px 20px 56px;
}

/* HERO */
.hero { text-align: center; padding-top: 8px; }

.hero-photo {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  display: block;
  border: 3px solid var(--bg-soft);
  box-shadow: 0 4px 18px rgba(0,0,0,.08);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: .78rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 10px;
}

.hero-title {
  font-size: 1.95rem;
  line-height: 1.15;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

/* BODY */
.intro {
  margin: 28px auto 0;
  max-width: 34em;
}
.intro p {
  margin: 0 0 14px;
  color: #444;
}

.hero-sub {
  font-size: 1.08rem;
  color: var(--muted);
  margin: 0 auto;
  max-width: 30em;
}

/* VIDEO */
.video-section { margin: 36px 0 8px; }

.video-frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;          /* 16:9 */
  height: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  box-shadow: 0 6px 24px rgba(0,0,0,.12);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-caption {
  text-align: center;
  color: var(--muted);
  font-size: .98rem;
  margin: 16px auto 0;
  max-width: 32em;
}

/* CTA */
.cta {
  margin: 40px 0 0;
  padding: 32px 24px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
}

.cta-cover {
  width: 120px;
  height: auto;
  border-radius: 8px;
  margin: 0 auto 18px;
  display: block;
  box-shadow: 0 6px 20px rgba(0,0,0,.16);
}

.cta-title {
  font-size: 1.45rem;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.cta-desc {
  color: var(--muted);
  margin: 0 0 22px;
}

/* ACCESS BUTTON */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  border: 0;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: background .15s ease, transform .05s ease;
}

.btn:hover { background: var(--accent-dark); }
.btn:active { transform: translateY(1px); }

.form-status {
  min-height: 1.3em;
  margin: 14px 0 0;
  font-size: .98rem;
  font-weight: 500;
}
.form-status.ok { color: #2e7d32; }
.form-status.err { color: var(--accent-dark); }

.privacy {
  font-size: .8rem;
  color: var(--muted);
  margin: 18px auto 0;
  max-width: 30em;
}

/* FOOTER */
.footer {
  text-align: center;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .9rem;
}
.footer-name { margin: 0 0 6px; font-weight: 500; color: var(--ink); }
.footer a { color: var(--accent); text-decoration: none; }
.footer a:hover { text-decoration: underline; }

/* Hide images that failed to load (placeholders not yet in place) */
.img-missing { display: none; }

@media (min-width: 560px) {
  .wrap { padding-top: 48px; }
  .hero-title { font-size: 2.3rem; }
}
