/* ============ Fonts ============ */
@font-face {
  font-family: "Colus";
  src: url("/fonts/Colus-Regular.woff2") format("woff2"),
       url("/fonts/Colus-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ============ Tokens ============ */
:root {
  --coral: #f0685a;
  --coral-soft: #f78a7e;
  --cream: #f7ece4;
  --cream-dim: #d8c6bd;
  --ink: #0b0710;
  --ink-2: #140a17;
  --blue: #6d7fd6;
  --blue-deep: #4657b0;
  --line: rgba(247, 236, 228, 0.12);
  --maxw: 980px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Montserrat", system-ui, sans-serif;
  background: var(--ink);
  color: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Cosmic backdrop */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(60% 45% at 78% 8%, rgba(240,104,90,0.16), transparent 60%),
    radial-gradient(55% 45% at 15% 22%, rgba(70,87,176,0.18), transparent 62%),
    radial-gradient(70% 60% at 50% 108%, rgba(240,104,90,0.10), transparent 60%),
    linear-gradient(180deg, #0b0710 0%, #120a16 45%, #0d0812 100%);
}
/* faint starfield */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    radial-gradient(1px 1px at 12% 18%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 32% 62%, rgba(255,255,255,0.35), transparent),
    radial-gradient(1px 1px at 68% 32%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 82% 74%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1.5px 1.5px at 50% 12%, rgba(255,255,255,0.35), transparent),
    radial-gradient(1px 1px at 22% 84%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1px 1px at 90% 20%, rgba(255,255,255,0.35), transparent);
  opacity: 0.6;
  pointer-events: none;
}

/* ============ Layout ============ */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(64px, 11vw, 130px) 0; position: relative; }

/* ============ Top bar ============ */
.topbar {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
  backdrop-filter: blur(10px);
  background: rgba(11,7,16,0.55);
  border-bottom: 1px solid var(--line);
}
.topbar__logo img { height: 40px; width: auto; display: block; }

/* ============ Buttons ============ */
.btn {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: #1a0a08;
  background: linear-gradient(180deg, var(--coral-soft), var(--coral));
  border-radius: 999px;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  box-shadow: 0 8px 30px rgba(240,104,90,0.35);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(240,104,90,0.5); filter: brightness(1.05); }
.btn--sm { padding: 9px 18px; font-size: 0.72rem; }
.btn--lg { padding: 17px 42px; font-size: 0.9rem; margin-top: 14px; }
.btn--book { margin-top: 26px; }

/* ============ Headings ============ */
.h-section {
  font-family: "Colus", serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(1.9rem, 5vw, 3rem);
  line-height: 1.08;
  text-align: center;
  color: var(--cream);
  margin-bottom: 42px;
}
.h-section::after {
  content: "";
  display: block;
  width: 54px; height: 2px;
  margin: 22px auto 0;
  background: linear-gradient(90deg, transparent, var(--coral), transparent);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  text-align: center;
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(96px, 12vh, 140px) 24px clamp(70px, 10vw, 110px);
  overflow: hidden;
}
.hero__glow {
  position: absolute; z-index: 0;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: min(900px, 120vw); aspect-ratio: 1;
  background:
    radial-gradient(circle at 22% 45%, rgba(70,87,176,0.30), transparent 45%),
    radial-gradient(circle at 78% 55%, rgba(240,104,90,0.30), transparent 45%);
  filter: blur(30px);
  pointer-events: none;
}
/* Two large mirrored funnels flanking the headline */
.hero__funnel {
  position: absolute; z-index: 1; top: 50%;
  height: min(150vh, 1240px); width: auto;
  filter: drop-shadow(0 24px 70px rgba(240,104,90,0.30)) drop-shadow(0 0 70px rgba(70,87,176,0.42));
  pointer-events: none;
  will-change: transform;
}
.hero__funnel--left  { left: -14%;  transform: translateY(-50%);            animation: floatL 9s ease-in-out infinite; }
.hero__funnel--right { right: -14%; transform: translateY(-50%) scaleX(-1); animation: floatR 9s ease-in-out infinite; }
@keyframes floatL { 0%,100% { transform: translateY(-50%); }            50% { transform: translateY(-56%); } }
@keyframes floatR { 0%,100% { transform: translateY(-50%) scaleX(-1); } 50% { transform: translateY(-44%) scaleX(-1); } }
/* Dark scrim so the centered text stays legible over the funnels */
.hero__scrim {
  position: absolute; z-index: 2; inset: 0;
  background: radial-gradient(46% 60% at 50% 50%, rgba(11,7,16,0.86) 30%, rgba(11,7,16,0.35) 62%, transparent 78%);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 3; max-width: 640px; margin: 0 auto; }
@media (prefers-reduced-motion: reduce) {
  .hero__funnel--left, .hero__funnel--right { animation: none; }
}
.hero__title {
  font-family: "Colus", serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2.3rem, 7vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: 0.02em;
  text-shadow: 0 4px 40px rgba(11,7,16,0.9);
}
.hero__accent {
  font-family: "Colus", serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: clamp(1.3rem, 4.4vw, 2.3rem);
  color: var(--coral);
  margin-top: 12px;
}
.hero__lead {
  max-width: 620px; margin: 30px auto 0;
  color: var(--cream-dim);
  font-size: clamp(1rem, 2vw, 1.14rem);
  font-weight: 300;
}
.hero__lead strong { color: var(--cream); font-weight: 600; }
.hero__q { margin-top: 26px; color: var(--cream-dim); font-weight: 300; }
.hero__q--big {
  font-family: "Colus", serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--cream);
  font-size: clamp(1.5rem, 4.6vw, 2.6rem);
  margin-top: 4px;
}

