:root {
  --bg: #e0d8ca;
  --bg-soft: #f4efe7;
  --surface: rgba(255, 252, 247, 0.74);
  --surface-strong: rgba(247, 241, 231, 0.92);
  --border: rgba(57, 40, 32, 0.16);
  --text: #2d211c;
  --text-soft: #655750;
  --accent: #8f7a65;
  --accent-dark: #392820;
  --shadow: 0 30px 60px rgba(43, 28, 19, 0.1);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --display-leading: 1.02;
  --display-card-leading: 1.06;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 1.5rem;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.55), transparent 28%),
    linear-gradient(180deg, #d9d1c4 0%, #ece5d8 52%, #e1d9cc 100%);
  min-height: 100vh;
}

body.is-lightbox-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(57, 40, 32, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 40, 32, 0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at center, black 55%, transparent 95%);
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid rgba(57, 40, 32, 0.76);
  outline-offset: 3px;
}

img {
  max-width: 100%;
  display: block;
}

.page-shell {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.2rem 0 3rem;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 0 1.8rem;
}

.site-mark {
  display: inline-flex;
  align-items: center;
  position: relative;
  gap: 1rem;
  color: var(--text);
  min-width: 0;
  max-width: 100%;
}

.site-mark__logo-frame {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: clamp(6.1rem, 10vw, 7.6rem);
  padding: 0.42rem;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(250, 246, 239, 0.96), rgba(239, 231, 219, 0.92));
  border: 0.8px solid rgba(57, 40, 32, 0.08);
  box-shadow: 0 16px 32px rgba(57, 40, 32, 0.07);
}

.site-mark__copy {
  display: grid;
  gap: 0.28rem;
  min-width: 0;
}

.site-mark__title {
  font-family: "Bodoni Moda", serif;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1;
}

.site-mark__descriptor {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
  line-height: 1.35;
}

.site-mark__logo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  object-fit: cover;
  background: #f6f0e4;
}

.site-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--text-soft);
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.hero,
.admin-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem 0 3rem;
}

.hero-copy,
.hero-stage,
.site-nav {
  min-width: 0;
  max-width: 100%;
}

.eyebrow,
.section-kicker {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-soft);
  margin: 0 0 1rem;
}

.hero h1,
.admin-hero h1,
.section-heading h2,
.content-card h2,
.locations-section h2 {
  font-family: "Bodoni Moda", serif;
  font-weight: 500;
  line-height: var(--display-leading);
  margin: 0;
  text-wrap: balance;
}

.hero h1 {
  font-size: clamp(3.4rem, 8vw, 7.1rem);
  text-transform: uppercase;
  letter-spacing: -0.05em;
  line-height: 0.98;
  text-wrap: pretty;
}

.hero h1 span {
  display: block;
}

.hero-signature {
  font-family: "Parisienne", cursive;
  font-size: clamp(2.5rem, 6vw, 4.4rem);
  margin: 1.4rem 0 1rem;
}

.hero-text,
.panel-lead,
.section-heading p,
.content-card p,
.step-card p,
.locations-section p,
.admin-hero p {
  color: var(--text-soft);
  line-height: 1.7;
}

.hero-actions,
.hero-facts,
.panel-meta,
.steps,
.content-grid,
.info-strip,
.booking-layout,
.admin-grid,
.admin-heading-inline {
  display: grid;
  gap: 1rem;
}

.hero-actions {
  grid-template-columns: repeat(2, minmax(0, max-content));
  margin-top: 1.8rem;
}

.hero-facts {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 2rem;
}

.hero-facts div {
  padding: 1rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(12px);
}

.hero-facts span {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 0.4rem;
}

.hero-facts strong {
  font-size: 1.8rem;
  font-family: "Bodoni Moda", serif;
  font-weight: 500;
}

.hero-copy > * {
  animation: fade-up 720ms ease both;
}

.hero-copy > *:nth-child(2) {
  animation-delay: 80ms;
}

.hero-copy > *:nth-child(3) {
  animation-delay: 140ms;
}

.hero-copy > *:nth-child(4) {
  animation-delay: 220ms;
}

