/* ============================================
   Fischer Theatre SMS — Stylesheet
   Brand-matched to fischertheatre.com
   ============================================ */

:root {
  --red:        #CC1F1F;
  --red-deep:   #A41616;
  --ink:        #111111;
  --ink-soft:   #1C1C1C;
  --cream:      #F5F2EC;
  --cream-warm: #F5E9C4;
  --white:      #FFFFFF;
  --text:       #222222;
  --text-mute:  #555555;
  --gold:       #F5C518;
  --gold-deep:  #C8932A;
  --border:     #D9D1BE;

  --font-marquee: 'Bebas Neue', 'Oswald', system-ui, sans-serif;
  --font-script:  'Great Vibes', 'Pinyon Script', cursive;
  --font-serif:   'Lora', 'Merriweather', Georgia, serif;
  --font-body:    'Inter', 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-w: 1180px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--red-deep); }

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

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ink);
  color: var(--white);
  padding: 0.85rem var(--gutter);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand-mark {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  text-decoration: none;
  color: var(--white);
}
/* Marquee panel logo — mimics fischertheatre.com bulb-letter sign */
.brand-mark .marquee {
  display: inline-block;
  font-family: var(--font-marquee);
  font-size: 1.45rem;
  letter-spacing: 0.06em;
  color: var(--red);
  background: var(--red);
  border: 1.5px solid #8b0e1a;
  border-radius: 4px;
  padding: 4px 10px 2px;
  -webkit-text-stroke: 1.2px #f5e0a8;
  text-stroke: 1.2px #f5e0a8;
  text-shadow:
    0 0 6px rgba(255, 224, 130, 0.65),
    0 0 12px rgba(245, 197, 24, 0.35);
  line-height: 1;
}
.brand-mark .script {
  display: inline-block;
  font-family: var(--font-script);
  font-size: 0.95rem;
  color: var(--white);
  background: #8a8a8a;
  padding: 2px 10px 1px;
  border-radius: 0 0 4px 4px;
  margin-top: -1px;
}
.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  font-size: 0.92rem;
}
.nav-links a {
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.nav-cta {
  background: var(--red);
  color: var(--white);
  padding: 0.55rem 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  border: 1px solid var(--red);
  border-radius: 2px;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-links a.nav-cta:hover { background: var(--white); color: var(--red); border-color: var(--white); }

@media (max-width: 720px) {
  .nav-links { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  background: var(--ink);
  color: var(--white);
  padding: clamp(3rem, 8vw, 5.5rem) var(--gutter) clamp(2.5rem, 6vw, 4rem);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(245, 197, 24, 0.08), transparent 55%),
    radial-gradient(ellipse at 90% 80%, rgba(204, 31, 31, 0.18), transparent 60%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  text-align: center;
}
.hero-eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.78rem;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
/* Hero marquee panel — large version of the Fischer bulb-sign logo */
.hero-marquee {
  display: inline-block;
  font-family: var(--font-marquee);
  font-size: clamp(3rem, 9vw, 6.2rem);
  letter-spacing: 0.06em;
  color: var(--red);
  background: var(--red);
  border: 3px solid #8b0e1a;
  border-radius: 10px;
  padding: 0.35em 0.55em 0.2em;
  margin: 0;
  line-height: 0.95;
  -webkit-text-stroke: 2.5px #f5e0a8;
  text-stroke: 2.5px #f5e0a8;
  text-shadow:
    0 0 8px rgba(255, 224, 130, 0.7),
    0 0 18px rgba(245, 197, 24, 0.45),
    0 0 36px rgba(245, 197, 24, 0.2);
  box-shadow:
    0 0 30px rgba(204, 31, 31, 0.35),
    inset 0 0 0 1px rgba(255, 224, 130, 0.15);
}
.hero-script {
  display: inline-block;
  font-family: var(--font-script);
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  color: var(--white);
  background: #8a8a8a;
  padding: 0.15em 0.9em 0.05em;
  border-radius: 0 0 6px 6px;
  margin: -2px 0 0;
  font-weight: 400;
}
.hero-tagline {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.6rem;
}
.hero-promise {
  margin: 2.2rem auto 0;
  max-width: 38rem;
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}

/* ---------- Marquee bulb strip (decorative theatre bulbs along a wire) ---------- */
.bulb-strip {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.1rem;
  margin-top: 2.6rem;
  padding: 0 1rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.bulb-strip::before {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: 50%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(245, 197, 24, 0.35) 12%, rgba(245, 197, 24, 0.35) 88%, transparent);
  z-index: 0;
}
.bulb {
  position: relative;
  z-index: 1;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(245, 197, 24, 0.85), 0 0 2px rgba(255, 240, 180, 1);
  animation: blink 2.4s infinite;
}
.bulb:nth-child(2) { animation-delay: 0.3s; }
.bulb:nth-child(3) { animation-delay: 0.6s; }
.bulb:nth-child(4) { animation-delay: 0.9s; }
.bulb:nth-child(5) { animation-delay: 1.2s; }
.bulb:nth-child(6) { animation-delay: 1.5s; }
.bulb:nth-child(7) { animation-delay: 1.8s; }
@keyframes blink {
  0%, 80%, 100% { opacity: 1; }
  40% { opacity: 0.35; }
}

@media (prefers-reduced-motion: reduce) {
  .bulb { animation: none; }
}

/* ---------- Page Sections ---------- */
.section {
  padding: clamp(3rem, 6vw, 4.5rem) var(--gutter);
}
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-narrow {
  max-width: 720px;
  margin: 0 auto;
}

h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 700;
  margin: 0 0 1rem;
  line-height: 1.2;
}
h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 1.5rem 0 0.5rem;
  line-height: 1.3;
}

p { margin: 0 0 1rem; }

/* ---------- Benefit cards ---------- */
.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.benefit {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1.5rem 1.4rem;
}
.benefit-num {
  font-family: var(--font-marquee);
  font-size: 2rem;
  color: var(--red);
  letter-spacing: 0.04em;
  line-height: 1;
}
.benefit-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0.5rem 0 0.4rem;
}
.benefit-body {
  font-size: 0.95rem;
  color: var(--text-mute);
  margin: 0;
  line-height: 1.55;
}

