/* ============================================================
   NGISI — pop-up bahay kubo photobooth · website mockup
   ============================================================ */

:root {
  /* === LIGHT MODE (DAY) === */
  --bg:            #E8D4A4;
  --bg-soft:       #DEC58A;
  --bg-deep:       #C99B5A;
  --ink:           #2B2017;
  --ink-soft:      #5A4A38;
  --ink-cream:     #F5E6B5;
  --ink-olive:     #6C7A3B;
  --olive-deep:    #4F5A24;

  --cogon:           #C99B5A;
  --cogon-shadow:    #8E6739;
  --cogon-highlight: #E3B976;

  --sawali:        #6E4A2A;
  --sawali-light:  #8A6238;
  --sawali-dark:   #4E3318;

  --wood:        #7C5430;
  --wood-grain:  #3E2814;
  --wood-dark:   #43291A;

  --sun:        #E8C038;
  --sun-deep:   #C9A02A;
  --cinnabar:   #C8472E;
  --cinnabar-deep: #A2371F;
  --indigo:     #2A3B5C;
  --indigo-deep: #1B2740;

  --palm:        #4A6F3C;
  --palm-dark:   #2F4A26;
  --grass:       #6B7F3E;
  --grass-dark:  #4A5A24;

  --curtain:    #D5C088;
  --interior:   #2B1F12;
  --surfboard:  #6E4A2A;
  --shadow:     rgba(43,32,23,0.5);

  --accent:     var(--cinnabar);
  --rule:       rgba(43,32,23,0.18);
  --paper:      #F2E2B6;

  --font-display: 'Fraunces','Cooper BT','Sentinel',serif;
  --font-script:  'Caveat Brush', cursive;
  --font-body:    'Newsreader','Lora','Cormorant Garamond',serif;
  --font-mono:    'Geist Mono','JetBrains Mono',ui-monospace,monospace;
}

[data-mode="night"] {
  --bg:        #1B2740;
  --bg-soft:   #2A3B5C;
  --bg-deep:   #0F1828;
  --ink:       #F2E6C0;
  --ink-soft:  #C9B98A;
  --ink-cream: #F5E6B5;
  --ink-olive: #B5C28A;
  --olive-deep: #7E8C50;

  --cogon:           #B5894E;
  --cogon-shadow:    #5A3E1C;
  --cogon-highlight: #D4A464;

  --sawali:        #4E3318;
  --sawali-light:  #6B4628;
  --sawali-dark:   #2E1E0C;

  --wood:        #5A3D22;
  --wood-grain:  #2E1E10;
  --wood-dark:   #2A1A0E;

  --sun:        #FFC56B;
  --sun-deep:   #E08F3F;
  --cinnabar:   #E26142;
  --cinnabar-deep: #B23E25;
  --indigo:     #0E1628;
  --indigo-deep: #050B16;

  --palm:        #1F3A1F;
  --palm-dark:   #0E1F0E;
  --grass:       #2A3A1A;
  --grass-dark:  #15200E;

  --curtain:    #C9A856;
  --interior:   #0A0604;
  --surfboard:  #4E3318;
  --shadow:     rgba(0,0,0,0.7);

  --rule:       rgba(242,230,192,0.18);
  --paper:      #2F3D58;
}

/* ============================================================
   BASE
   ============================================================ */

* { box-sizing: border-box; }
*::selection { background: var(--cinnabar); color: var(--ink-cream); }

html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--bg); }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: 0.005em;
  min-height: 100dvh;
  position: relative;
  overflow-x: hidden;
  transition: background 600ms cubic-bezier(0.4,0,0.2,1), color 600ms;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

/* ============================================================
   AMBIENT
   ============================================================ */

.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.ambient--grain {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='5'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.45 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.18;
  mix-blend-mode: multiply;
}

[data-mode="night"] .ambient--grain { mix-blend-mode: screen; opacity: 0.12; }

.ambient--vignette {
  background: radial-gradient(140% 90% at 50% 40%, transparent 50%, rgba(43,32,23,0.18) 100%);
}

[data-mode="night"] .ambient--vignette {
  background: radial-gradient(140% 90% at 50% 30%, transparent 30%, rgba(0,0,0,0.55) 100%);
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 11px 18px;
  border-radius: 99px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 180ms cubic-bezier(0.34,1.56,0.64,1), background 220ms, color 220ms, box-shadow 220ms, border-color 220ms;
  white-space: nowrap;
  text-decoration: none;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--cinnabar);
  color: #FFF4E6;
  box-shadow: 0 4px 0 0 var(--cinnabar-deep), 0 6px 18px rgba(200,71,46,0.35);
}
.btn--primary:hover {
  background: var(--cinnabar-deep);
  box-shadow: 0 6px 0 0 var(--cinnabar-deep), 0 8px 24px rgba(200,71,46,0.45);
}

.btn--secondary {
  background: var(--ink);
  color: var(--bg);
  box-shadow: 0 2px 0 0 rgba(0,0,0,0.3);
}
.btn--secondary:hover { background: var(--sawali-dark); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink-soft);
}
.btn--ghost:hover { background: var(--ink); color: var(--bg); }

.btn--lg {
  padding: 14px 22px;
  font-size: 12px;
  letter-spacing: 0.18em;
}

.btn--full {
  width: 100%;
}

/* ============================================================
   TOP NAV
   ============================================================ */

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(20px, 4vw, 56px);
  background: linear-gradient(180deg, var(--bg) 0%, color-mix(in oklab, var(--bg) 90%, transparent) 80%, transparent 100%);
  backdrop-filter: blur(6px);
}

.topbar__mark { display: inline-flex; transform: rotate(-1.2deg); transition: transform 200ms; }
.topbar__mark:hover { transform: rotate(0deg); }

.topbar__nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2vw, 28px);
}

.topbar__nav a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 6px 2px;
  border-bottom: 1px solid transparent;
  transition: color 180ms, border-color 180ms;
}
.topbar__nav a:hover {
  color: var(--ink);
  border-bottom-color: var(--cinnabar);
}

.topbar__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.toggle {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--sun);
  border: none;
  border-radius: 99px;
  cursor: pointer;
  position: relative;
  transition: background 400ms, color 400ms;
}

.toggle:hover { background: var(--sawali-dark); }

.toggle__icon {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 400ms, transform 400ms;
}

.toggle__icon--moon {
  opacity: 0;
  transform: rotate(-90deg) scale(0.6);
}

[data-mode="night"] .toggle__icon--sun {
  opacity: 0;
  transform: rotate(90deg) scale(0.6);
}

[data-mode="night"] .toggle__icon--moon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* ============================================================
   HERO
   ============================================================ */

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(24px, 5vw, 80px);
  align-items: center;
  padding: clamp(16px, 3vw, 32px) clamp(20px, 4vw, 56px) clamp(60px, 8vw, 120px);
  min-height: calc(100dvh - 80px);
  position: relative;
}

