/* ============================================================
   TÁO MÈO • Ticketing — design system
   Palette lifted from the logo: red apple hood, yellow cat,
   cream muzzle, green leaf, soft black ink outline.
   ============================================================ */

:root {
  /* ---- brand ---- */
  --apple:        #e63b2e;
  --apple-deep:   #c22a1f;
  --apple-dark:   #8f1d14;
  --apple-soft:   #fde8e5;
  --apple-tint:   #fef4f2;

  --cat:          #f9df4a;
  --cat-deep:     #edc61f;
  --cat-soft:     #fdf3c4;
  --cat-tint:     #fffbe8;

  --cream:        #fff8e1;
  --leaf:         #45a83e;
  --leaf-deep:    #2f7f2a;
  --leaf-soft:    #e6f4e5;

  /* ---- ink & paper ---- */
  --ink:          #2b1f17;
  --ink-2:        #5a483c;
  --ink-3:        #8b7868;
  --ink-4:        #b9a795;
  --paper:        #fffbf3;
  --paper-2:      #fff7ea;
  --card:         #ffffff;
  --line:         #f0e3d1;
  --line-2:       #e4d3bd;

  /* ---- semantic ---- */
  --ok:           #2f9e4f;
  --ok-soft:      #e7f6ec;
  --warn:         #e08a12;
  --warn-soft:    #fdf2dd;
  --live:         #e63b2e;

  /* ---- type ---- */
  --font: "Be Vietnam Pro", ui-sans-serif, system-ui, -apple-system,
          "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Baloo 2", var(--font);

  /* ---- shape ---- */
  --r-sm: 10px;
  --r:    16px;
  --r-lg: 22px;
  --r-xl: 30px;
  --r-pill: 999px;

  /* ---- elevation: warm shadows, never grey ---- */
  --sh-1: 0 1px 2px rgba(43, 31, 23, .06), 0 2px 8px rgba(43, 31, 23, .05);
  --sh-2: 0 2px 4px rgba(43, 31, 23, .06), 0 8px 24px rgba(43, 31, 23, .08);
  --sh-3: 0 4px 8px rgba(43, 31, 23, .07), 0 18px 44px rgba(43, 31, 23, .12);
  --sh-apple: 0 6px 18px rgba(230, 59, 46, .28);
  --sh-cat: 0 6px 18px rgba(237, 198, 31, .32);

  --wrap: 1140px;
  --gut: clamp(16px, 4vw, 32px);
  --nav-h: 68px;
}