/* ============ Narrate (Какво представлява) ============ */
.section--narrate { text-align: center; }
.section-logo {
  display: block;
  width: min(300px, 66vw);
  height: auto;
  margin: 0 auto clamp(38px, 6vw, 60px);
}
.narrate { font-size: clamp(1.15rem, 3vw, 1.6rem); font-weight: 300; letter-spacing: 0.01em; }
.narrate p { margin: 10px 0; }
.narrate--tight { margin-top: 34px; }
.narrate__punch {
  margin-top: 40px;
  font-size: clamp(1.2rem, 3.4vw, 1.9rem);
  font-weight: 400;
}

.roles {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(18px, 5vw, 46px);
  margin: 46px 0;
  flex-wrap: wrap;
}
.role {
  font-family: "Colus", serif;
  text-transform: uppercase;
  font-size: clamp(2rem, 7vw, 4rem);
  letter-spacing: 0.03em;
  line-height: 1;
}
.role--innocent { color: var(--blue); text-shadow: 0 0 34px rgba(109,127,214,0.5); }
.role--liar { color: var(--coral); text-shadow: 0 0 34px rgba(240,104,90,0.5); }
.role-or { color: var(--cream-dim); font-weight: 300; font-size: 1rem; text-transform: lowercase; }

/* ============ Това не е ============ */
.section--isnot { text-align: center; }
.isnot { list-style: none; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.isnot li {
  font-family: "Colus", serif;
  text-transform: uppercase;
  font-size: clamp(1.4rem, 4.2vw, 2.4rem);
  letter-spacing: 0.03em;
  color: rgba(216,198,189,0.5);
  margin: 6px 0;
  position: relative;
  display: inline-block;
}
.isnot li::after {
  content: ""; position: absolute; left: -6%; right: -6%; top: 52%;
  height: 2px; background: rgba(240,104,90,0.55);
  transform: rotate(-2deg);
}
.isnot__is {
  max-width: 720px; margin: 40px auto 0;
  font-size: clamp(1.1rem, 2.6vw, 1.4rem);
  font-weight: 300; color: var(--cream-dim);
}
.isnot__is strong { color: var(--coral); font-weight: 600; }

.triples {
  display: flex; flex-direction: column; gap: 14px;
  margin: 46px auto 0; max-width: 640px;
}
.triples span {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 22px;
  background: rgba(247,236,228,0.03);
  font-weight: 400;
  font-size: clamp(1rem, 2.4vw, 1.2rem);
}
.triples--neg span { color: var(--cream-dim); }

/* ============ Timeline ============ */
.timeline { max-width: 680px; margin: 0 auto; }
.tl {
  display: grid; grid-template-columns: 92px 1fr; gap: 24px;
  padding: 24px 0;
  border-left: 2px solid var(--line);
  padding-left: 26px;
  margin-left: 8px;
  position: relative;
}
.tl::before {
  content: ""; position: absolute; left: -8px; top: 30px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--coral); box-shadow: 0 0 16px rgba(240,104,90,0.8);
}
.tl__time {
  font-family: "Colus", serif;
  font-size: clamp(1.4rem, 4vw, 2rem);
  color: var(--coral);
  letter-spacing: 0.02em;
}
.tl__body p { margin: 6px 0; color: var(--cream-dim); font-weight: 300; }
.finale-q {
  text-align: center; margin-top: 46px;
  font-weight: 300; color: var(--cream-dim);
}
.finale-q span {
  display: block; margin-top: 8px;
  font-family: "Colus", serif; text-transform: uppercase;
  font-size: clamp(1.2rem, 3.6vw, 1.9rem);
  color: var(--cream); letter-spacing: 0.03em;
  line-height: 1.2;
}

