/* Lomotion Media — public site (NOIR concept). Dark, cinematic; Bebas Neue headlines,
   DM Sans body, hot-pink accent, film-strip + ticker motifs. External (CSP-friendly). */

:root {
  --black: #0a0a0a;
  --charcoal: #111111;
  --dark: #1a1a1a;
  --mid: #2a2a2a;
  --rule: #1f1f1f;
  --magenta: #e84b8a;
  --magenta-dim: rgba(232, 75, 138, 0.12);
  --text: #f0ebe3;
  --text-2: #9a9489;
  --text-dim: #5a554d;
  --maxw: 1440px;
  --display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --body: 'DM Sans', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--text);
  font-family: var(--body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--mid); border-radius: 3px; }

.display { font-family: var(--display); font-weight: 400; letter-spacing: 2px; line-height: 0.9; }
.eyebrow {
  font-size: 10px; letter-spacing: 5px; text-transform: uppercase; color: var(--magenta);
  font-weight: 600; display: flex; align-items: center; gap: 10px;
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--magenta); box-shadow: 0 0 18px var(--magenta); }
.lede { color: var(--text-2); line-height: 1.7; max-width: 480px; }
.byline { color: var(--magenta); font-style: italic; font-size: 14px; }
.meta { color: var(--text-dim); font-size: 13px; }
/* Expandable "additional text": a clickable label (default "Learn More") with a rotating
   triangle that reveals the body. Native <details>/<summary> — works without JS, accessible. */
