/* ============================================================
   Manuel Amezcua — Arts & Entertainment News, Ventura County CA
   Demo concept by 60minutesites.com
   Palette: studio ink + marquee gold + a single on-air red
   ============================================================ */

:root {
  --ink-950: #060a12;
  --ink-900: #0b1220;
  --ink-850: #0f1728;
  --ink-800: #131e33;
  --ink-700: #1c2b48;
  --paper: #f7f5ef;
  --paper-2: #ece7dc;
  --rule: #ddd6c7;
  --ink: #1b2230;
  --muted: #5f6a7d;
  --muted-light: #9fb0c6;
  --gold: #b8913f;
  --gold-bright: #e6c377;
  --gold-soft: rgba(201, 162, 77, 0.22);
  --signal: #d9503f;
  --display: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 74px; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 1.4rem; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(6, 10, 18, 0.93);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 162, 77, 0.18);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; max-width: 1120px; margin: 0 auto; padding: 0.65rem 1.4rem; }
.brand { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.brand-mark { width: 40px; height: 40px; flex: none; }
.brand-name {
  display: block; font-family: var(--display); font-weight: 700;
  font-size: 1.08rem; letter-spacing: 0.13em; color: var(--paper); line-height: 1.2;
}
.brand-tag { display: block; font-size: 0.55rem; letter-spacing: 0.2em; color: var(--gold-bright); font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 1.5rem; list-style: none; }
.nav-links a:not(.btn) {
  color: var(--muted-light); text-decoration: none; font-size: 0.86rem; font-weight: 500;
  letter-spacing: 0.03em; transition: color 0.2s;
}
.nav-links a:not(.btn):hover { color: var(--paper); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 0.4rem; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--paper); margin: 5px 0; border-radius: 2px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  padding: 0.78rem 1.5rem; border-radius: 999px;
  font-family: var(--sans); font-weight: 600; font-size: 0.92rem; letter-spacing: 0.02em;
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s, border-color 0.18s, color 0.18s;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; flex: none; }
.btn-gold {
  background: linear-gradient(135deg, #e0b862, #b98f3c);
  color: #14100a; box-shadow: 0 6px 18px rgba(201, 162, 77, 0.3);
}
.btn-gold:hover { transform: translateY(-1px); box-shadow: 0 10px 26px rgba(201, 162, 77, 0.42); }
.btn-ghost { border-color: rgba(247, 245, 239, 0.34); color: var(--paper); }
.btn-ghost:hover { border-color: var(--gold-bright); color: var(--gold-bright); }
.btn-outline { border-color: rgba(27, 34, 48, 0.3); color: var(--ink-900); }
.btn-outline:hover { background: var(--ink-900); color: var(--paper); border-color: var(--ink-900); }
.btn-wide { width: 100%; }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--ink-950); color: var(--paper); isolation: isolate; }
.hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 42%; z-index: -2;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(100deg, rgba(6, 10, 18, 0.97) 0%, rgba(6, 10, 18, 0.9) 38%, rgba(6, 10, 18, 0.62) 62%, rgba(6, 10, 18, 0.82) 100%),
    linear-gradient(to bottom, rgba(6, 10, 18, 0.55), transparent 30%, rgba(6, 10, 18, 0.85));
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: -1;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 100% 3px;
}
.hero-inner { position: relative; padding: 4.6rem 0 4.4rem; }
.hero-grid { display: grid; grid-template-columns: 1.35fr 0.85fr; gap: 3rem; align-items: center; }
.kicker {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-bright);
  margin-bottom: 1.05rem;
}
.hero h1 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(2.2rem, 4.5vw, 3.45rem);
  line-height: 1.07; margin-bottom: 1.2rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}
