:root {
  --ogp-blue:#2C3385;
  --ogp-orange:#F29104;
  --ogp-cream:#F0EEE9;
  --ogp-dark:#1a1f4e;
  --ogp-grey:#5D5F5F;
  --ogp-light:#f8f7f4;
  --font-heading:'Lato',sans-serif;
  --font-body:'Montserrat',sans-serif;
}

html { scroll-behavior: smooth; }
*,
*::before,
*::after { box-sizing: border-box; }
body {
  min-width: 320px;
  margin: 0;
  background: #fff;
  color: #1a1a1a;
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}
button,
input,
select,
textarea { font: inherit; }
img, svg, video, canvas { max-width: 100%; }
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  background: #fff;
  color: var(--ogp-blue);
  padding: 10px 14px;
  border-radius: 6px;
  font: 700 13px var(--font-body);
  z-index: 2000;
  box-shadow: 0 10px 25px rgba(0,0,0,.18);
}
.skip-link:focus { transform: translateY(0); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(44,51,133,.12);
  box-shadow: 0 8px 28px rgba(26,31,78,.08);
  backdrop-filter: blur(14px);
}
.site-header-inner {
  max-width: 1180px;
  margin: 0 auto;
  min-height: 76px;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ogp-blue);
  text-decoration: none;
  min-width: 0;
}
.site-brand-mark {
  width: 52px;
  height: 52px;
  object-fit: contain;
  background: #fff;
  border-radius: 6px;
}
.site-brand-text {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 15px;
  line-height: 1.05;
  color: var(--ogp-blue);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 13px;
  border-radius: 6px;
  color: var(--ogp-blue);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}