.hero-copy > *:nth-child(5),
.hero-copy > *:nth-child(6) {
  animation-delay: 280ms;
}

.hero-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin: 1.4rem 0 0;
}

.hero-details div {
  padding: 1rem 1.15rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.32);
  border: 1px solid rgba(57, 40, 32, 0.1);
}

.hero-details dt {
  margin-bottom: 0.45rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-soft);
}

.hero-details dd {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.5;
}

.hero-stage {
  position: relative;
  min-height: 620px;
  animation: fade-up 800ms ease 160ms both;
}

.poster-card,
.manifest-card,
.piece-card,
.timeline-item,
.faq-card {
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.poster-card {
  position: relative;
  min-height: 620px;
  padding: 1.5rem;
  border-radius: 44px;
  background:
    linear-gradient(180deg, rgba(249, 244, 236, 0.96), rgba(234, 225, 212, 0.92)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.7), transparent 32%);
  overflow: hidden;
}

.poster-card::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(57, 40, 32, 0.12);
  border-radius: 34px;
  pointer-events: none;
}

.poster-card--gallery {
  padding: 0.9rem;
}

.poster-card--gallery::after {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(249, 244, 236, 0.06), rgba(249, 244, 236, 0.03));
  pointer-events: none;
  z-index: 1;
}

.poster-card__meta,
.poster-card__footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.poster-card__headline {
  position: relative;
  z-index: 1;
  margin: 1rem 0 1.2rem;
  font-family: "Bodoni Moda", serif;
  font-size: clamp(2.9rem, 6vw, 5.3rem);
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.poster-card__headline span {
  display: block;
}

.poster-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  align-items: stretch;
  min-height: 360px;
  margin: 1.4rem 0 1.4rem;
}

.poster-tile,
.poster-spotlight,
.hero-gallery {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
}

.poster-tile {
  min-height: 180px;
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.poster-tile small,
.poster-spotlight small {
  display: block;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: inherit;
  opacity: 0.8;
  margin-bottom: 0.4rem;
}

.poster-tile strong,
.poster-spotlight strong {
  font-family: "Bodoni Moda", serif;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 500;
  line-height: 1.02;
}

.poster-tile--shadow {
  background:
    radial-gradient(circle at 38% 35%, rgba(209, 173, 103, 0.34), transparent 30%),
    linear-gradient(180deg, #413028 0%, #231916 100%);
  color: #f7f1e9;
}

.poster-tile--light {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(239, 231, 220, 0.98)),
    linear-gradient(135deg, #f7f3ec, #e4d8c8);
  color: var(--text);
}

.hero-gallery {
  min-height: 220px;
  aspect-ratio: 1 / 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(238, 229, 217, 0.94));
  border: 1px solid rgba(57, 40, 32, 0.1);
}

.hero-gallery--stage {
  position: absolute;
  inset: 0.9rem;
  min-height: auto;
  height: calc(100% - 1.8rem);
  aspect-ratio: auto;
  border: none;
  background: #d5ccbf;
  z-index: 0;
}

.hero-gallery__viewport {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-gallery__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: translateX(100%);
  transition:
    transform 680ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 680ms ease;
}

.hero-gallery__slide.is-active {
  opacity: 1;
  transform: translateX(0);
  z-index: 3;
}

.hero-gallery__slide.is-prev {
  opacity: 1;
  transform: translateX(-100%);
  z-index: 2;
}

.hero-gallery__slide.is-next {
  opacity: 1;
  transform: translateX(100%);
  z-index: 2;
}

.hero-gallery__slide.is-hidden-left {
  transform: translateX(-100%);
}

.hero-gallery__slide.is-hidden-right {
  transform: translateX(100%);
}

.hero-gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  cursor: zoom-in;
}

.hero-gallery__slide img:focus-visible {
  outline-color: rgba(255, 250, 244, 0.88);
}

.hero-gallery__nav {
  position: absolute;
  z-index: 6;
  top: 50%;
  width: 2.8rem;
  height: 2.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 252, 247, 0.55);
  background: rgba(255, 252, 247, 0.18);
  backdrop-filter: blur(12px);
  color: #fffaf4;
  cursor: pointer;
  transform: translateY(-50%);
}

