:root {
  --burgundy: #562332;
  --burgundy-2: #56272d;
  --orange: #f78e21;
  --cream: #fff8f1;
  --sand: #f6eadf;
  --ink: #20191b;
  --muted: #6e6063;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(86, 35, 50, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(86, 35, 50, 0.96);
  color: var(--white);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.16);
}

.topbar {
  width: min(1180px, calc(100% - 32px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: Outfit, Manrope, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  margin-right: auto;
}

.brand-mark {
  width: 58px;
  height: 44px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.is-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav a {
  padding: 10px 12px;
  border-radius: 999px;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.12);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.2s ease, transform 0.2s ease;
}

.social-links a:hover {
  background: var(--orange);
  transform: translateY(-1px);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 78px);
  padding: 72px max(24px, calc((100vw - 1180px) / 2)) 54px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: 46px;
  background:
    radial-gradient(circle at 82% 18%, rgba(247, 142, 33, 0.22), transparent 28%),
    linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-2) 58%, #31151e 100%);
  color: var(--white);
}

.hero-content,
.hero-card {
  position: relative;
  z-index: 2;
}

.hero-ostrich {
  position: absolute;
  right: -160px;
  top: 122px;
  z-index: 1;
  width: min(42vw, 620px);
  min-width: 360px;
  opacity: 0.9;
  pointer-events: none;
  transform: rotate(-4deg);
  filter: drop-shadow(0 28px 50px rgba(0, 0, 0, 0.24));
  mix-blend-mode: screen;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--burgundy);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Outfit, Manrope, sans-serif;
  letter-spacing: -0.03em;
}

h1 {
  max-width: 860px;
  margin-bottom: 18px;
  font-size: clamp(54px, 9vw, 118px);
  line-height: 0.95;
}

.hero-title-row {
  position: relative;
}

h2 {
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.03;
}

.hero-date {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  padding: 12px 18px;
  background: var(--orange);
  color: #2a1118;
  border-radius: 999px;
  font-family: Outfit, Manrope, sans-serif;
  font-weight: 900;
}

.hero-date svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.hero-copy {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
}

.hero-actions,
.footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
}

.button.primary,
.contact-form button {
  background: var(--orange);
  color: #2a1118;
}

.button.booking {
  background: var(--white);
  color: var(--burgundy);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.hero-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.hero-card img {
  width: 100%;
  aspect-ratio: 1.08;
  padding: 28px;
  object-fit: contain;
  background: var(--white);
}

.countdown {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.countdown div {
  padding: 18px 10px;
  text-align: center;
  background: rgba(86, 35, 50, 0.82);
}

.countdown strong {
  display: block;
  font-family: Outfit, Manrope, sans-serif;
  font-size: 32px;
}

.countdown span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.venue-section {
  width: min(1180px, calc(100% - 32px));
  margin: 28px auto 0;
}

.venue-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
  gap: 24px;
  align-items: stretch;
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.venue-copy {
  padding: 32px;
}

.venue-copy h2 {
  margin-bottom: 14px;
  color: var(--burgundy);
  font-size: clamp(30px, 4vw, 48px);
}

.venue-copy p {
  color: var(--muted);
  line-height: 1.65;
}

.venue-details {
  display: grid;
  gap: 16px;
  margin: 26px 0;
}

.venue-detail {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  color: var(--burgundy);
  font-weight: 900;
  line-height: 1.4;
}

.venue-icon-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 8px;
  border-radius: 8px;
  background: rgba(247, 142, 33, 0.16);
}

.venue-icon-text img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.venue-map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 86px 0;
}

.intro {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: 42px;
  align-items: start;
}

.feature-grid,
.guest-grid,
.artist-grid {
  display: grid;
  gap: 18px;
}

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

.feature-grid article,
.guest-grid article {
  padding: 24px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 40px rgba(86, 35, 50, 0.08);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: rgba(247, 142, 33, 0.14);
  color: var(--burgundy);
}

.feature-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.feature-grid h3 {
  color: var(--burgundy);
  font-family: Outfit, Manrope, sans-serif;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.icon {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--orange);
  font-weight: 900;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-subtitle {
  max-width: 560px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  line-height: 1.45;
}

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

.artist-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: var(--burgundy);
  box-shadow: var(--shadow);
  color: var(--white);
  cursor: pointer;
  text-align: left;
}

.artist-grid img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.artist-grid h3 {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  margin: 0;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(86, 35, 50, 0.9);
  color: var(--white);
}

.artist-card:hover img {
  transform: scale(1.04);
}

.play-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--orange);
  color: #2a1118;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.play-badge svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.artist-release-note {
  margin: 24px 0 0;
  color: var(--burgundy);
  font-size: clamp(18px, 2vw, 24px);
  text-align: center;
}

