/* ==========================================================
   BOZWE LUXURY CINEMATIC — BASE: TOKENS + RESET + TYPOGRAPHY
   ========================================================== */

:root {
  --bz-bg: #0b0910;
  --bz-bg-deep: #07060c;
  --bz-surface: #141019;
  --bz-surface-2: #1a1424;
  --bz-lilac: #b4a2d8;
  --bz-lilac-strong: #c9b8ef;
  --bz-glow: rgba(167, 146, 214, 0.13);
  --bz-glass-bg: rgba(22, 16, 33, 0.72);
  --bz-glass-border: rgba(180, 162, 216, 0.14);
  --bz-border-faint: rgba(180, 162, 216, 0.07);
  --bz-text: #e9e5f0;
  --bz-text-muted: #9d93b4;

  --bz-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --bz-radius: 14px;
  --bz-radius-lg: 20px;
  --bz-shadow: 0 10px 36px rgba(4, 3, 8, 0.5);

  --bz-s1: 0.5rem;
  --bz-s2: 1rem;
  --bz-s3: 1.5rem;
  --bz-s4: 2.25rem;
  --bz-s5: clamp(3.5rem, 7vw, 5.5rem);

  --bz-font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Inter", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--bz-font);
  background: var(--bz-bg);
  color: var(--bz-text);
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; height: auto; display: block; }

::selection { background: var(--bz-lilac); color: var(--bz-bg-deep); }

h1, h2, h3 {
  margin: 0 0 var(--bz-s2);
  color: var(--bz-text);
  letter-spacing: -0.01em;
  text-wrap: balance;
}

h1 { font-size: clamp(1.85rem, 3.4vw, 2.85rem); font-weight: 600; line-height: 1.18; }
h2 { font-size: clamp(1.35rem, 2.4vw, 1.85rem); font-weight: 600; line-height: 1.25; }
h3 { font-size: clamp(1.02rem, 1.6vw, 1.18rem); font-weight: 600; }

p, li { line-height: 1.75; }
p { margin: 0 0 var(--bz-s2); }

a {
  color: var(--bz-lilac);
  text-decoration-color: rgba(180, 162, 216, 0.3);
  transition: color 0.25s var(--bz-ease);
}
a:hover { color: var(--bz-lilac-strong); }

a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--bz-lilac-strong);
  outline-offset: 3px;
}

.bz-inner { width: min(1140px, 92%); margin-inline: auto; }

.bz-eyebrow {
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bz-lilac);
  margin-bottom: var(--bz-s2);
}

.bz-section-lead { color: var(--bz-text-muted); max-width: 56ch; }

/* Halaman non-home minimal */
.bz-page { padding: var(--bz-s5) 0; }
.bz-page-inner { width: min(760px, 92%); margin-inline: auto; }