.hero-gallery__nav--prev {
  left: 0.8rem;
}

.hero-gallery__nav--next {
  right: 0.8rem;
}

.gallery-arrow {
  display: block;
  width: 0.95rem;
  height: 0.95rem;
}

.gallery-arrow--left {
  border-left: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
}

.gallery-arrow--right {
  border-right: 1.5px solid currentColor;
  border-top: 1.5px solid currentColor;
  transform: rotate(45deg);
}

@media (hover: hover) {
  .hero-gallery__nav {
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 220ms ease,
      transform 220ms ease;
  }

  .hero-gallery:hover .hero-gallery__nav {
    opacity: 1;
    pointer-events: auto;
  }

  .hero-gallery:focus-within .hero-gallery__nav {
    opacity: 1;
    pointer-events: auto;
  }
}

.poster-tile--outline {
  grid-column: 2;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(57, 40, 32, 0.12);
  color: var(--text);
}

.poster-spotlight {
  position: absolute;
  left: 22%;
  top: 25%;
  width: 290px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding: 2.3rem;
  text-align: center;
  background:
    radial-gradient(circle at 38% 35%, rgba(255, 255, 255, 0.96), rgba(245, 237, 226, 0.9) 44%, rgba(213, 201, 184, 0.95) 100%);
  border: 1px solid rgba(57, 40, 32, 0.14);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 14, 11, 0.78);
  backdrop-filter: blur(10px);
}

.gallery-lightbox__figure {
  position: relative;
  z-index: 2;
  margin: 0;
  width: min(88vw, 1160px);
  height: min(88vh, 920px);
  padding: clamp(0.75rem, 1.5vw, 1.25rem);
  display: grid;
  place-items: center;
  border-radius: 34px;
  background: rgba(255, 248, 240, 0.05);
  border: 1px solid rgba(255, 248, 240, 0.08);
}

.gallery-lightbox__figure img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

.gallery-lightbox__close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  z-index: 3;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 249, 242, 0.26);
  background: rgba(255, 249, 242, 0.12);
  color: #fff8f0;
  backdrop-filter: blur(12px);
  cursor: pointer;
}

.gallery-lightbox__close::before,
.gallery-lightbox__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 1.5px;
  background: currentColor;
  border-radius: 999px;
}

.gallery-lightbox__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.gallery-lightbox__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.manifest-grid,
.pieces-grid,
.timeline,
.faq-grid {
  display: grid;
  gap: 1rem;
}

.manifest-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 3.8rem;
}

.manifest-card,
.piece-card,
.timeline-item,
.faq-card,
.panel-card,
.step-card,
.contact-card,
.location-card {
  border-radius: var(--radius-lg);
  background: var(--surface);
  backdrop-filter: blur(18px);
  padding: 1.55rem;
}

.manifest-card h2,
.piece-card h3,
.timeline-item__title,
.faq-card__title,
.panel-card h3,
.step-card__title,
.location-card h3 {
  font-family: "Bodoni Moda", serif;
  font-weight: 500;
  line-height: var(--display-card-leading);
  margin: 0 0 0.9rem;
  max-inline-size: 100%;
  overflow-wrap: anywhere;
  hyphens: auto;
  text-wrap: pretty;
}

.manifest-card h2 {
  font-size: clamp(1.7rem, 3vw, 2.45rem);
}

.manifest-card p,
.piece-card p,
.timeline-item p,
.faq-card p,
.location-card p,
.panel-note,
.event-note {
  color: var(--text-soft);
  line-height: 1.7;
}

.pieces-section,
.booking-section,
.process-section,
.transfer-section,
.admin-table-section {
  padding: 2rem 0 1.5rem;
}

.pieces-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.piece-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(242, 235, 225, 0.94));
}

.piece-card small {
  display: inline-flex;
  width: 2.1rem;
  height: 2.1rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(57, 40, 32, 0.08);
  margin-bottom: 1rem;
  font-size: 0.82rem;
}