/* ============================================================
   reset
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 .5em;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2rem, 5.2vw, 3.4rem); }
h2 { font-size: clamp(1.55rem, 3.6vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.4rem); }
p { margin: 0 0 1em; }
a { color: var(--apple-deep); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
img, svg, video { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0 0 1em; padding-left: 1.2em; }
button, input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--apple); outline-offset: 3px; border-radius: 6px; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.sr {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip {
  position: absolute; left: -9999px; top: 8px; z-index: 200;
  background: var(--apple); color: #fff; padding: 10px 18px;
  border-radius: var(--r-pill); font-weight: 700;
}
.skip:focus { left: 16px; }

/* ============================================================
   header / nav
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(255, 251, 243, .88);
  backdrop-filter: saturate(1.5) blur(14px);
  -webkit-backdrop-filter: saturate(1.5) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__in { display: flex; align-items: center; gap: 12px; height: 100%; }
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 800; font-size: 1.06rem;
  color: var(--ink); flex: 0 0 auto;
}
.brand:hover { text-decoration: none; }
.brand__mark {
  width: 40px; height: 40px; flex: 0 0 auto;
  filter: drop-shadow(0 2px 4px rgba(230, 59, 46, .22));
}
.brand__txt { display: flex; flex-direction: column; line-height: 1.1; }
.brand__txt b { letter-spacing: -.02em; }
.brand__txt small {
  font-family: var(--font); font-size: .64rem; font-weight: 600;
  letter-spacing: .1em; color: var(--ink-3); text-transform: uppercase;
}

.nav__links { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav__links a {
  padding: 9px 14px; border-radius: var(--r-pill);
  font-weight: 600; font-size: .93rem; color: var(--ink-2);
  transition: background .16s, color .16s;
}
.nav__links a:hover { background: var(--apple-soft); color: var(--apple-deep); text-decoration: none; }
.nav__links a[aria-current="page"] { background: var(--apple); color: #fff; }
.nav__cta { margin-left: 8px; }

.nav__burger {
  display: none; margin-left: auto; width: 44px; height: 44px;
  border: 1px solid var(--line-2); background: var(--card);
  border-radius: 12px; cursor: pointer; align-items: center; justify-content: center;
}
.nav__burger span { display: block; width: 19px; height: 2px; background: var(--ink); border-radius: 2px; position: relative; }
.nav__burger span::before,
.nav__burger span::after {
  content: ""; position: absolute; left: 0; width: 19px; height: 2px;
  background: var(--ink); border-radius: 2px; transition: top .18s;
}
.nav__burger span::before { top: -6px; }
.nav__burger span::after { top: 6px; }

@media (max-width: 900px) {
  .nav__burger { display: flex; }
  .nav__links {
    position: fixed; inset: var(--nav-h) 0 auto 0;
    flex-direction: column; align-items: stretch;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: 12px var(--gut) 20px; gap: 4px;
    box-shadow: var(--sh-2); margin-left: 0;
    transform: translateY(-8px); opacity: 0; pointer-events: none; transition: .18s;
  }
  .nav__links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav__links a { padding: 13px 16px; border-radius: 12px; font-size: 1rem; }
  .nav__cta { margin: 8px 0 0; justify-content: center; }
}

/* ============================================================
   buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 24px; border-radius: var(--r-pill); border: 0; cursor: pointer;
  font-weight: 700; font-size: .96rem; line-height: 1; text-align: center;
  transition: transform .14s cubic-bezier(.34, 1.56, .64, 1), box-shadow .16s, background .16s;
  white-space: nowrap; text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; flex: 0 0 auto; }

.btn--primary { background: var(--apple); color: #fff; box-shadow: var(--sh-apple); }
.btn--primary:hover { background: var(--apple-deep); box-shadow: 0 10px 26px rgba(230, 59, 46, .36); }
.btn--cat { background: var(--cat); color: var(--ink); box-shadow: var(--sh-cat); }
.btn--cat:hover { background: var(--cat-deep); }
.btn--ghost { background: var(--card); color: var(--ink); box-shadow: var(--sh-1); border: 1.5px solid var(--line-2); }
.btn--ghost:hover { border-color: var(--apple); color: var(--apple-deep); }
.btn--sm { padding: 9px 17px; font-size: .87rem; }
.btn--lg { padding: 16px 32px; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ============================================================
   hero
   ============================================================ */
.hero { position: relative; padding: clamp(40px, 7vw, 78px) 0 clamp(44px, 6vw, 70px); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(900px 420px at 88% -12%, var(--cat-soft) 0%, transparent 62%),
    radial-gradient(760px 400px at 4% 4%, var(--apple-tint) 0%, transparent 60%),
    var(--paper);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .5;
  background-image: radial-gradient(circle at 1px 1px, var(--line-2) 1px, transparent 0);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .55), transparent 72%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, .55), transparent 72%);
}
.hero__grid {
  display: grid; grid-template-columns: 1.08fr .92fr;
  gap: clamp(28px, 5vw, 60px); align-items: center;
}
@media (max-width: 940px) { .hero__grid { grid-template-columns: 1fr; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 18px;
  padding: 7px 15px 7px 9px; border-radius: var(--r-pill);
  background: var(--card); border: 1px solid var(--line-2); box-shadow: var(--sh-1);
  font-size: .8rem; font-weight: 700; color: var(--ink-2);
}
.eyebrow b { color: var(--apple-deep); }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--live); flex: 0 0 auto; position: relative; }
.dot::after {
  content: ""; position: absolute; inset: -5px; border-radius: 50%;
  border: 2px solid var(--live); opacity: .55;
  animation: ping 1.9s cubic-bezier(0, 0, .2, 1) infinite;
}
@keyframes ping {
  0%   { transform: scale(.6); opacity: .8; }
  80%, 100% { transform: scale(1.5); opacity: 0; }
}

