/* ═══════════════════════════════════════════════════════════════
   CHORALE AFRICA — MASTER STYLESHEET
   Brand: Black (#0D0D0D) + Gold (#C9973A) — Black/Gold Theme
   Typography: Cormorant Garamond (display) + Barlow (body) + Barlow Condensed
   This is a faithful black/gold port of the reference HTML design
═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Barlow:wght@300;400;500;600;700;800;900&family=Barlow+Condensed:wght@300;400;500;600;700&display=swap');

/* ── DESIGN TOKENS ──────────────────────────────────────────── */
:root {
  /* Core Black/Gold Brand */
  --black:       #0D0D0D;
  --black-soft:  #1A1A1A;
  --black-mid:   #242424;
  --black-light: #2E2E2E;
  --gold:        #C9973A;
  --gold-light:  #E8B86D;
  --gold-pale:   #F5ECD6;
  --gold-dim:    rgba(201,151,58,.12);
  --gold-glow:   rgba(201,151,58,.25);
  --gold-border: rgba(201,151,58,.2);

  /* Neutrals */
  --white:       #FFFFFF;
  --off-white:   #FAF8F5;
  --cream:       #F5F0E8;
  --cream-dark:  #EDE6D6;
  --slate:       #4A5568;
  --mid:         #8896A8;
  --border:      rgba(201,151,58,.2);
  --border-dark: rgba(201,151,58,.12);
  --border-light:rgba(255,255,255,.1);

  /* Alias tokens (mirror reference CSS naming for compat) */
  --navy:        #0D0D0D;
  --navy-deep:   #0D0D0D;
  --navy-mid:    #1A1A1A;
  --navy-light:  #242424;
  --teal:        #C9973A;
  --teal-light:  #E8B86D;
  --teal-pale:   #F5ECD6;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Barlow', -apple-system, sans-serif;
  --font-cond:    'Barlow Condensed', sans-serif;

  /* Motion */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font-size: 16px; color: var(--black); background: var(--off-white); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── SCROLLBAR ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ══════════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(13,13,13,.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-dark);
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
  transition: all 0.3s var(--ease-out);
}
.nav.scrolled { height: 60px; box-shadow: 0 4px 32px rgba(0,0,0,.6); }

.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-mark {
  width: 40px; height: 40px;
  background: var(--gold); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--black);
  flex-shrink: 0; transition: transform 0.3s var(--ease-out);
}
.nav-logo:hover .nav-logo-mark { transform: scale(1.05); }
.nav-logo-name { font-family: var(--font-display); font-size: 18px; font-weight: 500; color: var(--white); letter-spacing: .01em; }
.nav-logo-tag  { font-family: var(--font-cond); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }

.nav-links { display: flex; align-items: center; height: 100%; }
.nav-item { position: relative; height: 100%; display: flex; align-items: center; }
.nav-link {
  font-family: var(--font-cond); font-size: 11.5px; letter-spacing: .09em; text-transform: uppercase;
  color: rgba(255,255,255,.7); padding: 0 16px; height: 100%;
  display: flex; align-items: center; gap: 5px;
  transition: color 0.2s; white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link .chevron { font-size: 9px; transition: transform 0.2s; }
.nav-item:hover .chevron { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: 100%; left: 50%;
  background: rgba(13,13,13,.99);
  border: 1px solid var(--border); border-top: 2px solid var(--gold);
  border-radius: 0 0 8px 8px; min-width: 220px; padding: 8px 0;
  box-shadow: 0 24px 48px rgba(0,0,0,.7);
  opacity: 0; visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: all 0.2s var(--ease-out); pointer-events: none;
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); pointer-events: all; }
.dropdown-label { font-family: var(--font-cond); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); padding: 8px 16px 4px; }
.dropdown-item { display: flex; align-items: center; gap: 10px; padding: 9px 16px; font-size: 13px; color: rgba(255,255,255,.7); transition: all 0.15s; cursor: pointer; }
.dropdown-item:hover { background: rgba(201,151,58,.08); color: var(--gold-light); padding-left: 20px; }
.dropdown-item .di-dot, .dropdown-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); opacity: 0.5; flex-shrink: 0; }
.dropdown-divider { height: 1px; background: rgba(255,255,255,.06); margin: 4px 0; }

.nav-cta {
  background: var(--gold); color: var(--black);
  padding: 10px 22px; border-radius: 5px;
  font-family: var(--font-cond); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; font-weight: 600;
  margin-left: 16px; white-space: nowrap; transition: all 0.2s;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(201,151,58,.4); }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.3s; border-radius: 1px; }

.mobile-nav {
  position: fixed; inset: 0; background: var(--black); z-index: 999;
  display: flex; flex-direction: column; padding: 100px 40px 40px;
  transform: translateX(100%); transition: transform 0.4s var(--ease-out); overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-link { font-family: var(--font-display); font-size: 32px; font-weight: 500; color: var(--white); padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.08); display: block; transition: color 0.2s; }
.mobile-nav-link:hover { color: var(--gold); }
.mobile-nav-sub { font-size: 14px; color: rgba(255,255,255,.5); padding: 8px 0 8px 16px; display: block; transition: color 0.2s; }
.mobile-nav-sub:hover { color: var(--gold-light); }

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh; background: var(--black);
  display: flex; align-items: center;
  padding: 120px 40px 80px;
  position: relative; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 60%, #1A1A1A 100%); }
.hero-grid, .hero-grid-pattern {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(201,151,58,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(201,151,58,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-glow { position: absolute; width: 600px; height: 600px; background: radial-gradient(circle, rgba(201,151,58,.12) 0%, transparent 70%); top: 10%; right: -100px; border-radius: 50%; pointer-events: none; }
.hero-glow-2 { position: absolute; width: 400px; height: 400px; background: radial-gradient(circle, rgba(201,151,58,.06) 0%, transparent 70%); bottom: -50px; left: 20%; border-radius: 50%; pointer-events: none; }
.hero-content { position: relative; z-index: 2; max-width: 680px; }
.hero-eyebrow {
  font-family: var(--font-cond); font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: 14px; margin-bottom: 24px;
  opacity: 0; animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}
.hero-eyebrow::before { content: ''; display: block; width: 40px; height: 1px; background: var(--gold); }
.hero-h1 {
  font-family: var(--font-display); font-size: clamp(44px, 6vw, 76px);
  font-weight: 600; line-height: 1.06; color: var(--white); margin-bottom: 24px;
  opacity: 0; animation: fadeUp 0.8s var(--ease-out) 0.35s forwards;
}
.hero-h1 em { font-style: italic; color: var(--gold-light); }
.hero-body { font-size: 17px; color: rgba(255,255,255,.65); line-height: 1.75; max-width: 500px; margin-bottom: 40px; opacity: 0; animation: fadeUp 0.8s var(--ease-out) 0.5s forwards; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; opacity: 0; animation: fadeUp 0.8s var(--ease-out) 0.65s forwards; }

/* Page hero (inner pages) */
.page-hero {
  min-height: 360px; background: var(--black);
  display: flex; align-items: flex-end; padding: 120px 60px 60px;
  position: relative; overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 100%); }
.page-hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(201,151,58,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(201,151,58,.04) 1px, transparent 1px); background-size: 60px 60px; }
.page-hero-accent { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold) 0%, rgba(201,151,58,.3) 50%, transparent 100%); }
.page-hero-content { position: relative; z-index: 2; }
.page-hero-eyebrow { font-family: var(--font-cond); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; display: flex; align-items: center; gap: 12px; }
.page-hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--gold); display: block; }
.page-hero-h1 { font-family: var(--font-display); font-size: clamp(36px, 5vw, 60px); font-weight: 600; line-height: 1.1; color: var(--white); }
.page-hero-h1 em { font-style: italic; color: var(--gold-light); }
.page-hero-sub { font-size: 16px; color: rgba(255,255,255,.6); margin-top: 12px; max-width: 560px; line-height: 1.6; }

/* ══════════════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-cond); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
  padding: 14px 28px; border-radius: 5px;
  transition: all 0.25s var(--ease-out); cursor: pointer; border: none; white-space: nowrap; text-decoration: none;
}
.btn-primary, .btn-gold { background: var(--gold); color: var(--black); }
.btn-primary:hover, .btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,151,58,.35); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.35); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-outline-dark { background: transparent; color: var(--black); border: 1.5px solid rgba(0,0,0,.25); }
.btn-outline-dark:hover { border-color: var(--black); background: var(--black); color: var(--white); }
.btn-black, .btn-navy { background: var(--black); color: var(--white); border: 1px solid rgba(255,255,255,.08); }
.btn-black:hover, .btn-navy:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-teal { background: var(--gold); color: var(--black); }
.btn-teal:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--black); }
.btn-white:hover { background: var(--gold); }
.btn-sm { font-size: 10px; padding: 9px 18px; }
.btn-lg { font-size: 13px; padding: 16px 36px; }

/* ══════════════════════════════════════════════════════════════
   TYPOGRAPHY UTILITIES
══════════════════════════════════════════════════════════════ */
.section-eyebrow, .eyebrow {
  font-family: var(--font-cond); font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: 12px; margin-bottom: 12px;
}
.section-eyebrow::before, .eyebrow::before { content: ''; width: 28px; height: 1px; background: currentColor; display: block; }
.section-eyebrow.gold, .eyebrow.gold { color: var(--gold); }
.section-eyebrow.white, .eyebrow.white { color: rgba(255,255,255,.45); }
.eyebrow.center, .section-eyebrow.center { justify-content: center; }

.section-h2 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 48px); font-weight: 600; line-height: 1.12; color: var(--black); }
.section-h2.white { color: var(--white); }
.section-h2 em { font-style: italic; color: var(--gold); }
.section-body { font-size: 16px; line-height: 1.75; color: var(--slate); }
.section-body.white { color: rgba(255,255,255,.65); }

/* ══════════════════════════════════════════════════════════════
   LAYOUT
══════════════════════════════════════════════════════════════ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.section { padding: 100px 0; }
.section-sm { padding: 64px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.bg-white { background: var(--white); }
.bg-cream { background: var(--cream); }
.bg-navy, .bg-black { background: var(--black); }
.bg-navy-deep { background: var(--black-soft); }

/* Trust bar */
.trust-bar {
  background: rgba(13,13,13,.97); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 16px 40px; display: flex; align-items: center; overflow: hidden;
}
.trust-item {
  font-family: var(--font-cond); font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.45); white-space: nowrap;
  display: flex; align-items: center; gap: 20px;
  padding: 0 24px; border-right: 1px solid rgba(255,255,255,.08);
}
.trust-item:first-child { padding-left: 0; }
.trust-item::before { content: '◆'; color: var(--gold); font-size: 6px; }