/* ============ Perks ============ */
.section--get .h-section { margin-bottom: 30px; }
.perks {
  list-style: none; max-width: 660px; margin: 0 auto;
  display: grid; gap: 12px;
}
.perks li {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(247,236,228,0.04), rgba(247,236,228,0.01));
  font-size: clamp(0.98rem, 2.3vw, 1.12rem);
  transition: border-color .25s ease, transform .25s ease;
}
.perks li:hover { border-color: rgba(240,104,90,0.45); transform: translateX(4px); }
.perks__ic { color: var(--coral); font-size: 1.1rem; flex: none; }

/* ============ За кого е ============ */
.lead-center { text-align: center; font-weight: 300; color: var(--cream-dim); font-size: clamp(1.05rem, 2.4vw, 1.25rem); }
.lead-center.soft { margin-top: 34px; }
.lead-center strong { color: var(--cream); font-weight: 600; }
.tags {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
  margin: 30px auto 0; max-width: 760px;
}
.tags span {
  border: 1px solid rgba(240,104,90,0.35);
  color: var(--cream);
  padding: 10px 20px; border-radius: 999px;
  font-size: clamp(0.85rem, 2vw, 0.98rem);
  background: rgba(240,104,90,0.06);
}

/* ============ Всяка вечер е различна ============ */
.section--diff { text-align: center; }
.two-fates {
  display: grid; gap: 14px; max-width: 620px; margin: 40px auto 0;
}
.two-fates p {
  font-family: "Colus", serif; text-transform: uppercase;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  letter-spacing: 0.02em; line-height: 1.2;
}
.accent-line { margin-top: 34px; color: var(--coral); font-weight: 400; }

/* ============ Най-трудният въпрос ============ */
.section--hardq { text-align: center; }
.section--hardq::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(50% 70% at 50% 50%, rgba(240,104,90,0.10), transparent 70%);
}
.hardq__label {
  text-transform: uppercase; letter-spacing: 0.3em;
  color: var(--coral); font-size: 0.78rem; font-weight: 600;
  margin-bottom: 24px;
}
.hardq__q {
  font-family: "Colus", serif; font-weight: 400;
  text-transform: uppercase; letter-spacing: 0.02em;
  font-size: clamp(1.7rem, 5vw, 3.1rem);
  line-height: 1.1; max-width: 860px; margin: 0 auto;
}
.hardq__sub { margin-top: 26px; color: var(--cream-dim); font-weight: 300; font-size: clamp(1rem, 2.4vw, 1.2rem); }
.hardq__cta {
  margin-top: 28px;
  font-family: "Colus", serif; text-transform: uppercase;
  letter-spacing: 0.04em; color: var(--coral);
  font-size: clamp(1.2rem, 3.4vw, 1.8rem);
}

