:root {
  --ink: #f8fbff;
  --dark: #080812;
  --panel: #111426;
  --panel-strong: #191b32;
  --muted: #b8bfd6;
  --cream: #fff5d6;
  --custard: #ffb629;
  --berry: #ff2f9d;
  --blue: #19d8ff;
  --mint: #10e6c0;
  --cocoa: #25100a;
  --paper: #ffffff;
  --line: rgba(25, 216, 255, 0.22);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
  --glow-pink: 0 0 28px rgba(255, 47, 157, 0.34);
  --glow-blue: 0 0 28px rgba(25, 216, 255, 0.3);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 47, 157, 0.08), transparent 28%),
    linear-gradient(225deg, rgba(25, 216, 255, 0.1), transparent 34%),
    var(--dark);
  font-family: Nunito, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

a {
  color: var(--blue);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px clamp(16px, 4vw, 56px);
  background: rgba(8, 8, 18, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--custard), var(--berry) 58%, var(--blue));
  color: white;
  font-weight: 900;
  box-shadow: var(--glow-pink), inset 0 -5px rgba(0, 0, 0, 0.24);
}

.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(43, 33, 24, 0.18);
}

.brand strong {
  display: block;
  font-size: 1.2rem;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-toggle {
  border: 0;
  border-radius: 6px;
  padding: 10px 12px;
  background: var(--berry);
  color: white;
  font-weight: 800;
}

.site-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: none;
  padding: 12px 16px 18px;
  background: var(--dark);
  border-bottom: 1px solid var(--line);
}

.site-nav.open {
  display: grid;
  gap: 8px;
}

.site-nav a {
  color: white;
  text-decoration: none;
  font-weight: 800;
  padding: 8px 10px;
  border-radius: 6px;
}

.site-nav a.active,
.site-nav a:hover {
  background: rgba(25, 216, 255, 0.13);
  color: var(--blue);
  box-shadow: inset 0 0 0 1px rgba(25, 216, 255, 0.35);
}

.hero {
  min-height: 72vh;
  display: grid;
  gap: 34px;
  align-items: center;
  padding: 76px clamp(18px, 6vw, 90px) 58px;
  background:
    linear-gradient(90deg, rgba(8, 8, 18, 0.96), rgba(8, 8, 18, 0.56)),
    linear-gradient(135deg, rgba(255, 47, 157, 0.42), transparent 34%),
    linear-gradient(225deg, rgba(25, 216, 255, 0.42), transparent 38%),
    url('../images/waffle-hero.svg') center/cover;
  color: white;
  border-bottom: 1px solid var(--line);
}

.hero-content {
  max-width: 760px;
}

.hero-logo-panel {
  width: min(430px, 82vw);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(25, 216, 255, 0.38);
  box-shadow: var(--glow-blue), var(--glow-pink), 0 24px 70px rgba(0, 0, 0, 0.48);
}

.hero-logo-panel img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.eyebrow {
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.82rem;
}

.hero .eyebrow,
.cta-band .eyebrow {
  color: var(--custard);
}

h1,
h2,
h3 {
  line-height: 1.08;
  margin: 0 0 14px;
}

h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.2rem, 12vw, 7.2rem);
  text-shadow: 0 0 18px rgba(25, 216, 255, 0.3), 0 0 34px rgba(255, 47, 157, 0.25);
}

h2 {
  font-size: clamp(1.8rem, 5vw, 3rem);
}

p {
  margin: 0 0 18px;
}

.hero-copy {
  max-width: 640px;
  font-size: 1.2rem;
}

.hero-actions,
.section-heading,
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  padding: 12px 18px;
  background: linear-gradient(135deg, var(--berry), #b800ff);
  color: white;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  box-shadow: var(--glow-pink);
}

.button-secondary {
  background: linear-gradient(135deg, var(--blue), var(--mint));
  color: #031014;
  box-shadow: var(--glow-blue);
}

.button-light {
  background: white;
  color: var(--berry);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.18);
}

.button-small {
  min-height: 38px;
  padding: 8px 13px;
}

.text-link {
  font-weight: 900;
}

.section {
  padding: 54px clamp(18px, 5vw, 76px);
}

.section:nth-of-type(even) {
  background: rgba(255, 255, 255, 0.035);
}

.intro-grid,
.split-band,
.form-section {
  display: grid;
  gap: 24px;
}

