:root {
  --festival-bg: #F1DDC0;
  --festival-text: #0D0D0F;
  --festival-sand: #E6C79E;
  --festival-cream: rgba(255, 249, 240, 0.72);
  --festival-line: rgba(13, 13, 15, 0.18);
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top left, rgba(230, 199, 158, 0.58), transparent 32%),
    linear-gradient(180deg, rgba(255, 250, 242, 0.28), rgba(241, 221, 192, 0.92)),
    var(--festival-bg);
  color: var(--festival-text);
  font-family: "Norwester", sans-serif;
  letter-spacing: 0.02em;
}

img {
  display: block;
}

.festival-nav {
  background: rgba(241, 221, 192, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--festival-line);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.brand-logo {
  width: clamp(4.5rem, 7vw, 6rem);
  height: auto;
}

.brand-wordmark,
.nav-link,
.btn,
h1,
h2,
h3,
.meta-card strong,
.timeline-time,
.ticket-price {
  text-transform: uppercase;
}

.navbar-brand,
.nav-link,
.festival-footer a {
  color: var(--festival-text);
  text-decoration: none;
}

.nav-link {
  padding: 0;
}

.hero-section,
.content-section {
  padding: 5rem 0;
}

.image-band {
  padding: 0 0 1rem;
}

.hero-copy h1 {
  font-size: clamp(3.4rem, 9vw, 6.8rem);
  line-height: 0.95;
  max-width: 10ch;
  margin-bottom: 1rem;
}

.eyebrow,
.section-kicker,
.ticket-label,
.meta-label {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-text,
.section-text,
.festival-card p,
.timeline-item p,
.info-panel p,
.ticket-copy,
.ticket-note,
.festival-footer p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  line-height: 1.75;
  letter-spacing: 0;
}

.hero-text {
  max-width: 34rem;
  margin-bottom: 2rem;
}

.hero-visual {
  position: relative;
}

.hero-image {
  min-height: 540px;
  width: 100%;
  object-fit: cover;
  border-radius: 2rem;
  box-shadow: 0 30px 70px rgba(13, 13, 15, 0.18);
}

.gallery-frame {
  margin: 0;
  overflow: hidden;
  border-radius: 1.75rem;
  border: 1px solid var(--festival-line);
  box-shadow: 0 24px 50px rgba(13, 13, 15, 0.12);
  background: rgba(255, 249, 240, 0.55);
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-frame:hover .gallery-image {
  transform: scale(1.03);
}

.gallery-row .tall {
  height: 24rem;
}

.gallery-row .wide {
  height: 24rem;
  transform: translateY(2rem);
}

.floating-badge {
  position: absolute;
  left: -1.5rem;
  bottom: 2rem;
  background: rgba(13, 13, 15, 0.92);
  color: var(--festival-bg);
  max-width: 18rem;
  padding: 1rem 1.25rem;
  border-radius: 1.25rem;
  box-shadow: 0 20px 40px rgba(13, 13, 15, 0.2);
}

.meta-card,
.festival-card,
.info-panel,
.ticket-panel,
.timeline-item {
  background: var(--festival-cream);
  border: 1px solid var(--festival-line);
  border-radius: 1.5rem;
}

.meta-card {
  padding: 1rem 1.1rem;
}

.meta-card strong {
  display: block;
  font-size: 1.25rem;
  margin-top: 0.35rem;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.98;
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.45rem;
  margin-bottom: 0.65rem;
}

.festival-grid {
  margin-top: 2rem;
}

.festival-card,
.info-panel,
.ticket-panel {
  height: 100%;
}

.festival-card {
  padding: 2rem;
}

.alt-section {
  position: relative;
}

.alt-section::before {
  content: "";
  position: absolute;
  inset: 4rem 0;
  background: linear-gradient(90deg, rgba(230, 199, 158, 0.18), rgba(255, 255, 255, 0.18));
  pointer-events: none;
}

.photo-story {
  padding-top: 1rem;
}

.story-large {
  height: 36rem;
}

.story-small {
  height: calc(18rem - 0.375rem);
}

.timeline-list {
  position: relative;
  display: grid;
  gap: 1rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1rem;
  padding: 1.4rem 1.5rem;
}

.timeline-time {
  font-size: 1.1rem;
}

.timeline-item h3,
.timeline-item p {
  margin-bottom: 0;
}

.info-panel {
  padding: 2.4rem;
}

.ticket-panel {
  padding: 2.4rem;
  background: var(--festival-text);
  color: var(--festival-bg);
  box-shadow: 0 25px 50px rgba(13, 13, 15, 0.16);
}

.ticket-panel .btn {
  background: var(--festival-bg);
  border-color: var(--festival-bg);
  color: var(--festival-text);
}

.ticket-price {
  font-size: 4rem;
  line-height: 1;
  margin: 0.75rem 0 1rem;
}

.ticket-note {
  display: block;
  margin-top: 1rem;
  opacity: 0.8;
}

.festival-footer {
  border-top: 1px solid var(--festival-line);
}

.footer-links a {
  color: inherit;
}

@media (max-width: 991.98px) {
  .hero-section,
  .content-section {
    padding: 4rem 0;
  }

  .gallery-row .wide {
    transform: none;
  }

  .floating-badge {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: none;
  }
}

@media (max-width: 767.98px) {
  .brand-logo {
    width: 4rem;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .hero-image {
    min-height: 420px;
  }

  .gallery-row .tall,
  .gallery-row .wide,
  .story-large,
  .story-small {
    height: 18rem;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .timeline-time {
    font-size: 0.95rem;
  }
}