/* ══════════════════════════════════════════════════════════════
   CARDS
══════════════════════════════════════════════════════════════ */
.card { background: var(--white); border-radius: 10px; overflow: hidden; border: 1px solid rgba(0,0,0,.07); transition: all 0.3s var(--ease-out); }
.card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px rgba(0,0,0,.12); }
.card-img { aspect-ratio: 16/9; overflow: hidden; }
.card-body { padding: 24px; }
.card-tag { font-family: var(--font-cond); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.card-title { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--black); line-height: 1.2; margin-bottom: 8px; }
.card-desc { font-size: 13px; color: var(--slate); line-height: 1.65; }
.card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-family: var(--font-cond); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); transition: gap 0.2s; }
.card-link:hover { gap: 10px; }

/* Stats */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.stat-item { padding: 36px 24px; text-align: center; border-right: 1px solid var(--border); background: var(--black-soft); }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: var(--font-display); font-size: clamp(36px, 4vw, 52px); font-weight: 600; color: var(--gold); line-height: 1; margin-bottom: 6px; }
.stat-label { font-family: var(--font-cond); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.4); }

/* Image placeholder */
.img-ph { background: rgba(201,151,58,.04); border: 2px dashed rgba(201,151,58,.25); border-radius: 8px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; text-align: center; padding: 20px; }
.img-ph .icon { font-size: 28px; opacity: .4; }
.img-ph .label { font-family: var(--font-cond); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); opacity: .7; }
.img-ph .spec { font-size: 9.5px; color: rgba(255,255,255,.2); font-family: monospace; }

/* Breadcrumb */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-family: var(--font-cond); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 12px; }
.breadcrumb a { color: rgba(255,255,255,.35); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* Production cards */
.prod-card { background: var(--black-soft); border-radius: 10px; border: 1px solid var(--border); overflow: hidden; transition: all 0.3s var(--ease-out); display: flex; flex-direction: column; }
.prod-card:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(0,0,0,.6); }
.prod-accent { height: 3px; }
.prod-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.prod-num { font-family: var(--font-cond); font-size: 60px; font-weight: 700; color: rgba(201,151,58,.07); line-height: 1; margin-bottom: -12px; }
.prod-title { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.prod-when { font-family: var(--font-cond); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.prod-desc { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.65; flex: 1; margin-bottom: 16px; }
.prod-actions { display: flex; flex-direction: column; gap: 8px; }

/* Event list items */
.event-item { display: flex; gap: 20px; align-items: flex-start; padding: 24px 0; border-bottom: 1px solid rgba(0,0,0,.07); }
.event-item:last-child { border-bottom: none; }
.event-date-box { background: var(--black); color: var(--white); border-radius: 8px; padding: 12px 16px; text-align: center; min-width: 64px; flex-shrink: 0; border: 1px solid var(--border); }
.event-day { font-family: var(--font-display); font-size: 28px; font-weight: 600; color: var(--gold); line-height: 1; }
.event-month { font-family: var(--font-cond); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.45); }
.event-info { flex: 1; }
.event-name { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--black); margin-bottom: 4px; }
.event-venue { font-size: 13px; color: var(--mid); }
.event-price { font-family: var(--font-cond); font-size: 11px; letter-spacing: .08em; color: var(--gold); margin-top: 4px; font-weight: 600; }

/* Testimonials */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card { background: rgba(255,255,255,.04); border: 1px solid var(--border); border-radius: 10px; padding: 28px; }
.testimonial-quote { font-family: var(--font-display); font-size: 15px; font-style: italic; color: rgba(255,255,255,.8); line-height: 1.7; margin-bottom: 20px; }
.testimonial-quote::before { content: '"'; font-size: 48px; color: var(--gold); opacity: 0.4; line-height: 0.6; display: block; margin-bottom: 8px; }
.testimonial-author { font-family: var(--font-cond); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }
.testimonial-role { font-size: 12px; color: rgba(255,255,255,.4); margin-top: 3px; }

/* Pillar strip */
.pillar-strip { display: flex; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; background: var(--black-soft); }
.pillar-item { flex: 1; padding: 18px 12px; text-align: center; border-right: 1px solid var(--border); cursor: pointer; transition: background 0.2s; }
.pillar-item:last-child { border-right: none; }
.pillar-item:hover, .pillar-item.active { background: rgba(201,151,58,.08); }
.pillar-emoji { font-size: 18px; margin-bottom: 6px; }
.pillar-name { font-family: var(--font-cond); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.45); }
.pillar-item.active .pillar-name, .pillar-item:hover .pillar-name { color: var(--gold); }

/* ══════════════════════════════════════════════════════════════
   PRICING TIERS
══════════════════════════════════════════════════════════════ */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tier-card { background: var(--white); border-radius: 12px; padding: 36px 28px; border: 1.5px solid rgba(0,0,0,.08); position: relative; transition: all 0.3s var(--ease-out); }
.tier-card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px rgba(0,0,0,.1); }
.tier-card.featured { background: var(--black); border-color: var(--gold); transform: translateY(-8px); box-shadow: 0 32px 64px rgba(0,0,0,.3); }
.tier-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--black); padding: 4px 16px; border-radius: 20px; font-family: var(--font-cond); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; white-space: nowrap; }
.tier-name { font-family: var(--font-cond); font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.tier-price { font-family: var(--font-display); font-size: 40px; font-weight: 600; color: var(--black); line-height: 1; }
.featured .tier-price { color: var(--white); }
.tier-price-note, .tier-note { font-size: 12px; color: var(--mid); margin-bottom: 20px; margin-top: 2px; }
.tier-features { list-style: none; display: flex; flex-direction: column; gap: 8px; font-size: 13px; color: var(--slate); }
.featured .tier-features { color: rgba(255,255,255,.7); }
.tier-features li { display: flex; gap: 8px; align-items: flex-start; }
.tier-features li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.tier-features li.strong { font-weight: 600; }
.featured .tier-features li.strong { color: var(--white); }

/* ══════════════════════════════════════════════════════════════
   FORMS
══════════════════════════════════════════════════════════════ */
.form-section { background: var(--cream); padding: 80px 0; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-family: var(--font-cond); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--slate); }
.form-input, .form-select, .form-textarea {
  background: var(--white); border: 1.5px solid rgba(0,0,0,.12); border-radius: 6px;
  padding: 12px 16px; font-size: 14px; color: var(--black);
  transition: border-color 0.2s, box-shadow 0.2s; outline: none; width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,151,58,.12); }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; cursor: pointer; }
.form-textarea { height: 120px; resize: vertical; }
.checkbox-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 4px; }
.checkbox-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--slate); cursor: pointer; padding: 6px 10px; border: 1px solid rgba(0,0,0,.08); border-radius: 5px; transition: all 0.15s; }
.checkbox-item:hover { border-color: var(--gold); background: rgba(201,151,58,.04); }
.checkbox-item input { accent-color: var(--gold); width: 15px; height: 15px; cursor: pointer; }

/* Currency toggle */
.currency-toggle { display: flex; gap: 8px; margin-bottom: 20px; }
.curr-btn { padding: 8px 18px; border-radius: 5px; font-family: var(--font-cond); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; border: 1.5px solid rgba(0,0,0,.12); background: transparent; color: var(--slate); cursor: pointer; transition: all 0.2s; }
.curr-btn.active, .curr-btn:hover { background: var(--black); color: var(--white); border-color: var(--black); }

/* Voice cards */
.voice-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-bottom: 24px; }
.voice-card { border: 2px solid rgba(0,0,0,.1); border-radius: 8px; padding: 16px 10px; text-align: center; cursor: pointer; transition: all 0.2s; background: var(--white); }
.voice-card:hover, .voice-card.selected { border-color: var(--gold); background: var(--gold-pale); }
.voice-name { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--black); }
.voice-range { font-family: var(--font-cond); font-size: 9px; letter-spacing: .1em; color: var(--mid); margin-top: 4px; }

/* Department cards */
.dept-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 28px; }
.dept-card { border: 1.5px solid rgba(0,0,0,.1); border-radius: 8px; padding: 16px; cursor: pointer; transition: all 0.2s; background: var(--white); }
.dept-card:hover, .dept-card.selected { border-color: var(--gold); background: var(--gold-pale); }
.dept-name { font-family: var(--font-cond); font-size: 11px; letter-spacing: .06em; font-weight: 600; color: var(--black); }
.dept-desc { font-size: 10px; color: var(--mid); line-height: 1.4; margin-top: 4px; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; }
.step { text-align: center; padding: 0 12px; }
.step-num { font-family: var(--font-display); font-size: 48px; font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.step-name { font-family: var(--font-cond); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--black); margin-bottom: 8px; font-weight: 600; }
.step-desc { font-size: 12px; color: var(--slate); line-height: 1.6; }
/* Also legacy .steps-grid */
.steps-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; }
.step-item { text-align: center; padding: 0 10px; }

/* Level track */
.level-track { display: flex; border-radius: 10px; overflow: hidden; border: 1px solid rgba(0,0,0,.08); }
.level-item { flex: 1; padding: 24px 20px; border-right: 1px solid rgba(0,0,0,.08); background: var(--cream); transition: background 0.2s; cursor: pointer; }
.level-item:last-child { border-right: none; }
.level-item.active, .level-item:hover { background: var(--black); }
.level-num { font-family: var(--font-cond); font-size: 48px; font-weight: 700; color: rgba(0,0,0,.07); line-height: 1; margin-bottom: -8px; }
.level-item.active .level-num, .level-item:hover .level-num { color: rgba(201,151,58,.1); }
.level-name { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: var(--black); margin-bottom: 4px; }
.level-item.active .level-name, .level-item:hover .level-name { color: var(--white); }
.level-weeks { font-family: var(--font-cond); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.level-desc { font-size: 11px; color: var(--mid); line-height: 1.5; }
.level-item.active .level-desc, .level-item:hover .level-desc { color: rgba(255,255,255,.55); }

/* FAQ */
.faq-item { border-bottom: 1px solid rgba(0,0,0,.07); }
.faq-question { width: 100%; text-align: left; padding: 20px 0; display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--black); cursor: pointer; transition: color 0.2s; background: none; border: none; }
.faq-question:hover { color: var(--gold); }
.faq-toggle { flex-shrink: 0; width: 24px; height: 24px; background: var(--black); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; transition: all 0.3s; margin-top: 2px; }
.faq-item.open .faq-toggle { background: var(--gold); color: var(--black); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease-out); }
.faq-answer-inner { padding: 0 0 20px; font-size: 14px; color: var(--slate); line-height: 1.75; }