.access-card {
  display: grid;
  grid-template-columns: minmax(190px, 0.45fr) minmax(520px, 1.55fr);
  gap: 30px;
  align-items: center;
  padding: 32px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.access-card h2 {
  max-width: 640px;
  margin-bottom: 14px;
  color: var(--burgundy);
  font-size: clamp(32px, 4vw, 54px);
}

.access-card p:not(.eyebrow) {
  max-width: 660px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

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

.price-list div {
  display: grid;
  gap: 8px;
  align-items: start;
  padding: 16px;
  border: 1px solid #edd5da;
  border-radius: 8px;
  background: var(--cream);
}

.price-list strong {
  color: var(--orange);
  font-family: Outfit, Manrope, sans-serif;
  font-size: 28px;
  font-weight: 900;
}

.price-list span {
  color: var(--burgundy);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  align-items: center;
}

.poster {
  width: 100%;
  max-height: 820px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid #edd5da;
  border-radius: 999px;
  background: var(--white);
  color: var(--burgundy);
  font-weight: 800;
}

.food-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.food-card {
  padding: 22px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 40px rgba(86, 35, 50, 0.08);
}

.food-card .category-kicker {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(247, 142, 33, 0.15);
  color: var(--burgundy);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.food-card h3 {
  position: relative;
  margin-bottom: 16px;
  padding-left: 18px;
  color: var(--burgundy);
  font-family: Outfit, Manrope, sans-serif;
  font-size: 24px;
}

.food-card h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--orange);
}

.food-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.food-card li {
  padding: 9px 11px;
  border: 1px solid #edd5da;
  border-radius: 999px;
  color: var(--burgundy);
  font-size: 14px;
  font-weight: 800;
}

.vendor-layout {
  display: block;
}

.compact span {
  font-size: 14px;
}

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

.guest-grid p {
  color: var(--muted);
  line-height: 1.55;
}

.guest-grid strong {
  display: block;
  margin-bottom: 18px;
  color: var(--burgundy);
}

.guest-grid iframe {
  width: 100%;
  height: 220px;
  margin-bottom: 14px;
  border: 0;
  border-radius: 8px;
}

.map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--burgundy);
  color: var(--white);
  font-weight: 900;
}

.contact {
  padding: 86px max(16px, calc((100vw - 1180px) / 2));
  background: var(--burgundy);
  color: var(--white);
}

.contact-card {
  max-width: 780px;
}

.contact p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.contact-list {
  display: grid;
  gap: 10px;
}

.contact-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 800;
}

.contact-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 999px;
  background: var(--orange);
  color: #2a1118;
  font-weight: 900;
}

.contact-list .whatsapp-icon svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--burgundy);
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #e8d0d6;
  border-radius: 8px;
  padding: 13px 14px;
  font: inherit;
  resize: vertical;
}

.footer {
  padding: 28px max(16px, calc((100vw - 1180px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #351620;
  color: var(--white);
}

.footer p {
  margin: 0;
  font-weight: 900;
}

.footer a {
  color: var(--orange);
  font-weight: 800;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.video-modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(32, 25, 27, 0.78);
  backdrop-filter: blur(8px);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  padding: 20px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.modal-panel h2 {
  margin: 0 56px 16px 0;
  color: var(--burgundy);
  font-size: clamp(26px, 4vw, 40px);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: var(--burgundy);
  color: var(--white);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.video-frame {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  background: #000;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.youtube-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 14px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--orange);
  color: #2a1118;
  font-weight: 900;
}

@media (max-width: 980px) {
  .topbar {
    position: relative;
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .menu-toggle {
    display: inline-flex;
    order: 2;
  }

  .nav {
    order: 3;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(53, 22, 32, 0.98);
  }

  .site-header.is-open .nav {
    display: flex;
  }

  .nav a {
    padding: 13px 14px;
  }

  .social-links {
    order: 4;
    width: 100%;
    display: none;
    justify-content: flex-start;
    padding: 0 12px 10px;
  }

  .site-header.is-open .social-links {
    display: flex;
  }

  .hero-ostrich {
    right: -150px;
    top: auto;
    bottom: 44px;
    width: 380px;
    min-width: 0;
    opacity: 0.42;
    transform: rotate(-8deg);
  }

  .hero,
  .intro,
  .split,
  .vendor-layout,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .venue-card,
  .access-card,
  .feature-grid,
  .food-card-grid,
  .guest-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .venue-card {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .access-card {
    grid-template-columns: 1fr;
  }

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

  .venue-map iframe {
    height: 340px;
    min-height: 340px;
  }

  .vendor-layout img {
    position: static;
  }
}

@media (max-width: 720px) {
  .brand span {
    font-size: 15px;
  }

  .hero {
    padding-top: 44px;
    padding-bottom: 54px;
  }

  .hero-ostrich {
    left: auto;
    right: auto;
    top: 150px;
    right: 18px;
    bottom: auto;
    width: 138px;
    opacity: 0.95;
    transform: rotate(-7deg);
  }

  .hero .eyebrow {
    max-width: 300px;
    font-size: 12px;
    line-height: 1.45;
    white-space: normal;
  }

  h1 {
    max-width: 270px;
    font-size: clamp(46px, 15vw, 72px);
  }

  .feature-grid,
  .artist-grid,
  .food-card-grid,
  .guest-grid {
    grid-template-columns: 1fr;
  }

  .venue-copy {
    padding: 24px;
  }

  .access-card {
    padding: 24px;
  }

  .price-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .price-list {
    grid-template-columns: 1fr;
  }

  .venue-section {
    width: min(100% - 20px, 1180px);
    margin-top: 18px;
  }

  .venue-card {
    overflow: visible;
  }

  .venue-copy h2 {
    font-size: clamp(30px, 10vw, 40px);
    line-height: 1.05;
  }

  .venue-copy p {
    font-size: 15px;
  }

  .venue-details {
    gap: 18px;
  }

  .venue-detail {
    gap: 12px;
    line-height: 1.35;
  }

  .venue-icon-text {
    width: 36px;
    height: 36px;
  }

  .venue-copy .button {
    width: 100%;
  }

  .venue-map {
    overflow: hidden;
    border-radius: 0 0 8px 8px;
  }

  .venue-map iframe {
    display: block;
    height: 260px;
    min-height: 260px;
  }

  .section,
  .contact {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
