:root {
  --paper: #f0ede5;
  --ink: #141412;
  --cream: #f7f4ec;
  --muted: #d9d3c6;
  --line: #aaa49a;
  --orange: #e46f2a;
  --orange-light: #e98a4d;
  --orange-dark: #8f451d;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
}
a { color: inherit; text-decoration: none; }
.skip-link { background: var(--cream); left: 16px; padding: 12px 16px; position: fixed; top: -100px; z-index: 100; }
.skip-link:focus { top: 16px; }

.site-header {
  align-items: center;
  background: rgba(15, 15, 14, .92);
  border-bottom: 1px solid rgba(255,255,255,.16);
  color: var(--cream);
  display: flex;
  height: 88px;
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(24px, 5vw, 80px);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 10;
}
.brand { align-items: center; display: flex; gap: 14px; }
.brand-mark {
  align-items: center;
  border: 1px solid currentColor;
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  height: 42px;
  justify-content: center;
  letter-spacing: -.05em;
  width: 42px;
}
.brand-name { font-size: 14px; font-weight: 700; line-height: 1.1; }
.brand-name small { color: #bdb8ae; font-size: 11px; font-weight: 500; letter-spacing: .04em; }
.desktop-nav { align-items: center; display: flex; gap: clamp(20px, 3vw, 48px); }
.desktop-nav a { font-size: 14px; font-weight: 600; }
.desktop-nav a:not(.nav-cta):hover { color: var(--orange-light); }
.desktop-nav .nav-concerts { color: var(--orange-light); }
.nav-cta { border: 1px solid rgba(255,255,255,.6); padding: 12px 18px; }
.nav-cta:hover { background: var(--cream); color: var(--ink); }
.mobile-menu { display: none; }

.hero {
  background: #0e0e0d;
  color: var(--cream);
  min-height: 820px;
  overflow: hidden;
  padding: 0 clamp(24px, 5vw, 80px);
  position: relative;
}
.hero-image { height: 100%; inset: 0; object-fit: cover; position: absolute; width: 100%; }
.hero-shade {
  background: linear-gradient(270deg, rgba(4,4,4,.98) 0%, rgba(4,4,4,.88) 34%, rgba(4,4,4,.18) 68%, rgba(4,4,4,.42) 100%), linear-gradient(0deg, rgba(4,4,4,.76), transparent 52%);
  inset: 0;
  position: absolute;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 820px;
  padding-top: 70px;
  position: relative;
  margin-left: auto;
  width: min(660px, 48vw);
  z-index: 2;
}
.eyebrow, .section-label, .kicker {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow { color: var(--orange-light); margin: 0 0 28px; }
.eyebrow-dark, .kicker { color: var(--orange-dark); }
.hero h1, .section h2, footer h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.055em;
  margin: 0;
}
.hero h1 { font-size: clamp(66px, 8vw, 124px); line-height: .84; }
.hero h1 em { color: var(--orange-light); font-weight: 400; }
.hero-copy { color: #d8d3c8; font-size: 18px; line-height: 1.65; margin: 34px 0 0; max-width: 650px; }
.hero-actions { align-items: center; display: flex; flex-wrap: wrap; gap: 28px; margin-top: 38px; }
.button {
  align-items: center;
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  gap: 16px;
  justify-content: center;
  padding: 17px 20px;
  width: fit-content;
}
.button-light { background: var(--cream); color: var(--ink); }
.button-light:hover { background: var(--orange-light); }
.button-concerts { background: var(--orange); color: var(--ink); }
.button-concerts:hover { background: var(--cream); }
.text-link { align-items: center; display: inline-flex; font-size: 14px; font-weight: 700; gap: 8px; }
.text-link:hover { color: var(--orange-light); }
.hero-word {
  bottom: -2.7vw;
  color: transparent;
  font-size: clamp(100px, 15vw, 270px);
  font-weight: 900;
  left: -1vw;
  letter-spacing: -.08em;
  line-height: .7;
  opacity: .15;
  position: absolute;
  -webkit-text-stroke: 1px #fff;
  white-space: nowrap;
}
.hero-socials { align-items: center; display: flex; gap: 14px; margin-top: 26px; position: relative; z-index: 3; }
.hero-socials a { align-items: center; border: 2px solid rgba(255,255,255,.88); border-radius: 15px; box-shadow: 0 8px 24px rgba(0,0,0,.32); display: inline-flex; height: 52px; justify-content: center; transition: transform .18s ease, box-shadow .18s ease; width: 52px; }
.hero-socials svg { fill: none; height: 28px; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; width: 28px; }
.hero-socials .icon-dot { fill: currentColor; stroke: none; }
.hero-socials .instagram-sticker { background: radial-gradient(circle at 30% 105%, #ffd600 0 22%, #ff7a00 36%, #ff0169 58%, #d300c5 78%, #7638fa 100%); color: #fff; transform: rotate(-3deg); }
.hero-socials .tiktok-sticker { background: #050505; color: #fff; transform: rotate(3deg); }
.hero-socials .tiktok-sticker svg { filter: drop-shadow(-2px 0 #25f4ee) drop-shadow(2px 0 #fe2c55); fill: currentColor; stroke: none; }
.hero-socials a:hover { box-shadow: 0 11px 30px rgba(0,0,0,.42); transform: translateY(-3px) rotate(0); }

.section { padding: 110px clamp(24px, 5vw, 80px); }
.concerts { background: var(--cream); }
.concerts-heading { align-items: end; display: grid; gap: 34px; grid-template-columns: .35fr 1fr .75fr; margin-bottom: 58px; }
.concerts-heading .eyebrow { align-self: start; margin-top: 8px; }
.concerts-heading h2 { font-size: clamp(50px, 5.5vw, 84px); line-height: .94; }
.concerts-heading > p:last-child { color: #57534c; line-height: 1.65; margin: 0 0 6px; max-width: 390px; }
.concert-list { border-top: 1px solid var(--line); }
.concert-card { align-items: center; border-bottom: 1px solid var(--line); border-top: 1px solid var(--line); display: grid; gap: clamp(24px, 4vw, 62px); grid-template-columns: 140px 1fr auto; padding: 34px 0; }
.concert-list .concert-card { border-top: 0; }
.concert-date { align-items: center; background: var(--orange); color: var(--ink); display: flex; flex-direction: column; height: 126px; justify-content: center; transform: rotate(-2deg); width: 126px; }
.concert-date span { font-family: Georgia, serif; font-size: 58px; letter-spacing: -.06em; line-height: .8; }
.concert-date small { font-size: 12px; font-weight: 800; letter-spacing: .12em; margin-top: 12px; }
.concert-time { color: var(--orange-dark); font-size: 13px; font-weight: 800; letter-spacing: .12em; margin: 0 0 12px; text-transform: uppercase; }
.concert-info h3 { font-family: Georgia, serif; font-size: clamp(27px, 3vw, 42px); font-weight: 400; letter-spacing: -.035em; line-height: 1.05; margin: 0; }
.concert-format { font-size: 16px; font-weight: 800; margin: 12px 0 0; }
.concert-info address { color: #57534c; font-size: 15px; font-style: normal; margin-top: 18px; }
.concert-ticket { border: 1px solid var(--ink); white-space: nowrap; }
.concert-ticket:hover { background: var(--ink); color: var(--cream); }
.concert-status { border-bottom: 1px solid var(--line); color: #57534c; font-size: 16px; margin: 0; padding: 34px 0; }
.intro { display: grid; gap: 48px; grid-template-columns: .42fr 1.15fr .92fr; }
.section-label { margin: 4px 0 0; }
.kicker { margin: 0 0 24px; }
.intro h2, .projects h2, .stages h2, .contact h2 { font-size: clamp(50px, 5.5vw, 84px); line-height: .94; }
.intro-copy { border-left: 1px solid var(--line); padding: 50px 0 0 40px; }
.intro-copy p { font-size: 17px; line-height: 1.7; margin: 0 0 20px; }

.photo-story {
  background: var(--ink);
  display: grid;
  gap: 1px;
  grid-template-columns: 1.28fr .72fr;
  grid-template-rows: repeat(2, 360px);
  overflow: hidden;
  position: relative;
}
.photo-story figure { margin: 0; min-height: 0; overflow: hidden; position: relative; }
.photo-story figure::after, .stages-photo::after {
  background: linear-gradient(135deg, rgba(228,111,42,.08), transparent 45%, rgba(0,0,0,.18));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}
.photo-story .photo-large { grid-row: 1 / 3; }
.photo-story img, .stages-photo img {
  filter: grayscale(1) contrast(1.08);
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.photo-story .photo-large img { object-position: 44% center; }
.photo-story figure:nth-of-type(2) img { object-position: 50% 28%; }
.photo-story figure:nth-of-type(3) img { object-position: 50% 34%; }
.photo-label {
  background: var(--orange);
  bottom: 0;
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 30px;
  left: 0;
  line-height: 1.05;
  margin: 0;
  padding: 22px 28px;
  position: absolute;
  z-index: 2;
}
.photo-label span { font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 11px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }

.facts { border-bottom: 1px solid var(--line); border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(3, 1fr); padding: 0 clamp(24px, 5vw, 80px); }
.facts article { border-left: 1px solid var(--line); min-height: 340px; padding: 38px 34px; }
.facts article:last-child { border-right: 1px solid var(--line); }
.fact-number { color: var(--orange-dark); font-family: Georgia, serif; font-size: 58px; }
.facts h3 { font-family: Georgia, serif; font-size: 32px; font-weight: 400; letter-spacing: -.04em; margin: 100px 0 14px; }
.facts p { color: #57534c; line-height: 1.6; margin: 0; max-width: 280px; }

.projects { background: var(--muted); }
.projects-heading { align-items: end; display: grid; gap: 11vw; grid-template-columns: 1fr .75fr; }
.projects-heading > p { color: #4f4b45; font-size: 17px; line-height: 1.7; margin: 0 0 4px; }
.project-list { display: grid; gap: 0; grid-template-columns: repeat(2, 1fr); margin-top: 70px; }
.project { display: flex; flex-direction: column; justify-content: space-between; min-height: 520px; padding: 32px; }
.project-top { border-bottom: 1px solid currentColor; display: flex; font-size: 12px; font-weight: 700; justify-content: space-between; letter-spacing: .08em; opacity: .7; padding-bottom: 20px; text-transform: uppercase; }
.project-type { font-size: 12px; font-weight: 800; letter-spacing: .13em; margin: 0 0 18px; text-transform: uppercase; }
.project h3 { font-family: Georgia, serif; font-size: clamp(36px, 3.3vw, 54px); font-weight: 400; letter-spacing: -.05em; margin: 0 0 22px; }
.project > div:last-child > p:last-child { line-height: 1.65; margin: 0; }
.album-cover { align-self: flex-end; aspect-ratio: 1; box-shadow: 0 18px 45px rgba(0,0,0,.28); height: auto; margin: 28px 0; object-fit: cover; width: min(45%, 230px); }
.project-dark { background: var(--ink); color: var(--cream); }
.project-dark .project-type { color: var(--orange-light); }
.project-accent { background: var(--orange); color: var(--ink); }
.project-light { background: var(--cream); color: var(--ink); }
.project-light .project-type { color: var(--orange-dark); }
.project-charcoal { background: #2b2a27; color: var(--cream); }
.project-charcoal .project-type { color: var(--orange-light); }

.stages { background: #151513; color: var(--cream); display: grid; gap: 9vw; grid-template-columns: .9fr 1.1fr; }
.stages-title { min-width: 0; }
.stages-photo { height: 430px; margin: 55px 0 0; overflow: hidden; position: relative; }
.stages-photo img { object-position: 40% center; }
.stage-grid { align-self: center; border-top: 1px solid #4d4b47; display: grid; grid-template-columns: 1fr 1fr; }
.stage-grid span { border-bottom: 1px solid #4d4b47; color: #d8d3c8; font-family: Georgia, serif; font-size: 22px; padding: 22px 10px 22px 0; }
.stage-grid span:nth-child(odd) { border-right: 1px solid #4d4b47; }
.stage-grid span:nth-child(even) { padding-left: 22px; }

.timeline { display: grid; gap: 48px; grid-template-columns: .35fr 1.65fr; }
.timeline-items { border-top: 1px solid var(--line); }
.timeline-items article { align-items: baseline; border-bottom: 1px solid var(--line); display: grid; gap: 28px; grid-template-columns: 90px 1fr 1.3fr; padding: 25px 0; }
.timeline-items time { color: var(--orange-dark); font-size: 14px; font-weight: 800; }
.timeline-items h3 { font-family: Georgia, serif; font-size: 28px; font-weight: 400; letter-spacing: -.03em; margin: 0; }
.timeline-items p { color: #57534c; line-height: 1.5; margin: 0; }

.contact { background: var(--ink); color: var(--cream); display: grid; gap: 10vw; grid-template-columns: 1.1fr .9fr; }
.contact-card { align-self: center; border-left: 1px solid #4d4b47; display: flex; flex-direction: column; padding-left: clamp(28px, 5vw, 70px); }
.contact-card > p { color: #bbb6ac; line-height: 1.65; margin: 0 0 38px; max-width: 430px; }
.contact-mail { border-bottom: 1px solid #4d4b47; font-family: Georgia, serif; font-size: clamp(24px, 2.8vw, 40px); letter-spacing: -.03em; overflow-wrap: anywhere; padding-bottom: 12px; }
.contact-mail { margin-bottom: 34px; }
.social-links { display: flex; flex-wrap: wrap; gap: 12px; margin: 0 0 34px; }
.social-links a { align-items: center; border: 1px solid #5a5751; display: inline-flex; font-size: 14px; font-weight: 700; gap: 8px; padding: 12px 16px; }
.social-links a:hover { background: var(--cream); border-color: var(--cream); color: var(--ink); }
.button-accent { background: var(--orange); color: var(--ink); }
.button-accent:hover { background: var(--cream); }

footer { background: #0f0f0e; color: var(--cream); display: grid; gap: 50px; grid-template-columns: 1.1fr .75fr .75fr; padding: 80px clamp(24px, 5vw, 80px) 36px; }
.footer-brand { align-items: flex-start; display: flex; gap: 22px; }
.footer-brand h2 { font-size: clamp(34px, 4vw, 54px); line-height: .94; }
.footer-contact p { color: var(--orange-light); font-family: Georgia, serif; font-size: 25px; line-height: 1.2; margin: 0 0 36px; }
.footer-contact a { border-bottom: 1px solid #77736b; font-size: 14px; padding-bottom: 5px; }
.footer-legal { color: #aaa59b; font-size: 14px; line-height: 1.7; }
.footer-legal p { margin: 0 0 28px; }
.footer-legal div { display: flex; gap: 18px; }
.legal-details { border-top: 1px solid #363633; color: #aaa59b; font-size: 13px; grid-column: 1 / -1; line-height: 1.65; padding-top: 18px; }
.legal-details summary { color: var(--cream); cursor: pointer; font-size: 14px; font-weight: 700; }
.legal-details a { text-decoration: underline; text-underline-offset: 3px; }
.copyright { border-top: 1px solid #363633; color: #77736b; font-size: 12px; grid-column: 1 / -1; margin: 0; padding-top: 24px; }

a:focus-visible, summary:focus-visible { outline: 3px solid var(--orange-light); outline-offset: 4px; }

@media (max-width: 960px) {
  .site-header { height: 76px; }
  .desktop-nav { display: none; }
  .mobile-menu { display: block; position: relative; }
  .mobile-menu summary { align-items: center; cursor: pointer; display: flex; flex-direction: column; gap: 7px; justify-content: center; list-style: none; padding: 12px 0 12px 12px; }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu summary span { background: currentColor; display: block; height: 1px; width: 28px; }
  .mobile-menu nav { background: var(--ink); border: 1px solid #4d4b47; display: flex; flex-direction: column; min-width: 210px; padding: 10px; position: absolute; right: 0; top: 48px; }
  .mobile-menu nav a { border-bottom: 1px solid #363633; font-size: 16px; padding: 14px 12px; }
  .hero, .hero-content { min-height: 760px; }
  .hero-content { margin-left: 0; padding-top: 55px; width: 100%; }
  .hero-shade { background: linear-gradient(0deg, rgba(4,4,4,.96) 0%, rgba(4,4,4,.54) 68%, rgba(4,4,4,.35) 100%); }
  .hero h1 { font-size: clamp(58px, 16vw, 92px); }
  .concerts-heading, .intro, .projects-heading, .stages, .timeline, .contact { grid-template-columns: 1fr; }
  .concerts-heading { gap: 24px; }
  .concerts-heading .eyebrow { margin-bottom: 0; }
  .concert-card { grid-template-columns: 126px 1fr; }
  .concert-ticket { grid-column: 2; }
  .intro-copy, .contact-card { border-left: 0; padding-left: 0; }
  .facts, .project-list { grid-template-columns: 1fr; }
  .facts article, .facts article:last-child { border-bottom: 1px solid var(--line); border-right: 0; min-height: 280px; }
  .facts h3 { margin-top: 60px; }
  .project { min-height: 440px; }
  .album-cover { width: min(62%, 280px); }
  .stage-grid { margin-top: 10px; }
  .stages-photo { height: 560px; }
  .timeline-items article { grid-template-columns: 72px 1fr; }
  .timeline-items p { grid-column: 2; }
  footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .site-header { padding: 0 20px; }
  .brand-name { display: none; }
  .hero { min-height: 720px; padding: 0 20px; }
  .hero-content { min-height: 720px; }
  .hero-image { object-position: 42% center; }
  .hero-copy { font-size: 16px; max-width: 90%; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-word { bottom: -1vw; font-size: 33vw; }
  .hero-socials { gap: 12px; margin-top: 22px; }
  .hero-socials a { border-radius: 13px; height: 48px; width: 48px; }
  .hero-socials svg { height: 26px; width: 26px; }
  .section { padding: 78px 20px; }
  .concerts-heading { margin-bottom: 40px; }
  .concert-card { align-items: start; gap: 24px 18px; grid-template-columns: 82px 1fr; padding: 28px 0; }
  .concert-date { height: 78px; width: 78px; }
  .concert-date span { font-size: 38px; }
  .concert-date small { font-size: 9px; margin-top: 7px; }
  .concert-info h3 { font-size: 26px; }
  .concert-ticket { grid-column: 1 / -1; }
  .intro { gap: 30px; }
  .intro-main h2, .projects h2, .stages h2, .contact h2 { font-size: clamp(44px, 13vw, 62px); }
  .intro-copy { padding-top: 10px; }
  .photo-story { grid-template-columns: 1fr; grid-template-rows: 520px 340px 420px; }
  .photo-story .photo-large { grid-row: auto; }
  .photo-label { font-size: 24px; padding: 18px 20px; }
  .facts { padding: 0 20px; }
  .facts article { border-right: 1px solid var(--line); padding: 30px 24px; }
  .project { min-height: 420px; padding: 26px; }
  .album-cover { align-self: flex-start; width: min(72%, 260px); }
  .stage-grid { grid-template-columns: 1fr; }
  .stages-photo { height: 470px; margin-top: 40px; }
  .stage-grid span, .stage-grid span:nth-child(odd), .stage-grid span:nth-child(even) { border-right: 0; padding: 18px 0; }
  .timeline { gap: 30px; }
  .timeline-items article { gap: 12px; grid-template-columns: 58px 1fr; }
  .timeline-items h3 { font-size: 23px; }
  footer { grid-template-columns: 1fr; padding: 62px 20px 28px; }
}

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