.piece-card h3 {
  font-size: 1.75rem;
}

.event-card {
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.event-card:hover {
  transform: translateY(-2px);
}

.event-card--selected {
  border-color: rgba(57, 40, 32, 0.28);
  background:
    linear-gradient(180deg, rgba(250, 244, 236, 0.98), rgba(239, 230, 217, 0.96));
}

.event-note {
  margin: 0 0 1.2rem;
}

.detail-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1rem 0;
}

.detail-pills span {
  display: inline-flex;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(57, 40, 32, 0.06);
  color: var(--text-soft);
  font-size: 0.86rem;
}

.panel-note {
  margin: 0 0 1.15rem;
}

.process-section .section-heading,
.transfer-section .section-heading {
  margin-bottom: 1.6rem;
}

.timeline {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.timeline-item span {
  display: inline-block;
  margin-bottom: 1rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(57, 40, 32, 0.16);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.timeline-item__title {
  font-size: clamp(1.2rem, 1.4vw, 1.55rem);
  line-height: 1.12;
  max-inline-size: 11ch;
}

.transfer-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
  align-items: start;
}

.faq-grid {
  grid-template-columns: 1fr;
}

.faq-card__title {
  display: block;
  font-size: clamp(1.28rem, 1.6vw, 1.72rem);
  line-height: 1.1;
  max-inline-size: 17ch;
}

.faq-card {
  overflow: hidden;
}

.faq-card__summary {
  position: relative;
  display: grid;
  gap: 0.2rem;
  padding-right: 2.2rem;
  cursor: pointer;
  list-style: none;
}

.faq-card__summary::-webkit-details-marker {
  display: none;
}

.faq-card__summary .section-kicker {
  margin-bottom: 0.55rem;
}

.faq-card__summary::after {
  content: "";
  position: absolute;
  top: 1rem;
  right: 0.1rem;
  width: 0.72rem;
  height: 0.72rem;
  border-right: 1.4px solid rgba(57, 40, 32, 0.62);
  border-bottom: 1.4px solid rgba(57, 40, 32, 0.62);
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.faq-card[open] {
  background:
    linear-gradient(180deg, rgba(252, 248, 242, 0.98), rgba(239, 231, 220, 0.92));
}

.faq-card[open] .faq-card__summary::after {
  transform: translateY(0.18rem) rotate(-135deg);
}

.faq-card__content {
  margin-top: 0.95rem;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(57, 40, 32, 0.12);
}

.faq-card__content p {
  margin: 0;
}

.contact-card a,
.contact-card span {
  color: var(--text-soft);
}

.site-footer a {
  position: relative;
}

.site-footer a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.18rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-art {
  position: relative;
  min-height: 580px;
}

.art-grid {
  position: relative;
  height: 100%;
  min-height: 580px;
}

.art-card,
.art-circle,
.content-card,
.event-card,
.panel-card,
.step-card,
.contact-card,
.table-wrap,
.info-strip article {
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.art-card {
  position: absolute;
  border-radius: var(--radius-md);
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.art-card span,
.art-circle small {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.art-card strong,
.art-circle strong {
  font-family: "Bodoni Moda", serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.05;
}

.art-card--dark {
  inset: 0 auto auto 0;
  width: 52%;
  height: 44%;
  background:
    radial-gradient(circle at 40% 30%, rgba(209, 173, 103, 0.35), transparent 34%),
    linear-gradient(180deg, #413028 0%, #231916 100%);
  color: #f8f2ea;
}

.art-card--light {
  inset: 0 0 auto auto;
  width: 40%;
  height: 52%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(233, 225, 214, 0.94)),
    linear-gradient(135deg, #f9f3ea, #dfd3c2);
}

.art-card--outline {
  inset: auto 0 0 auto;
  width: 58%;
  height: 36%;
  background:
    linear-gradient(135deg, rgba(249, 246, 239, 0.9), rgba(235, 226, 214, 0.86));
}

.art-card--outline::before,
.art-card--light::before,
.art-card--dark::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: inherit;
}

.art-circle {
  position: absolute;
  inset: 32% auto auto 18%;
  width: 300px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 35%, rgba(255, 255, 255, 0.94), rgba(246, 238, 227, 0.88) 44%, rgba(214, 202, 185, 0.96) 100%);
  display: grid;
  place-items: center;
  padding: 2.4rem;
  text-align: center;
}

.info-strip,
.content-grid,
.admin-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 1.2rem;
}

.content-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 4rem;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 1.5rem;
}

.section-heading h2,
.content-card h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 0.8rem;
}

.panel-card h3 {
  font-size: clamp(1.28rem, 1.55vw, 1.58rem);
  line-height: 1.12;
  max-inline-size: 18ch;
}

.step-card__title {
  font-size: clamp(1.18rem, 1.35vw, 1.46rem);
  line-height: 1.08;
  max-inline-size: 10ch;
}

.booking-layout {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: start;
}

.event-list {
  display: grid;
  gap: 1rem;
}

.piece-card,
.timeline-item,
.faq-card,
.panel-card,
.step-card,
.location-card {
  min-width: 0;
}

.event-card {
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  padding: 1.5rem;
}

.event-card__header,
.panel-meta,
.admin-heading-inline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.event-card__header p,
.table-subline {
  margin: 0;
  color: var(--text-soft);
}

.event-card h3 {
  margin: 0.6rem 0 0.7rem;
  font-size: 1.35rem;
}

.event-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 1.2rem 0 1.4rem;
}

