/* ============================================================
   FRONT PAGE NEWS — Editorial Newspaper Design System
   Custom CSS: Barlow Condensed + Inter + Instrument Serif
   ============================================================ */

/* --- CSS Custom Properties --- */
:root {
  --bg: #F5F0EB;
  --bg-alt: #FFFDF9;
  --bg-card: #FFFDF9;
  --bg-dark: #1A1A1A;
  --text: #1A1A1A;
  --text-muted: #4A4A4A;
  --text-faint: #7A7A7A;
  --primary: #C62828;
  --primary-rgb: 198, 40, 40;
  --primary-light: #FDEAEA;
  --primary-dark: #A01E1E;
  --accent: #C62828;
  --border: #D4CFC8;
  --border-bold: #1A1A1A;
  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Instrument Serif', serif;
  --radius-btn: 4px;
  --max-w: 1200px;
}

html.dark {
  --bg: #121212;
  --bg-alt: #1E1E1E;
  --bg-card: #1E1E1E;
  --bg-dark: #0A0A0A;
  --text: #F5F0EB;
  --text-muted: #C8C3BC;
  --text-faint: #8A8580;
  --primary: #EF5350;
  --primary-rgb: 239, 83, 80;
  --primary-light: #2A1515;
  --primary-dark: #E53935;
  --accent: #EF5350;
  --border: #3A3A3A;
  --border-bold: #F5F0EB;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary-dark); }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--text);
  text-wrap: balance;
}

h1 { font-size: clamp(3rem, 8vw, 6rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.125rem; font-weight: 700; }

p { text-wrap: pretty; }

.font-accent { font-family: var(--font-accent); font-style: italic; }
.caption { font-family: var(--font-accent); font-style: italic; font-size: 0.875rem; color: var(--text-faint); }

/* --- Editorial Rules --- */
.rule-hairline { border: 0; border-top: 1px solid var(--border); }
.rule-standard { border: 0; border-top: 2px solid var(--border-bold); }
.rule-accent { border: 0; border-top: 3px solid var(--primary); }

/* --- Layout --- */
.container { max-width: var(--max-w); margin: 0 auto; padding-left: 1.25rem; padding-right: 1.25rem; }
@media (min-width: 768px) { .container { padding-left: 2rem; padding-right: 2rem; } }

.section { padding: 4rem 0; }
@media (min-width: 768px) { .section { padding: 5rem 0; } }
@media (min-width: 1024px) { .section { padding: 6rem 0; } }

/* --- Overline / Eyebrow --- */
.overline {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  display: block;
  margin-bottom: 0.75rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-btn);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.1s;
  text-decoration: none;
  line-height: 1;
}
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: #fff; }

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-bold);
}
.btn-outline:hover { background: var(--border-bold); color: var(--bg); }

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; color: #fff; }

.btn-sm { padding: 0.625rem 1.25rem; font-size: 0.8125rem; }