.hero__art {
  position: relative;
  align-self: stretch;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.bahay-kubo {
  width: 100%;
  max-width: 680px;
  height: auto;
  filter: drop-shadow(0 24px 36px rgba(43,32,23,0.28));
  transition: filter 600ms;
}

[data-mode="night"] .bahay-kubo {
  filter: drop-shadow(0 18px 40px rgba(0,0,0,0.55));
}

.bahay-kubo .sky--day,
.bahay-kubo .sky--night,
.bahay-kubo .sun,
.bahay-kubo .moon,
.bahay-kubo .bulb__filament,
.bahay-kubo .bulb__glow {
  transition: opacity 600ms ease;
}

[data-mode="night"] .bahay-kubo .sky--day { opacity: 0; }
[data-mode="night"] .bahay-kubo .sky--night { opacity: 1; }
[data-mode="night"] .bahay-kubo .sun { opacity: 0; }
[data-mode="night"] .bahay-kubo .moon { opacity: 1; }
[data-mode="night"] .bahay-kubo .bulb__glow { opacity: 1; }
[data-mode="night"] .bahay-kubo .bulb__filament { filter: drop-shadow(0 0 6px rgba(255,200,107,0.9)); }

.bahay-kubo .palms { transform-origin: 50% 100%; animation: sway 9s ease-in-out infinite; }
@keyframes sway {
  0%,100% { transform: rotate(-0.4deg); }
  50%     { transform: rotate(0.4deg); }
}

.bahay-kubo .curtain { transform-origin: 300px 320px; animation: curtain 7s ease-in-out infinite; }
@keyframes curtain {
  0%,100% { transform: scaleX(1); }
  50%     { transform: scaleX(1.03); }
}

.hero__copy { padding: clamp(8px, 2vw, 40px) 0; max-width: 640px; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.kicker__pin {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--cinnabar);
  border-radius: 99px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: 0.55; transform: scale(0.75); }
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(46px, 7.6vw, 116px);
  line-height: 0.94;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 28px;
  font-variation-settings: "SOFT" 100, "WONK" 1;
}

.hero__title .line { display: block; }
.hero__title .line--accent {
  font-family: var(--font-script);
  font-style: normal;
  font-weight: 400;
  color: var(--cinnabar);
  font-size: clamp(56px, 9vw, 144px);
  line-height: 0.86;
  margin-left: clamp(16px, 2vw, 40px);
  transform: rotate(-2deg);
  transform-origin: left center;
  letter-spacing: -0.005em;
}

.hero__lede {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.55;
  color: var(--ink);
  max-width: 52ch;
  margin: 0 0 32px;
}

.hero__lede em {
  font-family: var(--font-script);
  font-style: normal;
  font-size: 1.2em;
  color: var(--cinnabar);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 36px;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.hero__proof strong {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: 0;
  margin-right: 6px;
  vertical-align: -2px;
}
.proof__dot {
  width: 8px; height: 8px;
  border-radius: 99px;
  background: var(--sun);
}
.proof__sep {
  width: 14px; height: 1px;
  background: var(--rule);
}

/* ============================================================
   QUOTE BAND
   ============================================================ */

.band {
  background: var(--ink);
  color: var(--bg);
  padding: clamp(50px, 7vw, 100px) clamp(20px, 4vw, 56px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.band::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' seed='2'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.06 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  pointer-events: none;
}

.band__quote {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(28px, 4.5vw, 64px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink-cream);
  max-width: 22ch;
  margin: 0 auto;
  position: relative;
}
.band__quote em {
  font-family: var(--font-script);
  font-style: normal;
  font-weight: 400;
  font-size: 1.05em;
  color: var(--sun);
  display: block;
}
.band__open, .band__close {
  color: var(--cinnabar);
  font-family: var(--font-display);
  font-size: 1.6em;
  line-height: 0;
  vertical-align: -0.2em;
  margin: 0 0.05em;
  opacity: 0.85;
}

.band__attr {
  margin: 24px 0 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.85;
  position: relative;
}

/* ============================================================
   SECTION CHROME
   ============================================================ */

.section__head {
  padding: clamp(60px, 7vw, 110px) clamp(20px, 4vw, 56px) clamp(40px, 4vw, 64px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: baseline;
}

.section__head--centered {
  grid-template-columns: 1fr;
  text-align: center;
}
.section__head--centered .section__num { grid-column: 1; margin: 0 auto 6px; }
.section__head--centered .section__sub { max-width: 60ch; margin: 10px auto 0; grid-column: 1; }

.section__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--ink-soft);
}

.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.02em;
}

.section__sub {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 8px 0 0;
  grid-column: 2;
}

.section__sub em {
  font-family: var(--font-script);
  font-style: normal;
  font-size: 1.15em;
  color: var(--cinnabar);
}

/* ============================================================
   BOOTH CARDS
   ============================================================ */

.booths { padding-bottom: clamp(40px, 5vw, 80px); }

.booth-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0 clamp(20px, 4vw, 56px);
}

.booth-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.4) inset,
    0 8px 24px rgba(43,32,23,0.10);
  transform: rotate(var(--card-rot, -0.4deg));
  transition: transform 220ms cubic-bezier(0.34,1.56,0.64,1), box-shadow 220ms;
}
.booth-card:nth-child(2) { --card-rot: 0.6deg; }
.booth-card:nth-child(3) { --card-rot: -0.2deg; }
.booth-card:hover {
  transform: rotate(0deg) translateY(-4px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.4) inset,
    0 14px 32px rgba(43,32,23,0.18);
}

.booth-card--featured {
  /* Stable dark background so cream text stays legible in both modes */
  background: #1F1610;
  color: #F5E6B5;
  border-color: #1F1610;
}
[data-mode="night"] .booth-card--featured {
  background: #0A1322;
  border-color: #0A1322;
}
.booth-card--featured .nameplate__name,
.booth-card--featured .booth-card__line,
.booth-card--featured .nameplate__city { color: #F5E6B5; }
.booth-card--featured .booth-card__specs li span { color: #F5E6B5; opacity: 0.6; }
.booth-card--featured .booth-card__specs li strong { color: var(--sun); }

.booth-card__nameplate {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--rule);
}
.booth-card--featured .booth-card__nameplate {
  border-bottom-color: rgba(245,230,181,0.25);
}

.nameplate__tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cinnabar);
}
.booth-card--featured .nameplate__tag { color: var(--sun); }

.nameplate__name {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1;
  margin: 4px 0 2px;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.nameplate__city {
  font-family: var(--font-script);
  font-size: 18px;
  color: var(--ink-soft);
  margin: 0;
}

.booth-card__img {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg-soft);
}
.booth-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.05) sepia(0.05);
}
[data-mode="night"] .booth-card__img img {
  filter: saturate(0.85) contrast(1.0) brightness(0.85) sepia(0.05);
}

.booth-card__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.booth-card__line {
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
}

.booth-card__specs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px dashed var(--rule);
  padding-top: 14px;
}
.booth-card--featured .booth-card__specs { border-top-color: rgba(245,230,181,0.25); }

.booth-card__specs li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  align-items: baseline;
}
.booth-card__specs li span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.booth-card__specs li strong {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
}

.booth-card__body .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* ============================================================
   THE FUN — marquee
   ============================================================ */

.fun {
  padding-bottom: clamp(40px, 5vw, 80px);
}

