/* ============================================================
   site.css  -  Vampires of Tucson, shared stylesheet
   Same design system as the E.L. Frederick author site
   (elfrederick.veridianstudios.com) - canonical COOL palette,
   pure-black background, blood-red accents. No separate VoT
   theme; this is the shared system plus VoT-only additions
   (chapter reading pages, comment form) appended at the bottom.
   Styles BOTH chrome markup conventions (.nav-name / .nav-brand,
   .footer-name / .footer-brand) so every page renders identically
   with no per-page HTML changes.
   ============================================================ */

/* ---- Design tokens (canonical cool palette) ---- */
:root {
  --bg:             #000000;
  --bg-card:        #000000;
  --bg-card-hover:  #0a0a0a;
  --bg-hover:       #0a0a0a;
  --red:            #8b1a1a;
  --red-light:      #c0392b;
  --red-glow:       #e74c3c;
  --gold:           #b8960c;
  --text:           #c9d1d9;
  --text-dim:       #6e7f94;
  --text-head:      #e8edf2;
  --border:         #1a1a1a;
  --border-red:     #3a1010;
}

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

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
}

a { color: var(--red-light); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--red-glow); }

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* Fixed atmospheric background -- applied to non-index pages via <body class="has-bg">.
   Stays put while content scrolls. Rendered black & white and faded purely in CSS
   (the .webp file is untouched). Tune `opacity` to taste: lower = fainter, higher =
   bolder. grayscale(100%) = full B&W; drop toward 0% to let color back in. */
body.has-bg::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background: url("images/sonoran-gothic-bisbee.webp") center center / cover no-repeat;
  filter: grayscale(100%);
  opacity: 0.15;
  pointer-events: none;
}

/* ---- Layout container (cool pages) ---- */
.container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

/* ---- Navigation (both markup conventions) ---- */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #000000;
  border-bottom: 1px solid var(--border-red);
  padding: 1rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.nav-name, .nav-brand {
  font-family: 'Georgia', serif;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-head);
  font-weight: normal;
  text-decoration: none;
}

.nav-name span, .nav-brand span { color: var(--red-light); }

nav ul, .nav-links { list-style: none; display: flex; gap: 2rem; }

nav ul li a, .nav-links a {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.2s;
  text-decoration: none;
}

nav ul li a:hover, nav ul li a.active, .nav-links a:hover, .nav-links a.active { color: var(--red-light); }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 0.75rem 1.8rem;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--red);
  color: var(--text-head);
  transition: all 0.2s;
  font-family: inherit;
}

.btn-row { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

.btn-primary {
  display: inline-block;
  padding: 0.75rem 1.8rem;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--red);
  border: 1px solid var(--red);
  color: var(--text-head);
  transition: all 0.2s;
  text-decoration: none;
}

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

.btn-ghost { background: transparent; }
.btn-ghost:hover { background: rgba(139, 26, 26, 0.15); color: var(--red-light); }

.btn-secondary {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.15rem;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
}

.btn-secondary:hover { color: var(--gold); border-color: var(--gold); }

/* ---- Section primitives ---- */
section { padding: 5rem 0; position: relative; z-index: 1; }

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: normal;
  color: var(--text-head);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.divider { width: 48px; height: 1px; background: var(--red); margin-bottom: 2rem; }

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.25rem;
}

.section-header h2 {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-head);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-header .chapter-count {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-style: italic;
  letter-spacing: 0.08em;
}

/* ---- Book-page template (shared by the book pages) ---- */
.book-hero {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2.5rem 4rem;
  border-bottom: 1px solid var(--border-red);
}

.hero-text .series-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red-light);
  font-style: italic;
  margin-bottom: 0.6rem;
}

.hero-text .genre-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 1rem;
}

.hero-text h1 {
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 400;
  color: var(--text-head);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hero-text .subtitle {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.hero-text .timeline {
  font-size: 0.78rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  border-left: 2px solid var(--border-red);
  padding-left: 0.75rem;
  margin-bottom: 1.75rem;
}

.hero-text .desc {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.75;
  max-width: 560px;
  text-align: justify;
  margin-bottom: 2rem;
}

.hero-text .desc p + p { margin-top: 1rem; }

.hero-cover { width: 100%; aspect-ratio: 2 / 3; overflow: hidden; border: 1px solid var(--border); }
.hero-cover img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.9); }