/* --- Navigation --- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 2px solid var(--border-bold);
  transition: background 0.3s;
}
html.dark .nav { background: var(--bg-alt); }

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 3.5rem;
}
@media (min-width: 768px) { .nav-inner { padding: 0 2rem; height: 4rem; } }

.nav-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}
.nav-logo:hover { color: var(--text); }

.nav-links {
  display: none;
  list-style: none;
  gap: 1.75rem;
  align-items: center;
}
@media (min-width: 768px) { .nav-links { display: flex; } }

.nav-links a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--primary);
  color: #fff !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-btn);
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--primary-dark); color: #fff !important; }

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
@media (min-width: 768px) { .nav-toggle { display: none; } }

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  background: var(--bg);
  border-bottom: 2px solid var(--border-bold);
  padding: 1rem 1.25rem 1.5rem;
}
html.dark .mobile-menu { background: var(--bg-alt); }
.mobile-menu.open { display: block; }
@media (min-width: 768px) { .mobile-menu { display: none !important; } }

.mobile-menu a {
  display: block;
  padding: 0.75rem 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  text-decoration: none;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--text); }

/* Theme toggle (nav) */
.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  padding: 4px;
  display: flex;
  align-items: center;
}
.theme-toggle:hover { color: var(--text); }
.theme-toggle svg { width: 18px; height: 18px; }
html.dark .theme-toggle .icon-sun { display: block; }
html.dark .theme-toggle .icon-moon { display: none; }
html:not(.dark) .theme-toggle .icon-sun { display: none; }
html:not(.dark) .theme-toggle .icon-moon { display: block; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--bg-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.92) 0%, rgba(26,26,26,0.5) 50%, rgba(26,26,26,0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 3rem 1.25rem 0;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
@media (min-width: 768px) { .hero-content { padding: 4rem 2rem 0; } }

.hero h1 {
  color: #fff;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-subline {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.5rem;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

/* News Ticker */
.ticker {
  position: relative;
  z-index: 1;
  background: var(--primary);
  overflow: hidden;
  white-space: nowrap;
  padding: 0.625rem 0;
}
.ticker-track {
  display: inline-flex;
  animation: ticker-scroll 30s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track {
    animation: none;
    overflow-x: auto;
  }
}
.ticker-item {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  padding: 0 2rem;
  display: inline-block;
}
.ticker-sep {
  color: rgba(255,255,255,0.5);
  padding: 0 0.25rem;
  font-weight: 400;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   SOCIAL PROOF BAR
   ============================================================ */
.proof-bar {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}
.proof-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
}
@media (min-width: 768px) { .proof-bar-inner { padding: 0 2rem; gap: 2rem 3rem; } }

.proof-stat {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text);
  white-space: nowrap;
}
.proof-stat strong {
  color: var(--primary);
  font-weight: 800;
  font-size: 1.125rem;
}

/* ============================================================
   FEATURE STORY (7/5 Grid)
   ============================================================ */
.feature-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .feature-grid { grid-template-columns: 7fr 5fr; gap: 3rem; }
}