.event-meta dt {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-soft);
}

.event-meta dd {
  margin: 0.3rem 0 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(143, 122, 101, 0.12);
  color: var(--accent-dark);
  font-size: 0.82rem;
}

.badge--muted {
  background: rgba(57, 40, 32, 0.08);
  color: var(--text-soft);
}

.booking-panel {
  position: sticky;
  top: 1rem;
}

.panel-card {
  position: relative;
}

.panel-card--success {
  background:
    linear-gradient(180deg, rgba(252, 248, 242, 0.96), rgba(239, 231, 220, 0.92));
}

.panel-meta {
  font-size: 0.94rem;
  color: var(--text-soft);
  margin-bottom: 1rem;
}

.booking-form,
.admin-form {
  display: grid;
  gap: 0.95rem;
}

.booking-form label,
.admin-form label {
  display: grid;
  gap: 0.4rem;
  color: var(--text-soft);
  font-size: 0.92rem;
}

input,
textarea,
select,
button {
  font: inherit;
}

input,
textarea,
select {
  width: 100%;
  padding: 0.92rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(57, 40, 32, 0.12);
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  border-color: rgba(57, 40, 32, 0.28);
  box-shadow: 0 0 0 4px rgba(143, 122, 101, 0.12);
  background: rgba(255, 255, 255, 0.86);
}

textarea {
  resize: vertical;
}

.checkbox-row {
  display: flex !important;
  align-items: center;
  gap: 0.75rem;
}

.checkbox-row input {
  width: auto;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0.92rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent-dark);
  color: #fffaf4;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
  position: relative;
}

.button[disabled] {
  pointer-events: none;
}

.button:hover {
  transform: translateY(-1px);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.56;
  transform: none;
}

.button.ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(57, 40, 32, 0.18);
}

.button.ghost.is-active {
  background: rgba(57, 40, 32, 0.07);
  border-color: rgba(57, 40, 32, 0.28);
}

.button__label,
.button__status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 180ms ease;
}

.button__status {
  position: absolute;
  opacity: 0;
}

.booking-form.htmx-request .button {
  cursor: progress;
}

.booking-form.htmx-request .button__label {
  opacity: 0;
}

.booking-form.htmx-request .button__status {
  opacity: 1;
}

.button--small {
  padding: 0.7rem 1rem;
  min-width: 110px;
}

.form-error,
.form-note {
  border-radius: 16px;
  padding: 0.9rem 1rem;
}

.form-error {
  background: rgba(110, 48, 37, 0.08);
  color: #6e3025;
}

