/* ============================================
   Abe Alam Guitar — shared site stylesheet
   Brand palette: black / white / red (#f44336)
   ============================================ */

:root {
  --bg-dark: #0a0a0a;
  --bg-dark-2: #161616;
  --bg-cream: #ffffff;
  --panel: #ffffff;
  --ink: #111111;
  --ink-soft: #333333;
  --muted: #757575;
  --accent: #f44336;
  --accent-light: #ff5a4d;
  --border: #e0e0e0;
  --border-dark: #262626;
  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg-cream);
  line-height: 1.6;
}

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

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

/* ---------- Nav ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border-dark);
}
.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: 0.02em;
  color: #ffffff;
  text-decoration: none;
}
.logo span { color: var(--accent); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: #cfcfcf;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color .15s;
}
.nav-links a:hover { color: #fff; }
.nav-links a.current { color: var(--accent); }
.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px !important;
  text-transform: none !important;
}
.nav-cta:hover { background: var(--accent-light); }
.nav-toggle { display: none; }

@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-links.nav-links-open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border-dark);
    padding: 12px 24px 20px;
  }
  .nav-links.nav-links-open a { padding: 10px 0; width: 100%; }
  .nav-links.nav-links-open .nav-cta { margin-top: 8px; text-align: center; }
  .nav-toggle {
    display: block;
    background: none;
    border: 1px solid var(--border-dark);
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
  }
}

/* ---------- Sections ---------- */
section { padding: 72px 0; }
section.tight { padding: 48px 0; }
.section-dark { background: var(--bg-dark); color: #ececec; }
.section-dark .muted { color: #9e9e9e; }
.section-panel { background: var(--panel); }

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 12px;
}
.section-dark .eyebrow { color: var(--accent); }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 16px;
}
h1 { font-size: clamp(34px, 5vw, 54px); }
h2 { font-size: clamp(26px, 3.4vw, 36px); }
h3 { font-size: 20px; }
p { margin: 0 0 16px; color: var(--ink-soft); }
.section-dark p { color: #bdbdbd; }
.lede { font-size: 19px; }

.muted { color: var(--muted); }
.center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform .12s, background .15s, box-shadow .15s;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-light); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border-dark);
  color: inherit;
}
.section-dark .btn-outline { border-color: #3a3a3a; color: #f0f0f0; }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-block { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  background: var(--bg-dark);
  color: #f0f0f0;
  padding: 90px 0 80px;
  text-align: center;
}
.hero .wrap { max-width: 760px; }
.hero h1 { color: #fff; }
.hero .lede { color: #c4c4c4; max-width: 560px; margin-left: auto; margin-right: auto; }
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 28px;
  flex-wrap: wrap;
}
.hero-note {
  margin-top: 18px;
  font-size: 13px;
  color: #9e9e9e;
}

/* ---------- Hero with photo (homepage) ---------- */
.hero-split .wrap {
  max-width: 1080px;
  display: flex;
  align-items: center;
  gap: 56px;
  text-align: left;
}
.hero-split .hero-copy { flex: 1; min-width: 0; }
.hero-split .hero-copy .lede { margin-left: 0; margin-right: 0; }
.hero-split .hero-actions { justify-content: flex-start; }
.hero-photo { flex-shrink: 0; width: 280px; }
.hero-photo img {
  width: 100%;
  display: block;
  border-radius: 16px;
  border: 1px solid var(--border-dark);
  box-shadow: 0 24px 48px rgba(0,0,0,0.4);
}
@media (max-width: 860px) {
  .hero-split .wrap { flex-direction: column; text-align: center; }
  .hero-split .hero-copy .lede { margin-left: auto; margin-right: auto; }
  .hero-split .hero-actions { justify-content: center; }
  .hero-photo { width: 220px; order: -1; }
}

/* ---------- Status banner ---------- */
.status-banner {
  background: #241010;
  border: 1px solid rgba(244, 67, 54, 0.35);
  color: #ffcdc7;
  border-radius: 12px;
  padding: 12px 20px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.status-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ---------- Cards / grids ---------- */
.grid {
  display: grid;
  gap: 24px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 760px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}
.section-dark .card {
  background: var(--bg-dark-2);
  border-color: var(--border-dark);
}

.module-row {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid var(--border);
}
.module-row:first-of-type { border-top: none; }
.module-num {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--accent);
  flex-shrink: 0;
  width: 56px;
}
.module-row h3 { margin-bottom: 6px; }
.module-row p { margin-bottom: 0; }

/* ---------- Testimonial quote ---------- */
.quote {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.5;
  font-style: italic;
  max-width: 640px;
  margin: 0 auto;
}
.quote-attr {
  margin-top: 16px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 14px;
  color: var(--muted);
}

.testimonial-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}
.testimonial-card p:last-of-type { margin-bottom: 0; }
.testimonial-card .quote-attr { color: var(--accent); font-weight: 600; }
.placeholder-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(244, 67, 54, 0.1);
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
  font-weight: 600;
}

/* ---------- Pricing ---------- */
.price-card {
  background: var(--bg-dark);
  color: #f0f0f0;
  border-radius: 20px;
  padding: 44px;
  text-align: center;
}
.price-value {
  font-family: var(--serif);
  font-size: 56px;
  margin: 12px 0 4px;
  color: #fff;
}
.price-list {
  list-style: none;
  padding: 0;
  margin: 28px 0;
  text-align: left;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}
.price-list li {
  padding: 10px 0;
  border-top: 1px solid var(--border-dark);
  color: #cfcfcf;
  font-size: 15px;
}
.price-list li:first-child { border-top: none; }
.price-list li::before { content: '— '; color: var(--accent); }

/* ---------- FAQ ---------- */
.faq-item {
  border-top: 1px solid var(--border);
  padding: 22px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-item h3 { margin-bottom: 8px; font-size: 17px; }
.faq-item p { margin-bottom: 0; }

/* ---------- Forms ---------- */
.opt-in-form {
  display: flex;
  gap: 10px;
  max-width: 440px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.opt-in-form input[type="email"],
.opt-in-form input[type="text"] {
  flex: 1;
  min-width: 200px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--border-dark);
  background: #1a1a1a;
  color: #fff;
  font-size: 15px;
  font-family: var(--sans);
}
.opt-in-form input::placeholder { color: #8a8a8a; }
.section-panel .opt-in-form input {
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--ink);
}
.form-fineprint {
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-dark);
  color: #9e9e9e;
  padding: 48px 0 32px;
  font-size: 13px;
}
.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-links { display: flex; gap: 22px; list-style: none; padding: 0; margin: 0; }
.footer-links a { text-decoration: none; color: #9e9e9e; }
.footer-links a:hover { color: #fff; }

/* ---------- Build note (dev only, remove before publishing) ---------- */
.build-note {
  background: rgba(244, 67, 54, 0.06);
  border: 1px dashed var(--accent);
  color: #b23327;
  font-size: 13px;
  padding: 10px 16px;
  border-radius: 10px;
  margin-bottom: 18px;
}