/* ============ Резервация ============ */
.section--book { text-align: center; overflow: hidden; }
.book__glow {
  position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(55% 60% at 50% 40%, rgba(240,104,90,0.16), transparent 65%),
              radial-gradient(45% 50% at 30% 70%, rgba(70,87,176,0.14), transparent 65%);
}
.book__facts {
  list-style: none; display: flex; flex-wrap: wrap; justify-content: center;
  gap: 12px; margin: 0 auto 8px; max-width: 720px;
}
.book__facts li span {
  display: inline-block;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 500;
  background: rgba(247,236,228,0.04);
  font-size: clamp(0.9rem, 2.2vw, 1.05rem);
}
.book__urgency {
  max-width: 620px; margin: 26px auto 0;
  color: var(--cream-dim); font-weight: 300;
  font-size: clamp(1rem, 2.4vw, 1.15rem);
}

/* Booking widget */
.hide { display: none !important; }
.booking { max-width: 620px; margin: 34px auto 0; }
.booking__label {
  text-align: left; text-transform: uppercase; letter-spacing: 0.1em;
  font-size: 0.75rem; font-weight: 600; color: var(--coral);
  margin-bottom: 14px;
}
.booking__label span { color: var(--cream-dim); font-weight: 500; letter-spacing: 0; text-transform: none; }
.cal {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px; margin-bottom: 26px;
}
.cal__msg { grid-column: 1 / -1; color: var(--cream-dim); font-weight: 300; padding: 10px 0; }
.cal__day {
  font-family: "Montserrat", sans-serif; cursor: pointer; text-align: left;
  display: flex; flex-direction: column; gap: 4px;
  background: rgba(247,236,228,0.04); color: var(--cream);
  border: 1px solid var(--line); border-radius: 14px; padding: 14px 16px;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.cal__day:hover { border-color: rgba(240,104,90,0.5); transform: translateY(-2px); }
.cal__day.is-sel { border-color: var(--coral); background: rgba(240,104,90,0.12); box-shadow: 0 0 0 1px var(--coral) inset; }
.cal__date { font-weight: 600; text-transform: capitalize; font-size: 0.98rem; }
.cal__seats { font-size: 0.78rem; color: var(--cream-dim); }

.booking__total {
  text-align: center; font-size: 1.15rem; margin: 4px 0 2px; color: var(--cream);
}
.booking__total strong { color: var(--coral); font-size: 1.35rem; }
.booking__total span { color: var(--cream-dim); font-size: 0.9rem; font-weight: 300; }

#payment-element { margin: 6px 0 18px; text-align: left; }
.booking__step { text-align: center; }
.linkback {
  display: block; margin: 14px auto 0; background: none; border: none; cursor: pointer;
  color: var(--cream-dim); font-family: "Montserrat", sans-serif; font-size: 0.9rem;
  text-decoration: underline; text-underline-offset: 3px;
}
.linkback:hover { color: var(--cream); }
.booking__done { text-align: center; padding: 20px 0; }
.done__ic {
  width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.9rem; color: #1a0a08;
  background: linear-gradient(180deg, var(--coral-soft), var(--coral));
  box-shadow: 0 8px 30px rgba(240,104,90,0.4);
}
.done__h { font-family: "Colus", serif; text-transform: uppercase; letter-spacing: 0.03em; font-size: clamp(1.4rem, 4vw, 2rem); }
.done__p { color: var(--cream-dim); font-weight: 300; margin-top: 12px; max-width: 460px; margin-left: auto; margin-right: auto; }

/* Booking form */
.book__form {
  max-width: 620px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  text-align: left;
}
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.book__form label {
  font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--cream-dim); font-weight: 500;
}
.book__form input,
.book__form textarea {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem; color: var(--cream);
  background: rgba(247,236,228,0.05);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 15px;
  transition: border-color .2s ease, background .2s ease;
  width: 100%;
}
.book__form input::placeholder,
.book__form textarea::placeholder { color: rgba(216,198,189,0.45); }
.book__form input:focus,
.book__form textarea:focus {
  outline: none;
  border-color: var(--coral);
  background: rgba(240,104,90,0.07);
}
.book__form textarea { resize: vertical; min-height: 76px; }
.book__form input[type="date"] { color-scheme: dark; }
.book__form .btn--book {
  grid-column: 1 / -1; justify-self: center; margin-top: 6px;
  border: none; cursor: pointer;
}
.book__form .btn--book:disabled { opacity: 0.6; cursor: default; }
.hp { position: absolute; left: -9999px; opacity: 0; }
.book__status {
  grid-column: 1 / -1; text-align: center; min-height: 1.2em;
  font-size: 0.95rem; margin-top: 2px;
}
.book__status.is-ok { color: #7fd6a0; }
.book__status.is-warn { color: var(--coral-soft); }

@media (max-width: 520px) {
  .book__form { grid-template-columns: 1fr; }
}

/* ============ Footer ============ */
.footer {
  text-align: center; padding: 56px 24px 70px;
  border-top: 1px solid var(--line);
}
.footer img { height: 78px; width: auto; opacity: 0.9; margin-bottom: 14px; }
.footer p { color: var(--cream-dim); font-size: 0.85rem; letter-spacing: 0.04em; }
.footer__legal { margin-top: 18px; display: flex; gap: 8px 20px; justify-content: center; flex-wrap: wrap; }
.footer__legal a { color: var(--cream-dim); text-decoration: none; font-size: 0.8rem; }
.footer__legal a:hover { color: var(--coral); }

/* Cookie consent bar */
.cookie {
  position: fixed; left: 50%; bottom: 18px; transform: translateX(-50%);
  z-index: 100; width: min(680px, calc(100vw - 28px));
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: center;
  background: rgba(23, 16, 28, 0.96); backdrop-filter: blur(10px);
  border: 1px solid var(--line); border-radius: 16px;
  padding: 14px 20px; box-shadow: 0 14px 50px rgba(0,0,0,0.5);
}
.cookie p { margin: 0; color: var(--cream-dim); font-size: 0.86rem; font-weight: 300; flex: 1 1 320px; }
.cookie p a { color: var(--coral); }
.cookie button {
  font-family: "Montserrat", sans-serif; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; color: #1a0a08; background: var(--coral); border: none;
  border-radius: 999px; padding: 11px 26px; font-size: 0.78rem; white-space: nowrap;
}
.cookie button:hover { filter: brightness(1.05); }
@media (max-width: 520px) { .cookie { flex-direction: column; text-align: center; } }

/* ============ Reveal animation ============ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__funnel { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============ Responsive ============ */
@media (max-width: 900px) {
  .hero__funnel { height: min(110vh, 900px); opacity: 0.7; }
  .hero__funnel--left  { left: -26%; }
  .hero__funnel--right { right: -26%; }
  .hero__scrim {
    background: radial-gradient(60% 56% at 50% 50%, rgba(11,7,16,0.9) 34%, rgba(11,7,16,0.5) 66%, transparent 82%);
  }
}
@media (max-width: 560px) {
  .tl { grid-template-columns: 1fr; gap: 6px; }
  .roles { gap: 10px; }
  .topbar__logo img { height: 32px; }
  .hero__funnel { height: 88vh; opacity: 0.55; }
  .hero__funnel--left  { left: -40%; }
  .hero__funnel--right { right: -40%; }
}