/* Journal */
.journal-featured { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.journal-tag { font-family: var(--font-cond); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; display: inline-block; margin-bottom: 12px; background: rgba(201,151,58,.1); color: var(--gold); padding: 4px 12px; border-radius: 20px; }
.journal-title { font-family: var(--font-display); font-size: 30px; font-weight: 600; color: var(--black); line-height: 1.2; margin-bottom: 12px; }
.journal-excerpt { font-size: 14px; color: var(--slate); line-height: 1.7; margin-bottom: 20px; }
.journal-meta { font-family: var(--font-cond); font-size: 10px; letter-spacing: .08em; color: var(--mid); }

/* Series tabs */
.series-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.series-tab { padding: 8px 16px; border-radius: 4px; font-family: var(--font-cond); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.6); cursor: pointer; transition: all 0.2s; }
.series-tab:hover, .series-tab.active { background: var(--gold); border-color: var(--gold); color: var(--black); }

/* Tab content */
.tab-content { display: none; }
.tab-content.active { display: block; }

/* Email capture */
.email-capture { background: var(--black-soft); border-top: 1px solid var(--border); padding: 60px 0; }
.email-capture-form { display: flex; gap: 0; max-width: 480px; }
.email-capture-input { flex: 1; padding: 13px 18px; background: rgba(255,255,255,.06); border: 1.5px solid rgba(255,255,255,.1); border-right: none; border-radius: 6px 0 0 6px; font-size: 14px; color: var(--white); outline: none; transition: border-color 0.2s; }
.email-capture-input:focus { border-color: var(--gold); }
.email-capture-input::placeholder { color: rgba(255,255,255,.25); }
.email-capture-btn { padding: 13px 22px; background: var(--gold); color: var(--black); border: none; border-radius: 0 6px 6px 0; font-family: var(--font-cond); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; cursor: pointer; transition: background 0.2s; white-space: nowrap; }
.email-capture-btn:hover { background: var(--gold-light); }

/* WhatsApp float */
.wa-float { position: fixed; bottom: 28px; right: 28px; width: 54px; height: 54px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 24px rgba(37,211,102,.4); z-index: 500; transition: all 0.3s var(--ease-out); text-decoration: none; }
.wa-float:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,.5); }
.wa-float svg { width: 26px; height: 26px; fill: white; }

/* Flash messages */
/* Flash messages */
.flash {
  position: fixed;
  top: 84px;
  right: 20px;
  z-index: 9000;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 8px;
  font-size: 13.5px;
  font-family: var(--font-body);
  max-width: 420px;
  min-width: 260px;
  box-shadow: 0 8px 40px rgba(0,0,0,.25), 0 2px 8px rgba(0,0,0,.15);
  animation: flashSlideIn .35s var(--ease-out) both;
  line-height: 1.5;
}