.marquee {
  overflow: hidden;
  padding: 30px 0;
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.marquee__track {
  display: inline-flex;
  gap: 22px;
  padding: 0 22px;
  animation: marquee 60s linear infinite;
  will-change: transform;
}

.marquee:hover .marquee__track { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.strip {
  flex: 0 0 auto;
  width: clamp(180px, 22vw, 260px);
  margin: 0;
  background: #F4ECDA;
  padding: 8px 8px 18px;
  border: 1px solid rgba(43,32,23,0.1);
  box-shadow: 0 8px 20px rgba(43,32,23,0.18);
  transform: rotate(var(--r, 0deg));
  transition: transform 220ms cubic-bezier(0.34,1.56,0.64,1);
}
.strip:nth-child(3n) { --r: -1.5deg; }
.strip:nth-child(3n+1) { --r: 0.8deg; }
.strip:nth-child(3n+2) { --r: -0.6deg; }
.strip:hover {
  transform: rotate(0) scale(1.04);
  z-index: 2;
}

.strip img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  margin-bottom: 8px;
  filter: saturate(0.95) contrast(1.05) sepia(0.05);
}
[data-mode="night"] .strip img {
  filter: saturate(0.85) contrast(0.96) brightness(0.85) sepia(0.06);
}

.strip figcaption {
  font-family: var(--font-script);
  font-size: 17px;
  color: #2B2017;
  text-align: center;
  line-height: 1.1;
}

.fun__caption {
  text-align: center;
  margin: 16px clamp(20px, 4vw, 56px) 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ============================================================
   WHERE WE'VE BEEN — events + map
   ============================================================ */

.events {
  padding-bottom: clamp(40px, 5vw, 80px);
}

.events__layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(24px, 4vw, 64px);
  padding: 0 clamp(20px, 4vw, 56px);
  align-items: start;
}

.events__list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--rule);
}

.events__list li {
  display: grid;
  grid-template-columns: 120px 1fr auto 36px;
  gap: 18px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  transition: background 180ms, padding 180ms;
}
.events__list li:hover {
  background: rgba(43,32,23,0.04);
  padding-left: 12px;
}
[data-mode="night"] .events__list li:hover { background: rgba(245,230,181,0.06); }

.events__date {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.events__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 24px);
  color: var(--ink);
  letter-spacing: -0.01em;
}

.events__venue {
  font-family: var(--font-script);
  font-size: 17px;
  color: var(--cinnabar);
}

.events__booth {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-cream);
  background: var(--ink-olive);
  padding: 3px 8px;
  border-radius: 99px;
  text-align: center;
  min-width: 36px;
}

.events__next {
  background: linear-gradient(90deg, var(--sun) 0%, transparent 70%);
  border-bottom-color: var(--cinnabar) !important;
}
.events__next .events__date { color: var(--ink); font-weight: 600; }
.events__next .events__name { color: var(--cinnabar); }
.events__next .events__venue { color: var(--ink); text-decoration: underline; text-underline-offset: 4px; }
.events__next .events__booth { background: var(--ink); }

.events__map {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 12px;
  box-shadow: 0 6px 18px rgba(43,32,23,0.12);
  transform: rotate(1.2deg);
  transition: transform 240ms cubic-bezier(0.34,1.56,0.64,1);
}
.events__map:hover { transform: rotate(0); }
.events__map svg { width: 100%; height: auto; display: block; }

/* ============================================================
   FREEDOM WALL
   ============================================================ */

.freedom { padding-bottom: clamp(40px, 6vw, 88px); }

.wall {
  position: relative;
  margin: 0 clamp(20px, 4vw, 56px);
  height: clamp(1400px, 155vw, 1760px);
  background:
    repeating-linear-gradient(8deg, rgba(110,74,42,0.06) 0 22px, transparent 22px 44px),
    var(--bg-soft);
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
}

[data-mode="night"] .wall {
  background:
    repeating-linear-gradient(8deg, rgba(255,200,107,0.04) 0 22px, transparent 22px 44px),
    var(--bg-soft);
}

.cut {
  position: absolute;
  top: var(--y);
  left: var(--x);
  margin: 0;
  transform: rotate(var(--rot));
  transition: transform 220ms cubic-bezier(0.34,1.56,0.64,1);
  filter: drop-shadow(0 6px 12px rgba(43,32,23,0.25));
}
.cut:hover {
  transform: rotate(0deg) translateY(-4px) scale(1.05);
  z-index: 4;
}

.cut--polaroid {
  background: #F4ECDA;
  padding: 8px 8px 32px;
  width: 150px;
  border: 1px solid rgba(43,32,23,0.1);
}
.cut__img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  margin-bottom: 6px;
  filter: saturate(0.92) contrast(1.04) sepia(0.04);
}
[data-mode="night"] .cut__img { filter: saturate(0.85) contrast(0.96) brightness(0.82) sepia(0.06); }
.cut--polaroid figcaption {
  font-family: var(--font-script);
  font-size: 17px;
  color: #2B2017;
  text-align: center;
}

.cut--ticket {
  background: var(--cinnabar);
  color: #FFF4E6;
  padding: 12px 14px;
  width: 170px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border: 1px dashed rgba(255,255,255,0.4);
}
.ticket__big {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.05em;
  font-style: italic;
}