.site-nav-link:hover,
.site-nav-link[aria-current="page"] {
  background: rgba(242,145,4,.12);
  color: var(--ogp-dark);
}
.site-menu-toggle {
  display: none;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(44,51,133,.18);
  border-radius: 6px;
  background: #fff;
  color: var(--ogp-blue);
  min-height: 42px;
  padding: 0 12px;
  font: 700 13px var(--font-body);
  cursor: pointer;
}
.site-menu-icon {
  width: 18px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  position: relative;
}
.site-menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 3px;
  border-top: 2px solid currentColor;
}
.site-mobile-nav {
  display: none;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 16px;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.site-header[data-open="true"] .site-mobile-nav { display: grid; }
.hero { margin-top: 0; }
.section {
  padding: 80px 48px;
}
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-cream {
  background: var(--ogp-cream);
}
.section-tag {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ogp-orange);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 900;
  color: var(--ogp-blue);
  line-height: 1.15;
  letter-spacing: 0;
  margin: 0 0 20px;
}
.section-divider {
  width: 48px;
  height: 4px;
  background: var(--ogp-orange);
  border-radius: 2px;
  margin-bottom: 28px;
}
.section-body {
  font-family: var(--font-body);
  font-size: 15.5px;
  color: #2a2a2a;
  line-height: 1.8;
}
.page-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ogp-dark);
  padding: 76px 48px 98px;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(44,51,133,.95), rgba(26,31,78,.84) 62%, rgba(242,145,4,.20));
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/concert-cerulli.jpg');
  background-size: cover;
  background-position: center 38%;
  filter: saturate(.58) brightness(.44);
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
.page-hero-eyebrow {
  margin: 0 0 18px;
  color: var(--ogp-orange);
  font: 800 12px/1.45 var(--font-body);
  letter-spacing: 3px;
  text-transform: uppercase;
}
.page-hero-title {
  max-width: 820px;
  margin: 0;
  color: #fff;
  font: 900 64px/1.04 var(--font-heading);
  letter-spacing: 0;
}
.page-hero-diagonal {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  z-index: 3;
  height: 80px;
}
.photo-url-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 210px;
  overflow: hidden;
  border: 1.5px dashed rgba(44,51,133,.28);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(242,145,4,.11), rgba(44,51,133,.05)),
    #fff;
  color: var(--ogp-blue);
  box-shadow: 0 4px 18px rgba(44,51,133,.06);
}
.photo-url-box.ratio-4-3 { aspect-ratio: 4 / 3; }
.photo-url-box.ratio-3-4 { aspect-ratio: 3 / 4; }
.photo-url-box.ratio-16-9 { aspect-ratio: 16 / 9; }
.photo-url-box.ratio-1-1 { aspect-ratio: 1 / 1; }
.photo-url-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-url-box[data-has-photo="true"] {
  border-style: solid;
  border-color: rgba(44,51,133,.12);
  background: #fff;
}
.photo-url-placeholder {
  max-width: 88%;
  padding: 24px;
  text-align: center;
  color: rgba(44,51,133,.82);
  font-family: var(--font-body);
}
.photo-url-placeholder strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ogp-blue);
  font: 900 18px/1.2 var(--font-heading);
}
.photo-url-placeholder span {
  display: block;
  color: rgba(93,95,95,.92);
  font: 600 13px/1.55 var(--font-body);
}
.events-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ogp-dark);
  padding: 70px 48px 92px;
}
.events-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44,51,133,.96), rgba(26,31,78,.82), rgba(242,145,4,.16));
  z-index: 1;
}
.events-hero .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 36%;
  filter: saturate(.55) brightness(.42);
}
.events-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}
.events-hero .hero-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ogp-orange);
  margin-bottom: 16px;
}
.events-hero .hero-title {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  letter-spacing: 0;
  margin: 0 0 20px;
}
.events-hero .hero-subtitle {
  max-width: 610px;
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255,255,255,.82);
  line-height: 1.75;
  margin: 0;
}
.events-hero .hero-diagonal {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 3;
}
.ogp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  padding: 13px 22px;
  border-radius: 6px;
  background: var(--ogp-blue);
  color: #fff;
  text-decoration: none;
  font: 700 14px var(--font-body);
}
.ogp-footer {
  position: relative;
  background:
    linear-gradient(135deg, rgba(242,145,4,.10), rgba(242,145,4,0) 34%),
    var(--ogp-dark);
  color: #fff;
  padding: 58px 24px 28px;
  border-top: 6px solid var(--ogp-orange);
}
.ogp-footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(240px, .9fr) minmax(320px, 1.25fr) minmax(220px, .75fr);
  gap: 44px;
  align-items: start;
}
.ogp-footer-brand,
.ogp-footer-data,
.ogp-footer-actions {
  min-width: 0;
}
.ogp-footer-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: #fff;
  text-decoration: none;
  margin-bottom: 22px;
}
.ogp-footer-brand-link img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
  padding: 4px;
}
.ogp-footer-brand-link span {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.08;
}
.ogp-footer-brand p {
  max-width: 310px;
  margin: 0 0 24px;
  color: rgba(255,255,255,.72);
  font: 400 14px/1.75 var(--font-body);
}
.ogp-footer h2 {
  margin: 0 0 18px;
  color: var(--ogp-orange);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.2px;
  line-height: 1.35;
  text-transform: uppercase;
}
.ogp-footer-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 22px;
  margin: 0;
}
.ogp-footer-details div {
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.16);
}
.ogp-footer-details dt {
  margin: 0 0 5px;
  color: rgba(255,255,255,.54);
  font: 700 11px/1.3 var(--font-body);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.ogp-footer-details dd {
  margin: 0;
  color: rgba(255,255,255,.88);
  font: 500 14px/1.55 var(--font-body);
}
.ogp-footer-note {
  margin: 22px 0 0;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255,255,255,.58);
}
.ogp-footer-links {
  display: grid;
  gap: 10px;
  margin-bottom: 30px;
}
.ogp-footer-links a {
  color: rgba(255,255,255,.86);
  font: 700 15px/1.4 var(--font-body);
  text-decoration: none;
}
.ogp-footer-links a:hover {
  color: var(--ogp-orange);
}
.ogp-footer-social-title {
  margin-top: 0 !important;
}
.ogp-footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0;
}
.social-chip {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid rgba(255,255,255,.28);
  box-shadow: 0 12px 26px rgba(0,0,0,.28);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.social-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.62);
  box-shadow: 0 16px 32px rgba(0,0,0,.32);
}
.social-chip svg {
  width: 27px;
  height: 27px;
  display: block;
}
.social-chip.instagram svg {
  fill: none;
  stroke: #fff;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.social-chip.youtube svg,
.social-chip.facebook svg,
.social-chip.tiktok svg {
  fill: #fff;
  stroke: none;
}
.social-chip.instagram { background: linear-gradient(135deg,#6a38d7,#e74178,#ffb347); }
.social-chip.youtube { background: #f30000; }
.social-chip.facebook { background: #1877f2; }
.social-chip.tiktok { background: #050505; }
.archive-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 6px;
  background: var(--ogp-orange);
  color: var(--ogp-dark);
  text-decoration: none;
  font: 800 13px var(--font-body);
  box-shadow: 0 12px 28px rgba(242,145,4,.22);
}
.archive-button:hover {
  background: #ffab2e;
}
.ogp-footer-bottom {
  max-width: 1180px;
  margin: 42px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.ogp-footer-bottom p {
  margin: 0;
  color: rgba(255,255,255,.62);
  font: 500 13px/1.6 var(--font-body);
}
.events-hero .hero-title span { color: var(--ogp-orange); }
.events-section .section-title span { color: var(--ogp-orange); }
.events-section,
.portfolio-section {
  font-family: var(--font-body);
}
.ogp-concerti {
  max-width: 980px;
  margin: 0 auto;
}
.events-widget-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 18px;
  margin-bottom: 28px;
  border-bottom: 3px solid var(--ogp-orange);
}
.btn-all {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1.5px solid var(--ogp-blue);
  border-radius: 6px;
  padding: 9px 18px;
  color: var(--ogp-blue);
  background: transparent;
  text-decoration: none;
  font: 700 12px var(--font-body);
  transition: background .18s, color .18s;
}
.btn-all:hover { background: var(--ogp-blue); color: #fff; }
.state-msg {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px;
  background: var(--ogp-cream);
  border-radius: 10px;
  color: var(--ogp-grey);
  font: 500 14px var(--font-body);
}
.spinner {
  width: 22px;
  height: 22px;
  border: 2.5px solid rgba(44,51,133,.15);
  border-top-color: var(--ogp-blue);
  border-radius: 50%;
  animation: spin .75s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.event-card {
  background: #fff;
  border: 1px solid rgba(44,51,133,.10);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 3px 16px rgba(44,51,133,.07);
}
.card-date-band {
  background: var(--ogp-blue);
  padding: 14px 18px 12px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.date-block {
  min-width: 50px;
  border-radius: 8px;
  background: var(--ogp-orange);
  color: #fff;
  padding: 6px 10px 4px;
  text-align: center;
}
.date-day {
  display: block;
  font: 900 26px/1 var(--font-heading);
}
.date-month {
  display: block;
  margin-top: 1px;
  font: 700 10px/1.2 var(--font-body);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.date-meta {
  color: rgba(255,255,255,.78);
  font: 600 12px/1.35 var(--font-body);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.card-body {
  padding: 22px 20px;
  flex: 1;
}
.event-title {
  margin: 0 0 14px;
  color: var(--ogp-blue);
  font: 900 19px/1.18 var(--font-heading);
}
.event-meta {
  display: grid;
  gap: 8px;
  color: var(--ogp-grey);
  font: 500 13px/1.45 var(--font-body);
}
.meta-row {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.meta-icon {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--ogp-orange);
}
.event-desc {
  margin: 14px 0 0;
  color: #3a3a3a;
  font: 400 13px/1.65 var(--font-body);
}
.card-footer {
  padding: 14px 20px 18px;
  border-top: 1px solid rgba(44,51,133,.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.badge-concerto {
  border-radius: 999px;
  background: rgba(242,145,4,.13);
  color: #9a5700;
  padding: 5px 10px;
  font: 700 11px var(--font-body);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.link-details {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ogp-blue);
  text-decoration: none;
  font: 700 12px var(--font-body);
}
.no-events {
  padding: 40px 24px;
  border-radius: 12px;
  background: var(--ogp-cream);
  color: var(--ogp-grey);
  text-align: center;
  font: 500 14px/1.6 var(--font-body);
}
.no-events strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ogp-blue);
  font: 900 17px var(--font-heading);
}
.anchor-offset {
  position: relative;
  top: -90px;
}
.poster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}
.portfolio-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 6px;
}
.portfolio-archive-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 6px;
  border: 1.5px solid var(--ogp-blue);
  color: var(--ogp-blue);
  background: #fff;
  text-decoration: none;
  font: 800 12px var(--font-body);
  white-space: nowrap;
}
.portfolio-archive-link:hover {
  background: var(--ogp-blue);
  color: #fff;
}
.poster-card {
  display: block;
  background: #fff;
  border: 1px solid rgba(44,51,133,.10);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(44,51,133,.10);
}
.poster-card img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}
.poster-empty {
  grid-column: 1 / -1;
  padding: 32px;
  background: #fff;
  border: 1px dashed rgba(44,51,133,.22);
  border-radius: 8px;
  color: var(--ogp-grey);
  font: 500 14px var(--font-body);
  text-align: center;
}
.not-found { min-height: 55vh; }
@media (max-width: 980px) {
  .site-nav { display: none; }
  .site-menu-toggle { display: inline-flex; }
  .ogp-footer-inner { grid-template-columns: 1fr; }
  .ogp-footer-details { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .site-header-inner { min-height: 68px; padding: 8px 16px; }
  .site-brand-mark { width: 44px; height: 44px; }
  .site-brand-text { font-size: 13px; }
  .site-mobile-nav { padding: 0 16px 14px; grid-template-columns: 1fr; }
  .ogp-footer { padding: 42px 18px 24px; }
  .ogp-footer-inner { gap: 32px; }
  .ogp-footer-details { grid-template-columns: 1fr; }
  .archive-button { width: 100%; }
  .section { padding: 58px 24px; }
  .section-title { font-size: 30px; }
  .page-hero { min-height: 340px; padding: 58px 24px 86px; }
  .page-hero-title { font-size: 42px; }
  .page-hero-eyebrow { font-size: 11px; letter-spacing: 3px; }
  .photo-url-box { min-height: 190px; }
  .events-hero { min-height: 360px; padding: 56px 24px 88px; }
  .events-hero .hero-title { font-size: 42px; }
  .events-widget-header { align-items: flex-start; }
  .btn-all { width: 100%; justify-content: center; }
  .portfolio-heading { display: block; }
  .portfolio-archive-link { width: 100%; margin-bottom: 24px; }
}