:root {
  --bg: #f4eee4;
  --bg-strong: #eadfce;
  --surface: rgba(255, 250, 243, 0.8);
  --surface-solid: #fffaf3;
  --surface-dark: #241d18;
  --ink: #1f1915;
  --muted: #66574b;
  --line: rgba(31, 25, 21, 0.1);
  --accent: #b84f33;
  --accent-dark: #8f3822;
  --accent-soft: rgba(184, 79, 51, 0.12);
  --olive: #52614b;
  --shadow: 0 22px 60px rgba(42, 28, 18, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: min(1180px, calc(100vw - 40px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.82),
      transparent 32%
    ),
    radial-gradient(
      circle at 85% 10%,
      rgba(184, 79, 51, 0.08),
      transparent 28%
    ),
    linear-gradient(180deg, #f8f3eb 0%, #f0e5d7 50%, #f5efe6 100%);
  color: var(--ink);
  min-height: 100vh;
  position: relative;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.page-aura,
.page-grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: -2;
}

.page-aura-one {
  background: radial-gradient(
    circle at 10% 10%,
    rgba(209, 156, 86, 0.18),
    transparent 34%
  );
}

.page-aura-two {
  background: radial-gradient(
    circle at 85% 20%,
    rgba(82, 97, 75, 0.12),
    transparent 28%
  );
}

.page-grain {
  z-index: -1;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(circle at center, black 50%, transparent 100%);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(248, 243, 235, 0.72);
  border-bottom: 1px solid rgba(31, 25, 21, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 1rem;
}

.brand-mark {
  width: 124px;
  padding: 1rem;
  display: grid;
  place-items: center;
  padding: 8px 12px;
  border-radius: 18px;
  background: rgba(255, 250, 243, 0.82);
  border: 1px solid rgba(31, 25, 21, 0.06);
  box-shadow: 0 12px 30px rgba(42, 28, 18, 0.08);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong {
  font-size: 0.96rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 26px;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.92rem;
  position: relative;
}

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

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

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

.button-primary {
  color: #fff8f2;
  background: linear-gradient(135deg, var(--accent) 0%, #d18f4c 100%);
  box-shadow: 0 18px 40px rgba(184, 79, 51, 0.2);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 24px 46px rgba(184, 79, 51, 0.28);
}

.button-secondary {
  color: var(--ink);
  border-color: rgba(31, 25, 21, 0.14);
  background: rgba(255, 250, 243, 0.55);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 250, 243, 0.92);
}

.button-compact {
  min-height: 44px;
  padding-inline: 18px;
}

.button-full {
  width: 100%;
}

.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 48px;
  align-items: center;
  padding: 58px 0 32px;
}

.eyebrow,
.panel-kicker,
.footer-title,
.ally-title {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
}

.countdown-badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.92);
  border: 1px solid rgba(31, 25, 21, 0.08);
  color: var(--ink);
  font-size: 0.86rem;
  box-shadow: 0 10px 24px rgba(31, 25, 21, 0.05);
}

.countdown-badge-muted {
  color: var(--muted);
}

.hero-title,
.section-title,
.panel h3,
.aside-card h3,
.closing-panel h2 {
  margin: 16px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.hero-title {
  font-size: clamp(3.4rem, 6vw, 6.2rem);
  max-width: 12ch;
}

.hero-description,
.section-copy,
.panel-copy,
.ticket-note,
.footer-copy,
.rich-copy p,
.aside-card p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
}

.hero-description {
  margin: 22px 0 0;
  max-width: 60ch;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 0;
}

.hero-chip,
.ally-pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.7);
  border: 1px solid rgba(31, 25, 21, 0.08);
  color: var(--ink);
  font-size: 0.9rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 30px 0 0;
}

.hero-stat {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 250, 243, 0.72);
  border: 1px solid rgba(31, 25, 21, 0.06);
  box-shadow: var(--shadow);
}

.hero-stat strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.hero-stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.86rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-media {
  position: relative;
  min-height: 650px;
}

.hero-frame {
  position: absolute;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  box-shadow: 0 28px 60px rgba(42, 28, 18, 0.18);
  background: #d8c8b8;
}