.hero h1 { margin-bottom: .45em; }
.hero h1 em { font-style: normal; color: var(--apple); position: relative; white-space: nowrap; }
.hero h1 em::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -.06em; height: .22em;
  background: var(--cat); border-radius: var(--r-pill); z-index: -1; opacity: .85;
}
.hero__lede {
  font-size: clamp(1.02rem, 1.5vw, 1.16rem); color: var(--ink-2);
  max-width: 54ch; margin-bottom: 26px;
}
.hero__btns { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }

.hero__stats { display: flex; flex-wrap: wrap; gap: clamp(18px, 3.4vw, 40px); }
.stat b {
  display: block; font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.1rem); font-weight: 800;
  color: var(--apple-deep); line-height: 1;
}
.stat span { font-size: .82rem; font-weight: 600; color: var(--ink-3); }

.hero__art { position: relative; }
.proofstack { position: relative; padding: 8px 0 0 8px; }
.proofstack__card {
  border-radius: var(--r-lg); overflow: hidden; background: var(--card);
  border: 1px solid var(--line); box-shadow: var(--sh-3);
}
/* Proofs are screenshots of wildly different shapes, so contain (never cover) —
   a cropped booking confirmation proves nothing. */
.proofstack__card img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: contain;
  background: var(--cat-tint); padding: 10px;
}
.proofstack__badge {
  position: absolute; z-index: 3; display: inline-flex; align-items: center; gap: 7px;
  background: var(--card); border: 1px solid var(--line-2); border-radius: var(--r-pill);
  padding: 9px 16px; font-size: .82rem; font-weight: 700; box-shadow: var(--sh-2);
}
.proofstack__badge--tl { top: -6px; left: -10px; }
.proofstack__badge--br { bottom: -14px; right: -6px; }
.proofstack__badge i { width: 9px; height: 9px; border-radius: 50%; background: var(--ok); }
@media (max-width: 940px) { .proofstack { max-width: 460px; margin-inline: auto; } }

/* ============================================================
   sections
   ============================================================ */
.sec { padding: clamp(46px, 6.5vw, 84px) 0; }
.sec--tint { background: linear-gradient(180deg, var(--paper-2), var(--paper)); border-block: 1px solid var(--line); }
.sec--cat { background: var(--cat-tint); border-block: 1px solid var(--cat-soft); }
.sec__head { max-width: 62ch; margin-bottom: clamp(26px, 4vw, 44px); }
.sec__head--center { margin-inline: auto; text-align: center; }
.sec__kicker {
  display: inline-block; margin-bottom: 12px; padding: 5px 13px;
  border-radius: var(--r-pill); background: var(--apple-soft); color: var(--apple-dark);
  font-size: .74rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
}
.sec__sub { color: var(--ink-2); font-size: 1.03rem; margin: 0; }

/* ============================================================
   show cards
   ============================================================ */
.shows {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(292px, 1fr));
  gap: clamp(16px, 2.2vw, 26px);
}

.show {
  position: relative; display: flex; flex-direction: column;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--sh-1);
  transition: transform .2s cubic-bezier(.34, 1.4, .64, 1), box-shadow .2s, border-color .2s;
}
.show:hover { transform: translateY(-4px); box-shadow: var(--sh-3); border-color: var(--line-2); }

.show__media {
  position: relative; aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--cat-soft), var(--apple-soft));
  overflow: hidden;
}
.show__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.show:hover .show__media img { transform: scale(1.045); }
.show__media--empty { display: grid; place-items: center; }
.show__media--empty svg { width: 76px; height: 76px; opacity: .5; }

