:root {
  color-scheme: dark;
  --bg: #070707;
  --bg-soft: #101010;
  --bg-lift: #171313;
  --text: #f7f0ea;
  --muted: #c9beb5;
  --quiet: #8f8580;
  --red: #ff2f35;
  --red-dark: #b9141b;
  --gold: #c9a25b;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.44);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-140%);
  background: var(--text);
  color: #111;
  padding: 0.7rem 1rem;
  border-radius: 4px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem clamp(1rem, 4vw, 2.5rem);
  background: linear-gradient(180deg, rgba(7, 7, 7, 0.9), rgba(7, 7, 7, 0.54));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
  color: var(--text);
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
}

.brand span {
  white-space: nowrap;
}

.nav {
  display: none;
  align-items: center;
  gap: 0.2rem;
  padding: 0.25rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
}

.nav a {
  min-height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.9rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 750;
  text-decoration: none;
}

.nav a:hover,
.nav a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

.hero {
  position: relative;
  min-height: 84svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__image {
  background-image: url("/assets/img/kage-club-hero-generated.jpg");
  background-size: cover;
  background-position: 56% 50%;
  transform: scale(1.02);
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.94) 0%, rgba(7, 7, 7, 0.72) 46%, rgba(7, 7, 7, 0.2) 100%),
    linear-gradient(0deg, rgba(7, 7, 7, 0.96) 0%, rgba(7, 7, 7, 0.2) 46%, rgba(7, 7, 7, 0.66) 100%);
}

.hero__content {
  position: relative;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 8rem 0 clamp(2.5rem, 8vw, 5rem);
}

.eyebrow,
.kicker {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 8ch;
  margin-bottom: 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.2rem, 15vw, 10rem);
  line-height: 0.84;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.7rem;
  font-size: 1.1rem;
  line-height: 1.15;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 720px;
  margin-bottom: 1.3rem;
  color: #fff9f2;
  font-size: clamp(1.18rem, 3.2vw, 1.85rem);
  line-height: 1.25;
  font-weight: 760;
}

.hero__lead a {
  color: #fff;
  text-decoration-color: var(--red);
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.12em;
}

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 0 0 1.4rem;
}

.hero__facts span {
  min-height: 2.25rem;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 780;
}

