/* ============================================
   Streetwise Young Talent Experience — Styles
   Brand: White bg | Black text | Gold #C9A84C
   Fonts: Sora (headings/buttons) + IBM Plex Sans (body) — Google Fonts
   ============================================ */

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

:root {
  --gold:       #C9A84C;
  --gold-dark:  #a8862e;
  --black:      #0d0d0d;
  --white:      #ffffff;
  --off-white:  #f8f7f4;
  --light-grey: #f2f2f2;
  --mid-grey:   #666666;
  --border:     #e0e0e0;
  --app-font-heading: 'Sora', sans-serif;
  --app-font-sans:    'IBM Plex Sans', sans-serif;
  --font:       var(--app-font-sans);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  line-height: 1.7;
  font-size: 1rem;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 { font-family: var(--app-font-heading); }
h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 800; line-height: 1.2; }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; line-height: 1.3; }
h3 { font-size: 1.05rem; font-weight: 700; }

/* ============================================
   LAYOUT HELPERS
   ============================================ */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section {
  padding: 5rem 0;
}
.section-light {
  background: var(--off-white);
}
.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin: 0.75rem auto 0;
  border-radius: 2px;
}
.body-text {
  font-size: 1.05rem;
  color: #333;
  text-align: center;
  line-height: 1.85;
}

/* Image + text split sections */
.section-title-left {
  text-align: left;
}
.section-title-left::after {
  margin-left: 0;
  margin-right: auto;
}
.body-text-left,
.who-note-left {
  text-align: left;
}
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.feature-media {
  width: 100%;
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
.feature-split.reverse .feature-media {
  order: 2;
}
@media (max-width: 768px) {
  .feature-split {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .feature-split.reverse .feature-media {
    order: 0;
  }
  .feature-media {
    aspect-ratio: 3 / 2;
    max-height: 340px;
  }
}

/* Booking page banner */
.booking-banner {
  width: 100%;
  height: 240px;
  background-size: cover;
  background-position: center 30%;
  border-radius: 6px;
  margin-bottom: 2.25rem;
}

/* ============================================
   BUTTONS
   ============================================ */
button { font-family: var(--app-font-heading); }

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 3px;
  font-family: var(--app-font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.1s;
}
.btn:active { transform: translateY(1px); }

.btn-gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

.btn-outline-dark {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-dark:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-dark:hover { background: #333; border-color: #333; }

.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.8rem; }
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--black); }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 1.5rem;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}
.nav-logo {
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  color: var(--black);
  max-width: 260px;
  line-height: 1.3;
}
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links li a {
  padding: 0.5rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--black);
  border-radius: 3px;
  transition: color 0.2s;
}
.nav-links li a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  border-radius: 3px !important;
  padding: 0.5rem 1.1rem !important;
  font-family: var(--app-font-heading);
}
.nav-cta:hover { background: var(--gold-dark) !important; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--black);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  background-color: var(--black);
  background-image: linear-gradient(rgba(0,0,0,0.72), rgba(0,0,0,0.78)), url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 7rem 1.5rem;
  text-align: center;
}
.hero-inner {
  max-width: 760px;
  margin: 0 auto;
}
.hero-notice {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 3px;
  padding: 0.5rem 1.1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 2rem;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   EXPERIENCE CARDS
   ============================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.exp-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0;
  overflow: hidden;
  text-align: center;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}
.exp-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.card-media {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
}
.card-body {
  padding: 1.5rem;
}
.exp-card h3 {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--black);
}
.exp-card p {
  font-size: 0.88rem;
  color: var(--mid-grey);
  line-height: 1.7;
}

/* ============================================
   WHO IT IS FOR
   ============================================ */
.who-list {
  list-style: none;
  margin-bottom: 1.5rem;
}
.who-list li {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
  padding-left: 1.5rem;
  position: relative;
  color: #333;
}
.who-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}
.who-note {
  font-size: 0.9rem;
  color: var(--mid-grey);
  font-style: italic;
  margin-top: 1.25rem;
  text-align: center;
}