.highlight-panel,
.success-box,
.error-box,
.follow-cta {
  padding: 24px;
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(25, 216, 255, 0.1), rgba(255, 47, 157, 0.08)), var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.tick-list {
  margin: 0;
  padding-left: 20px;
}

.photo-grid,
.location-grid,
.menu-grid,
.card-list {
  display: grid;
  gap: 16px;
}

.photo-grid {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.photo-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--custard), var(--berry), var(--blue));
  box-shadow: var(--shadow);
  color: white;
  text-decoration: none;
}

.photo-card img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 180ms ease;
}

.photo-card:hover img {
  transform: scale(1.04);
}

.photo-card span {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 8px 10px;
  border-radius: 6px;
  background: rgba(8, 8, 18, 0.78);
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(25, 216, 255, 0.28);
}

.placeholder-photo {
  display: grid;
  place-items: end start;
  padding: 16px;
}

.split-band {
  background:
    linear-gradient(135deg, rgba(255, 182, 41, 0.18), rgba(255, 47, 157, 0.08)),
    var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.mini-card {
  padding: 18px;
  border-radius: 8px;
  background: var(--panel-strong);
  border-left: 6px solid var(--blue);
  box-shadow: var(--glow-blue);
}

.mini-card strong,
.mini-card span,
.mini-card small {
  display: block;
}

.page-hero {
  padding: 60px clamp(18px, 5vw, 76px);
  background:
    linear-gradient(135deg, rgba(255, 47, 157, 0.22), transparent 42%),
    linear-gradient(225deg, rgba(25, 216, 255, 0.18), transparent 46%),
    var(--panel);
  border-bottom: 1px solid var(--line);
}

.page-hero.compact h1 {
  max-width: 980px;
  font-size: clamp(2.3rem, 8vw, 4.8rem);
}

.filter-bar {
  justify-content: flex-start;
  margin-bottom: 22px;
}

.filter-bar a {
  border-radius: 999px;
  padding: 8px 13px;
  background: var(--panel);
  color: white;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid var(--line);
}

.filter-bar a.active {
  background: var(--berry);
  color: white;
}

.location-grid {
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}

.location-card {
  overflow: hidden;
  border-radius: 8px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.location-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.location-card > div {
  padding: 20px;
}

.status-pill {
  display: inline-flex;
  margin-bottom: 10px;
  border-radius: 999px;
  padding: 5px 10px;
  background: var(--custard);
  color: #201104;
  font-weight: 900;
  font-size: 0.82rem;
}

.status-cancelled .status-pill {
  background: #f3c2c2;
}

.date-line {
  color: var(--blue);
  font-weight: 900;
}

.follow-cta {
  margin-top: 24px;
  background: linear-gradient(135deg, var(--mint), var(--blue));
  color: #031014;
}

.menu-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.menu-grid article {
  padding: 24px;
  border-radius: 8px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.cta-band {
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255, 47, 157, 0.92), rgba(77, 13, 146, 0.92)),
    var(--berry);
  color: white;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.cta-band p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.enquiry-form {
  display: grid;
  gap: 18px;
  width: min(920px, 100%);
}

.form-grid {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(25, 216, 255, 0.28);
  border-radius: 8px;
  padding: 12px;
  font: inherit;
  color: white;
  background: #0b0d19;
}

input::placeholder,
textarea::placeholder {
  color: #8790aa;
}

option {
  color: #111426;
}

.success-box {
  border-left: 7px solid var(--mint);
}

.error-box {
  border-left: 7px solid var(--berry);
}

.empty-state {
  padding: 26px;
  border-radius: 8px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.site-footer {
  display: grid;
  gap: 22px;
  padding: 42px clamp(18px, 5vw, 76px);
  background: #05050c;
  color: white;
  border-top: 1px solid var(--line);
}

.site-footer a {
  color: var(--blue);
}

.footer-credit {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.86);
}

.lightbox img {
  max-height: 86vh;
  border-radius: 8px;
}

.lightbox button {
  position: fixed;
  top: 18px;
  right: 18px;
  border: 0;
  border-radius: 6px;
  padding: 10px 14px;
  font-weight: 900;
}

@media (min-width: 760px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    gap: 2px;
    padding: 0;
    background: transparent;
    border: 0;
  }

  .intro-grid,
  .split-band,
  .form-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) auto;
  }

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

  .footer-credit {
    grid-column: 1 / -1;
  }
}
