/* ============================================================
   RAGGEDY EDGE — SHARED SITE STYLESHEET
   Fonts: Cormorant Garamond (display) + Nunito (body)

   Every page should load, in this order:
     <link rel="preconnect" href="https://fonts.googleapis.com" />
     <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
     <link href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400;1,600&family=Nunito:wght@300;400;600&display=swap" rel="stylesheet" />
     <link rel="stylesheet" href="style.css" />

   Then only page-specific CSS (a table, a tab set, a pricing
   card, etc.) needs to live in that page's own <style> block.
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 18px; scroll-behavior: smooth; }

:root {
  --cream:   #faf8f4;
  --dark:    #2a1f18;
  --ink:     #3a3228;
  --muted:   #7a6e64;
  --border:  #ddd8cc;
  --gold:    #d4a92a;
  --red:     #c8102e;
  --blue:    #106aa7;
  --night:   #1a0a00;
  --card:    #ffffff;
}

body {
  font-family: 'Nunito', sans-serif;
  font-weight: 300;
  background-color: var(--cream);
  color: var(--dark);
  min-height: 100vh;
  padding: 2rem 1rem;
}

a { color: inherit; text-decoration: underline; }

.re-page { max-width: 800px; margin: 0 auto; }

/* ---------- TOP NAV (every page — the one nav system) ---------- */
.re-topnav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.re-topnav-home {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  flex-shrink: 0;
}
.re-topnav-home span { color: var(--red); }

.re-topnav-links { display: flex; flex-wrap: wrap; gap: 4px; }

.re-topnav-link {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  padding: 4px 10px;
  border: 0.5px solid var(--border);
  border-radius: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.re-topnav-link:hover,
.re-topnav-link.is-active { color: var(--red); border-color: var(--red); }

/* ---------- PHOTO HERO (index, corporate-events, song-list) ---------- */
.re-hero {
  position: relative;
  width: 100%;
  min-height: 370px;
  background-size: cover;
  background-position: center top;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3.5rem 2rem;
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.re-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(26,10,0,0.1) 0%, rgba(61,26,0,0.55) 50%, rgba(28,26,48,0.70) 100%);
  border-radius: 8px;
}

.re-hero-accent-top,
.re-hero-accent-bottom {
  position: absolute;
  left: 0; right: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--red));
  z-index: 2;
}
.re-hero-accent-top    { top: 0; }
.re-hero-accent-bottom { bottom: 0; }

.re-hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.re-eyebrow {
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: gold;
  text-align: center;
  margin-bottom: 0.75rem;
}

.re-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 7vw, 56px);
  font-weight: 600;
  color: #f5f0e8;
  line-height: 1.05;
  text-align: center;
  margin-bottom: 0.6rem;
}

.re-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  color: gold;
  text-align: center;
  margin-bottom: 2rem;
  max-width: 560px;
}

.re-cta-btn {
  display: inline-block;
  padding: 0.7rem 2.25rem;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-family: 'Nunito', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.re-cta-btn:hover { background: var(--gold); color: var(--night); }

/* ---------- PLAIN PAGE HEADER (schedule-style pages, no photo) ---------- */
.re-page-header {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 0.5px solid var(--border);
}
.re-page-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}
.re-page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 6vw, 52px);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.re-page-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}
.re-page-sub a { color: var(--blue); }

/* ---------- SIZZLE REEL / VIDEO EMBED ---------- */
.re-sizzle,
.re-video-wrap {
  margin: 2rem auto;
  max-width: 720px;
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
}
.re-sizzle iframe,
.re-video-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ---------- SECTION PATTERN (every page) ---------- */
.re-section { margin-bottom: 2.25rem; }

.re-section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.re-section-label::after {
  content: '';
  flex: 1;
  height: 0.5px;
  background: var(--border);
}

.re-bio,
.re-intro,
.re-repertoire {
  font-size: 16px;
  line-height: 1.85;
  color: var(--ink);
}
.re-bio em,
.re-intro em,
.re-repertoire em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
}