.chapters-section { max-width: 1200px; margin: 0 auto; padding: 4rem 2.5rem 5rem; }

.prose-empty { color: var(--text-dim); font-style: italic; text-align: center; padding: 2rem 0; }

.draft-notice {
  max-width: 640px;
  margin: 0 auto 2.5rem;
  padding: 0.9rem 1.2rem;
  background: rgba(184, 150, 12, 0.08);
  border: 1px solid rgba(184, 150, 12, 0.3);
  color: var(--gold);
  font-size: 0.85rem;
  font-style: italic;
  line-height: 1.6;
  text-align: center;
}

/* ---- Chapter grid (book index pages) ---- */
.chapter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.chapter-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s;
  text-decoration: none;
  color: inherit;
}

.chapter-card:hover { border-color: var(--border-red); color: inherit; }
.chapter-card:hover .chapter-img img { filter: brightness(1); }
.chapter-card:hover .chapter-read { color: var(--gold); border-color: var(--gold); }

.chapter-img { width: 100%; aspect-ratio: 3 / 2; overflow: hidden; border-bottom: 1px solid var(--border); }
.chapter-img img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.82); transition: filter 0.3s; }

.chapter-body { padding: 1rem 1rem 0.9rem; display: flex; flex-direction: column; flex: 1; }
.chapter-num { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red-light); font-style: italic; margin-bottom: 0.3rem; }
.chapter-subtitle { font-size: 0.82rem; color: var(--text-dim); font-style: italic; line-height: 1.4; flex: 1; margin-bottom: 0.8rem; }
.chapter-read { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red-light); border-bottom: 1px solid var(--border-red); padding-bottom: 0.1rem; align-self: flex-start; transition: color 0.2s, border-color 0.2s; }

.chapter-card.coming-soon { opacity: 0.45; }

@media (max-width: 1100px) { .chapter-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 860px) { .chapter-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .chapter-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; } }

/* ---- Footer (both markup conventions) ---- */
footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-name, .footer-brand { font-size: 0.85rem; color: var(--text-dim); letter-spacing: 0.1em; }
.footer-name span, .footer-brand span { color: var(--red-light); }
.footer-copy { font-size: 0.8rem; color: var(--text-dim); opacity: 0.6; }
.footer-links { display: flex; gap: 1.5rem; list-style: none; }
.footer-links a { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); text-decoration: none; }
.footer-links a:hover { color: var(--red-light); }

/* ---- Page hero (articles index, other listing pages) ---- */
.page-hero {
  padding: 5rem 0 3rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.page-hero .hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 1rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: normal;
  color: var(--text-head);
  letter-spacing: 0.04em;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.page-hero p { font-size: 1.1rem; color: var(--text-dim); max-width: 640px; font-style: italic; line-height: 1.65; text-align: justify; }

/* ---- Article grid (articles index page) ---- */
.articles-section { padding: 4rem 0 5rem; position: relative; z-index: 1; }

.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.article-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.article-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
  z-index: 2;
}

.article-card:hover { background: var(--bg-hover); border-color: var(--border-red); }
.article-card:hover::before { transform: scaleX(1); }

.article-image-wrap {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #050202;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.article-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(15%) contrast(1.05);
  transition: filter 0.3s, transform 0.4s;
}

.article-card:hover .article-image-wrap img { filter: grayscale(0%) contrast(1.1); transform: scale(1.02); }

.article-body { padding: 1.5rem 1.5rem 1.75rem; display: flex; flex-direction: column; flex: 1; }
.article-tag { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; font-style: italic; color: var(--red-light); margin-bottom: 0.65rem; }
.article-title { font-size: 1.15rem; font-weight: normal; color: var(--text-head); margin-bottom: 0.85rem; letter-spacing: 0.02em; line-height: 1.3; }
.article-blurb { font-size: 0.92rem; color: var(--text-dim); line-height: 1.65; margin-bottom: 1.5rem; text-align: justify; flex: 1; }
.article-link { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--red-light); border-bottom: 1px solid var(--border-red); padding-bottom: 2px; align-self: flex-start; transition: all 0.2s; }
.article-link:hover { color: var(--red-glow); border-color: var(--red-light); }

