:root {
  --festival-orange: #ff6b35;
  --golden-amber: #f59e0b;
  --solo-teal: #0a7c6e;
  --newspaper-cream: #f5ebdd;
  --deep-black: #151515;
  --dark-teal: #075e54;
  --soft-beige: #e8dcc8;
  --warm-white: #fffdf7;
  --muted-gray: #6b6b63;
  --midnight-navy: #0b1b2b;
  --border: 1.5px solid var(--deep-black);
  --shadow: 5px 6px 0 rgba(21, 21, 21, 0.12);
  --radius: 18px;
  --display: "League Spartan", sans-serif;
  --body: "Plus Jakarta Sans", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  margin: 0;
  background: var(--newspaper-cream);
  color: var(--deep-black);
  font-family: var(--body);
  line-height: 1.65;
  overflow-x: hidden;
  background-image: radial-gradient(
    rgba(21, 21, 21, 0.035) 0.7px,
    transparent 0.7px
  );
  background-size: 5px 5px;
}
body.locked {
  overflow: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
}
.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}
.section {
  padding: 110px 0;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  background: #fff;
  padding: 12px;
  z-index: 9999;
}
.skip-link:focus {
  top: 16px;
}
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  transition: 0.25s;
}
.site-header.scrolled {
  background: rgba(255, 253, 247, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(21, 21, 21, 0.15);
}
.nav {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  display: flex;
  align-items: center;
  line-height: 1;
}
.brand > span {
  display: none;
}
.brand img {
  width: 190px;
  height: 54px;
  object-fit: contain;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.84rem;
  font-weight: 700;
}
.nav-menu > a:not(.button) {
  position: relative;
}
.nav-menu > a:not(.button)::after {
  content: "";
  position: absolute;
  height: 2px;
  inset: auto 50% -7px;
  background: var(--festival-orange);
  transition: 0.2s;
}
.nav-menu > a:hover::after,
.nav-menu > a.active::after {
  inset-inline: 0;
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: var(--border);
  background: var(--warm-white);
  border-radius: 50%;
  padding: 12px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: #151515;
  margin: 4px 0;
  transition: 0.2s;
}
.button {
  min-height: 48px;
  border: var(--border);
  border-radius: 999px;
  background: var(--festival-orange);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.button:hover {
  transform: translateY(-3px);
  box-shadow: 4px 4px 0 var(--deep-black);
}
.button-small {
  min-height: 44px;
  padding: 9px 18px;
}
.button-ghost {
  background: transparent;
  color: var(--deep-black);
}
.button-light {
  background: var(--warm-white);
  color: var(--deep-black);
}
:focus-visible {
  outline: 3px solid var(--golden-amber);
  outline-offset: 3px;
}
.hero {
  min-height: 780px;
  padding-top: 150px;
  display: grid;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: "";
  width: 320px;
  height: 320px;
  border: 1px solid rgba(21, 21, 21, 0.16);
  border-radius: 50%;
  position: absolute;
  left: -180px;
  top: 190px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 80px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.73rem;
  letter-spacing: 0.14em;
  margin: 0 0 18px;
}
.eyebrow > span {
  width: 9px;
  height: 9px;
  background: var(--festival-orange);
  border-radius: 50%;
}
.hero h1,
.section-head h2,
.collab h2,
.final-cta h2 {
  font-family: var(--display);
  font-size: clamp(3.4rem, 6.5vw, 6.6rem);
  line-height: 0.91;
  letter-spacing: -0.035em;
  margin: 0;
}
.hero h1 em,
.final-cta h2 em {
  font-style: normal;
  color: var(--festival-orange);
}
.lead {
  max-width: 680px;
  font-size: 1.04rem;
  color: #44433e;
  margin: 26px 0 30px;
}
.button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.feature-chips {
  list-style: none;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 0;
  margin: 32px 0 0;
}
.feature-chips li {
  font-size: 0.72rem;
  font-weight: 800;
  border: 1px solid rgba(21, 21, 21, 0.4);
  padding: 7px 11px;
  border-radius: 99px;
  background: rgba(255, 253, 247, 0.6);
}
.hero-art {
  min-height: 570px;
  position: relative;
}
.photo-card {
  position: absolute;
  background: var(--warm-white);
  border: var(--border);
  padding: 10px 10px 45px;
  box-shadow: 10px 12px 0 rgba(21, 21, 21, 0.12);
}
.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #ded4c5;
}
.photo-front {
  width: 70%;
  height: 440px;
  left: 6%;
  top: 70px;
  transform: rotate(-4deg);
  z-index: 2;
}
.photo-back {
  width: 58%;
  height: 340px;
  right: 0;
  top: 10px;
  transform: rotate(7deg);
}
.asset-fallback {
  position: absolute;
  inset: 10px 10px 45px;
  display: grid;
  place-items: center;
  text-align: center;
  background: linear-gradient(135deg, var(--soft-beige), #fff4de);
  color: var(--muted-gray);
  font-weight: 700;
  font-size: 0.8rem;
}
.photo-card img:not([src=""]) {
  position: relative;
  z-index: 1;
}
.photo-card img[src] {
  object-fit: contain;
}
.art-label {
  position: absolute;
  right: 2%;
  bottom: 75px;
  background: var(--solo-teal);
  color: #fff;
  border: var(--border);
  padding: 10px 18px;
  font: 800 0.78rem var(--body);
  transform: rotate(-5deg);
  z-index: 3;
}
.sparkle {
  font-size: 3rem;
  color: var(--golden-amber);
  position: absolute;
}
.hero-art > .sparkle {
  right: 5%;
  top: 380px;
}
.orange-dot {
  position: absolute;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: var(--festival-orange);
  left: -10px;
  top: 25px;
}
.section-dark {
  background: var(--midnight-navy);
  color: #fff;
}
.collab {
  padding: 58px 0;
  overflow: hidden;
}
.collab .container {
  text-align: center;
}
.collab .eyebrow {
  justify-content: center;
}
.eyebrow-light {
  color: #b8c6cd;
}
.collab h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}
.marquee-wrap {
  margin-top: 35px;
  min-height: 95px;
  display: grid;
  align-items: center;
  overflow: hidden;
  scrollbar-width: none;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
}
.marquee-empty {
  text-align: center;
  color: #b8c6cd;
  border-block: 1px solid rgba(255, 255, 255, 0.16);
  padding: 24px;
}
.marquee-wrap.is-static {
  min-height: 150px;
  mask-image: none;
}
.partner-static {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 10px 20px;
}
.partner-static figure {
  width: min(240px, calc(100vw - 40px));
  margin: 0;
  padding: 20px 26px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: var(--warm-white);
}
.partner-static .partner-logo {
  height: 96px;
  max-width: 100%;
  margin-inline: auto;
  filter: none;
  opacity: 1;
}
.partner-static figcaption {
  margin-top: 9px;
  color: var(--deep-black);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}
.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: marquee 24s linear infinite;
}
.marquee-group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 70px;
  padding-right: 70px;
}
.marquee-track:hover {
  animation-play-state: paused;
}
.partner-logo {
  height: 68px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  padding: 7px;
  border-radius: 10px;
  background: var(--warm-white);
  filter: grayscale(1);
  opacity: 0.65;
  transition: 0.2s;
}
.partner-logo:hover {
  filter: none;
  opacity: 1;
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
.section-head {
  max-width: 800px;
  margin-bottom: 55px;
}
.section-head h2 {
  font-size: clamp(2.8rem, 5vw, 5rem);
}
.section-head > p:last-child {
  color: var(--muted-gray);
  max-width: 650px;
}
.centered {
  text-align: center;
  margin-inline: auto;
}
.centered .eyebrow {
  justify-content: center;
}
.mode-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.mode-card {
  min-height: 330px;
  border: var(--border);
  border-radius: var(--radius);
  background: var(--warm-white);
  padding: 38px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.mode-card-orange {
  background: var(--festival-orange);
  color: #fff;
}
.mode-card .kicker {
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.15em;
}
.mode-card h3 {
  font: 800 clamp(2.8rem, 5vw, 4.8rem) / 1 var(--display);
  margin: 55px 0 15px;
}
.mode-card p:not(.kicker) {
  max-width: 540px;
  font-size: 0.92rem;
}
.card-number {
  position: absolute;
  right: 30px;
  top: 25px;
  font: 700 1.2rem var(--display);
}
.line-icon {
  font-size: 5rem;
  line-height: 1;
  position: absolute;
  right: 35px;
  bottom: 25px;
  opacity: 0.16;
}
.result-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 24px;
  border: var(--border);
  border-radius: var(--radius);
  background: var(--warm-white);
  overflow: hidden;
}
.result-grid article {
  padding: 28px;
  border-right: var(--border);
}
.result-grid article:last-child {
  border: 0;
}
.result-grid span {
  font-size: 0.7rem;
  color: var(--festival-orange);
  font-weight: 800;
}
.result-grid h3 {
  font: 800 1.65rem var(--display);
  margin: 5px 0;
}
.result-grid p {
  font-size: 0.82rem;
  color: var(--muted-gray);
  margin: 0;
}
.pricing-section {
  background: var(--warm-white);
  border-block: var(--border);
}
.pricing-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 35px;
}
.tabs,
.mode-toggle {
  display: flex;
  border: var(--border);
  border-radius: 99px;
  padding: 5px;
  background: var(--newspaper-cream);
  overflow-x: auto;
}
.tabs button,
.mode-toggle button {
  border: 0;
  background: transparent;
  padding: 11px 18px;
  border-radius: 99px;
  white-space: nowrap;
  font-weight: 800;
  font-size: 0.8rem;
  cursor: pointer;
}
.tabs button[aria-selected="true"],
.mode-toggle button.active {
  background: var(--deep-black);
  color: #fff;
}
.pricing-intro {
  border-left: 4px solid var(--festival-orange);
  padding: 8px 18px;
  margin-bottom: 25px;
  color: var(--muted-gray);
  font-size: 0.9rem;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.price-card {
  border: var(--border);
  border-radius: var(--radius);
  background: var(--newspaper-cream);
  padding: 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}
.price-card.featured {
  background: var(--solo-teal);
  color: #fff;
  transform: translateY(-8px);
}
.price-card h3 {
  font: 800 1.65rem var(--display);
  margin: 0;
}
.price-duration {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted-gray);
}
.featured .price-duration {
  color: #cfe2de;
}
.price {
  font: 800 clamp(1.8rem, 3vw, 2.5rem) / 1 var(--display);
  margin: 24px 0 8px;
  overflow-wrap: anywhere;
}
.price-label {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--muted-gray);
}
.featured .price-label {
  color: #d8ebe7;
}
.price-options {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: grid;
  gap: 8px;
  font-size: 0.81rem;
}
.price-options li {
  border-top: 1px solid currentColor;
  padding-top: 8px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.price-options strong {
  white-space: nowrap;
}
.price-card .button {
  margin-top: auto;
}
.badge {
  position: absolute;
  top: -13px;
  right: 20px;
  background: var(--golden-amber);
  color: var(--deep-black);
  border: var(--border);
  border-radius: 99px;
  padding: 5px 12px;
  font-size: 0.68rem;
  font-weight: 900;
}
.pricing-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}
.info-panel {
  border: var(--border);
  border-radius: var(--radius);
  padding: 25px;
  background: #fff;
}
.info-panel h3 {
  font: 800 1.5rem var(--display);
  margin: 0 0 15px;
}
.compact-list {
  margin: 0;
  padding-left: 20px;
  font-size: 0.85rem;
}
.compact-list li {
  margin: 7px 0;
}
.accordion-panel {
  margin-top: 20px;
  border: var(--border);
  border-radius: var(--radius);
  background: #fff;
}
.accordion-panel summary {
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 800;
}
.accordion-panel > div {
  padding: 0 24px 22px;
}
.download-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 45px;
  flex-wrap: wrap;
}
.asset-download.missing {
  opacity: 0.55;
  cursor: not-allowed;
}
.pricing-note {
  margin: 25px 0 0;
  font-size: 0.82rem;
  color: var(--muted-gray);
}
.package-choice {
  width: 100%;
  min-height: 46px;
  margin: 0 0 12px;
  padding: 9px 12px;
  border: var(--border);
  border-radius: 10px;
  background: var(--warm-white);
  color: var(--deep-black);
  font-weight: 700;
}
.select-label {
  display: block;
  margin: 22px 0 5px;
  font-size: 0.72rem;
  font-weight: 800;
}
.portfolio-section {
  overflow: hidden;
}
.portfolio-status {
  margin-bottom: 24px;
}
.portfolio-message {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 22px;
  border: var(--border);
  border-radius: var(--radius);
  background: var(--warm-white);
  color: var(--deep-black);
  font-weight: 700;
}
.portfolio-message-empty {
  background: #fff7e5;
  border-color: rgba(255, 107, 53, 0.35);
}
.portfolio-message-info {
  background: rgba(10, 124, 110, 0.08);
  border-color: rgba(10, 124, 110, 0.18);
}
.portfolio-message-error {
  background: rgba(255, 107, 53, 0.08);
  border-color: rgba(255, 107, 53, 0.25);
}
.portfolio-empty {
  padding: 40px 30px;
  text-align: center;
  border: var(--border);
  border-radius: var(--radius);
  background: var(--warm-white);
}
.portfolio-empty p {
  margin: 0 0 20px;
  color: var(--muted-gray);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.event-card.skeleton {
  pointer-events: none;
  opacity: 0.7;
}
.event-card.skeleton .event-card-media,
.event-card.skeleton .event-card-body {
  background: linear-gradient(90deg, rgba(245, 235, 221, 0.9), rgba(255, 255, 255, 0.8), rgba(245, 235, 221, 0.9));
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
.event-card.skeleton .event-card-media {
  min-height: 360px;
}
.event-card.skeleton .event-card-body {
  min-height: 150px;
}
.skeleton-media {
  width: 100%;
  height: 100%;
  display: block;
}
.skeleton-line {
  display: block;
  width: 75%;
  height: 16px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(21, 21, 21, 0.1);
}
.skeleton-button {
  display: inline-block;
  width: 120px;
  height: 20px;
  border-radius: 999px;
  background: rgba(21, 21, 21, 0.1);
}
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
.event-card {
  grid-column: span 6;
  padding: 0;
  border: var(--border);
  border-radius: var(--radius);
  background: var(--warm-white);
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  text-align: left;
}
.event-card-media {
  display: block;
  height: 480px;
  position: relative;
  background: var(--soft-beige);
}
.event-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
}
.event-card-media .asset-fallback {
  inset: 0;
}
.event-card-body {
  padding: 26px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 20px;
}
.event-title {
  display: block;
  font: 800 2rem var(--display);
  margin-top: 6px;
}
.event-meta {
  display: block;
  font-size: 0.78rem;
  color: var(--muted-gray);
  margin-top: 7px;
}
.event-tag {
  display: inline-block;
  background: var(--festival-orange);
  color: #fff;
  border-radius: 99px;
  padding: 5px 10px;
  font-size: 0.67rem;
  font-weight: 800;
}
.text-button {
  border: 0;
  background: transparent;
  font-weight: 800;
  text-decoration: underline;
  cursor: pointer;
  min-height: 44px;
}
.facilities-section {
  background: var(--solo-teal);
  color: #fff;
}
.facility-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius);
  overflow: hidden;
}
.facility {
  min-height: 170px;
  padding: 25px;
  border-right: 1px solid rgba(255, 255, 255, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.facility:nth-child(4n) {
  border-right: 0;
}
.facility:nth-last-child(-n + 4) {
  border-bottom: 0;
}
.facility span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid #fff;
  border-radius: 50%;
  font-size: 0.75rem;
}
.facility h3 {
  font: 700 1.35rem var(--display);
  margin: 25px 0 0;
}
.facility-note {
  text-align: center;
  color: #d9ebe7;
  font-size: 0.83rem;
  margin: 25px 0 0;
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
}
.faq-item {
  border-bottom: var(--border);
}
.faq-question {
  width: 100%;
  min-height: 80px;
  padding: 20px 0;
  border: 0;
  background: transparent;
  text-align: left;
  font-weight: 800;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
}
.faq-question span:last-child {
  font-size: 1.4rem;
}
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.25s;
}
.faq-answer > div {
  overflow: hidden;
}
.faq-answer p {
  margin: 0;
  padding: 0 45px 25px 0;
  color: var(--muted-gray);
  font-size: 0.9rem;
}
.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}
.final-cta {
  padding: 110px 0;
  text-align: center;
  position: relative;
}
.final-cta .container {
  position: relative;
}
.final-cta .eyebrow {
  justify-content: center;
}
.final-cta h2 {
  font-size: clamp(3rem, 6vw, 6rem);
}
.final-cta p:not(.eyebrow) {
  max-width: 700px;
  margin: 25px auto 32px;
  color: #c3cdd2;
}
.cta-sparkle {
  left: 10%;
  top: 5%;
  transform: rotate(15deg);
}
.footer {
  background: var(--deep-black);
  color: #fff;
  padding: 65px 0 25px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
.brand-footer {
  margin-bottom: 20px;
}
.footer p {
  color: #a9a9a2;
  font-size: 0.85rem;
}
.footer h2 {
  font: 800 1.2rem var(--display);
}
.footer-grid > div:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.82rem;
}
.footer-tagline {
  font: 800 clamp(2rem, 4vw, 3.5rem) / 1 var(--display) !important;
  color: #fff !important;
  margin: 0;
  text-align: right;
}
.copyright {
  border-top: 1px solid #343434;
  margin-top: 50px;
  padding-top: 20px;
  font-size: 0.7rem;
  color: #777;
}
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border: var(--border);
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 900;
  box-shadow: 4px 5px 0 rgba(21, 21, 21, 0.2);
}
.wa-float svg {
  width: 29px;
  fill: currentColor;
}
.wa-tooltip {
  position: absolute;
  right: 68px;
  background: var(--deep-black);
  padding: 7px 10px;
  border-radius: 6px;
  font-size: 0.7rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s;
}
.wa-float:hover .wa-tooltip,
.wa-float:focus .wa-tooltip {
  opacity: 1;
}
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  padding: 30px;
  display: grid;
  place-items: center;
}
.modal[hidden] {
  display: none;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 27, 43, 0.88);
  backdrop-filter: blur(7px);
}
.modal-dialog {
  position: relative;
  background: var(--warm-white);
  border: var(--border);
  border-radius: var(--radius);
  width: min(1000px, 100%);
  max-height: calc(100vh - 60px);
  overflow: auto;
  padding: 30px;
}
.modal-close {
  position: sticky;
  float: right;
  top: 0;
  width: 46px;
  height: 46px;
  border: var(--border);
  border-radius: 50%;
  background: #fff;
  z-index: 4;
  font-size: 1.6rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.modal-copy h2 {
  font: 800 2.5rem var(--display);
  margin: 0;
}
.modal-copy > p:last-child {
  color: var(--muted-gray);
  font-size: 0.85rem;
}
.gallery-stage {
  display: grid;
  grid-template-columns: 50px 1fr 50px;
  align-items: center;
  gap: 12px;
  position: relative;
}
.gallery-media {
  height: min(60vh, 570px);
  position: relative;
  background: var(--soft-beige);
}
.gallery-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
}
/* center nav icon inside the circular button */
.gallery-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  line-height: 1;
}
.gallery-media img.image-error {
  filter: grayscale(0.6);
}
.gallery-message {
  margin-top: 16px;
  color: var(--muted-gray);
  font-size: 0.95rem;
}
.gallery-message-error {
  color: var(--festival-orange);
}
.gallery-message-info {
  color: var(--solo-teal);
}
.gallery-nav {
  width: 46px;
  height: 46px;
  border: var(--border);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}