/* ---------- Form section ---------- */
.signup {
  background: var(--ink);
  color: var(--white);
  padding: clamp(3rem, 6vw, 5rem) var(--gutter);
}
.signup .section-narrow { color: var(--white); }
.signup h2 { color: var(--white); }
.signup p { color: rgba(255, 255, 255, 0.85); }

.form-card {
  background: var(--cream);
  color: var(--text);
  border: 1px solid var(--gold-deep);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  margin-top: 1.5rem;
}
.form-card h3 {
  margin-top: 0;
  font-family: var(--font-marquee);
  letter-spacing: 0.04em;
  color: var(--red);
  font-size: 1.6rem;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}
.field label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
}
.field input[type="text"],
.field input[type="tel"],
.field input[type="email"] {
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 1rem;
  font-family: inherit;
  color: var(--text);
}
.field input:focus {
  outline: 2px solid var(--red);
  outline-offset: 1px;
  border-color: var(--red);
}

.consent {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  background: var(--cream-warm);
  border: 1px solid var(--gold-deep);
  padding: 1rem 1.1rem;
  margin: 1.25rem 0;
  font-size: 0.88rem;
  line-height: 1.55;
}
.consent input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 0.2rem;
  width: 18px;
  height: 18px;
  accent-color: var(--red);
}
.consent label { cursor: pointer; }
.consent strong { color: var(--text); }

.btn-primary {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.95rem;
  padding: 0.95rem 2rem;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease;
}
.btn-primary:hover { background: var(--red-deep); color: var(--white); }
.btn-primary:disabled { opacity: 0.6; cursor: not-allowed; }

.fineprint {
  font-size: 0.78rem;
  color: var(--text-mute);
  line-height: 1.55;
  margin-top: 1.25rem;
}