@keyframes flashSlideIn {
  from {
    opacity: 0;
    transform: translateX(24px) translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}

.flash-success {
  background: #1D6E56;
  color: #fff;
  border-left: 4px solid #27A07C;
}

.flash-error {
  background: #C0392B;
  color: #fff;
  border-left: 4px solid #E74C3C;
}

.flash-warning {
  background: #8a6200;
  color: #fff;
  border-left: 4px solid #C9973A;
}

.flash span {
  flex: 1;
}

.flash button {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  opacity: .65;
  font-size: 16px;
  line-height: 1;
  padding: 0;
  margin-left: 4px;
  flex-shrink: 0;
}

.flash button:hover {
  opacity: 1;
}

@media (max-width: 640px) {
  .flash {
    right: 12px;
    left: 12px;
    max-width: none;
    top: 76px;
    font-size: 13px;
  }
}

/* Scroll animations */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Keyframes */
@keyframes fadeUp   { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn   { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideIn  { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }
@keyframes pulse    { 0%,100% { opacity: 1; } 50% { opacity: .6; } }
@keyframes spin     { to { transform: rotate(360deg); } }
@keyframes marquee  { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Utilities */
.gold-rule { height: 1px; background: linear-gradient(90deg, var(--gold) 0%, transparent 100%); }
.text-gold { color: var(--gold); }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — PUBLIC
══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .tiers { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .tier-card.featured { transform: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .journal-featured { grid-template-columns: 1fr; }
  .steps, .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}
@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .container { padding: 0 20px; }
  .hero { padding: 100px 20px 60px; }
  .page-hero { padding: 100px 20px 40px; min-height: auto; }
  .section { padding: 64px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  .voice-grid { grid-template-columns: repeat(3, 1fr); }
  .dept-grid { grid-template-columns: repeat(2, 1fr); }
  .checkbox-grid { grid-template-columns: 1fr 1fr; }
  .level-track { flex-direction: column; }
  .level-item { border-right: none; border-bottom: 1px solid rgba(0,0,0,.08); }
  .pillar-strip { flex-wrap: wrap; }
  .pillar-item { flex: 0 0 25%; }
  .steps, .steps-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .trust-bar { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .prod-actions { flex-direction: row; }
}
.admin-nav-badge { background: var(--gold); color: var(--black); border-radius: 10px; padding: 1px 7px; font-size: 9px; font-weight: 700; }
.admin-content { margin-left: 240px; min-height: 100vh; background: #F0EDE8; }
.admin-topbar { background: var(--white); border-bottom: 1px solid rgba(0,0,0,.08); padding: 14px 28px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 50; }
.admin-topbar-title { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--black); }
.admin-main { padding: 28px; }
.admin-card { background: var(--white); border-radius: 8px; border: 1px solid rgba(0,0,0,.07); padding: 24px; }
.admin-stat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 24px; }
.admin-stat { background: var(--white); border-radius: 8px; padding: 20px; border: 1px solid rgba(0,0,0,.07); }
.admin-stat-num { font-family: var(--font-display); font-size: 36px; font-weight: 600; color: var(--gold); line-height: 1; }
.admin-stat-label { font-family: var(--font-cond); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: var(--mid); margin-top: 3px; }
.admin-stat.urgent { border-left: 3px solid #C0392B; }
.admin-stat.urgent .admin-stat-num { color: #C0392B; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { font-family: var(--font-cond); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; color: var(--mid); padding: 10px 14px; text-align: left; border-bottom: 1.5px solid rgba(0,0,0,.08); background: rgba(0,0,0,.02); }
.admin-table td { padding: 13px 14px; font-size: 13px; color: var(--black); border-bottom: 1px solid rgba(0,0,0,.05); vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: rgba(201,151,58,.03); }
.badge { display: inline-block; padding: 2px 9px; border-radius: 20px; font-family: var(--font-cond); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; font-weight: 600; }
.badge-success { background: rgba(39,160,124,.12); color: #1D6E56; }
.badge-warning { background: rgba(201,151,58,.12); color: #8A6520; }
.badge-danger  { background: rgba(192,57,43,.12); color: #C0392B; }
.badge-secondary { background: rgba(0,0,0,.07); color: var(--mid); }
.badge-info    { background: rgba(41,128,185,.12); color: #2980B9; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .tiers { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .tier-card.featured { transform: none; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .testimonial-grid, .grid-3 { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(3,1fr); gap: 20px; }
  .admin-sidebar { width: 200px; }
  .admin-content { margin-left: 200px; }
  .admin-stat-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .nav { padding: 0 18px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .container { padding: 0 18px; }
  .hero, .page-hero { padding-left: 18px; padding-right: 18px; }
  .section { padding: 56px 0; }
  .email-capture { padding: 36px 18px; flex-direction: column; }
  .email-form-row { flex-direction: column; }
  .email-input-field { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  .voice-grid { grid-template-columns: repeat(3,1fr); }
  .dept-grid { grid-template-columns: repeat(2,1fr); }
  .checkbox-grid { grid-template-columns: 1fr 1fr; }
  .level-track { flex-direction: column; }
  .level-item { border-right: none; border-bottom: 1px solid rgba(0,0,0,.08); }
  .pillar-strip { flex-wrap: wrap; }
  .pillar-item { flex: 0 0 25%; }
  .steps-grid { grid-template-columns: 1fr; }
  .trust-bar { display: none; }
  .page-hero { padding: 90px 18px 36px; }
  .gallery-masonry { grid-template-columns: repeat(2,1fr); }
  .gallery-item.wide { grid-column: span 1; }
  .admin-sidebar { display: none; }
  .admin-content { margin-left: 0; }
}

/* ═══════════════════════════════════════════════════
   PORTAL ADDITIONS
   ═══════════════════════════════════════════════════ */
.admin-nav-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: #C0392B;
  color: #fff;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 700;
  margin-left: auto;
}
.btn-outline-dark { 
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 4px;
  font-family: var(--font-cond); font-size: 9.5px; letter-spacing: .1em; text-transform: uppercase;
  border: 1.5px solid rgba(0,0,0,.2); color: var(--black); cursor: pointer;
  transition: all .2s; text-decoration: none;
}
.btn-outline-dark:hover { border-color: var(--gold); color: var(--gold); }
.btn-sm { padding: 5px 12px; font-size: 9px; }

/* Mobile nav sub-links */
.mobile-nav-sub {
  display: block; padding: 9px 20px 9px 32px;
  font-family: var(--font-cond); font-size: 9px; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.35); text-decoration: none; transition: color .2s;
}
.mobile-nav-sub:hover { color: var(--gold); }

/* Gallery masonry */
.gallery-masonry { display: grid; grid-template-columns: repeat(4,1fr); grid-auto-rows: 190px; gap: 8px; }
.gallery-item { border-radius: 6px; overflow: hidden; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-placeholder { width: 100%; height: 100%; background: var(--black-soft); border: 1.5px dashed rgba(201,151,58,.15); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; }
.gallery-ph-icon { font-size: 28px; opacity: .2; }
.gallery-ph-label { font-family: var(--font-cond); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); opacity: .5; }
.gallery-ph-spec { font-size: 8px; color: rgba(255,255,255,.2); }

/* Dept grid */
.dept-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-bottom: 28px; }
.dept-card { border: 1.5px solid rgba(0,0,0,.1); border-radius: 8px; padding: 18px 14px; text-align: center; cursor: pointer; transition: all .2s; }
.dept-card:hover, .dept-card.selected { border-color: var(--gold); background: rgba(201,151,58,.04); }
.dept-icon { font-size: 24px; margin-bottom: 6px; }
.dept-name { font-family: var(--font-display); font-size: 14px; font-weight: 600; color: var(--black); margin-bottom: 3px; }
.dept-desc { font-size: 10.5px; color: var(--mid); line-height: 1.5; }

/* Journal card */
.journal-tag { font-family: var(--font-cond); font-size: 8.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.journal-card { transition: transform .2s; }
.journal-card:hover { transform: translateY(-3px); }

/* Steps grid */
.steps-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; }
.step-item { text-align: center; }
.step-num { font-family: var(--font-display); font-size: 40px; font-weight: 300; color: var(--gold); line-height: 1; }
.step-name { font-family: var(--font-cond); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--black); margin: 4px 0 8px; }
.step-desc { font-size: 12px; color: var(--slate); line-height: 1.6; }

/* Trust bar */
.trust-bar { background: var(--gold); padding: 14px 0; display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.trust-item { font-family: var(--font-cond); font-size: 9.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--black); padding: 6px 24px; border-right: 1px solid rgba(13,13,13,.2); }
.trust-item:last-child { border-right: none; }

/* Pillar strip */
.pillar-strip { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 14px; }
.pillar-item { background: rgba(201,151,58,.08); border: 1px solid var(--border-dark); border-radius: 6px; padding: 14px 16px; text-align: center; min-width: 80px; }
.pillar-emoji { font-size: 22px; margin-bottom: 4px; }
.pillar-name { font-family: var(--font-cond); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }

/* Nav active state */
.mobile-nav-link.active, a.nav-link.active { color: var(--gold); }

@media (max-width: 768px) {
  .gallery-masonry { grid-template-columns: repeat(2,1fr); }
  .dept-grid { grid-template-columns: repeat(2,1fr); }
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .trust-bar { flex-direction: column; gap: 0; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(13,13,13,.15); }
}

/* ── PHASE 1 ADDITIONS ──────────────────────────────────────────────────── */
.badge-gold { background: rgba(201,151,58,.15); color: #8A6520; border: 1px solid rgba(201,151,58,.3); }
.portal-flash { border-radius: 7px; padding: 12px 18px; margin-bottom: 18px; font-size: 13px; }
.portal-flash-success { background: rgba(39,160,124,.08); border: 1.5px solid rgba(39,160,124,.25); color: #1D6E56; }
.portal-flash-error { background: rgba(192,57,43,.08); border: 1.5px solid rgba(192,57,43,.25); color: #C0392B; }
.form-group.full { grid-column: 1 / -1; }

/* ═══════════════════════════════════════════════════════════
   PHASE 1 — PORTAL SYSTEM
   ═══════════════════════════════════════════════════════════ */

:root { --sidebar-w: 240px; --topbar-h: 56px; }

/* ── LAYOUT ─────────────────────────────────────────────── */
.portal-body { background: #F5F4F2; min-height: 100vh; margin: 0; overflow-x: hidden; font-family: var(--font-body); }
.portal-body input,
.portal-body select,
.portal-body textarea,
.portal-body table,
.portal-body td,
.portal-body p { font-family: var(--font-body); }
.p-sidebar { position: fixed; left: 0; top: 0; bottom: 0; width: var(--sidebar-w); background: var(--black); border-right: 1px solid var(--border-dark); z-index: 200; overflow-y: auto; display: flex; flex-direction: column; }
.p-main { margin-left: var(--sidebar-w); min-height: 100vh; display: flex; flex-direction: column; }

/* ── SIDEBAR HEADER ─────────────────────────────────────── */
.p-sidebar-header { padding: 18px 16px 20px; border-bottom: 1px solid var(--border-dark); }
.p-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.p-brand-mark { width: 34px; height: 34px; background: var(--gold); border-radius: 5px; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--black); flex-shrink: 0; }
.p-brand-name { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: var(--white); line-height: 1.2; }
.p-brand-role { font-family: var(--font-cond); font-size: 8.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }

/* ── SIDEBAR NAV ────────────────────────────────────────── */
.p-nav { flex: 1; padding: 12px 0; overflow-y: auto; }
.p-nav-section { margin-bottom: 4px; padding: 0 10px; }
.p-nav-label { font-family: var(--font-cond); font-size: 8px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.25); padding: 10px 8px 4px; }
.p-nav-link { display: flex; align-items: center; gap: 8px; padding: 7px 10px; border-radius: 5px; font-size: 12.5px; color: rgba(255,255,255,.55); text-decoration: none; transition: all .15s; margin-bottom: 1px; }
.p-nav-link:hover { background: rgba(255,255,255,.07); color: var(--white); }
.p-nav-link.active { background: rgba(201,151,58,.10); color: var(--gold); box-shadow: inset 3px 0 0 var(--gold); }
.p-nav-icon { width: 15px; height: 15px; flex-shrink: 0; color: rgba(255,255,255,.35); transition: color .15s; display: inline-block; vertical-align: middle; }
.p-nav-link:hover .p-nav-icon { color: rgba(255,255,255,.8); }
.p-nav-link.active .p-nav-icon { color: var(--gold); }
.p-badge-red { background: #C0392B; color: #fff; font-size: 9px; font-weight: 700; padding: 1px 5px; border-radius: 10px; margin-left: auto; }
.p-badge-gold { background: var(--gold); color: var(--black); font-size: 9px; font-weight: 700; padding: 1px 5px; border-radius: 10px; margin-left: auto; }
.p-sidebar-footer { padding: 12px 16px; border-top: 1px solid var(--border-dark); }
.p-footer-link { display: block; font-family: var(--font-cond); font-size: 9.5px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.3); padding: 6px 0; text-decoration: none; background: none; border: none; transition: color .15s; }
.p-footer-link:hover { color: var(--gold); }

/* ── TOPBAR ─────────────────────────────────────────────── */
.p-topbar { height: var(--topbar-h); background: var(--white); border-bottom: 1px solid rgba(0,0,0,.08); display: flex; align-items: center; justify-content: space-between; padding: 0 24px; position: sticky; top: 0; z-index: 100; }
.p-topbar-title { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--black); }
.p-topbar-right { display: flex; align-items: center; gap: 14px; }
.p-notif-btn { position: relative; background: none; border: none; cursor: pointer; font-size: 16px; line-height: 1; padding: 4px; }
.p-notif-dot { position: absolute; top: 0; right: 0; width: 16px; height: 16px; background: #C0392B; color: #fff; border-radius: 50%; font-size: 8px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.p-avatar-wrap { display: flex; align-items: center; gap: 10px; }
.p-avatar { width: 34px; height: 34px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--black); flex-shrink: 0; }
.p-avatar-info { display: flex; flex-direction: column; }
.p-avatar-name { font-size: 12.5px; font-weight: 600; color: var(--black); line-height: 1.2; }
.p-avatar-role { font-family: var(--font-cond); font-size: 8.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--mid); }
.p-avatar-sm { width: 32px; height: 32px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 12px; font-weight: 700; color: var(--black); flex-shrink: 0; }
.p-avatar-lg { width: 72px; height: 72px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--black); margin: 0 auto 4px; }

/* ── CONTENT ────────────────────────────────────────────── */
.p-content { flex: 1; padding: 24px; max-width: 1400px; }

/* ── ALERTS ─────────────────────────────────────────────── */
.p-alert { display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-radius: 6px; font-size: 13px; margin-bottom: 18px; }
.p-alert-success { background: rgba(39,160,124,.1); border: 1px solid rgba(39,160,124,.25); color: #1D6E56; }
.p-alert-error { background: rgba(192,57,43,.08); border: 1px solid rgba(192,57,43,.25); color: #C0392B; }
.p-alert-close { margin-left: auto; background: none; border: none; cursor: pointer; opacity: .5; font-size: 14px; }

/* ── BANNER ─────────────────────────────────────────────── */
.p-banner-alert { display: flex; align-items: center; gap: 12px; background: rgba(201,151,58,.08); border: 1.5px solid rgba(201,151,58,.3); border-radius: 8px; padding: 14px 18px; margin-bottom: 18px; text-decoration: none; transition: all .2s; }
.p-banner-alert:hover { background: rgba(201,151,58,.14); }
.p-banner-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; flex-shrink: 0; animation: pulse 1.5s infinite; }
.p-banner-cta { margin-left: auto; font-family: var(--font-cond); font-size: 9.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); flex-shrink: 0; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }

/* ── KPI GRID ───────────────────────────────────────────── */
.p-kpi-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-bottom: 20px; }
.p-kpi { background: var(--white); border: 1px solid rgba(0,0,0,.07); border-radius: 8px; padding: 18px 20px; }
.p-kpi-urgent { border-left: 3px solid #C0392B; }
.p-kpi-label { font-family: var(--font-cond); font-size: 8.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--mid); margin-bottom: 4px; }
.p-kpi-num { font-family: var(--font-display); font-size: 38px; font-weight: 600; color: var(--gold); line-height: 1; }
.p-kpi-urgent .p-kpi-num { color: #C0392B; }
.p-kpi-sub { font-size: 11px; color: var(--mid); margin-top: 4px; }
.p-mini-stat { background: var(--white); border: 1px solid rgba(0,0,0,.07); border-radius: 7px; padding: 14px 16px; }
.p-mini-num { font-family: var(--font-display); font-size: 28px; font-weight: 600; color: var(--gold); line-height: 1; }
.p-mini-label { font-family: var(--font-cond); font-size: 8.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--mid); margin-top: 3px; }

/* ── CARDS ──────────────────────────────────────────────── */
.p-card { background: var(--white); border: 1px solid rgba(0,0,0,.07); border-radius: 8px; padding: 20px; }
.p-card-gold { background: rgba(201,151,58,.06); border: 1.5px solid rgba(201,151,58,.2); }
.p-card-hover { transition: all .2s; cursor: pointer; text-decoration: none; display: block; }
.p-card-hover:hover { box-shadow: 0 4px 20px rgba(0,0,0,.08); transform: translateY(-2px); border-color: rgba(201,151,58,.3); }
.p-card-title { font-family: var(--font-cond); font-size: 9.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--mid); margin-bottom: 14px; }
.p-card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }

/* ── TABLES ─────────────────────────────────────────────── */
.p-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.p-table th { font-family: var(--font-cond); font-size: 8.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--mid); padding: 9px 12px; text-align: left; border-bottom: 1.5px solid rgba(0,0,0,.08); background: rgba(0,0,0,.015); }
.p-table td { padding: 12px 12px; color: var(--black); border-bottom: 1px solid rgba(0,0,0,.05); vertical-align: middle; }
.p-table tr:last-child td { border-bottom: none; }
.p-table tr:hover td { background: rgba(201,151,58,.025); }

/* ── BUTTONS ────────────────────────────────────────────── */
.p-btn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 18px; border-radius: 5px; font-family: var(--font-cond); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; border: none; text-decoration: none; transition: all .2s; font-weight: 600; }
.p-btn-gold { background: var(--gold); color: var(--black); }
.p-btn-gold:hover { background: #B8862E; }
.p-btn-outline { background: transparent; color: var(--black); border: 1.5px solid rgba(0,0,0,.2); }
.p-btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.p-btn-danger { background: rgba(192,57,43,.1); color: #C0392B; border: 1px solid rgba(192,57,43,.3); }
.p-btn-sm { padding: 5px 12px; font-size: 9px; }
.p-action-link { display: block; padding: 9px 12px; border: 1px solid rgba(0,0,0,.08); border-radius: 5px; font-family: var(--font-cond); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--black); text-decoration: none; transition: all .2s; }
.p-action-link:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,151,58,.04); }
.p-link { color: var(--gold); font-family: var(--font-cond); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; text-decoration: none; }
.p-link:hover { text-decoration: underline; }

/* ── FORMS ──────────────────────────────────────────────── */
.p-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.p-form-grid .full { grid-column: 1 / -1; }
.p-form-group { display: flex; flex-direction: column; gap: 4px; }
.p-label { font-family: var(--font-cond); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: var(--mid); }
.p-input { padding: 8px 12px; border: 1.5px solid rgba(0,0,0,.12); border-radius: 5px; font-size: 13px; color: var(--black); background: var(--white); transition: border-color .2s; outline: none; width: 100%; box-sizing: border-box; }
.p-input:focus { border-color: var(--gold); }
.p-select { padding: 8px 12px; border: 1.5px solid rgba(0,0,0,.12); border-radius: 5px; font-size: 13px; color: var(--black); background: var(--white); transition: border-color .2s; outline: none; width: 100%; }
.p-select:focus { border-color: var(--gold); }
.p-select-sm { padding: 6px 10px; font-size: 12px; }
.p-textarea { padding: 8px 12px; border: 1.5px solid rgba(0,0,0,.12); border-radius: 5px; font-size: 13px; color: var(--black); background: var(--white); resize: vertical; width: 100%; box-sizing: border-box; }
.p-textarea:focus { border-color: var(--gold); outline: none; }
.p-input-sm { padding: 5px 8px; font-size: 12px; }

/* ── PIPELINE ───────────────────────────────────────────── */
.p-pipeline-bar { display: flex; overflow-x: auto; gap: 0; border: 1px solid rgba(0,0,0,.1); border-radius: 8px; overflow: hidden; }
.p-pipeline-stage { flex: 1; text-align: center; padding: 10px 8px; border-right: 1px solid rgba(0,0,0,.08); text-decoration: none; transition: all .2s; min-width: 80px; }
.p-pipeline-stage:last-child { border-right: none; }
.p-pipeline-stage:hover { background: rgba(201,151,58,.06); }
.p-pipeline-stage.active { background: rgba(201,151,58,.1); }
.p-pipeline-count { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--mid); line-height: 1; }
.p-pipeline-count.has-items { color: var(--gold); }
.p-pipeline-label { font-family: var(--font-cond); font-size: 8.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--mid); margin-top: 3px; }