.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-frame-main {
  inset: 0 16% 12% 0;
}

.hero-frame-top {
  width: 34%;
  height: 35%;
  top: 5%;
  right: 0;
  transform: rotate(4deg);
}

.hero-frame-bottom {
  width: 42%;
  height: 39%;
  right: 4%;
  bottom: 0;
  transform: rotate(-6deg);
}

.hero-plaque {
  position: absolute;
  left: 4%;
  bottom: 4%;
  width: min(320px, 72%);
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(36, 29, 24, 0.86);
  color: #f8efe4;
  backdrop-filter: blur(12px);
}

.hero-plaque p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

.section {
  padding: 56px 0;
}

.section-heading {
  margin-bottom: 28px;
}

.section-title {
  font-size: clamp(2.5rem, 4vw, 4.25rem);
}

.overview-grid,
.ticket-layout,
.closing-panel,
.footer-grid {
  display: grid;
  gap: 24px;
}

.overview-grid {
  grid-template-columns: 1.15fr 0.85fr;
}

.overview-side {
  display: grid;
  gap: 24px;
}

.panel,
.schedule-shell,
.aside-card,
.closing-panel {
  background: var(--surface);
  border: 1px solid rgba(31, 25, 21, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.panel {
  padding: 28px;
}

.panel-large {
  min-height: 100%;
}

.panel-highlight {
  background:
    linear-gradient(
      180deg,
      rgba(255, 250, 243, 0.9),
      rgba(255, 245, 235, 0.88)
    ),
    linear-gradient(135deg, rgba(184, 79, 51, 0.08), transparent 50%);
}

.panel-accent {
  background: linear-gradient(
    135deg,
    rgba(82, 97, 75, 0.92),
    rgba(58, 72, 51, 0.96)
  );
  color: #f8efe4;
}

.panel-accent .panel-kicker,
.panel-accent .panel-copy,
.panel-accent h3 {
  color: inherit;
}

.rich-copy p:first-child {
  margin-top: 0;
}

.rich-copy p:last-child {
  margin-bottom: 0;
}

.pillar-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.pillar-item {
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(31, 25, 21, 0.06);
}

.pillar-item strong {
  display: block;
  margin-bottom: 6px;
}

.pillar-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.ally-strip {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.ally-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.detail-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 243, 0.82);
  border: 1px solid rgba(31, 25, 21, 0.07);
  box-shadow: var(--shadow);
}

.detail-card-label {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.detail-card-value {
  margin: 14px 0 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  line-height: 1;
}

.detail-card-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.schedule-shell {
  margin-top: 24px;
  padding: 28px;
}

.schedule-heading h3 {
  margin: 10px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  line-height: 1;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.schedule-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(31, 25, 21, 0.06);
}

.schedule-card time {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.86rem;
  font-weight: 700;
}

.schedule-card h4 {
  margin: 14px 0 8px;
  font-size: 1.08rem;
}

.schedule-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.ticket-layout {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}

.ticket-price {
  margin: 18px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 4vw, 4rem);
  line-height: 1;
}

.ticket-note {
  margin: 14px 0 0;
}

.ticket-includes {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 14px;
}

.ticket-includes li {
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(31, 25, 21, 0.06);
}

.aside-panel {
  display: grid;
  gap: 18px;
}

.aside-card {
  padding: 28px;
}

.aside-card-soft {
  background: linear-gradient(
    135deg,
    rgba(255, 250, 243, 0.94),
    rgba(234, 223, 206, 0.82)
  );
}

.section-gallery {
  overflow: hidden;
}

.gallery-wrap {
  margin-top: 34px;
  padding: 0 0 8px;
}

.gallery-rail {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: auto;
  scrollbar-width: none;
  padding: 0 20px 12px;
}

.gallery-rail::-webkit-scrollbar {
  display: none;
}

.gallery-item {
  flex: 0 0 min(320px, 76vw);
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  box-shadow: 0 22px 46px rgba(42, 28, 18, 0.16);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 280ms ease;
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
  transform: scale(1.03);
}

.gallery-card figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 20px 18px 18px;
  color: #fff8f2;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(18, 14, 11, 0.72) 100%
  );
  text-align: left;
}

