/* Funny Guys - shared global styles */

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

:root {
  --blue-950: #080f1a;
  --blue-900: #0f1d2e;
  --blue-800: #162b45;
  --blue-700: #1e3a5c;
  --blue-600: #264d78;
  --blue-500: #3170a8;
  --blue-400: #4a90cc;
  --blue-300: #7ab3e0;
  --blue-100: #daeaf8;
  --blue-50:  #eef5fb;
  /* Brand red (confirmed by Des). Single source of truth. */
  --red:       #ff0c34;
  --red-light: #ff3a57;
  --red-dark:  #d10028;
  --red-pale:  rgba(255,12,52,0.08);
  --white: #ffffff;
  --gray-50:  #f7f8fa;
  --gray-100: #eef0f4;
  --gray-200: #dde1e8;
  --gray-300: #c0c6d0;
  --gray-400: #8a92a1;
  --gray-500: #646d7d;
  --gray-600: #4a5264;
  --gray-700: #343b4a;
  --gray-800: #1f2533;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Sora', sans-serif;
  color: var(--gray-800);
  background: var(--gray-50);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.6;
}
h1, h2, h3, h4 { font-family: 'Fraunces', serif; font-weight: 400; letter-spacing: -0.01em; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* PREVIEW BANNER (was proto-banner) */
.proto-banner { background: var(--blue-950); color: rgba(255,255,255,0.7); text-align: center; padding: 14px 20px; font-size: 14px; font-family: 'Sora', sans-serif; }
.proto-banner strong { color: #d4a574; font-weight: 500; }
.proto-banner .sep { color: rgba(255,255,255,0.35); margin: 0 10px; }

/* NAV */
.nav { background: var(--blue-900); padding: 0 4%; display: flex; align-items: center; justify-content: space-between; height: 124px; position: sticky; top: 0; z-index: 100; }
.nav-logo { display: inline-flex; align-items: center; }
.nav-logo img { height: 108px; width: auto; display: block; }
.nav-links { display: flex; gap: 30px; }
.nav-links li a { color: var(--white); font-size: 17px; font-weight: 500; letter-spacing: 0.2px; transition: color 0.2s; white-space: nowrap; }
.nav-links li a:hover,
.nav-links li.current-menu-item > a,
.nav-links li.current_page_item > a { color: var(--red-light); }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-mc-cta { color: rgba(255,255,255,0.55); font-size: 13px; font-weight: 500; padding: 8px 14px; border: 1px solid rgba(255,255,255,0.15); border-radius: 6px; transition: all 0.2s; cursor: pointer; background: transparent; font-family: 'Sora', sans-serif; display: inline-flex; align-items: center; gap: 6px; }
.nav-mc-cta:hover { color: #fff; border-color: rgba(255,255,255,0.3); }
.nav-phone { color: var(--white); font-weight: 700; font-size: 18px; display: flex; align-items: center; gap: 8px; }
.nav-phone svg { width: 18px; height: 18px; color: var(--red-light); }
.nav-cta { background: var(--red); color: var(--white); padding: 16px 38px; border-radius: 6px; font-size: 17px; font-weight: 600; border: none; cursor: pointer; font-family: 'Sora', sans-serif; transition: all 0.2s; display: inline-flex; align-items: center; }
.nav-cta:hover { background: var(--red-light); }
.nav-hamburger { display: none; background: transparent; border: 1px solid rgba(255,255,255,0.15); border-radius: 6px; padding: 10px; cursor: pointer; color: #fff; }
.nav-hamburger svg { width: 22px; height: 22px; }
.nav-mobile-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--blue-900); z-index: 200; padding: 96px 8% 40px; flex-direction: column; }
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a { color: rgba(255,255,255,0.85); font-size: 22px; font-family: 'Fraunces', serif; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.nav-mobile-menu .mob-phone { color: #fff; font-weight: 700; font-size: 22px; margin-top: 32px; display: flex; align-items: center; gap: 10px; }
.nav-mobile-menu .mob-phone svg { color: var(--red-light); width: 22px; height: 22px; }
.nav-mobile-menu .mob-cta { background: var(--red); color: #fff; padding: 16px; border-radius: 6px; font-weight: 600; text-align: center; margin-top: 20px; display: block; }
.nav-mobile-close { position: absolute; top: 28px; right: 5%; background: transparent; border: none; color: #fff; font-size: 28px; cursor: pointer; }

/* Buttons (shared) */
.btn-red { background: var(--red); color: var(--white); padding: 17px 40px; border-radius: 6px; font-size: 16px; font-weight: 600; border: none; cursor: pointer; font-family: 'Sora', sans-serif; transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px; text-decoration: none; }
.btn-red:hover { background: var(--red-light); transform: translateY(-1px); }
.btn-outline-w { background: transparent; color: var(--white); padding: 17px 36px; border-radius: 6px; font-size: 16px; font-weight: 500; border: 1.5px solid rgba(255,255,255,0.25); cursor: pointer; font-family: 'Sora', sans-serif; transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px; text-decoration: none; }
.btn-outline-w:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }

/* Section tag */
.stag { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 2.5px; color: var(--red); margin-bottom: 14px; display: inline-block; }

/* PHONE CTA */
.phone-cta { padding: 40px 4%; background: var(--gray-50); }
.phone-cta-inner { max-width: 1240px; margin: 0 auto; border-radius: 16px; background: var(--blue-900); padding: 64px 72px; display: flex; align-items: center; justify-content: space-between; position: relative; overflow: hidden; gap: 40px; flex-wrap: wrap; }
.phone-cta-inner::before { content: ''; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.04); }
.phone-cta-left h2 { font-size: 34px; color: #fff; margin-bottom: 10px; letter-spacing: -0.5px; line-height: 1.1; }
.phone-cta-left p { color: rgba(255,255,255,0.55); font-size: 16px; line-height: 1.6; max-width: 480px; }
.phone-cta-right { display: flex; align-items: center; gap: 20px; position: relative; z-index: 2; flex-wrap: wrap; }
.phone-cta-num { font-family: 'Fraunces', serif; font-size: 36px; color: var(--white); letter-spacing: -0.5px; white-space: nowrap; }
.phone-cta-or { color: rgba(255,255,255,0.25); font-size: 15px; }

/* FOOTER */
.footer { background: var(--blue-950); padding: 56px 4% 36px; }
.footer-inner { max-width: 1240px; margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-start; gap: 48px; flex-wrap: wrap; }
.footer-brand img { height: 80px; margin-bottom: 14px; }
.footer-brand p { color: rgba(255,255,255,0.4); font-size: 14px; line-height: 1.7; max-width: 280px; }
.footer-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.fc h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.35); font-weight: 700; margin-bottom: 18px; font-family: 'Sora', sans-serif; }
.fc a { display: block; font-size: 15px; color: rgba(255,255,255,0.6); margin-bottom: 12px; transition: color 0.2s; }
.fc a:hover { color: #fff; }
.footer-bottom { max-width: 1240px; margin: 36px auto 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.3); }

/* Breadcrumb (used on inner pages) */
.breadcrumb { background: var(--white); padding: 18px 4%; border-bottom: 1px solid var(--gray-200); }
.breadcrumb-inner { max-width: 1240px; margin: 0 auto; font-size: 13px; color: var(--gray-500); }
.breadcrumb-inner a { color: var(--gray-500); transition: color 0.2s; }
.breadcrumb-inner a:hover { color: var(--blue-700); }
.breadcrumb-inner .sep { margin: 0 8px; color: var(--gray-300); }
.breadcrumb-inner .cur { color: var(--gray-800); }

/* Trust carousel logo styling (homepage) */
.trust-logo { height: 40px; width: auto; flex-shrink: 0; filter: grayscale(100%) brightness(0.4); opacity: 0.55; transition: opacity 0.3s, filter 0.3s; }
.trust-logo:hover { opacity: 1; filter: none; }

/* Compact enquiry strip (top of inner pages) */
.quick-enquire { padding: 28px 4% 40px; background: var(--gray-50); }
.quick-enquire-inner { max-width: 1240px; margin: 0 auto; background: var(--blue-900); border-radius: 16px; padding: 36px 40px; display: grid; grid-template-columns: 0.9fr 1.4fr; gap: 32px; align-items: center; position: relative; overflow: hidden; }
.quick-enquire-inner::before { content: ''; position: absolute; right: -100px; top: -100px; width: 280px; height: 280px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.05); }
.quick-enquire-left h2 { font-size: 28px; color: #fff; line-height: 1.15; letter-spacing: -0.5px; margin-bottom: 8px; }
.quick-enquire-left h2 em { color: var(--red-light); font-style: italic; }
.quick-enquire-left p { color: rgba(255,255,255,0.55); font-size: 14px; line-height: 1.5; }
.quick-enquire form { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; position: relative; z-index: 2; }
.quick-enquire form input, .quick-enquire form textarea, .quick-enquire form select { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; padding: 12px 14px; color: #fff; font-size: 14px; font-family: 'Sora', sans-serif; outline: none; transition: all 0.2s; }
.quick-enquire form select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'/%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 34px; }
.quick-enquire form select option { color: #1f2533; }
.quick-enquire form input:focus, .quick-enquire form textarea:focus, .quick-enquire form select:focus { border-color: var(--red-light); background: rgba(255,255,255,0.13); }
.quick-enquire form input::placeholder, .quick-enquire form textarea::placeholder { color: rgba(255,255,255,0.4); }
.quick-enquire form textarea { grid-column: 1 / -1; min-height: 64px; resize: vertical; }
.quick-enquire form button { grid-column: 1 / -1; padding: 13px 18px; background: var(--red); color: #fff; border: none; border-radius: 8px; font-size: 15px; font-weight: 600; font-family: 'Sora', sans-serif; cursor: pointer; transition: background 0.2s; }
.quick-enquire form button:hover { background: var(--red-light); }
.quick-enquire .preview-toast { grid-column: 1 / -1; background: rgba(255,255,255,0.95); border-color: #f5c98a; color: #6b3a00; }

@media (max-width: 900px) {
  .quick-enquire-inner { grid-template-columns: 1fr; gap: 24px; padding: 28px 24px; }
  .quick-enquire form { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .quick-enquire form { grid-template-columns: 1fr; }
}

/* Preview-mode form toast (used by all forms) */
.preview-toast { display: none; padding: 18px 22px; background: #fff4e5; border: 1px solid #f5c98a; border-radius: 8px; color: #6b3a00; font-size: 14px; line-height: 1.5; margin-top: 16px; }
.preview-toast.show { display: block; }
.preview-toast strong { font-weight: 600; }

/* Shared responsive */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-mc-cta { display: none; }
  .nav-hamburger { display: inline-flex; align-items: center; justify-content: center; }
  .footer-cols { gap: 32px; }
  .phone-cta-inner { padding: 48px 32px; }
  .phone-cta-left h2 { font-size: 28px; }
  .phone-cta-num { font-size: 28px; }
}

@media (max-width: 700px) {
  .nav { height: 72px; padding: 0 5%; }
  .nav-logo img { height: 60px; }
  .nav-phone { display: none; }
  .nav-cta { display: none; }
  .phone-cta-inner { padding: 36px 24px; flex-direction: column; align-items: flex-start; text-align: left; }
  .phone-cta-right { width: 100%; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

/* ===== src/components/ComedianCard.astro ===== */
.c-card { border-radius: 14px; overflow: hidden; transition: transform 0.35s, box-shadow 0.35s; position: relative; background: var(--gray-100); display: block; color: inherit; }
.c-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(15,29,46,0.12); }
.c-card-img { aspect-ratio: 3 / 4; position: relative; overflow: hidden; background: var(--blue-900); }
.c-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.c-card-img .ph { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; }
.c-card-img .ph-ini { font-family: 'Fraunces', serif; font-size: 48px; color: rgba(255,255,255,0.18); }
.c-card-overlay-link { position: absolute; inset: 0; z-index: 1; text-decoration: none; }
.c-card-overlay-link:focus-visible { outline: 3px solid var(--red-light); outline-offset: -4px; }
.c-card-hover { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,29,46,0.96) 0%, rgba(15,29,46,0.5) 45%, transparent 75%); opacity: 0; transition: opacity 0.35s; display: flex; flex-direction: column; justify-content: flex-end; padding: 18px; z-index: 2; pointer-events: none; }
.c-card:hover .c-card-hover,
.c-card:focus-within .c-card-hover { opacity: 1; pointer-events: auto; }
.c-card-hover-btns { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; }
.hb { padding: 10px 6px; border-radius: 6px; font-size: 11px; font-weight: 700; font-family: 'Sora', sans-serif; letter-spacing: 0.5px; text-transform: uppercase; display: flex; align-items: center; justify-content: center; border: none; cursor: pointer; transition: background 0.2s, transform 0.2s; }
.hb:focus-visible { outline: 2px solid var(--red-light); outline-offset: 2px; }
.hb-bio { background: rgba(255,255,255,0.15); color: #fff; backdrop-filter: blur(8px); }
.hb-bio:hover { background: rgba(255,255,255,0.25); }
.hb-watch { background: rgba(255,255,255,0.15); color: #fff; backdrop-filter: blur(8px); }
.hb-watch:hover { background: rgba(255,255,255,0.25); }
.hb-enquire { background: var(--red); color: #fff; }
.hb-enquire:hover { background: var(--red-light); }
.c-card-info { padding: 14px 16px 18px; display: block; color: inherit; text-decoration: none; position: relative; z-index: 3; }
.c-card-info:hover .c-card-name { color: var(--red); }
.c-card-name { font-family: 'Fraunces', serif; font-size: 20px; color: var(--blue-900); margin-bottom: 2px; line-height: 1.1; transition: color 0.2s; }
.c-card-role { font-size: 13px; color: var(--gray-400); font-weight: 500; letter-spacing: 0.2px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.c-card-badge { position: absolute; top: 12px; left: 12px; background: var(--red); color: #fff; font-size: 10px; font-weight: 700; padding: 6px 14px; border-radius: 6px; letter-spacing: 1.5px; text-transform: uppercase; z-index: 3; pointer-events: none; }
.gp-a { background: linear-gradient(135deg, #162b45, #3170a8); }
.gp-b { background: linear-gradient(135deg, #1e3a5c, #264d78); }
.gp-c { background: linear-gradient(135deg, #0f1d2e, #1e3a5c); }
.gp-d { background: linear-gradient(135deg, #162b45, #264d78); }
.gp-e { background: linear-gradient(135deg, #0c1929, #162b45); }
.gp-f { background: linear-gradient(135deg, #132741, #3170a8); }
.gp-g { background: linear-gradient(135deg, #1a3050, #264d78); }
.gp-h { background: linear-gradient(135deg, #0f1d2e, #264d78); }

/* On touch / non-hover devices, surface the buttons inline below the image so they remain reachable. */
@media (hover: none) {
  .c-card-hover { position: static; inset: auto; opacity: 1; pointer-events: auto; background: var(--blue-900); padding: 12px; }
  .c-card-hover-btns { grid-template-columns: 1fr 1fr 1fr; }
}

/* MODAL */
.c-modal { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; transition: opacity 0.25s ease; }
.c-modal[hidden] { display: none; }
.c-modal.is-open { opacity: 1; }
.c-modal-overlay { position: absolute; inset: 0; background: rgba(8, 15, 26, 0.78); backdrop-filter: blur(4px); }
.c-modal-dialog { position: relative; background: #fff; border-radius: 16px; max-width: 1080px; width: 100%; max-height: calc(100vh - 48px); overflow: hidden; box-shadow: 0 32px 80px rgba(0,0,0,0.4); transform: translateY(12px); transition: transform 0.25s ease; display: flex; flex-direction: column; }
.c-modal.is-open .c-modal-dialog { transform: translateY(0); }
.c-modal-close { position: absolute; top: 16px; right: 16px; z-index: 10; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.9); border: 1px solid var(--gray-200); color: var(--blue-900); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s, transform 0.2s; }
.c-modal-close:hover { background: #fff; transform: scale(1.05); }
.c-modal-close:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }
.c-modal-grid { display: grid; grid-template-columns: 5fr 7fr; min-height: 0; overflow: hidden; }
.c-modal-media { position: relative; background: var(--blue-900); min-height: 360px; }
.c-modal-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.c-modal-media .ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.c-modal-media .ph-ini { font-family: 'Fraunces', serif; font-size: 80px; color: rgba(255,255,255,0.18); }
.c-modal-meta-tag { position: absolute; top: 16px; left: 16px; background: var(--red); color: #fff; font-size: 10px; font-weight: 700; padding: 6px 14px; border-radius: 6px; letter-spacing: 1.5px; text-transform: uppercase; }
.c-modal-body { padding: 40px 44px; overflow-y: auto; max-height: calc(100vh - 48px); }
.c-modal-name { font-family: 'Fraunces', serif; font-size: 38px; line-height: 1.05; letter-spacing: -0.5px; color: var(--blue-900); margin: 0 0 8px; }
.c-modal-tagline { font-size: 16px; color: var(--gray-600); line-height: 1.5; margin: 0 0 28px; font-weight: 400; }
.c-modal-section { padding: 24px 0; border-top: 1px solid var(--gray-200); scroll-margin-top: 16px; }
.c-modal-section:first-of-type { border-top: none; padding-top: 0; }
.c-modal-section .stag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--red); margin-bottom: 12px; }
.c-modal-bio p { font-size: 15px; line-height: 1.65; color: var(--gray-700); margin: 0 0 12px; }
.c-modal-bio p:last-child { margin-bottom: 0; }
.c-modal-readmore { display: inline-block; margin-top: 12px; color: var(--red); font-weight: 600; font-size: 14px; text-decoration: none; }
.c-modal-readmore:hover { text-decoration: underline; }
.c-modal-video { aspect-ratio: 16 / 9; border-radius: 10px; overflow: hidden; background: var(--blue-900); position: relative; }
.c-modal-video iframe { width: 100%; height: 100%; border: 0; display: block; }
.c-modal-video-soon { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; background: linear-gradient(135deg, #0f1d2e, #1e3a5c); color: rgba(255,255,255,0.85); font-size: 13px; letter-spacing: 1px; text-transform: uppercase; font-weight: 600; }
.c-modal-video-soon svg { width: 36px; height: 36px; color: var(--red-light); }
.c-modal-enquire-h { font-family: 'Fraunces', serif; font-size: 22px; color: var(--blue-900); margin: 0 0 16px; }
.c-modal-form { display: flex; flex-direction: column; gap: 10px; }
.c-mf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.c-modal-form input,
.c-modal-form textarea,
.c-modal-form select { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 8px; padding: 12px 14px; font-size: 14px; font-family: 'Sora', sans-serif; color: var(--gray-800); outline: none; transition: border-color 0.2s, background 0.2s; width: 100%; }
.c-modal-form select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23646d7d' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'/%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 34px; }
.c-modal-form input:focus,
.c-modal-form textarea:focus,
.c-modal-form select:focus { border-color: var(--red); background: #fff; }
.c-modal-form textarea { min-height: 90px; resize: vertical; }
.c-mf-submit { background: var(--red); color: #fff; border: none; border-radius: 6px; padding: 14px; font-size: 14px; font-weight: 600; font-family: 'Sora', sans-serif; cursor: pointer; transition: background 0.2s; margin-top: 4px; }
.c-mf-submit:hover { background: var(--red-light); }
.c-mf-toast { display: none; background: var(--blue-50); border: 1px solid var(--blue-100); color: var(--blue-700); padding: 14px 16px; border-radius: 8px; font-size: 13px; line-height: 1.5; margin-top: 10px; }
.c-mf-toast.show { display: block; }
.c-mf-toast a { color: var(--red); font-weight: 600; }
.c-modal-callus { font-size: 13px; color: var(--gray-500); margin: 14px 0 0; }
.c-modal-callus a { color: var(--blue-900); font-weight: 600; text-decoration: none; }
.c-modal-callus a:hover { color: var(--red); }
.c-modal-profile-link { display: inline-block; margin-top: 24px; padding: 12px 0; color: var(--blue-900); font-weight: 600; font-size: 15px; text-decoration: none; border-top: 1px solid var(--gray-200); width: 100%; }
.c-modal-profile-link:hover { color: var(--red); }

@media (max-width: 860px) {
  .c-modal { padding: 12px; }
  .c-modal-grid { grid-template-columns: 1fr; }
  .c-modal-media { min-height: 280px; max-height: 320px; }
  .c-modal-body { padding: 28px 24px; max-height: none; }
  .c-modal-name { font-size: 30px; }
  .c-mf-row { grid-template-columns: 1fr; }
  .c-modal-dialog { max-height: calc(100vh - 24px); overflow-y: auto; }
}

/* ===== src/components/EnquiryForm.astro ===== */
.form-section { padding: 100px 4%; background: var(--blue-900); }
.form-section-light { background: var(--gray-50); }
.form-inner { max-width: 760px; margin: 0 auto; }
.form-header { text-align: center; margin-bottom: 48px; }
.form-header h2 { font-size: 44px; color: #fff; letter-spacing: -1px; margin-bottom: 12px; line-height: 1.1; }
.form-section-light .form-header h2 { color: var(--blue-900); }
.form-header h2 em { font-style: italic; color: rgba(255,255,255,0.5); }
.form-section-light .form-header h2 em { color: var(--red); }
.form-header p { color: rgba(255,255,255,0.5); font-size: 17px; line-height: 1.5; }
.form-section-light .form-header p { color: var(--gray-500); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg { display: flex; flex-direction: column; gap: 6px; }
.fg.full { grid-column: 1 / -1; }
.fg label { font-size: 13px; color: rgba(255,255,255,0.4); font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; }
.form-section-light .fg label { color: var(--gray-500); }
.fg input, .fg select, .fg textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 14px 16px;
  color: #fff;
  font-size: 15px;
  font-family: 'Sora', sans-serif;
  outline: none;
  transition: all 0.2s;
}
.form-section-light .fg input,
.form-section-light .fg select,
.form-section-light .fg textarea {
  background: #fff;
  border-color: var(--gray-200);
  color: var(--gray-800);
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--red-light); background: rgba(255,255,255,0.1); }
.form-section-light .fg input:focus,
.form-section-light .fg select:focus,
.form-section-light .fg textarea:focus { background: #fff; border-color: var(--red); }
.fg input::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-section-light .fg input::placeholder,
.form-section-light .fg textarea::placeholder { color: var(--gray-400); }
.fg textarea { min-height: 120px; resize: vertical; }
.fg select { appearance: none; cursor: pointer; }
.form-submit { grid-column: 1 / -1; margin-top: 12px; }
.form-submit button {
  width: 100%;
  padding: 18px;
  border-radius: 6px;
  background: var(--red);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: 'Sora', sans-serif;
  transition: all 0.2s;
}
.form-submit button:hover { background: var(--red-light); }
@media (max-width: 700px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-section { padding: 64px 5%; }
  .form-header h2 { font-size: 32px; }
}

/* Standalone form toast (success/error feedback) */
.fg-toast{display:none;margin-top:14px;padding:14px 16px;border-radius:8px;background:var(--blue-50);color:var(--blue-900);font-size:14px;line-height:1.5;}
.fg-toast.show{display:block;}

/* ===== src/components/SidebarEnquiry.astro ===== */
.side-enquire { background: var(--blue-900); border-radius: 16px; padding: 28px 26px; position: relative; overflow: hidden; }
.side-enquire-h { font-family: 'Fraunces', serif; font-size: 24px; color: #fff; line-height: 1.15; letter-spacing: -0.3px; margin-bottom: 8px; }
.side-enquire-sub { color: rgba(255,255,255,0.55); font-size: 14px; line-height: 1.5; margin-bottom: 18px; }
.side-enquire-chip { font-size: 13px; color: #fff; background: rgba(255,12,52,0.18); border: 1px solid rgba(255,12,52,0.4); border-radius: 8px; padding: 8px 12px; margin-bottom: 14px; }
.side-enquire-chip strong { font-weight: 600; }
.side-enquire form { display: flex; flex-direction: column; gap: 10px; }
.side-enquire input, .side-enquire select, .side-enquire textarea {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 8px;
  padding: 12px 14px; color: #fff; font-size: 14px; font-family: 'Sora', sans-serif; outline: none; transition: all 0.2s; width: 100%;
}
.side-enquire select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'/%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 34px; }
.side-enquire select option { color: #1f2533; }
.side-enquire input:focus, .side-enquire select:focus, .side-enquire textarea:focus { border-color: var(--red-light); background: rgba(255,255,255,0.13); }
.side-enquire input::placeholder, .side-enquire textarea::placeholder { color: rgba(255,255,255,0.4); }
.side-enquire textarea { min-height: 84px; resize: vertical; }
.side-enquire button { padding: 14px 18px; background: var(--red); color: #fff; border: none; border-radius: 8px; font-size: 15px; font-weight: 600; font-family: 'Sora', sans-serif; cursor: pointer; transition: background 0.2s; }
.side-enquire button:hover { background: var(--red-light); }
.side-enquire .preview-toast { background: rgba(255,255,255,0.95); border-color: #f5c98a; color: #6b3a00; }

/* ===== src/pages/index.astro ===== */
/* HERO */
.hero { position: relative; background: var(--blue-900); overflow: hidden; padding: 100px 4% 120px; }
.hero-bg { position: absolute; inset: 0; opacity: 1; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,29,46,0.85) 0%, rgba(15,29,46,0.78) 50%, rgba(15,29,46,0.7) 100%); }
.hero-bg-glow { position: absolute; left: 50%; top: 50%; width: 700px; height: 700px; transform: translate(-50%, -50%); background: radial-gradient(circle, rgba(255,12,52,0.35) 0%, transparent 65%); pointer-events: none; z-index: 1; }
.hero-inner { position: relative; z-index: 2; max-width: 1400px; margin: 0 auto; min-height: 640px; display: flex; align-items: center; justify-content: center; }
.hero-center { text-align: center; max-width: 780px; position: relative; z-index: 3; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 28px; padding: 10px 22px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 100px; }
.hero-eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red-light); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero-eyebrow-text { font-size: 16px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: #fff; }
.hero h1 { color: #fff; font-size: 94px; line-height: 1.0; letter-spacing: -2.5px; margin-bottom: 28px; font-weight: 700; }
.hero h1 .hl-emphasis { color: var(--red); font-style: italic; font-weight: 700; }
.hero-sub { color: rgba(255,255,255,0.75); font-size: 21px; line-height: 1.55; margin-bottom: 40px; max-width: 560px; margin-left: auto; margin-right: auto; font-weight: 300; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { font-family: 'Fraunces', serif; font-size: 18px; color: rgba(255,255,255,0.6); font-style: italic; letter-spacing: 0.01em; }
.hero-stats strong { color: #fff; font-style: normal; font-weight: 400; }

/* Floating comedian cards around hero - bigger, cropped tight to faces */
.hero-float { position: absolute; border-radius: 16px; overflow: hidden; box-shadow: 0 18px 52px rgba(0,0,0,0.45); transition: transform 0.4s; z-index: 2; display: block; }
.hero-float img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; display: block; }
.hero-float:hover { transform: translateY(-5px) scale(1.03); }
.hero-float-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 14px 14px 12px; background: linear-gradient(to top, rgba(15,29,46,0.96), transparent); }
.hero-float-label .n { font-family: 'Fraunces', serif; font-size: 16px; color: #fff; line-height: 1.1; }
.hero-float-1 { width: 200px; height: 248px; top: 36px; left: 36px; transform: rotate(-4deg); }
.hero-float-2 { width: 200px; height: 248px; top: 56px; right: 40px; transform: rotate(3deg); }
.hero-float-3 { width: 200px; height: 248px; bottom: 24px; left: 24px; transform: rotate(2deg); }
.hero-float-4 { width: 200px; height: 248px; bottom: 16px; right: 30px; transform: rotate(-3deg); }
/* The inner pair sits below cards 1 and 2 rather than across their bottom edge.
   At top: 215/245 they overlapped the label band of the card above (cards 1 and 2
   end at 284px and 304px), and because every float shares z-index 2, paint order
   is DOM order - so card 6 covered the first 40px of card 2's name, rendering
   "Mick Molloy" as "Molloy". Clearing the label bands fixes it for any name
   length, where a z-index swap would only work for the names we happen to have. */
.hero-float-5 { width: 188px; height: 236px; top: 296px; left: 200px; transform: rotate(-2deg); display: none; }
.hero-float-6 { width: 188px; height: 236px; top: 316px; right: 200px; transform: rotate(4deg); display: none; }
/* The inner pair needs the full 1400px .hero-inner to clear the 780px text
   column: their inner edge lands at 388px while the headline's widest line starts
   at 398px once .hero-inner is capped. Below ~1522px the container is still
   shrinking, so at the old 1450px breakpoint they cut into the copy. */
@media (min-width: 1550px) {
  .hero-float-5, .hero-float-6 { display: block; }
}

/* The floats sit at fixed left/right offsets, so once the viewport drops below
   about 1300px they overlap the centred headline. Hide them there and let the
   face strip take over. This breakpoint and the face-strip one below must stay
   in step, or the band between them shows no comedian faces at all. */
@media (max-width: 1300px) {
  .hero-float { display: none; }
}

/* Mobile face strip - keeps recognisable faces visible on small screens */
.hero-faces-mobile { display: none; }
@media (max-width: 1300px) {
  /* .hero-inner is a flex row, so the strip would otherwise be laid out BESIDE
     the headline and squash it to a third of the available width. Stack them. */
  .hero-inner { flex-direction: column; justify-content: center; }
  .hero-center { width: 100%; }
  .hero-faces-mobile {
    display: flex; gap: 12px; overflow-x: auto; -webkit-overflow-scrolling: touch;
    align-self: stretch; margin: 36px -5% 0; padding: 4px 5% 8px; scroll-snap-type: x mandatory;
  }
  .hero-faces-mobile::-webkit-scrollbar { display: none; }
  .hero-face-m { flex: 0 0 auto; width: 116px; scroll-snap-align: start; }
  .hero-face-m img { width: 116px; height: 144px; object-fit: cover; object-position: center 18%; border-radius: 12px; box-shadow: 0 10px 28px rgba(0,0,0,0.4); display: block; }
  .hero-face-m-name { display: block; margin-top: 8px; font-family: 'Fraunces', serif; font-size: 13px; color: rgba(255,255,255,0.85); line-height: 1.1; }
}

/* TRUST */
.trust { padding: 48px 0; background: #fff; border-bottom: 1px solid var(--gray-200); overflow: hidden; }
.trust-wrap { max-width: 1240px; margin: 0 auto; padding: 0 4%; }
.trust-label { text-align: center; font-size: 13px; color: var(--gray-500); letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; margin-bottom: 32px; }
.trust-track { display: flex; gap: 56px; align-items: center; animation: scroll 30s linear infinite; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.trust-item { font-size: 18px; font-weight: 700; color: var(--blue-900); white-space: nowrap; letter-spacing: 1px; text-transform: uppercase; opacity: 0.55; transition: opacity 0.3s; }
.trust-item:hover { opacity: 1; }
.trust-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--red); opacity: 0.4; flex-shrink: 0; }

/* COMEDIANS */
.comedians { padding: 100px 4%; background: #fff; }
.comedians-inner { max-width: 1240px; margin: 0 auto; }
.comedians-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; gap: 40px; flex-wrap: wrap; }
.comedians-header-left { max-width: 640px; }
.comedians-header-left h2 { font-size: 48px; letter-spacing: -1px; color: var(--blue-900); line-height: 1.1; margin-bottom: 14px; }
.comedians-header-left h2 em { font-style: italic; color: var(--red); }
.comedians-header-left p { color: var(--gray-500); font-size: 17px; line-height: 1.6; }
.lineup-cta { display: flex; align-items: center; gap: 22px; margin-top: 26px; flex-wrap: wrap; }
.lineup-cta-phone { display: inline-flex; align-items: center; gap: 9px; font-family: 'Fraunces', serif; font-size: 24px; color: var(--blue-900); letter-spacing: -0.3px; transition: color 0.2s; }
.lineup-cta-phone svg { width: 20px; height: 20px; color: var(--red); }
.lineup-cta-phone:hover { color: var(--red); }
.comedians-pill { padding: 10px 22px; border-radius: 100px; background: var(--blue-50); color: var(--blue-700); font-size: 13px; font-weight: 600; }
.comedians-body { display: grid; grid-template-columns: 1fr 320px; gap: 32px; align-items: start; }
.comedian-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.comedians-aside { align-self: stretch; } /* full column height so the form can travel */
.comedians-aside-sticky { position: sticky; top: 144px; }
.comedians-more { text-align: center; margin-top: 48px; }
.comedians-more a { font-size: 16px; font-weight: 600; color: var(--blue-900); border-bottom: 2px solid var(--blue-900); padding-bottom: 3px; transition: all 0.2s; }
.comedians-more a:hover { color: var(--red); border-color: var(--red); }

/* EVENT TILES */
.events { padding: 100px 4%; background: #fff; }
.events-inner { max-width: 1240px; margin: 0 auto; text-align: center; }
.events-inner h2 { font-size: 48px; margin-bottom: 14px; letter-spacing: -1px; color: var(--blue-900); line-height: 1.1; }
.events-inner h2 em { font-style: italic; color: var(--red); }
.events-inner > p { font-size: 17px; color: var(--gray-500); max-width: 560px; margin: 0 auto 56px; line-height: 1.6; }
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ev { border-radius: 14px; overflow: hidden; position: relative; height: 320px; cursor: pointer; transition: transform 0.3s; background: linear-gradient(135deg, #162b45, #264d78); }
.ev:hover { transform: translateY(-4px); }
.ev img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.ev:hover img { transform: scale(1.05); }
.ev-content { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,29,46,0.94), rgba(15,29,46,0.3) 60%); display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; transition: background 0.3s; text-align: left; }
.ev:hover .ev-content { background: linear-gradient(to top, rgba(15,29,46,0.96), rgba(15,29,46,0.5) 60%); }
.ev h3 { font-size: 24px; color: #fff; margin-bottom: 6px; line-height: 1.2; }
.ev p { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.5; }

/* TESTIMONIALS CAROUSEL */
.testi { padding: 100px 4%; background: var(--gray-50); }
.testi-inner { max-width: 1240px; margin: 0 auto; }
.testi-header { text-align: center; margin-bottom: 56px; }
.testi-header h2 { font-size: 48px; letter-spacing: -1px; color: var(--blue-900); line-height: 1.1; }
.testi-header h2 em { font-style: italic; color: var(--red); }
.testi-carousel { position: relative; }
.testi-viewport { overflow: hidden; border-radius: 14px; }
.testi-track { display: flex; gap: 20px; transition: transform 0.5s ease; }
.t-card { background: #fff; border-radius: 14px; padding: 36px 32px; border: 1px solid var(--gray-200); flex: 0 0 calc(50% - 10px); transition: all 0.3s; }
.t-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.t-card-quote { position: relative; margin-bottom: 20px; }
.t-card-quote::before { content: '\201C'; font-family: 'Fraunces', serif; font-size: 64px; color: var(--red); opacity: 0.25; line-height: 1; position: absolute; top: -12px; left: -8px; }
.t-card-text { font-size: 17px; line-height: 1.7; color: var(--gray-700); padding-top: 32px; font-family: 'Fraunces', serif; font-weight: 400; }
.t-card-author { display: flex; align-items: center; gap: 14px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--gray-200); }
.t-card-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--blue-50); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: var(--blue-600); }
.t-card-name { font-size: 15px; font-weight: 600; color: var(--gray-800); }
.t-card-role { font-size: 13px; color: var(--gray-400); }
.testi-controls { display: flex; justify-content: center; align-items: center; gap: 16px; margin-top: 36px; }
.testi-arrow { width: 48px; height: 48px; border-radius: 50%; background: #fff; border: 1.5px solid var(--gray-200); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s; color: var(--blue-900); }
.testi-arrow:hover { border-color: var(--red); color: var(--red); }
.testi-arrow svg { width: 20px; height: 20px; }
.testi-dots { display: flex; gap: 8px; }
.testi-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gray-300); cursor: pointer; transition: all 0.2s; border: none; padding: 0; }
.testi-dot.active { background: var(--red); width: 24px; border-radius: 4px; }

/* ABOUT */
.about { padding: 100px 4%; background: #fff; }
.about-inner { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 5fr 6fr; gap: 80px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img { aspect-ratio: 5 / 6; border-radius: 16px; overflow: hidden; }
.about-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-badge { position: absolute; bottom: 24px; right: -16px; background: var(--red); color: var(--white); border-radius: 12px; padding: 20px 24px; text-align: center; }
.about-badge .num { font-family: 'Fraunces', serif; font-size: 36px; line-height: 1; }
.about-badge .lbl { font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; margin-top: 4px; opacity: 0.85; }
.about-content h2 { font-size: 44px; line-height: 1.1; letter-spacing: -0.8px; margin-bottom: 24px; color: var(--blue-900); }
.about-content h2 em { font-style: italic; color: var(--red); }
.about-content h2.about-lead { font-size: 33px; line-height: 1.3; letter-spacing: -0.4px; }
.about-content p { font-size: 17px; line-height: 1.7; color: var(--gray-600); margin-bottom: 16px; }
.about-quote { margin: 32px 0; padding: 24px 28px; background: var(--blue-50); border-radius: 12px; border-left: 4px solid var(--blue-500); }
.about-quote p { font-family: 'Fraunces', serif; font-size: 22px; color: var(--blue-900); line-height: 1.4; font-style: italic; margin: 0; }

@media (max-width: 1100px) {
  .hero h1 { font-size: 64px; }
  .comedians-body { grid-template-columns: 1fr; gap: 40px; }
  .comedians-aside-sticky { position: static; }
  .comedians-aside { max-width: 480px; margin: 0 auto; width: 100%; }
  .comedian-grid { grid-template-columns: repeat(2, 1fr); }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
}

/* Phone hero. Without this the hero runs about 1.4 screens tall: the 640px
   min-height, the 100/120px padding and a 64px headline all still apply. The
   tall narrow box is also what wrecks the background image, which is portrait
   and loses over half its width to the cover crop. Shrinking the box fixes the
   crop, so no separate mobile image is needed. */
@media (max-width: 640px) {
  .hero { padding: 56px 5% 64px; }
  .hero-inner { min-height: 0; }
  .hero h1 { font-size: 40px; letter-spacing: -1px; margin-bottom: 20px; }
  .hero-eyebrow { margin-bottom: 20px; padding: 8px 16px; }
  .hero-eyebrow-text { font-size: 13px; letter-spacing: 0.5px; }
  .hero-sub { font-size: 17px; margin-bottom: 28px; }
  .hero-actions { gap: 10px; margin-bottom: 28px; }
  .hero-stats { font-size: 16px; }
  .hero-faces-mobile { margin-top: 28px; }
}

@media (max-width: 560px) {
  .comedian-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* ===== src/pages/what-we-do.astro ===== */
/* HERO */
.services-hero { background: var(--white); padding: 80px 4% 96px; border-bottom: 1px solid var(--gray-200); text-align: center; }
.services-hero-inner { max-width: 780px; margin: 0 auto; }
.services-hero h1 { font-size: 64px; line-height: 1.05; letter-spacing: -1.5px; color: var(--blue-900); margin-bottom: 22px; }
.services-hero h1 em { font-style: italic; color: var(--red); }
.services-hero-intro { font-size: 21px; line-height: 1.6; color: var(--gray-600); margin-bottom: 40px; font-weight: 300; }
.services-jumps { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.services-jump { padding: 11px 22px; border-radius: 100px; border: 1.5px solid var(--gray-200); background: var(--white); font-size: 14px; font-weight: 600; color: var(--blue-900); transition: all 0.2s; cursor: pointer; font-family: 'Sora', sans-serif; display: inline-flex; align-items: center; gap: 8px; }
.services-jump:hover { border-color: var(--red); color: var(--red); }
.services-jump-arrow { font-size: 14px; opacity: 0.5; }

/* SERVICE SECTION */
.svc { padding: 96px 4%; border-bottom: 1px solid var(--gray-200); background: var(--white); }
.svc.alt { background: var(--gray-50); }
.svc-inner { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.svc-inner.reverse { direction: rtl; }
.svc-inner.reverse > * { direction: ltr; }
.svc-img { aspect-ratio: 5 / 4; border-radius: 14px; overflow: hidden; background: var(--blue-900); position: relative; }
.svc-img img { width: 100%; height: 100%; object-fit: cover; }

/* Real-photo slot (placeholder until Des supplies the photo - no stock/AI imagery) */
.svc-img-slot { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; text-align: center; padding: 24px; background: linear-gradient(135deg, #0f1d2e, #1e3a5c); position: relative; }
.svc-img-slot::before { content: ''; position: absolute; inset: 16px; border: 2px dashed rgba(255,255,255,0.18); border-radius: 10px; }
.svc-img-slot span { position: relative; font-family: 'Sora', sans-serif; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; color: rgba(255,255,255,0.6); }

/* MC hosting composite - three real host headshots side by side, sized up */
.svc-inner-mc { grid-template-columns: 1.25fr 1fr; }
.svc-img-composite { aspect-ratio: 4 / 3; }
.svc-composite { display: grid; grid-template-columns: repeat(3, 1fr); width: 100%; height: 100%; gap: 2px; }
.svc-composite-cell { position: relative; overflow: hidden; background: var(--blue-900); }
.svc-composite-cell img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
.svc-composite-cell span { position: absolute; top: 10px; left: 0; right: 0; text-align: center; font-family: 'Fraunces', serif; font-size: 13px; color: #fff; text-shadow: 0 1px 6px rgba(0,0,0,0.85); }
.svc-img-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(15,29,46,0.92), transparent 60%); padding: 40px 28px 24px; color: #fff; display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; }
.svc-img-overlay-left .l { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.5); font-weight: 600; }
.svc-img-overlay-left .n { font-family: 'Fraunces', serif; font-size: 20px; color: #fff; line-height: 1.2; margin-top: 4px; }
.svc-img-overlay-right { font-family: 'Fraunces', serif; font-style: italic; color: rgba(255,255,255,0.6); font-size: 14px; }
.svc-content h2 { font-size: 48px; line-height: 1.05; letter-spacing: -1.2px; color: var(--blue-900); margin-bottom: 18px; }
.svc-content h2 em { font-style: italic; color: var(--red); }
.svc-content p { font-size: 17px; line-height: 1.7; color: var(--gray-600); margin-bottom: 16px; }
.svc-list { margin: 24px 0 32px; padding: 0; list-style: none; }
.svc-list li { font-size: 15px; color: var(--gray-700); padding: 10px 0 10px 28px; position: relative; border-top: 1px solid var(--gray-200); }
.svc-list li:last-child { border-bottom: 1px solid var(--gray-200); }
.svc-list li::before { content: ''; position: absolute; left: 6px; top: 18px; width: 6px; height: 6px; border-radius: 50%; background: var(--red); }
.svc-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.svc-actions .btn-red { padding: 14px 28px; font-size: 14px; }
.svc-link { font-size: 14px; font-weight: 600; color: var(--blue-900); border-bottom: 1.5px solid var(--blue-900); padding-bottom: 2px; transition: all 0.2s; }
.svc-link:hover { color: var(--red); border-color: var(--red); }

/* SUB COMEDIAN STRIP */
.svc-comedians { margin-top: 64px; padding-top: 48px; border-top: 1px solid var(--gray-200); }
.svc-comedians-label { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gray-500); margin-bottom: 18px; display: block; }
.svc-comedians-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.mc { display: block; transition: transform 0.25s; }
.mc:hover { transform: translateY(-4px); }
.mc-img { aspect-ratio: 1 / 1; border-radius: 10px; overflow: hidden; background: var(--gray-100); margin-bottom: 10px; }
.mc-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.35s; }
.mc:hover .mc-img img { transform: scale(1.04); }
.mc-img .ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.mc-img .ph-ini { font-family: 'Fraunces', serif; font-size: 32px; color: rgba(255,255,255,0.1); }
.mc-name { font-family: 'Fraunces', serif; font-size: 16px; color: var(--blue-900); line-height: 1.15; margin-bottom: 2px; }
.mc-role { font-size: 12px; color: var(--gray-500); letter-spacing: 0.2px; }

@media (max-width: 1024px) {
  .svc-inner { grid-template-columns: 1fr; gap: 48px; }
  .svc-inner.reverse { direction: ltr; }
  .svc-content h2 { font-size: 38px; }
  .svc-comedians-grid { grid-template-columns: repeat(2, 1fr); }
  .services-hero h1 { font-size: 46px; }
}
@media (max-width: 700px) {
  .services-hero h1 { font-size: 36px; }
  .services-hero-intro { font-size: 17px; }
  .svc { padding: 64px 4%; }
  .svc-content h2 { font-size: 32px; }
}

/* ===== src/pages/the-mcs.astro ===== */
.mcs-hero { background: #fff; padding: 72px 4% 56px; border-bottom: 1px solid var(--gray-200); text-align: center; }
.mcs-hero-inner { max-width: 820px; margin: 0 auto; }
.mcs-hero h1 { font-size: 60px; line-height: 1.05; letter-spacing: -1.5px; color: var(--blue-900); margin-bottom: 22px; }
.mcs-hero h1 em { font-style: italic; color: var(--red); }
.mcs-hero-intro { font-size: 19px; line-height: 1.65; color: var(--gray-600); font-weight: 300; margin-bottom: 16px; }

.mcs-roster { background: #fff; padding: 56px 4% 100px; }
.mcs-roster-inner { max-width: 1240px; margin: 0 auto; }
.mcs-body { display: grid; grid-template-columns: 1fr 320px; gap: 32px; align-items: start; }
.mcs-roster-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 28px; gap: 20px; }
.mcs-roster-header h2 { font-size: 32px; color: var(--blue-900); letter-spacing: -0.5px; }
.mcs-roster-header h2 em { font-style: italic; color: var(--red); }
.mcs-count { font-size: 14px; color: var(--gray-500); }
.mcs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.mcs-aside { align-self: stretch; } /* full column height so the form can travel */
.mcs-aside-sticky { position: sticky; top: 144px; }

@media (max-width: 1100px) {
  .mcs-body { grid-template-columns: 1fr; gap: 40px; }
  .mcs-aside-sticky { position: static; }
  .mcs-aside { max-width: 480px; margin: 0 auto; width: 100%; }
  .mcs-hero h1 { font-size: 46px; }
}
@media (max-width: 700px) {
  .mcs-hero h1 { font-size: 36px; }
  .mcs-hero-intro { font-size: 17px; }
  .mcs-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* ===== src/pages/testimonials.astro ===== */
/* HERO */
.t-hero { background: var(--white); padding: 72px 4% 64px; border-bottom: 1px solid var(--gray-200); text-align: center; }
.t-hero-inner { max-width: 820px; margin: 0 auto; }
.t-hero h1 { font-size: 60px; line-height: 1.05; letter-spacing: -1.5px; color: var(--blue-900); margin-bottom: 20px; }
.t-hero h1 em { font-style: italic; color: var(--red); }
.t-hero-intro { font-size: 20px; line-height: 1.6; color: var(--gray-600); font-weight: 300; }

/* FEATURED ROW */
.t-featured { background: var(--gray-50); padding: 80px 4%; }
.t-featured-inner { max-width: 1240px; margin: 0 auto; }
.t-featured-header { margin-bottom: 48px; display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 16px; }
.t-featured-header h2 { font-size: 36px; line-height: 1.1; letter-spacing: -0.5px; color: var(--blue-900); }
.t-featured-header h2 em { font-style: italic; color: var(--red); }
.t-featured-header-sub { font-size: 14px; color: var(--gray-500); }
.t-featured-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ft-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: 14px; padding: 40px 36px; display: flex; flex-direction: column; transition: all 0.3s; position: relative; }
.ft-card:hover { box-shadow: 0 16px 48px rgba(15,29,46,0.06); border-color: var(--red-pale); }
.ft-quote { font-family: 'Fraunces', serif; font-size: 21px; line-height: 1.5; color: var(--blue-900); margin-bottom: 32px; flex: 1; font-style: italic; position: relative; padding-top: 20px; }
.ft-quote::before { content: '\201C'; font-family: 'Fraunces', serif; font-size: 64px; color: var(--red); opacity: 0.25; line-height: 1; position: absolute; top: -12px; left: -6px; font-style: normal; }
.ft-meta { padding-top: 24px; border-top: 1px solid var(--gray-200); }
.ft-author { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.ft-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--blue-50); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: var(--blue-600); flex-shrink: 0; }
.ft-name { font-size: 14px; font-weight: 600; color: var(--gray-800); line-height: 1.2; }
.ft-role { font-size: 13px; color: var(--gray-500); margin-top: 2px; }
.ft-details { display: flex; justify-content: space-between; font-size: 12px; color: var(--gray-500); gap: 12px; flex-wrap: wrap; }
.ft-event { padding: 3px 10px; border-radius: 100px; background: var(--gray-100); }
.ft-comedian a { color: var(--red); font-weight: 500; }
.ft-comedian a:hover { text-decoration: underline; }

/* STATS STRIP */
.t-stats { background: var(--blue-900); padding: 64px 4%; color: #fff; position: relative; overflow: hidden; }
.t-stats-bg { position: absolute; inset: 0; opacity: 0.15; }
.t-stats-bg img { width: 100%; height: 100%; object-fit: cover; }
.t-stats-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,29,46,0.9) 0%, rgba(15,29,46,0.95) 100%); }
.t-stats-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 2fr; gap: 64px; align-items: center; }
.t-stats-left h2 { font-size: 36px; line-height: 1.1; letter-spacing: -0.5px; color: #fff; margin-bottom: 8px; }
.t-stats-left h2 em { font-style: italic; color: rgba(255,255,255,0.5); }
.t-stats-left p { font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.6; }
.stag-light { color: var(--red-light) !important; }
.t-stats-right { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.tstat .n { font-family: 'Fraunces', serif; font-size: 44px; color: #fff; line-height: 1; letter-spacing: -1.5px; margin-bottom: 8px; }
.tstat .l { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.4; letter-spacing: 0.3px; }

/* FILTERS */
.t-filters-section { background: var(--white); padding: 64px 4% 32px; }
.t-filters-inner { max-width: 1240px; margin: 0 auto; }
.t-filters-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 32px; gap: 20px; flex-wrap: wrap; }
.t-filters-header h2 { font-size: 36px; line-height: 1.1; letter-spacing: -0.5px; color: var(--blue-900); }
.t-filters-header h2 em { font-style: italic; color: var(--red); }
.t-count { font-size: 14px; color: var(--gray-500); }
.t-count strong { color: var(--blue-900); font-weight: 600; }
.t-pills { display: flex; flex-wrap: wrap; gap: 6px; }
.t-pill { padding: 10px 22px; border-radius: 6px; border: 1.5px solid var(--gray-200); background: transparent; font-size: 13px; font-weight: 600; cursor: pointer; font-family: 'Sora', sans-serif; color: var(--gray-600); transition: all 0.2s; }
.t-pill.active { background: var(--blue-900); color: #fff; border-color: var(--blue-900); }
.t-pill:hover:not(.active) { border-color: var(--gray-400); }

/* GRID */
.t-grid-section { background: var(--white); padding: 32px 4% 100px; }
.t-grid-inner { max-width: 1240px; margin: 0 auto; }
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.t-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: 14px; padding: 28px; transition: all 0.3s; display: flex; flex-direction: column; }
.t-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.05); border-color: var(--red-pale); }
.t-quote { font-size: 16px; line-height: 1.7; color: var(--gray-700); margin-bottom: 20px; position: relative; padding-top: 20px; font-family: 'Fraunces', serif; flex: 1; }
.t-quote::before { content: '\201C'; font-family: 'Fraunces', serif; font-size: 48px; color: var(--red); opacity: 0.25; line-height: 1; position: absolute; top: -8px; left: -4px; }
.t-bottom { padding-top: 18px; border-top: 1px solid var(--gray-200); }
.t-author { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.t-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--blue-50); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: var(--blue-600); flex-shrink: 0; }
.t-name { font-size: 14px; font-weight: 600; color: var(--gray-800); line-height: 1.2; }
.t-role { font-size: 12px; color: var(--gray-500); margin-top: 2px; }
.t-tag-row { display: flex; justify-content: space-between; align-items: center; font-size: 11px; gap: 10px; flex-wrap: wrap; }
.t-event-tag { padding: 4px 10px; border-radius: 100px; background: var(--gray-100); color: var(--gray-600); font-weight: 500; letter-spacing: 0.2px; }
.t-comedian-tag a { color: var(--red); font-weight: 600; }
.t-comedian-tag a:hover { text-decoration: underline; }

/* EMPTY STATE */
.t-empty { text-align: center; padding: 64px 4%; background: var(--white); }
.t-empty h3 { font-size: 24px; color: var(--blue-900); margin-bottom: 12px; }
.t-empty p { font-size: 15px; color: var(--gray-500); margin-bottom: 20px; }
.t-empty button { background: var(--red); color: #fff; padding: 12px 24px; border-radius: 6px; font-size: 14px; font-weight: 600; border: none; cursor: pointer; font-family: 'Sora', sans-serif; }

/* CLIENT LOGOS */
.t-clients { background: var(--gray-50); padding: 80px 4%; border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }
.t-clients-inner { max-width: 1240px; margin: 0 auto; text-align: center; }
.t-clients h2 { font-size: 28px; line-height: 1.15; letter-spacing: -0.3px; color: var(--blue-900); margin-bottom: 48px; }
.t-clients h2 em { font-style: italic; color: var(--red); }
.t-clients-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 40px 32px; align-items: center; }
.t-client-logo { display: block; width: 100%; height: 40px; object-fit: contain; filter: grayscale(100%) brightness(0.4); opacity: 0.55; transition: opacity 0.3s, filter 0.3s; }
.t-client-logo:hover { opacity: 1; filter: none; }

@media (max-width: 1024px) {
  .t-featured-grid { grid-template-columns: 1fr; gap: 18px; }
  .t-grid { grid-template-columns: repeat(2, 1fr); }
  .t-stats-inner { grid-template-columns: 1fr; gap: 32px; }
  .t-clients-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .t-hero h1 { font-size: 46px; }
  .t-stats-right { grid-template-columns: 1fr; gap: 18px; }
}
@media (max-width: 700px) {
  .t-grid { grid-template-columns: 1fr; }
  .t-clients-grid { grid-template-columns: repeat(2, 1fr); }
  .t-hero h1 { font-size: 36px; }
  .t-featured-header h2,
  .t-filters-header h2,
  .t-stats-left h2,
  .t-clients h2 { font-size: 28px; }
}

/* ===== src/pages/about.astro ===== */
/* HERO */
.about-hero { background: #fff; padding: 80px 4% 96px; border-bottom: 1px solid var(--gray-200); }
.about-hero-inner { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 6fr 5fr; gap: 80px; align-items: center; }
.about-hero h1 { font-size: 60px; line-height: 1.05; letter-spacing: -1.5px; color: var(--blue-900); margin-bottom: 24px; }
.about-hero h1 em { font-style: italic; color: var(--red); }
.about-hero-intro { font-family: 'Fraunces', serif; font-size: 27px; line-height: 1.45; color: var(--blue-900); margin-bottom: 18px; }
.about-hero-sub { font-size: 17px; line-height: 1.7; color: var(--gray-600); margin-bottom: 32px; }
.about-hero-quick { display: flex; gap: 32px; padding-top: 28px; border-top: 1px solid var(--gray-200); }
.about-hero-quick-item .n { font-family: 'Fraunces', serif; font-size: 36px; color: var(--red); letter-spacing: -1px; line-height: 1; }
.about-hero-quick-item .l { font-size: 13px; color: var(--gray-500); margin-top: 6px; letter-spacing: 0.3px; }
.about-hero-collage { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.ahc { aspect-ratio: 3/4; border-radius: 12px; overflow: hidden; background: var(--gray-100); }
.ahc img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; display: block; transition: transform 0.4s; }
.ahc:hover img { transform: scale(1.04); }

/* STORY SECTION */
.story-section { background: var(--gray-50); padding: 96px 4%; }
.story-inner { max-width: 900px; margin: 0 auto; }
.story-header { text-align: center; margin-bottom: 48px; }
.story-header h2 { font-size: 44px; line-height: 1.1; letter-spacing: -1px; color: var(--blue-900); }
.story-header h2 em { font-style: italic; color: var(--red); }
.story-body p { font-size: 18px; line-height: 1.8; color: var(--gray-600); margin-bottom: 22px; }
.story-body p strong { color: var(--blue-900); font-weight: 500; }
.story-body p:first-of-type::first-letter { font-family: 'Fraunces', serif; font-size: 72px; line-height: 0.85; float: left; padding-right: 14px; padding-top: 6px; color: var(--red); font-weight: 400; }

/* NUMBERS SECTION */
.numbers { position: relative; background: var(--blue-900); padding: 96px 4%; overflow: hidden; }
.numbers-inner { position: relative; z-index: 2; max-width: 1100px; margin: 0 auto; text-align: center; color: #fff; }
.numbers .stag { color: var(--red-light); }
.numbers-header h2 { font-size: 44px; line-height: 1.1; letter-spacing: -1px; color: #fff; margin-bottom: 18px; }
.numbers-header h2 em { font-style: italic; color: rgba(255, 255, 255, 0.6); }
.numbers-header p { font-size: 17px; color: rgba(255, 255, 255, 0.6); max-width: 560px; margin: 0 auto 56px; line-height: 1.6; }
.numbers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: left; }
.num-card { padding: 32px 28px; background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 14px; transition: all 0.3s; }
.num-card:hover { border-color: rgba(255,12,52, 0.4); background: rgba(255, 255, 255, 0.06); }
.num-card .n { font-family: 'Fraunces', serif; font-size: 56px; color: #fff; line-height: 1; letter-spacing: -2px; margin-bottom: 14px; font-weight: 400; }
.num-card .l { font-size: 14px; color: rgba(255, 255, 255, 0.5); line-height: 1.5; letter-spacing: 0.3px; }

/* PRINCIPLES */
.principles { background: #fff; padding: 96px 4%; }
.principles-inner { max-width: 1240px; margin: 0 auto; }
.principles-header { text-align: center; margin-bottom: 64px; max-width: 720px; margin-left: auto; margin-right: auto; }
.principles-header h2 { font-size: 44px; line-height: 1.1; letter-spacing: -1px; color: var(--blue-900); margin-bottom: 18px; }
.principles-header h2 em { font-style: italic; color: var(--red); }
.principles-header p { font-size: 17px; color: var(--gray-500); line-height: 1.6; }
.principles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.principle-card { padding: 40px 32px; border: 1px solid var(--gray-200); border-radius: 14px; transition: all 0.3s; background: #fff; }
.principle-card:hover { border-color: var(--red-pale); box-shadow: 0 12px 32px rgba(15, 29, 46, 0.06); }
.principle-num { font-family: 'Fraunces', serif; font-size: 48px; color: var(--red); line-height: 1; letter-spacing: -2px; margin-bottom: 18px; font-style: italic; }
.principle-card h3 { font-size: 24px; line-height: 1.2; color: var(--blue-900); margin-bottom: 14px; }
.principle-card p { font-size: 15px; color: var(--gray-600); line-height: 1.7; }

/* PRICING HONESTY */
.pricing-honesty { background: var(--gray-50); padding: 96px 4%; }
.pricing-inner { max-width: 920px; margin: 0 auto; display: grid; grid-template-columns: 1fr 2fr; gap: 64px; align-items: flex-start; }
.pricing-inner .stag { color: var(--red); }
.pricing-left h2 { font-size: 36px; line-height: 1.1; letter-spacing: -0.5px; color: var(--blue-900); }
.pricing-left h2 em { font-style: italic; color: var(--red); }
.pricing-right p { font-size: 18px; line-height: 1.8; color: var(--gray-700); margin-bottom: 18px; }
.pricing-quote { margin-top: 32px; padding: 28px 32px; background: #fff; border-left: 4px solid var(--red); border-radius: 0 12px 12px 0; }
.pricing-quote p { font-family: 'Fraunces', serif; font-size: 22px; line-height: 1.45; color: var(--blue-900); font-style: italic; margin: 0; }

/* SISTER SITE */
.sister { background: #fff; padding: 80px 4%; }
.sister-inner { max-width: 920px; margin: 0 auto; border: 1.5px solid var(--gray-200); border-radius: 16px; padding: 48px 56px; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; background: linear-gradient(135deg, #fff 0%, var(--gray-50) 100%); }
.sister-left h2 { font-size: 28px; line-height: 1.15; color: var(--blue-900); margin-bottom: 8px; }
.sister-left p { font-size: 15px; color: var(--gray-500); line-height: 1.6; max-width: 440px; }
.sister-link { background: var(--blue-900); color: #fff; padding: 14px 28px; border-radius: 6px; font-size: 15px; font-weight: 600; transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px; flex-shrink: 0; border: none; cursor: pointer; font-family: 'Sora', sans-serif; }
.sister-link:hover { background: var(--blue-800); }

@media (max-width: 1024px) {
  .about-hero-inner, .pricing-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-hero h1 { font-size: 48px; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .principles-grid { grid-template-columns: 1fr; gap: 18px; }
}
@media (max-width: 700px) {
  .about-hero h1 { font-size: 38px; }
  .about-hero-intro { font-size: 18px; }
  .about-hero-quick { flex-direction: column; gap: 18px; }
  .story-header h2, .principles-header h2, .numbers-header h2 { font-size: 32px; }
  .sister-inner { padding: 32px; flex-direction: column; align-items: flex-start; }
}

/* ===== src/pages/contact.astro ===== */
/* HERO */
.c-hero { background: #fff; padding: 72px 4% 56px; border-bottom: 1px solid var(--gray-200); text-align: center; }
.c-hero-inner { max-width: 780px; margin: 0 auto; }
.c-hero h1 { font-size: 60px; line-height: 1.05; letter-spacing: -1.5px; color: var(--blue-900); margin-bottom: 20px; }
.c-hero h1 em { font-style: italic; color: var(--red); }
.c-hero-intro { font-size: 20px; line-height: 1.6; color: var(--gray-600); font-weight: 300; }

/* MAIN CONTACT BODY */
.c-body { background: #fff; padding: 80px 4% 100px; }
.c-body-inner { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 5fr 7fr; gap: 80px; align-items: start; }

/* LEFT - Contact methods */
.c-methods { display: flex; flex-direction: column; gap: 0; }
.c-method { padding: 32px 0; border-bottom: 1px solid var(--gray-200); }
.c-method:first-child { padding-top: 0; }
.c-method:last-of-type { border-bottom: none; }
.c-method-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gray-500); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.c-method-label svg { width: 14px; height: 14px; color: var(--red); }
.c-method-value { font-family: 'Fraunces', serif; font-size: 36px; color: var(--blue-900); letter-spacing: -1px; line-height: 1.1; font-weight: 400; }
.c-method-value.small { font-size: 24px; }
.c-method-value a { color: inherit; transition: color 0.2s; }
.c-method-value a:hover { color: var(--red); }
.c-method-sub { font-size: 14px; color: var(--gray-500); margin-top: 8px; line-height: 1.6; }
.c-method-sub strong { color: var(--gray-700); font-weight: 500; }

.c-who { margin-top: 48px; padding: 28px; background: var(--gray-50); border-radius: 14px; display: flex; gap: 18px; align-items: center; }
.c-who-photo { width: 64px; height: 64px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: var(--gray-100); }
.c-who-photo img { width: 100%; height: 100%; object-fit: cover; }
.c-who-label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray-500); margin-bottom: 4px; }
.c-who-name { font-family: 'Fraunces', serif; font-size: 20px; color: var(--blue-900); line-height: 1.1; margin-bottom: 4px; }
.c-who-name em { font-style: italic; color: var(--red); font-size: 15px; margin-left: 6px; }
.c-who-role { font-size: 13px; color: var(--gray-500); }

/* RIGHT - Form wrapper */
.c-form-wrap { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 14px; padding: 40px 44px; }
.c-form-wrap .form-section { padding: 0; background: transparent; }
.c-form-wrap .form-inner { max-width: none; }
.c-form-wrap .form-header { text-align: left; margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--gray-200); }
.c-form-wrap .form-header h2 { font-size: 28px; line-height: 1.15; letter-spacing: -0.3px; margin-bottom: 6px; }
.c-form-wrap .stag { margin-bottom: 10px; }

/* WHAT HAPPENS NEXT */
.next { background: var(--gray-50); padding: 80px 4%; border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }
.next-inner { max-width: 1100px; margin: 0 auto; }
.next-header { text-align: center; margin-bottom: 56px; }
.next-header h2 { font-size: 40px; line-height: 1.1; letter-spacing: -1px; color: var(--blue-900); margin-bottom: 14px; }
.next-header h2 em { font-style: italic; color: var(--red); }
.next-header p { font-size: 16px; color: var(--gray-500); max-width: 520px; margin: 0 auto; }
.next-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.next-step { background: #fff; border: 1px solid var(--gray-200); border-radius: 14px; padding: 36px 32px; position: relative; transition: all 0.3s; }
.next-step:hover { border-color: var(--red-pale); box-shadow: 0 8px 24px rgba(15, 29, 46, 0.05); }
.next-num { font-family: 'Fraunces', serif; font-size: 42px; color: var(--red); line-height: 1; letter-spacing: -1.5px; margin-bottom: 18px; font-style: italic; }
.next-step h3 { font-size: 22px; color: var(--blue-900); line-height: 1.2; margin-bottom: 10px; }
.next-step p { font-size: 14px; color: var(--gray-600); line-height: 1.65; }
.next-step .time-pill { display: inline-block; margin-top: 14px; padding: 4px 12px; background: var(--red-pale); color: var(--red); font-size: 11px; font-weight: 700; border-radius: 100px; letter-spacing: 0.5px; text-transform: uppercase; }

/* SISTER */
.sister-strip { background: #fff; padding: 64px 4%; text-align: center; }
.sister-strip-inner { max-width: 720px; margin: 0 auto; }
.sister-strip h3 { font-size: 24px; color: var(--blue-900); line-height: 1.2; margin-bottom: 10px; }
.sister-strip h3 em { font-style: italic; color: var(--red); }
.sister-strip p { font-size: 15px; color: var(--gray-500); line-height: 1.6; margin-bottom: 24px; }
.sister-strip a { display: inline-flex; align-items: center; gap: 8px; background: var(--blue-900); color: #fff; padding: 14px 28px; border-radius: 6px; font-size: 14px; font-weight: 600; transition: all 0.2s; }
.sister-strip a:hover { background: var(--blue-800); }

@media (max-width: 1024px) {
  .c-body-inner { grid-template-columns: 1fr; gap: 48px; }
  .next-grid { grid-template-columns: 1fr; gap: 18px; }
  .c-hero h1 { font-size: 46px; }
  .c-form-wrap { padding: 32px 28px; }
}
@media (max-width: 700px) {
  .c-hero h1 { font-size: 38px; }
  .next-header h2 { font-size: 30px; }
  .c-method-value { font-size: 28px; }
}

/* ===== src/pages/comedians/[slug].astro ===== */

/* PROFILE HERO */
.profile-hero { background: #fff; padding: 48px 4% 64px; border-bottom: 1px solid var(--gray-200); }
.profile-hero-inner { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 5fr 7fr; gap: 64px; align-items: center; }
.profile-photo { aspect-ratio: 4 / 5; border-radius: 14px; overflow: hidden; background: var(--gray-100); }
.profile-photo img { width: 100%; height: 100%; object-fit: cover; }
.profile-photo-ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #162b45, #3170a8); }
.profile-photo-ph span { font-family: 'Fraunces', serif; font-size: 72px; color: rgba(255,255,255,0.22); }
.profile-meta-tag { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--red); margin-bottom: 14px; }
.profile-name { font-size: 64px; line-height: 1.05; letter-spacing: -1.5px; color: var(--blue-900); margin-bottom: 14px; }
.profile-tagline { font-size: 22px; color: var(--gray-600); line-height: 1.4; margin-bottom: 28px; font-weight: 300; }
.profile-chips { display: flex; gap: 8px; margin-bottom: 32px; flex-wrap: wrap; }
.profile-chip { padding: 7px 16px; border-radius: 100px; background: var(--blue-50); color: var(--blue-700); font-size: 13px; font-weight: 600; }
.profile-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-outline-d { background: transparent; color: var(--blue-900); padding: 16px 28px; border-radius: 6px; font-size: 15px; font-weight: 600; border: 1.5px solid var(--gray-300); cursor: pointer; font-family: 'Sora', sans-serif; transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px; text-decoration: none; }
.btn-outline-d:hover { border-color: var(--blue-900); background: var(--gray-50); }

/* BODY 2-COLUMN */
.profile-body { background: var(--gray-50); padding: 80px 4% 100px; }
.profile-body-inner { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 7fr 5fr; gap: 64px; align-items: start; }
.profile-main { min-width: 0; }
.profile-sidebar { min-width: 0; }
.profile-sticky { position: sticky; top: 120px; }

/* SHOWREEL */
.showreel { margin-bottom: 64px; }
.showreel h2 { font-size: 32px; line-height: 1.1; color: var(--blue-900); margin-bottom: 24px; }
.showreel-video { aspect-ratio: 16 / 9; border-radius: 14px; overflow: hidden; background: var(--blue-900); position: relative; transition: transform 0.3s; }
.showreel-video.has-video:not(.is-playing):hover { transform: scale(1.005); }
/* Placeholder look for comedians with no showreel yet. Scoped away from .has-video:
   these are pseudo-elements of the container, so on a video they would paint on top
   of the iframe and swallow the click. */
.showreel-video:not(.has-video)::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, #0f1d2e, #1e3a5c); opacity: 0.9; }
.showreel-video:not(.has-video)::after { content: ''; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, #ff0c34, #ff3a57); box-shadow: 0 8px 32px rgba(255,12,52,0.4); }
.showreel-video-label { position: absolute; bottom: 18px; left: 24px; color: rgba(255,255,255,0.8); font-size: 13px; letter-spacing: 1px; text-transform: uppercase; font-weight: 600; z-index: 2; }

/* Click-to-load poster. A real button, so it is keyboard reachable and so it can
   be removed cleanly once the embed is live. */
.showreel-poster { position: absolute; inset: 0; width: 100%; height: 100%; display: block; padding: 0; margin: 0; border: 0; z-index: 3; cursor: pointer; overflow: hidden; background: linear-gradient(135deg, #0f1d2e, #1e3a5c); }
.showreel-poster-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0.88; }
.showreel-poster-btn { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, #ff0c34, #ff3a57); box-shadow: 0 8px 32px rgba(255,12,52,0.4); display: flex; align-items: center; justify-content: center; transition: transform 0.3s; pointer-events: none; }
.showreel-poster-btn svg { width: 32px; height: 32px; color: #fff; margin-left: 6px; pointer-events: none; }
.showreel-poster:hover .showreel-poster-btn { transform: translate(-50%, -50%) scale(1.08); }
.showreel-poster:focus-visible { outline: 3px solid var(--red-light); outline-offset: 3px; }
.showreel-video.is-playing .showreel-poster { display: none; }

/* BIO */
.bio { margin-bottom: 0; }
.bio h2 { font-size: 32px; line-height: 1.1; color: var(--blue-900); margin-bottom: 24px; }
.bio-content p { font-size: 17px; line-height: 1.7; color: var(--gray-600); margin-bottom: 18px; }
.bio-content p:last-child { margin-bottom: 0; }
.bio-content h2,
.bio-content h3 { font-size: 22px; color: var(--blue-900); margin: 28px 0 14px; line-height: 1.2; }
.bio-content ul,
.bio-content ol { padding-left: 22px; margin-bottom: 18px; color: var(--gray-600); font-size: 17px; line-height: 1.7; }
.bio-content li { margin-bottom: 6px; }
.bio-content a { color: var(--red); text-decoration: underline; }

/* SIDEBAR FORM tweaks */
.profile-sidebar .profile-form { padding: 0; background: transparent; }
.profile-sidebar .form-inner { background: #fff; border: 1px solid var(--gray-200); border-radius: 14px; padding: 32px; box-shadow: 0 4px 16px rgba(0,0,0,0.04); max-width: none; }
.profile-sidebar .form-header { text-align: left; margin-bottom: 20px; }
.profile-sidebar .form-header h2 { font-size: 24px; line-height: 1.15; margin-bottom: 0; }
.profile-sidebar .form-grid { grid-template-columns: 1fr; gap: 12px; }
.profile-sidebar .fg.full { grid-column: auto; }
.profile-sidebar .form-submit button { padding: 14px; font-size: 15px; }

/* RELATED COMEDIANS */
.related { background: #fff; padding: 80px 4% 100px; }
.related-inner { max-width: 1240px; margin: 0 auto; }
.related-inner h2 { font-size: 36px; line-height: 1.1; letter-spacing: -0.5px; color: var(--blue-900); margin-bottom: 40px; }
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

@media (max-width: 1024px) {
  .profile-hero-inner { grid-template-columns: 1fr; gap: 32px; max-width: 560px; }
  .profile-body-inner { grid-template-columns: 1fr; gap: 48px; }
  .profile-sticky { position: static; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .profile-name { font-size: 48px; }
}

@media (max-width: 600px) {
  .profile-name { font-size: 40px; }
  .profile-tagline { font-size: 18px; }
  .profile-hero { padding: 32px 5% 48px; }
  .profile-body { padding: 56px 5% 72px; }
  .related { padding: 56px 5% 72px; }
  .related-inner h2 { font-size: 28px; }
  .showreel h2,
  .bio h2 { font-size: 26px; }
}

/* ===== src/pages/comedians/index.astro ===== */

/* Page header */
.page-header { background: #fff; padding: 56px 4% 48px; text-align: center; border-bottom: 1px solid var(--gray-200); }
.page-header-inner { max-width: 900px; margin: 0 auto; }
.page-header h1 { font-size: 56px; line-height: 1.05; letter-spacing: -1.5px; color: var(--blue-900); margin-bottom: 18px; }
.page-header h1 em { font-style: italic; color: var(--red); }
.page-header p { font-size: 18px; color: var(--gray-600); line-height: 1.6; max-width: 640px; margin: 0 auto; }

/* Sticky controls */
.controls { background: #fff; border-bottom: 1px solid var(--gray-200); padding: 18px 4%; position: sticky; top: 124px; z-index: 50; box-shadow: 0 1px 0 var(--gray-200); }
.controls-inner { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr; gap: 24px; align-items: center; }
.search-wrap { position: relative; }
.search-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: var(--gray-400); pointer-events: none; }
.search-input { width: 100%; background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 8px; padding: 12px 14px 12px 44px; font-size: 14px; font-family: 'Sora', sans-serif; color: var(--gray-800); outline: none; transition: all 0.2s; }
.search-input:focus { border-color: var(--red); background: #fff; box-shadow: 0 0 0 3px rgba(255,12,52,0.08); }
.search-input::placeholder { color: var(--gray-400); }
.filter-pills { display: flex; justify-content: center; gap: 6px; flex-wrap: wrap; }
.pill { padding: 10px 18px; border-radius: 6px; border: 1.5px solid var(--gray-200); background: transparent; font-size: 13px; font-weight: 600; cursor: pointer; font-family: 'Sora', sans-serif; color: var(--gray-600); transition: all 0.2s; white-space: nowrap; }
.pill.active { background: var(--blue-900); color: #fff; border-color: var(--blue-900); }
.pill:hover:not(.active):not([disabled]) { border-color: var(--gray-400); }
.pill[disabled] { opacity: 0.4; cursor: not-allowed; }
.sort-wrap { position: relative; justify-self: end; }
.sort-select { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 8px; padding: 12px 36px 12px 14px; font-size: 14px; font-family: 'Sora', sans-serif; color: var(--gray-800); outline: none; cursor: pointer; appearance: none; background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23646d7d' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'/%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right 14px center; font-weight: 500; transition: border-color 0.2s; }
.sort-select:focus { border-color: var(--red); }

/* Featured */
.featured-section { padding: 64px 4% 48px; background: var(--gray-50); }
.featured-inner { max-width: 1240px; margin: 0 auto; }
.featured-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 32px; gap: 24px; flex-wrap: wrap; }
.featured-header h2 { font-size: 28px; line-height: 1.15; color: var(--blue-900); letter-spacing: -0.5px; }
.featured-header h2 em { font-style: italic; color: var(--red); }
.featured-header-sub { font-size: 14px; color: var(--gray-500); }
.featured-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* Roster */
.roster-section { padding: 48px 4% 100px; background: var(--gray-50); }
.roster-inner { max-width: 1240px; margin: 0 auto; }
.roster-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 32px; gap: 24px; flex-wrap: wrap; }
.section-title { font-size: 28px; line-height: 1.15; color: var(--blue-900); letter-spacing: -0.5px; }
.roster-count { font-size: 14px; color: var(--gray-500); }
.roster-count strong { color: var(--blue-900); font-weight: 600; }
.roster-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

/* Empty state */
.empty-state { text-align: center; padding: 80px 4%; background: var(--gray-50); }
.empty-state-inner { max-width: 520px; margin: 0 auto; }
.empty-state h3 { font-size: 28px; color: var(--blue-900); margin-bottom: 12px; line-height: 1.2; }
.empty-state h3 em { font-style: italic; color: var(--red); }
.empty-state p { font-size: 16px; color: var(--gray-500); line-height: 1.6; margin-bottom: 24px; }

@media (max-width: 1024px) {
  .controls-inner { grid-template-columns: 1fr; gap: 14px; }
  .filter-pills { justify-content: flex-start; }
  .sort-wrap { justify-self: start; }
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .roster-grid { grid-template-columns: repeat(3, 1fr); }
  .page-header h1 { font-size: 44px; }
}

@media (max-width: 700px) {
  .featured-grid { grid-template-columns: 1fr; }
  .roster-grid { grid-template-columns: repeat(2, 1fr); }
  .page-header h1 { font-size: 36px; }
  .page-header p { font-size: 16px; }
  .controls { top: 72px; }
}