/* ── PROGRESS ───────────────────────────────────────────── */
.p-progress-label { display: flex; justify-content: space-between; font-size: 12px; color: var(--mid); margin-bottom: 5px; }
.p-progress-bar { height: 5px; background: rgba(0,0,0,.07); border-radius: 3px; overflow: hidden; margin-bottom: 6px; }
.p-progress-fill { height: 100%; background: var(--gold); border-radius: 3px; transition: width .6s ease; }
.p-card-meta { font-size: 11px; color: var(--mid); }

/* ── SCORING ────────────────────────────────────────────── */
.p-score-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.p-score-item { display: flex; flex-direction: column; gap: 3px; }
.p-score-label { font-family: var(--font-cond); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; color: var(--mid); }
.p-score-bar { height: 4px; background: rgba(0,0,0,.08); border-radius: 2px; overflow: hidden; }
.p-score-fill { height: 100%; background: var(--gold); border-radius: 2px; }
.p-score-val { font-size: 12px; font-weight: 600; color: var(--black); }

/* ── DETAIL GRID ────────────────────────────────────────── */
.p-detail-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-bottom: 6px; }
.p-detail-label { font-family: var(--font-cond); font-size: 8.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--mid); margin-bottom: 2px; }
.p-detail-val { font-size: 13px; color: var(--black); font-weight: 500; }

/* ── TIMELINE ───────────────────────────────────────────── */
.p-timeline { display: flex; flex-direction: column; gap: 14px; }
.p-timeline-item { display: flex; gap: 12px; align-items: flex-start; }
.p-timeline-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(0,0,0,.12); flex-shrink: 0; margin-top: 3px; border: 2px solid rgba(0,0,0,.08); }
.p-timeline-item.done .p-timeline-dot { background: var(--gold); border-color: var(--gold); }
.p-timeline-label { font-size: 13px; color: var(--black); }
.p-timeline-date { font-size: 11.5px; color: var(--mid); }

/* ── READINESS CARD ─────────────────────────────────────── */
.p-readiness-card { background: var(--black); border-radius: 10px; padding: 24px; margin-bottom: 18px; }
.p-readiness-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; flex-wrap: wrap; gap: 12px; }
.p-readiness-metrics { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.p-readiness-metric { }
.p-rm-val { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.p-rm-bar { height: 4px; background: rgba(255,255,255,.1); border-radius: 2px; overflow: hidden; margin-bottom: 4px; }
.p-rm-fill { height: 100%; border-radius: 2px; }
.p-rm-label { font-family: var(--font-cond); font-size: 8.5px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.35); }

/* ── CHIPS ──────────────────────────────────────────────── */
.p-chip { display: inline-flex; padding: 5px 14px; border-radius: 20px; font-family: var(--font-cond); font-size: 9.5px; letter-spacing: .08em; text-transform: uppercase; border: 1.5px solid rgba(0,0,0,.1); color: var(--mid); text-decoration: none; transition: all .2s; }
.p-chip:hover { border-color: var(--gold); color: var(--gold); }
.p-chip.active { background: var(--gold); border-color: var(--gold); color: var(--black); }

/* ── MUSIC CARD ─────────────────────────────────────────── */
.p-music-card { transition: box-shadow .2s; }
.p-music-card:hover { box-shadow: 0 3px 14px rgba(0,0,0,.07); }

/* ── BADGE ADDITIONS ────────────────────────────────────── */
.badge-gold { background: rgba(201,151,58,.15); color: #8A6520; }
.badge-info { background: rgba(41,128,185,.12); color: #2171A8; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .p-kpi-grid { grid-template-columns: repeat(2,1fr); }
  .p-card-grid { grid-template-columns: 1fr 1fr; }
  .p-readiness-metrics { grid-template-columns: 1fr 1fr; }
  .p-detail-grid { grid-template-columns: 1fr 1fr; }
  .p-score-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --sidebar-w: 0px; }
  .p-sidebar { transform: translateX(-240px); width: 240px; }
  .p-sidebar.open { transform: translateX(0); }
  .p-main { margin-left: 0; }
  .p-kpi-grid { grid-template-columns: 1fr 1fr; }
  .p-card-grid { grid-template-columns: 1fr; }
  .p-form-grid { grid-template-columns: 1fr; }
  .p-pipeline-bar { overflow-x: scroll; }
}

/* ═══════════════════════════════════════════════════════════════
   PHASE 1 — PUBLIC SITE COMPLETE STYLES
   HTML reference parity — Black/Gold theme
═══════════════════════════════════════════════════════════════ */

/* ── BREADCRUMB ─────────────────────────────────────────────── */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-family: var(--font-cond); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 14px; }
.breadcrumb a { color: rgba(255,255,255,.35); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ── HERO IMAGE PLACEHOLDER ─────────────────────────────────── */
.img-ph { background: rgba(201,151,58,.04); border: 2px dashed rgba(201,151,58,.2); border-radius: 8px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; text-align: center; padding: 20px; }
.img-ph .icon { font-size: 28px; opacity: .4; }
.img-ph .label { font-family: var(--font-cond); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); opacity: .7; }
.img-ph .spec { font-size: 9.5px; color: rgba(255,255,255,.2); font-family: monospace; }

/* ── CARDS ──────────────────────────────────────────────────── */
.card { background: var(--white); border-radius: 8px; overflow: hidden; border: 1px solid rgba(0,0,0,.07); transition: all 0.3s var(--ease-out); }
.card:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(0,0,0,.1); }
.card-img { aspect-ratio: 16/9; overflow: hidden; }
.card-body { padding: 22px; }
.card-tag { font-family: var(--font-cond); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.card-title { font-family: var(--font-display); font-size: 19px; font-weight: 600; color: var(--black); line-height: 1.25; margin-bottom: 8px; }
.card-desc { font-size: 13px; color: var(--slate); line-height: 1.65; }
.card-link { font-family: var(--font-cond); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; transition: gap 0.2s; }
.card-link:hover { gap: 10px; }

/* ── STATS ──────────────────────────────────────────────────── */
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid rgba(0,0,0,.08); border-radius: 10px; overflow: hidden; }
.stat-item { padding: 24px; text-align: center; border-right: 1px solid rgba(0,0,0,.08); border-bottom: 1px solid rgba(0,0,0,.08); }
.stat-item:nth-child(2n) { border-right: none; }
.stat-item:nth-last-child(-n+2) { border-bottom: none; }
.stat-number { font-family: var(--font-display); font-size: 42px; font-weight: 600; color: var(--gold); line-height: 1; }
.stat-label { font-family: var(--font-cond); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; color: var(--mid); margin-top: 4px; }