.gallery-count {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 800;
}
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition:
    opacity 0.65s,
    transform 0.65s;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 900px) {
  .nav-menu {
    position: fixed;
    inset: 82px 0 auto;
    background: var(--warm-white);
    border-block: var(--border);
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    transform: translateY(-140%);
    opacity: 0;
    visibility: hidden;
    transition: 0.25s;
  }
  .nav-menu.open {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .menu-toggle {
    display: block;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .hero-art {
    min-height: 520px;
    width: min(580px, 100%);
    margin: auto;
  }
  .mode-grid {
    grid-template-columns: 1fr;
  }
  .price-grid {
    grid-template-columns: 1fr;
  }
  .price-card.featured {
    transform: none;
  }
  .pricing-details,
  .faq-layout {
    grid-template-columns: 1fr;
  }
  .facility-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .facility:nth-child(2n) {
    border-right: 0;
  }
  .facility:nth-child(4n) {
    border-right: 0;
  }
  .facility:nth-last-child(-n + 4) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  }
  .facility:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
  .event-card {
    grid-column: span 12;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-tagline {
    grid-column: span 2;
    text-align: left;
  }
  .pricing-controls {
    flex-direction: column;
    align-items: stretch;
  }
  .tabs,
  .mode-toggle {
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .container {
    width: min(calc(100% - 28px), 1180px);
  }
  .section {
    padding: 75px 0;
  }
  .nav {
    height: 70px;
  }
  .nav-menu {
    top: 70px;
  }
  .brand {
    max-width: calc(100% - 62px);
  }
  .brand img {
    width: 155px;
    height: 48px;
  }
  .hero {
    padding-top: 110px;
    min-height: 0;
  }
  .hero h1 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }
  .lead {
    font-size: 0.92rem;
  }
  .hero-art {
    min-height: 390px;
  }
  .photo-front {
    height: 310px;
    width: 72%;
    top: 55px;
  }
  .photo-back {
    height: 240px;
    width: 58%;
  }
  .orange-dot {
    width: 55px;
    height: 55px;
  }
  .art-label {
    bottom: 25px;
  }
  .button-row .button {
    width: 100%;
  }
  .collab .container {
    display: block;
  }
  .section-head h2 {
    font-size: 2.9rem;
  }
  .mode-card {
    padding: 25px;
    min-height: 300px;
  }
  .mode-card h3 {
    font-size: 3.3rem;
  }
  .result-grid {
    grid-template-columns: 1fr;
  }
  .result-grid article {
    border-right: 0;
    border-bottom: var(--border);
  }
  .pricing-controls {
    margin-inline: -5px;
  }
  .tabs button,
  .mode-toggle button {
    padding: 10px 12px;
    font-size: 0.7rem;
  }
  .price-card {
    padding: 22px;
  }
  .pricing-details {
    grid-template-columns: 1fr;
  }
  .event-card-media {
    height: 340px;
  }
  .event-card-body {
    grid-template-columns: 1fr;
  }
  .facility-grid {
    grid-template-columns: 1fr;
  }
  .facility {
    min-height: 130px !important;
    border-right: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4) !important;
  }
  .facility:last-child {
    border-bottom: 0 !important;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-tagline {
    grid-column: auto;
  }
  .modal {
    padding: 10px;
  }
  .modal-dialog {
    max-height: calc(100vh - 20px);
    padding: 18px;
  }
  .gallery-stage {
    grid-template-columns: 1fr;
  }
  .gallery-nav {
    position: absolute;
    z-index: 3;
    bottom: 35px;
  }
  .gallery-nav.prev {
    left: 26px;
  }
  .gallery-nav.next {
    right: 26px;
  }
  .gallery-media {
    height: 55vh;
  }
  .wa-float {
    width: 52px;
    height: 52px;
    right: 14px;
    bottom: 14px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .marquee-wrap {
    overflow-x: auto;
  }
  .marquee-track {
    animation: none;
  }
}

@media (max-width: 900px) {
  #portfolio-grid .event-card {
    opacity: 1;
    transform: none;
  }
}
/* Fullscreen loading helpers */
.gallery-media {
  position: relative;
}
.gallery-media img[data-loading="true"] {
  opacity: 0.92;
  transition: opacity 0.2s ease-in-out;
}
.gallery-media img[data-loading="false"] {
  opacity: 1;
}
.gallery-stage:fullscreen,
.gallery-stage:-webkit-full-screen {
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  background: rgba(11, 27, 43, 0.98);
  display: grid;
  place-items: center;
}
.gallery-stage:fullscreen .gallery-media,
.gallery-stage:-webkit-full-screen .gallery-media {
  height: 100vh;
  width: 100vw;
  max-height: 100vh;
}
.gallery-stage:fullscreen .gallery-media img,
.gallery-stage:-webkit-full-screen .gallery-media img {
  object-fit: contain;
  height: 100vh;
  width: 100%;
}
.gallery-stage:fullscreen .gallery-nav,
.gallery-stage:-webkit-full-screen .gallery-nav {
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
}
.gallery-stage:fullscreen .gallery-nav.prev,
.gallery-stage:-webkit-full-screen .gallery-nav.prev {
  left: 24px;
}
.gallery-stage:fullscreen .gallery-nav.next,
.gallery-stage:-webkit-full-screen .gallery-nav.next {
  right: 24px;
}
.gallery-stage.simulated-fullscreen {
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  background: rgba(11, 27, 43, 0.98);
  display: grid;
  place-items: center;
}
.gallery-stage.simulated-fullscreen .gallery-media {
  height: 100vh;
  width: 100vw;
  max-height: 100vh;
}
.gallery-stage.simulated-fullscreen .gallery-media img {
  object-fit: contain;
  height: 100vh;
  width: 100%;
}
.gallery-stage.simulated-fullscreen .gallery-nav {
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
}
.gallery-stage.simulated-fullscreen .gallery-nav.prev {
  left: 24px;
}
.gallery-stage.simulated-fullscreen .gallery-nav.next {
  right: 24px;
}
