@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:ital,wght@1,700&display=swap');

:root {
  --ink: #130e0c;
  --ink-soft: #211713;
  --cream: #f4eadb;
  --cream-soft: #ead9c6;
  --pink: #df5873;
  --pink-dark: #b93752;
  --line: rgba(244, 234, 219, .22);
  --max: 1240px;
  --header: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .05;
  z-index: 100;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { color: inherit; }

.skip-link {
  position: absolute; left: 12px; top: -80px; z-index: 999;
  background: var(--cream); color: var(--ink); padding: 10px 14px;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: fixed; inset: 0 0 auto 0; height: var(--header); z-index: 50;
  display: flex; align-items: center;
  background: linear-gradient(180deg, rgba(19,14,12,.92), rgba(19,14,12,.42), transparent);
  transition: background .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled { background: rgba(19,14,12,.96); border-color: var(--line); backdrop-filter: blur(14px); }
.header-inner { width: min(calc(100% - 44px), var(--max)); margin: auto; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand img { width: 150px; height: auto; filter: drop-shadow(0 8px 24px rgba(0,0,0,.25)); }
.nav-wrap { display: flex; align-items: center; gap: 28px; }
.site-nav { display: flex; align-items: center; gap: 25px; }
.site-nav a { text-decoration: none; text-transform: uppercase; font-size: .75rem; font-weight: 700; letter-spacing: .16em; opacity: .9; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--pink); }
.ticket-button, .button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border: 1px solid var(--pink); background: var(--pink); color: var(--ink);
  min-height: 46px; padding: 0 20px; text-decoration: none; text-transform: uppercase;
  letter-spacing: .11em; font-size: .76rem; font-weight: 800; transition: .22s ease;
}
.ticket-button:hover, .button:hover { background: transparent; color: var(--pink); transform: translateY(-2px); }
.button--ghost { background: transparent; color: var(--cream); border-color: rgba(244,234,219,.5); }
.button--ghost:hover { border-color: var(--pink); }
.menu-toggle { display: none; background: transparent; border: 0; padding: 10px; cursor: pointer; }
.menu-toggle span { display: block; width: 28px; height: 2px; background: var(--cream); margin: 6px 0; transition: .2s ease; }

.hero {
  min-height: 100svh; position: relative; display: grid; align-items: end; overflow: hidden;
  background: #0f0b0a;
}
.hero-slides, .hero-slide, .hero-overlay { position: absolute; inset: 0; }
.hero-slide { opacity: 0; transition: opacity 1.1s ease; }
.hero-slide.is-active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.035); transition: transform 7s linear; }
.hero-slide.is-active img { transform: scale(1); }
.hero-overlay { background: linear-gradient(90deg, rgba(16,11,9,.8) 0%, rgba(16,11,9,.38) 46%, rgba(16,11,9,.14) 72%), linear-gradient(0deg, rgba(16,11,9,.92) 0%, transparent 55%); }
.hero-content { position: relative; z-index: 4; width: min(calc(100% - 44px), var(--max)); margin: 0 auto; padding: 150px 0 72px; }
.eyebrow { text-transform: uppercase; letter-spacing: .22em; color: var(--pink); font-weight: 800; font-size: .76rem; }
.hero-logo { display: block; width: min(531px, 72vw); margin: 12px 0 8px; }
.hero-tagline { font-size: clamp(.9rem, 1.25vw, 1.12rem); text-transform: uppercase; letter-spacing: .13em; font-weight: 600; }
.hero-actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero-controls { position: absolute; z-index: 6; right: max(22px, calc((100vw - var(--max))/2)); bottom: 72px; display: flex; align-items: center; gap: 9px; }
.hero-dot { width: 30px; height: 3px; border: 0; background: rgba(244,234,219,.42); padding: 0; cursor: pointer; }
.hero-dot.is-active { background: var(--pink); }
.hero-arrow { width: 42px; height: 42px; border: 1px solid rgba(244,234,219,.48); background: rgba(19,14,12,.24); cursor: pointer; display: grid; place-items: center; }
.hero-arrow:hover { border-color: var(--pink); color: var(--pink); }

.section { padding: 105px 0; }
.section--cream { background: var(--cream); color: var(--ink); }
.section--soft { background: var(--cream-soft); color: var(--ink); }
.container { width: min(calc(100% - 44px), var(--max)); margin-inline: auto; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 42px; }
.display-title { margin: 0; font-family: "Archivo Black", Impact, sans-serif; font-size: clamp(2.3rem, 6vw, 5.3rem); line-height: .93; text-transform: uppercase; letter-spacing: -.045em; }
.script { font-family: "Playfair Display", Georgia, serif; color: var(--pink); font-style: italic; text-transform: none; letter-spacing: -.03em; }
.text-link { color: var(--pink-dark); text-decoration: none; text-transform: uppercase; letter-spacing: .13em; font-size: .76rem; font-weight: 800; white-space: nowrap; }
.text-link:hover { text-decoration: underline; }

