@font-face {
  font-family: "Anton";
  src: url("../scraped/mccooleys.co.uk/wp-content/uploads/et-fonts/Anton-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #050505;
  --charcoal: #10110f;
  --charcoal-2: #171813;
  --emerald: #063d2d;
  --emerald-bright: #0f7a4f;
  --gold: #c9a24a;
  --gold-light: #e2c16d;
  --ivory: #f4efe3;
  --muted: #b8b2a3;
  --border: rgba(201, 162, 74, 0.28);
  --white-border: rgba(244, 239, 227, 0.16);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
  --display: "Anton", Impact, "Arial Narrow", sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  color: var(--ivory);
  background: var(--black);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
input,
select,
textarea {
  outline-offset: 4px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold-light);
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 30;
  transform: translateY(-160%);
  padding: 0.65rem 0.8rem;
  border-radius: 6px;
  color: var(--black);
  background: var(--gold-light);
  font-weight: 900;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  min-height: 78px;
  padding: 0.75rem 5vw;
  background: rgba(5, 5, 5, 0.9);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 164px;
  height: auto;
}

.primary-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.2rem;
}

.primary-nav a,
.mobile-book {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.65rem;
  border-radius: 6px;
  color: var(--ivory);
  font-size: 0.88rem;
  font-weight: 850;
  text-decoration: none;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--black);
  background: var(--gold-light);
}

.primary-nav .nav-cta,
.mobile-book {
  margin-left: 0.35rem;
  color: var(--black);
  background: var(--gold);
  box-shadow: 0 12px 30px rgba(201, 162, 74, 0.2);
}

.mobile-book {
  display: none;
  margin-left: auto;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: rgba(244, 239, 227, 0.08);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ivory);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 86svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 9rem 5vw 4rem;
  background: var(--hero-image) center/cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.42) 58%, rgba(5, 5, 5, 0.9)),
    linear-gradient(0deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.12) 52%);
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(900px, 100%);
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

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

h1,
h2,
h3,
.proof-strip strong,
.menu-stats strong,
.phone-visual strong {
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.98;
  text-wrap: balance;
}

h1 {
  max-width: 980px;
  margin-bottom: 0.9rem;
  color: var(--gold-light);
  font-size: clamp(4rem, 8.4vw, 8rem);
}

h2 {
  margin-bottom: 0.8rem;
  color: var(--ivory);
  font-size: clamp(2.35rem, 4.2vw, 4.1rem);
}

h3 {
  margin-bottom: 0.65rem;
  color: var(--gold-light);
  font-size: clamp(1.5rem, 2.1vw, 2rem);
}

.hero-sub {
  max-width: 700px;
  margin-bottom: 0.65rem;
  color: var(--ivory);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 850;
  line-height: 1.2;
}

.hero-copy {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 650;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1rem;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.94rem;
  font-weight: 950;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

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

.button-primary {
  color: var(--black);
  background: var(--gold);
  border-color: var(--gold);
}

.button-secondary {
  color: var(--ivory);
  background: rgba(244, 239, 227, 0.08);
  border-color: rgba(244, 239, 227, 0.38);
}

.button-text {
  min-height: auto;
  padding: 0;
  color: var(--gold-light);
  background: transparent;
  border: 0;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid var(--border);
  background: var(--charcoal);
}

.proof-strip div {
  min-height: 86px;
  padding: 1rem 5vw;
  border-right: 1px solid var(--border);
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  color: var(--gold-light);
  font-size: 1.18rem;
}

.proof-strip span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.section {
  padding: 5.8rem 5vw;
  background: var(--black);
}

.section-charcoal {
  background: var(--charcoal);
}

.section-emerald {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.18), rgba(5, 5, 5, 0.34)),
    var(--emerald);
}

.section-showreel {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.28), rgba(5, 5, 5, 0.6)),
    var(--charcoal-2);
}

.section-inner {
  width: min(1180px, 100%);
  margin-inline: auto;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading p:not(.eyebrow) {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.06rem;
}

.split,
.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 2rem;
  align-items: start;
}

.venue-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.venue-choice,
.feature-card,
.event-card,
.info-panel,
.phone-visual,
.booking-type,
.booking-form,
.product-card,
details {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(244, 239, 227, 0.055);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.22);
}

.venue-choice {
  min-height: 560px;
  display: grid;
  align-content: end;
  gap: 1.25rem;
  padding: 1.25rem;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.08), rgba(5, 5, 5, 0.86)),
    url("../scraped/mccooleys.co.uk/wp-content/uploads/2024/10/The-Hatch-Dancefloor.png") center/cover;
}