/* ============================================
   IMPORTANT NOTICE CALLOUT
   ============================================ */
.notice-box {
  border: 2px solid var(--gold);
  border-radius: 4px;
  padding: 2rem 2.5rem;
  background: var(--white);
  text-align: center;
}
.notice-title {
  color: var(--gold);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.75rem;
  font-weight: 700;
}
.notice-box p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ============================================
   PRICING
   ============================================ */
.pricing-card {
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 4px;
  padding: 3rem 2.5rem;
  text-align: center;
}
.pricing-amount {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--black);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.pricing-amount span {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--mid-grey);
}
.pricing-includes-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin: 2rem 0 1rem;
}
.pricing-list {
  list-style: none;
  margin-bottom: 1.5rem;
}
.pricing-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: #333;
}
.pricing-list li:last-child { border-bottom: none; }
.pricing-note {
  font-size: 0.85rem;
  color: var(--mid-grey);
  margin-bottom: 2rem;
  font-style: italic;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: var(--black);
  color: var(--white);
}
.cta-inner {
  text-align: center;
}
.cta-inner h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}
.cta-inner p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
  font-size: 1rem;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #0d0d0d;
  color: rgba(255,255,255,0.5);
  padding: 2.5rem 1.5rem;
  font-size: 0.85rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.footer-brand strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}
.footer-brand p { color: rgba(255,255,255,0.45); }
.footer-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  align-items: center;
}
.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.25rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.35);
  font-size: 0.8rem;
}

/* ============================================
   FORMS (booking, consent, payment, etc.)
   ============================================ */
.page-header {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 1.5rem;
  text-align: center;
}
.page-header h1 { font-size: clamp(1.4rem, 3vw, 1.9rem); }
.page-header p { color: var(--mid-grey); margin-top: 0.5rem; font-size: 0.95rem; }

.form-section {
  max-width: 680px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}
.form-group { margin-bottom: 1.3rem; }
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: #444;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-size: 0.95rem;
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: var(--off-white);
}
.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  cursor: pointer;
  accent-color: var(--gold);
  margin-top: 2px;
}
.checkbox-group label {
  font-weight: 500;
  font-size: 0.88rem;
  text-transform: none;
  letter-spacing: 0;
  color: #333;
  cursor: pointer;
}
.form-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}
.form-section-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 1.25rem;
  margin-top: 2rem;
}

/* ============================================
   BOOKING FORM
   ============================================ */
