/* Statische Apache-Version */
:root {
  --pine: #0b392d;
  --forest: #13523f;
  --leaf: #2c7658;
  --mint: #dceee3;
  --cream: #f6f1e7;
  --paper: #fffdf8;
  --gold: #d9b25f;
  --ink: #17241f;
  --muted: #617069;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: Arial, Helvetica, sans-serif; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  position: fixed; inset: 18px 4vw auto; z-index: 50;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  min-height: 76px; max-width: 1360px; margin: 0 auto; padding: 9px 12px 9px 10px;
  border: 1px solid rgba(255,255,255,.55); border-radius: 22px;
  background: rgba(255,253,248,.9); box-shadow: 0 18px 55px rgba(5,37,27,.18);
  backdrop-filter: blur(18px);
}
.brand { display: flex; align-items: center; gap: 11px; width: fit-content; }
.brand-mark { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 16px; background: var(--pine); }
.brand-mark img { width: 46px; height: 46px; object-fit: contain; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.08; }
.brand-copy strong { font-family: Georgia, serif; font-size: 19px; font-weight: 500; color: var(--pine); }
.brand-copy small { margin-top: 4px; font-size: 10px; letter-spacing: .11em; text-transform: uppercase; color: #66766e; }
.desktop-nav { display: flex; align-items: center; gap: 28px; }
.desktop-nav a { position: relative; font-size: 13px; color: #365047; }
.desktop-nav a::after { content: ""; position: absolute; inset: auto 0 -8px; height: 2px; border-radius: 2px; background: var(--gold); transform: scaleX(0); transition: transform .25s ease; }
.desktop-nav a:hover::after { transform: scaleX(1); }
.header-cta { justify-self: end; padding: 13px 21px; border-radius: 13px; background: var(--pine); color: white; font-size: 13px; transition: transform .25s ease, background .25s ease; }
.header-cta:hover { transform: translateY(-2px); background: var(--leaf); }
.mobile-menu { display: none; position: relative; justify-self: end; }
.mobile-menu summary { display: grid; place-content: center; gap: 6px; width: 46px; height: 46px; list-style: none; border-radius: 13px; background: var(--pine); cursor: pointer; }
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu summary span { width: 21px; height: 2px; background: white; }
.mobile-menu nav { position: absolute; right: 0; top: 58px; width: 230px; padding: 12px; border-radius: 18px; background: white; box-shadow: 0 22px 55px rgba(7,38,27,.22); }
.mobile-menu nav a { display: block; padding: 12px 14px; border-radius: 10px; font-size: 14px; }
.mobile-menu nav a:hover { background: var(--mint); }

.hero { position: relative; min-height: 900px; height: 100svh; overflow: hidden; background: var(--pine); color: white; }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.02); }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,29,22,.93) 0%, rgba(6,38,29,.78) 42%, rgba(6,38,29,.26) 72%, rgba(6,38,29,.5) 100%), linear-gradient(0deg, rgba(5,36,27,.75), transparent 45%); }
.hero-orb { position: absolute; border-radius: 999px; filter: blur(2px); opacity: .36; animation: drift 9s ease-in-out infinite alternate; }
.hero-orb-one { width: 420px; height: 420px; left: -140px; top: 21%; background: radial-gradient(circle, rgba(58,164,118,.8), transparent 68%); }
.hero-orb-two { width: 550px; height: 550px; right: -220px; bottom: -90px; background: radial-gradient(circle, rgba(217,178,95,.58), transparent 68%); animation-delay: -3s; }
@keyframes drift { to { transform: translate3d(50px,-35px,0) scale(1.1); } }
.hero-content { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; width: min(1360px, 92vw); height: 100%; margin: 0 auto; padding: 150px 0 220px; }
.eyebrow { margin: 0 0 18px; font-size: 11px; letter-spacing: .22em; line-height: 1.4; text-transform: uppercase; color: var(--leaf); }
.eyebrow.light { color: #d7c38f; }
.hero h1, .section-title h2, .festival h2, .youth h2, .hall h2, .tradition-copy h2, .contact-card h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-weight: 400; letter-spacing: -.04em; }
.hero h1 { max-width: 820px; font-size: clamp(58px, 7.2vw, 112px); line-height: .93; text-wrap: balance; }
.hero h1 em, h2 em { color: var(--gold); font-weight: 400; }
.hero-lead { max-width: 650px; margin: 30px 0 0; font-size: clamp(17px, 1.5vw, 22px); line-height: 1.65; color: rgba(255,255,255,.82); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 23px; border: 1px solid transparent; border-radius: 14px; font-size: 13px; transition: transform .25s ease, background .25s ease, border-color .25s ease; }
.button:hover { transform: translateY(-3px); }
.button-accent { background: var(--gold); color: #193228; }
.button-ghost { border-color: rgba(255,255,255,.35); color: white; background: rgba(255,255,255,.06); backdrop-filter: blur(12px); }
.button-green { background: var(--pine); color: white; }
.button-outline { border-color: rgba(12,57,45,.24); color: var(--pine); background: rgba(255,255,255,.45); }
.event-banner { position: absolute; z-index: 3; left: 50%; bottom: 40px; width: min(1360px, 92vw); transform: translateX(-50%); display: grid; grid-template-columns: 170px 1fr auto; align-items: center; gap: 28px; padding: 18px; border: 1px solid rgba(255,255,255,.22); border-radius: 26px; background: rgba(7,45,34,.82); backdrop-filter: blur(20px); box-shadow: 0 28px 70px rgba(0,0,0,.25); }
.event-date { align-self: stretch; display: flex; flex-direction: column; justify-content: center; padding: 14px 22px; border-radius: 17px; background: var(--gold); color: var(--pine); }
.event-date strong { font-family: Georgia, serif; font-size: 34px; font-weight: 400; line-height: 1; }
.event-date span { margin-top: 5px; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.event-copy { display: flex; flex-direction: column; }
.event-copy small { color: #d7c38f; text-transform: uppercase; letter-spacing: .14em; font-size: 10px; }
.event-copy strong { margin: 5px 0; font-family: Georgia, serif; font-size: 27px; font-weight: 400; }
.event-copy span { font-size: 13px; color: rgba(255,255,255,.7); }
.event-link { padding: 15px 19px; border-radius: 13px; background: white; color: var(--pine); font-size: 12px; }

.section-pad { padding: 120px 0; }
.section-shell { width: min(1220px, 90vw); margin: 0 auto; }
.intro { position: relative; background: var(--paper); }
.intro::before { content: ""; position: absolute; inset: 0; opacity: .38; background-image: radial-gradient(rgba(19,82,63,.17) 1px, transparent 1px); background-size: 24px 24px; mask-image: linear-gradient(to bottom, black, transparent 75%); pointer-events: none; }
.intro-grid { position: relative; display: grid; grid-template-columns: 1fr .9fr; gap: 100px; align-items: start; }
.section-title h2, .festival h2, .youth h2, .hall h2, .tradition-copy h2, .contact-card h2 { font-size: clamp(44px, 5.2vw, 76px); line-height: 1.03; }
.intro-copy { padding-top: 30px; }
.intro-copy p { margin: 0 0 20px; font-size: 18px; line-height: 1.75; color: #53635c; }
.values-row { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 86px; border-top: 1px solid #d7ddd8; border-bottom: 1px solid #d7ddd8; }
.value { display: flex; flex-direction: column; gap: 6px; padding: 30px 7%; border-right: 1px solid #d7ddd8; }
.value:last-child { border-right: 0; }
.value strong { font-family: Georgia, serif; font-size: 38px; font-weight: 400; color: var(--pine); }
.value span { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: #718078; }

.festival { position: relative; overflow: hidden; background: var(--pine); color: white; }
.festival::after { content: ""; position: absolute; width: 780px; height: 780px; right: -460px; top: -320px; border: 1px solid rgba(217,178,95,.2); border-radius: 50%; box-shadow: 0 0 0 90px rgba(217,178,95,.035), 0 0 0 180px rgba(217,178,95,.025); }
.festival-glow { position: absolute; left: -20%; bottom: -55%; width: 70%; height: 100%; background: radial-gradient(circle, rgba(52,133,96,.45), transparent 65%); }
.festival .section-shell { position: relative; z-index: 2; }
.festival-heading { display: grid; grid-template-columns: 1fr .75fr; gap: 90px; align-items: end; margin-bottom: 72px; }
.festival-heading > p { margin: 0 0 8px; font-size: 17px; line-height: 1.7; color: rgba(255,255,255,.7); }
.royal-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 28px; }
.royal-image { position: relative; min-height: 610px; margin: 0; overflow: hidden; border-radius: 32px; background: #e7ddc9; }
.royal-image > img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.royal-image figcaption { position: absolute; inset: auto 18px 18px; display: flex; flex-direction: column; padding: 20px 22px; border: 1px solid rgba(255,255,255,.28); border-radius: 18px; background: rgba(6,43,32,.78); backdrop-filter: blur(16px); }
.royal-image figcaption span { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: #d7c38f; }
.royal-image figcaption strong { margin-top: 5px; font-family: Georgia, serif; font-size: 25px; font-weight: 400; }
.festival-days { display: flex; flex-direction: column; }
.festival-day { display: grid; grid-template-columns: 96px 1fr; gap: 25px; padding: 24px 8px; border-top: 1px solid rgba(255,255,255,.17); }
.day-date { display: flex; align-items: baseline; gap: 8px; color: var(--gold); }
.day-date strong { font-family: Georgia, serif; font-size: 25px; font-weight: 400; }
.day-date span { font-size: 9px; letter-spacing: .12em; }
.festival-day h3 { margin: 0 0 6px; font-family: Georgia, serif; font-size: 24px; font-weight: 400; }
.festival-day p { margin: 0; font-size: 13px; line-height: 1.6; color: rgba(255,255,255,.64); }
.inline-download { margin-top: auto; padding: 18px 22px; border-radius: 14px; background: var(--gold); color: var(--pine); text-align: center; font-size: 13px; }

.festschrift-section { position: relative; overflow: hidden; background: linear-gradient(135deg, #edf8fd 0%, #fffdf8 48%, #e3f3fb 100%); }
.festschrift-section .section-shell { position: relative; z-index: 2; }
.festschrift-splash { position: absolute; border-radius: 50%; filter: blur(8px); pointer-events: none; }
.festschrift-splash-left { width: 520px; height: 520px; left: -290px; bottom: -180px; background: radial-gradient(circle, rgba(92,190,229,.3), transparent 68%); }
.festschrift-splash-right { width: 600px; height: 600px; right: -300px; top: -280px; background: radial-gradient(circle, rgba(66,163,211,.24), transparent 68%); }
.festschrift-banner { display: block; overflow: hidden; margin-bottom: 58px; border: 1px solid rgba(30,104,145,.16); border-radius: 28px; background: white; box-shadow: 0 28px 70px rgba(38,108,143,.13); transition: transform .3s ease, box-shadow .3s ease; }
.festschrift-banner:hover { transform: translateY(-4px); box-shadow: 0 34px 85px rgba(38,108,143,.2); }
.festschrift-banner img { width: 100%; aspect-ratio: 3/1; object-fit: cover; }
.festschrift-grid { display: grid; grid-template-columns: minmax(260px, 390px) 1fr; gap: 90px; align-items: center; }
.festschrift-cover { position: relative; display: block; padding: 13px; border-radius: 28px; background: rgba(255,255,255,.76); box-shadow: 0 30px 75px rgba(34,94,124,.18); transform: rotate(-1.5deg); transition: transform .3s ease; }
.festschrift-cover:hover { transform: rotate(0deg) translateY(-5px); }
.festschrift-cover img { width: 100%; border-radius: 18px; }
.festschrift-cover span { position: absolute; inset: auto 28px 28px; padding: 14px 18px; border-radius: 13px; background: rgba(10,54,78,.9); color: white; text-align: center; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(12px); }
.festschrift-copy h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(44px, 5.2vw, 76px); font-weight: 400; line-height: 1.03; letter-spacing: -.04em; color: #123d59; }
.festschrift-copy h2 em { color: #429ac8; }
.festschrift-copy > p:not(.eyebrow) { max-width: 700px; margin: 28px 0 0; font-size: 17px; line-height: 1.75; color: #536975; }
.festschrift-details { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0 32px; }
.festschrift-details span { padding: 10px 14px; border: 1px solid rgba(30,105,145,.18); border-radius: 999px; background: rgba(255,255,255,.65); color: #275b76; font-size: 11px; }
.festschrift-button { background: #123d59; color: white; }
.festschrift-button:hover { background: #2f87b4; }

.youth { position: relative; overflow: hidden; background: linear-gradient(135deg, #f7f2e7 0%, #e6f1e9 100%); }
.oak { position: absolute; pointer-events: none; opacity: .14; }
.oak-left { width: 700px; left: -390px; top: -130px; transform: rotate(20deg); }
.youth-intro { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 86px; align-items: center; }
.section-lead { margin: 28px 0 0; font-size: 17px; line-height: 1.75; color: #53645c; }
.youth-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.youth-pills span { padding: 9px 13px; border: 1px solid rgba(16,69,53,.18); border-radius: 999px; background: rgba(255,255,255,.48); font-size: 11px; color: var(--pine); }
.youth-image-card { position: relative; margin: 0; padding: 14px; border: 1px solid rgba(15,67,51,.12); border-radius: 34px; background: rgba(255,255,255,.6); transform: rotate(1.5deg); box-shadow: 0 34px 80px rgba(25,74,56,.16); }
.youth-image-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 23px; }
.youth-image-card figcaption { padding: 17px 10px 6px; font-family: Georgia, serif; font-size: 20px; color: var(--pine); text-align: center; }
.comic-card { display: grid; grid-template-columns: 260px 1fr; gap: 45px; align-items: center; margin-top: 100px; padding: 28px; border-radius: 30px; background: var(--paper); box-shadow: 0 25px 70px rgba(18,66,50,.11); }
.comic-cover { overflow: hidden; border-radius: 19px; transform: rotate(-2deg); transition: transform .3s ease; }
.comic-cover:hover { transform: rotate(0deg) scale(1.025); }
.comic-cover img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: top; }
.comic-card h3 { margin: 0; max-width: 700px; font-family: Georgia, serif; font-size: clamp(32px, 4vw, 52px); font-weight: 400; line-height: 1.04; color: var(--pine); }
.comic-card p:not(.eyebrow) { max-width: 680px; margin: 20px 0; font-size: 15px; line-height: 1.7; color: var(--muted); }
.text-link { display: inline-block; padding-bottom: 4px; border-bottom: 1px solid var(--leaf); color: var(--leaf); font-size: 13px; }

.hall { background: #fffdf9; }
.hall-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 85px; align-items: center; }
.hall h2 em { color: var(--leaf); }
.hall-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 34px 0; }
.hall-facts div { display: flex; flex-direction: column; min-height: 110px; padding: 18px; border-radius: 16px; background: var(--cream); }
.hall-facts strong { font-family: Georgia, serif; font-size: 30px; font-weight: 400; color: var(--pine); }
.hall-facts span { margin-top: auto; font-size: 10px; line-height: 1.35; text-transform: uppercase; letter-spacing: .09em; color: #69756f; }
.hall-gallery { display: grid; grid-template-columns: 1.5fr 1fr; grid-template-rows: 1fr 1fr; gap: 14px; }
.hall-gallery > img, .hall-main { min-height: 225px; height: 100%; width: 100%; border-radius: 24px; overflow: hidden; object-fit: cover; }
.hall-main { position: relative; grid-row: 1 / 3; margin: 0; }
.hall-main img { width: 100%; height: 100%; object-fit: cover; }
.hall-main figcaption { position: absolute; inset: auto 14px 14px; padding: 12px 15px; border-radius: 11px; background: rgba(255,255,255,.86); color: var(--pine); backdrop-filter: blur(10px); font-size: 11px; }

.tradition-banner { position: relative; min-height: 680px; display: grid; place-items: center; overflow: hidden; color: white; }
.tradition-banner > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.tradition-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,36,27,.9), rgba(5,36,27,.43), rgba(5,36,27,.65)); }
.tradition-copy { position: relative; width: min(1220px, 90vw); }
.tradition-copy h2 { max-width: 800px; }
.tradition-copy p:last-child { max-width: 560px; margin-top: 25px; font-size: 17px; line-height: 1.7; color: rgba(255,255,255,.77); }

.contact { position: relative; overflow: hidden; background: var(--mint); }
.contact-orb { position: absolute; width: 720px; height: 720px; right: -300px; top: -290px; border-radius: 50%; background: radial-gradient(circle, rgba(217,178,95,.42), transparent 68%); animation: drift 10s ease-in-out infinite alternate; }
.contact-card { position: relative; display: grid; grid-template-columns: 160px 1fr auto; gap: 48px; align-items: center; padding: 56px; border-radius: 34px; background: var(--pine); color: white; box-shadow: 0 35px 80px rgba(6,46,34,.22); }
.contact-card > img { width: 150px; height: 150px; object-fit: contain; }
.contact-card h2 { font-size: clamp(38px, 4.5vw, 66px); }
.contact-card p:not(.eyebrow) { max-width: 650px; margin: 18px 0 0; line-height: 1.7; color: rgba(255,255,255,.68); }
.contact-buttons { display: flex; flex-direction: column; gap: 10px; min-width: 190px; }

.site-footer { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 40px; padding: 34px 5vw; background: #062b21; color: rgba(255,255,255,.65); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { width: 48px; height: 48px; object-fit: contain; }
.footer-brand span { display: flex; flex-direction: column; line-height: 1.3; }
.footer-brand strong { font-family: Georgia, serif; font-weight: 400; color: white; text-transform: none; font-size: 16px; letter-spacing: 0; }
.footer-brand small { font-size: 9px; }

@media (max-width: 1050px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav, .header-cta { display: none; }
  .mobile-menu { display: block; }
  .intro-grid, .festival-heading { gap: 55px; }
  .royal-grid, .hall-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .contact-card { grid-template-columns: 110px 1fr; }
  .contact-card > img { width: 110px; height: 110px; }
  .contact-buttons { grid-column: 2; flex-direction: row; }
}

@media (max-width: 760px) {
  .site-header { inset: 10px 14px auto; min-height: 66px; border-radius: 18px; }
  .brand-mark { width: 48px; height: 48px; border-radius: 13px; }
  .brand-mark img { width: 40px; height: 40px; }
  .brand-copy strong { font-size: 17px; }
  .brand-copy small { font-size: 8px; }
  .hero { min-height: 820px; height: 100svh; }
  .hero-image { object-position: 62% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(4,29,22,.94), rgba(6,38,29,.66)), linear-gradient(0deg, rgba(5,36,27,.85), transparent); }
  .hero-content { justify-content: flex-start; padding: 145px 0 230px; }
  .hero h1 { font-size: clamp(48px, 16vw, 68px); line-height: .95; }
  .hero-lead { margin-top: 22px; font-size: 16px; }
  .event-banner { bottom: 18px; grid-template-columns: 105px 1fr; gap: 12px; padding: 10px; border-radius: 19px; }
  .event-date { padding: 13px; border-radius: 13px; }
  .event-date strong { font-size: 25px; }
  .event-copy strong { font-size: 19px; }
  .event-copy span, .event-link { display: none; }
  .section-pad { padding: 82px 0; }
  .intro-grid, .festival-heading, .royal-grid, .youth-intro, .hall-grid { grid-template-columns: 1fr; gap: 42px; }
  .festschrift-banner { margin-bottom: 42px; border-radius: 20px; }
  .festschrift-banner img { min-height: 210px; aspect-ratio: auto; object-position: 46% center; }
  .festschrift-grid { grid-template-columns: 1fr; gap: 45px; }
  .festschrift-cover { width: min(390px, 88vw); margin: 0 auto; }
  .festschrift-copy { text-align: center; }
  .festschrift-copy h2 { font-size: clamp(42px, 13vw, 62px); }
  .festschrift-copy > p:not(.eyebrow) { font-size: 16px; }
  .festschrift-details { justify-content: center; }
  .section-title h2, .festival h2, .youth h2, .hall h2, .tradition-copy h2 { font-size: clamp(42px, 13vw, 62px); }
  .intro-copy { padding-top: 0; }
  .values-row { grid-template-columns: 1fr; margin-top: 50px; }
  .value { border-right: 0; border-bottom: 1px solid #d7ddd8; }
  .value:last-child { border-bottom: 0; }
  .festival-heading { margin-bottom: 45px; }
  .royal-image { min-height: 490px; }
  .festival-day { grid-template-columns: 82px 1fr; gap: 15px; padding: 19px 4px; }
  .comic-card { grid-template-columns: 115px 1fr; gap: 20px; margin-top: 60px; padding: 18px; border-radius: 22px; }
  .comic-card h3 { font-size: 27px; }
  .comic-card p:not(.eyebrow) { display: none; }
  .hall-grid { display: flex; flex-direction: column; }
  .hall-gallery { order: -1; }
  .hall-facts { gap: 6px; }
  .hall-facts div { padding: 13px; }
  .tradition-banner { min-height: 610px; }
  .contact-card { grid-template-columns: 1fr; gap: 25px; padding: 34px 25px; text-align: center; }
  .contact-card > img { margin: 0 auto; }
  .contact-buttons { grid-column: 1; flex-direction: column; }
  .site-footer { grid-template-columns: 1fr; gap: 18px; text-align: center; }
  .footer-brand { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* Shared multi-page design */
.desktop-nav a.active::after { transform: scaleX(1); }
.desktop-nav a.active { color: var(--pine); }
.mobile-menu nav a.active { background: var(--mint); color: var(--pine); }
.page-shell { width: min(1220px, 90vw); margin: 0 auto; }
.subpage { min-height: 100vh; background: var(--paper); }
.sub-hero { position: relative; min-height: 730px; overflow: hidden; display: grid; align-items: center; padding: 155px 0 90px; color: white; background: linear-gradient(135deg, #072d23 0%, #0d4a38 62%, #176247 100%); }
.sub-hero-background { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.sub-hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,29,22,.95), rgba(5,40,30,.76) 52%, rgba(5,40,30,.2)); }
.sub-hero:not(.sub-hero-image) .sub-hero-shade { background: linear-gradient(120deg, rgba(4,29,22,.18), rgba(10,74,54,.1)); }
.sub-orb { position: absolute; border-radius: 50%; filter: blur(2px); animation: drift 10s ease-in-out infinite alternate; }
.sub-orb-one { width: 540px; height: 540px; left: -280px; bottom: -250px; background: radial-gradient(circle, rgba(75,174,126,.48), transparent 68%); }
.sub-orb-two { width: 620px; height: 620px; right: -310px; top: -250px; border: 1px solid rgba(217,178,95,.18); box-shadow: 0 0 0 90px rgba(217,178,95,.035), 0 0 0 180px rgba(217,178,95,.025); }
.sub-hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr .72fr; gap: 80px; align-items: center; }
.sub-hero-copy h1 { margin: 0; max-width: 850px; font-family: Georgia, serif; font-size: clamp(58px, 7vw, 104px); font-weight: 400; letter-spacing: -.045em; line-height: .94; }
.sub-hero-copy h1 em { color: var(--gold); font-weight: 400; }
.sub-hero-copy > p:last-of-type { max-width: 720px; margin: 27px 0 0; color: rgba(255,255,255,.75); font-size: 18px; line-height: 1.7; }
.hero-crest-stage { position: relative; justify-self: end; display: grid; place-items: center; width: min(430px, 38vw); aspect-ratio: 1; }
.hero-crest-stage::before, .hero-crest-stage::after, .hero-crest-stage span { content: ""; position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); }
.hero-crest-stage::before { inset: 0; }
.hero-crest-stage::after { inset: 13%; border-color: rgba(217,178,95,.32); }
.hero-crest-stage span { inset: 27%; background: rgba(255,255,255,.06); box-shadow: 0 25px 70px rgba(0,0,0,.2); backdrop-filter: blur(12px); }
.hero-crest-stage img { position: relative; z-index: 2; width: 52%; filter: drop-shadow(0 22px 30px rgba(0,0,0,.25)); }
.hero-crest-stage small { position: absolute; z-index: 3; bottom: 12%; padding: 8px 12px; border-radius: 99px; background: var(--gold); color: var(--pine); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.sub-section { position: relative; padding: 110px 0; }
.sub-section.cream { background: var(--cream); }
.sub-section.mint { background: linear-gradient(135deg, #eaf4ed, #d9eadf); }
.sub-section.dark { background: var(--pine); color: white; }
.section-head { display: grid; grid-template-columns: 1fr .85fr; gap: 75px; align-items: end; margin-bottom: 62px; }
.section-head.compact { display: block; max-width: 820px; }
.section-head h2, .legal-title, .archive-head h2 { margin: 0; font-family: Georgia, serif; font-size: clamp(42px, 5vw, 70px); font-weight: 400; letter-spacing: -.035em; line-height: 1.03; }
.section-head > p:last-child { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.75; }
.dark .section-head > p:last-child { color: rgba(255,255,255,.65); }
.section-prose { font-size: 17px; line-height: 1.8; color: var(--muted); }

.statement-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: start; }
.statement-grid h2 { margin: 0; font-family: Georgia, serif; font-size: clamp(45px, 5vw, 72px); font-weight: 400; line-height: 1.03; letter-spacing: -.04em; }
.statement-copy p { margin: 0 0 20px; color: var(--muted); font-size: 17px; line-height: 1.8; }
.units-section { position: relative; overflow: hidden; background: linear-gradient(135deg, #dceee3, #f4efe4); }
.units-oak { position: absolute; width: 760px; right: -390px; top: -260px; opacity: .13; transform: rotate(-20deg); }
.crest-frame { position: relative; overflow-x: auto; padding: 30px; border: 1px solid rgba(12,57,45,.13); border-radius: 30px; background: rgba(255,255,255,.65); box-shadow: 0 28px 70px rgba(16,66,49,.1); scrollbar-color: var(--gold) transparent; }
.crest-frame img { min-width: 900px; width: 100%; border-radius: 18px; }
.scroll-hint { display: none; margin: 10px 0 0; font-size: 11px; color: var(--muted); }
.unit-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 20px; }
.unit-card { display: flex; flex-direction: column; gap: 10px; padding: 26px; border-radius: 20px; background: var(--pine); color: white; }
.unit-card strong { font-family: Georgia, serif; font-size: 22px; font-weight: 400; }
.unit-card span { color: rgba(255,255,255,.63); font-size: 13px; line-height: 1.65; }
.unit-card a { color: var(--gold); }
.timeline-list { border-top: 1px solid #d8dfda; }
.timeline-row { display: grid; grid-template-columns: 64px 150px 1fr; gap: 25px; align-items: start; padding: 30px 0; border-bottom: 1px solid #d8dfda; }
.timeline-index { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--pine); color: white; font-size: 11px; }
.timeline-row > strong { font-family: Georgia, serif; font-size: 30px; font-weight: 400; color: var(--leaf); }
.timeline-row h3 { margin: 0 0 8px; font-family: Georgia, serif; font-size: 24px; font-weight: 400; }
.timeline-row p { margin: 0; color: var(--muted); line-height: 1.7; }
.history-facts { display: grid; grid-template-columns: repeat(3, 1fr); margin: 55px 0; border-top: 1px solid rgba(255,255,255,.17); border-bottom: 1px solid rgba(255,255,255,.17); }
.history-fact { display: flex; flex-direction: column; gap: 8px; padding: 28px; border-right: 1px solid rgba(255,255,255,.17); }
.history-fact:last-child { border-right: 0; }
.history-fact strong { font-family: Georgia, serif; font-size: 42px; font-weight: 400; color: var(--gold); }
.history-fact span { color: rgba(255,255,255,.62); font-size: 12px; line-height: 1.5; text-transform: uppercase; letter-spacing: .08em; }
.history-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.history-card { padding: 30px; border: 1px solid rgba(255,255,255,.13); border-radius: 22px; background: rgba(255,255,255,.055); }
.history-card time { color: var(--gold); font-size: 10px; text-transform: uppercase; letter-spacing: .14em; }
.history-card h3 { margin: 14px 0 10px; font-family: Georgia, serif; font-size: 27px; font-weight: 400; }
.history-card p { margin: 0; color: rgba(255,255,255,.63); font-size: 14px; line-height: 1.75; }
.archive-wrap { margin-top: 95px; }
.archive-head { display: flex; justify-content: space-between; gap: 40px; align-items: end; margin-bottom: 35px; }
.archive-head p:last-child { max-width: 340px; color: rgba(255,255,255,.6); font-size: 13px; line-height: 1.6; }
.archive-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 13px; }
.archive-doc { display: block; padding: 10px; border-radius: 17px; background: white; color: var(--pine); transition: transform .25s ease; }
.archive-doc:hover { transform: translateY(-6px); }
.archive-doc img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top; border-radius: 10px; }
.archive-doc span { display: block; min-height: 44px; padding: 12px 5px 4px; font-size: 10px; line-height: 1.45; }

.full-footer { display: block; padding: 0; }
.footer-main { display: grid; grid-template-columns: 1.2fr .55fr .65fr; gap: 80px; padding: 68px 5vw 48px; }
.footer-about > p { max-width: 430px; margin: 24px 0 0; color: rgba(255,255,255,.58); font-size: 13px; line-height: 1.7; text-transform: none; letter-spacing: 0; }
.footer-links { display: flex; flex-direction: column; gap: 11px; text-transform: none; letter-spacing: 0; }
.footer-links strong { margin-bottom: 8px; color: var(--gold); font-size: 10px; text-transform: uppercase; letter-spacing: .15em; }
.footer-links a { color: rgba(255,255,255,.65); font-size: 13px; }
.footer-links a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding: 20px 5vw; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.45); font-size: 9px; }

@media (max-width: 900px) {
  .sub-hero { min-height: 680px; }
  .sub-hero-inner { grid-template-columns: 1fr .55fr; gap: 30px; }
  .statement-grid, .section-head { gap: 45px; }
  .archive-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 45px; }
  .footer-about { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .sub-hero { min-height: 650px; padding: 125px 0 70px; }
  .sub-hero-inner { grid-template-columns: 1fr; }
  .sub-hero-copy h1 { font-size: clamp(48px, 15vw, 68px); }
  .sub-hero-copy > p:last-of-type { font-size: 16px; }
  .hero-crest-stage { display: none; }
  .sub-section { padding: 78px 0; }
  .statement-grid, .section-head { grid-template-columns: 1fr; gap: 30px; }
  .unit-cards, .history-grid, .history-facts { grid-template-columns: 1fr; }
  .crest-frame { padding: 12px; border-radius: 20px; }
  .crest-frame img { min-width: 820px; }
  .scroll-hint { display: block; }
  .unit-card { padding: 22px; }
  .timeline-row { grid-template-columns: 48px 84px 1fr; gap: 10px; }
  .timeline-row > strong { font-size: 23px; }
  .timeline-row h3 { font-size: 20px; }
  .timeline-row p { font-size: 13px; }
  .history-fact { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.17); }
  .history-fact:last-child { border-bottom: 0; }
  .archive-wrap { margin-top: 70px; }
  .archive-head { display: block; }
  .archive-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr; gap: 35px; padding-top: 50px; }
  .footer-about { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* Youth page */
.youth-page-hero { position: relative; min-height: 820px; display: grid; align-items: center; overflow: hidden; color: white; }
.youth-page-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.youth-page-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,38,28,.94), rgba(7,52,38,.68) 55%, rgba(7,52,38,.22)); }
.youth-page-hero-copy { position: relative; z-index: 2; padding-top: 110px; }
.youth-page-hero-copy h1 { margin: 0; font-family: Georgia, serif; font-size: clamp(68px, 8vw, 116px); font-weight: 400; line-height: .92; letter-spacing: -.05em; }
.youth-page-hero-copy h1 em { color: var(--gold); font-weight: 400; }
.youth-page-hero-copy > p:not(.eyebrow) { max-width: 710px; margin: 28px 0 0; font-size: 18px; line-height: 1.75; color: rgba(255,255,255,.8); }
.youth-comic-grid { display: grid; grid-template-columns: .62fr 1.38fr; gap: 80px; align-items: center; }
.youth-comic-cover { position: relative; display: block; padding: 12px; border-radius: 28px; background: white; box-shadow: 0 30px 75px rgba(13,70,50,.18); transform: rotate(-2deg); transition: transform .3s ease; }
.youth-comic-cover:hover { transform: rotate(0) translateY(-5px); }
.youth-comic-cover img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: top; border-radius: 18px; }
.youth-comic-cover span { position: absolute; left: 28px; right: 28px; bottom: 28px; padding: 13px; border-radius: 12px; background: var(--pine); color: white; text-align: center; font-size: 12px; }
.youth-comic-grid h2, .application-preview h2, .application-heading h2, .wish-grid h2, .youth-contact-grid h2, .youth-cta h2 { margin: 0; font-family: Georgia, serif; font-size: clamp(40px, 5vw, 68px); font-weight: 400; line-height: 1.04; letter-spacing: -.04em; }
.youth-comic-grid > div > p:not(.eyebrow), .application-preview > p:not(.eyebrow), .wish-grid p, .youth-contact-grid p { color: var(--muted); font-size: 16px; line-height: 1.75; }
.application-grid { display: grid; grid-template-columns: .62fr 1.38fr; gap: 40px; align-items: start; }
.application-preview { position: sticky; top: 115px; padding: 28px; border-radius: 26px; background: var(--cream); }
.application-preview h2 { font-size: 40px; }
.application-preview img { width: 100%; margin: 24px 0 17px; border-radius: 16px; box-shadow: 0 18px 45px rgba(19,60,46,.14); }
.application-form { padding: 38px; border: 1px solid #d8e2db; border-radius: 30px; background: white; box-shadow: 0 25px 70px rgba(18,66,50,.09); }
.application-heading { display: grid; grid-template-columns: 92px 1fr; gap: 25px; align-items: start; padding-bottom: 30px; border-bottom: 1px solid #dbe3de; }
.application-heading > img { width: 90px; }
.application-heading h2 { font-size: 42px; }
.application-heading p:last-child { color: var(--muted); line-height: 1.65; }
.paenz-form { margin-top: 28px; }
.paenz-form fieldset { margin: 0 0 28px; padding: 24px; border: 1px solid #d9e2dc; border-radius: 20px; }
.paenz-form legend { padding: 0 9px; color: var(--pine); font-family: Georgia, serif; font-size: 20px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.form-grid label { display: flex; flex-direction: column; gap: 8px; }
.form-grid label.wide { grid-column: 1 / -1; }
.form-grid label > span { font-size: 11px; color: #42564d; }
.form-grid input, .form-grid textarea { width: 100%; padding: 14px 15px; border: 1px solid #c9d7cf; border-radius: 12px; outline: none; background: #f9fbf9; color: var(--ink); font: inherit; font-size: 14px; resize: vertical; }
.form-grid input:focus, .form-grid textarea:focus { border-color: var(--leaf); box-shadow: 0 0 0 3px rgba(44,118,88,.1); background: white; }
.form-grid .consent { display: grid; grid-template-columns: 20px 1fr; align-items: start; }
.form-grid .consent input { width: 18px; height: 18px; margin-top: 2px; }
.form-grid .consent span { line-height: 1.55; }
.form-note { padding: 14px 16px; border-radius: 12px; background: var(--cream); color: var(--muted); font-size: 11px; line-height: 1.6; }
.form-actions { display: flex; gap: 10px; }
.wish-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 75px; align-items: center; }
.wish-grid figure { margin: 0; padding: 12px; border-radius: 28px; background: white; transform: rotate(1deg); box-shadow: 0 28px 70px rgba(16,66,49,.13); }
.wish-grid figure img { border-radius: 19px; }
.youth-story { margin-top: 65px; padding: 42px; border-radius: 28px; background: var(--pine); color: white; }
.youth-story h3 { margin: 0 0 18px; font-family: Georgia, serif; font-size: 34px; font-weight: 400; }
.youth-story p:last-child { margin: 0; color: rgba(255,255,255,.68); line-height: 1.8; }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.benefit-grid article { min-height: 270px; padding: 27px; border-radius: 22px; background: var(--cream); }
.benefit-grid article > span { display: block; color: var(--gold); font-family: Georgia, serif; font-size: 28px; }
.benefit-grid h3 { margin: 70px 0 10px; font-family: Georgia, serif; font-size: 24px; font-weight: 400; color: var(--pine); }
.benefit-grid p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.youth-cta { position: relative; min-height: 650px; display: grid; align-items: center; overflow: hidden; color: white; }
.youth-cta > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.youth-cta-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,39,29,.92), rgba(5,39,29,.42)); }
.youth-cta .page-shell { position: relative; z-index: 2; }
.youth-cta h2 { max-width: 760px; }
.youth-cta .page-shell > p:not(.eyebrow) { max-width: 600px; line-height: 1.75; color: rgba(255,255,255,.75); }
.youth-contact-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: center; }
.contact-person { display: flex; flex-direction: column; padding: 30px; border-radius: 23px; background: white; }
.contact-person > span { color: var(--leaf); font-size: 10px; text-transform: uppercase; letter-spacing: .15em; }
.contact-person > strong { margin: 7px 0 14px; font-family: Georgia, serif; font-size: 38px; font-weight: 400; }
.contact-person > a:not(.button) { margin-bottom: 20px; color: var(--muted); }
.flyer-area { margin-top: 95px; }
.flyer-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 850px; }
.flyer-grid a { padding: 10px; border-radius: 21px; background: white; box-shadow: 0 20px 55px rgba(16,66,49,.11); }
.flyer-grid img { width: 100%; border-radius: 13px; }

/* Festival page */
.fest-hero { position: relative; min-height: 850px; display: grid; align-items: center; overflow: hidden; color: white; }
.fest-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.fest-hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,29,22,.93), rgba(5,40,30,.52) 62%, rgba(5,40,30,.2)), linear-gradient(0deg, rgba(4,29,22,.55), transparent); }
.fest-hero-copy { position: relative; z-index: 2; padding-top: 95px; }
.fest-hero h1 { margin: 0; max-width: 980px; font-family: Georgia, serif; font-size: clamp(60px, 8vw, 112px); font-weight: 400; line-height: .93; letter-spacing: -.05em; }
.fest-hero h1 em { color: var(--gold); font-weight: 400; }
.fest-hero-copy > p:not(.eyebrow) { margin: 25px 0; font-size: 18px; letter-spacing: .13em; text-transform: uppercase; }
.fest-royal { display: grid; grid-template-columns: .86fr 1.14fr; gap: 80px; align-items: center; }
.fest-royal figure { position: relative; margin: 0; overflow: hidden; border-radius: 30px; background: var(--cream); }
.fest-royal figure img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: top; }
.fest-royal figcaption { position: absolute; left: 16px; right: 16px; bottom: 16px; padding: 15px; border-radius: 14px; background: rgba(6,43,32,.82); color: white; text-align: center; backdrop-filter: blur(12px); }
.fest-royal h2, .poster-grid h2, .music-card h2, .hall-showcase h2, .hall-contact h2, .chronicle-lead h2 { margin: 0; font-family: Georgia, serif; font-size: clamp(42px, 5vw, 70px); font-weight: 400; line-height: 1.03; letter-spacing: -.04em; }
.fest-royal > div > p:not(.eyebrow) { color: var(--muted); font-size: 17px; line-height: 1.75; }
.royal-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 34px; }
.royal-facts span { display: flex; flex-direction: column; gap: 4px; padding: 18px; border-radius: 14px; background: var(--cream); color: var(--muted); font-size: 10px; }
.royal-facts strong { color: var(--pine); font-size: 13px; }
.programme-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.programme-card { overflow: hidden; border-radius: 25px; background: white; box-shadow: 0 20px 55px rgba(18,66,50,.08); }
.programme-card header { display: grid; grid-template-columns: 68px 1fr; gap: 16px; align-items: center; padding: 22px; background: var(--pine); color: white; }
.programme-card header > span { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 16px; background: var(--gold); color: var(--pine); font-family: Georgia, serif; font-size: 22px; }
.programme-card h3 { margin: 0; font-family: Georgia, serif; font-size: 27px; font-weight: 400; }
.programme-card header p { margin: 3px 0 0; color: rgba(255,255,255,.6); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.programme-card ol { margin: 0; padding: 10px 22px 20px; list-style: none; }
.programme-card li { display: grid; grid-template-columns: 92px 1fr; gap: 15px; padding: 16px 0; border-bottom: 1px solid #e2e6e3; }
.programme-card li:last-child { border-bottom: 0; }
.programme-card li.highlight { margin: 7px -10px 0; padding: 16px 10px; border: 0; border-radius: 12px; background: #eef5f0; }
.programme-card time { color: var(--leaf); font-size: 11px; }
.programme-card li > span { color: #47564f; font-size: 13px; line-height: 1.55; }
.music-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.music-card { padding: 45px; border-radius: 27px; background: var(--gold); color: var(--pine); }
.music-card.lighter { border: 1px solid rgba(255,255,255,.13); background: rgba(255,255,255,.06); color: white; }
.music-card > p:not(.eyebrow) { color: rgba(11,57,45,.7); }
.music-card.lighter ul { margin: 28px 0 0; padding: 0; list-style: none; }
.music-card.lighter li { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.67); }
.music-highlight { display: flex; flex-direction: column; margin-top: 70px; padding-top: 22px; border-top: 1px solid rgba(11,57,45,.25); }
.music-highlight span { font-size: 10px; text-transform: uppercase; letter-spacing: .15em; }
.music-highlight strong { margin-top: 5px; font-family: Georgia, serif; font-size: 42px; font-weight: 400; }
.poster-grid { display: grid; grid-template-columns: 1fr .75fr; gap: 80px; align-items: center; }
.poster-grid > div > p:not(.eyebrow) { color: var(--muted); line-height: 1.75; }
.poster-grid > a { padding: 12px; border-radius: 26px; background: white; box-shadow: 0 30px 75px rgba(18,66,50,.13); transform: rotate(1deg); }
.poster-grid img { width: 100%; border-radius: 17px; }

/* Hall, chronicle and legal */
.hall-showcase { display: grid; grid-template-columns: 1.2fr .8fr; gap: 75px; align-items: center; }
.hall-showcase figure { position: relative; margin: 0; overflow: hidden; border-radius: 30px; }
.hall-showcase figure > img { width: 100%; min-height: 480px; object-fit: cover; }
.hall-showcase figcaption { position: absolute; right: 16px; bottom: 16px; display: flex; flex-direction: column; padding: 15px 20px; border-radius: 14px; background: var(--gold); color: var(--pine); }
.hall-showcase figcaption strong { font-family: Georgia, serif; font-size: 34px; font-weight: 400; }
.hall-showcase figcaption span { font-size: 9px; text-transform: uppercase; letter-spacing: .13em; }
.hall-showcase > div > p:not(.eyebrow) { color: var(--muted); line-height: 1.75; }
.feature-grid-page { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.feature-grid-page article { min-height: 245px; padding: 27px; border-radius: 22px; background: white; }
.feature-grid-page article > span { font-family: Georgia, serif; font-size: 40px; color: var(--gold); }
.feature-grid-page h3 { margin: 62px 0 9px; font-family: Georgia, serif; font-size: 24px; font-weight: 400; }
.feature-grid-page p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.hall-page-gallery { display: grid; grid-template-columns: 1.5fr 1fr; grid-template-rows: repeat(2, 280px); gap: 14px; }
.hall-page-gallery figure { position: relative; margin: 0; overflow: hidden; border-radius: 24px; }
.hall-page-gallery figure.wide { grid-row: 1 / 3; }
.hall-page-gallery img { width: 100%; height: 100%; object-fit: cover; }
.hall-page-gallery figcaption { position: absolute; left: 14px; bottom: 14px; padding: 10px 14px; border-radius: 10px; background: rgba(255,255,255,.88); color: var(--pine); font-size: 11px; }
.hall-contact { display: grid; grid-template-columns: 1fr .9fr; gap: 70px; align-items: center; }
.hall-contact > div:first-child > p:not(.eyebrow) { color: var(--muted); line-height: 1.7; }
.hall-contact-actions { display: flex; flex-direction: column; gap: 10px; }
.hall-contact-actions a { display: flex; flex-direction: column; padding: 21px; border-radius: 17px; background: white; }
.hall-contact-actions span { color: var(--leaf); font-size: 9px; text-transform: uppercase; letter-spacing: .13em; }
.hall-contact-actions strong { margin-top: 5px; font-family: Georgia, serif; font-size: 23px; font-weight: 400; }
.chronicle-lead { display: grid; grid-template-columns: 1.15fr .85fr; gap: 75px; align-items: center; }
.chronicle-lead figure { position: relative; margin: 0; overflow: hidden; border-radius: 30px; }
.chronicle-lead figure img { width: 100%; min-height: 480px; object-fit: cover; }
.chronicle-lead figcaption { position: absolute; left: 18px; bottom: 18px; display: flex; flex-direction: column; padding: 14px 18px; border-radius: 14px; background: var(--gold); color: var(--pine); }
.chronicle-lead figcaption span { font-size: 9px; text-transform: uppercase; letter-spacing: .12em; }
.chronicle-lead figcaption strong { font-family: Georgia, serif; font-size: 26px; font-weight: 400; }
.chronicle-lead > div > p:not(.eyebrow) { color: var(--muted); line-height: 1.75; }
.hall-timeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; }
.hall-timeline > div { position: relative; padding: 20px 25px 20px 0; }
.hall-timeline strong { font-family: Georgia, serif; font-size: 28px; font-weight: 400; color: var(--leaf); }
.hall-timeline span { display: block; height: 2px; margin: 16px 0; background: #cbd8d0; }
.hall-timeline span::before { content: ""; display: block; width: 10px; height: 10px; border-radius: 50%; background: var(--gold); transform: translateY(-4px); }
.hall-timeline p { color: var(--muted); font-size: 12px; line-height: 1.6; }
.build-numbers { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid rgba(255,255,255,.15); border-bottom: 1px solid rgba(255,255,255,.15); }
.build-numbers > div { display: flex; flex-direction: column; gap: 7px; padding: 27px; border-right: 1px solid rgba(255,255,255,.15); }
.build-numbers > div:last-child { border-right: 0; }
.build-numbers strong { font-family: Georgia, serif; font-size: 35px; font-weight: 400; color: var(--gold); }
.build-numbers span { color: rgba(255,255,255,.55); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.history-quote { max-width: 900px; margin: 75px auto 0; text-align: center; }
.history-quote blockquote { margin: 0; font-family: Georgia, serif; font-size: clamp(28px, 3.5vw, 46px); font-weight: 400; line-height: 1.35; }
.history-quote p { color: var(--gold); font-size: 10px; text-transform: uppercase; letter-spacing: .13em; }
.chronicle-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.chronicle-grid article { padding: 30px; border-radius: 22px; background: white; }
.chronicle-grid article.fire { background: #6f2d23; color: white; }
.chronicle-grid time { color: var(--leaf); font-size: 10px; text-transform: uppercase; letter-spacing: .13em; }
.chronicle-grid article.fire time { color: #f2c576; }
.chronicle-grid h3 { margin: 13px 0 10px; font-family: Georgia, serif; font-size: 27px; font-weight: 400; }
.chronicle-grid p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.75; }
.chronicle-grid article.fire p { color: rgba(255,255,255,.7); }
.scan-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.scan-grid a { padding: 8px; border-radius: 16px; background: var(--cream); transition: transform .25s ease; }
.scan-grid a:hover { transform: translateY(-6px); }
.scan-grid img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top; border-radius: 10px; }
.legal-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.legal-grid article { padding: 30px; border-radius: 22px; background: var(--cream); }
.legal-grid article.wide { grid-column: 1 / -1; }
.legal-grid article h2 { margin: 0 0 18px; font-family: Georgia, serif; font-size: 30px; font-weight: 400; line-height: 1.25; }
.legal-grid article p:not(.eyebrow) { margin: 0 0 12px; color: var(--muted); line-height: 1.75; }
.legal-grid .legal-note { background: var(--pine); color: white; }
.legal-grid .legal-note p:not(.eyebrow) { color: rgba(255,255,255,.7); }

@media (max-width: 900px) {
  .benefit-grid, .feature-grid-page { grid-template-columns: repeat(2, 1fr); }
  .programme-grid, .music-grid { grid-template-columns: 1fr; }
  .hall-timeline { grid-template-columns: repeat(3, 1fr); }
  .build-numbers, .scan-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 680px) {
  .youth-page-hero, .fest-hero { min-height: 730px; }
  .youth-page-hero-copy h1, .fest-hero h1 { font-size: clamp(55px, 16vw, 76px); }
  .youth-comic-grid, .application-grid, .wish-grid, .youth-contact-grid, .fest-royal, .poster-grid, .hall-showcase, .hall-contact, .chronicle-lead { grid-template-columns: 1fr; gap: 38px; }
  .application-preview { position: static; }
  .application-form { padding: 22px 16px; }
  .application-heading { grid-template-columns: 62px 1fr; gap: 15px; }
  .application-heading > img { width: 62px; }
  .application-heading h2 { font-size: 30px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid label.wide { grid-column: auto; }
  .paenz-form fieldset { padding: 16px; }
  .form-actions { flex-direction: column; }
  .benefit-grid, .feature-grid-page { grid-template-columns: 1fr; }
  .benefit-grid article, .feature-grid-page article { min-height: 220px; }
  .benefit-grid h3, .feature-grid-page h3 { margin-top: 40px; }
  .flyer-grid, .programme-grid, .music-grid, .chronicle-grid, .legal-grid { grid-template-columns: 1fr; }
  .programme-card li { grid-template-columns: 76px 1fr; gap: 10px; }
  .royal-facts { grid-template-columns: 1fr; }
  .hall-page-gallery { grid-template-columns: 1fr; grid-template-rows: repeat(3, 260px); }
  .hall-page-gallery figure.wide { grid-row: auto; }
  .hall-timeline, .build-numbers { grid-template-columns: 1fr; }
  .hall-timeline > div { padding-right: 0; }
  .build-numbers > div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.15); }
  .scan-grid { grid-template-columns: repeat(2, 1fr); }
  .legal-grid article.wide { grid-column: auto; }
}

@media print {
  .site-header, .site-footer, .application-preview, .form-actions { display: none !important; }
  .sub-section { padding: 0; }
  .application-grid { display: block; }
  .application-form { box-shadow: none; border: 0; padding: 0; }
}
