:root {
  --parchment: #f5edd0;
  --terracotta: #b5451b;
  --dark: #1a1410;
  --text: #2c1a0e;
  --gold: #c9a96e;
  --warm: #ede3d0;
  --white: #fffaf0;
  --shadow: 0 14px 34px rgba(26, 20, 16, 0.14);
  --font-body: Lato, Arial, sans-serif;
  --font-heading: Cinzel, Georgia, serif;
  --font-accent: "Cormorant Garamond", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--parchment);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; transition: color .2s, background .2s, border-color .2s; }
img { display: block; max-width: 100%; height: auto; }
h1, h2, h3, h4 { color: var(--dark); font-family: var(--font-heading); line-height: 1.2; margin: 0 0 1rem; letter-spacing: 0; }
h1 { font-size: clamp(2.4rem, 5vw, 4.8rem); text-transform: uppercase; }
h2 { font-size: clamp(1.8rem, 3vw, 2.7rem); text-transform: uppercase; }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1rem; }
table { width: 100%; border-collapse: collapse; background: var(--white); box-shadow: var(--shadow); border-radius: 8px; overflow: hidden; }
th, td { border-top: 1px solid var(--warm); padding: .9rem 1rem; text-align: left; vertical-align: top; }
tr:first-child th, tr:first-child td { border-top: 0; }
th { color: var(--dark); font-family: var(--font-heading); }