.show-more-summary {
  display: inline-flex; align-items: center; gap: 7px; list-style: none; cursor: pointer;
  color: var(--magenta); font-family: var(--body); font-size: 14px; font-weight: 600; letter-spacing: 0.5px;
  transition: color 0.15s;
}
.show-more-summary::-webkit-details-marker { display: none; }
.show-more-summary::after { content: '\25B8'; font-size: 11px; line-height: 1; transition: transform 0.2s; }
.show-more[open] .show-more-summary::after { transform: rotate(90deg); }
.show-more-summary:hover { color: #fff; }
.show-more .show-extra { margin-top: 10px; }
.show-extra { color: var(--text-2); font-size: 15px; line-height: 1.65; max-width: 480px; }
.muted { color: var(--text-dim); }

.section { max-width: var(--maxw); margin: 0 auto; padding: 72px 48px 0; }

/* ── Buttons ── */
.btn {
  display: inline-block; padding: 14px 36px; font-family: var(--display); font-size: 17px;
  letter-spacing: 3px; cursor: pointer; border: 1px solid transparent; transition: all 0.2s;
}
.btn--primary { background: var(--magenta); color: #fff; }
.btn--primary:hover { background: #d43d79; }
.btn--ghost { border-color: rgba(255, 255, 255, 0.2); color: rgba(255, 255, 255, 0.7); }
.btn--ghost:hover { border-color: var(--magenta); color: #fff; }

/* ── Navigation ── */
.nav { position: relative; z-index: 100; background: var(--black); border-bottom: 1px solid var(--rule); }
.nav--transparent {
  position: absolute; top: 0; left: 0; right: 0; border-bottom: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  height: 72px; max-width: var(--maxw); margin: 0 auto; padding: 0 48px;
}
.nav-logo img { height: 44px; width: auto; filter: invert(1) brightness(1.6) contrast(1.2); mix-blend-mode: screen; }
.nav-logo-text { font-family: var(--display); font-size: 26px; letter-spacing: 3px; color: #fff; }
.nav-menu { display: flex; gap: 2px; align-items: center; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 4px; padding: 8px 14px; border-radius: 4px;
  font-size: 11px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.nav-link:hover { color: #fff; background: rgba(255, 255, 255, 0.06); }
.caret { font-size: 9px; }
.nav-dropdown {
  position: absolute; top: 100%; left: 0; min-width: 220px; padding: 8px 0; margin-top: 8px;
  background: #151515; border: 1px solid var(--rule); border-radius: 6px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5); opacity: 0; visibility: hidden;
  transform: translateY(6px); transition: all 0.15s;
}
.nav-item.has-children:hover .nav-dropdown { opacity: 1; visibility: visible; transform: none; }
.nav-dropdown a {
  display: block; padding: 10px 20px; font-size: 13px; color: rgba(255, 255, 255, 0.65);
}
.nav-dropdown a:hover { color: #fff; background: rgba(255, 255, 255, 0.05); }
.nav-cta {
  padding: 9px 22px; background: var(--magenta); color: #fff; border-radius: 3px;
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; white-space: nowrap;
}
.nav-cta:hover { background: #d43d79; }
/* Right-hand group: social icons (from the Links section, IG then FB) + the Tickets button. */
.nav-actions { display: flex; align-items: center; gap: 18px; }
.nav-social { display: flex; align-items: center; gap: 14px; }
.nav-social-icon { display: inline-flex; color: rgba(255, 255, 255, 0.7); transition: color 0.15s; }
.nav-social-icon:hover { color: var(--magenta); }
.nav-social-icon svg { width: 18px; height: 18px; display: block; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 22px; height: 2px; background: #fff; display: block; transition: 0.2s; }
.nav-toggle-cb { position: absolute; left: -9999px; opacity: 0; } /* CSS-only toggle (works without JS) */

/* ── Hero (rotating) ── */
.hero { position: relative; height: 680px; max-height: 90vh; overflow: hidden; background: #060606; }
.hero-bg { position: absolute; inset: 0; }
/* Anchor the crop toward the top so subjects/faces (usually high in the frame) aren't cut off on the
   wide desktop hero. Auto-applies to any uploaded image — no manual cropping/sizing needed.
   Reset to center on mobile (narrow window crops the sides, not the top). */
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 20%; opacity: 0; transition: opacity 0.6s ease-in-out; }
.hero-img.is-active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.2) 0%, rgba(10, 10, 10, 0) 25%, rgba(10, 10, 10, 0.55) 60%, var(--black) 100%);
}
.hero-content { position: absolute; bottom: 0; left: 0; right: 0; z-index: 5; max-width: var(--maxw); margin: 0 auto; padding: 0 48px 56px; }
.hero-title { font-family: var(--display); font-size: clamp(56px, 9vw, 100px); letter-spacing: 4px; color: #fff; max-width: 680px; }
.hero-sub { margin: 14px 0 28px; max-width: 480px; color: rgba(255, 255, 255, 0.55); font-size: 16px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-dots { display: flex; gap: 8px; margin-top: 28px; }
.hero-dot { width: 8px; height: 8px; border-radius: 4px; border: 0; background: rgba(255, 255, 255, 0.25); cursor: pointer; transition: all 0.3s; }
.hero-dot.is-active { width: 24px; background: var(--magenta); }

/* ── Ticker (marquee) ── */
.ticker { overflow: hidden; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); padding: 16px 0; }
.ticker-track {
  display: flex; white-space: nowrap; width: max-content; animation: tickerScroll 38s linear infinite;
  font-family: var(--display); font-size: 15px; letter-spacing: 6px; text-transform: uppercase; color: var(--text-dim);
}
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Mainstage / Up next ── */
.mainstage-grid, .upnext-grid, .block-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
/* Top-anchor the show columns so the expandable "additional text" grows downward only
   (no vertical re-centering jump when it opens). */
.mainstage-grid, .upnext-grid { align-items: start; }
/* Multiple promoted shows stack within one section, separated by a hairline rule. */
.mainstage-show + .mainstage-show, .upnext-show + .upnext-show { margin-top: 72px; padding-top: 72px; border-top: 1px solid var(--rule); }
.mainstage-copy .display, .upnext-copy .display, .block-copy .display { font-size: 72px; margin: 12px 0; }
.mainstage-copy > * + *, .upnext-copy > * + * { margin-top: 12px; }
.mainstage-poster img, .upnext-poster img, .block-media img { width: 100%; border-radius: 4px; }
.poster-placeholder { width: 100%; aspect-ratio: 2 / 3; background: linear-gradient(135deg, var(--charcoal), var(--dark)); border: 1px solid var(--rule); border-radius: 4px; }

/* ── Statement ── */
.statement-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.statement-title { font-size: 56px; }
.statement-title :where(.accent) { color: var(--magenta); }
.statement-sub { margin-top: 16px; color: var(--text-dim); font-size: calc(16px * var(--prose-scale, 1)); }

/* ── Explore tiles ── */
.explore-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; }
.tile { display: flex; flex-direction: column; padding: 0 20px; border-left: 1px solid var(--rule); }
.tile:first-child { border-left: 0; padding-left: 0; }
.tile-img { height: 220px; overflow: hidden; margin-bottom: 20px; background: var(--charcoal); }
.tile-img img { width: 100%; height: 100%; object-fit: cover; }
.tile-tag { font-size: 10px; letter-spacing: 4px; color: var(--magenta); font-weight: 600; text-transform: uppercase; }
.tile-title { font-family: var(--display); font-size: 26px; letter-spacing: 2px; margin: 6px 0 10px; }
.tile-desc { font-size: 13px; color: var(--text-2); line-height: 1.6; flex: 1; }
.tile-more { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--magenta); font-weight: 600; margin-top: 16px; }

/* ── Film strip (auto-scroll) ── */
.filmstrip { margin-top: 72px; }
.filmstrip-perfs { height: 26px; display: flex; align-items: center; justify-content: center; gap: 16px; border-top: 1px solid var(--mid); border-bottom: 1px solid var(--mid); }
.filmstrip-perfs span { width: 13px; height: 8px; border-radius: 2px; border: 1px solid var(--mid); }
.filmstrip-window { height: 300px; overflow: hidden; background: #060606; }
.filmstrip-track { display: flex; height: 300px; width: max-content; animation: filmScroll 40s linear infinite; }
.filmstrip-track img { height: 100%; width: auto; object-fit: cover; }
.filmstrip:hover .filmstrip-track { animation-play-state: paused; }
.filmstrip-empty { height: 100%; background: repeating-linear-gradient(90deg, var(--charcoal) 0 120px, var(--dark) 120px 240px); }
@keyframes filmScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Newsletter ── */
.newsletter-inner { max-width: 560px; margin: 0 auto; text-align: center; }
.newsletter .eyebrow { justify-content: center; margin-bottom: 16px; }
.newsletter-title { font-size: 48px; margin-bottom: 12px; }
.newsletter-body { color: var(--text-dim); margin-bottom: 28px; }
.newsletter-form { display: flex; align-items: stretch; max-width: 460px; margin: 0 auto; }
.newsletter-form input { flex: 1; min-width: 0; height: 48px; padding: 0 16px; background: var(--charcoal); border: 1px solid var(--rule); border-right: 0; border-radius: 4px 0 0 4px; color: var(--text); font-family: var(--body); font-size: 14px; outline: none; }
.newsletter-form input::placeholder { color: var(--text-dim); }
.newsletter-form input:focus { border-color: var(--magenta); }
.newsletter-form .btn {
  display: inline-flex; align-items: center; justify-content: center; height: 48px; margin: 0; padding: 0 28px;
  border-radius: 0 4px 4px 0; line-height: 1; white-space: nowrap; flex: 0 0 auto;
  font-family: var(--body); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600;
}

/* ── Banner ── */
.banner-inner { max-width: var(--maxw); margin: 0 auto; padding: 32px 48px; background: var(--charcoal); border: 1px solid var(--rule); border-radius: 4px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.banner-text { font-family: var(--display); font-size: 28px; letter-spacing: 2px; }

/* ── Standalone page ── */
.page { max-width: 820px; margin: 0 auto; padding: 48px 48px 0; }
.page-back { font-size: 10px; letter-spacing: 5px; text-transform: uppercase; color: var(--magenta); font-weight: 600; }
.page-title { font-family: var(--display); font-size: 64px; letter-spacing: 3px; margin: 16px 0; }
.page-feature { width: 100%; border-radius: 6px; margin-bottom: 28px; }
.content { color: var(--text-2); font-size: 16px; line-height: 1.8; }
.content > * + * { margin-top: 1em; }
.content h1, .content h2, .content h3 { font-family: var(--display); color: var(--text); letter-spacing: 1px; line-height: 1.1; }
.content h2 { font-size: 40px; } .content h3 { font-size: 28px; }
.content a { color: var(--magenta); text-decoration: underline; }
.content ul { list-style: disc; padding-left: 1.4em; }
.content ol { list-style: decimal; padding-left: 1.4em; }
.content img { border-radius: 4px; margin: 1em 0; }

/* ── Footer ── */
.footer { margin-top: 72px; padding: 72px 48px 36px; border-top: 1px solid var(--rule); background: var(--black); }
.footer-inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 80px; }
.footer-logo { width: 160px; filter: invert(1) brightness(1.6) contrast(1.2); mix-blend-mode: screen; margin-bottom: 18px; }
.footer-logo-text { font-family: var(--display); font-size: 30px; letter-spacing: 3px; margin-bottom: 18px; }
.footer-about { color: var(--text-dim); font-size: 14px; line-height: 1.6; max-width: 400px; margin-bottom: 16px; }
.footer-contact { color: var(--text-dim); font-size: 13px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 18px; align-items: center; }
.footer-social-icon { display: inline-flex; color: var(--text-dim); transition: color 0.15s; }
.footer-social-icon:hover { color: var(--magenta); }
.footer-social-icon svg { width: 22px; height: 22px; display: block; }
.footer-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-col-title { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-dim); font-weight: 500; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: var(--text-2); margin-bottom: 10px; transition: color 0.15s; }
.footer-col a:hover { color: var(--magenta); }
.footer-bottom { max-width: var(--maxw); margin: 48px auto 0; padding-top: 24px; border-top: 1px solid var(--rule); display: flex; justify-content: space-between; font-size: 11px; color: #333; }

/* ── 404 ── */
.notfound { max-width: 560px; margin: 0 auto; padding: 120px 48px; text-align: center; }
.notfound .eyebrow { justify-content: center; margin-bottom: 16px; }
.notfound h1 { font-family: var(--display); font-size: 72px; letter-spacing: 4px; margin-bottom: 12px; }
.notfound p { color: var(--text-dim); margin-bottom: 28px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .explore-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .tile { border-left: 0; padding: 0; }
}
@media (max-width: 820px) {
  .section { padding: 56px 24px 0; }
  .nav-inner { padding: 0 24px; }
  .mainstage-grid, .upnext-grid, .block-grid { grid-template-columns: 1fr; gap: 28px; }
  .mainstage-show + .mainstage-show, .upnext-show + .upnext-show { margin-top: 40px; padding-top: 40px; }
  .footer { padding: 56px 24px 36px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .page, .hero-content { padding-left: 24px; padding-right: 24px; }
  .hero-img { object-position: center; }

  .nav-toggle { display: flex; order: 3; }
  .nav-menu {
    display: none; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column;
    align-items: stretch; gap: 0; background: #0d0d0d; border-bottom: 1px solid var(--rule); padding: 8px 0;
  }
  .nav-toggle-cb:checked ~ .nav-menu { display: flex; }
  .nav-link { padding: 14px 24px; font-size: 13px; }
  .nav-dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; background: #0a0a0a; margin: 0; padding: 0 0 8px; }
  .nav-dropdown a { padding-left: 40px; }
  /* Tickets stays visible beside the (static, far-right) hamburger, so opening the menu
     never adds/removes a header item and the hamburger never shifts. */
  /* Keep only the Tickets button beside the static hamburger; social icons live in the footer on mobile. */
  .nav-actions { order: 2; margin-left: auto; }
  .nav-social { display: none; }
  .nav-cta { display: inline-flex; align-items: center; padding: 8px 16px; font-size: 10px; }
  .explore-grid { grid-template-columns: 1fr; }
  .banner-inner { flex-direction: column; text-align: center; }
}

/* ──────────────────────────────────────────────────────────────────────────
   Page sections (standalone pages composed from the typed-section library)
   ────────────────────────────────────────────────────────────────────────── */

/* page_header — left-aligned page-top title + optional intro */
.page-hd { max-width: var(--maxw); margin: 0 auto; padding: 48px 48px 0; }
.page-hd-title { font-size: clamp(44px, 8vw, 72px); letter-spacing: 3px; margin-bottom: 14px; }
.page-hd-intro { font-family: var(--body); font-size: calc(16px * var(--prose-scale, 1)); color: var(--text-2); max-width: 560px; line-height: 1.7; }

/* feature_list — magenta left-border accent items */
.feature-list { max-width: var(--maxw); margin: 0 auto; padding: 56px 48px 0; }
.feature-list-inner { display: grid; gap: 20px; max-width: 620px; }
.feature-item { border-left: 3px solid var(--magenta); padding-left: 20px; }
.feature-item-title { font-size: 28px; letter-spacing: 2px; margin-bottom: 6px; }
.feature-item-desc { font-family: var(--body); font-size: calc(14px * var(--prose-scale, 1)); color: var(--text-2); line-height: 1.6; }

/* form — inert signup/contact card (submission wired in a later prompt) */
.form-section { max-width: var(--maxw); margin: 0 auto; padding: 56px 48px 0; }
.form-card { max-width: 560px; margin: 0 auto; background: var(--charcoal); border: 1px solid var(--rule); border-radius: 4px; padding: 36px 32px; }
.form-card-title { font-size: 28px; letter-spacing: 2px; margin-bottom: 8px; }
.form-card-sub { font-family: var(--body); font-size: 13px; color: var(--text-dim); margin-bottom: 24px; }
.lm-form { display: flex; flex-direction: column; gap: 16px; }
.lm-label { font-family: var(--body); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-dim); font-weight: 500; display: block; margin-bottom: 6px; }
.lm-req { color: var(--magenta); }
.lm-input { width: 100%; height: 44px; background: var(--black); border: 1px solid var(--rule); border-radius: 3px; padding: 0 14px; color: var(--text); font-family: var(--body); font-size: 14px; outline: none; }
.lm-input:focus { border-color: var(--magenta); }
.lm-textarea { height: 100px; padding: 12px 14px; resize: vertical; }
.lm-select { appearance: none; cursor: pointer; }
.lm-submit { margin-top: 8px; padding: 13px 0; background: var(--magenta); color: #fff; text-align: center; font-family: var(--body); font-size: 13px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; border: 0; border-radius: 3px; cursor: pointer; }
.lm-submit:hover { background: #d43d79; }
.lm-submit:disabled { opacity: 0.6; cursor: default; }
/* honeypot — visually removed but present in the DOM for bots */
.lm-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.lm-field-error { display: block; color: var(--magenta); font-family: var(--body); font-size: 12px; margin-top: 4px; }
.lm-input.has-error, .newsletter-form input.has-error { border-color: var(--magenta); }
.form-success { background: var(--magenta-dim); border: 1px solid var(--magenta); border-radius: 4px; padding: 16px 18px; color: var(--text); font-family: var(--body); font-size: 14px; line-height: 1.6; }
.form-error { background: var(--magenta-dim); border: 1px solid var(--magenta); border-radius: 3px; padding: 10px 14px; color: var(--text); font-family: var(--body); font-size: 13px; margin-bottom: 16px; }

/* text_image — paragraphs (bright lead, dimmer rest) + image, two-column */
.textimg { max-width: var(--maxw); margin: 0 auto; padding: 40px 48px 0; }
.textimg-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: start; }
.textimg-p { font-family: var(--body); font-size: calc(15px * var(--prose-scale, 1)); color: var(--text-dim); line-height: 1.8; margin-bottom: 16px; text-wrap: pretty; }
.textimg-p.is-lead { font-size: 16px; color: var(--text-2); }
.textimg-credit { font-family: var(--body); font-size: 13px; color: var(--text-dim); margin-top: 8px; }
.textimg-media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 4px; }

/* location_map — Find Us: map + address/contact card */
.findus { max-width: var(--maxw); margin: 0 auto; padding: 56px 48px 80px; }
.findus-inner { border-top: 1px solid var(--rule); padding-top: 48px; }
.findus-title { font-size: 44px; letter-spacing: 3px; margin-bottom: 24px; }
.findus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.findus-map { border-radius: 4px; overflow: hidden; border: 1px solid var(--rule); height: 320px; }
.findus-map iframe { display: block; filter: invert(0.9) hue-rotate(180deg) brightness(0.8) contrast(1.2); }
.findus-map-empty { width: 100%; height: 100%; background: var(--charcoal); }
.findus-card { background: var(--charcoal); border: 1px solid var(--rule); border-radius: 4px; padding: 32px 28px; display: flex; flex-direction: column; justify-content: center; }
.findus-eyebrow { font-family: var(--body); font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--magenta); font-weight: 600; margin-bottom: 14px; }
.findus-venue { font-size: 28px; letter-spacing: 2px; margin-bottom: 6px; }
.findus-addr { font-family: var(--body); font-size: 15px; color: var(--text-2); line-height: 1.7; margin-bottom: 20px; }
.findus-contact { display: flex; flex-direction: column; gap: 6px; }
.findus-phone { font-family: var(--body); font-size: 14px; color: var(--text-dim); }
.findus-email a { font-family: var(--body); font-size: 14px; color: var(--magenta); }
.findus-social { display: flex; gap: 16px; margin-top: 24px; }
.findus-social a { font-family: var(--body); font-size: 13px; color: var(--text-2); }
.findus-social a:hover { color: #fff; }

/* production_archive — year filter + production cards + drill-down galleries + lightbox.
   Default (no JS): all years, cards AND galleries are visible. JS adds .pa-enhanced, which
   enables one-year-at-a-time filtering and card→gallery drill-down. */
.pa { max-width: var(--maxw); margin: 0 auto; padding: 40px 48px 80px; }
.pa-heading { font-size: 44px; letter-spacing: 3px; margin-bottom: 24px; }
.pa-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px; }
.pa-tab { padding: 10px 24px; border-radius: 3px; font-family: var(--display); font-size: 20px; letter-spacing: 2px; color: var(--text-dim); border: 1px solid var(--rule); cursor: pointer; }
.pa-tab.is-active { background: var(--magenta); color: #fff; border-color: transparent; }
.pa-year + .pa-year { margin-top: 56px; }
.pa-year-label { font-size: 28px; letter-spacing: 2px; color: var(--text-2); margin-bottom: 20px; }
.pa-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.pa-card { border: 1px solid var(--rule); border-radius: 4px; overflow: hidden; background: var(--charcoal); }
.pa-card-trigger { display: block; width: 100%; text-align: left; background: none; border: 0; padding: 0; color: inherit; font: inherit; cursor: default; position: relative; }
/* Block + clip with a definite height so the single image is forced to 260px and object-fit:cover
   actually crops it (a grid row auto-sized to the image, defeating the height + the focus control). */
.pa-mosaic { height: 260px; overflow: hidden; }
.pa-mosaic img { display: block; width: 100%; height: 100%; object-fit: cover; }
/* Per-production card thumbnail focus is applied as an exact object-position via a nonce'd <style>
   in the page HTML (see production_archive.ejs). Default (no rule) is center. */
/* Text overlays the bottom of the photo on a dark gradient scrim so it stays legible over any image. */
.pa-card-meta {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  display: flex; justify-content: space-between; align-items: flex-end; gap: 16px;
  padding: 72px 24px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.7) 35%, rgba(0,0,0,0.3) 70%, rgba(0,0,0,0) 100%);
  text-shadow: 0 1px 4px rgba(0,0,0,0.7);
}
.pa-cat { font-family: var(--body); font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--magenta); font-weight: 700; }
.pa-card-title { font-size: 32px; letter-spacing: 2px; margin: 6px 0 0; color: #fff; }
.pa-card-sub { font-family: var(--body); font-size: 13px; color: rgba(255,255,255,0.85); font-style: italic; margin: 4px 0 0; }
.pa-count { font-family: var(--body); font-size: 12px; color: var(--magenta); font-weight: 600; flex-shrink: 0; }
.pa-galleries { margin-top: 24px; }
.pa-gallery + .pa-gallery { margin-top: 48px; }
.pa-gallery-head { display: flex; justify-content: space-between; align-items: baseline; gap: 24px; margin-bottom: 28px; flex-wrap: wrap; }
.pa-back { display: none; background: none; border: 0; padding: 0; color: var(--magenta); font-family: var(--body); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; cursor: pointer; }
.pa-gallery-title { font-size: 52px; letter-spacing: 3px; margin: 8px 0 0; }
.pa-photos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.pa-photo { display: block; }
.pa-photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 3px; }

/* progressive enhancement (JS adds .pa-enhanced) */
.pa-enhanced .pa-year { display: none; }
.pa-enhanced .pa-year.is-active { display: block; }
.pa-enhanced .pa-year + .pa-year { margin-top: 0; }
.pa-enhanced .pa-year-label { display: none; }
.pa-enhanced .pa-galleries { display: none; }
.pa-enhanced .pa-year.is-drilled .pa-grid { display: none; }
.pa-enhanced .pa-year.is-drilled .pa-galleries { display: block; }
.pa-enhanced .pa-gallery { display: none; }
.pa-enhanced .pa-gallery.is-shown { display: block; }
.pa-enhanced .pa-back { display: inline-block; }
.pa-enhanced .pa-card-trigger { cursor: pointer; }
.pa-enhanced .pa-card-trigger:hover .pa-card-title { color: var(--magenta); }
.pa-enhanced .pa-photo { cursor: pointer; }

/* lightbox (JS only) */
.pa-lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 500; display: flex; align-items: center; justify-content: center; }
.pa-lightbox[hidden] { display: none; }
.pa-lightbox img { max-width: 85%; max-height: 85vh; object-fit: contain; border-radius: 4px; }
.pa-lb-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,0.1); border: 0; color: #fff; font-size: 26px; line-height: 1; cursor: pointer; }
.pa-lb-prev { left: 24px; } .pa-lb-next { right: 24px; }
.pa-lb-close { position: absolute; top: 24px; right: 24px; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); border: 0; color: #fff; font-size: 20px; cursor: pointer; }
.pa-lb-count { position: absolute; bottom: 24px; left: 0; right: 0; text-align: center; font-family: var(--body); font-size: 13px; color: rgba(255,255,255,0.5); }

/* Press / review links — a link (+ optional blurb) beside a small thumbnail; image side is
   chosen per item so rows can alternate left/right as they stack. */
.press-heading { font-size: 40px; letter-spacing: 2px; margin: 0 auto 28px; max-width: 880px; }
.press-list { max-width: 880px; margin: 0 auto; }
.press-item { display: flex; align-items: center; gap: 36px; padding: 28px 0; }
.press-item + .press-item { border-top: 1px solid var(--rule); }
.press-item--right { flex-direction: row; }        /* thumbnail on the right */
.press-item--left { flex-direction: row-reverse; }  /* thumbnail on the left */
.press-thumb { flex: 0 0 auto; width: 200px; display: block; }
.press-thumb img { width: 100%; height: auto; display: block; border-radius: 4px; border: 1px solid var(--rule); }
.press-body { flex: 1 1 auto; min-width: 0; }
.press-blurb { color: var(--text-2); font-size: calc(15px * var(--prose-scale, 1)); line-height: 1.65; margin: 0 0 12px; }
.press-link { font-family: var(--body); font-size: 15px; font-weight: 600; letter-spacing: 0.5px; color: var(--magenta); }
a.press-link { transition: color 0.15s; }
a.press-link:hover { color: #fff; }

/* ── Rich body copy + per-block text-size presets ──
   A size class on a section root sets --prose-scale; each prose element multiplies its own base
   font-size by it (default 1 = Normal). Inline rich text (from the editor) is wrapped in <p>; reset
   its margins so it sits flush in the field's container. */
.prose-sm { --prose-scale: 0.85; }
.prose-lg { --prose-scale: 1.22; }
.rich > p { margin: 0 0 0.7em; }
.rich > p:last-child { margin-bottom: 0; }
/* Absolute weight: the body is 300 (light), and bold defaults to `bolder`, which from 300
   resolves to 400 (not visibly bold). Force a real bold so it reads as bold. */
.rich strong, .rich b { font-weight: 700; }
.rich em, .rich i { font-style: italic; }
.rich a { color: var(--magenta); text-decoration: underline; text-underline-offset: 2px; }
.rich a:hover { color: #fff; }

@media (max-width: 820px) {
  .page-hd { padding: 32px 24px 0; }
  .feature-list { padding: 40px 24px 0; }
  .form-section { padding: 40px 24px 0; }
  .form-card { padding: 28px 22px; }
  .textimg { padding: 32px 24px 0; }
  .textimg-grid { grid-template-columns: 1fr; gap: 28px; }
  .findus { padding: 48px 24px 64px; }
  .findus-grid { grid-template-columns: 1fr; gap: 20px; }
  .pa { padding: 32px 24px 64px; }
  .pa-grid { grid-template-columns: 1fr; }
  .pa-mosaic { height: 200px; }
  .press-heading { font-size: 30px; }
  .press-item--left, .press-item--right { flex-direction: column; align-items: flex-start; gap: 16px; }
  .press-thumb { width: 100%; max-width: 260px; }
  .pa-photos { grid-template-columns: repeat(2, 1fr); }
  .pa-gallery-title { font-size: 38px; }
  .pa-card-title { font-size: 26px; }
  .pa-tabs { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 4px; }
  .pa-tab { flex: 0 0 auto; }
  .pa-lb-btn { width: 40px; height: 40px; font-size: 22px; }
  .pa-lb-prev { left: 8px; } .pa-lb-next { right: 8px; }
}