.cut--stamp {
  background: var(--ink-cream);
  width: 110px;
  height: 130px;
  border: 1px solid var(--ink-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px;
  gap: 6px;
  background-image: radial-gradient(circle at 4px 4px, var(--bg-soft) 3px, transparent 3px);
  background-size: 10px 10px;
}

.stamp__body {
  background: var(--ink-cream);
  width: 92%; height: 92%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 6px;
}

.stamp__txt {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.18em;
  color: #2B2017;
}

.cut--sign {
  background: #221710;
  color: #F2E6C0;
  padding: 18px 22px;
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 16px;
  line-height: 1.25;
  width: 210px;
  text-align: center;
  border: 4px solid #6E4A2A;
  box-shadow: inset 0 0 0 1px #443122;
}
.cut--sign em {
  font-family: var(--font-script);
  font-style: normal;
  font-weight: 400;
  font-size: 26px;
  color: var(--sun);
  display: block;
  margin-top: 6px;
}

.cut--quote {
  background: var(--ink-cream);
  padding: 14px 18px;
  width: 210px;
  border-left: 4px solid var(--cinnabar);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.4;
  color: #2B2017;
  font-style: italic;
}
.cut--quote em {
  display: block;
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-style: normal;
  color: #5A4A38;
}

.cut--quote-bis {
  background: var(--sun);
  color: #2B2017;
  border-left-color: #2B2017;
}
.cut--quote-bis em { color: #5A3E1C; }

/* Small polaroid variant */
.cut--polaroid-sm {
  width: 110px;
  padding: 7px 7px 24px;
}
.cut--polaroid-sm figcaption { font-size: 14px; }

/* Sticker — rough cut die-cut, hand-painted */
.cut--sticker {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: 22px;
  background: var(--cinnabar);
  color: var(--ink-cream);
  padding: 10px 16px;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 0 var(--cinnabar-deep), 0 6px 14px rgba(0,0,0,0.18);
  border-radius: 4px;
}

.cut--sticker-rough {
  /* die-cut peeled look via clip-path */
  background: var(--sun);
  color: var(--ink);
  clip-path: polygon(2% 8%, 12% 0%, 28% 6%, 44% 0%, 58% 8%, 72% 2%, 88% 6%, 100% 12%, 96% 30%, 100% 48%, 96% 66%, 100% 86%, 90% 100%, 72% 96%, 56% 100%, 38% 96%, 22% 100%, 6% 94%, 0% 78%, 4% 60%, 0% 42%, 4% 24%);
  padding: 14px 22px;
  font-size: 24px;
  letter-spacing: 0.04em;
  box-shadow: none;
}

.cut--sticker-round {
  width: 110px;
  height: 110px;
  border-radius: 99px;
  background: var(--ink-olive);
  color: var(--ink-cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: 24px;
  line-height: 0.9;
  padding: 0;
  letter-spacing: 0.02em;
  border: 4px solid var(--ink);
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}
.sticker__sub {
  font-family: var(--font-mono);
  font-style: normal;
  font-weight: 500;
  font-size: 8px;
  letter-spacing: 0.18em;
  color: var(--sun);
  margin-top: 4px;
}

/* Meme — black-on-white impact-style top/bot text */
.cut--meme {
  width: 180px;
  background: #1A120C;
  color: #FFFFFF;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-family: 'Impact','Arial Black',sans-serif;
  font-size: 14px;
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-shadow: 1px 1px 0 #000;
  border: 1px solid #000;
  position: relative;
}
.cut--meme::before {
  content: '';
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 36%;
  transform: translateY(-50%);
  background: linear-gradient(90deg, rgba(255,255,255,0.05), rgba(255,255,255,0.18), rgba(255,255,255,0.05));
}
.meme__top { color: #FFF; }
.meme__bot { color: var(--sun); font-size: 16px; margin-top: 6px; }

/* Photo strip — the actual product output, 3 polaroids stacked */
.cut--photostrip {
  background: #F4ECDA;
  padding: 8px 8px 12px;
  width: 110px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border: 1px solid rgba(43,32,23,0.12);
  box-shadow: 0 8px 18px rgba(43,32,23,0.22);
}
.photostrip__head, .photostrip__foot {
  font-family: var(--font-mono);
  font-size: 7.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cinnabar);
  text-align: center;
}
.photostrip__foot { color: var(--ink-soft); padding-top: 4px; border-top: 1px dashed rgba(43,32,23,0.2); }
.photostrip__frame { aspect-ratio: 1; overflow: hidden; }
.photostrip__frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04) sepia(0.05);
}

/* Receipt — thermal paper look */
.cut--receipt {
  width: 168px;
  background: #FBF6E5;
  padding: 14px 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #2B2017;
  font-family: var(--font-mono);
  font-size: 10px;
  /* perforated bottom */
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px),
    96% 100%, 88% calc(100% - 8px), 80% 100%, 72% calc(100% - 8px),
    64% 100%, 56% calc(100% - 8px), 48% 100%, 40% calc(100% - 8px),
    32% 100%, 24% calc(100% - 8px), 16% 100%, 8% calc(100% - 8px),
    0 calc(100% - 12px));
}
.receipt__head {
  font-weight: 500;
  letter-spacing: 0.18em;
  font-size: 9px;
  text-align: center;
  padding-bottom: 6px;
  border-bottom: 1px dashed #5A4A38;
  color: #2B2017;
}
.receipt__row {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: none;
}
.receipt__row em {
  font-family: var(--font-body);
  font-style: italic;
}
.receipt__row {
  color: #2B2017;
}
.receipt__row em { color: #5A4A38; }
.receipt__row strong {
  font-weight: 500;
  color: #2B2017;
}
.receipt__row--total {
  margin-top: 4px;
  padding-top: 6px;
  border-top: 1px dashed #5A4A38;
}
.receipt__row--total em { font-family: var(--font-display); font-weight: 900; font-style: italic; font-size: 12px; }
.receipt__row--total strong { color: var(--cinnabar); font-family: var(--font-display); font-style: italic; font-weight: 900; font-size: 14px; }
.receipt__foot {
  text-align: center;
  font-family: var(--font-script);
  font-size: 14px;
  font-style: normal;
  letter-spacing: normal;
  color: var(--cinnabar);
  margin-top: 4px;
}

/* Cassette tape sticker */
.cut--cassette {
  width: 150px;
  background: var(--ink);
  color: var(--ink-cream);
  padding: 0;
  border: 2px solid var(--sawali-dark);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}
.cassette__band {
  height: 14px;
  background: linear-gradient(90deg, var(--cinnabar), var(--sun), var(--cinnabar));
}
.cassette__band--top { border-bottom: 2px solid var(--sawali-dark); }
.cassette__band--bot {
  border-top: 2px solid var(--sawali-dark);
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: var(--ink-olive);
}
.cassette__hole {
  width: 18px; height: 18px;
  border: 2px solid var(--sawali-dark);
  border-radius: 99px;
  background: var(--ink);
  position: relative;
}
.cassette__hole::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px dashed var(--sun);
  border-radius: 99px;
}
.cassette__label {
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: #F4ECDA;
  color: #2B2017;
}
.cassette__side {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.2em;
  color: var(--cinnabar);
  font-weight: 500;
}
.cassette__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: #2B2017;
}
.cassette__by {
  font-family: var(--font-script);
  font-size: 13px;
  color: #5A3E1C;
  line-height: 1;
}

/* Doodle wrapper (just lets SVG sit clean) */
.cut--doodle {
  padding: 0;
  background: transparent;
  filter: drop-shadow(0 4px 8px rgba(43,32,23,0.18));
}
.cut--doodle-sun {
  filter: drop-shadow(0 4px 10px rgba(232,192,56,0.4)) drop-shadow(0 2px 4px rgba(43,32,23,0.18));
}

/* Stamp variant — blue/cool */
.cut--stamp-blue {
  background: #E3D9B2;
  border-color: var(--indigo);
}

/* Meme poster (the big Mother's Day collage) */
.cut--meme-poster {
  background: #F4ECDA;
  padding: 8px 8px 14px;
  width: 200px;
  border: 1px solid rgba(43,32,23,0.12);
  box-shadow: 0 10px 24px rgba(43,32,23,0.28);
}
.cut--meme-poster .cut__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  margin: 0;
  filter: saturate(1.05) contrast(1.06);
}
.cut--meme-poster figcaption {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: center;
}
.meme-poster__tag {
  font-family: var(--font-mono);
  font-size: 8.5px;
  letter-spacing: 0.2em;
  color: var(--cinnabar);
  font-weight: 500;
}
.meme-poster__cap {
  font-family: var(--font-script);
  font-size: 16px;
  color: #2B2017;
  line-height: 1.05;
}

/* YES I'M A STUDENT acronym card */
.cut--student {
  width: 158px;
  background: #FBF6E5;
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #2B2017;
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.2;
  border: 1px solid rgba(43,32,23,0.18);
  box-shadow: 0 6px 14px rgba(43,32,23,0.2);
}
.student__head {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: 14px;
  text-align: center;
  padding-bottom: 8px;
  border-bottom: 1px dashed #5A4A38;
  color: #2B2017;
}
.student__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
  font-size: 12px;
}
.student__list li {
  display: flex;
  gap: 0;
  align-items: baseline;
  color: #2B2017;
}
.student__list strong {
  color: var(--cinnabar);
  font-weight: 700;
  font-family: var(--font-display);
  font-style: italic;
  margin-right: 2px;
  font-size: 13px;
}

/* Mahilig ka ba sa CATS? */
.cut--cats {
  width: 170px;
  background: #1F1610;
  color: #FFFFFF;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: center;
  font-family: 'Impact','Arial Black',sans-serif;
  line-height: 1;
  border: 3px solid var(--sun);
  letter-spacing: 0.04em;
  text-shadow: 1.5px 1.5px 0 #000;
}
.cats__top {
  font-size: 17px;
}
.cats__bot {
  font-size: 22px;
}
.cats__bot em {
  font-style: italic;
  color: var(--sun);
  font-size: 26px;
}