.next-event { display: grid; grid-template-columns: minmax(150px, 220px) 1fr auto; gap: 32px; align-items: center; border-top: 1px solid rgba(19,14,12,.22); border-bottom: 1px solid rgba(19,14,12,.22); padding: 32px 0; }
.event-date { font-family: "Archivo Black", Impact, sans-serif; font-size: clamp(3.2rem, 7vw, 6.3rem); line-height: .8; color: var(--pink-dark); }
.event-date small { display: block; color: var(--ink); font: 700 .8rem/1 "DM Sans", sans-serif; letter-spacing: .22em; margin-top: 12px; }
.event-info h3 { margin: 0 0 9px; font-family: "Archivo Black", Impact, sans-serif; font-size: clamp(1.35rem, 2.6vw, 2.45rem); line-height: 1.03; text-transform: uppercase; }
.event-info p { margin: 0; font-size: .92rem; text-transform: uppercase; letter-spacing: .09em; opacity: .72; }

.page-hero { padding: calc(var(--header) + 95px) 0 78px; background: radial-gradient(circle at 85% 5%, rgba(223,88,115,.24), transparent 35%), var(--ink); border-bottom: 1px solid var(--line); }
.page-hero .display-title { font-size: clamp(3.5rem, 10vw, 8.6rem); }
.page-hero p { max-width: 760px; font-size: clamp(1.05rem, 1.7vw, 1.35rem); opacity: .78; }

.story-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(38px, 7vw, 100px); align-items: start; }
.story-copy p { font-size: clamp(1rem, 1.25vw, 1.18rem); opacity: .8; }

.gallery-section { padding: 70px 0 105px; background: var(--ink); overflow: hidden; }
.gallery-shell { position: relative; }
.gallery-viewport { overflow: hidden; }
.gallery-track { display: flex; gap: 18px; transition: transform .65s cubic-bezier(.22,.61,.36,1); will-change: transform; }
.gallery-card { flex: 0 0 calc((100% - 36px)/3); aspect-ratio: 4/5; overflow: hidden; background: var(--ink-soft); }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-card:hover img { transform: scale(1.035); }
.gallery-card:nth-child(1) img { object-position: 45% 50%; }
.gallery-card:nth-child(2) img { object-position: 50% 42%; }
.gallery-card:nth-child(3) img { object-position: 50% 32%; }
.gallery-card:nth-child(4) img { object-position: 50% 50%; }
.gallery-card:nth-child(5) img { object-position: 50% 50%; }
.gallery-card:nth-child(6) img { object-position: 50% 35%; }
.gallery-card:nth-child(7) img { object-position: 50% 50%; }
.gallery-card:nth-child(8) img { object-position: 50% 40%; }
.gallery-controls { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-top: 22px; }
.gallery-progress { height: 2px; flex: 1; background: rgba(244,234,219,.2); position: relative; }
.gallery-progress span { display: block; height: 100%; width: 20%; background: var(--pink); transition: width .5s ease; }
.gallery-buttons { display: flex; gap: 8px; }
.gallery-button { width: 48px; height: 48px; border: 1px solid var(--line); background: transparent; cursor: pointer; }
.gallery-button:hover { border-color: var(--pink); color: var(--pink); }

.roots-block { position: relative; padding: 120px 0; background: var(--pink); color: var(--ink); overflow: hidden; }
.roots-block::after { content: "C"; position: absolute; right: -2vw; bottom: -12vw; font-family: "Archivo Black"; font-size: min(42vw, 560px); line-height: 1; color: rgba(19,14,12,.075); }
.roots-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: end; }
.roots-grid .display-title { font-size: clamp(3rem, 7vw, 7rem); }
.roots-grid p { font-size: clamp(1.2rem, 2.2vw, 2rem); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }

.music-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(19,14,12,.2); border: 1px solid rgba(19,14,12,.2); }
.music-item { background: var(--cream); padding: 28px 24px; min-height: 160px; }
.music-item span { color: var(--pink-dark); text-transform: uppercase; letter-spacing: .15em; font-size: .68rem; font-weight: 800; }
.music-item h3 { font-family: "Archivo Black"; font-size: 1.45rem; text-transform: uppercase; margin: 28px 0 0; }

.event-list { border-top: 1px solid rgba(19,14,12,.22); }
.event-row { display: grid; grid-template-columns: 150px 1fr auto; gap: 30px; align-items: center; padding: 36px 0; border-bottom: 1px solid rgba(19,14,12,.22); }
.event-row h2 { margin: 0 0 9px; font-family: "Archivo Black"; text-transform: uppercase; line-height: 1.02; font-size: clamp(1.5rem, 3vw, 2.65rem); }
.event-row p { margin: 0; text-transform: uppercase; letter-spacing: .09em; opacity: .68; font-size: .85rem; }