.container { width: min(1180px, calc(100% - 2rem)); margin-inline: auto; }
.narrow { width: min(860px, calc(100% - 2rem)); }
.centered { text-align: center; }
.section { padding: 4rem 0; }
.muted, .tickets-section { background: var(--warm); }
.section-title { margin-bottom: 2rem; text-align: center; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.skip-to-content { position: absolute; left: 1rem; top: -3rem; z-index: 1000; background: var(--terracotta); color: #fff; padding: .6rem 1rem; border-radius: 0 0 6px 6px; font-weight: 700; }
.skip-to-content:focus { top: 0; }

.icon { display: inline-flex; width: 1.35rem; height: 1.35rem; flex: 0 0 auto; }
.icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(245,237,208,.96); border-bottom: 1px solid rgba(201,169,110,.35); box-shadow: 0 2px 14px rgba(26,20,16,.12); backdrop-filter: blur(8px); }
.topbar { background: rgba(26,20,16,.97); color: var(--warm); }
.topbar-inner { display: flex; justify-content: flex-end; padding-block: .35rem; }
.language-nav { display: flex; gap: .25rem; }
.language-nav a { border-radius: 4px; padding: .15rem .5rem; font-size: .78rem; font-weight: 700; }
.language-nav a.active, .language-nav a:hover { background: var(--terracotta); color: #fff; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: .8rem; }
.brand { display: flex; align-items: center; gap: .75rem; min-width: 0; }
.brand-symbols { align-items: center; border: 2px solid var(--gold); border-radius: 50%; color: var(--terracotta); display: inline-flex; font-family: var(--font-heading); font-size: .82rem; font-weight: 900; height: 2.4rem; justify-content: center; letter-spacing: 0; white-space: nowrap; width: 2.4rem; }
.brand-text { display: flex; flex-direction: column; min-width: 0; }
.brand-title { color: var(--dark); font-family: var(--font-heading); font-size: clamp(1.15rem, 2.4vw, 1.55rem); font-weight: 800; text-transform: uppercase; }
.brand-subtitle { color: var(--gold); font-family: var(--font-accent); font-size: .95rem; font-style: italic; }
.primary-menu { align-items: center; display: flex; gap: .25rem; list-style: none; margin: 0; padding: 0; }
.primary-menu a { border-radius: 6px; color: var(--text); display: block; font-size: .92rem; font-weight: 700; padding: .55rem .75rem; }
.primary-menu a:hover, .primary-menu .current-menu-item > a { background: var(--terracotta); color: #fff; }
.menu-toggle { display: none; align-items: center; justify-content: center; width: 2.5rem; height: 2.5rem; border: 0; border-radius: 6px; color: var(--dark); background: transparent; cursor: pointer; }
.menu-toggle .menu-close { display: none; }
.menu-toggle[aria-expanded="true"] .menu-open { display: none; }
.menu-toggle[aria-expanded="true"] .menu-close { display: inline-flex; }

.hero { min-height: 70vh; position: relative; display: grid; place-items: center; background-position: center; background-size: cover; color: #fff; text-align: center; }
.page-image-hero { min-height: 40vh; }
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.55); }
.hero-content { position: relative; z-index: 1; padding: 4rem 0; }
.hero h1, .hero p { color: #fff; }
.hero p, .page-hero p { font-family: var(--font-accent); font-size: clamp(1.25rem, 2vw, 1.75rem); font-style: italic; }
.page-hero { background: var(--dark); color: #fff; padding: 4rem 0; text-align: center; }
.page-hero h1, .page-hero p, .page-hero time { color: #fff; }
.page-hero time { color: rgba(255,255,255,.74); display: block; margin-bottom: .7rem; }

.button { align-items: center; border: 2px solid transparent; border-radius: 6px; display: inline-flex; gap: .45rem; font-weight: 800; justify-content: center; min-height: 2.65rem; padding: .6rem 1.3rem; }
.button-primary { background: var(--terracotta); color: #fff; }
.button-primary:hover { background: color-mix(in srgb, var(--terracotta) 82%, #000); color: #fff; }
.button-outline { border-color: var(--terracotta); color: var(--terracotta); }
.button-outline:hover { background: var(--terracotta); color: #fff; }
.text-link { color: var(--terracotta); font-weight: 800; }
.text-link:hover { color: color-mix(in srgb, var(--terracotta) 72%, #000); }

.info-strip { display: grid; gap: 1rem; grid-template-columns: repeat(3, 1fr); margin-top: -3.5rem; position: relative; z-index: 2; }
.info-strip article { align-items: center; background: var(--white); border-radius: 8px; box-shadow: var(--shadow); display: flex; gap: 1rem; padding: 1.25rem; }
.info-strip .icon { color: var(--terracotta); height: 2rem; width: 2rem; }
.info-strip h2 { font-size: .9rem; margin-bottom: .2rem; }
.info-strip p { margin: 0; font-size: .92rem; }

.section-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.image-frame, .featured-image { border-radius: 8px; box-shadow: var(--shadow); overflow: hidden; margin: 0; }
.image-frame img { width: 100%; height: 400px; object-fit: cover; }
.ticket-embed { align-items: center; background: rgba(255,255,255,.55); border: 2px dashed rgba(201,169,110,.75); border-radius: 8px; display: flex; justify-content: center; margin-top: 2rem; min-height: 180px; padding: 2rem; }
.ticket-embed p { color: rgba(44,26,14,.7); font-family: var(--font-accent); font-size: 1.25rem; font-style: italic; margin: 0; }

.card-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(3, 1fr); }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.news-card, .gallery-card, .info-card, .download-card, .legal-blocks article, .widget { background: var(--white); border: 0; border-radius: 8px; box-shadow: var(--shadow); overflow: hidden; }
.news-card img { height: 210px; object-fit: cover; width: 100%; }
.news-card.horizontal { display: grid; grid-template-columns: 220px 1fr; }
.news-card.horizontal img { height: 100%; min-height: 170px; }
.card-body { padding: 1.35rem; }
.card-body time { color: var(--gold); display: block; font-size: .78rem; font-weight: 800; margin-bottom: .5rem; text-transform: uppercase; }
.card-body h2, .card-body h3 { font-size: 1.08rem; margin-bottom: .65rem; text-transform: none; }
.card-body p { color: rgba(44,26,14,.82); font-size: .94rem; }
.mini-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin: 2rem 0; }
.mini-gallery img { aspect-ratio: 1; border-radius: 8px; object-fit: cover; width: 100%; }
.social-strip { background: var(--dark); color: #fff; }
.social-strip h2 { color: #fff; }
.social-links { display: flex; flex-wrap: wrap; gap: .75rem; }
.social-links.large { justify-content: center; }
.social-links a { background: rgba(255,255,255,.1); border-radius: 999px; color: var(--warm); display: inline-flex; font-size: .9rem; font-weight: 800; padding: .55rem .9rem; }
.social-links a:hover { background: var(--terracotta); color: #fff; }

.gallery-grid .gallery-card { cursor: pointer; display: block; padding: 0; text-align: left; width: 100%; }
.gallery-grid a.gallery-card:hover { color: var(--terracotta); transform: translateY(-2px); }
.gallery-card img { height: 230px; object-fit: cover; width: 100%; }
.gallery-card figcaption, .gallery-card span { display: block; font-weight: 700; padding: .8rem 1rem; }
.filter-tabs { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center; margin-bottom: 2rem; }
.filter-tabs button { background: var(--warm); border: 0; border-radius: 999px; color: var(--text); cursor: pointer; font-weight: 800; padding: .55rem 1.25rem; }
.filter-tabs button.active, .filter-tabs button:hover { background: var(--terracotta); color: #fff; }
.lightbox { align-items: center; background: rgba(0,0,0,.9); display: flex; inset: 0; justify-content: center; padding: 1rem; position: fixed; z-index: 200; }
.lightbox[hidden] { display: none; }
.lightbox img { max-height: 86vh; width: auto; }
.lightbox-close { background: transparent; border: 0; color: #fff; cursor: pointer; position: absolute; right: 1rem; top: 1rem; width: 2.5rem; height: 2.5rem; }

.timeline { border-left: 2px solid var(--terracotta); list-style: none; margin: 2rem 0; padding: 0 0 0 1.8rem; }
.timeline li { margin-bottom: 1.6rem; position: relative; }
.timeline li::before { background: var(--terracotta); border: 3px solid #fff; border-radius: 50%; content: ""; height: .95rem; left: -2.35rem; position: absolute; top: .3rem; width: .95rem; }
.timeline strong { color: var(--terracotta); display: block; font-family: var(--font-heading); font-size: 1.1rem; }
blockquote { background: rgba(181,69,27,.1); border-left: 4px solid var(--terracotta); border-radius: 0 8px 8px 0; font-family: var(--font-accent); font-size: 1.45rem; font-style: italic; margin: 2rem 0 0; padding: 1.5rem; }

.map-section iframe { border: 0; display: block; height: 440px; width: 100%; }
.two-panels { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; align-items: start; }
.info-card, .download-card, .legal-blocks article { padding: 1.5rem; }
.info-card h3, .download-card h2, .legal-blocks h2 { font-size: 1.05rem; }
.download-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.download-card { display: flex; flex-direction: column; align-items: flex-start; min-height: 250px; }
.download-card .icon { color: var(--terracotta); height: 2.4rem; width: 2.4rem; margin-bottom: 1rem; }
.download-card p { flex: 1; }
.download-cover { border-radius: 8px; margin: 0 0 1rem; overflow: hidden; width: 100%; }
.download-cover img { aspect-ratio: 16 / 10; object-fit: cover; width: 100%; }
.download-type { color: var(--gold); display: block; font-size: .76rem; font-weight: 900; letter-spacing: .04em; margin-bottom: .45rem; text-transform: uppercase; }
.muted-button { pointer-events: none; opacity: .78; }
.notice { background: var(--warm); border-radius: 8px; margin-top: 2rem; padding: 1.2rem; text-align: center; }
.legal-blocks { display: grid; gap: 1.5rem; }
.legal-blocks article.accent { background: rgba(181,69,27,.1); border-left: 4px solid var(--terracotta); }

.content-grid { display: grid; grid-template-columns: 1fr 320px; gap: 2rem; align-items: start; }
.post-list { display: grid; gap: 1.5rem; }
.sidebar { display: grid; gap: 1.2rem; }
.widget { padding: 1.2rem; }
.widget-title { font-size: .95rem; }
.widget ul { list-style: none; margin: 0; padding: 0; }
.widget li + li { border-top: 1px solid var(--warm); margin-top: .6rem; padding-top: .6rem; }
.search-form { display: flex; gap: .5rem; }
.search-field { border: 1px solid var(--warm); border-radius: 6px; flex: 1; min-width: 0; padding: .65rem .75rem; }
.search-submit { background: var(--terracotta); border: 0; border-radius: 6px; color: #fff; cursor: pointer; font-weight: 800; padding: .65rem .9rem; }
.page-content { background: rgba(255,255,255,.45); }
.page-content > * { max-width: 860px; }
.page-content > .alignwide { max-width: 1180px; }
.single-post .page-content { background: var(--parchment); }
.single-post .featured-image { margin-bottom: 2rem; }
.nav-links { display: flex; gap: .7rem; margin-top: 1.5rem; }
.nav-links a, .nav-links span { background: var(--white); border-radius: 6px; box-shadow: var(--shadow); padding: .45rem .75rem; }

.site-footer { background: var(--dark); color: var(--warm); }
.site-footer h2 { color: #fff; font-size: 1.05rem; }
.site-footer a:hover { color: var(--gold); }
.footer-note { border-bottom: 1px solid rgba(255,255,255,.1); padding: .9rem 0; text-align: center; }
.footer-note p { color: rgba(237,227,208,.72); font-size: .8rem; margin: 0; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1.3fr .9fr 1.1fr 1fr; padding-block: 3rem; }
.footer-menu, .contact-list { list-style: none; margin: 0; padding: 0; }
.footer-menu li + li, .contact-list li + li { margin-top: .5rem; }
.contact-list li { display: flex; gap: .5rem; }
.footer-symbols { align-items: center; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold); display: inline-flex; font-family: var(--font-heading); font-weight: 900; height: 2.2rem; justify-content: center; width: 2.2rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom-inner { align-items: center; display: flex; justify-content: space-between; gap: 1rem; padding-block: 1rem; }
.footer-bottom p { color: rgba(237,227,208,.65); font-size: .82rem; margin: 0; }

@media (max-width: 980px) {
  .menu-toggle { display: inline-flex; }
  .primary-nav { background: var(--parchment); border-top: 1px solid rgba(201,169,110,.35); display: none; left: 0; position: absolute; right: 0; top: 100%; }
  .primary-nav.is-open { display: block; }
  .primary-menu { align-items: stretch; flex-direction: column; padding: 1rem; }
  .primary-menu a { padding: .85rem 1rem; }
  .info-strip, .section-two-col, .two-panels, .content-grid, .footer-grid { grid-template-columns: 1fr; }
  .card-grid, .card-grid.four { grid-template-columns: repeat(2, 1fr); }
  .news-card.horizontal { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 1rem, 1180px); }
  .section { padding: 3rem 0; }
  .hero { min-height: 62vh; }
  .info-strip, .card-grid, .card-grid.four, .download-grid, .mini-gallery { grid-template-columns: 1fr; }
  .brand-subtitle { display: none; }
  .brand-symbols { display: none; }
  .image-frame img, .map-section iframe { height: 320px; }
  .footer-bottom-inner { align-items: flex-start; flex-direction: column; }
}