/* Plywood hand-painted sign — SLOW DOWN ENJOY LIFE */
.cut--plywood {
  background: linear-gradient(180deg, #7A5A2E 0%, #5E4220 100%);
  color: var(--ink-cream);
  padding: 18px 22px 22px;
  width: 220px;
  text-align: center;
  font-family: 'Caveat Brush', cursive;
  border: 3px solid #3E2814;
  box-shadow: 0 6px 14px rgba(0,0,0,0.3), inset 0 0 0 1px #6E4A2A;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
}
.cut--plywood::before, .cut--plywood::after {
  content: '';
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 99px;
  background: #2A1A0E;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
}
.cut--plywood::before { top: 8px; left: 8px; }
.cut--plywood::after { top: 8px; right: 8px; }
.plywood__top {
  font-size: 32px;
  color: var(--sun);
  line-height: 1;
  letter-spacing: 0.02em;
}
.plywood__bot {
  font-size: 24px;
  color: var(--ink-cream);
  line-height: 1;
  font-family: var(--font-script);
}

/* Sticker tape — masking tape style */
.cut--sticker-tape {
  background: #E3D5A4;
  color: #2B2017;
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 20px;
  padding: 10px 18px;
  box-shadow: 0 3px 6px rgba(43,32,23,0.18);
  clip-path: polygon(2% 30%, 6% 0, 14% 25%, 22% 0, 32% 28%, 42% 0, 52% 30%, 62% 0, 72% 25%, 82% 0, 92% 28%, 100% 8%, 98% 75%, 94% 100%, 86% 76%, 76% 100%, 66% 78%, 56% 100%, 46% 75%, 36% 100%, 26% 78%, 16% 100%, 6% 76%, 0 90%);
  border-radius: 0;
}

.cut--sticker-yellow {
  background: var(--sun);
  color: #2B2017;
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: 22px;
  padding: 10px 16px;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 0 var(--sun-deep), 0 6px 14px rgba(0,0,0,0.18);
  border-radius: 4px;
}

/* "Pray for me, my mom is filipino" speech bubble */
.cut--praying {
  background: #FFFFFF;
  color: #2B2017;
  padding: 12px 16px 14px;
  width: 180px;
  border: 2px solid #2B2017;
  border-radius: 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--font-body);
  box-shadow: 0 4px 10px rgba(0,0,0,0.18);
}
.cut--praying::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 22px;
  width: 18px; height: 18px;
  background: #FFFFFF;
  border-right: 2px solid #2B2017;
  border-bottom: 2px solid #2B2017;
  transform: rotate(45deg);
}
.praying__bub {
  font-size: 15px;
  line-height: 1.25;
  font-style: italic;
  color: #2B2017;
}
.praying__attr {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cinnabar);
}

/* PHILIPPINES sun stamp (small variant) */
.cut--stamp-philippines { width: 96px; height: 110px; }

/* BAANG round sticker */
.cut--sticker-baang {
  background: var(--cinnabar);
  border-color: var(--ink-cream);
  color: var(--ink-cream);
  font-size: 22px;
}
.cut--sticker-baang .sticker__sub { color: var(--sun); }

/* Label tape — long horizontal sticker strip */
.cut--label-tape {
  background: var(--ink-cream);
  color: var(--cinnabar);
  font-family: 'Caveat Brush', cursive;
  font-size: 19px;
  padding: 6px 18px;
  letter-spacing: 0.04em;
  border-top: 2px solid var(--cinnabar);
  border-bottom: 2px solid var(--cinnabar);
  box-shadow: 0 3px 6px rgba(43,32,23,0.15);
  white-space: nowrap;
  max-width: 480px;
}
.cut--label-tape span { display: inline-block; }