.form-note {
  background: rgba(57, 40, 32, 0.05);
  color: var(--text-soft);
}

.transfer-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 1.2rem 0;
}

.transfer-card div {
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(57, 40, 32, 0.08);
}

.transfer-card span {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-soft);
  margin-bottom: 0.3rem;
}

.steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-card span {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: rgba(57, 40, 32, 0.08);
  font-size: 0.82rem;
  margin-bottom: 1rem;
}

.locations-section {
  padding: 2rem 0 1rem;
}

.locations-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  align-items: start;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.location-card {
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.location-card small {
  display: block;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 0.7rem;
}

.location-card h3 {
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
}

.location-card--note {
  background:
    linear-gradient(180deg, rgba(252, 248, 242, 0.98), rgba(239, 231, 220, 0.9));
}

.contact-card {
  display: grid;
  gap: 0.4rem;
  align-content: start;
}

.contact-card > strong {
  color: var(--text);
}

.contact-card p {
  margin: 0;
}

.instagram-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(57, 40, 32, 0.14);
  transition: transform 180ms ease, border-color 180ms ease;
}

.instagram-card:hover {
  transform: translateY(-1px);
  border-color: rgba(57, 40, 32, 0.22);
}

.instagram-card__avatar {
  display: inline-flex;
  flex: 0 0 auto;
}

.instagram-card__avatar-ring {
  display: grid;
  place-items: center;
  width: 4.95rem;
  aspect-ratio: 1;
  padding: 0.24rem;
  border-radius: 50%;
  background: rgba(248, 243, 233, 0.95);
  box-shadow:
    inset 0 0 0 1.5px rgba(143, 122, 101, 0.34),
    0 12px 24px rgba(57, 40, 32, 0.08);
}

.instagram-card__avatar-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  background: #f5efe3;
}

.instagram-card__copy {
  display: grid;
  gap: 0.18rem;
  min-width: 0;
}

.instagram-card__label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.instagram-card__copy strong {
  font-family: "Bodoni Moda", serif;
  font-size: clamp(1.02rem, 1.25vw, 1.16rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--text);
}

.instagram-card__copy span:last-child {
  font-size: 0.92rem;
  line-height: 1.5;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 2rem 0 1rem;
  color: var(--text-soft);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-copy > *,
  .hero-stage {
    animation: none;
  }

  .hero-gallery__slide,
  .hero-gallery__nav,
  .button,
  input,
  textarea,
  select {
    transition: none;
  }
}

.admin-shell .hero-facts {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-main {
  display: grid;
  gap: 2rem;
}

.admin-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.table-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-strong);
}

table {
  width: 100%;
  border-collapse: collapse;
}

thead {
  background: rgba(57, 40, 32, 0.07);
}

th,
td {
  text-align: left;
  padding: 1rem;
  border-bottom: 1px solid rgba(57, 40, 32, 0.08);
  vertical-align: top;
}