.booking-form {
  max-width: 680px;
  margin: 3.5rem auto;
  padding: 0 1.5rem 4rem;
}
.booking-form > h2 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: var(--black);
}
.workshop-summary {
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: 4px;
  background: var(--off-white);
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.workshop-summary h3 {
  font-size: 1.15rem;
  margin-bottom: 0.9rem;
  color: var(--black);
}
.workshop-meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.workshop-meta li {
  font-size: 0.92rem;
  color: var(--mid-grey);
}
.workshop-meta strong { color: var(--black); }
.spaces-left { color: #166534; font-weight: 700; }
.spaces-full { color: #991b1b; font-weight: 700; }
.fully-booked-notice {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 4px;
  padding: 1.1rem 1.25rem;
  margin-bottom: 1.75rem;
}
.fully-booked-notice p { font-size: 0.92rem; color: #7f1d1d; line-height: 1.6; }
.fully-booked-notice p + p { margin-top: 0.4rem; }
.booking-form fieldset {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.5rem;
  margin-bottom: 1.75rem;
}
.booking-form legend {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  font-weight: 700;
  padding: 0 0.5rem;
}
.checkbox-group + .checkbox-group { margin-top: 0.75rem; }
.req { color: #b91c1c; font-weight: 700; }

.consent-intro {
  font-size: 0.88rem;
  color: var(--mid-grey);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.radio-option {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: var(--off-white);
  font-weight: 500;
  font-size: 0.88rem;
  color: #333;
  cursor: pointer;
}
.radio-option input[type="radio"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  cursor: pointer;
  accent-color: var(--gold);
  margin-top: 2px;
}

/* ============================================
   ALERTS
   ============================================ */
.alert {
  padding: 0.9rem 1.1rem;
  border-radius: 3px;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
}
.alert-error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}
.alert-success {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}

/* ============================================
   CONFIRMATION / THANK YOU CARDS
   ============================================ */
.result-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 3rem 2.5rem;
  text-align: center;
  max-width: 560px;
  margin: 4rem auto;
}
.result-card .gold-mark {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.result-card h2 { margin-bottom: 0.75rem; }
.result-card p { color: var(--mid-grey); margin-bottom: 1.5rem; }
.booking-summary-box {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 1.25rem 1.5rem;
  text-align: left;
  margin: 1.5rem 0;
}
.booking-summary-box p { margin-bottom: 0.4rem; font-size: 0.9rem; }

/* ============================================
   PAYMENT
   ============================================ */
.payment-section {
  max-width: 560px;
  margin: 3.5rem auto;
  padding: 0 1.5rem 4rem;
}
.payment-section > h2 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: var(--black);
}
.booking-summary-box h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.85rem;
}
#payment-element { margin-bottom: 1rem; }
#payment-form .btn { width: 100%; margin-top: 0.5rem; }
.thankyou-section {
  max-width: 600px;
  margin: 4rem auto;
  padding: 0 1.5rem 5rem;
}
.thankyou-card {
  text-align: center;
}
.thankyou-card h2 { font-size: 1.85rem; margin-bottom: 0.75rem; color: var(--black); }
.thankyou-card > p { color: var(--mid-grey); font-size: 0.95rem; margin-bottom: 0.5rem; }
.thankyou-card .booking-summary-box { text-align: left; margin: 2rem 0; }
.thankyou-muted { font-size: 0.85rem; color: var(--mid-grey); margin-bottom: 1.5rem; }
.thankyou-disclaimer {
  font-size: 0.82rem;
  color: var(--mid-grey);
  font-style: italic;
  background: var(--off-white);
  border-left: 3px solid var(--gold);
  padding: 0.85rem 1.1rem;
  border-radius: 3px;
  margin: 1.5rem 0 2rem;
  text-align: left;
}
.card-element {
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 0.8rem 1rem;
  background: var(--white);
  margin-bottom: 0.75rem;
  transition: border-color 0.2s;
}
.card-element.StripeElement--focus { border-color: var(--gold); }
.card-errors {
  color: #991b1b;
  font-size: 0.85rem;
  min-height: 1.1rem;
  margin-bottom: 0.75rem;
}

/* ============================================
   FAQ
   ============================================ */
.faq-section,
.terms-section {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 1.25rem 5rem;
}
.faq-section h2,
.terms-section h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--black);
}
.faq-list { margin-top: 2rem; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item h3 {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: var(--black);
}
.faq-item p { font-size: 0.9rem; color: var(--mid-grey); line-height: 1.7; }

/* ============================================
   TERMS & CONSENT
   ============================================ */
.terms-intro {
  font-size: 0.95rem;
  color: var(--mid-grey);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.terms-list { margin-top: 2rem; }
.terms-item {
  border-left: 3px solid var(--gold);
  padding: 0.5rem 0 0.5rem 1.25rem;
  margin-bottom: 1.75rem;
}
.terms-item h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: var(--black);
}
.terms-item p { font-size: 0.9rem; color: var(--mid-grey); line-height: 1.7; }
.terms-item p + p { margin-top: 0.75rem; }
.tc-subheading {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.15rem;
}
.tc-company {
  font-size: 0.9rem;
  color: var(--mid-grey);
  margin-bottom: 0.5rem;
}
.tc-callout {
  border: 2px solid var(--gold);
  border-radius: 4px;
  background: #fdfaf1;
  padding: 1.25rem 1.5rem;
}
.tc-callout p { font-size: 0.9rem; color: var(--black); line-height: 1.7; }
.tc-version {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--mid-grey);
}

/* ============================================
   ADMIN
   ============================================ */
.admin-login-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
}
.login-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem;
  width: 100%;
  max-width: 400px;
}
.login-card h2 { margin-bottom: 1.75rem; }
.admin-header {
  background: var(--black);
  color: var(--white);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.admin-header h1 { font-size: 1.1rem; font-weight: 700; }
.admin-main {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1.5rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.5rem;
  text-align: center;
}
.stat-card h3 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--mid-grey);
  margin-bottom: 0.6rem;
  font-weight: 600;
}
.stat-number { font-size: 2.1rem; font-weight: 800; color: var(--black); }
.admin-section { margin-bottom: 3rem; }
.admin-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.admin-section h2 { font-size: 1.1rem; }
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.admin-table th {
  background: var(--black);
  color: var(--white);
  padding: 0.7rem 1rem;
  text-align: left;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}