/* Lovely M. Topacio FB POV card */
.cut--fbpost {
  width: 220px;
  background: #FFFFFF;
  color: #1C1E21;
  border: 1px solid #DADDE1;
  border-radius: 8px;
  padding: 10px 12px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  box-shadow: 0 6px 14px rgba(43,32,23,0.2);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fbpost__head {
  display: flex;
  align-items: center;
  gap: 8px;
}
.fbpost__avatar {
  width: 32px; height: 32px;
  border-radius: 99px;
  background:
    radial-gradient(circle at 50% 32%, #B89878 0 26%, transparent 28%),
    linear-gradient(180deg, #2A3B5C 0%, #6E4A2A 100%);
  border: 1px solid #DADDE1;
}
.fbpost__name {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1.1;
  font-size: 12px;
  color: #1C1E21;
}
.fbpost__name strong { font-weight: 600; font-size: 13px; }
.fbpost__name span { font-size: 10px; color: #65676B; }
.fbpost__body {
  margin: 0;
  font-size: 14px;
  line-height: 1.35;
  color: #1C1E21;
}
.fbpost__body strong { font-weight: 600; color: #1C1E21; }
.fbpost__body em { font-style: italic; color: #C8472E; }
.fbpost__foot {
  display: flex;
  gap: 6px;
  font-size: 10px;
  color: #65676B;
  border-top: 1px solid #DADDE1;
  padding-top: 6px;
  flex-wrap: wrap;
}

/* Ni hao Fineshyt cat meme */
.cut--nihao {
  width: 150px;
  background: linear-gradient(180deg, #F2E2B0 0%, #C99B5A 100%);
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border: 2px solid #43291A;
  box-shadow: 0 6px 14px rgba(43,32,23,0.25);
}
.nihao__top {
  position: relative;
  width: 90px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 65%, #F4ECDA 0%, #C99B5A 80%);
  border-radius: 50%;
  border: 2px solid #43291A;
}
.nihao__cat { font-size: 50px; line-height: 1; }
.nihao__hat {
  position: absolute;
  top: -8px; left: 50%;
  transform: translateX(-50%) rotate(-12deg);
  font-size: 30px;
}
.nihao__caption {
  margin: 0;
  text-align: center;
  font-family: 'Impact','Arial Black',sans-serif;
  font-size: 18px;
  line-height: 1.05;
  color: #1F1610;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.18);
}
.nihao__caption em {
  display: block;
  font-family: var(--font-script);
  font-style: normal;
  font-size: 22px;
  color: #C8472E;
  text-transform: none;
  letter-spacing: 0;
  text-shadow: none;
  line-height: 0.9;
  margin-bottom: 2px;
}

/* SLOW · Fast & Furious cutting */
.cut--slow {
  width: 200px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.06), transparent 60%),
    linear-gradient(180deg, #0F0F12 0%, #2B2017 100%);
  color: var(--ink-cream);
  padding: 14px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
  border: 2px solid #0A0A0E;
  box-shadow: 0 6px 14px rgba(0,0,0,0.35);
}
.slow__word {
  font-family: 'Impact','Arial Black',sans-serif;
  font-size: 60px;
  line-height: 1;
  color: var(--sun);
  letter-spacing: -0.02em;
  text-shadow:
    2px 2px 0 var(--cinnabar),
    4px 4px 0 rgba(0,0,0,0.6);
  font-style: italic;
  transform: skewX(-8deg);
}
.slow__sub {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 12px;
  color: var(--ink-cream);
  margin-top: 6px;
}
.slow__brand {
  font-family: var(--font-mono);
  font-size: 8.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cinnabar);
}

/* Washi tape banner */
.cut--washi {
  background: repeating-linear-gradient(45deg, var(--ink-olive) 0 10px, color-mix(in oklab, var(--ink-olive) 80%, var(--ink) 20%) 10px 20px);
  color: var(--ink-cream);
  padding: 8px 24px;
  width: 280px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  /* deckled edges */
  clip-path: polygon(2% 20%, 6% 0%, 18% 30%, 30% 0%, 42% 25%, 54% 0%, 66% 28%, 78% 0%, 90% 26%, 100% 4%, 98% 80%, 94% 100%, 82% 70%, 70% 100%, 58% 75%, 46% 100%, 34% 72%, 22% 100%, 10% 75%, 0% 96%);
  box-shadow: none;
}

/* ============================================================
   PRICING
   ============================================================ */

.pricing {
  padding-bottom: clamp(40px, 6vw, 88px);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 18px;
  padding: 0 clamp(20px, 4vw, 56px);
  align-items: stretch;
}

.rate {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 6px 18px rgba(43,32,23,0.10);
}

.rate--primary {
  /* Always-dark background so headline stays legible in both modes */
  background: #1F1610;
  color: #F5E6B5;
  border-color: #1F1610;
  position: relative;
  overflow: hidden;
}
[data-mode="night"] .rate--primary {
  background: #0A1322;
  border-color: #0A1322;
}
.rate--primary::before {
  content: 'most booked';
  position: absolute;
  top: 14px;
  right: -32px;
  transform: rotate(34deg);
  background: var(--cinnabar);
  color: #FFF4E6;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 36px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.rate__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.rate--primary .rate__label { color: var(--sun); }

.rate__price {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 4px;
  line-height: 1;
}
.rate__currency {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(28px, 3vw, 38px);
  color: var(--ink-soft);
}
.rate--primary .rate__currency { color: #F5E6B5; opacity: 0.85; }

.rate__amount {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(50px, 7vw, 90px);
  letter-spacing: -0.03em;
  color: var(--ink);
}
.rate--primary .rate__amount { color: #F5E6B5; }
.rate__amount--word { font-size: clamp(40px, 5.5vw, 68px); }

.rate__unit {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0;
}
.rate--primary .rate__unit { color: #F5E6B5; opacity: 0.75; }

.rate__incl {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.rate__incl li {
  position: relative;
  padding-left: 22px;
  font-family: var(--font-body);
  font-size: 15px;
  color: #F5E6B5;
  opacity: 0.92;
}
.rate__incl li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 14px; height: 1px;
  background: var(--sun);
}

.rate__note {
  font-family: var(--font-script);
  font-size: 18px;
  color: var(--cinnabar);
  margin: 4px 0 0;
}

.rate--primary .btn {
  margin-top: auto;
}

/* ============================================================
   BOOK — inquiry form
   ============================================================ */

.book {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, color-mix(in oklab, var(--sun) 30%, transparent) 0%, transparent 70%),
    var(--bg);
  padding: clamp(40px, 6vw, 88px) clamp(20px, 4vw, 56px);
  border-top: 1px solid var(--rule);
}

[data-mode="night"] .book {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, color-mix(in oklab, var(--sun) 40%, transparent) 0%, transparent 70%),
    var(--bg);
}

.book__layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 80px);
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
}

.book__intro .section__num { display: block; margin: 0 0 6px; }

.book__title { font-size: clamp(40px, 5.5vw, 84px); margin: 8px 0 18px; }

.book__sub {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 28px;
  max-width: 44ch;
}

.book__perks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.book__perks li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.perks__dot {
  width: 8px; height: 8px;
  background: var(--cinnabar);
  border-radius: 99px;
}

.book__form {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: clamp(20px, 3vw, 36px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  box-shadow: 0 12px 32px rgba(43,32,23,0.14);
  transform: rotate(-0.4deg);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  grid-column: span 2;
}
.field--half { grid-column: span 1; }

.field__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.field input:not([type="radio"]):not([type="checkbox"]),
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 11px 12px;
  width: 100%;
  outline: none;
  transition: border-color 180ms, box-shadow 180ms;
}
.field input:not([type="radio"]):not([type="checkbox"]):focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--cinnabar);
  box-shadow: 0 0 0 3px rgba(200,71,46,0.18);
}

.field textarea { resize: vertical; min-height: 80px; }

.radios {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.radios > .radio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  cursor: pointer;
  padding: 8px 10px;
  border: 1px solid var(--rule);
  border-radius: 99px;
  background: var(--bg);
  transition: border-color 180ms, background 180ms;
}
.radios > .radio:hover { border-color: var(--cinnabar); }
.radios > .radio input { accent-color: var(--cinnabar); margin: 0; }
.radios > .radio input:checked + span { font-weight: 500; }

.book__form button[type="submit"] {
  grid-column: span 2;
  margin-top: 4px;
}

.book__fine {
  grid-column: span 2;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0;
}
.book__fine a { color: var(--cinnabar); border-bottom: 1px dashed currentColor; }

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  /* Locked dark — the footer is the always-dark band, must not invert
     in night mode (would flip cream-on-cream = invisible menu). */
  background: #1A1714;
  color: var(--ink-cream);
  padding: clamp(40px, 5vw, 72px) clamp(20px, 4vw, 56px) 24px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' seed='3'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.05 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  pointer-events: none;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: clamp(24px, 4vw, 56px);
  position: relative;
  z-index: 1;
}

.footer__brand { max-width: 320px; }
.footer__tag {
  font-family: var(--font-script);
  font-size: 22px;
  color: var(--ink-cream);
  margin: 14px 0 0;
  line-height: 1.25;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__col a, .footer__col span {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink-cream);
  transition: color 180ms;
}
.footer__col a:hover { color: var(--sun); }

.footer__head {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sun);
  margin-bottom: 4px;
}

.footer__small {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-cream);
  opacity: 0.6;
}