.status-form {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

@media (max-width: 980px) {
  .hero,
  .admin-hero,
  .booking-layout,
  .locations-layout,
  .manifest-grid,
  .pieces-grid,
  .timeline,
  .transfer-layout,
  .steps,
  .admin-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-details {
    grid-template-columns: 1fr;
  }

  .hero-stage,
  .poster-card {
    min-height: 540px;
  }

  .poster-spotlight {
    left: 20%;
    top: 27%;
    width: 250px;
  }

  .booking-panel {
    position: static;
  }

  .admin-shell .hero-facts,
  .hero-facts,
  .transfer-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  html,
  body {
    overflow-x: hidden;
  }

  .page-shell {
    width: calc(100% - 1rem);
    max-width: 100%;
    overflow-x: hidden;
  }

  .hero,
  .admin-hero {
    gap: 1.4rem;
    padding: 1rem 0 2rem;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: hidden;
  }

  .hero-copy > * {
    min-width: 0;
    max-width: 100%;
  }

  .site-header,
  .site-footer,
  .hero-actions,
  .admin-heading-inline,
  .status-form {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav {
    justify-content: space-between;
  }

  .hero-signature {
    margin: 0.85rem 0 0.7rem;
  }

  .hero-actions {
    margin-top: 1.2rem;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 12vw, 3.45rem);
    line-height: 0.99;
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .hero-text {
    overflow-wrap: anywhere;
  }

  .hero-stage,
  .poster-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: clamp(18rem, 92vw, 24rem);
  }

  .poster-card {
    padding: 1rem;
    border-radius: 30px;
  }

  .poster-card--gallery,
  .hero-gallery,
  .hero-gallery__viewport,
  .hero-gallery__slide {
    width: 100%;
    max-width: 100%;
  }

  .poster-card::before {
    inset: 0.8rem;
    border-radius: 22px;
  }

  .hero-gallery--stage {
    inset: 0.8rem;
    width: auto;
    height: auto;
    max-width: calc(100% - 1.6rem);
  }

  .transfer-card,
  .event-meta {
    grid-template-columns: 1fr;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    gap: 0.75rem;
  }

  .hero-facts div {
    min-width: 0;
    padding: 0.9rem 0.95rem;
  }

  .hero-facts span,
  .hero-facts strong {
    overflow-wrap: anywhere;
  }

  .hero-facts span {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
  }

  .hero-facts strong {
    font-size: clamp(1.35rem, 7vw, 1.65rem);
  }

  .hero-details {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(13.5rem, 1fr);
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.35rem;
  }

  .hero-details div {
    scroll-snap-align: start;
  }

  .manifest-grid,
  .pieces-grid,
  .timeline,
  .steps {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(82vw, 1fr);
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.4rem;
  }

  .manifest-grid > *,
  .pieces-grid > *,
  .timeline > *,
  .steps > * {
    scroll-snap-align: start;
  }

  .manifest-grid::-webkit-scrollbar,
  .pieces-grid::-webkit-scrollbar,
  .timeline::-webkit-scrollbar,
  .steps::-webkit-scrollbar,
  .hero-details::-webkit-scrollbar {
    height: 6px;
  }

  .manifest-grid::-webkit-scrollbar-thumb,
  .pieces-grid::-webkit-scrollbar-thumb,
  .timeline::-webkit-scrollbar-thumb,
  .steps::-webkit-scrollbar-thumb,
  .hero-details::-webkit-scrollbar-thumb {
    background: rgba(57, 40, 32, 0.18);
    border-radius: 999px;
  }

  .manifest-grid {
    margin-bottom: 2.2rem;
  }

  .pieces-section,
  .booking-section,
  .process-section,
  .transfer-section,
  .locations-section {
    padding: 1.4rem 0 0.85rem;
  }

  .section-heading {
    margin-bottom: 1rem;
  }

  .manifest-card,
  .piece-card,
  .timeline-item,
  .step-card,
  .faq-card,
  .panel-card,
  .location-card,
  .contact-card {
    padding: 1.25rem;
  }

  .piece-card {
    min-height: 190px;
  }

  .transfer-layout {
    gap: 0.85rem;
  }

  .faq-grid {
    gap: 0.75rem;
  }

  .manifest-card h2 {
    font-size: 1.55rem;
  }

  .piece-card h3,
  .timeline-item__title,
  .faq-card__title,
  .panel-card h3,
  .step-card__title,
  .location-card h3 {
    font-size: 1.4rem;
  }

  .faq-card__title {
    font-size: 1.46rem;
  }

  .step-card__title,
  .timeline-item__title,
  .panel-card h3,
  .faq-card__title {
    max-inline-size: none;
  }

  .locations-grid {
    grid-template-columns: 1fr;
  }

  .site-mark {
    justify-content: center;
    text-align: center;
  }

  .site-mark__logo-frame {
    width: 5.4rem;
    padding: 0.35rem;
    border-radius: 20px;
  }

  .site-mark__logo {
    border-radius: 15px;
  }

  .instagram-card {
    align-items: flex-start;
  }

  .instagram-card__avatar-ring {
    width: 4.35rem;
  }

  .button,
  .button.ghost {
    width: 100%;
  }

  th,
  td {
    padding: 0.85rem;
  }
}
