:root {
  --rtps-black: #030303;
  --rtps-black-soft: #090909;
  --rtps-panel: #0d0d0d;
  --rtps-panel-2: #131313;
  --rtps-gold: #f3c34f;
  --rtps-gold-bright: #ffe08a;
  --rtps-gold-deep: #9d6813;
  --rtps-gold-dark: #4a2b00;
  --rtps-cream: #fff4d2;
  --rtps-white: #fffdf8;
  --rtps-muted: #b7b0a2;
  --rtps-line: rgba(243, 195, 79, 0.24);
  --rtps-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  --rtps-display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --rtps-sans: Inter, Helvetica, Arial, sans-serif;
  --rtps-serif: Georgia, "Times New Roman", serif;
  --rtps-shell: min(1180px, calc(100vw - 44px));
  --rtps-header-height: 104px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--rtps-black);
  color: var(--rtps-white);
  font-family: var(--rtps-sans);
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
::selection { background: var(--rtps-gold); color: #080500; }

.rtps-shell { width: var(--rtps-shell); margin-inline: auto; position: relative; z-index: 2; }
.rtps-site-main { min-height: 70vh; overflow: clip; }
.rtps-section { position: relative; padding: clamp(84px, 10vw, 150px) 0; }
.rtps-rich-copy > *:first-child { margin-top: 0; }
.rtps-rich-copy > *:last-child { margin-bottom: 0; }
.rtps-rich-copy p { color: #d6d0c4; }
.rtps-rich-copy a { color: var(--rtps-gold-bright); text-decoration-thickness: 1px; text-underline-offset: 4px; }

.rtps-skip-link {
  position: fixed; left: 16px; top: -100px; z-index: 99999;
  padding: 12px 18px; background: var(--rtps-gold); color: #000; font-weight: 800;
}
.rtps-skip-link:focus { top: 16px; }

.rtps-film-grain {
  pointer-events: none; position: fixed; inset: -50%; z-index: 9998; opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
  animation: rtpsGrain .22s steps(2) infinite;
}
@keyframes rtpsGrain { 0% { transform: translate(0,0); } 25% { transform: translate(2%, -3%); } 50% { transform: translate(-4%, 2%); } 75% { transform: translate(3%, 4%); } 100% { transform: translate(-2%, -2%); } }

.rtps-site-header {
  position: fixed; inset: 0 0 auto; z-index: 1000; height: var(--rtps-header-height);
  background: linear-gradient(180deg, rgba(2,2,2,.98), rgba(2,2,2,.88));
  border-bottom: 1px solid rgba(243,195,79,.12); backdrop-filter: blur(18px);
  transition: height .35s ease, background .35s ease, box-shadow .35s ease;
}
.rtps-site-header.is-scrolled { height: 82px; background: rgba(3,3,3,.96); box-shadow: 0 18px 50px rgba(0,0,0,.45); }
.rtps-header-line { position: absolute; inset: auto 0 0; height: 1px; background: linear-gradient(90deg, transparent, var(--rtps-gold), transparent); opacity: .55; }
.rtps-header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.rtps-brand { display: flex; align-items: center; position: relative; z-index: 4; }
.rtps-logo { display: block; }
.rtps-logo--header { width: clamp(210px, 26vw, 330px); max-height: 90px; object-fit: contain; transition: width .35s ease, filter .35s ease; filter: drop-shadow(0 0 14px rgba(243,195,79,.22)); }
.is-scrolled .rtps-logo--header { width: clamp(180px, 22vw, 280px); }
.rtps-primary-nav { display: flex; align-items: center; gap: clamp(18px, 2vw, 34px); }
.rtps-menu, .rtps-footer-menu { list-style: none; padding: 0; margin: 0; }
.rtps-menu { display: flex; align-items: center; gap: clamp(14px, 1.65vw, 28px); }
.rtps-menu li { position: relative; }
.rtps-menu a {
  position: relative; display: block; padding: 14px 0; text-decoration: none; color: #f3eee5;
  font-size: 12px; line-height: 1; letter-spacing: .18em; text-transform: uppercase; font-weight: 800;
  transition: color .25s ease;
}
.rtps-menu a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 7px; height: 1px; background: var(--rtps-gold); transition: right .3s ease; box-shadow: 0 0 12px var(--rtps-gold); }
.rtps-menu a:hover, .rtps-menu .current-menu-item > a { color: var(--rtps-gold-bright); }
.rtps-menu a:hover::after, .rtps-menu .current-menu-item > a::after { right: 0; }
.rtps-header-call { display: grid; line-height: 1.15; text-decoration: none; padding-left: 22px; border-left: 1px solid var(--rtps-line); }
.rtps-header-call span { color: var(--rtps-muted); font-size: 9px; letter-spacing: .22em; text-transform: uppercase; }
.rtps-header-call strong { color: var(--rtps-gold-bright); font-size: 14px; letter-spacing: .04em; }
.rtps-menu-toggle { display: none; width: 52px; height: 52px; padding: 0; color: #fff; background: rgba(255,255,255,.03); border: 1px solid var(--rtps-line); border-radius: 50%; cursor: pointer; }
.rtps-menu-toggle__label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.rtps-menu-toggle__icon { width: 20px; margin: auto; display: grid; gap: 5px; }
.rtps-menu-toggle__icon i { display: block; height: 1px; background: var(--rtps-gold-bright); transition: transform .3s ease, opacity .3s ease; }
.menu-open .rtps-menu-toggle__icon i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-open .rtps-menu-toggle__icon i:nth-child(2) { opacity: 0; }
.menu-open .rtps-menu-toggle__icon i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.rtps-hero {
  min-height: 100svh; padding: calc(var(--rtps-header-height) + 18px) 0 74px; display: grid; align-items: start;
  position: relative; isolation: isolate; overflow: hidden;
  background:
    radial-gradient(circle at 50% 20%, rgba(243,195,79,.12), transparent 34%),
    radial-gradient(circle at 10% 68%, rgba(159,95,8,.12), transparent 30%),
    linear-gradient(140deg, #020202 0%, #090704 52%, #020202 100%);
}
.rtps-hero-bg-video { position: absolute; inset: 0; z-index: -3; overflow: hidden; }
.rtps-hero-bg-video::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.32), rgba(0,0,0,.56)); }
.rtps-hero-bg-video video { width: 100%; height: 100%; object-fit: cover; opacity: .62; filter: saturate(1.1) brightness(.58) contrast(1.04); transform: scale(1.04); }
.rtps-stars { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: -1;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpolygon points='50,2 61,35 96,35 68,57 79,91 50,71 21,91 32,57 4,35 39,35' fill='%23f8d77b' fill-opacity='.92'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpolygon points='50,2 61,35 96,35 68,57 79,91 50,71 21,91 32,57 4,35 39,35' fill='%23ffefbf' fill-opacity='.88'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpolygon points='50,2 61,35 96,35 68,57 79,91 50,71 21,91 32,57 4,35 39,35' fill='%23f3c34f' fill-opacity='.82'/%3E%3C/svg%3E"),
    radial-gradient(circle at 20% 18%, rgba(243,195,79,.14), transparent 18%),
    radial-gradient(circle at 82% 24%, rgba(243,195,79,.12), transparent 15%),
    radial-gradient(circle at 50% 64%, rgba(243,195,79,.08), transparent 14%);
  background-repeat: repeat;
  background-position: 0 0, 80px 55px, 160px 10px, 0 0, 0 0, 0 0;
  background-size: 128px 128px, 168px 168px, 220px 220px, auto, auto, auto;
  opacity: .78;
  animation: rtpsStars 30s linear infinite;
}
.rtps-stars::before, .rtps-stars::after { content: ""; position: absolute; background: linear-gradient(180deg, #fff6ce 0%, #f7cf67 56%, #a96a0c 100%); clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 71%, 21% 91%, 32% 57%, 2% 35%, 39% 35%); box-shadow: 0 0 18px rgba(243,195,79,.62); opacity: .88; animation: rtpsTwinkle 4.2s ease-in-out infinite; }
.rtps-stars::before { top: 21%; left: 16%; width: 14px; height: 14px; }
.rtps-stars::after { top: 61%; right: 13%; width: 18px; height: 18px; animation-delay: -1.8s; }
@keyframes rtpsStars { to { background-position: 54px 100px, -48px 72px, 76px -64px, 0 0, 0 0, 0 0; } }
@keyframes rtpsTwinkle { 0%,100% { transform: scale(.75) rotate(0deg); opacity: .34; } 50% { transform: scale(1.08) rotate(10deg); opacity: 1; } }
.rtps-hero::after { content: ""; position: absolute; inset: auto 0 0; height: 25%; background: linear-gradient(0deg, #030303, transparent); pointer-events: none; }
.rtps-hero-inner { display: grid; gap: clamp(20px, 3.4vw, 36px); align-items: start; justify-items: center; text-align: center; padding-top: 8px; }
.rtps-hero-video-wrap { width: min(100%, 1120px); margin-inline: auto; }
.rtps-section-heading--hero-video { margin-bottom: 20px; max-width: 960px; }
.rtps-hero-copy { max-width: 860px; margin-inline: auto; }
.rtps-eyebrow { margin: 0 0 18px; color: var(--rtps-gold-bright); font-size: 11px; line-height: 1.3; font-weight: 900; letter-spacing: .34em; text-transform: uppercase; }
.rtps-hero h1, .rtps-page-masthead h1, .rtps-section-heading h2, .rtps-manifesto h2, .rtps-talent-call h2, .rtps-screenplay h2, .rtps-form-sidebar h2, .rtps-contact-panel h2, .rtps-sponsor-cta h2, .rtps-error-page h1 {
  margin: 0; font-family: var(--rtps-display); text-transform: uppercase; line-height: .92; letter-spacing: .01em;
}
.rtps-hero h1 { max-width: 760px; font-size: clamp(56px, 7.4vw, 108px); text-wrap: balance; background: linear-gradient(180deg, #fff9e8 2%, #f8d979 42%, #c78013 70%, #fff0ad 100%); -webkit-background-clip: text; background-clip: text; color: transparent; text-shadow: 0 10px 40px rgba(0,0,0,.55); }
.rtps-hero-copy > p:not(.rtps-eyebrow) { max-width: 620px; margin: 28px 0 0; color: #d8d0c0; font-size: clamp(17px, 1.55vw, 21px); }
.rtps-button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; justify-content: center; }
.rtps-button { position: relative; display: inline-flex; align-items: center; justify-content: center; min-height: 58px; padding: 0 29px; border: 1px solid transparent; overflow: hidden; text-decoration: none; cursor: pointer; text-transform: uppercase; letter-spacing: .15em; font-size: 11px; line-height: 1; font-weight: 900; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, color .25s ease; }
.rtps-button::before { content: ""; position: absolute; inset: 0; transform: translateX(-110%) skewX(-18deg); width: 55%; background: rgba(255,255,255,.42); filter: blur(3px); transition: transform .55s ease; }
.rtps-button:hover::before { transform: translateX(230%) skewX(-18deg); }
.rtps-button:hover { transform: translateY(-3px); }
.rtps-button span { position: relative; z-index: 1; }
.rtps-button--gold { color: #080500; border-color: #f2ca61; background: linear-gradient(135deg, #9f650d 0%, #f7d46c 38%, #fff1ac 53%, #bc7810 100%); box-shadow: 0 12px 40px rgba(193,121,11,.28), inset 0 1px 0 rgba(255,255,255,.55); }
.rtps-button--gold:hover { box-shadow: 0 18px 52px rgba(243,195,79,.42), 0 0 28px rgba(243,195,79,.18); }
.rtps-button--ghost { color: #f6eddc; border-color: rgba(243,195,79,.36); background: rgba(255,255,255,.02); }
.rtps-button--ghost:hover { color: var(--rtps-gold-bright); border-color: var(--rtps-gold); }
.rtps-button--wide { width: 100%; }
.rtps-scroll-cue { position: absolute; z-index: 3; left: 50%; bottom: 25px; transform: translateX(-50%); display: grid; justify-items: center; gap: 8px; color: #8f877a; font-size: 8px; font-weight: 800; letter-spacing: .25em; }
.rtps-scroll-cue span { width: 1px; height: 38px; background: linear-gradient(var(--rtps-gold), transparent); animation: rtpsScroll 1.8s ease-in-out infinite; }
@keyframes rtpsScroll { 0%,100% { transform: scaleY(.4); transform-origin: top; opacity: .45; } 50% { transform: scaleY(1); opacity: 1; } }
.rtps-hero-beam { position: absolute; z-index: -1; width: 42vw; height: 130vh; top: -25vh; background: linear-gradient(90deg, transparent, rgba(243,195,79,.06), transparent); filter: blur(18px); transform: rotate(18deg); animation: rtpsBeam 9s ease-in-out infinite alternate; }
.rtps-hero-beam--one { left: -25vw; }
.rtps-hero-beam--two { right: -22vw; transform: rotate(-19deg); animation-delay: -4s; }
@keyframes rtpsBeam { to { transform: translateX(14vw) rotate(23deg); opacity: .45; } }
.rtps-orbit { position: absolute; border: 1px solid rgba(243,195,79,.11); border-radius: 50%; z-index: -1; }
.rtps-orbit::after { content: ""; position: absolute; top: 12%; left: 17%; width: 7px; height: 7px; border-radius: 50%; background: var(--rtps-gold-bright); box-shadow: 0 0 16px var(--rtps-gold); }
.rtps-orbit-one { width: 620px; height: 620px; right: -260px; top: 17%; animation: rtpsOrbit 23s linear infinite; }
.rtps-orbit-two { width: 360px; height: 360px; left: -150px; bottom: 7%; animation: rtpsOrbit 17s linear infinite reverse; }
@keyframes rtpsOrbit { to { transform: rotate(360deg); } }

.rtps-video-section { background: #030303; }
.rtps-section-heading { max-width: 840px; margin-bottom: 52px; }
.rtps-section-heading--center { margin-inline: auto; text-align: center; }
.rtps-section-heading h2 { font-size: clamp(54px, 8vw, 116px); color: #fff8e8; }
.rtps-section-heading > p:not(.rtps-eyebrow) { color: var(--rtps-muted); font-size: 18px; }
.rtps-section-heading--split { max-width: none; display: grid; grid-template-columns: 1fr .72fr; align-items: end; gap: 50px; }
.rtps-section-heading--split > p { margin: 0 0 8px; }
.rtps-video-stage { position: relative; width: min(100%, 1080px); margin-inline: auto; perspective: 1200px; }
.rtps-video-stage--hero { width: min(100%, 1120px); }
.rtps-video-frame { position: relative; aspect-ratio: 16/9; padding: 9px; background: linear-gradient(135deg, #7c4a03, #ffe68b 32%, #8e5608 68%, #ffe8a3); box-shadow: 0 35px 100px rgba(0,0,0,.8), 0 0 70px rgba(243,195,79,.14); transform: rotateX(1.2deg); }
.rtps-video-frame::before { content: ""; position: absolute; inset: 9px; z-index: 1; pointer-events: none; box-shadow: inset 0 0 55px rgba(0,0,0,.55); }
.rtps-video-frame iframe { position: relative; z-index: 0; display: block; width: 100%; height: 100%; border: 0; background: #000; }
.rtps-video-corners::before, .rtps-video-corners::after { content: ""; position: absolute; z-index: 3; width: 54px; height: 54px; pointer-events: none; }
.rtps-video-corners::before { left: -10px; top: -10px; border-left: 2px solid #fff1b0; border-top: 2px solid #fff1b0; }
.rtps-video-corners::after { right: -10px; bottom: -10px; border-right: 2px solid #fff1b0; border-bottom: 2px solid #fff1b0; }
.rtps-video-reflection { width: 90%; height: 70px; margin: -1px auto 0; background: linear-gradient(180deg, rgba(243,195,79,.13), transparent 70%); filter: blur(18px); transform: perspective(500px) rotateX(68deg); transform-origin: top; }

.rtps-manifesto { background:
  linear-gradient(90deg, transparent 49.95%, rgba(243,195,79,.13) 50%, transparent 50.05%),
  radial-gradient(circle at 25% 30%, rgba(243,195,79,.08), transparent 28%), #080705;
  border-block: 1px solid rgba(243,195,79,.08);
}
.rtps-manifesto-grid, .rtps-two-column { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 8vw, 130px); align-items: start; }
.rtps-manifesto h2 { font-size: clamp(52px, 6.5vw, 90px); color: #fff5da; }
.rtps-manifesto-copy p { margin-top: 0; color: #d5cdbf; font-size: 18px; }
.rtps-manifesto-copy p + p { margin-top: 30px; }

.rtps-disciplines { background: #030303; }
.rtps-discipline-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--rtps-line); border-left: 1px solid var(--rtps-line); }
.rtps-discipline-card { min-height: 390px; padding: 34px 30px 38px; border-right: 1px solid var(--rtps-line); border-bottom: 1px solid var(--rtps-line); position: relative; overflow: hidden; transition: background .35s ease, transform .35s ease; }
.rtps-discipline-card::before { content: ""; position: absolute; inset: auto -20% -45% 10%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(243,195,79,.14), transparent 65%); transition: transform .45s ease, opacity .45s ease; opacity: .2; }
.rtps-discipline-card:hover { background: linear-gradient(155deg, rgba(243,195,79,.10), rgba(255,255,255,.015)); transform: translateY(-8px); }
.rtps-discipline-card:hover::before { transform: scale(1.3); opacity: .8; }
.rtps-card-number { color: #776d5e; font-size: 10px; letter-spacing: .2em; }
.rtps-card-icon { display: block; margin-top: 82px; color: var(--rtps-gold-bright); font-size: 34px; text-shadow: 0 0 22px rgba(243,195,79,.5); }
.rtps-card-icon--play { width: 64px; height: 64px; display: grid; place-items: center; margin-top: 64px; border-radius: 50%; background: radial-gradient(circle at 30% 30%, #fff2b8, #f3c34f 42%, #a7650b 82%); box-shadow: 0 0 28px rgba(243,195,79,.28), inset 0 1px 0 rgba(255,255,255,.55); }
.rtps-card-icon__triangle { width: 0; height: 0; margin-left: 5px; border-top: 12px solid transparent; border-bottom: 12px solid transparent; border-left: 19px solid #2b1800; filter: drop-shadow(0 0 6px rgba(0,0,0,.16)); }
.rtps-discipline-card h3 { margin: 20px 0 12px; font-family: var(--rtps-display); font-size: 43px; line-height: 1; text-transform: uppercase; color: #fff3d4; }
.rtps-discipline-card p { position: relative; margin: 0; color: #aaa295; font-size: 15px; }

.rtps-talent-call { overflow: hidden; background: linear-gradient(120deg, #6e4107, #f1c85e 42%, #9b610d 70%, #3e2200); color: #080500; }
.rtps-talent-call::before { content: ""; position: absolute; inset: 0; opacity: .15; background-image: linear-gradient(135deg, rgba(255,255,255,.8) 1px, transparent 1px); background-size: 18px 18px; }
.rtps-talent-lines { position: absolute; inset: -40% -10%; opacity: .25; background: repeating-radial-gradient(ellipse at center, transparent 0 28px, rgba(0,0,0,.4) 29px 30px); transform: rotate(-12deg); }
.rtps-talent-call__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(55px, 9vw, 150px); align-items: center; }
.rtps-talent-call .rtps-eyebrow { color: #2d1900; }
.rtps-talent-call h2 { font-size: clamp(58px, 7vw, 100px); color: #080500; }
.rtps-talent-call p { font-weight: 650; color: #251603; }
.rtps-talent-call .rtps-button { margin-top: 22px; background: #050403; color: var(--rtps-gold-bright); border-color: #050403; box-shadow: 0 18px 45px rgba(0,0,0,.25); }

.rtps-event-preview { background: radial-gradient(circle at 80% 20%, rgba(243,195,79,.08), transparent 30%), #080808; }
.rtps-text-link { display: inline-flex; align-items: center; gap: 12px; color: var(--rtps-gold-bright); text-decoration: none; text-transform: uppercase; font-size: 10px; letter-spacing: .18em; font-weight: 850; }
.rtps-arrow { display: inline-flex; align-items: center; justify-content: center; margin-left: 4px; color: var(--rtps-gold); font-size: 21px; line-height: 1; font-weight: 900; text-shadow: 0 0 16px rgba(243,195,79,.55); transition: transform .25s ease, text-shadow .25s ease, color .25s ease; }
.rtps-text-link:hover .rtps-arrow,
.rtps-contact-line a:hover .rtps-arrow,
.rtps-circle-link:hover .rtps-arrow { transform: translateX(6px); text-shadow: 0 0 24px rgba(243,195,79,.78); }
.rtps-featured-event { display: grid; grid-template-columns: 180px 1fr auto; gap: 42px; align-items: center; padding: 34px; border: 1px solid var(--rtps-line); background: linear-gradient(110deg, rgba(243,195,79,.08), rgba(255,255,255,.01)); position: relative; overflow: hidden; }
.rtps-featured-event::after { content: "LIVE"; position: absolute; right: 9%; top: 50%; transform: translateY(-50%); color: rgba(243,195,79,.035); font-family: var(--rtps-display); font-size: 180px; line-height: 1; }
.rtps-featured-event__date { width: 150px; aspect-ratio: 1; display: grid; place-items: center; align-content: center; background: linear-gradient(135deg, #a96b0d, #ffe697 50%, #9f6208); color: #080500; box-shadow: 0 20px 55px rgba(0,0,0,.45); }
.rtps-featured-event__date span { font-family: var(--rtps-display); font-size: 72px; line-height: .9; }
.rtps-featured-event__date small { font-size: 10px; letter-spacing: .16em; font-weight: 900; text-transform: uppercase; }
.rtps-featured-event__body { position: relative; z-index: 1; }
.rtps-featured-event__body h3 { margin: 0; max-width: 760px; font-family: var(--rtps-display); font-size: clamp(36px, 4.3vw, 62px); line-height: .98; text-transform: uppercase; color: #fff4d7; }
.rtps-featured-event__body > p:last-child { margin-bottom: 0; color: var(--rtps-muted); }
.rtps-circle-link { position: relative; z-index: 2; width: 64px; height: 64px; border: 1px solid var(--rtps-line); border-radius: 50%; display: grid; place-items: center; text-decoration: none; color: var(--rtps-gold-bright); font-size: 26px; transition: background .3s ease, color .3s ease, transform .3s ease, box-shadow .3s ease; }
.rtps-circle-link .rtps-arrow { margin-left: 0; font-size: 27px; }
.rtps-circle-link:hover { background: linear-gradient(135deg, #9f650d 0%, #f7d46c 38%, #fff1ac 53%, #bc7810 100%); color: #000; transform: translateY(-3px); box-shadow: 0 16px 36px rgba(243,195,79,.24); }

.rtps-screenplay { background: #030303; }
.rtps-screenplay__inner { min-height: 430px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; padding: clamp(36px, 6vw, 80px); border: 1px solid var(--rtps-line); overflow: hidden; background: linear-gradient(135deg, rgba(243,195,79,.08), rgba(255,255,255,.01)); }
.rtps-screenplay-mark { font-family: var(--rtps-display); font-size: clamp(80px, 14vw, 210px); line-height: .8; color: transparent; -webkit-text-stroke: 1px rgba(243,195,79,.24); transform: rotate(-8deg); text-shadow: 0 0 35px rgba(243,195,79,.08); }
.rtps-screenplay h2 { font-size: clamp(49px, 5.8vw, 82px); }
.rtps-screenplay p { color: #bbb2a3; }
.rtps-screenplay a { color: var(--rtps-gold-bright); }

.rtps-page-masthead { min-height: 620px; padding: calc(var(--rtps-header-height) + 90px) 0 100px; display: grid; align-items: end; position: relative; overflow: hidden; isolation: isolate; background: radial-gradient(circle at 70% 25%, rgba(243,195,79,.18), transparent 32%), linear-gradient(145deg, #020202, #0d0903 52%, #030303); }
.rtps-page-masthead::after { content: ""; position: absolute; inset: auto 0 0; height: 45%; background: linear-gradient(0deg, #030303, transparent); }
.rtps-page-masthead__inner { z-index: 2; }
.rtps-page-masthead h1 { max-width: 1000px; font-size: clamp(70px, 12vw, 160px); color: #fff3ce; text-shadow: 0 18px 55px rgba(0,0,0,.65); }
.rtps-page-lead { max-width: 760px; color: #ccc4b7; font-size: clamp(18px, 2vw, 24px); }

.rtps-submission-intro { background: #050505; }
.rtps-two-column h2 { margin: 0; font-family: var(--rtps-display); font-size: clamp(52px, 6vw, 86px); line-height: .96; text-transform: uppercase; color: #fff4d5; }
.rtps-form-section, .rtps-contact-section { background: radial-gradient(circle at 8% 20%, rgba(243,195,79,.09), transparent 30%), #080808; border-top: 1px solid rgba(243,195,79,.08); }
.rtps-form-layout, .rtps-contact-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(40px, 7vw, 100px); align-items: start; }
.rtps-form-sidebar, .rtps-contact-panel { position: sticky; top: 130px; }
.rtps-form-sidebar h2, .rtps-contact-panel h2 { font-size: clamp(50px, 6vw, 84px); color: #fff2d1; }
.rtps-check-list { list-style: none; padding: 0; margin: 42px 0; display: grid; gap: 18px; }
.rtps-check-list li { display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: start; color: #beb5a7; }
.rtps-check-list span { color: var(--rtps-gold-bright); font-size: 10px; letter-spacing: .15em; padding-top: 5px; }
.rtps-script-note { margin-top: 45px; padding: 24px; border-left: 2px solid var(--rtps-gold); background: rgba(243,195,79,.05); }
.rtps-script-note strong { color: var(--rtps-gold-bright); text-transform: uppercase; font-size: 12px; letter-spacing: .15em; }
.rtps-script-note p { margin-bottom: 0; color: #a9a093; font-size: 14px; }
.rtps-script-note a { color: var(--rtps-gold-bright); }
.rtps-form-card { padding: clamp(28px, 5vw, 58px); border: 1px solid var(--rtps-line); background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.012)); box-shadow: var(--rtps-shadow); }
.rtps-form { display: grid; gap: 23px; }
.rtps-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.rtps-field { display: grid; gap: 9px; }
.rtps-field > span { color: #e8dfcf; font-size: 10px; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.rtps-field input, .rtps-field select, .rtps-field textarea { width: 100%; border: 1px solid rgba(243,195,79,.17); border-radius: 0; outline: 0; background: rgba(0,0,0,.38); color: #fff; padding: 15px 16px; transition: border-color .25s ease, box-shadow .25s ease, background .25s ease; }
.rtps-field input, .rtps-field select { min-height: 56px; }
.rtps-field textarea { resize: vertical; min-height: 130px; }
.rtps-field select option { background: #111; color: #fff; }
.rtps-field input:focus, .rtps-field select:focus, .rtps-field textarea:focus { border-color: var(--rtps-gold); background: rgba(243,195,79,.04); box-shadow: 0 0 0 3px rgba(243,195,79,.08), 0 0 30px rgba(243,195,79,.06); }
.rtps-file-field { position: relative; min-height: 145px; padding: 26px; border: 1px dashed rgba(243,195,79,.38); align-content: center; text-align: center; cursor: pointer; background: rgba(243,195,79,.025); }
.rtps-file-field input { position: absolute; inset: 0; opacity: 0; cursor: pointer; min-height: 0; }
.rtps-file-field strong { color: var(--rtps-gold-bright); font-size: 16px; }
.rtps-file-field small { color: #8f877a; }
.rtps-consent { display: flex; gap: 12px; align-items: flex-start; color: #9e9588; font-size: 13px; }
.rtps-consent input { margin-top: 5px; accent-color: var(--rtps-gold); }
.rtps-honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; }
.rtps-notice { margin-bottom: 26px; padding: 16px 18px; border: 1px solid; font-size: 14px; }
.rtps-notice--success { color: #d9ffd7; border-color: rgba(89,212,92,.45); background: rgba(55,155,58,.12); }
.rtps-notice--warning { color: #fff1bb; border-color: rgba(243,195,79,.5); background: rgba(243,195,79,.09); }
.rtps-notice--error { color: #ffd8d8; border-color: rgba(226,86,86,.5); background: rgba(179,34,34,.12); }

.rtps-events-section { background: #040404; }
.rtps-events-list { display: grid; gap: 20px; }
.rtps-event-card { display: grid; grid-template-columns: 150px 1fr 210px; gap: 38px; align-items: center; padding: 28px; border: 1px solid var(--rtps-line); background: linear-gradient(120deg, rgba(243,195,79,.055), rgba(255,255,255,.012)); transition: transform .3s ease, border-color .3s ease; }
.rtps-event-card:hover { transform: translateX(7px); border-color: rgba(243,195,79,.48); }
.rtps-event-card__date { min-height: 155px; display: grid; align-content: center; justify-items: center; border-right: 1px solid var(--rtps-line); }
.rtps-event-card__date span { font-family: var(--rtps-display); color: var(--rtps-gold-bright); font-size: 74px; line-height: .8; }
.rtps-event-card__date small { margin-top: 12px; color: #8d8477; font-size: 9px; letter-spacing: .18em; }
.rtps-event-meta { display: flex; flex-wrap: wrap; gap: 14px; color: var(--rtps-gold-bright); font-size: 9px; letter-spacing: .17em; font-weight: 850; }
.rtps-event-card__content h2 { margin: 12px 0 10px; font-family: var(--rtps-display); font-size: clamp(36px, 4vw, 58px); line-height: .95; text-transform: uppercase; color: #fff3d4; }
.rtps-event-time, .rtps-event-location { color: #b9b0a2; }
.rtps-event-card__action { display: flex; justify-content: flex-end; }
.rtps-event-status { color: #7d7569; text-align: right; font-size: 9px; letter-spacing: .17em; font-weight: 800; }
.rtps-archive-callout { background: linear-gradient(135deg, #8b5609, #f1c65b 45%, #7d4805); color: #080500; }
.rtps-archive-callout__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.rtps-archive-callout .rtps-eyebrow { color: #241300; }
.rtps-archive-callout h2 { margin: 0; font-family: var(--rtps-display); font-size: clamp(50px, 6vw, 85px); line-height: .95; text-transform: uppercase; }
.rtps-archive-callout p { font-weight: 650; }

.rtps-sponsors-section { background: #040404; }
.rtps-sponsor-intro { margin-bottom: 70px; }
.rtps-sponsor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.rtps-sponsor-card { min-height: 240px; display: grid; place-items: center; border: 1px solid var(--rtps-line); background: linear-gradient(145deg, rgba(243,195,79,.055), rgba(255,255,255,.01)); position: relative; overflow: hidden; transition: transform .3s ease, border-color .3s ease; }
.rtps-sponsor-card::before { content: ""; position: absolute; inset: -70%; background: conic-gradient(transparent, rgba(243,195,79,.18), transparent 30%); animation: rtpsSponsorSpin 8s linear infinite; opacity: .35; }
@keyframes rtpsSponsorSpin { to { transform: rotate(360deg); } }
.rtps-sponsor-card:hover { transform: translateY(-7px); border-color: rgba(243,195,79,.52); }
.rtps-sponsor-card > a, .rtps-sponsor-card > div { position: relative; z-index: 1; width: 100%; min-height: 238px; padding: 35px; display: grid; place-items: center; text-decoration: none; }
.rtps-sponsor-card img { max-width: 76%; max-height: 130px; object-fit: contain; filter: grayscale(1) brightness(1.3); transition: filter .3s ease, transform .3s ease; }
.rtps-sponsor-card:hover img { filter: grayscale(0) brightness(1); transform: scale(1.04); }
.rtps-sponsor-name { font-family: var(--rtps-display); font-size: 38px; text-align: center; color: #fff0c9; text-transform: uppercase; }
.rtps-sponsor-card--placeholder { align-content: center; text-align: center; color: #6e675d; }
.rtps-sponsor-card--placeholder span { font-family: var(--rtps-display); font-size: 42px; color: rgba(243,195,79,.38); }
.rtps-sponsor-card--placeholder small { font-size: 9px; text-transform: uppercase; letter-spacing: .18em; }
.rtps-sponsor-cta { background: #0a0805; }
.rtps-sponsor-cta__inner { display: grid; grid-template-columns: 1fr .8fr; gap: 80px; align-items: center; padding: clamp(38px, 7vw, 84px); border: 1px solid var(--rtps-line); background: radial-gradient(circle at 8% 25%, rgba(243,195,79,.14), transparent 30%); }
.rtps-sponsor-cta h2 { font-size: clamp(50px, 6vw, 84px); }
.rtps-sponsor-cta p { color: #bbb2a5; }

.rtps-contact-grid { grid-template-columns: .85fr 1.15fr; }
.rtps-contact-line { display: grid; gap: 3px; padding: 24px 0; border-bottom: 1px solid var(--rtps-line); }
.rtps-contact-line span { color: #81786c; font-size: 9px; letter-spacing: .22em; font-weight: 850; }
.rtps-contact-line a { color: var(--rtps-gold-bright); font-size: clamp(18px, 2vw, 28px); text-decoration: none; word-break: break-word; }
.rtps-contact-note { color: #8e867a; margin-top: 35px; font-size: 14px; }

.rtps-content-section { background: #050505; }
.rtps-content-card, .rtps-article { max-width: 920px; padding: clamp(28px, 6vw, 70px); border: 1px solid var(--rtps-line); background: rgba(255,255,255,.02); }
.rtps-content-card h2, .rtps-article h2 { color: var(--rtps-gold-bright); font-family: var(--rtps-display); font-size: 45px; text-transform: uppercase; }
.rtps-post-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.rtps-post-card { border: 1px solid var(--rtps-line); background: rgba(255,255,255,.02); overflow: hidden; }
.rtps-post-card__image { display: block; aspect-ratio: 16/10; overflow: hidden; }
.rtps-post-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.rtps-post-card:hover img { transform: scale(1.05); }
.rtps-post-card__body { padding: 30px; }
.rtps-post-card h2 { margin: 0 0 12px; font-family: var(--rtps-display); font-size: 42px; line-height: .95; text-transform: uppercase; }
.rtps-post-card h2 a { text-decoration: none; }
.rtps-post-card p { color: #aaa194; }
.rtps-pagination { grid-column: 1 / -1; }
.rtps-pagination .nav-links { display: flex; gap: 8px; justify-content: center; }
.rtps-pagination a, .rtps-pagination span { min-width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--rtps-line); text-decoration: none; }
.rtps-pagination .current { background: var(--rtps-gold); color: #000; }
.rtps-article__image { margin: calc(clamp(28px, 6vw, 70px) * -1) calc(clamp(28px, 6vw, 70px) * -1) 48px; }
.rtps-article__image img { width: 100%; display: block; }
.rtps-event-single { display: grid; grid-template-columns: .65fr 1.35fr; gap: 70px; }
.rtps-event-single__details { padding: 35px; border: 1px solid var(--rtps-line); background: rgba(243,195,79,.04); }
.rtps-event-single__details p { display: grid; gap: 8px; padding-bottom: 20px; border-bottom: 1px solid var(--rtps-line); }
.rtps-event-single__details span { color: #827a6e; font-size: 9px; letter-spacing: .18em; text-transform: uppercase; }
.rtps-event-single__details strong { color: #fff0c8; }
.rtps-empty-state { padding: 70px; border: 1px dashed var(--rtps-line); text-align: center; color: var(--rtps-muted); }
.rtps-empty-state h2 { font-family: var(--rtps-display); font-size: 48px; text-transform: uppercase; color: #fff1cc; }
.rtps-error-page { min-height: 100svh; display: grid; place-items: center; padding: calc(var(--rtps-header-height) + 60px) 0 80px; position: relative; isolation: isolate; background: radial-gradient(circle, rgba(243,195,79,.13), transparent 38%), #030303; }
.rtps-error-page__inner { max-width: 900px; text-align: center; }
.rtps-error-page h1 { font-size: clamp(70px, 12vw, 150px); color: #fff2cd; }
.rtps-error-page p:not(.rtps-eyebrow) { color: var(--rtps-muted); font-size: 20px; }

.rtps-site-footer { position: relative; padding: 90px 0 30px; background: #020202; border-top: 1px solid rgba(243,195,79,.12); overflow: hidden; }
.rtps-footer-glow { position: absolute; width: 900px; height: 450px; left: 50%; top: -350px; transform: translateX(-50%); border-radius: 50%; background: radial-gradient(circle, rgba(243,195,79,.18), transparent 70%); filter: blur(20px); }
.rtps-footer-top { display: grid; grid-template-columns: 1fr .6fr; gap: 80px; align-items: end; padding-bottom: 65px; }
.rtps-logo--footer { width: min(100%, 500px); filter: drop-shadow(0 0 25px rgba(243,195,79,.2)); }
.rtps-footer-brand p { margin: 25px 0 0; color: #8a8277; font-size: 10px; letter-spacing: .18em; font-weight: 850; }
.rtps-footer-contact { display: grid; justify-items: start; }
.rtps-footer-contact > a { color: #fff0c6; font-size: clamp(18px, 2vw, 28px); text-decoration: none; }
.rtps-social-links { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 20px; }
.rtps-social-links a { color: var(--rtps-gold-bright); font-size: 10px; letter-spacing: .15em; text-transform: uppercase; }
.rtps-footer-bottom { display: flex; justify-content: space-between; gap: 30px; align-items: center; padding-top: 26px; border-top: 1px solid rgba(243,195,79,.12); }
.rtps-footer-menu { display: flex; flex-wrap: wrap; gap: 18px; }
.rtps-footer-menu a { color: #978f84; text-decoration: none; font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.rtps-footer-menu a:hover { color: var(--rtps-gold-bright); }
.rtps-footer-bottom p { margin: 0; color: #6f685f; font-size: 10px; }

[data-reveal] { opacity: 0; transform: translateY(35px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  :root { --rtps-header-height: 88px; }
  .rtps-menu-toggle { display: grid; place-items: center; position: relative; z-index: 4; }
  .rtps-primary-nav { position: fixed; inset: 0; padding: 130px 32px 50px; display: grid; align-content: center; justify-items: center; gap: 36px; background: radial-gradient(circle at 50% 20%, rgba(243,195,79,.14), transparent 30%), rgba(2,2,2,.985); transform: translateY(-105%); opacity: 0; visibility: hidden; transition: transform .5s cubic-bezier(.2,.7,.2,1), opacity .35s ease, visibility .35s ease; }
  .menu-open .rtps-primary-nav { transform: translateY(0); opacity: 1; visibility: visible; }
  .rtps-menu { display: grid; justify-items: center; gap: 10px; }
  .rtps-menu a { font-family: var(--rtps-display); font-size: clamp(34px, 7vw, 64px); letter-spacing: .02em; }
  .rtps-header-call { border-left: 0; padding-left: 0; text-align: center; }
  .rtps-header-call strong { font-size: 19px; }
  .rtps-hero-inner { grid-template-columns: 1fr; text-align: center; gap: 34px; }
  .rtps-hero-logo-wrap { max-width: 620px; margin-inline: auto; }
  .rtps-hero-copy { margin-inline: auto; }
  .rtps-hero-copy > p:not(.rtps-eyebrow) { margin-inline: auto; }
  .rtps-button-row { justify-content: center; }
  .rtps-discipline-grid { grid-template-columns: 1fr 1fr; }
  .rtps-form-layout, .rtps-contact-grid { grid-template-columns: 1fr; }
  .rtps-form-sidebar, .rtps-contact-panel { position: relative; top: auto; }
  .rtps-event-card { grid-template-columns: 130px 1fr; }
  .rtps-event-card__action { grid-column: 2; justify-content: flex-start; }
  .rtps-sponsor-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  :root { --rtps-shell: min(100% - 28px, 1180px); --rtps-header-height: 78px; }
  body { font-size: 16px; }
  .rtps-section { padding: 78px 0; }
  .rtps-logo--header { width: 215px; }
  .is-scrolled .rtps-logo--header { width: 195px; }
  .rtps-menu-toggle { width: 46px; height: 46px; }
  .rtps-hero { min-height: auto; padding-top: calc(var(--rtps-header-height) + 22px); }
  .rtps-hero h1 { font-size: clamp(42px, 14vw, 76px); }
  .rtps-scroll-cue { display: none; }
  .rtps-section-heading h2, .rtps-page-masthead h1 { font-size: clamp(58px, 18vw, 90px); }
  .rtps-section-heading--split, .rtps-manifesto-grid, .rtps-two-column, .rtps-talent-call__inner, .rtps-screenplay__inner, .rtps-archive-callout__inner, .rtps-sponsor-cta__inner, .rtps-footer-top, .rtps-event-single { grid-template-columns: 1fr; gap: 36px; }
  .rtps-section-heading--split { align-items: start; }
  .rtps-discipline-grid { grid-template-columns: 1fr; }
  .rtps-discipline-card { min-height: 320px; }
  .rtps-card-icon { margin-top: 55px; }
  .rtps-featured-event { grid-template-columns: 1fr; gap: 25px; }
  .rtps-featured-event__date { width: 120px; }
  .rtps-featured-event__date span { font-size: 58px; }
  .rtps-circle-link { position: absolute; right: 22px; top: 22px; }
  .rtps-screenplay-mark { display: none; }
  .rtps-page-masthead { min-height: 520px; padding-top: calc(var(--rtps-header-height) + 70px); }
  .rtps-form-grid { grid-template-columns: 1fr; }
  .rtps-form-card { padding: 24px 18px; }
  .rtps-event-card { grid-template-columns: 1fr; gap: 18px; }
  .rtps-event-card__date { min-height: auto; padding: 15px 0 25px; border-right: 0; border-bottom: 1px solid var(--rtps-line); align-content: start; justify-items: start; }
  .rtps-event-card__date span { font-size: 58px; }
  .rtps-event-card__action { grid-column: auto; }
  .rtps-sponsor-grid, .rtps-post-grid { grid-template-columns: 1fr; }
  .rtps-sponsor-card { min-height: 190px; }
  .rtps-sponsor-card > a, .rtps-sponsor-card > div { min-height: 188px; }
  .rtps-footer-bottom { align-items: flex-start; flex-direction: column; }
  .rtps-footer-menu { gap: 12px 16px; }
}

@media (max-width: 470px) {
  .rtps-logo--header { width: 175px; }
  .is-scrolled .rtps-logo--header { width: 168px; }
  .rtps-button { width: 100%; }
  .rtps-hero h1 { font-size: 46px; }
  .rtps-page-masthead h1 { font-size: 54px; word-break: break-word; }
  .rtps-featured-event { padding: 22px; }
  .rtps-circle-link { width: 52px; height: 52px; }
  .rtps-empty-state { padding: 38px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .rtps-film-grain { display: none; }
}

@media (max-width: 760px) {
  .rtps-stars { background-size: 104px 104px, 142px 142px, 186px 186px, auto, auto, auto; opacity: .82; }
  .rtps-stars::before { width: 12px; height: 12px; }
  .rtps-stars::after { width: 15px; height: 15px; }
  .rtps-card-icon--play { width: 58px; height: 58px; margin-top: 54px; }
}


/* v1.0.3 layout and hero refinements */
:root {
  --rtps-header-height: 176px;
}

.rtps-site-header {
  height: var(--rtps-header-height);
}
.rtps-site-header.is-scrolled {
  height: 148px;
}
.rtps-header-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 14px 0 10px;
}
.rtps-brand {
  justify-content: center;
}
.rtps-logo--header {
  width: clamp(320px, 40vw, 520px);
  max-height: 102px;
  filter: drop-shadow(0 0 18px rgba(243,195,79,.28));
}
.is-scrolled .rtps-logo--header {
  width: clamp(280px, 35vw, 440px);
}
.rtps-primary-nav {
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2vw, 30px);
}
.rtps-menu {
  justify-content: center;
  flex-wrap: wrap;
}
.rtps-header-call {
  padding-left: 18px;
}

.rtps-hero {
  padding-top: calc(var(--rtps-header-height) + 8px);
}
.rtps-section-heading--hero-video > p:not(.rtps-eyebrow) {
  color: #ffffff;
}

/* sparse luxury star field */
.rtps-stars {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpolygon points='50,2 61,35 96,35 68,57 79,91 50,71 21,91 32,57 4,35 39,35' fill='%23f7d97d' fill-opacity='.88'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpolygon points='50,2 61,35 96,35 68,57 79,91 50,71 21,91 32,57 4,35 39,35' fill='%23fff0c8' fill-opacity='.84'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-position: 0 0, 260px 170px;
  background-size: 760px 760px, 1120px 1120px;
  opacity: .32;
  animation: rtpsStarsSparse 65s linear infinite;
}
.rtps-stars::before,
.rtps-stars::after {
  width: 8px;
  height: 8px;
  box-shadow: 0 0 12px rgba(243,195,79,.42);
  opacity: .58;
}
.rtps-stars::before {
  top: 20%;
  left: 22%;
}
.rtps-stars::after {
  top: 63%;
  right: 18%;
  width: 10px;
  height: 10px;
}
@keyframes rtpsStarsSparse {
  to { background-position: 80px 110px, -70px 55px; }
}

/* film reel icon */
.rtps-card-icon--play {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  margin-top: 64px;
  border-radius: 50%;
  border: 1px solid rgba(255, 236, 170, .35);
  background:
    radial-gradient(circle at 50% 50%, #5b3504 0 6px, transparent 7px),
    radial-gradient(circle at 32% 32%, #6c4306 0 5px, transparent 6px),
    radial-gradient(circle at 68% 32%, #6c4306 0 5px, transparent 6px),
    radial-gradient(circle at 32% 68%, #6c4306 0 5px, transparent 6px),
    radial-gradient(circle at 68% 68%, #6c4306 0 5px, transparent 6px),
    radial-gradient(circle at 30% 30%, #fff2bc 0%, #f3c34f 42%, #a7650b 82%);
  box-shadow: 0 0 28px rgba(243,195,79,.24), inset 0 0 0 4px rgba(101,63,5,.32), inset 0 1px 0 rgba(255,255,255,.5);
}
.rtps-card-icon__triangle {
  display: none;
}

@media (max-width: 1080px) {
  :root { --rtps-header-height: 88px; }
  .rtps-header-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 0;
  }
  .rtps-brand {
    justify-content: flex-start;
  }
  .rtps-logo--header {
    width: 215px;
    max-height: 72px;
  }
  .is-scrolled .rtps-logo--header {
    width: 195px;
  }
}

@media (max-width: 760px) {
  .rtps-section-heading--hero-video > p:not(.rtps-eyebrow) {
    font-size: 17px;
  }
  .rtps-stars {
    background-position: 0 0, 190px 130px;
    background-size: 520px 520px, 760px 760px;
    opacity: .36;
  }
  .rtps-stars::before {
    width: 7px;
    height: 7px;
  }
  .rtps-stars::after {
    width: 8px;
    height: 8px;
  }
  .rtps-card-icon--play {
    width: 58px;
    height: 58px;
    margin-top: 54px;
  }
}


/* v1.0.4 — oversized centered desktop header logo */
@media (min-width: 1081px) {
  :root {
    --rtps-header-height: 248px;
  }

  .rtps-site-header {
    height: var(--rtps-header-height);
  }

  .rtps-site-header.is-scrolled {
    height: 196px;
  }

  .rtps-header-inner {
    gap: 8px;
    padding: 12px 0 12px;
  }

  .rtps-brand {
    width: 100%;
    justify-content: center;
  }

  .rtps-logo--header {
    width: clamp(580px, 64vw, 940px);
    max-height: 172px;
    object-fit: contain;
    filter: drop-shadow(0 0 22px rgba(243,195,79,.34));
  }

  .is-scrolled .rtps-logo--header {
    width: clamp(470px, 52vw, 740px);
    max-height: 128px;
  }

  .rtps-primary-nav {
    min-height: 42px;
  }

  .rtps-hero {
    padding-top: calc(var(--rtps-header-height) + 4px);
  }
}


/* v1.0.5 — larger header logo, tighter header spacing, classic film reel with ribbon */
.rtps-card-icon--play {
  position: relative;
  overflow: visible;
  width: 74px;
  height: 74px;
  margin-top: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255, 236, 170, .42);
  background:
    radial-gradient(circle at 50% 50%, #4e2c03 0 7px, transparent 8px),
    radial-gradient(circle at 29% 29%, #6b4206 0 6px, transparent 7px),
    radial-gradient(circle at 71% 29%, #6b4206 0 6px, transparent 7px),
    radial-gradient(circle at 29% 71%, #6b4206 0 6px, transparent 7px),
    radial-gradient(circle at 71% 71%, #6b4206 0 6px, transparent 7px),
    radial-gradient(circle at 30% 30%, #fff3bf 0%, #f3c34f 42%, #a7650b 82%);
  box-shadow: 0 0 28px rgba(243,195,79,.24), inset 0 0 0 5px rgba(101,63,5,.34), inset 0 1px 0 rgba(255,255,255,.55);
}
.rtps-card-icon--play::before {
  content: "";
  position: absolute;
  right: -34px;
  top: 30px;
  width: 58px;
  height: 18px;
  border-radius: 10px;
  background:
    repeating-linear-gradient(90deg,
      rgba(84,49,2,.92) 0 3px,
      transparent 3px 11px,
      rgba(84,49,2,.92) 11px 14px,
      transparent 14px 22px),
    linear-gradient(180deg, #ffe8a0 0%, #edbc43 48%, #a8660b 100%);
  box-shadow: inset 0 0 0 1px rgba(97,58,4,.42), 0 0 18px rgba(243,195,79,.18);
}
.rtps-card-icon--play::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 42px;
  width: 30px;
  height: 26px;
  border-right: 6px solid #e7ba49;
  border-bottom: 6px solid #e7ba49;
  border-radius: 0 0 22px 0;
  transform: rotate(18deg);
  filter: drop-shadow(0 0 10px rgba(243,195,79,.22));
}

@media (min-width: 1081px) {
  :root {
    --rtps-header-height: 368px;
  }

  .rtps-site-header.is-scrolled {
    height: 298px;
  }

  .rtps-header-inner {
    gap: 0;
    padding: 2px 0 0;
  }

  .rtps-brand {
    margin-bottom: -8px;
  }

  .rtps-logo--header {
    width: min(96vw, 1800px);
    max-height: 320px;
    filter: drop-shadow(0 0 26px rgba(243,195,79,.36));
  }

  .is-scrolled .rtps-logo--header {
    width: min(86vw, 1440px);
    max-height: 250px;
  }

  .rtps-primary-nav {
    min-height: 26px;
    gap: clamp(18px, 2vw, 28px);
    margin-top: -4px;
  }

  .rtps-menu {
    gap: clamp(12px, 1.3vw, 22px);
  }

  .rtps-menu a {
    padding: 10px 0;
  }

  .rtps-header-call {
    padding-left: 16px;
  }

  .rtps-hero {
    padding-top: calc(var(--rtps-header-height) + 2px);
  }
}

@media (max-width: 760px) {
  .rtps-card-icon--play {
    width: 60px;
    height: 60px;
    margin-top: 54px;
  }
  .rtps-card-icon--play::before {
    right: -26px;
    top: 24px;
    width: 44px;
    height: 14px;
  }
  .rtps-card-icon--play::after {
    right: -16px;
    top: 34px;
    width: 24px;
    height: 20px;
    border-right-width: 5px;
    border-bottom-width: 5px;
  }
}


/* v1.0.6 — compact scrolled desktop header */
@media (min-width: 1081px) {
  .rtps-site-header.is-scrolled {
    height: 132px;
  }

  .is-scrolled .rtps-header-inner {
    gap: 0;
    padding: 2px 0 0;
  }

  .is-scrolled .rtps-brand {
    margin-bottom: -6px;
  }

  .is-scrolled .rtps-logo--header {
    width: min(32vw, 600px);
    max-height: 92px;
    filter: drop-shadow(0 0 14px rgba(243,195,79,.28));
  }

  .is-scrolled .rtps-primary-nav {
    min-height: 24px;
    margin-top: -4px;
  }

  .is-scrolled .rtps-menu a {
    padding: 8px 0;
  }
}


/* v1.0.7 — remove logged-in WordPress toolbar from the public website */
html.wp-toolbar,
html[style*="margin-top"] {
  margin-top: 0 !important;
}
body.admin-bar {
  margin-top: 0 !important;
}
body.admin-bar #wpadminbar {
  display: none !important;
}


/* v1.0.8 — improved mobile header, dropdown tray and compact film icon */
.rtps-card-icon--film {
  width: 40px;
  height: 40px;
  display: block;
  margin-top: 78px;
  color: var(--rtps-gold-bright);
  filter: drop-shadow(0 0 12px rgba(243,195,79,.34));
}
.rtps-card-icon--film svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.rtps-film-reel__outer,
.rtps-film-reel__hub,
.rtps-film-reel__hole,
.rtps-film-reel__film,
.rtps-film-reel__perfs {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.rtps-film-reel__outer { stroke-width: 3.4; }
.rtps-film-reel__hub { stroke-width: 2.8; }
.rtps-film-reel__hole { stroke-width: 2.4; }
.rtps-film-reel__film { stroke-width: 3.2; }
.rtps-film-reel__perfs { stroke-width: 2; }

@media (max-width: 1080px) {
  :root { --rtps-header-height: 112px; }

  .rtps-site-header,
  .rtps-site-header.is-scrolled {
    height: var(--rtps-header-height);
  }

  .rtps-header-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 0;
  }

  .rtps-brand {
    justify-content: flex-start;
    min-width: 0;
  }

  .rtps-logo--header,
  .is-scrolled .rtps-logo--header {
    width: clamp(270px, 42vw, 360px);
    max-height: 96px;
  }

  .rtps-menu-toggle {
    flex: 0 0 auto;
    width: 50px;
    height: 50px;
    background: linear-gradient(145deg, rgba(243,195,79,.12), rgba(255,255,255,.025));
    box-shadow: inset 0 0 0 1px rgba(243,195,79,.08), 0 10px 30px rgba(0,0,0,.35);
  }

  .rtps-primary-nav {
    position: fixed;
    top: calc(var(--rtps-header-height) + 8px);
    right: 12px;
    left: 12px;
    bottom: auto;
    width: auto;
    max-height: calc(100vh - var(--rtps-header-height) - 24px);
    overflow-y: auto;
    padding: 22px 18px 20px;
    display: grid;
    align-content: start;
    justify-items: stretch;
    gap: 18px;
    border: 1px solid rgba(243,195,79,.32);
    border-radius: 18px;
    background:
      radial-gradient(circle at 50% 0%, rgba(243,195,79,.12), transparent 42%),
      linear-gradient(160deg, rgba(18,15,9,.985), rgba(2,2,2,.99));
    box-shadow: 0 24px 70px rgba(0,0,0,.72), inset 0 1px 0 rgba(255,255,255,.05);
    backdrop-filter: blur(22px);
    transform: translateY(-18px) scale(.97);
    transform-origin: top center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform .34s cubic-bezier(.2,.75,.2,1), opacity .25s ease, visibility .25s ease;
  }

  .menu-open .rtps-primary-nav {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .rtps-primary-nav::before {
    content: "";
    position: absolute;
    top: -7px;
    right: 24px;
    width: 13px;
    height: 13px;
    border-left: 1px solid rgba(243,195,79,.32);
    border-top: 1px solid rgba(243,195,79,.32);
    background: #0d0a06;
    transform: rotate(45deg);
  }

  .rtps-menu {
    width: 100%;
    display: grid;
    gap: 6px;
    justify-items: stretch;
  }

  .rtps-menu li {
    width: 100%;
  }

  .rtps-menu a {
    width: 100%;
    padding: 13px 16px;
    border-radius: 10px;
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(243,195,79,.09);
    font-family: var(--rtps-sans);
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: .15em;
    text-align: center;
  }

  .rtps-menu a::after {
    display: none;
  }

  .rtps-menu a:hover,
  .rtps-menu .current-menu-item > a {
    color: #090600;
    background: linear-gradient(135deg, #a96a0c, #f5cc61 44%, #fff0ad 58%, #b87510);
    border-color: rgba(255,230,150,.8);
    box-shadow: 0 8px 24px rgba(243,195,79,.16);
  }

  .rtps-header-call {
    width: 100%;
    padding: 14px 12px 2px;
    border-left: 0;
    border-top: 1px solid rgba(243,195,79,.16);
    text-align: center;
  }

  .rtps-header-call strong {
    font-size: 18px;
  }

  .rtps-hero,
  .rtps-page-masthead {
    padding-top: calc(var(--rtps-header-height) + 22px);
  }
}

@media (max-width: 760px) {
  :root { --rtps-header-height: 104px; }

  .rtps-logo--header,
  .is-scrolled .rtps-logo--header {
    width: min(76vw, 300px);
    max-height: 90px;
  }

  .rtps-menu-toggle {
    width: 46px;
    height: 46px;
  }

  .rtps-primary-nav {
    top: calc(var(--rtps-header-height) + 7px);
    right: 10px;
    left: 10px;
    padding: 18px 14px 16px;
    border-radius: 16px;
  }

  .rtps-menu a {
    padding: 12px 14px;
    font-size: 13px;
  }

  .rtps-card-icon--film {
    width: 36px;
    height: 36px;
    margin-top: 55px;
  }
}

@media (max-width: 470px) {
  .rtps-logo--header,
  .is-scrolled .rtps-logo--header {
    width: min(74vw, 260px);
    max-height: 84px;
  }
}


/* v1.0.9 — Spring Fest 2026 archived event poster */
.rtps-event-card--with-poster {
  grid-template-columns: 230px minmax(0, 1fr) 210px;
}
.rtps-event-card__poster {
  display: block;
  align-self: stretch;
  min-height: 280px;
  overflow: hidden;
  border: 1px solid rgba(243,195,79,.28);
  background: #080808;
  box-shadow: 0 18px 42px rgba(0,0,0,.34);
}
.rtps-event-card__poster img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: block;
  object-fit: cover;
  object-position: center top;
  transition: transform .45s ease, filter .45s ease;
}
.rtps-event-card:hover .rtps-event-card__poster img {
  transform: scale(1.025);
  filter: saturate(1.06) contrast(1.03);
}
.rtps-event-card__content h2 a {
  color: inherit;
  text-decoration: none;
}
.rtps-event-card__content h2 a:hover {
  color: var(--rtps-gold-bright);
}
.rtps-event-single__sidebar {
  display: grid;
  gap: 24px;
  align-self: start;
}
.rtps-event-single__poster {
  width: 100%;
  display: block;
  border: 1px solid rgba(243,195,79,.28);
  box-shadow: 0 28px 70px rgba(0,0,0,.48), 0 0 36px rgba(243,195,79,.08);
}

@media (max-width: 1080px) {
  .rtps-event-card--with-poster {
    grid-template-columns: 190px minmax(0, 1fr);
  }
  .rtps-event-card--with-poster .rtps-event-card__action {
    grid-column: 2;
  }
  .rtps-event-card__poster,
  .rtps-event-card__poster img {
    min-height: 235px;
  }
}

@media (max-width: 760px) {
  .rtps-event-card--with-poster {
    grid-template-columns: 1fr;
  }
  .rtps-event-card--with-poster .rtps-event-card__action {
    grid-column: auto;
  }
  .rtps-event-card__poster {
    width: min(100%, 430px);
    min-height: 0;
  }
  .rtps-event-card__poster img {
    height: auto;
    min-height: 0;
    object-fit: contain;
  }
}