.footer__bottom {
  border-top: 1px dashed rgba(245,230,181,0.2);
  margin-top: clamp(30px, 4vw, 48px);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-cream);
  opacity: 0.7;
  position: relative;
  z-index: 1;
}
.footer__sun { color: var(--cinnabar); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
  .booth-grid { grid-template-columns: 1fr 1fr; }
  .booth-card:nth-child(3) { grid-column: span 2; }
  .booth-card:nth-child(3) .booth-card__img { aspect-ratio: 16/9; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .rate--primary { grid-column: span 2; }
  .events__layout { grid-template-columns: 1fr; }
  .events__map { max-width: 360px; margin: 0 auto; }
  .book__layout { grid-template-columns: 1fr; }
}

@media (max-width: 880px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 24px;
  }
  .hero__art { max-height: 50vh; }
  .hero__title { font-size: clamp(44px, 12vw, 80px); }
  .hero__title .line--accent { font-size: clamp(54px, 16vw, 110px); margin-left: 8px; }

  .topbar { padding: 12px 16px; grid-template-columns: auto auto; gap: 8px; }
  .topbar__nav { display: none; }
  .toggle { width: 32px; height: 32px; }

  .booth-grid { grid-template-columns: 1fr; }
  .booth-card { transform: rotate(0); }
  .booth-card:nth-child(2),
  .booth-card:nth-child(3) { transform: rotate(0); grid-column: auto; }
  .booth-card:nth-child(3) .booth-card__img { aspect-ratio: 4/5; }

  .pricing-grid { grid-template-columns: 1fr; }
  .rate--primary { grid-column: auto; }

  .events__list li {
    grid-template-columns: 1fr auto;
    gap: 4px 12px;
  }
  .events__date { grid-column: 1 / -1; }
  .events__name { grid-column: 1; }
  .events__booth { grid-column: 2; grid-row: 2; }
  .events__venue { grid-column: 1; }

  .book__form { grid-template-columns: 1fr; }
  .field--half { grid-column: span 1; }
  .radios { grid-template-columns: 1fr 1fr; }

  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }

  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 420px) {
  .marquee__track { gap: 14px; }
  .strip { width: 160px; }
  .cut--polaroid { width: 108px; }
  .cut--ticket { width: 134px; font-size: 8px; }
  .cut--sign { width: 168px; font-size: 14px; padding: 14px; }
  .cut--quote { width: 168px; font-size: 13px; padding: 12px; }
  .cut--stamp { width: 88px; height: 108px; }
  .radios { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__brand { grid-column: auto; }
}

/* ============================================================
   KUYA — Ngisi AI chat
   ============================================================ */

.kuya {
  position: fixed;
  bottom: 18px;
  left: 18px;
  z-index: 60;
  font-family: var(--font-body);
}

.kuya__bubble {
  appearance: none;
  border: 3px solid var(--ink);
  background: var(--ink-cream);
  color: var(--ink);
  border-radius: 99px;
  padding: 8px 16px 8px 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(43,32,23,0.32);
  transition: transform 200ms cubic-bezier(0.34,1.56,0.64,1), box-shadow 200ms;
  position: relative;
}
.kuya__bubble:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(43,32,23,0.4);
}
.kuya.is-open .kuya__bubble { display: none; }

.kuya__avatar {
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 2px 0 rgba(0,0,0,0.2));
}
.kuya__avatar--sm { width: 32px; height: 32px; }

.kuya__bubble-label {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: left;
  line-height: 1;
}
.kuya__brand {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: 19px;
  color: #2B2017;
  letter-spacing: -0.01em;
}
.kuya__sub {
  font-family: var(--font-mono);
  font-size: 8.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5A4A38;
  margin-top: 3px;
}

.kuya__ping {
  position: absolute;
  top: 6px;
  right: 12px;
  width: 10px; height: 10px;
  border-radius: 99px;
  background: var(--cinnabar);
  box-shadow: 0 0 0 3px var(--ink-cream);
  animation: kuyaping 1.6s ease-in-out infinite;
}
@keyframes kuyaping {
  0%,100% { transform: scale(1); opacity: 1; }
  50%     { transform: scale(0.7); opacity: 0.6; }
}

/* Panel — opens from the corner */
.kuya__panel[hidden] { display: none !important; }
.kuya__panel {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 340px;
  background: var(--ink-cream);
  border: 3px solid var(--ink);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(43,32,23,0.4);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  transform-origin: bottom left;
  transition: opacity 220ms, transform 220ms cubic-bezier(0.34,1.56,0.64,1);
  max-height: min(560px, calc(100dvh - 40px));
}
.kuya__panel.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.kuya__head {
  background: var(--cinnabar);
  color: var(--ink-cream);
  padding: 10px 12px;
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 10px;
  align-items: center;
}
.kuya__head-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.kuya__head-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: 16px;
  color: var(--ink-cream);
}
.kuya__head-status {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sun);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.kuya__head-status i {
  display: inline-block;
  width: 7px; height: 7px;
  background: #6CDE6C;
  border-radius: 99px;
  box-shadow: 0 0 6px rgba(108,222,108,0.7);
}
.kuya__close {
  background: transparent;
  border: none;
  color: var(--ink-cream);
  font-size: 24px;
  cursor: pointer;
  width: 28px; height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 99px;
  line-height: 1;
  padding: 0;
  transition: background 180ms;
}
.kuya__close:hover { background: rgba(0,0,0,0.18); }

.kuya__log {
  flex: 1;
  overflow-y: auto;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background:
    repeating-linear-gradient(8deg, rgba(110,74,42,0.05) 0 22px, transparent 22px 44px),
    var(--ink-cream);
}

.kuya__msg {
  max-width: 86%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.4;
  color: #2B2017;
  word-wrap: break-word;
}
.kuya__msg p { margin: 0 0 6px; }
.kuya__msg p:last-child { margin-bottom: 0; }

.kuya__msg--bot {
  background: #FFFFFF;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  box-shadow: 0 2px 6px rgba(43,32,23,0.12);
  border-left: 3px solid var(--cinnabar);
}