.hero h1 em { font-style: italic; color: var(--gold-bright); }
.hero .lede { font-size: 1.05rem; color: #d3dcea; max-width: 35rem; margin-bottom: 1.9rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 1rem; }
.hero-note { font-size: 0.84rem; color: var(--muted-light); max-width: 32rem; }

/* availability badge */
.on-air {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(6, 10, 18, 0.75); border: 1px solid rgba(217, 80, 63, 0.5);
  color: #f0d9d5; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.22em;
  padding: 0.36rem 0.85rem; border-radius: 999px; text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.on-air i { width: 7px; height: 7px; border-radius: 50%; background: var(--signal); box-shadow: 0 0 10px var(--signal); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

/* callback card */
.call-card {
  background: rgba(6, 10, 18, 0.82);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(201, 162, 77, 0.35);
  border-radius: 16px; padding: 1.8rem 1.6rem;
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.5);
  text-align: center;
}
.call-card .label { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-bright); }
.call-card .number {
  display: block; font-family: var(--display); font-weight: 700;
  font-size: clamp(1.6rem, 2.4vw, 2rem); color: var(--paper);
  text-decoration: none; margin: 0.5rem 0 0.3rem; letter-spacing: 0.01em;
}
.call-card .number:hover { color: var(--gold-bright); }
.call-card .sub { font-size: 0.85rem; color: var(--muted-light); margin-bottom: 1.3rem; }
.call-card .btn + .btn { margin-top: 0.6rem; }
.call-card .fine { font-size: 0.76rem; color: var(--muted-light); margin-top: 1.1rem; }

/* ---------- ticker ---------- */
.ticker {
  position: relative; z-index: 2;
  background: var(--ink-950); color: var(--muted-light);
  border-top: 1px solid rgba(201, 162, 77, 0.16);
  border-bottom: 1px solid rgba(201, 162, 77, 0.16);
  display: flex; align-items: stretch; overflow: hidden;
}
.ticker-label {
  flex: none; display: flex; align-items: center;
  background: linear-gradient(135deg, #cfa54f, #9c7830);
  color: #14100a; font-size: 0.66rem; font-weight: 800; letter-spacing: 0.2em;
  padding: 0.85rem 1.2rem; text-transform: uppercase;
}
.ticker-track { overflow: hidden; flex: 1; display: flex; align-items: center; }
.ticker-row { display: flex; white-space: nowrap; animation: slide 52s linear infinite; }
.ticker-row span { font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; padding-left: 2.4rem; }
.ticker-row span::before { content: "\2022"; color: var(--gold); margin-right: 2.4rem; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
.section { padding: 5rem 0; }
.section-alt { background: var(--paper-2); }
.section-dark { background: var(--ink-900); color: var(--paper); }
.section-dark p { color: #ccd6e4; }
.section-head { max-width: 44rem; margin-bottom: 2.6rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .kicker { color: var(--gold); }
.section-dark .section-head .kicker { color: var(--gold-bright); }
.section-head h2 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem); line-height: 1.14; margin-bottom: 0.9rem;
}
.section-head h2 em { font-style: italic; color: var(--gold); }
.section-dark .section-head h2 em { color: var(--gold-bright); }
.section-head p { color: var(--muted); font-size: 1.02rem; }
.body-copy p { color: var(--muted); }
.body-copy p + p { margin-top: 1rem; }

/* ---------- facts ---------- */
.facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }
.fact { border-top: 2px solid rgba(201, 162, 77, 0.4); padding-top: 1rem; }
.fact b { display: block; font-family: var(--display); font-size: 1.7rem; line-height: 1.15; color: var(--ink-900); margin-bottom: 0.25rem; }
.section-dark .fact b { color: var(--gold-bright); }
.fact span { font-size: 0.88rem; color: var(--muted); }
.section-dark .fact span { color: var(--muted-light); }

/* ---------- cards ---------- */
.cards { display: grid; gap: 1.3rem; }
.cards.two { grid-template-columns: repeat(2, 1fr); }
.cards.three { grid-template-columns: repeat(3, 1fr); }
.cards.four { grid-template-columns: repeat(4, 1fr); }
.card {
  background: #fff; border: 1px solid var(--rule); border-radius: 14px;
  padding: 1.6rem 1.5rem; transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(11, 18, 32, 0.09); border-color: rgba(201, 162, 77, 0.5); }
.section-dark .card { background: rgba(255, 255, 255, 0.035); border-color: rgba(201, 162, 77, 0.2); }
.card .icon { width: 26px; height: 26px; color: var(--gold); margin-bottom: 0.9rem; }
.section-dark .card .icon { color: var(--gold-bright); }
.card h3 { font-family: var(--display); font-size: 1.18rem; font-weight: 700; margin-bottom: 0.4rem; }
.card p { font-size: 0.93rem; color: var(--muted); }
.section-dark .card p { color: var(--muted-light); }

/* ---------- split + figure ---------- */
.split { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 3.2rem; align-items: center; }
.figure { position: relative; }
.figure img { width: 100%; height: auto; border-radius: 14px; box-shadow: 0 22px 46px rgba(11, 18, 32, 0.22); }
.figure figcaption {
  margin-top: 0.8rem; font-size: 0.76rem; letter-spacing: 0.02em; color: var(--muted);
}
.figure .tagline {
  position: absolute; left: 1rem; top: 1rem;
  background: rgba(6, 10, 18, 0.88); color: var(--paper);
  border-left: 3px solid var(--gold-bright);
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.5rem 0.9rem; border-radius: 0 6px 6px 0;
}

/* ---------- timeline ---------- */
.timeline { list-style: none; margin-top: 1.8rem; }
.timeline li { position: relative; padding: 0 0 1.35rem 1.9rem; border-left: 1px solid var(--rule); }
.timeline li:last-child { padding-bottom: 0; border-left-color: transparent; }
.timeline li::before {
  content: ""; position: absolute; left: -5px; top: 7px;
  width: 9px; height: 9px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px var(--paper-2);
}
.timeline b { display: block; font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.15rem; }
.timeline p { color: var(--muted); font-size: 0.95rem; }

/* ---------- ventura band ---------- */
.band { position: relative; overflow: hidden; background: var(--ink-950); color: var(--paper); isolation: isolate; }
.band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 55%; z-index: -2; }
.band::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to right, rgba(6, 10, 18, 0.94) 0%, rgba(6, 10, 18, 0.78) 45%, rgba(6, 10, 18, 0.5) 100%);
}
.band-inner { padding: 4.4rem 0; max-width: 40rem; }
.band h2 { font-family: var(--display); font-size: clamp(1.7rem, 3vw, 2.3rem); line-height: 1.16; margin-bottom: 0.9rem; }
.band h2 em { font-style: italic; color: var(--gold-bright); }
.band p { color: #d3dcea; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 2.6rem; align-items: start; }
/* ---------- form ---------- */
.form-shell {
  background: rgba(255, 255, 255, 0.045); border: 1px solid rgba(201, 162, 77, 0.24);
  border-radius: 16px; padding: 2rem 1.9rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1rem; }
.field label { display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-light); margin-bottom: 0.4rem; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 0.95rem; color: var(--ink);
  background: var(--paper); border: 1px solid rgba(201, 162, 77, 0.3); border-radius: 9px;
  padding: 0.72rem 0.9rem; transition: border-color 0.18s, box-shadow 0.18s;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold-bright); box-shadow: 0 0 0 3px rgba(201, 162, 77, 0.28);
}
.form-fine { font-size: 0.79rem; color: var(--muted-light); margin-top: 0.9rem; }
.hp { position: absolute; left: -9999px; opacity: 0; }