.newsletter { padding: 80px 0; background: var(--ink-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.newsletter-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; }
.newsletter h2 { margin: 5px 0 0; font-family: "Archivo Black"; font-size: clamp(2.2rem, 5vw, 4.5rem); text-transform: uppercase; line-height: .95; }
.signup-form { display: flex; gap: 10px; }
.signup-form input { flex: 1; min-width: 0; border: 1px solid rgba(244,234,219,.42); background: transparent; color: var(--cream); min-height: 52px; padding: 0 16px; outline: none; }
.signup-form input:focus { border-color: var(--pink); }
.signup-form input::placeholder { color: rgba(244,234,219,.5); }

.site-footer { padding: 42px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; }
.footer-logo { width: 125px; }
.socials { display: flex; gap: 10px; }
.social-button { width: 46px; height: 46px; border: 1px solid rgba(244,234,219,.38); display: grid; place-items: center; text-decoration: none; transition: .2s ease; }
.social-button:hover { border-color: var(--pink); color: var(--pink); transform: translateY(-2px); }
.social-button svg { width: 19px; height: 19px; fill: currentColor; }
.footer-bottom { margin-top: 34px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 20px; font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; opacity: .6; }

.contact-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; }
.contact-card { padding: 28px 0; border-top: 1px solid rgba(19,14,12,.2); }
.contact-card:last-child { border-bottom: 1px solid rgba(19,14,12,.2); }
.contact-card span { display: block; text-transform: uppercase; letter-spacing: .14em; font-size: .7rem; color: var(--pink-dark); font-weight: 800; }
.contact-card a { font-size: clamp(1.25rem, 2vw, 1.75rem); font-weight: 700; text-decoration: none; }
.contact-form { display: grid; gap: 18px; }
.field { display: grid; gap: 8px; }
.field label { text-transform: uppercase; letter-spacing: .13em; font-size: .7rem; font-weight: 700; }
.field input, .field textarea { width: 100%; border: 1px solid rgba(19,14,12,.3); background: transparent; padding: 14px; color: var(--ink); outline: none; }
.field input:focus, .field textarea:focus { border-color: var(--pink-dark); }
.field textarea { min-height: 150px; resize: vertical; }

.store-coming { min-height: 48vh; display: grid; place-items: center; text-align: center; }
.store-coming .display-title { font-size: clamp(4rem, 12vw, 10rem); color: var(--pink); }

@media (max-width: 900px) {
  :root { --header: 72px; }
  .menu-toggle { display: block; z-index: 2; }
  .nav-wrap { position: fixed; inset: 0; background: rgba(19,14,12,.98); display: grid; place-content: center; gap: 34px; transform: translateX(100%); transition: transform .35s ease; }
  .nav-wrap.is-open { transform: translateX(0); }
  .site-nav { display: grid; text-align: center; gap: 25px; }
  .site-nav a { font-size: 1rem; }
  .header-ticket { justify-self: center; }
  .menu-toggle.is-open span:first-child { transform: translateY(8px) rotate(45deg); }
  .menu-toggle.is-open span:nth-child(2) { opacity: 0; }
  .menu-toggle.is-open span:last-child { transform: translateY(-8px) rotate(-45deg); }
  .hero-controls { right: 22px; bottom: 30px; }
  .next-event, .event-row { grid-template-columns: 110px 1fr; }
  .next-event .button, .event-row .button { grid-column: 2; justify-self: start; }
  .story-grid, .roots-grid, .newsletter-grid, .contact-grid { grid-template-columns: 1fr; }
  .music-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-card { flex-basis: calc((100% - 18px)/2); }
}

@media (max-width: 600px) {
  .header-inner, .container, .hero-content { width: min(calc(100% - 30px), var(--max)); }
  .brand img { width: 125px; }
  .hero { min-height: 88svh; }
  .hero-content { padding-bottom: 105px; }
  .hero-overlay { background: linear-gradient(0deg, rgba(16,11,9,.92) 0%, rgba(16,11,9,.22) 72%), linear-gradient(90deg, rgba(16,11,9,.55), transparent); }
  .hero-slide img { object-position: 56% center; }
  .hero-slide:nth-child(2) img { object-position: 48% center; }
  .hero-arrow { display: none; }
  .hero-controls { left: 15px; right: auto; bottom: 48px; }
  .section { padding: 76px 0; }
  .section-head { display: block; }
  .section-head .text-link { display: inline-block; margin-top: 20px; }
  .next-event, .event-row { grid-template-columns: 78px 1fr; gap: 18px; }
  .event-date { font-size: 2.65rem; }
  .next-event .button, .event-row .button { grid-column: 1 / -1; width: 100%; }
  .gallery-card { flex-basis: 86%; }
  .roots-block { padding: 85px 0; }
  .music-grid { grid-template-columns: 1fr; }
  .signup-form { display: grid; }
  .signup-form .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
.sr-only { position:absolute!important; width:1px!important; height:1px!important; padding:0!important; margin:-1px!important; overflow:hidden!important; clip:rect(0,0,0,0)!important; white-space:nowrap!important; border:0!important; }