.show__flag {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 13px; border-radius: var(--r-pill);
  font-size: .73rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  backdrop-filter: blur(6px); box-shadow: var(--sh-1);
}
.show__flag--live   { background: var(--apple); color: #fff; }
.show__flag--soon   { background: var(--cat); color: var(--ink); }
.show__flag--open   { background: var(--ok); color: #fff; }
.show__flag--closed { background: rgba(43, 31, 23, .72); color: #fff; }

.show__platform {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  padding: 6px 12px; border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .94); color: var(--ink-2);
  font-size: .72rem; font-weight: 700; box-shadow: var(--sh-1);
}

.show__body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.show__title { font-family: var(--font-display); font-size: 1.13rem; font-weight: 800; line-height: 1.28; margin: 0 0 12px; }
.show__title a { color: var(--ink); }
.show__title a:hover { color: var(--apple-deep); text-decoration: none; }

.show__meta {
  list-style: none; margin: 0 0 16px; padding: 0;
  display: grid; gap: 7px; font-size: .89rem; color: var(--ink-2);
}
.show__meta li { display: flex; align-items: flex-start; gap: 9px; }
.show__meta svg { width: 15px; height: 15px; margin-top: 3px; flex: 0 0 auto; color: var(--apple); }

.onsale {
  margin: 0 0 16px; padding: 11px 14px; border-radius: var(--r-sm);
  background: var(--cat-tint); border: 1px solid var(--cat-soft);
  display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap;
}
.onsale__lb { font-size: .71rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); }
.onsale__val {
  font-family: var(--font-display); font-weight: 800; font-size: .99rem;
  color: var(--apple-deep); font-variant-numeric: tabular-nums;
}
.onsale--past { background: var(--ok-soft); border-color: #cfe9d7; }
.onsale--past .onsale__val { color: var(--ok); }

.show__tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 0 0 16px; }
.tag {
  padding: 4px 11px; border-radius: var(--r-pill); background: var(--paper-2);
  border: 1px solid var(--line); font-size: .74rem; font-weight: 600; color: var(--ink-2);
}
.tag:hover { text-decoration: none; border-color: var(--apple); color: var(--apple-deep); }

.show__foot { margin-top: auto; display: flex; gap: 9px; }
.show__foot .btn { flex: 1; }

/* ============================================================
   proof gallery
   ============================================================ */
.proofbar {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  padding: 16px 20px; margin-bottom: 26px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: var(--sh-1);
}
.proofbar__n { font-family: var(--font-display); font-size: 1.7rem; font-weight: 800; color: var(--apple-deep); line-height: 1; }
.proofbar__tx { font-size: .9rem; color: var(--ink-2); }
.proofbar__tx b { color: var(--ink); }
.proofbar__sp { margin-left: auto; }

.pgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(168px, 1fr)); gap: 12px; }
@media (max-width: 520px) { .pgrid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 9px; } }

.pcell {
  position: relative; display: block; border-radius: var(--r-sm); overflow: hidden;
  background: var(--cat-tint); border: 1px solid var(--line); cursor: zoom-in;
  aspect-ratio: 3 / 4; box-shadow: var(--sh-1);
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
.pcell:hover { transform: translateY(-3px) scale(1.012); box-shadow: var(--sh-2); border-color: var(--apple); }
/* Fit the whole screenshot in the tile: the point of a proof is that it is readable,
   and the album mixes tall confirmation pages with wide seat maps. */
.pcell img { width: 100%; height: 100%; object-fit: contain; background: #fff; }
.pcell__ok {
  position: absolute; bottom: 7px; right: 7px; z-index: 2;
  width: 22px; height: 22px; border-radius: 50%; background: var(--ok); color: #fff;
  display: grid; place-items: center; box-shadow: 0 2px 6px rgba(0, 0, 0, .28);
}
.pcell__ok svg { width: 13px; height: 13px; }
.pcell__cap {
  position: absolute; inset: auto 0 0 0; z-index: 1; padding: 22px 9px 7px;
  background: linear-gradient(transparent, rgba(20, 12, 8, .82));
  color: #fff; font-size: .72rem; font-weight: 600; line-height: 1.3;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

/* lightbox */
.lb {
  position: fixed; inset: 0; z-index: 300; display: none; place-items: center;
  background: rgba(24, 15, 10, .93); padding: clamp(12px, 3vw, 40px);
}
.lb.open { display: grid; }
.lb img { max-width: 100%; max-height: 84vh; border-radius: var(--r); box-shadow: 0 24px 70px rgba(0, 0, 0, .6); background: #fff; }
.lb__cap { color: rgba(255, 255, 255, .9); text-align: center; font-size: .9rem; margin-top: 14px; max-width: 70ch; }
.lb__x, .lb__nav {
  position: absolute; border: 0; background: rgba(255, 255, 255, .13); color: #fff;
  border-radius: 50%; cursor: pointer; display: grid; place-items: center;
  backdrop-filter: blur(6px); transition: background .15s;
}
.lb__x:hover, .lb__nav:hover { background: rgba(255, 255, 255, .28); }
.lb__x { top: 18px; right: 18px; width: 46px; height: 46px; font-size: 1.5rem; line-height: 1; }
.lb__nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 1.8rem; line-height: 1; }
.lb__nav--prev { left: 14px; }
.lb__nav--next { right: 14px; }
.lb__n {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  color: rgba(255, 255, 255, .7); font-size: .84rem; font-variant-numeric: tabular-nums;
}
@media (max-width: 620px) { .lb__nav { width: 42px; height: 42px; } }

/* ============================================================
   steps / how it works
   ============================================================ */
.steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(224px, 1fr));
  gap: clamp(14px, 2vw, 22px); counter-reset: s;
}
.step {
  position: relative; padding: 26px 22px 22px; background: var(--card);
  border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--sh-1);
}
.step::before {
  counter-increment: s; content: counter(s);
  position: absolute; top: -17px; left: 22px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--apple); color: #fff; box-shadow: var(--sh-apple);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1.02rem;
}
.step h3 { font-size: 1.05rem; margin: 6px 0 8px; }
.step p { font-size: .92rem; color: var(--ink-2); margin: 0; }