/* ---------- Disclosure block ---------- */
.disclosure-block {
  border-left: 3px solid var(--gold-deep);
  padding: 0.5rem 0 0.5rem 1rem;
  margin: 1.5rem 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text);
  font-family: var(--font-serif);
  font-style: italic;
}

/* ---------- FAQ ---------- */
.faq details {
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-serif);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--font-marquee);
  font-size: 1.4rem;
  color: var(--red);
  transition: transform 0.2s ease;
}
.faq details[open] summary::after {
  content: "\2013";
}
.faq details p {
  margin-top: 0.7rem;
  color: var(--text-mute);
  line-height: 1.6;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--cream-warm);
  padding: 3rem var(--gutter) 2rem;
  color: var(--text);
  font-size: 0.9rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
}
.footer-tagline {
  font-family: var(--font-script);
  font-size: 1.9rem;
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 0.6rem;
}
.footer h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-mute);
  margin: 0 0 0.7rem;
  font-weight: 700;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer li { margin-bottom: 0.4rem; }
.footer a { color: var(--ink); text-decoration: none; }
.footer a:hover { color: var(--red); text-decoration: underline; }
.footer-legal {
  max-width: var(--max-w);
  margin: 2rem auto 0;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  padding-top: 1.25rem;
  font-size: 0.78rem;
  color: var(--text-mute);
}

@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr; gap: 1.75rem; }
}

/* ---------- Policy pages ---------- */
.policy-page {
  background: var(--cream);
  padding: clamp(2rem, 5vw, 4rem) var(--gutter);
}
.policy-inner {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  padding: clamp(2rem, 4vw, 3.5rem);
  border: 1px solid var(--border);
}
.policy-inner h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 0.4rem;
  line-height: 1.2;
}
.policy-inner .effective {
  color: var(--text-mute);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 2rem;
}
.policy-inner h2 {
  font-size: 1.25rem;
  margin-top: 2.2rem;
  margin-bottom: 0.6rem;
}
.policy-inner p, .policy-inner li {
  font-size: 0.98rem;
  line-height: 1.65;
}
.policy-inner ul { padding-left: 1.4rem; }
.policy-inner .verbatim {
  background: var(--cream-warm);
  border-left: 3px solid var(--red);
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
  font-style: italic;
}

.back-link {
  display: inline-block;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  text-decoration: none;
  font-weight: 600;
}
.back-link:hover { text-decoration: underline; }

/* ---------- Success state ---------- */
.success-state {
  display: none;
  background: var(--cream-warm);
  border: 2px solid var(--gold-deep);
  padding: 2rem;
  text-align: center;
}
.success-state.is-visible { display: block; }
.success-state h3 {
  font-family: var(--font-marquee);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: var(--red);
  margin: 0 0 0.5rem;
}
.success-state p { margin: 0; }

/* ---------- SVG Logo Images ---------- */
.brand-mark-img {
  display: block;
  max-height: 52px;
  width: auto;
  /* Ensures the SVG transparent areas (DANVILLE caption) don't overflow nav */
}

.hero-logo-img {
  display: block;
  max-width: 620px;
  width: 90%;
  margin: 0 auto;
}

.hero-since {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0.5rem 0 0;
}

/* ---------- Compact hero (interior pages like /optin/) ---------- */
.hero--compact {
  padding: clamp(2.4rem, 5vw, 3.6rem) var(--gutter) clamp(2rem, 4vw, 2.8rem);
}
.hero-compact-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0.5rem 0 0.9rem;
  color: var(--white);
}
.hero-compact-sub {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  max-width: 36rem;
  margin: 0 auto;
}

/* ---------- Logo SVGs (inline) ---------- */
.brand-mark-img {
  display: block;
  height: 52px;
  width: auto;
}
@media (max-width: 480px) {
  .brand-mark-img { height: 44px; }
}
.hero-logo-img {
  display: block;
  width: 100%;
  max-width: 620px;
  height: auto;
  margin: 0 auto;
}
.hero-since {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.9rem;
  text-align: center;
}

/* ---------- Utilities ---------- */
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 0.6rem;
}