.kuya__msg--user {
  background: var(--ink);
  color: var(--ink-cream);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.kuya__msg--user p { color: var(--ink-cream); }

.kuya__typing {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}
.kuya__typing span {
  width: 6px; height: 6px;
  background: var(--cinnabar);
  border-radius: 99px;
  animation: kuya-dot 1.1s ease-in-out infinite;
}
.kuya__typing span:nth-child(2) { animation-delay: 0.18s; }
.kuya__typing span:nth-child(3) { animation-delay: 0.36s; }
@keyframes kuya-dot {
  0%,100% { transform: translateY(0); opacity: 0.4; }
  50%     { transform: translateY(-4px); opacity: 1; }
}

.kuya__quick {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 10px 14px 0;
  background: var(--ink-cream);
  border-top: 1px dashed rgba(43,32,23,0.18);
}
.kuya__quick button {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  background: #FFFFFF;
  border: 1px solid rgba(43,32,23,0.2);
  padding: 6px 10px;
  border-radius: 99px;
  cursor: pointer;
  transition: background 160ms, color 160ms, border-color 160ms;
}
.kuya__quick button:hover {
  background: var(--cinnabar);
  color: var(--ink-cream);
  border-color: var(--cinnabar);
}

.kuya__compose {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px;
  padding: 10px 12px;
  background: var(--ink-cream);
  border-top: 1px solid rgba(43,32,23,0.15);
}

.kuya__input {
  font-family: var(--font-body);
  font-size: 14px;
  color: #2B2017;
  background: #FFFFFF;
  border: 1px solid rgba(43,32,23,0.2);
  border-radius: 99px;
  padding: 10px 14px;
  outline: none;
  transition: border-color 160ms, box-shadow 160ms;
}
.kuya__input:focus {
  border-color: var(--cinnabar);
  box-shadow: 0 0 0 3px rgba(200,71,46,0.18);
}

.kuya__send {
  width: 38px; height: 38px;
  background: var(--cinnabar);
  color: var(--ink-cream);
  border: none;
  border-radius: 99px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 160ms, transform 120ms;
}
.kuya__send:hover { background: var(--cinnabar-deep); transform: rotate(8deg); }

.kuya__fine {
  padding: 6px 14px 10px;
  background: var(--ink-cream);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #5A4A38;
  text-align: center;
  margin: 0;
}
.kuya__fine a { color: var(--cinnabar); border-bottom: 1px dashed currentColor; }

@media (max-width: 1024px) {
  /* Collapse Kuya to a circular avatar on tablet + mobile */
  .kuya { bottom: 14px; left: 14px; }
  .kuya__bubble {
    padding: 4px;
    border-radius: 99px;
    width: 56px; height: 56px;
    justify-content: center;
  }
  .kuya__avatar { width: 48px; height: 48px; }
  .kuya__avatar svg { width: 48px; height: 48px; }
  .kuya__bubble-label { display: none !important; }
  .kuya__ping { top: 2px; right: 2px; width: 12px; height: 12px; }
  .kuya__panel { width: calc(100vw - 28px); max-height: 70dvh; left: 14px; right: auto; }
}

/* ============================================================
   NGISI RADIO
   ============================================================ */

.ngisi-radio {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 60;
  font-family: var(--font-mono);
  pointer-events: auto;
}

.radio__face {
  appearance: none;
  border: none;
  background: linear-gradient(180deg, #C99B5A 0%, #8E6739 100%);
  color: var(--ink-cream);
  padding: 10px;
  border-radius: 12px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.3),
    inset 0 -2px 0 rgba(0,0,0,0.18),
    0 8px 18px rgba(43,32,23,0.35);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
  width: 232px;
  border: 3px solid #3E2814;
  transition: transform 200ms cubic-bezier(0.34,1.56,0.64,1);
}
.radio__face:hover { transform: translateY(-2px); }
.radio__face:active { transform: translateY(0); }

.radio__hint {
  display: block;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  background: var(--cinnabar);
  color: var(--ink-cream);
  padding: 4px 8px;
  border-radius: 4px;
  animation: hintpulse 1.6s ease-in-out infinite;
}
@keyframes hintpulse {
  0%,100% { opacity: 1; }
  50%     { opacity: 0.65; }
}
.ngisi-radio.is-playing .radio__hint {
  background: #1F1610;
  animation: none;
  letter-spacing: 0.18em;
}

.radio__body {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  gap: 8px;
  padding: 4px 4px 6px;
}

.radio__speaker {
  width: 36px;
  height: 36px;
  display: inline-flex;
}

.radio__label {
  display: flex;
  flex-direction: column;
  gap: 1px;
  align-items: flex-start;
  text-align: left;
  min-width: 0;
}

.radio__brand {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: 17px;
  letter-spacing: -0.005em;
  line-height: 1;
  color: var(--ink-cream);
}
.radio__brand-dot { color: var(--cinnabar); }

.radio__nowplaying {
  font-size: 8.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-cream);
  opacity: 0.85;
  max-width: 130px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.radio__by {
  font-family: var(--font-script);
  font-style: normal;
  font-size: 11px;
  color: var(--ink-cream);
  opacity: 0.8;
  line-height: 1;
  margin-top: 2px;
}
.radio__by em {
  color: var(--sun);
  font-style: normal;
}

.radio__dial {
  position: relative;
  grid-column: span 2;
  background: #1F1610;
  border-radius: 4px;
  padding: 6px 8px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  border: 1px solid #3E2814;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.5);
}

.radio__needle {
  position: absolute;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: var(--cinnabar);
  box-shadow: 0 0 6px rgba(200,71,46,0.7);
  left: 30%;
  transition: left 500ms cubic-bezier(0.4,0,0.2,1);
}

.ngisi-radio.is-playing .radio__needle {
  animation: needledrift 8s ease-in-out infinite;
}
@keyframes needledrift {
  0%,100% { left: 28%; }
  25%     { left: 64%; }
  50%     { left: 42%; }
  75%     { left: 80%; }
}

.radio__numbers {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  font-family: var(--font-mono);
  font-size: 8px;
  color: var(--cogon-highlight);
  letter-spacing: 0.04em;
}
.radio__numbers i {
  text-align: center;
  font-style: normal;
}

/* Hidden YouTube player target — invisible, just provides audio.
   We control via the YouTube IFrame API so the vintage radio dial
   is the only thing the user sees. */
.radio__player {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
#ngisiYTPlayer {
  width: 1px;
  height: 1px;
}

/* Desktop default: hide the mobile-only FAB + close button */
.radio__fab,
.radio__close {
  display: none;
}

@media (max-width: 1024px) {
  /* Radio collapses to a 56×56 FAB on mobile + tablet.
     Tap FAB → opens the full face as a bottom-sheet drawer. */
  .ngisi-radio {
    bottom: 14px;
    right: 14px;
  }

  /* Show the FAB; hide the inline face by default */
  .radio__fab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 99px;
    border: 3px solid #3E2814;
    background: linear-gradient(180deg, #C99B5A 0%, #8E6739 100%);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.3),
      inset 0 -2px 0 rgba(0,0,0,0.18),
      0 8px 18px rgba(43,32,23,0.35);
    cursor: pointer;
    padding: 0;
    position: relative;
    transition: transform 200ms cubic-bezier(0.34,1.56,0.64,1);
  }
  .radio__fab:active { transform: scale(0.95); }

  /* Cinnabar "is-playing" dot on the FAB */
  .radio__fab-dot {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 12px;
    height: 12px;
    border-radius: 99px;
    background: var(--cinnabar);
    border: 2px solid #3E2814;
    opacity: 0;
    transform: scale(0.6);
    transition: opacity 200ms ease, transform 200ms ease;
  }
  .ngisi-radio.is-playing .radio__fab-dot {
    opacity: 1;
    transform: scale(1);
    animation: hintpulse 1.6s ease-in-out infinite;
  }

  /* Hide the inline face by default; drawer mode when open */
  .radio__face {
    display: none;
  }

  .ngisi-radio.is-open .radio__face {
    display: flex;
    position: fixed;
    bottom: 80px;
    right: 14px;
    left: auto;
    width: min(280px, calc(100vw - 28px));
    z-index: 61;
    animation: radioDrawerIn 220ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  @keyframes radioDrawerIn {
    from { transform: translateY(12px); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
  }

  /* Close (×) button in the drawer corner */
  .ngisi-radio.is-open .radio__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 252px;
    right: 18px;
    width: 28px;
    height: 28px;
    border-radius: 99px;
    border: 2px solid #3E2814;
    background: #1F1610;
    color: var(--ink-cream);
    font-family: var(--font-display);
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    z-index: 62;
    padding: 0;
  }

  /* Keep face proportions clean inside the drawer on small screens */
  .ngisi-radio.is-open .radio__face { width: 280px; }
}

/* Make the page breathe above the FAB row on mobile so widgets
   can't sit on top of CTAs or footer text. */
@media (max-width: 1024px) {
  .book,
  .footer,
  .pricing {
    padding-bottom: clamp(96px, 14vh, 140px);
  }
  /* Hero gets a bit of bottom clearance too so the headline doesn't
     get clipped by the FABs when the viewport is short. */
  .hero {
    padding-bottom: clamp(72px, 10vh, 110px);
  }

  /* When the form section is on screen, slide both FABs out of the way.
     The form is a focused-task moment — the user is submitting, not
     chatting or playing music. JS toggles .fabs-hidden on body. */
  body.fabs-hidden .kuya,
  body.fabs-hidden .ngisi-radio {
    transform: translateY(140%);
    opacity: 0;
    pointer-events: none;
  }
  .kuya,
  .ngisi-radio {
    transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1), opacity 280ms ease;
  }
  /* Don't hide the radio drawer if it's already open — preserve it */
  body.fabs-hidden .ngisi-radio.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .palms, .curtain, .kicker__pin, .marquee__track,
  .radio__hint, .radio__needle { animation: none !important; }
  * { transition-duration: 0.001ms !important; }
}
