:root {
  --paper: #f7f4ee; --white: #fff; --ink: #19191d; --muted: #625e58;
  --dark: #1c2023; --accent: #c5004b; --accent-hover: #9f003d;
  --gold: #92703a; --gold-light: #d6ad60; --line: #ddd6cb;
  --radius: 8px; --space-section: 88px; --container: 1280px;
  --body-font: Arial, Helvetica, sans-serif;
  --heading-font: Georgia, 'Times New Roman', serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.lp { margin: 0; background: var(--paper); color: var(--ink); font: 17px/1.65 var(--body-font); }
.lp img { max-width: 100%; height: auto; display: block; }
.lp a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 5px; }
.lp a:hover { color: var(--accent); }
.lp button, .lp input, .lp select, .lp textarea { font: inherit; }
.lp button, .lp select { cursor: pointer; }
.lp button:disabled { opacity: .45; cursor: not-allowed; }
.lp :focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }
.lp [hidden] { display: none !important; }
.lp h1, .lp h2, .lp h3 { font-family: var(--heading-font); line-height: 1.12; margin: 0 0 24px; letter-spacing: -.035em; }
.lp h1 { font-size: clamp(38px, 5vw, 64px); }
.lp h2 { font-size: clamp(28px, 3vw, 42px); }
.lp h3 { font-size: 25px; }
.lp p { margin: 0 0 22px; }
.lp small, .lp .small { font-size: 14px; }
.lp .container { width: min(var(--container), calc(100% - 96px)); margin-inline: auto; }
.lp .section { padding-block: var(--space-section); }
.lp .section--compact { padding-block: 48px; }
.lp .section + .section--flush { padding-top: 0; }
.lp .eyebrow { display: block; color: var(--gold); font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 16px; }
.lp .lead { font-size: 21px; line-height: 1.5; max-width: 680px; }
.lp .muted { color: var(--muted); }
.lp .text-link { color: var(--gold); font-size: 15px; font-weight: 600; }
.lp .actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 24px; margin-top: 28px; }
.lp .btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 12px 24px; min-height: 48px; border: 1px solid transparent; border-radius: 6px; background: var(--accent); color: white; font-size: 15px; font-weight: 700; text-decoration: none; line-height: 1.4; transition: background .18s, border-color .18s; }
.lp .btn:hover { background: var(--accent-hover); color: white; }
.lp .btn--outline { background: transparent; color: var(--ink); border-color: #837e75; }
.lp .btn--outline:hover { color: var(--accent); border-color: var(--accent); background: transparent; }
.lp .btn--light { background: transparent; border-color: #ded5c3; color: #fff; }
.lp .btn--light:hover { background: #ffffff14; color: white; }
.lp .icon-btn { min-width: 44px; min-height: 44px; display: inline-grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: transparent; font-size: 21px; color: inherit; }
.lp .icon-btn:hover { border-color: var(--accent); color: var(--accent); }
.lp .split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.lp .split--top { align-items: start; }
.lp .section-heading { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 32px; }
.lp .section-heading h2 { margin: 0; }
.lp .grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; }
.lp .grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 24px; }
.lp .panel { padding: 32px; border: 1px solid var(--line); background: var(--white); border-radius: var(--radius); }
.lp .panel > :last-child { margin-bottom: 0; }
.lp .dark { background: var(--dark); color: var(--paper); }
.lp .dark .eyebrow, .lp .dark .text-link { color: var(--gold-light); }
.lp .dark .muted { color: #c7c1b8; }
.lp .dark :focus-visible { outline-color: var(--gold-light); }
.lp .skip-link { position: fixed; left: 20px; top: -100px; padding: 12px 20px; background: white; z-index: 100; }
.lp .skip-link:focus { top: 12px; }
/* Shared shell: included only in index.html. */
.lp .site-header { background: var(--dark); color: white; position: relative; z-index: 20; }
.lp .header-inner { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.lp .brand { display: flex; gap: 16px; align-items: center; flex-shrink: 0; text-decoration: none; }
.lp .brand img { width: 112px; }
.lp .brand span { font-size: 10px; font-weight: 700; letter-spacing: .07em; max-width: 100px; }
.lp .site-nav { display: flex; align-items: center; gap: 24px; font-size: 13px; }
.lp .site-nav > a, .lp .site-nav summary { color: white; text-decoration: none; padding-block: 24px; list-style: none; cursor: pointer; }
.lp .site-nav summary::-webkit-details-marker { display: none; }
.lp .site-nav details { position: relative; }
.lp .site-nav summary::after { content: '⌄'; color: var(--gold-light); margin-left: 6px; }
.lp .site-nav .submenu { min-width: 230px; position: absolute; top: 100%; left: -18px; padding: 12px; background: var(--dark); border: 1px solid #555; border-radius: 6px; }
.lp .submenu a { display: block; color: white; padding: 8px 12px; text-decoration: none; }
.lp .submenu a:hover { background: #ffffff14; color: var(--gold-light); }
.lp .mobile-toggle { display: none; }
.lp .hero { position: relative; min-height: 590px; display: grid; align-items: center; overflow: hidden; color: white; background: var(--dark); }
.lp .hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.lp .hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, #000b, #0004 55%, #0001); }
.lp .hero-content { position: relative; z-index: 1; padding-block: 72px; }
.lp .hero h1 { font-family: var(--body-font); font-stretch: condensed; font-weight: 800; font-size: clamp(48px, 5.4vw, 78px); line-height: 1.03; letter-spacing: -.05em; max-width: 600px; }
.lp .hero .eyebrow { color: var(--gold-light); }
.lp .hero .contact-line { font-size: 15px; }
.lp .video-card { position: relative; display: block; overflow: hidden; border-radius: var(--radius); background: #222; }
.lp .video-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.lp .video-card::after { content: ''; position: absolute; inset: 0; background: #0002; }
.lp .play { position: absolute; z-index: 1; inset: 0; margin: auto; display: grid; place-items: center; width: 72px; height: 72px; color: white; background: #1c20235e; border: 2px solid #fff; border-radius: 50%; font-size: 26px; }
.lp .caption { font-size: 14px; margin-top: 12px; color: var(--muted); }
.lp .event-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 28px; }
.lp .event-card { background: #fff; border-radius: 6px; overflow: hidden; min-width: 0; }
.lp .event-card h3 { font: 700 19px/1.3 var(--body-font); letter-spacing: -.02em; margin: 0 0 12px; }
.lp .event-card h3 a { text-decoration: none; }
.lp .event-body { padding: 24px; }
.lp .poster { display: flex; aspect-ratio: 2/3; width: 100%; align-items: center; justify-content: center; background: #e6dfd3; text-decoration: none; overflow: hidden; }
.lp .poster img { width: 100%; height: 100%; object-fit: contain; }
.lp .poster--missing { flex-direction: column; padding: 28px; color: var(--paper); background: var(--dark); text-align: center; border-top: 4px solid var(--gold-light); }
.lp .poster--missing .poster-name { font: 700 clamp(22px,2vw,32px)/1.1 var(--heading-font); margin-bottom: 24px; }
.lp .poster--missing .poster-note { color: #d6cec0; font-size: 13px; }
.lp .poster--missing:hover { color: white; background: #262b30; }
.lp .event-meta { display: grid; gap: 5px; margin: 0 0 18px; font-size: 14px; color: var(--muted); }
.lp .event-meta time { color: var(--accent); font-size: 16px; font-weight: 700; }
.lp .event-track { display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 72px)/4); gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: thin; padding-bottom: 14px; }
.lp .event-track .event-card { scroll-snap-align: start; }
.lp .program-cta { text-align: center; padding-top: 44px; }
.lp .program-cta h3 { font-size: 24px; }
.lp .categories { display: grid; grid-template-columns: repeat(3,1fr); padding-bottom: 88px; gap: 48px; }
.lp .category { text-align: center; padding: 16px 32px; border-right: 1px solid var(--line); }
.lp .category:last-child { border-right: 0; }
.lp .category-icon { font-size: 30px; color: var(--gold); display: block; margin-bottom: 20px; }
.lp .category p { font-size: 16px; }
.lp .rental { display: grid; grid-template-columns: 1fr 1fr; }
.lp .rental-copy { padding: 72px max(48px,calc((100vw - 1280px)/2)); padding-right: 64px; }
.lp .rental > img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; }
.lp .partners { display: flex; align-items: center; justify-content: space-around; gap: 40px; padding-block: 44px; }
.lp .partners img { max-height: 72px; max-width: 170px; object-fit: contain; }
.lp .partners .eyebrow { margin: 0; }
.lp .gallery-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 12px; }
.lp .gallery-link { display: block; overflow: hidden; border-radius: 4px; }
.lp .gallery-link img { aspect-ratio: 4/3; width: 100%; object-fit: cover; transition: transform .2s; }
.lp .gallery-link:hover img { transform: scale(1.025); }
.lp .site-footer { background: var(--dark); color: var(--paper); padding-top: 64px; }
.lp .footer-grid { display: grid; grid-template-columns: .9fr 2.1fr; gap: 64px; }
.lp .footer-grid h2 { font: 700 20px/1.3 var(--body-font); letter-spacing: 0; }
.lp .footer-grid address { font-style: normal; font-size: 15px; color: #c7c1b8; }
.lp .footer-grid a { color: var(--gold-light); }
.lp .plan-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.lp .plan-cards img { background: #fff; padding: 8px; aspect-ratio: 3/2; object-fit: contain; width: 100%; }
.lp .plan-cards h3 { font: 500 15px/1.4 var(--body-font); letter-spacing: 0; margin: 12px 0 4px; }
.lp .footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px; margin-top: 48px; padding-block: 24px; border-top: 1px solid #555; font-size: 12px; color: #d3cdc4; }
/* Internal page content — no header or footer injection. */
.lp .breadcrumbs { display: flex; flex-wrap: wrap; gap: 9px; font-size: 14px; color: var(--muted); padding-block: 28px; }
.lp .breadcrumbs a { color: var(--gold); }
.lp .page-heading { padding: 24px 0 48px; }
.lp .page-heading > :last-child { margin-bottom: 0; }
.lp .page-content { padding-bottom: 88px; }
.lp .page-banner { position: relative; color: white; padding: 64px 0; background: var(--dark); }
.lp .page-banner > img { position: absolute; width: 100%; height: 100%; inset: 0; object-fit: cover; opacity: .4; }
.lp .page-banner .container { position: relative; }
.lp .page-banner h1 { margin: 0; }
.lp .article { max-width: 760px; }
.lp .article h2 { font-size: 30px; margin-top: 48px; }
.lp .article h3 { margin-top: 32px; }
.lp .article li { margin-block: 8px; }
.lp .document-layout { display: grid; grid-template-columns: 230px minmax(0,760px); gap: 64px; align-items: start; }
.lp .toc { position: sticky; top: 24px; border-left: 2px solid var(--line); padding: 8px 0 8px 24px; }
.lp .toc a { display: block; color: var(--gold); padding-block: 8px; font-size: 15px; }
.lp .document-layout .article h2:first-child { margin-top: 0; }
.lp .notice { background: #eee7d9; border-left: 3px solid var(--gold); padding: 18px 24px; font-size: 15px; margin-bottom: 32px; }
.lp .filters { display: grid; grid-template-columns: 1.4fr 1fr 1fr auto; gap: 16px; align-items: end; margin-bottom: 28px; }
.lp label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 7px; }
.lp input, .lp select, .lp textarea { width: 100%; padding: 12px 14px; color: var(--ink); background: white; border: 1px solid #8b8478; border-radius: 5px; min-height: 48px; }
.lp textarea { resize: vertical; min-height: 150px; }
.lp .field { margin-bottom: 24px; }
.lp .result-bar { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 32px; font-size: 14px; }
.lp .pagination { display: flex; gap: 10px; justify-content: center; margin-top: 40px; }
.lp .pagination button { min-width: 44px; min-height: 44px; border: 1px solid var(--line); background: white; border-radius: 5px; }
.lp .pagination button[aria-current] { background: var(--accent); color: white; }
.lp .event-detail { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0,1.1fr); gap: 64px; align-items: start; }
.lp .event-detail .poster { max-width: 480px; }
.lp .event-detail .event-meta { gap: 16px; font-size: 19px; }
.lp .event-detail .event-meta time { font-size: 25px; }
.lp .event-detail .actions { align-items: stretch; flex-direction: column; max-width: 400px; }
.lp .resources { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 24px; }
.lp .resource { border-top: 2px solid var(--gold-light); padding: 28px 20px; background: white; text-decoration: none; }
.lp .resource h3 { font-size: 23px; }
.lp .resource p { color: var(--muted); font-size: 15px; }
.lp .contact-band { padding: 40px; background: var(--dark); color: var(--paper); border-radius: var(--radius); margin-top: 48px; }
.lp .contact-band a { color: var(--gold-light); }
.lp .contact-band h2 { font-size: 30px; }
.lp .contact-band p:last-child { margin-bottom: 0; }
.lp .tabs { display: flex; flex-wrap: wrap; gap: 12px; border-bottom: 1px solid var(--line); margin-bottom: 32px; }
.lp .tabs button, .lp .tabs a { border: 0; border-bottom: 3px solid transparent; background: transparent; padding: 16px 20px; text-decoration: none; color: inherit; }
.lp .tabs [aria-selected=true], .lp .tabs [aria-current] { color: var(--accent); border-bottom-color: var(--accent); }
.lp .plan-viewer { background: white; padding: 40px; border: 1px solid var(--line); border-radius: var(--radius); }
.lp .plan-viewer img { max-height: 620px; margin: auto; object-fit: contain; }
.lp .plan-viewer .actions { justify-content: center; }
.lp .table-wrap { overflow-x: auto; }
.lp table { border-collapse: collapse; width: 100%; background: white; text-align: left; }
.lp th, .lp td { padding: 17px 24px; border-bottom: 1px solid var(--line); }
.lp th { background: #ebe5da; font-weight: 600; }
.lp td:first-child { white-space: nowrap; }
.lp .faq details { border-bottom: 1px solid var(--line); padding: 22px 0; }
.lp .faq summary { cursor: pointer; font-size: 20px; font-weight: 700; padding-right: 30px; }
.lp .faq details p { max-width: 780px; padding-top: 20px; margin: 0; }
.lp .map-placeholder { min-height: 340px; background: #e8e3da; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 40px; text-align: center; border-radius: var(--radius); }
.lp .map-placeholder .pin { font-size: 40px; color: var(--gold); }
.lp .media-frame { position: relative; background: var(--dark); border-radius: var(--radius); overflow: hidden; }
.lp .media-frame img { width: 100%; aspect-ratio: 16/9; object-fit: cover; opacity: .8; }
.lp .media-frame .media-cta { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.lp .media-frame iframe { display: block; width: 100%; aspect-ratio: 16/9; border: 0; }
.lp .empty-state { border: 1px dashed #a49a88; padding: 56px; text-align: center; border-radius: var(--radius); }
.lp .lightbox { width: min(1100px,calc(100% - 32px)); max-height: 94vh; background: var(--dark); color: white; border: 1px solid #888; border-radius: 8px; padding: 20px; }
.lp .lightbox::backdrop { background: #000c; }
.lp .lightbox img { max-height: 72vh; max-width: 100%; width: auto; margin: 12px auto; object-fit: contain; }
.lp .lightbox-bar { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.lp .lightbox a { color: var(--gold-light); }
.lp .cover-photo { width: 100%; aspect-ratio: 16/8; object-fit: cover; border-radius: var(--radius); }
.lp .photo-strip { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.lp .photo-strip img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 5px; }
.lp .badge { display: inline-block; padding: 5px 12px; background: #e9dcbd; color: #4e3a12; border-radius: 4px; font-size: 14px; }
.lp .form-status { padding: 18px 22px; border-left: 3px solid var(--gold); background: #eee7d9; }
.lp .checklist { list-style: none; padding: 0; }
.lp .checklist li { padding: 16px 0 16px 28px; position: relative; border-bottom: 1px solid var(--line); }
.lp .checklist li::before { content: '✓'; color: var(--gold); position: absolute; left: 0; }
@media (max-width: 1199px) {
  .lp .site-nav { gap: 15px; font-size: 12px; }
  .lp .brand span { display: none; }
  .lp .split, .lp .event-detail { gap: 40px; }
  .lp .resources { grid-template-columns: repeat(2,1fr); }
  .lp .rental-copy { padding: 48px; }
}
@media (max-width: 991px) {
  :root { --space-section: 64px; }
  .lp .container { width: calc(100% - 48px); }
  .lp .header-inner { min-height: 76px; }
  .lp .mobile-toggle { display: inline-flex; }
  .lp .site-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--dark); padding: 16px 24px 28px; }
  .lp .site-nav.is-open { display: block; }
  .lp .site-nav > a, .lp .site-nav summary { display: block; font-size: 16px; padding: 12px; }
  .lp .site-nav .submenu { position: static; margin: 0 12px 12px; border-color: #444; }
  .lp .event-grid { grid-template-columns: repeat(2,1fr); }
  .lp .event-track { grid-auto-columns: calc((100% - 24px)/2); }
  .lp .document-layout { grid-template-columns: 1fr; gap: 32px; }
  .lp .toc { position: static; }
  .lp .toc a { display: inline-block; margin-right: 20px; }
  .lp .filters { grid-template-columns: 1fr 1fr; }
  .lp .categories { gap: 16px; }
  .lp .category { padding: 8px 16px; }
  .lp .footer-grid { gap: 32px; grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  :root { --space-section: 48px; }
  body.lp { font-size: 16px; }
  .lp .container { width: calc(100% - 32px); }
  .lp .hero { min-height: 530px; }
  .lp .hero > img { object-position: 60% center; }
  .lp .hero::after { background: #0007; }
  .lp .hero-content { padding-block: 48px; }
  .lp .hero h1 { font-size: 48px; }
  .lp .lead { font-size: 19px; }
  .lp .split, .lp .rental, .lp .event-detail, .lp .grid-3, .lp .grid-2 { grid-template-columns: 1fr; gap: 32px; }
  .lp .event-grid { grid-template-columns: 1fr; }
  .lp .event-track { grid-auto-columns: min(86%,330px); gap: 16px; }
  .lp .event-card .poster { max-height: none; }
  .lp .section-heading { align-items: start; }
  .lp .categories { grid-template-columns: 1fr; padding-bottom: 48px; gap: 0; }
  .lp .category { padding: 28px 16px; border-right: 0; border-bottom: 1px solid var(--line); }
  .lp .category:last-child { border: 0; }
  .lp .rental { gap: 0; }
  .lp .rental-copy { padding: 48px 24px; }
  .lp .rental > img { min-height: 0; max-height: 300px; }
  .lp .partners { flex-wrap: wrap; gap: 24px; padding-block: 32px; }
  .lp .partners .eyebrow { width: 100%; text-align: center; }
  .lp .partners img { max-width: 120px; max-height: 60px; }
  .lp .gallery-grid { grid-template-columns: repeat(2,1fr); gap: 8px; }
  .lp .plan-cards { gap: 24px; grid-template-columns: 1fr; }
  .lp .plan-cards img { max-width: 340px; }
  .lp .footer-bottom { flex-direction: column; }
  .lp .filters, .lp .resources { grid-template-columns: 1fr; }
  .lp .result-bar { flex-wrap: wrap; }
  .lp .event-detail .poster { width: min(100%,400px); margin-inline: auto; }
  .lp .panel, .lp .contact-band { padding: 24px; }
  .lp .plan-viewer { padding: 16px; }
  .lp .tabs button, .lp .tabs a { padding: 12px; }
  .lp .photo-strip { grid-template-columns: 1fr; }
  .lp .page-heading { padding-top: 16px; }
  .lp th, .lp td { padding: 14px 16px; }
  .lp .empty-state { padding: 32px 20px; }
  .lp .lightbox-bar { flex-wrap: wrap; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .lp *, .lp *::before, .lp *::after { transition: none !important; animation: none !important; }
}
@media print {
  .lp .site-header, .lp .site-footer, .lp .toc, .lp button, .lp .breadcrumbs { display: none; }
  body.lp { color: black; background: white; font-size: 11pt; }
  .lp .container { width: 100%; }
  .lp .document-layout { display: block; }
  .lp .article { max-width: none; }
  .lp a { color: black; }
}