@media (max-width: 640px) {
  .page-hero { padding: 3rem 0 2rem; }
  .articles-section { padding: 2.5rem 0 3.5rem; }
}

/* ============================================================
   VoT-only additions below - not present on the ELFrederick
   author site, since it has no chapter-reading pages or
   comment form. Uses the same tokens/primitives as above.
   ============================================================ */

/* ---- Chapter reading page - matches ELF-Site's preface.njk template:
   left-aligned header block, justified prose in the standard .container. ---- */
.chapter-hero {
  padding: 3.5rem 0 2.5rem;
  border-bottom: 1px solid var(--border-red);
}

.chapter-hero .series-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red-light);
  font-style: italic;
  margin-bottom: 0.6rem;
}

.chapter-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  color: var(--text-head);
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
}

.chapter-hero .location {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--gold);
}

.prose { padding: 3rem 0 4rem; }

.prose p {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 1.6rem;
  text-align: justify;
}

.prose p.tag-internal {
  font-style: italic;
  color: var(--text-dim);
}

.prose p.tag-beast {
  font-weight: bold;
  color: var(--red-light);
}

.prose blockquote.tag-handwriting {
  border-left: 2px solid var(--gold);
  padding: 0.25rem 0 0.25rem 1.5rem;
  margin: 1.75rem 0;
  font-style: italic;
  color: var(--gold);
  text-align: left;
}

.prose p.tag-fangbot code {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 0.6rem 1rem;
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  color: var(--text-dim);
  white-space: pre-wrap;
}

.prose h1 { font-size: 1.4rem; color: var(--text-head); margin: 2rem 0 1rem; font-weight: 400; }
.prose strong { color: var(--text-head); }
.prose a { border-bottom: 1px solid var(--border-red); }
.prose ol, .prose ul { margin: 0 0 1.4rem 1.4rem; color: var(--text); text-align: left; }
.prose li { margin-bottom: 0.4rem; }
.prose hr { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }

.chapter-nav {
  padding: 0 0 4rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.chapter-nav a {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.15rem;
}

.chapter-nav a:hover { color: var(--red-light); border-color: var(--border-red); }
.chapter-nav .spacer { flex: 1; }

/* ---- Chapter comment form ---- */
.comment-section { border-top: 1px solid var(--border); padding: 3rem 0 4rem; }

.comment-note {
  font-size: 0.88rem;
  color: var(--text-dim);
  font-style: italic;
  margin-bottom: 0.75rem;
}

.comment-disclaimer {
  font-size: 0.8rem;
  color: var(--gold);
  border-left: 2px solid var(--gold);
  padding-left: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.ai-disclosure {
  font-size: 0.78rem;
  color: var(--red-light);
  font-style: italic;
  text-align: center;
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.comment-form { display: flex; flex-direction: column; gap: 1.2rem; }

.comment-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.comment-form label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.4rem;
}

.comment-form input,
.comment-form textarea {
  width: 100%;
  background: #0a0a0a;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--text);
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  transition: border-color 0.2s;
  outline: none;
}

.comment-form input:focus,
.comment-form textarea:focus { border-color: var(--red); }

.comment-form textarea { resize: vertical; min-height: 120px; line-height: 1.6; }

.comment-on {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-bottom: 0.25rem;
}
.comment-on strong { color: var(--text-head); font-weight: normal; font-style: italic; }

/* Star rating: radio inputs in reverse DOM order, CSS-only fill on
   hover/checked via the general sibling combinator. No JS needed. */
.star-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 0.2rem;
}

.star-rating input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}

.star-rating label {
  font-size: 1.6rem;
  line-height: 1;
  color: var(--border-red);
  cursor: pointer;
  transition: color 0.15s;
}

.star-rating input:checked ~ label,
.star-rating input:hover ~ label,
.star-rating label:hover ~ label {
  color: var(--gold);
}