/* ── PRODUCTION CARDS ───────────────────────────────────────── */
.prod-accent { height: 3px; }
.prod-body { padding: 24px 20px; flex: 1; display: flex; flex-direction: column; }
.prod-num { font-family: var(--font-display); font-size: 48px; font-weight: 300; color: rgba(255,255,255,.08); line-height: 1; margin-bottom: -12px; }
.prod-title { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--white); margin-bottom: 3px; }
.prod-when { font-family: var(--font-cond); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.prod-desc { font-size: 12.5px; color: rgba(255,255,255,.55); line-height: 1.65; flex: 1; margin-bottom: 16px; }
.prod-actions { display: flex; gap: 8px; margin-top: auto; flex-wrap: wrap; }

/* ── SECTION EYEBROW (alias for .eyebrow) ───────────────────── */
.section-eyebrow { font-family: var(--font-cond); font-size: 9.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.section-eyebrow::before { content: ''; width: 26px; height: 1px; background: currentColor; display: block; }
.section-eyebrow.gold { color: var(--gold); }
.section-eyebrow.white { color: rgba(255,255,255,.45); }
.section-body { font-size: 15px; color: var(--slate); line-height: 1.75; }
.section-body.white { color: rgba(255,255,255,.65); }

/* ── TRUST BAR ANIMATION ────────────────────────────────────── */
.trust-item::after { content: '◆'; margin-left: 24px; color: var(--gold); opacity: .35; font-size: 7px; }
.trust-item:last-child::after { display: none; }

/* ── EVENT ITEMS ────────────────────────────────────────────── */
.event-date-box { background: var(--black); border: 1px solid var(--border-dark); border-radius: 8px; padding: 12px 16px; text-align: center; flex-shrink: 0; min-width: 64px; }
.event-day { font-family: var(--font-display); font-size: 32px; font-weight: 600; color: var(--gold); line-height: 1; }
.event-month { font-family: var(--font-cond); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-top: 2px; }
.event-info { flex: 1; }
.event-name { font-family: var(--font-display); font-size: 19px; font-weight: 600; color: var(--black); margin-bottom: 3px; }
.event-venue { font-size: 12.5px; color: var(--mid); margin-bottom: 3px; }
.event-price { font-family: var(--font-cond); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); }

/* ── PILLAR STRIP ───────────────────────────────────────────── */
.pillar-strip { display: flex; border: 1px solid var(--border-dark); border-radius: 7px; overflow: hidden; background: var(--black-soft); }
.pillar-item { flex: 1; padding: 14px 8px; text-align: center; border-right: 1px solid var(--border-dark); cursor: pointer; transition: background 0.2s; }
.pillar-item:last-child { border-right: none; }
.pillar-item:hover, .pillar-item.active { background: rgba(201,151,58,.1); }
.pillar-emoji { font-size: 20px; margin-bottom: 6px; }
.pillar-name { font-family: var(--font-cond); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.pillar-item:hover .pillar-name, .pillar-item.active .pillar-name { color: var(--gold); }

/* ── BUTTONS EXTENSIONS ─────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 11px 24px; border-radius: 5px; font-family: var(--font-cond); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; transition: all 0.2s; cursor: pointer; border: none; text-decoration: none; white-space: nowrap; }
.btn-primary, .btn-gold { background: var(--gold); color: var(--black); }
.btn-primary:hover, .btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,151,58,.35); }
.btn-black, .btn-navy { background: var(--black); color: var(--white); border: 1px solid rgba(255,255,255,.12); }
.btn-black:hover, .btn-navy:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-1px); }
.btn-teal { background: #1D6E56; color: var(--white); }
.btn-teal:hover { background: #27A07C; }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.3); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-dark { background: transparent; color: var(--black); border: 1.5px solid rgba(0,0,0,.2); }
.btn-outline-dark:hover { border-color: var(--black); background: var(--black); color: var(--white); }
.btn-lg { padding: 14px 32px; font-size: 12px; }
.btn-sm { padding: 7px 16px; font-size: 9.5px; }
.btn-white { background: var(--white); color: var(--black); }
.btn-white:hover { background: var(--gold); }

/* ── FORMS ──────────────────────────────────────────────────── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-family: var(--font-cond); font-size: 9.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--slate); }
.form-input { padding: 10px 14px; border: 1.5px solid rgba(0,0,0,.12); border-radius: 6px; font-size: 14px; color: var(--black); background: var(--white); transition: border-color 0.2s; outline: none; }
.form-input:focus { border-color: var(--gold); }
.form-select { padding: 10px 14px; border: 1.5px solid rgba(0,0,0,.12); border-radius: 6px; font-size: 14px; color: var(--black); background: var(--white); transition: border-color 0.2s; outline: none; cursor: pointer; }
.form-select:focus { border-color: var(--gold); }
.form-textarea { padding: 10px 14px; border: 1.5px solid rgba(0,0,0,.12); border-radius: 6px; font-size: 14px; color: var(--black); background: var(--white); transition: border-color 0.2s; resize: vertical; min-height: 120px; outline: none; width: 100%; }
.form-textarea:focus { border-color: var(--gold); }
.checkbox-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 4px; }
.checkbox-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--slate); cursor: pointer; padding: 6px 10px; border: 1px solid rgba(0,0,0,.08); border-radius: 5px; transition: all 0.15s; }
.checkbox-item:hover { border-color: var(--gold); background: rgba(201,151,58,.04); }
.checkbox-item input { accent-color: var(--gold); width: 15px; height: 15px; cursor: pointer; }

/* ── VOICE CARDS ────────────────────────────────────────────── */
.voice-grid { display: flex; gap: 12px; flex-wrap: wrap; }
.voice-card { flex: 1; min-width: 100px; border: 1.5px solid rgba(0,0,0,.1); border-radius: 8px; padding: 16px; text-align: center; cursor: pointer; transition: all 0.2s; background: var(--white); }
.voice-card:hover, .voice-card.selected { border-color: var(--gold); background: rgba(201,151,58,.06); }
.voice-name { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--black); }
.voice-range { font-family: var(--font-cond); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-top: 3px; }

/* ── CURRENCY TOGGLE ────────────────────────────────────────── */
.currency-toggle { display: flex; gap: 6px; margin-bottom: 20px; }
.curr-btn { font-family: var(--font-cond); font-size: 9.5px; letter-spacing: .1em; text-transform: uppercase; padding: 6px 14px; border: 1.5px solid rgba(0,0,0,.12); border-radius: 4px; background: var(--white); color: var(--slate); cursor: pointer; transition: all 0.15s; }
.curr-btn:hover { border-color: var(--gold); color: var(--gold); }
.curr-btn.active { background: var(--gold); border-color: var(--gold); color: var(--black); }

/* ── STEPS ──────────────────────────────────────────────────── */
.steps { display: flex; gap: 0; }
.step { flex: 1; text-align: center; padding: 0 14px; position: relative; }
.step::before { content: ''; position: absolute; top: 22px; right: -50%; width: 100%; height: 1px; background: rgba(0,0,0,.1); z-index: 0; }
.step:last-child::before { display: none; }
.step-num { font-family: var(--font-display); font-size: 42px; font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 8px; position: relative; z-index: 1; }
.step-name { font-family: var(--font-cond); font-size: 9.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--black); margin-bottom: 6px; font-weight: 600; }
.step-desc { font-size: 11.5px; color: var(--slate); line-height: 1.6; }

/* ── TRAINING LEVELS ────────────────────────────────────────── */
.level-track { display: flex; border-radius: 10px; overflow: hidden; border: 1px solid rgba(0,0,0,.08); }
.level-item { flex: 1; padding: 24px 20px; border-right: 1px solid rgba(0,0,0,.08); background: var(--cream); transition: background 0.2s; cursor: pointer; }
.level-item:last-child { border-right: none; }
.level-item.active, .level-item:hover { background: var(--black); }
.level-num { font-family: var(--font-cond); font-size: 48px; font-weight: 700; color: rgba(0,0,0,.07); line-height: 1; margin-bottom: -8px; }
.level-item.active .level-num, .level-item:hover .level-num { color: rgba(201,151,58,.1); }
.level-name { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: var(--black); margin-bottom: 4px; }
.level-item.active .level-name, .level-item:hover .level-name { color: var(--white); }
.level-weeks { font-family: var(--font-cond); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.level-desc { font-size: 12px; color: var(--slate); line-height: 1.6; }
.level-item.active .level-desc, .level-item:hover .level-desc { color: rgba(255,255,255,.5); }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-item { border-bottom: 1px solid rgba(0,0,0,.07); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; padding: 18px 0; font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--black); text-align: left; transition: color 0.2s; }
.faq-question:hover { color: var(--gold); }
.faq-toggle { flex-shrink: 0; width: 24px; height: 24px; background: var(--black); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; transition: all 0.3s; margin-top: 2px; }
.faq-item.open .faq-toggle { background: var(--gold); color: var(--black); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease-out), padding 0.3s; }
.faq-answer-inner { padding: 0 0 20px; font-size: 14px; color: var(--slate); line-height: 1.75; }

/* ── JOURNAL ────────────────────────────────────────────────── */
.journal-featured { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.journal-tag { font-family: var(--font-cond); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 12px; }
.journal-title { font-family: var(--font-display); font-size: clamp(22px, 3vw, 34px); font-weight: 600; color: var(--black); line-height: 1.2; margin-bottom: 14px; }
.journal-excerpt { font-size: 14px; color: var(--slate); line-height: 1.75; margin-bottom: 20px; }
.journal-meta { font-family: var(--font-cond); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--mid); }
.series-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.series-tab { font-family: var(--font-cond); font-size: 9.5px; letter-spacing: .1em; text-transform: uppercase; padding: 7px 16px; border: 1.5px solid rgba(255,255,255,.1); border-radius: 4px; background: transparent; color: rgba(255,255,255,.5); cursor: pointer; transition: all 0.2s; }
.series-tab:hover, .series-tab.active { background: var(--gold); border-color: var(--gold); color: var(--black); }

/* ── TAB CONTENT ────────────────────────────────────────────── */
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ── FLASH MESSAGES ─────────────────────────────────────────── */
.flash { position: fixed; top: 80px; right: 20px; z-index: 2000; display: flex; align-items: center; gap: 10px; padding: 14px 18px; border-radius: 6px; font-size: 13.5px; font-family: var(--font-body); max-width: 400px; box-shadow: 0 8px 32px rgba(0,0,0,.2); animation: slideIn 0.3s var(--ease-out); }
.flash-success { background: #1D6E56; color: var(--white); }
.flash-error { background: #C0392B; color: var(--white); }
.flash button { background: none; border: none; color: inherit; cursor: pointer; opacity: .7; font-size: 16px; }
@keyframes slideIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }

/* ── WA FLOAT ───────────────────────────────────────────────── */
.wa-float { position: fixed; bottom: 24px; right: 24px; z-index: 500; width: 52px; height: 52px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,.4); transition: all 0.2s; }
.wa-float:hover { transform: scale(1.08); box-shadow: 0 8px 30px rgba(37,211,102,.5); }
.wa-float svg { width: 26px; height: 26px; fill: var(--white); }

/* ── EMAIL CAPTURE ──────────────────────────────────────────── */
.email-capture { background: var(--black); border-top: 1px solid var(--border-dark); padding: 60px 0; }
.email-capture-inner { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; max-width: 800px; margin: 0 auto; }
.email-capture-form { display: flex; gap: 0; max-width: 480px; }
.email-capture-input { flex: 1; padding: 12px 16px; background: rgba(255,255,255,.06); border: 1.5px solid rgba(255,255,255,.1); border-right: none; border-radius: 5px 0 0 5px; font-size: 14px; color: var(--white); outline: none; transition: border-color 0.2s; }
.email-capture-input:focus { border-color: var(--gold); }
.email-capture-input::placeholder { color: rgba(255,255,255,.25); }
.email-capture-btn { padding: 12px 20px; background: var(--gold); color: var(--black); border: none; border-radius: 0 5px 5px 0; font-family: var(--font-cond); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; cursor: pointer; transition: background 0.2s; white-space: nowrap; }
.email-capture-btn:hover { background: var(--gold-light); }