/* Video facade */
.video-facade {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 2px;
  aspect-ratio: 16 / 9;
  background: var(--bg-dark);
}
.video-facade img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.video-facade:hover img { transform: scale(1.03); }
.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-play-btn {
  width: 64px;
  height: 64px;
  background: rgba(198,40,40,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.video-facade:hover .video-play-btn { background: var(--primary-dark); transform: scale(1.08); }
.video-play-btn svg { width: 28px; height: 28px; fill: #fff; margin-left: 3px; }

/* Sidebar: Upcoming Shows */
.sidebar-shows { border-left: 2px solid var(--border); padding-left: 1.5rem; }
@media (max-width: 767px) { .sidebar-shows { border-left: none; padding-left: 0; border-top: 2px solid var(--border); padding-top: 1.5rem; } }

.show-item {
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 1rem;
  align-items: baseline;
}
.show-item:last-child { border-bottom: none; }
.show-date {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.875rem;
  color: var(--primary);
  white-space: nowrap;
  min-width: 4.5rem;
  text-transform: uppercase;
}
.show-venue {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text);
}
.show-location {
  font-size: 0.8125rem;
  color: var(--text-faint);
}

/* ============================================================
   SERVICES (3 columns + vertical dividers)
   ============================================================ */
.services-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
}

.service-col {
  padding: 0 1.5rem;
}
@media (max-width: 767px) {
  .service-col {
    padding: 0;
    border-bottom: 1px solid var(--border);
    padding-bottom: 2rem;
  }
  .service-col:last-child { border-bottom: none; padding-bottom: 0; }
}
@media (min-width: 768px) {
  .service-col { border-right: 1px solid var(--border); }
  .service-col:first-child { padding-left: 0; }
  .service-col:last-child { border-right: none; padding-right: 0; }
}

.service-col h3 { margin-bottom: 1rem; }
.service-col p { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.7; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-block {
  position: relative;
  max-width: 48rem;
}
.testimonial-mark {
  font-family: var(--font-accent);
  font-size: 6rem;
  line-height: 1;
  color: var(--primary);
  position: absolute;
  top: -1rem;
  left: -0.5rem;
  opacity: 0.3;
  user-select: none;
}
.testimonial-quote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.testimonial-cite {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

/* ============================================================
   ABOUT (reversed asymmetric)
   ============================================================ */
.about-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .about-grid { grid-template-columns: 5fr 7fr; gap: 3rem; align-items: start; }
}

.about-photo {
  border-radius: 2px;
  overflow: hidden;
}
.about-photo img { width: 100%; height: auto; object-fit: cover; }

.about-body h2 { margin-bottom: 1.25rem; }
.about-body p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.7; }

/* ============================================================
   CTA (Dark section)
   ============================================================ */
.cta-section {
  background: var(--bg-dark);
  border-top: 3px solid var(--primary);
  padding: 5rem 0;
  text-align: center;
}
.cta-section h2 { color: #fff; margin-bottom: 0.75rem; }
.cta-section .cta-subline {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.25rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
}
.cta-section .cta-email {
  display: block;
  margin-top: 1rem;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.5);
}
.cta-section .cta-email a { color: rgba(255,255,255,0.7); }
.cta-section .cta-email a:hover { color: #fff; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.6);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }

.footer h4 {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 1rem;
}
.footer a { color: rgba(255,255,255,0.6); font-size: 0.875rem; }
.footer a:hover { color: #fff; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 0.5rem; }

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8125rem;
}
.footer-credit {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}
.footer-credit a { color: rgba(255,255,255,0.5); }
.footer-credit a:hover { color: #fff; }

/* ============================================================
   DISCLAIMER BAR
   ============================================================ */
.disclaimer-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 101;
  background: var(--bg-dark);
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  text-align: center;
  padding: 0.5rem 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.disclaimer-bar a { color: rgba(255,255,255,0.6); text-decoration: underline; }
.disclaimer-bar a:hover { color: #fff; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 0.375rem;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--bg-alt);
  color: var(--text);
  transition: border-color 0.2s;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.12);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%234A4A4A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }

.form-error {
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid rgba(var(--primary-rgb), 0.2);
  border-radius: 2px;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  display: none;
}
.form-error.visible { display: block; }

.form-success {
  text-align: center;
  padding: 3rem 1rem;
  display: none;
}
.form-success.visible { display: block; }
.form-success h3 { margin-bottom: 0.75rem; }
.form-success p { color: var(--text-muted); }

.honeypot { position: absolute; left: -9999px; }

/* Consent checkbox */
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.form-check input[type="checkbox"] {
  margin-top: 0.25rem;
  accent-color: var(--primary);
  flex-shrink: 0;
}
.form-check label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8125rem;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.0625rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text);
  text-align: left;
}
.faq-question:hover { color: var(--primary); }
.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
  color: var(--text-faint);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer-inner {
  padding: 0 0 1.25rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.9375rem;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--bg-alt);
  border-bottom: 2px solid var(--border-bold);
  padding: 4rem 0 3rem;
}
@media (min-width: 768px) { .page-hero { padding: 5rem 0 3.5rem; } }
.page-hero h1 { margin-bottom: 0.75rem; }
.page-hero p { color: var(--text-muted); font-size: 1.0625rem; max-width: 40rem; line-height: 1.7; }

/* ============================================================
   SERVICE DETAIL PAGE
   ============================================================ */
.service-hero-img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 2px;
  margin-bottom: 2rem;
}
.service-content h2 { margin-bottom: 1rem; }
.service-content h3 { margin-bottom: 0.75rem; font-size: 1.125rem; }
.service-content p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.7; }

/* ============================================================
   UTILITY
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.hidden { display: none !important; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Scroll padding for anchor links */
html { scroll-padding-top: 5rem; }

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