.venue-choice.mathew-street {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.08), rgba(5, 5, 5, 0.86)),
    url("../scraped/mccooleys.co.uk/wp-content/uploads/2024/10/The-Hatch-Dancefloor.png") center/cover;
}

.venue-choice h3 {
  max-width: 520px;
  color: var(--ivory);
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.venue-choice ul,
.statement-list {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.venue-choice li,
.statement-list li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--ivory);
  font-weight: 850;
}

.venue-choice li::before,
.statement-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--gold);
}

.feature-grid,
.event-grid,
.booking-type-grid,
.media-grid,
.gallery-strip {
  display: grid;
  gap: 1rem;
}

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

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

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

.showreel-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 2rem;
  align-items: center;
}

.showreel-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0.75rem 0 1.35rem;
}

.showreel-points span {
  padding: 0.48rem 0.68rem;
  border: 1px solid rgba(226, 193, 109, 0.28);
  border-radius: 999px;
  color: var(--ivory);
  background: rgba(244, 239, 227, 0.06);
  font-size: 0.88rem;
  font-weight: 900;
}

.video-panel {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(244, 239, 227, 0.055);
  box-shadow: var(--shadow);
}

.video-panel video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--charcoal);
}

.video-panel-copy {
  padding: 1rem;
}

.video-panel-copy h3 {
  margin-bottom: 0.35rem;
}

.video-panel-copy p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.media-card-grid,
.media-card-stack {
  display: grid;
  gap: 1rem;
}

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

.media-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(244, 239, 227, 0.055);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.22);
}

.media-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.media-card div {
  padding: 1rem;
}

.media-card h3 {
  margin-bottom: 0.35rem;
  color: var(--ivory);
}

.media-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.feature-card,
.event-card,
.info-panel,
.booking-type {
  padding: 1.15rem;
}

.feature-card span,
.event-card span {
  display: block;
  min-height: 1rem;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.feature-card p,
.event-card p,
.info-panel p,
.booking-type span,
details p {
  color: var(--muted);
}

.feature-card a,
.event-card a,
.info-panel a {
  color: var(--gold-light);
  font-weight: 950;
}

.loyalty-panel {
  background:
    linear-gradient(90deg, rgba(6, 61, 45, 0.95), rgba(5, 5, 5, 0.92)),
    url("../scraped/mccooleys.co.uk/wp-content/uploads/2024/10/Hey-Liverpool-Muted-Background-Large.png") center/cover;
}

.benefit-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1rem 0 1.35rem;
}

.benefit-pills span {
  padding: 0.45rem 0.65rem;
  border: 1px solid rgba(244, 239, 227, 0.2);
  border-radius: 999px;
  color: var(--ivory);
  background: rgba(5, 5, 5, 0.24);
  font-size: 0.88rem;
  font-weight: 850;
}

.phone-visual {
  min-height: 420px;
  display: grid;
  align-content: end;
  justify-items: start;
  gap: 0.5rem;
  overflow: hidden;
  padding: 1.1rem;
  background: var(--charcoal-2);
}

.phone-visual img {
  width: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: 6px;
  opacity: 0.86;
}

.phone-visual strong {
  color: var(--gold-light);
  font-size: 4.4rem;
}

.phone-visual span {
  color: var(--ivory);
  font-weight: 900;
}