/* ============================================================
   services
   ============================================================ */
.svcs { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: clamp(14px, 2vw, 22px); }
.svc {
  padding: 26px 24px; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--sh-1);
  transition: transform .18s, box-shadow .18s;
}
.svc:hover { transform: translateY(-3px); box-shadow: var(--sh-2); }
.svc__ico { width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 15px; }
.svc__ico svg { width: 27px; height: 27px; }
.svc__ico--a { background: var(--apple-soft); color: var(--apple-deep); }
.svc__ico--b { background: var(--cat-soft); color: #9a7c07; }
.svc__ico--c { background: var(--leaf-soft); color: var(--leaf-deep); }
.svc h3 { font-size: 1.09rem; margin-bottom: 8px; }
.svc p { font-size: .93rem; color: var(--ink-2); margin: 0 0 14px; }
.svc ul { margin: 0; padding-left: 0; list-style: none; display: grid; gap: 7px; font-size: .89rem; color: var(--ink-2); }
.svc li { display: flex; gap: 8px; align-items: flex-start; }
.svc li::before {
  content: ""; width: 16px; height: 16px; margin-top: 3px; flex: 0 0 auto;
  border-radius: 50%; background: var(--ok-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232f9e4f' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-position: center; background-size: 11px; background-repeat: no-repeat;
}

/* ============================================================
   booking form
   ============================================================ */
.bookwrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 48px); align-items: start; }
@media (max-width: 900px) { .bookwrap { grid-template-columns: 1fr; } }

.form {
  padding: clamp(22px, 3vw, 32px); background: var(--card);
  border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--sh-2);
}
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .87rem; font-weight: 700; margin-bottom: 6px; }
.field label .req { color: var(--apple); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border-radius: var(--r-sm);
  border: 1.5px solid var(--line-2); background: var(--paper);
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-color: var(--apple); background: #fff;
  box-shadow: 0 0 0 4px rgba(230, 59, 46, .12);
}
.field textarea { min-height: 96px; resize: vertical; }
.field__hint { font-size: .78rem; color: var(--ink-3); margin-top: 5px; }
.field--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .field--2 { grid-template-columns: 1fr; } }

