/* =============================================
   CLAYTONTAYLORWOOD.COM — SHARED STYLESHEET
   ============================================= */

/* -- Reset & base -- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Crimson Text', 'Georgia', 'Times New Roman', serif;
  background: #0d0d14;
  color: #e8e0d0;
  line-height: 1.6;
  font-size: 1.05rem;
}
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: 'Cinzel', 'Georgia', serif; }

/* -- Design tokens -- */
:root {
  --gold:    #c9a84c;
  --gold-lt: #e8c97a;
  --dark:    #0d0d14;
  --dark-2:  #13131f;
  --dark-3:  #1b1b2e;
  --dark-4:  #23233a;
  --mid:     #2e2e4a;
  --text:    #e8e0d0;
  --muted:   #9a9080;
  --cream:   #f5efe0;
  --red:     #8b1a1a;
}

/* -- Utility -- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* -- Announcement bar -- */
.announcement {
  background: var(--gold);
  color: #1a1200;
  text-align: center;
  padding: 8px 16px;
  font-size: 0.88rem;
  font-family: 'Cinzel', 'Georgia', serif;
  letter-spacing: 0.04em;
}
.announcement a { font-weight: 700; text-decoration: underline; }

/* -- Header / Nav -- */
header {
  background: rgba(13,13,20,0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.site-title {
  font-family: 'Cinzel', 'Georgia', serif;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: var(--gold);
}
nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
nav ul li a { color: var(--text); transition: color 0.2s; }
nav ul li a:hover { color: var(--gold); }
nav ul li a.active { color: var(--gold); }
nav ul li a.cta-nav {
  background: var(--gold);
  color: #1a1200;
  padding: 6px 14px;
  border-radius: 3px;
  font-weight: 700;
}
.hamburger {
  display: none;
  background: none;
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  font-size: 1.3rem;
  line-height: 1;
  padding: 6px 12px;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.hamburger:hover { background: rgba(201,168,76,0.1); }

/* -- Section headers -- */
.section-label {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Cinzel', 'Georgia', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--cream);
  margin-bottom: 10px;
}
.section-rule {
  width: 64px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 28px;
}

/* -- Buttons -- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: #1a1200;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.07em;
  padding: 14px 28px;
  border-radius: 3px;
  min-height: 48px;
  transition: background 0.2s, transform 0.15s;
  -webkit-tap-highlight-color: transparent;
}
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-1px); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  color: var(--muted);
  padding: 14px 20px;
  border-bottom: 1px solid var(--muted);
  letter-spacing: 0.04em;
  transition: color 0.2s, border-color 0.2s;
}
.btn-secondary:hover { color: var(--text); border-color: var(--text); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: 3px;
  letter-spacing: 0.06em;
  min-height: 44px;
  transition: background 0.2s, color 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.btn-outline:hover { background: var(--gold); color: #1a1200; }

/* -- Rating tags -- */
.rating-tag {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  padding: 3px 8px;
  border-radius: 2px;
  margin-right: 6px;
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}
.rt-pg     { background: rgba(44,120,44,0.18);   border: 1px solid rgba(44,120,44,0.4);   color: #7ecf7e; }
.rt-r      { background: rgba(139,26,26,0.18);   border: 1px solid rgba(139,26,26,0.4);   color: #e07070; }
.rt-genre  { background: rgba(60,60,120,0.18);   border: 1px solid rgba(60,60,120,0.4);   color: #9898e0; }
.rt-comedy { background: rgba(120,100,30,0.18);  border: 1px solid rgba(120,100,30,0.4);  color: #d4b84a; }
.rt-start  { background: rgba(201,168,76,0.12);  border: 1px solid rgba(201,168,76,0.35); color: var(--gold); font-weight: 600; }

/* -- Proof cards / reviews -- */
.stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
.proof-card {
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 4px;
  padding: 28px 28px 24px;
}
.proof-quote {
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #ccc4b0;
  margin-bottom: 16px;
  font-style: italic;
}
.proof-meta {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.04em;
}
.series-tag {
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--gold);
  padding: 2px 7px;
  border-radius: 2px;
  font-size: 0.65rem;
}

/* -- KU badge -- */
.ku-badge {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  letter-spacing: 0.04em;
}

/* -- Series badge -- */
.series-badge {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold);
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 18px;
}

/* -- Scroll reveal -- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* -- Footer -- */
footer {
  background: #080810;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 36px 24px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-brand {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  color: var(--muted);
  transition: color 0.2s;
  letter-spacing: 0.06em;
  padding: 8px 4px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.footer-links a:hover { color: var(--gold); }
.social-icons { display: flex; gap: 14px; }
.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: border-color 0.2s, color 0.2s;
}
.social-icon:hover { border-color: var(--gold); color: var(--gold); }
.footer-copy {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  color: #555568;
  text-align: center;
  margin-top: 20px;
  letter-spacing: 0.05em;
}

/* -- Responsive nav (mobile) -- */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(13,13,20,0.98);
    backdrop-filter: blur(8px);
    padding: 8px 0 20px;
    border-bottom: 1px solid rgba(201,168,76,0.2);
    gap: 0;
    z-index: 200;
  }
  header { position: sticky; top: 0; }
  header.nav-open nav ul { display: flex; }
  nav ul li { border-bottom: 1px solid rgba(255,255,255,0.06); }
  nav ul li a {
    display: flex;
    align-items: center;
    padding: 14px 24px;
    font-size: 0.82rem;
    min-height: 48px;
  }
  nav ul li a.cta-nav {
    margin: 12px 24px 0;
    justify-content: center;
    border-radius: 3px;
  }
  .nav-inner { padding: 12px 16px; }
  .footer-inner { flex-direction: column; align-items: center; text-align: center; gap: 20px; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 10px 20px; }
  .footer-copy { margin-top: 12px; }
}