.media-grid.four,
.gallery-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-strip {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.media-grid img,
.gallery-strip img,
.feature-image {
  width: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.gallery-strip img {
  aspect-ratio: 1;
  min-height: auto;
}

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

.event-card {
  display: grid;
  min-height: 220px;
  align-content: space-between;
}

.event-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 0.85rem;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.filters label,
.booking-form label,
.search-label {
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 850;
}

.filters select,
.booking-form input,
.booking-form select,
.booking-form textarea,
.menu-search {
  width: 100%;
  min-height: 46px;
  padding: 0.75rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--ivory);
  background: rgba(5, 5, 5, 0.55);
}

.filters select {
  min-width: 220px;
}

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

.booking-type {
  min-height: 160px;
  color: var(--ivory);
  text-align: left;
  cursor: pointer;
}

.booking-type strong {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
}

.booking-type.is-selected {
  border-color: var(--gold-light);
  background: rgba(201, 162, 74, 0.12);
}

.booking-form {
  padding: 1.2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.booking-form label {
  margin-bottom: 0.8rem;
}

.checkbox-line {
  display: flex !important;
  align-items: flex-start;
  gap: 0.6rem;
}

.checkbox-line input {
  width: auto;
  min-height: auto;
  margin-top: 0.35rem;
}

.privacy-line,
.todo-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.form-status {
  min-height: 1.4rem;
  margin: 0.85rem 0 0;
  color: var(--gold-light);
  font-weight: 950;
}

details {
  margin-bottom: 0.75rem;
  padding: 1rem;
}

summary {
  color: var(--gold-light);
  cursor: pointer;
  font-weight: 950;
}

.info-panel h2 {
  font-size: 2rem;
}

.menu-layout {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.menu-intro {
  position: sticky;
  top: 100px;
}

.menu-stats {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.25rem 0;
  padding: 0.9rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(244, 239, 227, 0.06);
}

.menu-stats strong {
  color: var(--gold-light);
  font-size: 2.45rem;
}

.menu-stats span {
  color: var(--muted);
  font-weight: 850;
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.menu-tab {
  min-height: 42px;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--ivory);
  background: rgba(244, 239, 227, 0.06);
  font-size: 0.9rem;
  font-weight: 900;
  cursor: pointer;
}

.menu-tab[aria-selected="true"] {
  color: var(--black);
  background: var(--gold);
}

.menu-results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.product-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  min-height: 150px;
  overflow: hidden;
}

.product-card.no-image {
  grid-template-columns: 1fr;
}

.product-card img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
  background: var(--emerald);
}

.product-body {
  display: grid;
  gap: 0.45rem;
  align-content: start;
  padding: 0.9rem;
}

.product-title-row {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
}

.product-title-row h3 {
  margin: 0;
  color: var(--ivory);
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 950;
  line-height: 1.18;
}

.product-title-row span {
  color: var(--gold-light);
  font-weight: 950;
  white-space: nowrap;
}

.product-card p,
.empty-state {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.site-footer {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 2rem;
  padding: 3rem 5vw 5rem;
  background: #000000;
  border-top: 1px solid var(--border);
}

.footer-brand img {
  width: 160px;
  margin-bottom: 1rem;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.footer-grid h2 {
  margin-bottom: 0.75rem;
  color: var(--gold-light);
  font-family: var(--body);
  font-size: 0.84rem;
  font-weight: 950;
  line-height: 1.3;
  text-transform: uppercase;
}

.footer-grid a {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--muted);
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--gold-light);
}

.sticky-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 15;
  display: none;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.sticky-cta a {
  min-width: 96px;
  padding: 0.8rem 0.95rem;
  color: var(--ivory);
  font-weight: 950;
  text-align: center;
  text-decoration: none;
  border-right: 1px solid var(--border);
}

.sticky-cta a:first-child {
  color: var(--black);
  background: var(--gold);
}

.sticky-cta a:last-child {
  border-right: 0;
}

@media (max-width: 1180px) {
  .primary-nav a {
    font-size: 0.82rem;
    padding-inline: 0.48rem;
  }

  .event-grid,
  .booking-type-grid,
  .media-grid.four,
  .gallery-strip,
  .media-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 940px) {
  body.has-scrolled .sticky-cta {
    display: flex;
  }

  .site-header {
    grid-template-columns: auto 1fr auto auto;
    min-height: 70px;
  }

  .brand img {
    width: 138px;
  }

  .mobile-book,
  .nav-toggle {
    display: inline-flex;
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    top: 70px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 5vw 1.25rem;
    background: rgba(5, 5, 5, 0.98);
    border-bottom: 1px solid var(--border);
  }

  body.nav-open .primary-nav {
    display: flex;
  }

  .primary-nav a {
    min-height: 48px;
    justify-content: flex-start;
    padding-inline: 0.8rem;
    font-size: 1rem;
  }

  .primary-nav .nav-cta {
    margin-left: 0;
  }

  .hero {
    min-height: 78svh;
    padding-top: 7.5rem;
  }

  .proof-strip,
  .venue-choice-grid,
  .split,
  .booking-layout,
  .showreel-grid,
  .menu-layout,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .feature-grid.six,
  .feature-grid.compact,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-intro {
    position: static;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 3.45rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero {
    min-height: auto;
    padding-bottom: 3rem;
  }

  .hero-sub {
    font-size: 1.28rem;
  }

  .section {
    padding-block: 4rem;
  }

  .venue-choice {
    min-height: 430px;
  }

  .feature-grid,
  .feature-grid.six,
  .feature-grid.compact,
  .event-grid,
  .booking-type-grid,
  .media-grid.four,
  .gallery-strip,
  .media-card-grid,
  .footer-grid,
  .form-grid,
  .menu-results,
  .product-card {
    grid-template-columns: 1fr;
  }

  .product-card img {
    aspect-ratio: 16 / 10;
    min-height: auto;
  }

  .video-panel video {
    aspect-ratio: 4 / 3;
  }

  .filters {
    display: grid;
  }

  .filters select {
    min-width: 0;
  }

  .site-footer {
    padding-bottom: 6rem;
  }

  .sticky-cta {
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
  }

  .sticky-cta a {
    flex: 1;
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }
}