.comment-submit {
  align-self: flex-start;
  margin-top: 0.25rem;
  padding: 0.75rem 2rem;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: 'Georgia', 'Times New Roman', serif;
  background: transparent;
  border: 1px solid var(--red);
  color: var(--text-head);
  cursor: pointer;
  transition: all 0.2s;
}

.comment-submit:hover { background: var(--red); color: #fff; }

.comment-thanks, .comment-error { display: none; font-size: 0.95rem; padding: 1rem 0; }
.comment-thanks { color: var(--red-light); border-top: 1px solid var(--border-red); }
.comment-error { color: var(--gold); }

@media (max-width: 560px) {
  .comment-row { grid-template-columns: 1fr; }
}

/* ---- Shared responsive rules for chrome + book template ---- */
@media (max-width: 860px) {
  .book-hero { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 1.5rem 3rem; }
  .hero-cover { max-width: 320px; }
}

@media (max-width: 560px) {
  nav { padding: 1rem 1.25rem; }
  nav ul, .nav-links { gap: 1rem; }
  nav ul li a, .nav-links a { font-size: 0.7rem; }
  .chapters-section { padding: 2.5rem 1.25rem 3.5rem; }
  footer { padding: 2rem 1.25rem; }
}

/* ---- Membership / pricing (membership.njk) ---- */
.pricing-section { padding: 3rem 0 5rem; position: relative; z-index: 1; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all 0.25s;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.25s;
}

.pricing-card:hover { background: var(--bg-hover); border-color: var(--border-red); }
.pricing-card:hover::before { transform: scaleX(1); }

.pricing-card.featured { border-color: var(--gold); }
.pricing-card.featured::before { background: var(--gold); transform: scaleX(1); }

.pricing-tier { font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--red-light); margin-bottom: 1rem; }
.pricing-card.featured .pricing-tier { color: var(--gold); }

.pricing-amount { font-size: 2.4rem; color: var(--text-head); font-family: 'Georgia', serif; line-height: 1; margin-bottom: 0.35rem; }
.pricing-amount span { font-size: 0.95rem; color: var(--text-dim); font-style: italic; }

.pricing-period { font-size: 0.85rem; color: var(--text-dim); margin-bottom: 1.5rem; font-style: italic; }

.pricing-desc { font-size: 0.92rem; color: var(--text-dim); line-height: 1.65; margin-bottom: 2rem; flex: 1; }

.pricing-submit {
  align-self: stretch;
  text-align: center;
  padding: 0.85rem 1.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: 'Georgia', 'Times New Roman', serif;
  background: transparent;
  border: 1px solid var(--red);
  color: var(--text-head);
  cursor: pointer;
  transition: all 0.2s;
}

.pricing-submit:hover { background: var(--red); color: #fff; }
.pricing-submit:disabled { opacity: 0.5; cursor: wait; }

.pricing-card.featured .pricing-submit { border-color: var(--gold); }
.pricing-card.featured .pricing-submit:hover { background: var(--gold); color: #000; }

.pricing-includes {
  max-width: 680px;
  margin: 0 auto 3rem;
  text-align: center;
}

.pricing-includes-title {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1.25rem;
}

.pricing-includes-list {
  list-style: none;
  display: inline-flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: left;
}

.pricing-includes-list li {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
  padding-left: 1.4rem;
  position: relative;
}

.pricing-includes-list li::before {
  content: '\2013';
  position: absolute;
  left: 0;
  color: var(--red-light);
}

.pricing-eu-notice {
  max-width: 680px;
  margin: 0 auto 2rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border);
  border-left: 2px solid var(--gold);
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.6;
}
.pricing-eu-notice a { color: var(--gold); }

.pricing-status {
  max-width: 680px;
  margin: 0 auto 2.5rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border-red);
  font-size: 0.95rem;
  line-height: 1.6;
  display: none;
}
.pricing-status.success { display: block; border-color: var(--red); color: var(--text-head); }
.pricing-status.cancelled { display: block; border-color: var(--border); color: var(--text-dim); }
.pricing-status.error { display: block; border-color: var(--gold); color: var(--text-head); }