.gallery-card span {
  display: block;
  font-size: 0.95rem;
  line-height: 1.45;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 243, 0.82);
  border: 1px solid rgba(31, 25, 21, 0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  padding: 22px 24px;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.faq-trigger span {
  font-weight: 700;
}

.faq-trigger strong {
  font-size: 1.4rem;
  color: var(--accent);
  line-height: 1;
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-panel > div {
  overflow: hidden;
}

.faq-panel p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
  line-height: 1.8;
}

.faq-item.is-open .faq-panel {
  grid-template-rows: 1fr;
}

.closing-panel {
  grid-template-columns: 1fr;
  align-items: center;
  padding: 32px;
}

.site-footer {
  padding: 24px 0 90px;
}

.footer-grid {
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  align-items: start;
}

.footer-links {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.footer-links a {
  color: var(--muted);
  transition: color 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--accent-dark);
}

.app-status {
  width: var(--container);
  margin: 18px auto 0;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(184, 79, 51, 0.12);
  border: 1px solid rgba(184, 79, 51, 0.16);
  color: var(--accent-dark);
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 12;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 999px;
  color: #fff8f2;
  background: rgba(36, 29, 24, 0.92);
  box-shadow: 0 20px 40px rgba(31, 25, 21, 0.24);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: rgba(17, 12, 9, 0.88);
}

.lightbox.is-open {
  display: flex;
}

.lightbox-figure {
  margin: 0;
  width: min(100%, 980px);
}

.lightbox-figure img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 24px;
}

.lightbox-figure figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 16px;
  color: #fff8f2;
}

.lightbox-figure p {
  margin: 0;
  color: rgba(255, 248, 242, 0.82);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 0;
  border-radius: 999px;
  color: #fff8f2;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.lightbox-close {
  top: 22px;
  right: 22px;
  min-height: 44px;
  padding: 0 18px;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
}

.lightbox-prev {
  left: 22px;
}

.lightbox-next {
  right: 22px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 540ms ease,
    transform 540ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid rgba(184, 79, 51, 0.5);
  outline-offset: 3px;
}

@media (max-width: 1080px) {
  .hero,
  .overview-grid,
  .ticket-layout,
  .footer-grid,
  .closing-panel,
  .detail-grid,
  .schedule-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 560px;
  }
}

@media (max-width: 820px) {
  .site-nav {
    display: none;
  }

  .header-inner {
    min-height: 76px;
  }

  .hero {
    padding-top: 42px;
  }

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

  .hero-media {
    min-height: 480px;
  }

  .hero-frame-main {
    inset: 0 4% 14% 0;
  }

  .hero-frame-top {
    width: 38%;
  }

  .hero-frame-bottom {
    width: 46%;
  }

  .closing-panel {
    padding: 28px;
  }
}

@media (max-width: 640px) {
  body {
    background:
      radial-gradient(
        circle at top left,
        rgba(255, 255, 255, 0.78),
        transparent 32%
      ),
      linear-gradient(180deg, #f8f3eb 0%, #f0e5d7 60%, #f5efe6 100%);
  }

  .container {
    width: min(100vw - 28px, 100%);
  }

  .brand-mark {
    width: 108px;
  }

  .button,
  .floating-cta {
    min-height: 50px;
  }

  .hero-title {
    font-size: clamp(2.8rem, 16vw, 4.2rem);
  }

  .section-title {
    font-size: clamp(2.3rem, 13vw, 3.4rem);
  }

  .panel,
  .aside-card,
  .schedule-shell,
  .closing-panel {
    padding: 24px;
  }

  .gallery-rail {
    padding-inline: 14px;
    gap: 14px;
  }

  .gallery-item {
    flex-basis: 78vw;
  }

  .lightbox {
    padding: 70px 14px 20px;
  }

  .lightbox-figure figcaption {
    flex-direction: column;
  }

  .lightbox-nav {
    top: auto;
    bottom: 18px;
    transform: none;
  }

  .lightbox-prev {
    left: 14px;
  }

  .lightbox-next {
    right: 14px;
  }

  .floating-cta {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