.hero__actions,
.social-links,
.network-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button,
.social-links a,
.network-links a {
  min-height: 3.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding: 0.9rem 1.1rem;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.button--primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 12px 34px rgba(255, 47, 53, 0.25);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.button:hover,
.button:focus-visible,
.social-links a:hover,
.social-links a:focus-visible,
.network-links a:hover,
.network-links a:focus-visible {
  transform: translateY(-1px);
}

.signal-band {
  display: grid;
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.signal-band p {
  margin: 0;
  background: #0d0d0d;
  padding: 1rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 850;
  text-align: center;
  text-transform: uppercase;
}

.section,
.venues,
.network__inner,
.site-footer {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.section,
.venues {
  padding: clamp(4rem, 9vw, 7.5rem) 0;
}

.section__header {
  max-width: 790px;
}

.section__header--wide {
  max-width: 940px;
  margin-bottom: 2rem;
}

.section__header p,
.intro__copy,
.split__content p,
.inclusive__copy,
.venue p,
.faq p,
.detail p,
.space-card p {
  color: var(--muted);
}

.intro {
  display: grid;
  gap: 2rem;
}

.intro__copy,
.inclusive__copy {
  max-width: 760px;
  font-size: 1.06rem;
}

.details {
  width: 100%;
  max-width: none;
  display: grid;
  gap: 1px;
  padding: 0;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.detail {
  background: var(--bg-soft);
  padding: 1.25rem clamp(1rem, 4vw, 2rem);
}

.detail span,
.venue span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.detail strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1.3rem;
  line-height: 1.15;
}

.detail p {
  margin-bottom: 0;
}

.split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.split__media {
  display: grid;
  place-items: center;
  min-height: 18rem;
  background:
    linear-gradient(135deg, rgba(255, 47, 53, 0.13), rgba(201, 162, 91, 0.08)),
    var(--bg-lift);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.split__media img {
  width: min(18rem, 74vw);
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.55));
}

.split__content {
  max-width: 700px;
}

.spaces {
  width: 100%;
  max-width: none;
  background:
    linear-gradient(180deg, rgba(255, 47, 53, 0.08), rgba(255, 47, 53, 0)),
    #0b0a0a;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.spaces > * {
  width: min(var(--max), calc(100% - 2rem));
  margin-left: auto;
  margin-right: auto;
}

.space-grid,
.venue-grid,
.faq-list {
  display: grid;
  gap: 1rem;
}

.space-card,
.venue {
  min-height: 100%;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  padding: 1.25rem;
}

.space-card img {
  width: 4.7rem;
  height: 4.7rem;
  margin-bottom: 1.1rem;
  border-radius: 50%;
}

.inclusive {
  display: grid;
  gap: 2rem;
}

.venues {
  width: 100%;
  max-width: none;
  padding-left: max(1rem, calc((100vw - var(--max)) / 2));
  padding-right: max(1rem, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.92), rgba(7, 7, 7, 0.55)),
    url("/assets/img/kage-club-bury-greater-manchester.jpg") center/cover;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.venue {
  background: rgba(7, 7, 7, 0.78);
  backdrop-filter: blur(14px);
}

.venue .button {
  width: 100%;
  margin-top: 0.6rem;
}

.related-venues {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(7, 7, 7, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
  backdrop-filter: blur(14px);
}

.related-venues h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
}

.related-venues p {
  margin-bottom: 0;
  color: var(--muted);
}

.related-venues__links {
  display: grid;
  gap: 0.7rem;
}

.related-venues__links a {
  min-height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  color: var(--text);
  font-weight: 900;
  text-decoration: none;
}

.related-venues__links a:not(.related-venues__feature) {
  color: var(--muted);
}

.related-venues__feature {
  background: rgba(255, 47, 53, 0.18) !important;
  border-color: rgba(255, 47, 53, 0.34) !important;
}

.related-venues__feature span {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.socials {
  display: grid;
  gap: 1.4rem;
  align-items: center;
}

.social-links a,
.network-links a {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  color: var(--text);
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-soft);
}

.faq-list summary {
  cursor: pointer;
  padding: 1.15rem 1.25rem;
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 1.25rem 1.25rem;
}

.network {
  padding: clamp(3rem, 7vw, 5rem) 0;
  background: #111;
  border-top: 1px solid var(--line);
}

.network__inner {
  display: grid;
  gap: 1.5rem;
}

.network h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
}

.network-links a {
  flex: 1 1 10rem;
  min-height: 3.6rem;
  color: var(--muted);
  font-size: 0.86rem;
  text-transform: uppercase;
}

.site-footer {
  display: grid;
  gap: 1rem;
  align-items: center;
  padding: 2rem 0;
  color: var(--quiet);
}

.brand--footer {
  color: var(--text);
}

.brand--footer img {
  width: 2.75rem;
  height: 2.75rem;
}

.site-footer p {
  margin: 0;
}

@media (min-width: 680px) {
  .nav {
    display: inline-flex;
  }

  .hero__content {
    width: min(var(--max), calc(100% - 4rem));
  }

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

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

  .space-grid,
  .venue-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .related-venues {
    grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 1fr);
    align-items: center;
  }

  .site-footer {
    grid-template-columns: auto 1fr;
  }

  .site-footer p {
    text-align: right;
  }
}

@media (min-width: 940px) {
  .hero {
    min-height: 88svh;
  }

  .intro,
  .split,
  .inclusive,
  .socials,
  .network__inner {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  }

  .space-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 430px) {
  .brand span {
    font-size: 0.9rem;
  }

  .site-header {
    padding-inline: 0.85rem;
  }

  .hero__facts span,
  .button,
  .social-links a {
    width: 100%;
  }

  .hero__lead {
    font-size: 1.12rem;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