/* ── GRID UTILITIES ─────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }

/* ── BG UTILITIES ───────────────────────────────────────────── */
.bg-white { background: var(--white); }
.bg-navy, .bg-black { background: var(--black); }
.bg-navy-deep { background: var(--black-soft); }

/* ── SECTION ────────────────────────────────────────────────── */
.section { padding: 80px 0; }

/* ── CONTAINER ──────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .tiers { grid-template-columns: 1fr; }
  .steps { flex-direction: column; align-items: center; gap: 24px; }
  .step::before { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .checkbox-grid { grid-template-columns: 1fr 1fr; }
  .journal-featured { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .level-track { flex-direction: column; }
  .pillar-strip { flex-wrap: wrap; }
}
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .voice-grid { flex-direction: column; }
  .checkbox-grid { grid-template-columns: 1fr; }
  .prod-card { grid-column: span 1; }
}

/* ══════════════════════════════════════════════════════════════
   NAV PORTAL BUTTON
══════════════════════════════════════════════════════════════ */
.nav-portal-btn {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-cond); font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.6); padding: 7px 13px;
  border: 1px solid rgba(255,255,255,.12); border-radius: 5px;
  transition: all 0.2s; white-space: nowrap; cursor: pointer;
  background: transparent; text-decoration: none;
}
.nav-portal-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,151,58,.06); }
.nav-portal-icon { color: var(--gold); font-size: 10px; }


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE LAYOUT — ONE CLEAN BLOCK
   Desktop > 1024px : horizontal split (text left, images right)
   Tablet  768-1024px: vertical stacked
   Phone   < 768px  : mobile optimised
   Small   < 640px  : tighter sizes
   Tiny    < 390px  : smallest phones
═══════════════════════════════════════════════════════════════ */

/* ── Utility: toggle between desktop scroll and mobile stack ── */
.hide-on-mobile   { display: block; }
.show-on-mobile   { display: none; }
.prod-scroll-hint { display: none; }