/* ---------- CHIPS ---------- */
.re-artist-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 1rem;
}
.re-chip {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 4px 11px;
  border: 0.5px solid #ccc4b4;
  border-radius: 2px;
  color: #6b5e52;
  background: #f0ece4;
}
.re-chip.gold { border-color: var(--gold); color: #7a5a08; background: #fdf6e3; }
.re-chip.red  { border-color: var(--red);  color: #7a0a1c; background: #fff0f2; }

/* ---------- BOOKING / CONTACT BAND (every page) ---------- */
.re-contact-band {
  background: var(--card);
  border: 0.5px solid var(--border);
  border-top: 3px solid var(--red);
  border-radius: 0 0 6px 6px;
  padding: 1.75rem 2rem;
}
.re-contact-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 0.25rem;
}
.re-contact-sub { font-size: 13px; color: var(--muted); margin-bottom: 1.5rem; }
.re-contact-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 1.25rem;
}
.re-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0.65rem 1.4rem;
  background: var(--red);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s;
}
.re-btn-primary:hover { background: #a00c24; }
.re-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0.65rem 1.4rem;
  background: transparent;
  color: var(--dark);
  font-family: 'Nunito', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid #ccc4b4;
  border-radius: 2px;
  text-decoration: none;
  transition: border-color 0.2s;
}
.re-btn-ghost:hover { border-color: var(--dark); }
.re-contact-email-plain { font-size: 13px; color: #9a8e84; }

/* ---------- FOOTER (every page) ---------- */
.re-footer {
  border-top: 0.5px solid var(--border);
  padding: 1.5rem 0 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}
.re-footer-name { font-family: 'Cormorant Garamond', serif; font-size: 14px; color: #9a8e84; }
.re-footer-links { display: flex; gap: 18px; }
.re-footer-link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9a8e84;
  text-decoration: none;
}
.re-footer-link:hover { color: var(--red); }

/* ---------- BACK TO TOP LINK ---------- */
.re-top-link {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  margin-top: 2rem;
}
.re-top-link:hover { color: var(--red); }

/* ---------- DIVIDER ---------- */
.re-divider {
  border: none;
  border-top: 0.5px solid var(--border);
  margin: 3rem 0;
}

/* ---------- NEWSLETTER SIGNUP SNIPPET ---------- */
.re-nl-wrap { margin-bottom: 2.25rem; }
.re-nl-section-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.re-nl-section-label::after { content: ''; flex: 1; height: 0.5px; background: var(--border); }
.re-nl-card {
  background: #fff;
  border: 0.5px solid var(--border);
  border-top: 3px solid var(--red);
  border-radius: 0 0 6px 6px;
  padding: 1.75rem 2rem 1.5rem;
  max-width: 540px;
}
.re-nl-heading { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 600; color: var(--dark); margin-bottom: 0.3rem; }
.re-nl-sub { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-style: italic; color: var(--muted); margin-bottom: 1.5rem; line-height: 1.5; }
.re-nl-field-label { font-size: 10px; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: #9a8e84; margin-bottom: 0.4rem; display: block; }
.re-nl-input {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 0.5px solid #ccc4b4;
  border-radius: 2px;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--dark);
  background: var(--cream);
  outline: none;
  transition: border-color 0.2s;
  margin-bottom: 1.25rem;
}
.re-nl-input:focus { border-color: var(--gold); background: #fff; }
.re-nl-honeypot { position: absolute; left: -5000px; }
.re-nl-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0.65rem 1.6rem;
  background: var(--red);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s;
}
.re-nl-btn:hover { background: #a00c24; }
.re-nl-fine { font-size: 12px; color: #b0a498; margin-top: 1rem; line-height: 1.6; }

/* MailerLite embedded form accent */
.ml-embedded .ml-form-embedWrapper { border-top: 4px solid var(--red) !important; }

/* ---------- RESPONSIVE (shared components) ---------- */
@media (max-width: 520px) {
  body { padding: 1rem 0.75rem; }

  .re-contact-buttons { flex-direction: column; align-items: stretch; }
  .re-btn-primary, .re-btn-ghost { justify-content: center; }
}
