:root {
  --purple: #1a0a2e;
  --purple-light: #3d1f5c;
  --red: #8b0000;
  --red-bright: #c41e3a;
  --dark: #0d0618;
  --text: #e8dce8;
  --white: #ffffff;
  --font-head: 'Creepster', cursive;
  --font-body: 'Source Sans 3', sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-body); color: var(--text); background: var(--dark); line-height: 1.7; font-size: 18px; }
a { color: var(--red-bright); text-decoration: none; }
a:hover { color: #ff4466; }
.site-header { background: var(--purple); position: sticky; top: 0; z-index: 100; border-bottom: 3px solid var(--red); }
.header-inner { max-width: 1200px; margin: 0 auto; padding: 1rem 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.logo { font-family: var(--font-head); font-size: 1.6rem; color: var(--red-bright); letter-spacing: 0.05em; }
.nav-list { list-style: none; display: flex; flex-wrap: wrap; gap: 1.75rem; }
.nav-list a { color: var(--text); font-weight: 600; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 0.06em; }
.nav-list a:hover, .nav-list a.active { color: var(--red-bright); }
.hero { position: relative; min-height: 580px; display: flex; align-items: center; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: url('assets/haunted-hero.jpg') center/cover; opacity: 0.4; }
.hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,10,46,0.92), rgba(139,0,0,0.55)); }
.hero-content { position: relative; max-width: 1200px; margin: 0 auto; padding: 4rem 1.5rem; z-index: 1; }
.hero-content h1 { font-family: var(--font-head); font-size: clamp(2.2rem, 5vw, 3.5rem); color: var(--red-bright); margin-bottom: 1rem; text-shadow: 0 0 40px rgba(196,30,58,0.5); }
.hero-content .lead { font-size: 1.25rem; max-width: 620px; margin-bottom: 2rem; }
.btn { display: inline-block; padding: 0.9rem 2.2rem; background: var(--red-bright); color: var(--white); font-weight: 700; border-radius: 0; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.85rem; border: none; cursor: pointer; }
.btn:hover { background: var(--red); text-decoration: none; color: var(--white); }
.btn-ghost { background: transparent; border: 2px solid var(--red-bright); color: var(--red-bright); margin-left: 1rem; }
.btn-ghost:hover { background: var(--red-bright); color: var(--white); }
section { padding: 4.5rem 1.5rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-title { font-family: var(--font-head); font-size: 2rem; color: var(--red-bright); margin-bottom: 0.5rem; letter-spacing: 0.04em; }
.section-subtitle { color: #aaa; margin-bottom: 2.5rem; max-width: 640px; }
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.card { background: var(--purple); border: 1px solid var(--purple-light); padding: 2rem; transition: border-color 0.3s; }
.card:hover { border-color: var(--red-bright); }
.card h3 { font-family: var(--font-head); color: var(--red-bright); font-size: 1.3rem; margin-bottom: 0.75rem; }
.card .meta { color: #c9a0a0; font-size: 0.9rem; margin-bottom: 1rem; }
.alt-section { background: var(--purple); }
.dark-section { background: var(--dark); }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; }
.feature { text-align: center; padding: 2rem 1.5rem; border: 1px solid var(--purple-light); }
.feature h3 { font-family: var(--font-head); color: var(--red-bright); margin-bottom: 0.75rem; font-size: 1.1rem; }
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.review { background: rgba(0,0,0,0.35); padding: 2rem; border-left: 4px solid var(--red-bright); }
.review cite { display: block; margin-top: 1rem; color: #c9a0a0; font-style: normal; }
.location-split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.location-split address { font-style: normal; line-height: 2; }
.page-hero { background: var(--purple); padding: 3.5rem 1.5rem; text-align: center; border-bottom: 3px solid var(--red); }
.page-hero h1 { font-family: var(--font-head); font-size: 2.4rem; color: var(--red-bright); }
.content-section { padding: 3rem 1.5rem; }
.content-section .section-inner { max-width: 860px; }
.content-section h2 { font-family: var(--font-head); color: var(--red-bright); margin: 2rem 0 1rem; font-size: 1.4rem; }
.content-section p { margin-bottom: 1rem; }
.content-section ul { margin: 1rem 0 1rem 1.5rem; }
.content-section li { margin-bottom: 0.5rem; }
.price-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.price-table th, .price-table td { padding: 0.85rem 1rem; border: 1px solid var(--purple-light); text-align: left; }
.price-table th { background: var(--purple); color: var(--red-bright); }
.contact-form label { display: block; margin-bottom: 0.35rem; font-weight: 600; color: var(--red-bright); }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; padding: 0.75rem; margin-bottom: 1.25rem; background: var(--dark); border: 1px solid var(--purple-light); color: var(--text); font-family: inherit; font-size: 1rem; }
.contact-form button { padding: 0.9rem 2.5rem; background: var(--red-bright); color: var(--white); border: none; font-weight: 700; cursor: pointer; }
.site-footer { background: var(--dark); border-top: 3px solid var(--purple-light); padding: 3.5rem 1.5rem 0; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2.5rem; }
.footer-col h3 { font-family: var(--font-head); color: var(--red-bright); margin-bottom: 1rem; font-size: 1.1rem; }
.footer-col a { color: #bbb; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.contact-email { margin-top: 1rem; font-weight: 600; }
.phone { margin-top: 0.75rem; }
.footer-bottom { max-width: 1200px; margin: 2.5rem auto 0; padding: 1.5rem 0; border-top: 1px solid var(--purple-light); text-align: center; font-size: 0.9rem; color: #888; }
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--purple); color: var(--text); padding: 1.25rem 1.5rem; z-index: 9999; border-top: 3px solid var(--red); }
.cookie-banner.cookie-hidden { display: none; }
.cookie-inner { max-width: 1200px; margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }
.cookie-actions { display: flex; gap: 0.75rem; }
.cookie-actions button { padding: 0.6rem 1.25rem; border: none; cursor: pointer; font-weight: 600; font-size: 0.85rem; }
#cookie-accept { background: var(--red-bright); color: var(--white); }
#cookie-decline { background: transparent; color: var(--text); border: 1px solid var(--text); }
@media (max-width: 768px) { .location-split { grid-template-columns: 1fr; } .btn-ghost { margin-left: 0; margin-top: 1rem; } }