/* ── Desktop class definitions (replicate original inline styles) */
.hero-split       { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; width: 100%; }
.pub-split        { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.pub-split-80     { gap: 80px; }
.pub-split-center { align-items: center; }
.pub-split-wide   { display: grid; grid-template-columns: 2fr 1fr; gap: 60px; }
.pub-split-wide-r { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; }
.pub-grid-3       { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pub-grid-4       { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.footer-main-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }

/* ── Productions: desktop = horizontal scroll grid ─────────── */
.prod-grid-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.prod-grid-scroll::-webkit-scrollbar { display: none; }
.prod-grid        { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }

/* ── Productions mobile stack (hidden on desktop/tablet) ────── */
.prod-mobile-stack   { display: none; flex-direction: column; gap: 14px; }
.prod-hidden         { display: none !important; }
.prod-mobile-card    { background: #111; border-radius: 12px; border: 1px solid rgba(255,255,255,.07); overflow: hidden; }
.prod-mobile-accent  { height: 4px; width: 100%; }
.prod-mobile-header  { display: flex; align-items: flex-start; gap: 14px; padding: 18px 18px 0; }
.prod-mobile-num     { font-family: var(--font-display,Georgia); font-size: 40px; font-weight: 700; color: rgba(255,255,255,.06); line-height: 1; flex-shrink: 0; width: 48px; text-align: right; }
.prod-mobile-title   { font-family: var(--font-display,Georgia); font-size: 18px; font-weight: 600; color: #fff; line-height: 1.2; margin-bottom: 4px; }
.prod-mobile-when    { font-size: 9px; letter-spacing: .12em; text-transform: uppercase; color: #C9973A; }
.prod-mobile-body    { padding: 14px 18px 18px; }
.prod-mobile-desc    { font-size: 13.5px; color: rgba(255,255,255,.55); line-height: 1.7; margin: 0 0 14px; }
.prod-mobile-actions { display: flex; gap: 10px; }
.prod-mobile-actions .btn { flex: 1; justify-content: center; }

/* ── Read more / show more buttons ──────────────────────────── */
.prod-read-more, .card-read-more {
  display: inline; background: none; border: none;
  padding: 0 0 0 3px; cursor: pointer;
  font-size: inherit; font-family: inherit;
  color: #C9973A; font-weight: 600;
  text-decoration: underline; text-underline-offset: 2px;
  transition: opacity .15s;
}
.prod-read-more:hover, .card-read-more:hover { opacity: .7; }

.prod-show-more {
  display: none; /* flex only on phone via @media below */
  align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 14px 20px;
  background: rgba(201,151,58,.08); border: 1.5px solid rgba(201,151,58,.2);
  border-radius: 10px; color: #C9973A;
  font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  cursor: pointer; transition: background .2s, border-color .2s; margin-top: 4px;
}
.prod-show-more:hover { background: rgba(201,151,58,.15); border-color: rgba(201,151,58,.4); }
.prod-show-more svg { transition: transform .3s ease; }
.prod-show-more[aria-expanded="true"] svg { transform: rotate(180deg); }

/* Desktop: all journal cards visible, show-more hidden */
.card-hidden         { display: block !important; }
.card-show-more-wrap { display: none; }

/* ═══════════════════════════════════════════════════════════════
   PORTAL / ADMIN — Sidebar & dashboard grids
   (Only admin portal rules here — public site NOT affected)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Hamburger */
  #sidebar-toggle { display: flex !important; }

  /* Sidebar slide-in */
  .p-sidebar { transform: translateX(-260px); width: 260px; transition: transform .28s cubic-bezier(.4,0,.2,1); z-index: 300; }
  .p-sidebar.open { transform: translateX(0); }
  .p-main { margin-left: 0 !important; }
  .p-topbar { padding: 12px 14px; gap: 10px; }
  .p-topbar-title { font-size: 16px; }
  .p-avatar-info { display: none; }
  .p-content { padding: 14px; }

  /* KPIs: 2 columns */
  .p-kpi-grid { grid-template-columns: 1fr 1fr !important; gap: 10px; }
  .p-kpi { padding: 14px 12px; }
  .p-kpi-num { font-size: 22px; }

  /* Cards */
  .p-card { padding: 16px; }
  .p-card-grid { grid-template-columns: 1fr !important; }
  .p-form-grid { grid-template-columns: 1fr !important; }

  /* Tables: horizontal scroll */
  .p-card table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; min-width: 600px; }

  /* Admin inline grids */
  div[style*="grid-template-columns:1fr 280px"],
  div[style*="grid-template-columns:1fr 320px"],
  div[style*="grid-template-columns:1fr 340px"],
  div[style*="grid-template-columns:1fr 360px"],
  div[style*="grid-template-columns:280px 1fr"],
  div[style*="grid-template-columns:420px 1fr"],
  div[style*="grid-template-columns:1fr 300px"] { grid-template-columns: 1fr !important; }

  /* Buttons / misc portal */
  .p-btn { font-size: 12px; padding: 9px 14px; }
  .p-topbar-right { gap: 8px; }
  .preview-bar { flex-direction: column; gap: 8px; padding: 10px 14px; }
}

@media (max-width: 400px) {
  .p-kpi-grid { grid-template-columns: 1fr !important; }
  .p-content { padding: 10px; }
  .p-topbar { padding: 10px 12px; }
  .p-topbar-title { font-size: 14px; }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .p-sidebar { width: 200px; }
  :root { --sidebar-w: 200px; }
  .p-kpi-grid { grid-template-columns: repeat(2,1fr); }
  div[style*="grid-template-columns:1fr 280px"],
  div[style*="grid-template-columns:1fr 320px"],
  div[style*="grid-template-columns:280px 1fr"] { grid-template-columns: 1fr !important; }
}

/* ═══════════════════════════════════════════════════════════════
   TABLET — 1024px and below
   Public site goes vertical here. Desktop stays horizontal above.
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {

  /* ── Collapse hero + all 2-col public splits → 1 column ──── */
  .hero-split,
  .pub-split,
  .pub-split-80,
  .pub-split-wide,
  .pub-split-wide-r {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  /* Second column of hero = image placeholder — hide on tablet/phone */
  /* .hero-split > :last-child { display: none; } */
  @media (max-width: 1024px) {
  .hero-split {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
    align-items: start;
  }

  .hero-split > :last-child {
    display: grid !important;
    width: 100%;
  }

  .hero-split .img-ph {
    display: flex !important;
  }
}

  /* ── 3-col → 2-col, keep 4-col as 2-col ─────────────────── */
  .pub-grid-3 { grid-template-columns: 1fr 1fr !important; gap: 14px; }
  .pub-grid-4 { grid-template-columns: 1fr 1fr !important; gap: 14px; }

  /* ── Footer: 4-col → 2-col ───────────────────────────────── */
  .footer-main-grid { grid-template-columns: 1fr 1fr !important; gap: 36px 48px !important; }

  /* ── Hide image placeholder boxes ────────────────────────── */
  /* .img-ph { display: none; } */

  /* ── About page 4-col voice/section grid → 2-col ─────────── */
  [style*="grid-template-columns:repeat(4,1fr)"] { grid-template-columns: 1fr 1fr !important; }

  /* ── Productions: horizontal scroll with fixed card width ─── */
  .prod-grid { grid-template-columns: repeat(5, 280px); gap: 14px; }
  .prod-grid-scroll { margin: 0 -32px; padding: 0 32px; scroll-snap-type: x mandatory; }
  .prod-card { scroll-snap-align: start; }

  /* ── Event items → stacked ───────────────────────────────── */
  .event-item { flex-direction: column; gap: 14px; align-items: flex-start; }
  .event-item .btn { width: auto; }
  .event-date-box { min-width: 0; }

  /* ── Typography ──────────────────────────────────────────── */
  .section-h2  { font-size: clamp(28px, 4vw, 42px); }
  .hero-h1     { font-size: clamp(36px, 5.5vw, 58px); }
  .hero-body   { font-size: 16px; }

  /* ── Spacing ─────────────────────────────────────────────── */
  .section   { padding: 64px 0; }
  .container { padding: 0 32px; }
  .hero      { padding: 110px 40px 70px; }
  .page-hero { padding: 100px 40px 48px; }
}

/* ═══════════════════════════════════════════════════════════════
   PHONE — 768px and below
   Mobile-specific: stacked cards, show more, tighter everything.
═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

   .hero-split {
    gap: 28px !important;
  }

  .hero-split > :last-child {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 360px;
    justify-content: center;
  }

  /* ── Global ──────────────────────────────────────────────── */
  body { overflow-x: hidden; }
  *, *::before, *::after { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
  .container { padding: 0 20px; max-width: 100%; }
  .section   { padding: 56px 0; }
  section, .section, footer, header, .container, .hero, .page-hero { max-width: 100vw; }

  /* ── Hero ────────────────────────────────────────────────── */
  .hero    { padding: 90px 20px 56px; }
  .hero-h1 { font-size: clamp(30px, 8vw, 44px); line-height: 1.1; }
  .hero-body { font-size: 15px; margin-bottom: 24px; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .btn { width: 100%; max-width: 360px; justify-content: center; }

  /* ── Typography ──────────────────────────────────────────── */
  .section-h2   { font-size: clamp(24px, 7vw, 34px); }
  .page-hero-h1 { font-size: clamp(24px, 7vw, 38px); }
  .page-hero    { padding: 84px 20px 36px; }

  /* ── 4-col grids → 1-col on phone (was 2-col on tablet) ─── */
  .pub-grid-4 { grid-template-columns: 1fr 1fr !important; gap: 10px; }

  /* ── Footer → 1-col on phone ─────────────────────────────── */
  .footer-main-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .footer-main-grid > *:nth-child(3),
  .footer-main-grid > *:nth-child(4) { display: none; }

  /* ── Productions: switch to mobile stacked card list ──────── */
  .hide-on-mobile    { display: none !important; }
  .show-on-mobile    { display: flex !important; flex-direction: column; }
  .prod-mobile-stack { display: flex !important; }
  .prod-show-more    { display: flex !important; }
  .prod-scroll-hint  {
    display: flex !important; align-items: center; gap: 6px;
    font-size: 9px; letter-spacing: .1em; text-transform: uppercase;
    color: rgba(255,255,255,.35); margin-bottom: 12px;
  }
  .prod-scroll-hint::after {
    content: '→'; font-size: 11px;
    animation: scrollHint 1.5s ease-in-out infinite;
  }
  @keyframes scrollHint {
    0%, 100% { transform: translateX(0); opacity: .4; }
    50%       { transform: translateX(4px); opacity: .9; }
  }

  /* ── Journal: show more on phone ─────────────────────────── */
  .card-hidden         { display: none !important; }
  .card-show-more-wrap { display: block !important; text-align: center; margin-top: 16px; }
  .card-show-more-wrap .prod-show-more {
    display: inline-flex !important; max-width: 300px;
    background: rgba(0,0,0,.05); border-color: rgba(0,0,0,.15); color: #0D0D0D;
  }

  /* ── Event items ─────────────────────────────────────────── */
  .event-item { flex-direction: column; gap: 12px; align-items: flex-start; }
  .event-item .btn { width: 100%; justify-content: center; }

  /* ── Buttons ─────────────────────────────────────────────── */
  .btn    { min-height: 44px; }
  .btn-lg { padding: 14px 24px; font-size: 11px; }

  /* ── Streaming / forms ───────────────────────────────────── */
  .form-input, .form-select, .form-textarea { font-size: 15px !important; }
  form[action*="streaming"] { width: 100% !important; min-width: 0 !important; }
  .currency-btn { font-size: 9px !important; padding: 3px 7px !important; }
}

/* ═══════════════════════════════════════════════════════════════
   SMALL PHONE — 640px and below (iPhone 14/15, Galaxy S)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .hero-h1    { font-size: 28px; line-height: 1.1; }
  .section-h2 { font-size: 24px; }
  .hero-body  { font-size: 14px; }
  .container  { padding: 0 16px; }
  .section    { padding: 48px 0; }
  .hero       { padding: 80px 16px 48px; }
  .page-hero  { padding: 80px 16px 36px; }
  .hero-actions .btn  { max-width: 340px; font-size: 11px; }
  .pub-grid-4 { grid-template-columns: 1fr !important; }
  .prod-mobile-num    { font-size: 30px; width: 36px; }
  .prod-mobile-title  { font-size: 15px; }
  .prod-mobile-header { padding: 14px 14px 0; gap: 10px; }
  .prod-mobile-body   { padding: 10px 14px 14px; }
  .prod-mobile-desc   { font-size: 13px; }
  .prod-mobile-actions .btn { font-size: 9px !important; padding: 9px 10px !important; }
  .footer-main-grid   { gap: 28px !important; }
  .card-title { font-size: 16px; }
  .card-desc  { font-size: 13px; }
  .btn    { font-size: 10px; padding: 12px 16px; }
  .btn-sm { font-size: 9px; padding: 9px 12px; }
  .nav    { padding: 0 16px; }
  .event-name  { font-size: 15px; }
  .event-venue { font-size: 12px; }
  .page-hero-h1 { font-size: clamp(22px, 7vw, 32px); }
}

/* ═══════════════════════════════════════════════════════════════
   TINY PHONE — 390px and below (iPhone SE)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 390px) {
  .hero-h1    { font-size: 24px; }
  .section-h2 { font-size: 21px; }
  .container  { padding: 0 14px; }
  .hero       { padding: 76px 14px 44px; }
  .hero-actions .btn { max-width: 300px; }
  .btn        { font-size: 9px; padding: 11px 14px; }
}
/* ═════════════════════════════════════════════════════
   MOBILE NAV OPTIMISATION — keep hamburger clean
═════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .nav {
    height: 64px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-logo {
    min-width: 0;
    flex: 1 1 auto;
  }

  .nav-logo-name {
    font-size: 16px;
    white-space: nowrap;
  }

  .nav-logo-tag {
    display: none;
  }

  .nav-links,
  .nav-cta,
  .nav-portal-btn {
    display: none !important;
  }

  .nav-hamburger {
    display: flex !important;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    margin-left: auto;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 6px;
    position: relative;
    z-index: 1001;
  }

  .nav-hamburger span {
    width: 24px;
    height: 2px;
  }

  .mobile-nav {
    padding: 96px 28px 40px;
  }
}
@media (max-width: 768px) {
  .mobile-portal-link {
    margin-top: 24px;
    background: var(--gold);
    color: var(--black) !important;
    text-align: center;
    border-radius: 8px;
    border-bottom: none;
    font-family: var(--font-cond);
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 16px 20px;
  }

  .mobile-portal-link:hover {
    background: var(--gold-light);
    color: var(--black) !important;
  }
}
/* ═════════════════════════════════════════════════════
   MOBILE NAV + HERO OVERFLOW FIX
═════════════════════════════════════════════════════ */

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

@media (max-width: 768px) {
  .nav {
    width: 100%;
    max-width: 100vw;
    height: 64px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
  }

  .nav-logo {
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100% - 56px);
  }

  .nav-logo-name {
    font-size: 16px;
    line-height: 1.1;
    white-space: nowrap;
  }

  .nav-logo-tag {
    font-size: 8px;
    white-space: nowrap;
  }

  .nav-links,
  .nav-actions,
  .nav-cta,
  .nav-portal-btn {
    display: none !important;
  }

  .nav-hamburger {
    display: flex !important;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    margin-left: auto;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    z-index: 1001;
  }

  .nav-hamburger span {
    width: 24px;
    height: 2px;
  }

  .hero {
    width: 100%;
    max-width: 100vw;
    min-height: auto;
    padding: 96px 24px 48px;
    overflow: hidden;
  }

  .hero-split {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 32px !important;
    margin: 0;
  }

  .hero-split > * {
    min-width: 0;
    max-width: 100%;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
  }

  .hero-h1 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.08;
    max-width: 100%;
    overflow-wrap: normal;
  }

  .hero-body {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.65;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-split > :last-child {
    display: grid !important;
    width: 100%;
    max-width: 100%;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .hero-split .img-ph {
    display: flex !important;
    width: 100%;
    max-width: 100%;
  }
}
/* Flash messages */
.flash {
  position: fixed;
  top: 92px;
  right: 24px;
  z-index: 9000;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: min(420px, calc(100vw - 32px));
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 13.5px;
  font-family: var(--font-body);
  line-height: 1.5;
  box-shadow: 0 18px 60px rgba(0,0,0,.35), 0 2px 10px rgba(0,0,0,.18);
  animation: flashSlideIn .35s var(--ease-out) both;
}

@keyframes flashSlideIn {
  from {
    opacity: 0;
    transform: translateX(28px) translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}

.flash-success {
  background: #1D6E56;
  color: #fff;
  border: 1px solid rgba(39,160,124,.55);
  border-left: 5px solid #27A07C;
}

.flash-error {
  background: #7f1d1d;
  color: #fff;
  border: 1px solid rgba(248,113,113,.45);
  border-left: 5px solid #ef4444;
}

.flash-warning {
  background: #7a5200;
  color: #fff;
  border: 1px solid rgba(201,151,58,.55);
  border-left: 5px solid #C9973A;
}

.flash-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.flash-body {
  flex: 1;
  min-width: 0;
}

.flash-title {
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff;
}

.flash-list {
  margin: 0;
  padding-left: 18px;
}

.flash-list li {
  margin-bottom: 3px;
  color: rgba(255,255,255,.92);
}

.flash-close,
.flash button {
  flex-shrink: 0;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  opacity: .7;
  font-size: 16px;
  line-height: 1;
  padding: 2px;
}

.flash-close:hover,
.flash button:hover {
  opacity: 1;
}

@media (max-width: 640px) {
  .flash {
    top: 82px;
    left: 14px;
    right: 14px;
    width: auto;
    max-width: none;
  }
}

#book-form { 
  scroll-margin-top: 80px; 
}
.flash-error-list {
  max-width: 520px;
}

.flash-error-list ul {
  margin-top: 4px;
}

.flash-error-list li {
  line-height: 1.45;
}
/* Inline form validation panel */
.form-error-panel {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(192, 57, 43, .08);
  border: 1.5px solid rgba(192, 57, 43, .28);
  border-left: 5px solid #C0392B;
  border-radius: 10px;
  padding: 16px 18px;
  margin: 0 0 28px;
  color: #8f2d24;
  font-size: 14px;
  line-height: 1.55;
  max-width: 760px;
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
}

.form-error-panel-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #C0392B;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

.form-error-panel-body {
  flex: 1;
}

.form-error-panel-title {
  font-weight: 700;
  margin-bottom: 8px;
  color: #7c241d;
}

.form-error-panel-list {
  margin: 0;
  padding-left: 18px;
}

.form-error-panel-list li {
  margin-bottom: 4px;
}

.form-error-panel-list li:last-child {
  margin-bottom: 0;
}