.admin-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  color: #333;
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--off-white); }
.badge {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge-paid    { background: #d1fae5; color: #065f46; }
.badge-unpaid  { background: #fef3c7; color: #92400e; }
.badge-confirmed { background: #d1fae5; color: #065f46; }
.badge-pending   { background: #fef3c7; color: #92400e; }
.badge-cancelled { background: #fee2e2; color: #991b1b; }

.consent-pill {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.consent-yes { background: #d1fae5; color: #065f46; }
.consent-no  { background: #fee2e2; color: #991b1b; }
.consent-na  { background: #f1f5f9; color: #64748b; }

.btn-outline {
  background: transparent;
  color: var(--black);
  border-color: var(--border);
}
.btn-outline:hover { border-color: var(--black); background: var(--off-white); }

/* Filter bar */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1rem;
  align-items: center;
}
.filter-bar input[type="text"],
.filter-bar select {
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 0.85rem;
  font-family: inherit;
}
.filter-bar input[type="text"] { min-width: 240px; flex: 1 1 240px; }

.table-scroll { overflow-x: auto; }
.admin-table .center { text-align: center; }
.empty-row { text-align: center; color: var(--mid-grey); font-style: italic; padding: 1.5rem; }
.muted-count { color: var(--mid-grey); font-size: 0.85rem; }

/* Inline notes editing */
.notes-cell { min-width: 200px; }
.js-notes {
  width: 100%;
  min-width: 160px;
  padding: 0.4rem 0.5rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 0.82rem;
  font-family: inherit;
}
.notes-status { font-size: 0.7rem; font-weight: 700; }
.notes-status.saved { color: #065f46; }
.notes-status.error { color: #991b1b; }

/* Workshop settings cards */
.workshop-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.workshop-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.5rem;
}
.workshop-card.inactive { opacity: 0.7; }
.workshop-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.workshop-card-head h3 { font-size: 1rem; }
.workshop-card-meta { list-style: none; padding: 0; margin: 0 0 1.25rem; font-size: 0.85rem; }
.workshop-card-meta li { padding: 0.2rem 0; color: #333; }
.workshop-card-meta strong { color: var(--black); }
.workshop-card-actions { display: flex; gap: 0.5rem; }

/* Booking detail */
.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.detail-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.5rem;
}
.detail-block h2 { font-size: 1rem; margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--gold); }
.detail-block dl { margin: 0; }
.detail-block dt { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--mid-grey); font-weight: 600; margin-top: 0.75rem; }
.detail-block dt:first-child { margin-top: 0; }
.detail-block dd { margin: 0.2rem 0 0; color: #222; font-size: 0.9rem; }

.form-narrow { max-width: 560px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 700px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 66px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 1rem 1.5rem; gap: 0.5rem; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .hero { padding: 4rem 1.5rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; }
  .pricing-card { padding: 2rem 1.5rem; }
  .notice-box { padding: 1.5rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .admin-table { font-size: 0.78rem; }
  .admin-table th, .admin-table td { padding: 0.6rem 0.7rem; }
}