/* ---------- footer ---------- */
.footer { background: var(--ink-950); color: var(--muted-light); padding: 3rem 0 2rem; font-size: 0.88rem; }
.footer-top { display: flex; flex-wrap: wrap; gap: 1.8rem; justify-content: space-between; align-items: flex-start; padding-bottom: 1.6rem; border-bottom: 1px solid rgba(201, 162, 77, 0.16); }
.footer-brand .brand-name { font-size: 1.05rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.2rem; list-style: none; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--gold-bright); }
.footer-bottom { padding-top: 1.4rem; display: grid; gap: 0.7rem; font-size: 0.78rem; line-height: 1.6; }
.footer-bottom a { color: var(--gold-bright); text-decoration: none; }
.credits { color: #6d7f96; }
.credits a { color: #8fa2ba; }

/* ---------- reveal ---------- */
[data-animate] { opacity: 0; transform: translateY(14px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-animate].in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-inner { position: relative; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0.2rem;
    background: var(--ink-950); border-bottom: 1px solid rgba(201, 162, 77, 0.2);
    padding: 0.8rem 1.4rem 1.2rem; display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a:not(.btn) { display: block; padding: 0.6rem 0; }
  .nav-links .btn { width: 100%; margin-top: 0.4rem; }
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .cards.three, .cards.four { grid-template-columns: repeat(2, 1fr); }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .band::before { background: linear-gradient(to right, rgba(6, 10, 18, 0.93), rgba(6, 10, 18, 0.8)); }
}
@media (max-width: 620px) {
  .section { padding: 3.6rem 0; }
  .hero-inner { padding: 3rem 0 3.2rem; }
  .cards.two, .cards.three, .cards.four { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .ticker-label { padding: 0.75rem 0.8rem; font-size: 0.58rem; letter-spacing: 0.12em; }
  .form-shell { padding: 1.5rem 1.2rem; }
  .figure .tagline { font-size: 0.64rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker-row { animation: none; }
  .on-air i { animation: none; }
  [data-animate] { opacity: 1; transform: none; transition: none; }
}
