:root {
  --bg: #120a16;
  --bg-deep: #0a0610;
  --panel: #1c1122;
  --panel-light: #241631;
  --ink: #f3e9e0;
  --ink-dim: #c9b8c9;
  --pumpkin: #ff8a2b;
  --pumpkin-dark: #cc5f10;
  --ecto: #7de6a0;
  --blood: #9a1f2b;
  --line: rgba(255, 138, 43, 0.25);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: radial-gradient(circle at 20% 0%, #241329 0%, var(--bg) 45%, var(--bg-deep) 100%);
  color: var(--ink);
  font-family: "Nunito Sans", "Segoe UI", sans-serif;
  line-height: 1.6;
  position: relative;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.5;
  z-index: 1;
  mix-blend-mode: overlay;
}

h1, h2, h3, .brand {
  font-family: "Eater", "Creepster", cursive;
  letter-spacing: 0.03em;
  font-weight: 400;
  color: var(--pumpkin);
  text-shadow: 0 0 12px rgba(255, 138, 43, 0.45), 0 0 2px rgba(0, 0, 0, 0.6);
}

a {
  color: var(--ecto);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--ecto);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--pumpkin);
  color: #1a0f12;
  padding: 0.6em 1em;
  z-index: 100;
  border-radius: 0 0 6px 0;
}

.skip-link:focus {
  left: 0;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(10, 6, 16, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.brand {
  font-size: 1.8rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand .glyph {
  animation: flicker 4s infinite ease-in-out;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
  position: relative;
  padding-bottom: 3px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--pumpkin);
  transition: width 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  width: 100%;
}

.site-nav a[aria-current="page"] {
  color: var(--pumpkin);
}

/* ---------- Layout helpers ---------- */

main {
  position: relative;
  z-index: 2;
}

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 4.5rem 0;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  text-align: center;
  margin: 0 0 0.5rem;
}

.section-sub {
  text-align: center;
  color: var(--ink-dim);
  max-width: 620px;
  margin: 0 auto 2.5rem;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 6rem 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 6, 16, 0.35) 0%, rgba(10, 6, 16, 0.75) 55%, var(--bg) 100%),
    url("img/hero.webp") center 30% / cover no-repeat;
  z-index: 0;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, transparent 0%, rgba(10,6,16,0.2) 60%, rgba(10,6,16,0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1.5rem;
}

.hero-content .eyebrow {
  color: var(--ecto);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-content h1 {
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  margin: 0.4rem 0 1rem;
}

.hero-content p {
  color: var(--ink-dim);
  font-size: 1.15rem;
  margin-bottom: 2rem;
}

.cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.85em 1.8em;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 2px solid transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--pumpkin), var(--pumpkin-dark));
  color: #1a0f12;
  box-shadow: 0 8px 24px rgba(255, 138, 43, 0.35);
}

.btn-ghost {
  background: transparent;
  border-color: var(--ecto);
  color: var(--ecto);
}

/* ---------- Marquee tagline strip ---------- */

.tagline-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--panel);
  padding: 0.75rem 0;
  overflow: hidden;
}

.tagline-strip p {
  margin: 0;
  text-align: center;
  color: var(--ink-dim);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.tagline-strip span {
  color: var(--pumpkin);
}

/* ---------- Cards / Donut grid ---------- */

.donut-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.75rem;
}

.donut-card {
  background: linear-gradient(160deg, var(--panel-light), var(--panel));
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.donut-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.6);
}

.donut-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid var(--line);
}

.donut-card .card-body {
  padding: 1.25rem 1.4rem 1.5rem;
}

.donut-card h3 {
  font-size: 1.25rem;
  margin: 0 0 0.35rem;
}

.donut-card p {
  color: var(--ink-dim);
  margin: 0 0 0.6rem;
  font-size: 0.95rem;
}

.price {
  color: var(--ecto);
  font-weight: 800;
  font-family: "Eater", cursive;
  letter-spacing: 0.04em;
}

/* ---------- About / split section ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.split.reverse {
  direction: rtl;
}

.split.reverse > * {
  direction: ltr;
}

@media (max-width: 760px) {
  .split {
    grid-template-columns: 1fr;
  }
  .split.reverse {
    direction: ltr;
  }
}

/* ---------- Testimonials ---------- */

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

blockquote {
  background: var(--panel);
  border: 1px solid var(--line);
  border-left: 4px solid var(--pumpkin);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 0;
  font-style: italic;
  color: var(--ink-dim);
}

blockquote footer {
  margin-top: 0.75rem;
  font-style: normal;
  color: var(--ecto);
  font-weight: 700;
  font-size: 0.85rem;
}

/* ---------- Details / accordion (hours, faq) ---------- */

details {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin-bottom: 0.9rem;
}

summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--pumpkin);
  font-size: 1.05rem;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::before {
  content: "🕯";
  margin-right: 0.6em;
}

details[open] summary {
  margin-bottom: 0.6rem;
}

details p {
  color: var(--ink-dim);
  margin: 0;
}

/* ---------- Form (looks only) ---------- */

.spooky-form {
  display: grid;
  gap: 1rem;
  max-width: 560px;
  margin: 0 auto;
}

.spooky-form label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--ink-dim);
  font-size: 0.9rem;
}

.spooky-form input,
.spooky-form textarea {
  width: 100%;
  padding: 0.75em 1em;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--ink);
  font-family: inherit;
  font-size: 1rem;
}

.spooky-form input:focus,
.spooky-form textarea:focus {
  outline: 2px solid var(--pumpkin);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  text-align: center;
  margin-top: 3rem;
}

.info-grid h3 {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
}

.info-grid p {
  color: var(--ink-dim);
  margin: 0;
}

/* ---------- Audio player ---------- */

.soundtrack {
  text-align: center;
  padding: 2.5rem 0;
}

.soundtrack p {
  color: var(--ink-dim);
  margin-bottom: 1rem;
}

audio {
  width: 100%;
  max-width: 420px;
  filter: invert(0.9) hue-rotate(180deg) sepia(0.3);
  border-radius: 999px;
}

/* ---------- Footer ---------- */

footer.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-deep);
  padding: 2.5rem 0;
  text-align: center;
  color: var(--ink-dim);
  font-size: 0.85rem;
}

footer.site-footer .fine-print {
  margin-top: 0.75rem;
  opacity: 0.7;
  font-size: 0.75rem;
}

/* ---------- Animations ---------- */

@keyframes flicker {
  0%, 19%, 21%, 23%, 55%, 57%, 100% { opacity: 1; }
  20%, 22%, 56% { opacity: 0.45; }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .brand .glyph {
    animation: none;
  }
}