.formnote { font-size: .8rem; color: var(--ink-3); margin: 12px 0 0; }
.formmsg { margin-top: 14px; padding: 13px 16px; border-radius: var(--r-sm); font-size: .9rem; font-weight: 600; display: none; }
.formmsg.show { display: block; }
.formmsg--ok { background: var(--ok-soft); color: #1d6b36; border: 1px solid #bfe3ca; }
.formmsg--err { background: var(--apple-soft); color: var(--apple-dark); border: 1px solid #f6cdc8; }

.trust { display: grid; gap: 14px; }
.trust__item {
  display: flex; gap: 14px; align-items: flex-start; padding: 18px 20px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--sh-1);
}
.trust__ico {
  width: 42px; height: 42px; border-radius: 12px; background: var(--apple-soft);
  color: var(--apple-deep); display: grid; place-items: center; flex: 0 0 auto;
}
.trust__ico svg { width: 21px; height: 21px; }
.trust__item b { display: block; font-size: .98rem; margin-bottom: 3px; }
.trust__item p { font-size: .88rem; color: var(--ink-2); margin: 0; }

/* ============================================================
   faq
   ============================================================ */
.faq { max-width: 800px; margin-inline: auto; display: grid; gap: 10px; }
.faq details {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r); box-shadow: var(--sh-1); overflow: hidden;
}
.faq details[open] { border-color: var(--line-2); box-shadow: var(--sh-2); }
.faq summary {
  padding: 17px 52px 17px 20px; cursor: pointer; font-weight: 700; font-size: 1rem;
  position: relative; list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 20px; top: 50%; width: 11px; height: 11px;
  border-right: 2.5px solid var(--apple); border-bottom: 2.5px solid var(--apple);
  transform: translateY(-70%) rotate(45deg); transition: transform .2s;
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq summary:hover { color: var(--apple-deep); }
.faq__a { padding: 0 20px 19px; color: var(--ink-2); font-size: .94rem; }
.faq__a p:last-child { margin-bottom: 0; }

/* ============================================================
   cta band
   ============================================================ */
.band {
  position: relative; overflow: hidden; padding: clamp(44px, 6vw, 74px) 0;
  background: var(--apple); color: #fff; text-align: center;
}
.band::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(600px 300px at 82% 8%, rgba(249, 223, 74, .34), transparent 60%),
    radial-gradient(500px 260px at 8% 92%, rgba(0, 0, 0, .16), transparent 60%);
}
.band > * { position: relative; }
.band h2 { color: #fff; margin-bottom: .4em; }
.band p { color: rgba(255, 255, 255, .9); max-width: 56ch; margin-inline: auto; margin-bottom: 26px; }
.band .btn--ghost { background: #fff; border-color: #fff; }
.band__btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   footer
   ============================================================ */
.foot { background: var(--ink); color: rgba(255, 255, 255, .68); padding: clamp(40px, 5vw, 60px) 0 24px; font-size: .9rem; }
.foot a { color: rgba(255, 255, 255, .86); }
.foot a:hover { color: var(--cat); }
.foot__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: clamp(22px, 3.4vw, 40px); margin-bottom: 34px; }
@media (max-width: 860px) { .foot__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .foot__grid { grid-template-columns: 1fr; } }
.foot__brand { display: flex; align-items: center; gap: 11px; margin-bottom: 14px; }
.foot__brand svg { width: 44px; height: 44px; }
.foot__brand b { font-family: var(--font-display); font-size: 1.1rem; color: #fff; }
.foot h4 {
  color: #fff; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 14px; font-family: var(--font); font-weight: 800;
}
.foot ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.foot__bot {
  border-top: 1px solid rgba(255, 255, 255, .12); padding-top: 22px;
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .84rem;
}

/* ============================================================
   empty state
   ============================================================ */
.empty {
  text-align: center; padding: clamp(40px, 6vw, 70px) 20px;
  background: var(--card); border: 1.5px dashed var(--line-2); border-radius: var(--r-lg);
}
.empty svg { width: 88px; height: 88px; margin-inline: auto; margin-bottom: 18px; opacity: .75; }
.empty h3 { margin-bottom: 8px; }
.empty p { color: var(--ink-2); max-width: 46ch; margin-inline: auto; margin-bottom: 22px; }

/* ============================================================
   scroll reveal (progressive: without JS everything stays visible)
   ============================================================ */
.rv {
  opacity: 0; transform: translateY(16px);
  transition: opacity .55s ease, transform .55s cubic-bezier(.22, 1, .36, 1);
}
.rv.in { opacity: 1; transform: none; }
html.no-js .rv { opacity: 1; transform: none; }

/* ============================================================
   utilities
   ============================================================ */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.center { text-align: center; }
.nowrap { white-space: nowrap; }

/* ============================================================
   language switcher + suggestion bar
   ============================================================ */
.langsw { display: inline-flex; align-items: center; gap: 2px; }
.langsw a {
  padding: 6px 10px; border-radius: var(--r-pill);
  font-size: .82rem; font-weight: 700; color: var(--ink-3);
  transition: background .15s, color .15s;
}
.langsw a:hover { background: var(--apple-soft); color: var(--apple-deep); text-decoration: none; }
.langsw a[aria-current="true"] { background: var(--cat); color: var(--ink); }
.langsw__ico { display: inline-flex; color: var(--ink-4); margin-right: 2px; }
.langsw__ico svg { width: 16px; height: 16px; }

.langsw--compact { margin-left: 6px; padding-left: 8px; border-left: 1px solid var(--line-2); }
.langsw--compact a { padding: 5px 8px; font-size: .78rem; letter-spacing: .03em; }

/* footer variant sits on the dark band */
.foot .langsw a { color: rgba(255, 255, 255, .78); }
.foot .langsw a:hover { background: rgba(255, 255, 255, .12); color: var(--cat); }
.foot .langsw a[aria-current="true"] { background: var(--cat); color: var(--ink); }

@media (max-width: 900px) {
  .langsw--compact {
    margin: 6px 0 0; padding: 8px 0 0;
    border-left: 0; border-top: 1px solid var(--line);
    justify-content: center;
  }
  .langsw--compact a { padding: 9px 14px; font-size: .9rem; }
}

.langbar { background: var(--ink); color: rgba(255, 255, 255, .9); font-size: .88rem; }
.langbar__in { display: flex; align-items: center; gap: 12px; padding: 9px 0; flex-wrap: wrap; }
.langbar__ico { display: inline-flex; color: var(--cat); flex: 0 0 auto; }
.langbar__ico svg { width: 17px; height: 17px; }
.langbar .btn { padding: 7px 15px; font-size: .82rem; }
.langbar__x {
  margin-left: auto; background: transparent; border: 0; color: rgba(255, 255, 255, .6);
  font-size: 1.4rem; line-height: 1; cursor: pointer; padding: 0 4px;
}
.langbar__x:hover { color: #fff; }

/* ============================================================
   timezone hint — appended by app.js when the visitor is not on UTC+7
   ============================================================ */
.tzhint {
  display: inline; font-size: .78em; color: var(--ink-3);
  font-weight: 500; white-space: nowrap;
}
.onsale .tzhint, .show__meta .tzhint { display: block; white-space: normal; margin-top: 2px; }

/* ============================================================
   proof groups — one batch per event, as the fanpage posts them
   ============================================================ */
.pgroup { margin-bottom: clamp(28px, 4vw, 44px); }
.pgroup:last-child { margin-bottom: 0; }

.pgroup__head {
  display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
  padding-bottom: 12px; margin-bottom: 14px;
  border-bottom: 2px solid var(--line);
}
.pgroup__title {
  font-size: clamp(1.05rem, 2.1vw, 1.28rem); margin: 0;
  flex: 1 1 auto; min-width: 0;
}
.pgroup__meta { font-size: .82rem; color: var(--ink-3); white-space: nowrap; }
.pgroup__meta b { color: var(--apple-deep); font-family: var(--font-display); font-size: 1rem; }
.pgroup__fb {
  flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--paper-2); color: var(--ink-3);
  transition: background .15s, color .15s;
}
.pgroup__fb:hover { background: var(--apple-soft); color: var(--apple-deep); }
.pgroup__fb svg { width: 16px; height: 16px; }

/* Extra images stay in the DOM (so the lightbox can page through the whole batch)
   but collapse out of the layout until asked for. */
.pgroup__more { display: contents; }
.pgroup__more[hidden] { display: none; }
.pgroup__toggle { margin: 14px 0 0; }

@media (max-width: 520px) {
  .pgroup__head { gap: 6px; }
  .pgroup__meta { white-space: normal; }
}

/* group heading: name + optional note, count on the right */
.pgroup__id { flex: 1 1 auto; min-width: 0; }
.pgroup__note {
  margin: 3px 0 0; font-size: .85rem; color: var(--ink-2); line-height: 1.45;
}
.pgroup__title a { color: inherit; }
.pgroup__title a:hover { color: var(--apple-deep); text-decoration: none; }
