/* ===== Design tokens ===== */
:root {
  --orange: #e5892a;
  --orange-deep: #d4761a;
  --orange-soft: #f6b15a;
  --ink: #1a1410;
  --ink-soft: #2a2118;
  --cream: #fff6ea;
  --cream-2: #fdeeda;
  --paper: #ffffff;
  --muted: #8a7a68;
  --line: rgba(26, 20, 16, 0.10);

  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 18px 50px -20px rgba(26, 20, 16, 0.35);
  --shadow-soft: 0 10px 30px -16px rgba(26, 20, 16, 0.30);
  --container: 1140px;

  --font: "Heebo", system-ui, "Segoe UI", Arial, sans-serif;
  --display: "Suez One", "Heebo", serif;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; max-width: 100%; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 6px; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }

/* ===== Buttons ===== */
.btn {
  --bg: var(--orange);
  --fg: var(--ink);
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--bg); color: var(--fg);
  font-weight: 800; font-size: 1.02rem;
  padding: 14px 26px; border-radius: 100px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  box-shadow: 0 8px 20px -8px rgba(213, 118, 26, .7);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px) rotate(-1deg); box-shadow: 0 14px 26px -8px rgba(213, 118, 26, .8); }
.btn:active { transform: translateY(-1px); }
.btn--primary { --bg: var(--orange); --fg: #2a1a06; }
.btn--ghost {
  --bg: transparent; --fg: var(--ink);
  border: 2px solid var(--ink); box-shadow: none;
}
.btn--ghost:hover { background: var(--ink); color: var(--cream); box-shadow: var(--shadow-soft); }
.btn--dark { --bg: var(--ink); --fg: var(--cream); box-shadow: 0 10px 24px -10px rgba(26,20,16,.8); }
.btn--sm { padding: 11px 20px; font-size: .95rem; }

/* ===== Navigation ===== */
.nav {
  position: fixed; inset-block-start: 0; inset-inline: 0; z-index: 50;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
  padding-block: 16px;
}
.nav.is-scrolled {
  background: rgba(255, 246, 234, .92);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 24px -16px rgba(26,20,16,.5);
  padding-block: 10px;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.nav__logo { display: inline-flex; align-items: center; gap: 8px; font-family: var(--display); font-size: 1.4rem; }
.nav__logo-mic { font-size: 1.1rem; }
.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__link { font-weight: 700; position: relative; padding-block: 4px; }
.nav__link::after {
  content: ""; position: absolute; inset-block-end: 0; inset-inline-start: 0;
  width: 0; height: 2px; background: var(--orange); transition: width .2s ease;
}
.nav__link:hover::after { width: 100%; }
.nav__cta {
  background: var(--orange); color: #2a1a06; font-weight: 800;
  padding: 9px 20px; border-radius: 100px;
  box-shadow: 0 8px 18px -10px rgba(213,118,26,.8);
  transition: transform .18s ease;
}
.nav__cta:hover { transform: translateY(-2px) rotate(-1deg); }

.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__burger span { width: 26px; height: 3px; background: var(--ink); border-radius: 3px; transition: transform .25s ease, opacity .2s ease; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(120% 120% at 80% 0%, var(--orange-soft) 0%, var(--orange) 42%, var(--orange-deep) 100%);
  padding-block: 150px 80px;
  min-height: 100svh; display: flex; flex-direction: column; justify-content: center;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.float { position: absolute; font-size: clamp(1.6rem, 4vw, 3rem); opacity: .55; animation: bob 6s ease-in-out infinite; }
.float--1 { top: 18%; inset-inline-start: 8%;  animation-delay: .0s; }
.float--2 { top: 30%; inset-inline-end: 12%; animation-delay: .8s; }
.float--3 { top: 64%; inset-inline-start: 14%; animation-delay: 1.6s; }
.float--4 { top: 12%; inset-inline-end: 38%; animation-delay: 2.2s; font-size: 1.6rem; }
.float--5 { top: 74%; inset-inline-end: 22%; animation-delay: 1.1s; }
@keyframes bob { 0%,100% { transform: translateY(0) rotate(-4deg); } 50% { transform: translateY(-16px) rotate(4deg); } }

.hero__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 40px;
}
.hero__eyebrow {
  display: inline-block; background: rgba(26,20,16,.12); color: #3a2710;
  font-weight: 700; font-size: .9rem; padding: 7px 16px; border-radius: 100px; margin-bottom: 18px;
}
.hero__title {
  font-family: var(--display); color: var(--ink);
  font-size: clamp(3.2rem, 9vw, 6rem); line-height: .95; letter-spacing: -1px;
  text-shadow: 4px 4px 0 rgba(255,255,255,.35);
}
.hero__tagline { font-size: clamp(1.4rem, 3.4vw, 2.1rem); font-weight: 800; color: #3a2710; margin-top: 10px; }
.hero__sub { font-size: 1.1rem; color: #4a3318; margin-top: 8px; max-width: 30ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.hero__photo { position: relative; display: flex; justify-content: center; }
.hero__blob {
  position: absolute; inset: 0; margin: auto; width: 108%; aspect-ratio: 1;
  background: rgba(255,255,255,.18);
  border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%;
  animation: morph 12s ease-in-out infinite; z-index: 0;
}
@keyframes morph {
  0%,100% { border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%; }
  50% { border-radius: 56% 44% 42% 58% / 44% 58% 42% 56%; }
}
.hero__photo img {
  position: relative; z-index: 1; width: min(420px, 82%); height: auto;
  filter: drop-shadow(0 26px 40px rgba(26,20,16,.35));
  border-radius: 18px;
}
.hero__sticker {
  position: absolute; z-index: 2; inset-block-start: 8%; inset-inline-start: 2%;
  background: var(--ink); color: var(--cream); font-weight: 800;
  padding: 8px 16px; border-radius: 100px; transform: rotate(-8deg);
  box-shadow: var(--shadow-soft); font-size: .95rem;
}

.hero__scroll {
  position: absolute; inset-block-end: 26px; inset-inline-start: 50%; transform: translateX(50%);
  width: 26px; height: 42px; border: 2px solid rgba(42,26,6,.6); border-radius: 100px; z-index: 3;
}
.hero__scroll span {
  position: absolute; inset-block-start: 8px; inset-inline-start: 50%; transform: translateX(-50%);
  width: 5px; height: 8px; background: #2a1a06; border-radius: 100px; animation: scroll 1.6s ease-in-out infinite;
}
@keyframes scroll { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 80%,100% { opacity: 0; transform: translate(-50%, 16px); } }

/* ===== Sections shared ===== */
.section { padding-block: clamp(64px, 9vw, 110px); }
.section__head { text-align: center; max-width: 640px; margin-inline: auto; margin-bottom: 50px; }
.section__kicker {
  display: inline-block; color: var(--orange-deep); font-weight: 800; letter-spacing: .5px;
  text-transform: uppercase; font-size: .85rem; margin-bottom: 10px;
}
.section__title { font-family: var(--display); font-size: clamp(2.1rem, 5vw, 3.2rem); line-height: 1.05; }
.section__lead { color: var(--muted); font-size: 1.12rem; margin-top: 12px; }

/* ===== Shows ===== */
.shows { background: var(--cream); }
.shows__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 22px; }
.show-card {
  display: flex; gap: 18px; align-items: stretch;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px; box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease;
}
.show-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.show-card__date {
  flex: 0 0 88px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: linear-gradient(160deg, var(--orange) 0%, var(--orange-deep) 100%);
  color: #2a1a06; border-radius: var(--radius-sm); padding: 14px 8px; text-align: center;
}
.show-card__day { font-family: var(--display); font-size: 2.3rem; line-height: 1; }
.show-card__month { font-weight: 800; font-size: 1rem; }
.show-card__weekday { font-size: .82rem; font-weight: 700; opacity: .8; margin-top: 4px; }
.show-card__body { display: flex; flex-direction: column; gap: 10px; justify-content: center; }
.show-card__title { font-size: 1.3rem; font-weight: 800; }
.show-card__meta { display: flex; flex-direction: column; gap: 3px; color: var(--muted); font-size: .98rem; }
.show-card__body .btn { align-self: flex-start; margin-top: 4px; }

/* Booking banner */
.booking {
  margin-top: 30px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-soft) 100%);
  border-radius: var(--radius); padding: 30px 34px; box-shadow: var(--shadow-soft);
}
.booking__text h3 { font-family: var(--display); font-size: 1.7rem; color: var(--ink); }
.booking__text p { color: #4a3318; font-weight: 500; }

/* ===== Books ===== */
.books { background: var(--ink); color: var(--cream); }
.books .section__title { color: var(--cream); }
.books .section__lead { color: #c9b89f; }
.books__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; max-width: 880px; margin-inline: auto; }
.book-card {
  display: flex; gap: 22px; align-items: center;
  background: var(--ink-soft); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow); transition: transform .2s ease;
}
.book-card:hover { transform: translateY(-6px); }
.book-card__cover { flex: 0 0 auto; }
.book-card__cover img {
  width: 150px; height: auto; display: block; border-radius: 10px;
  box-shadow: 0 14px 30px -12px rgba(0,0,0,.7);
  transition: transform .25s ease, box-shadow .25s ease;
}
.book-card__cover:hover img { transform: rotate(-3deg) scale(1.04); }
.book-card__body { display: flex; flex-direction: column; gap: 10px; }
.book-card__title { font-family: var(--display); font-size: 1.5rem; color: var(--cream); }
.book-card__desc { color: #c9b89f; font-size: .98rem; }
.book-card__foot { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 4px; flex-wrap: wrap; }
.price { display: inline-flex; align-items: baseline; gap: 8px; }
.price__now { font-weight: 900; font-size: 1.3rem; color: var(--orange-soft); }
.price__was { color: #8a7a68; text-decoration: line-through; font-size: .95rem; }

/* ===== Connect / Social ===== */
.connect { background: var(--cream-2); }
.social__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; }
.social-card {
  --brand: var(--orange);
  display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 18px; box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.social-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: var(--shadow); border-color: var(--brand); }
.social-card svg {
  width: 46px; height: 46px; fill: #fff; padding: 11px; border-radius: 14px;
  background: var(--brand); transition: transform .2s ease;
}
.social-card:hover svg { transform: rotate(-6deg); }
.social-card__name { font-weight: 800; font-size: 1.1rem; }
.social-card__handle { color: var(--muted); font-size: .92rem; }
.social-card--ig { --brand: #d6249f; }
.social-card--fb { --brand: #1877f2; }
.social-card--yt { --brand: #ff0000; }
.social-card--x  { --brand: #111; }

/* ===== Footer ===== */
.footer { background: var(--ink); color: var(--cream); padding-block: 50px 0; }
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 30px; align-items: start; }
.footer__logo { font-family: var(--display); font-size: 1.4rem; }
.footer__brand p { color: #c9b89f; margin-top: 8px; }
.footer__nav, .footer__social { display: flex; flex-direction: column; gap: 10px; }
.footer__nav a, .footer__social a { color: #d9c8af; font-weight: 600; width: fit-content; transition: color .2s ease; }
.footer__nav a:hover, .footer__social a:hover { color: var(--orange-soft); }
.footer__bar {
  margin-top: 40px; border-top: 1px solid rgba(255,255,255,.1);
  padding-block: 20px; text-align: center; color: #9a8a76; font-size: .9rem;
  display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap;
}
.footer__admin { color: #6a5d4d; font-size: .82rem; transition: color .2s ease; }
.footer__admin:hover { color: var(--orange-soft); }
.footer__legal { color: #c9b89f; font-size: .85rem; transition: color .2s ease; }
.footer__legal:hover { color: var(--orange-soft); }

/* ===== Popup ===== */
.popup { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 20px; }
.popup.is-open { display: flex; }
.popup__backdrop { position: absolute; inset: 0; background: rgba(26,20,16,.6); backdrop-filter: blur(3px); animation: fade .25s ease; }
.popup__card {
  position: relative; z-index: 1; width: min(420px, 100%);
  background: var(--paper); border-radius: var(--radius); padding: 36px 30px 30px; text-align: center;
  box-shadow: var(--shadow); animation: pop .35s cubic-bezier(.2,.9,.3,1.3);
  border-top: 6px solid var(--orange);
}
.popup__close {
  position: absolute; inset-block-start: 10px; inset-inline-end: 14px;
  font-size: 1.8rem; line-height: 1; color: var(--muted); width: 36px; height: 36px; border-radius: 50%;
  transition: background .2s ease, color .2s ease;
}
.popup__close:hover { background: var(--cream-2); color: var(--ink); }
.popup__badge { display: inline-block; background: var(--cream-2); color: var(--orange-deep); font-weight: 800; padding: 6px 14px; border-radius: 100px; font-size: .9rem; }
.popup__title { font-family: var(--display); font-size: 2rem; margin-top: 14px; }
.popup__text { color: var(--muted); margin-top: 10px; font-size: 1.02rem; }
.popup__actions { display: flex; flex-direction: column; gap: 10px; margin-top: 22px; }
.popup__later { color: var(--muted); font-weight: 600; padding: 6px; transition: color .2s ease; }
.popup__later:hover { color: var(--ink); }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes pop { from { opacity: 0; transform: translateY(20px) scale(.92); } to { opacity: 1; transform: none; } }

/* ===== Reveal on scroll ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 880px) {
  .nav__links {
    /* display:none when closed so the off-screen drawer can't create a
       horizontal-scroll / pannable strip on mobile. */
    display: none;
    position: fixed; top: 0; right: 0; height: 100svh; width: min(80%, 320px);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 26px;
    background: var(--cream); padding: 40px; box-shadow: -10px 0 40px -20px rgba(0,0,0,.5);
    z-index: 49;
  }
  .nav__links.is-open { display: flex; animation: drawerIn .3s ease; }
  @keyframes drawerIn { from { transform: translateX(100%); } to { transform: translateX(0); } }
  .nav__overlay { position: fixed; inset: 0; background: rgba(26,20,16,.45); z-index: 48; opacity: 0; transition: opacity .3s ease; }
  .nav__overlay.is-open { opacity: 1; }
  .nav__link { font-size: 1.3rem; }
  .nav__cta { font-size: 1.15rem; padding: 12px 26px; }
  .nav__burger { display: flex; z-index: 51; }

  .hero { padding-block: 120px 70px; min-height: auto; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; gap: 30px; }
  .hero__sub { margin-inline: auto; }
  .hero__actions { justify-content: center; }
  .hero__photo { order: -1; }
  .hero__photo img { width: min(300px, 70%); }

  .show-card { flex-direction: column; }
  .show-card__date { flex-direction: row; gap: 8px; align-items: baseline; justify-content: center; }
  .show-card__day { font-size: 1.6rem; }
  .show-card__body .btn { align-self: stretch; }

  .booking { flex-direction: column; text-align: center; padding: 26px 22px; }
  .booking .btn { width: 100%; }
  .booking__text h3 { font-size: 1.45rem; }

  .book-card { flex-direction: column; text-align: center; padding: 24px 18px; }
  .book-card__cover img { width: 168px; margin-inline: auto; }
  .book-card__foot { justify-content: center; }

  .social__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .social-card { padding: 22px 12px; }

  .footer__inner { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .footer__nav, .footer__social { align-items: center; }
  .footer__nav a, .footer__social a { width: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
