:root { --white: #fffdf8; --line: rgba(255, 253, 248, .45); }
* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body { background: #302a23; color: var(--white); font-family: Arial, Helvetica, sans-serif; }
a { color: inherit; text-decoration: none; }

.landing {
  position: relative; isolation: isolate; display: grid; grid-template-rows: minmax(0, 1fr) auto;
  min-height: 100svh; overflow: hidden; padding: 112px 3.5vw 30px;
}
.background, .overlay { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; }
.background { object-fit: cover; object-position: 54% center; }
.overlay {
  z-index: -1;
  background: linear-gradient(90deg, rgba(13,11,9,.78) 0%, rgba(13,11,9,.20) 58%, rgba(13,11,9,.08) 100%),
              linear-gradient(0deg, rgba(13,11,9,.72) 0%, transparent 42%);
}
.site-header {
  position: fixed; z-index: 20; top: 0; left: 0; width: 100%; height: 58px;
  display: flex; align-items: center; background: rgba(255,255,255,.97); color: #080808;
  border-bottom: 1px solid rgba(0,0,0,.12); backdrop-filter: blur(12px);
}
.header-inner {
  width: min(1080px, calc(100% - 96px)); margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
}
.header-link {
  position: relative; display: inline-flex; align-items: center; min-height: 44px;
  padding: 0 2px; font-size: .78rem; font-weight: 700; line-height: 1;
  letter-spacing: .18em; text-transform: uppercase; white-space: nowrap;
  transition: transform .18s ease;
}
.header-link::after {
  content: ""; position: absolute; left: 2px; right: calc(2px + .18em); bottom: 8px;
  height: 2px; background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform .18s ease;
}
.header-link:hover, .header-link:focus-visible { transform: translateY(-2px); outline: none; }
.header-link:hover::after, .header-link:focus-visible::after { transform: scaleX(1); }
.header-shop { justify-self: start; }
.header-tour { justify-self: center; }
.header-tickets { justify-self: end; }
.content { min-height: 0; display: flex; align-items: flex-end; padding: 4vh 0 clamp(56px, 8vh, 88px); }
.hero-logo { width: clamp(360px, 54vw, 880px); margin: 0; line-height: 0; }
.hero-logo img { display: block; width: 100%; height: auto; filter: invert(1); }
footer { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-top: 22px; border-top: 1px solid var(--line); }
footer p { flex: none; margin: 0; font-size: .62rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.socials { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px 28px; }
.socials a { display: inline-flex; align-items: center; min-height: 36px; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.socials a:hover, .socials a:focus-visible { text-decoration: underline; text-underline-offset: 5px; outline: none; }

@media (max-width: 760px) {
  .landing { min-height: 100svh; padding: 72px 20px 20px; }
  .site-header { height: 54px; }
  .header-inner { width: calc(100% - 40px); }
  .header-link { min-height: 44px; padding: 0; font-size: .64rem; letter-spacing: .1em; }
  .header-tour { font-size: .56rem; letter-spacing: .07em; }
  .header-link::after { left: 0; right: .1em; bottom: 8px; }
  .background { object-position: 51% center; }
  .overlay { background: linear-gradient(0deg, rgba(13,11,9,.88) 0%, rgba(13,11,9,.18) 75%), linear-gradient(90deg, rgba(13,11,9,.2), transparent); }
  .content { padding: 4vh 0 48px; }
  .hero-logo { width: min(90vw, 540px); }
  footer { align-items: flex-start; flex-direction: column-reverse; gap: 14px; }
  .socials { justify-content: flex-start; gap: 13px 18px; }
  .socials a { min-height: 40px; font-size: .65rem; }
}
@media (max-height: 650px) and (min-width: 761px) { .content { padding: 4vh 0; } }
@media (prefers-reduced-motion: reduce) { * { transition: none !important; } }
