/* ============================================================
   POTITCO — modern cultural site
   Type: Plus Jakarta Sans
   Look: warm paper background, generous whitespace, editorial.
   ============================================================ */

:root{
  --paper:        #fbf6e9;        /* warmer cream */
  --paper-deep:   #f1e8cf;
  --surface:      #ffffff;
  --ink:          #1b1b22;
  --ink-soft:     #5e5a52;
  --ink-mute:     #8a857a;
  --line:         #e1d8bf;
  --line-soft:    #ece3c8;

  --red:          #d83a2c;        /* punchier red, echoes logo nose */
  --red-deep:     #a82a1f;
  --ochre:        #e4a82b;        /* warm yellow */
  --ochre-deep:   #b97f12;
  --moss:         #4f7a3c;
  --moss-soft:    #d5e3c1;
  --teal:         #1e7a8c;
  --teal-soft:    #cfe6ec;
  --plum:         #6e2e6a;
  --plum-soft:    #ead3e6;
  --sand:         #f5e6b8;
  --sky:          #b9dee9;        /* nod to original light-blue panel */

  --maxw:         1320px;
  --maxw-text:    72ch;

  --t-display:   clamp(2.4rem, 5vw, 4.6rem);
  --t-h1:        clamp(2.0rem, 3.6vw, 3.0rem);
  --t-h2:        clamp(1.5rem, 2.2vw, 2.0rem);
  --t-h3:        1.25rem;
  --t-body:      1.0625rem;
  --t-small:     .875rem;

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 24px;
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  font-size: var(--t-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,h2,h3,h4,h5,h6{
  font-family: inherit;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.08;
  color: var(--ink);
  margin: 0 0 .5em;
}
h1{ font-size: var(--t-h1); }
h2{ font-size: var(--t-h2); }
h3{ font-size: var(--t-h3); font-weight: 600; }

p{ margin: 0 0 1em; }
a{ color: var(--ink); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover{ color: var(--red); }

img{ max-width: 100%; height: auto; display: block; }
hr{ border: 0; border-top: 1px solid var(--line); margin: 3rem 0; }

/* === Layout shell === */
.wrap{ max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(20px, 4vw, 48px); }
.wrap-text{ max-width: var(--maxw-text); }
section{ padding-block: clamp(48px, 7vw, 96px); }

.eyebrow{
  font-size: .78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .18em;
  color: var(--red);
  display: inline-block;
  margin-bottom: .8em;
}

/* === Header === */
.site-header{
  position: sticky; top: 0; z-index: 50;
  background: rgba(246,243,235,0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header .bar{
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
  gap: 24px;
}
.brand{
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--ink);
}
.brand img{ width: 44px; height: 44px; object-fit: contain; }
.brand .wordmark{
  font-weight: 800; letter-spacing: .04em; font-size: 1.0rem;
  line-height: 1.4; text-transform: uppercase;
}
.brand .wordmark small{
  display: block; font-weight: 500; font-size: .7rem;
  letter-spacing: .15em; color: var(--ink-soft); text-transform: uppercase;
  margin-top: 2px;
  padding-top: 5px;
}
.nav-main{
  display: flex; align-items: center; gap: 4px;
  list-style: none; padding: 0; margin: 0;
}
.nav-main a{
  display: inline-block; padding: 10px 14px;
  font-weight: 500; font-size: .95rem;
  color: var(--ink); text-decoration: none;
  border-radius: 999px;
  transition: background .15s, color .15s;
}
.nav-main a:hover{ background: var(--paper-deep); color: var(--ink); }
.nav-main a.is-current{ color: var(--red); }
.nav-main .cta{
  background: var(--ink); color: var(--paper);
  padding: 10px 18px;
  margin-left: 8px;
}
.nav-main .cta:hover{ background: var(--red); color: #fff; }

.nav-toggle{
  display: none; background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; padding: 0; color: var(--ink);
}

@media (max-width: 880px){
  .nav-toggle{ display: inline-grid; place-items: center; }
  .nav-main{
    display: none;
    position: absolute; top: 76px; left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line-soft);
    flex-direction: column; align-items: stretch;
    padding: 12px clamp(20px,4vw,48px) 20px;
    gap: 2px;
  }
  .nav-main.is-open{ display: flex; }
  .nav-main a{ padding: 12px 14px; }
  .nav-main .cta{ margin: 8px 0 0; text-align: center; }
}

/* === Buttons === */
.btn{
  display: inline-flex; align-items: center; gap: .5em;
  padding: 12px 22px;
  font-family: inherit; font-weight: 600; font-size: .98rem;
  border-radius: 999px; border: 1px solid var(--ink);
  background: var(--ink); color: var(--paper);
  text-decoration: none; cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
.btn:hover{ background: var(--red); border-color: var(--red); color: #fff; }
.btn-ghost{ background: transparent; color: var(--ink); }
.btn-ghost:hover{ background: var(--ink); color: var(--paper); }
.btn-red{ background: var(--red); border-color: var(--red); color: #fff; }
.btn-red:hover{ background: var(--red-deep); border-color: var(--red-deep); color: #fff; }

/* === Hero === */
.hero{
  padding-block: clamp(40px, 6vw, 80px) clamp(48px, 7vw, 96px);
  border-bottom: 1px solid var(--line-soft);
  background:
    radial-gradient(800px 320px at 88% 0%, rgba(228,168,43,.18), transparent 70%),
    radial-gradient(700px 280px at 4% 80%, rgba(30,122,140,.10), transparent 70%);
  position: relative;
  overflow: hidden;
}
.hero::after{
  /* playful confetti dots */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, var(--ochre) 3px, transparent 3.5px),
    radial-gradient(circle, var(--red) 3px, transparent 3.5px),
    radial-gradient(circle, var(--moss) 3px, transparent 3.5px),
    radial-gradient(circle, var(--teal) 3px, transparent 3.5px),
    radial-gradient(circle, var(--plum) 3px, transparent 3.5px);
  background-position: 8% 18%, 92% 32%, 14% 78%, 86% 70%, 50% 12%;
  background-size: 8px 8px;
  background-repeat: no-repeat;
  opacity: .55;
  pointer-events: none;
}
.hero > *{ position: relative; z-index: 1; }
.hero-grid{
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
}
.hero-grid h1{
  font-size: var(--t-display);
  letter-spacing: -0.025em;
  font-weight: 800;
  max-width: 16ch;
}
.hero-grid h1 em{ font-style: normal; color: var(--red); }
.hero-grid h1 em.alt{ color: var(--ochre-deep); }
.hero-grid h1 em.moss{ color: var(--moss); }
.hero-lede{
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 50ch;
  margin-top: 1.5rem;
}
.hero-actions{ display: flex; gap: 12px; flex-wrap: wrap; margin-top: 2rem; }

/* a small "now playing" card next to the hero */
.now-card{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px;
  max-width: 380px;
  margin-left: auto;
  position: relative;
  box-shadow: 8px 8px 0 var(--ochre);
}
.now-card .kicker{
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .2em; color: var(--red);
  display: flex; align-items: center; gap: 8px;
}
.now-card .kicker::before{
  content:""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(200,57,47,.15);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse{
  0%,100%{ box-shadow: 0 0 0 4px rgba(200,57,47,.15); }
  50%{ box-shadow: 0 0 0 8px rgba(200,57,47,.05); }
}
.now-card h2{
  font-size: 1.6rem; margin: 12px 0 4px;
}
.now-card .meta{ font-size: .9rem; color: var(--ink-soft); margin-bottom: 16px; }
.now-card .thumb{
  width: 100%; max-width: 332px;
  aspect-ratio: 4/3;
  background: var(--paper-deep);
  border-radius: var(--r-sm);
  overflow: hidden;
  margin-bottom: 16px;
}
.now-card .thumb img{ width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 880px){
  .hero-grid{ grid-template-columns: 1fr; gap: 32px; }
  .now-card{ margin-left: 0; max-width: 100%; }
}

/* === Section headers === */
.section-head{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: clamp(32px, 4vw, 64px);
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-soft);
}
.section-head h2{
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  max-width: 20ch;
  position: relative;
}
.section-head h2::before{
  content: "";
  display: block;
  width: 48px; height: 6px;
  background: var(--red);
  border-radius: 3px;
  margin-bottom: 16px;
}
.section-head .lede{
  color: var(--ink-soft);
  max-width: 50ch;
  font-size: 1.05rem;
}
@media (max-width: 720px){
  .section-head{ grid-template-columns: 1fr; gap: 16px; }
}

/* === Voorstellingen grid === */
.shows-grid{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(20px, 2.5vw, 40px) clamp(20px, 2.5vw, 32px);
}
.show{
  grid-column: span 4;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
}
.show .frame{
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--sky);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  display: grid; place-items: center;
  overflow: hidden;
  margin-bottom: 18px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.show:nth-child(6n+1) .frame{ background: var(--sky); }
.show:nth-child(6n+2) .frame{ background: var(--sand); }
.show:nth-child(6n+3) .frame{ background: var(--moss-soft); }
.show:nth-child(6n+4) .frame{ background: var(--plum-soft); }
.show:nth-child(6n+5) .frame{ background: var(--teal-soft); }
.show:nth-child(6n) .frame{ background: #fcd7d2; }
.show:hover .frame{ transform: translateY(-3px); box-shadow: 0 14px 30px -16px rgba(20,20,20,0.18); }
.show .frame img{
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}
.show .frame.cover img{
  max-width: 100%; max-height: 100%; width: 100%; height: 100%;
  object-fit: cover; padding: 10%;
}
.show .num{
  font-size: .78rem; color: var(--ink-mute);
  font-variant-numeric: tabular-nums; letter-spacing: .1em;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.show h3{
  font-size: 1.35rem; font-weight: 700; margin: 0 0 6px;
  letter-spacing: -.01em;
}
.show .age{
  font-size: .85rem; color: var(--ink-soft);
  display: inline-flex; align-items: center; gap: 8px;
}
.show .age::before{
  content:""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--red);
}
.show .blurb{
  margin-top: 8px;
  font-size: .98rem;
  color: var(--ink-soft);
}
.show:hover h3{ color: var(--red); }

@media (max-width: 980px){ .show{ grid-column: span 6; } }
@media (max-width: 620px){ .show{ grid-column: span 12; } }

/* === Generic "two-column editorial" === */
.editorial{
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.editorial > .col-meta{ position: sticky; top: 100px; }
@media (max-width: 880px){
  .editorial{ grid-template-columns: 1fr; }
  .editorial > .col-meta{ position: static; }
}

/* === Image rail (for show detail pages) ===
   Stacks at small sizes; constrains every image so a 799×400 file
   never renders larger than its native pixels. */
.image-rail{
  display: grid; gap: 16px;
}
.image-rail figure{
  margin: 0; background: transparent /* === var(--surface)
  border: 0cap solid var(--line) */;
  border-radius: var(--r-sm);
  overflow: hidden;
  width: fit-content;        /* shrink-wraps so we never stretch images */
  max-width: min(100%, 560px);
}
.image-rail figure.cover{ width: 100%; }
/* Render images at their natural pixel dimensions (never upscale),
   then constrain down to the column / figure max via max-width. */
.image-rail img{ display: block; width: auto; max-width: 100%; height: auto; }
.image-rail figcaption{
  font-size: .8rem; color: var(--ink-mute);
  padding: 8px 12px; border-top: 1px solid var(--line-soft);
}

/* === Definition list / facts table === */
.facts{
  display: grid;
  grid-template-columns: 14ch 1fr;
  gap: 8px 24px;
  font-size: .95rem;
  margin: 0;
}
.facts dt{
  color: var(--ink-mute);
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
}
.facts dd{
  margin: 0;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink);
}

/* === Accordion using <details> === */
details.acc{
  border-bottom: 1px solid var(--line);
}
details.acc:first-of-type{ border-top: 1px solid var(--line); }
details.acc > summary{
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  font-weight: 600;
  font-size: 1.1rem;
}
details.acc > summary::-webkit-details-marker{ display: none; }
details.acc > summary::after{
  content: "+";
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-weight: 400; font-size: 1.2rem; line-height: 1;
  color: var(--ink-soft);
  transition: transform .2s, background .2s, color .2s;
}
details.acc[open] > summary::after{
  content: "−"; background: var(--ink); color: var(--paper);
  border-color: var(--ink);
}
details.acc > .acc-body{ padding: 0 0 28px; color: var(--ink-soft); }
details.acc > .acc-body p:last-child{ margin-bottom: 0; }

/* === Speellijst === */
.month-block{ margin-bottom: 48px; }
.month-block .month-head{
  display: flex; align-items: baseline; gap: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--ink);
  margin-bottom: 8px;
}
.month-block h2{
  font-size: 1.35rem; font-weight: 800; letter-spacing: .02em;
  margin: 0; text-transform: uppercase;
}
.month-block .count{
  font-size: .9rem; color: var(--ink-mute);
}
.event-row{
  display: grid;
  grid-template-columns: 56px 1.5fr 2.4fr 1.6fr .9fr 1.2fr;
  gap: 24px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: .95rem;
}
.event-row .date{
  font-variant-numeric: tabular-nums;
  font-weight: 700; font-size: 1.05rem;
  line-height: 1.1;
}
.event-row .date small{
  display: block; font-weight: 500; font-size: .8rem;
  color: var(--ink-mute); text-transform: lowercase; margin-top: 2px;
}
.event-row .show-name{
  font-weight: 600; text-transform: uppercase; letter-spacing: .04em;
  font-size: .98rem;
}
.event-row .venue{ color: var(--ink-soft); }
.event-row .city{ color: var(--ink-soft); }
.event-row .time{
  font-variant-numeric: tabular-nums;
  color: var(--ink-soft);
  font-size: .92rem;
}
.event-row .action{ text-align: right; }
.tag{
  display: inline-block;
  font-size: .72rem; font-weight: 700; letter-spacing: .08em;
  padding: 3px 9px; border-radius: 999px;
  text-transform: uppercase;
}
.tag-school{ background: var(--sand); color: #6b4d00; }
.tag-public{ background: var(--moss-soft); color: #2c4a1f; }
.tag-special{ background: var(--plum-soft); color: #4b2a6f; }

.btn-mini{
  display: inline-block;
  font-size: .82rem; font-weight: 600;
  padding: 6px 14px; border-radius: 999px;
  background: var(--ink); color: var(--paper);
  text-decoration: none;
  transition: background .15s;
}
.btn-mini:hover{ background: var(--red); color: #fff; }
.btn-mini.is-closed{
  background: transparent; color: var(--ink-mute);
  border: 1px solid var(--line);
  cursor: not-allowed;
}

@media (max-width: 900px){
  .event-row{
    grid-template-columns: 56px 1fr 1fr;
    grid-template-areas:
      "date show show"
      "date venue venue"
      "date city time"
      "act  act   act";
    row-gap: 4px;
  }
  .event-row .date{ grid-area: date; }
  .event-row .show-name{ grid-area: show; }
  .event-row .venue{ grid-area: venue; }
  .event-row .city{ grid-area: city; }
  .event-row .time{ grid-area: time; text-align: right; }
  .event-row .action{ grid-area: act; text-align: left; padding-top: 8px; }
}

/* === Winkeltje === */
.shop-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 720px){ .shop-grid{ grid-template-columns: 1fr; } }
.shop-item{
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 20px;
  align-items: start;
}
.shop-item .cover{
  width: 140px; height: 140px;
  background: var(--paper-deep);
  border-radius: 4px;
  display: grid; place-items: center;
  overflow: hidden;
}
.shop-item .cover img{ max-width: 100%; max-height: 100%; object-fit: contain; }
.shop-item h3{ font-size: 1.1rem; margin: 0 0 4px; }
.shop-item .price{
  font-weight: 700; font-size: 1.05rem;
  font-variant-numeric: tabular-nums;
  margin-top: 8px;
}
.shop-item .sub{ color: var(--ink-soft); font-size: .92rem; }

/* === Over ons === */
.maker-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.maker .portrait{
  width: 100%;
  max-width: 320px;     /* never larger than 340×340 native */
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--paper-deep);
  overflow: hidden;
  margin-bottom: 20px;
}
.maker .portrait img{ width: 100%; height: 100%; object-fit: cover; }
.maker h3{ font-size: 1.4rem; margin: 0 0 4px; }
.maker .role{
  font-size: .85rem; text-transform: uppercase; letter-spacing: .12em;
  color: var(--red); font-weight: 600; margin-bottom: 12px;
}
@media (max-width: 720px){ .maker-grid{ grid-template-columns: 1fr; } }

/* === Footer === */
.site-footer{
  background: #16161a;
  color: #c6c4be;
  margin-top: 96px;
  padding: 64px 0 28px;
}
.site-footer a{ color: #e6e3da; }
.site-footer a:hover{ color: var(--red); }
.footer-grid{
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
@media (max-width: 880px){
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}
.footer-grid h4{
  color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .15em;
  margin: 0 0 16px; font-weight: 600;
}
.footer-grid ul{ list-style: none; padding: 0; margin: 0; }
.footer-grid li{ margin-bottom: 8px; font-size: .95rem; }
.footer-brand{ display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.footer-brand img{ width: 44px; height: 44px; }
.footer-brand .wordmark{ color: #fff; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; font-size: 1rem; }
.copyline{
  border-top: 1px solid #2c2c30;
  padding-top: 20px;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  font-size: .82rem; color: #8a857a;
}

/* === Tiny "puppet row" decoration === */
.puppet-row{
  background: linear-gradient(90deg, var(--sky), var(--sand), var(--moss-soft), var(--plum-soft), #fcd7d2);
  padding: 18px 0;
  border-block: 1px solid var(--line);
}
.puppet-row img{
  display: block; margin: 0 auto;
  width: 100%; max-width: 900px;
  height: 100%; max-height: 450px;
}

/* === Utility === */
.text-center{ text-align: center; }
.muted{ color: var(--ink-soft); }
.lead{ font-size: 1.15rem; color: var(--ink-soft); }
.divider{ border-top: 1px solid var(--line); margin: 48px 0; }

/* === Page head colorways === */
.page-head{
  padding-block: clamp(48px, 6vw, 96px) clamp(32px, 4vw, 64px);
  border-bottom: 1px solid var(--line-soft);
  background:
    radial-gradient(600px 220px at 92% 10%, rgba(228,168,43,.18), transparent 70%);
}
.page-head .breadcrumb{
  font-size: .82rem; color: var(--ink-mute);
  text-transform: uppercase; letter-spacing: .15em;
  margin-bottom: 16px;
}
.page-head .breadcrumb a{ color: var(--ink-mute); text-decoration: none; }
.page-head .breadcrumb a:hover{ color: var(--red); }
.page-head h1{
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  max-width: 18ch;
  margin: 0;
}
.page-head .lede{
  margin-top: 20px;
  font-size: 1.15rem; color: var(--ink-soft);
  max-width: 56ch;
}

/* === Forms & alerts === */
.form-card{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: clamp(24px, 3vw, 40px);
}
.form .field{ margin-bottom: 20px; }
.form .field:last-child{ margin-bottom: 0; }
.form label{
  display: block;
  font-size: .8rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.form input[type="text"],
.form input[type="email"],
.form input[type="tel"],
.form input[type="number"],
.form select,
.form textarea{
  width: 100%;
  font-family: inherit; font-size: 1rem; line-height: 1.4;
  padding: 12px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  color: var(--ink);
  -webkit-appearance: none;
  appearance: none;
}
.form input:focus,
.form select:focus,
.form textarea:focus{
  outline: 0;
  border-color: var(--red);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(216,58,44,.15);
}
.form-grid-2{
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.form-grid-2 .field{ margin-bottom: 0; }
@media (max-width: 640px){
  .form-grid-2{ grid-template-columns: 1fr; gap: 20px; }
}

.alert{
  padding: 16px 20px;
  border-radius: var(--r-sm);
  border-left: 4px solid var(--ink-soft);
  background: var(--paper-deep);
  font-size: .98rem;
  margin-bottom: 24px;
}
.alert-info{ border-left-color: var(--teal); background: var(--teal-soft); color: #0c4955; }
.alert-success{ border-left-color: var(--moss); background: var(--moss-soft); color: #2c4a1f; }
.alert-error{ border-left-color: var(--red); background: #fcd7d2; color: #6b1a13; }

/* === Reservation summary === */
.reserveer-summary{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: clamp(24px, 3vw, 32px);
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 720px){ .reserveer-summary{ grid-template-columns: 1fr; } }
.reserveer-summary h2{
  font-size: 1.6rem; margin-bottom: 4px;
}
.reserveer-summary .meta{
  color: var(--ink-soft); font-size: .95rem; margin-bottom: 16px;
}
.reserveer-summary .seats{
  background: var(--paper-deep);
  padding: 18px 20px;
  border-radius: var(--r-sm);
  font-variant-numeric: tabular-nums;
}
.reserveer-summary .seats .big{
  display: block;
  font-size: 2rem; font-weight: 800;
  color: var(--red);
  line-height: 1.05;
  margin-bottom: 4px;
}
.reserveer-summary .seats .label{
  font-size: .75rem; text-transform: uppercase; letter-spacing: .12em;
  color: var(--ink-mute);
}
