:root {
  --navy: #07145f;
  --blue: #0a7bdc;
  --cyan: #29c8f2;
  --yellow: #ffd928;
  --pink: #ec2386;
  --red: #f33136;
  --green: #51c940;
  --orange: #ff8a1d;
  --ink: #12163f;
  --muted: #5d627f;
  --paper: #fffdf8;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(7, 20, 95, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 8%, rgba(255, 255, 255, 0.42), transparent 24rem),
    radial-gradient(circle at 92% 16%, rgba(255, 217, 40, 0.22), transparent 25rem),
    linear-gradient(180deg, #d9f3ff 0%, #95dcff 48%, #c8efff 100%);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem clamp(1rem, 3vw, 3rem);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(7, 20, 95, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 13rem;
  font-weight: 900;
  color: var(--navy);
}

.brand img {
  width: 3.8rem;
  height: 3.8rem;
  object-fit: contain;
}

.brand span {
  max-width: 12rem;
  line-height: 1.08;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.7rem, 2vw, 1.8rem);
  font-weight: 800;
  color: var(--navy);
}

.nav-links a {
  padding: 0.35rem 0;
  border-bottom: 3px solid transparent;
}

.nav-links a:hover {
  border-color: var(--pink);
}

.phone-button,
.primary-action,
.secondary-action,
.booking-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.78rem 1.05rem;
  border: 3px solid var(--navy);
  border-radius: 8px;
  font-weight: 900;
  box-shadow: 0 6px 0 var(--navy);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.phone-button,
.primary-action,
.booking-number {
  color: var(--navy);
  background: var(--yellow);
}

.secondary-action {
  color: var(--white);
  background: var(--pink);
}

.phone-button:hover,
.primary-action:hover,
.secondary-action:hover,
.booking-number:hover {
  transform: translateY(2px);
  box-shadow: 0 4px 0 var(--navy);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 1.1fr);
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  min-height: calc(100vh - 5.4rem);
  padding: clamp(2rem, 5vw, 5rem) clamp(1rem, 4vw, 5rem) clamp(1rem, 3vw, 2rem);
  overflow: hidden;
  text-align: center;
}

.hero-copy {
  max-width: 43rem;
  justify-self: center;
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--pink);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.6rem, 4vw, 3.45rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1rem, 2vw, 2rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.45rem;
  line-height: 1.08;
}

.intro {
  max-width: 39rem;
  margin: 1.1rem 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  font-weight: 700;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.hero-logo {
  position: relative;
  align-self: end;
  width: min(30.72rem, 100%);
  aspect-ratio: 1 / 1;
  justify-self: center;
}

.hero-logo::before {
  content: none;
}

.hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin-inline: auto;
  filter: drop-shadow(0 22px 25px rgba(7, 20, 95, 0.16));
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.6rem;
  padding: 0 clamp(1rem, 4vw, 5rem) 2.5rem;
}

.quick-strip span,
.area-list span,
.area-list a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  padding: 0.65rem;
  color: var(--white);
  background: var(--navy);
  border: 3px solid var(--white);
  border-radius: 8px;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 8px 0 rgba(7, 20, 95, 0.16);
}

.quick-strip span:nth-child(2),
.area-list span:nth-child(2),
.area-list a:nth-child(2) {
  background: var(--green);
  color: var(--navy);
}

.quick-strip span:nth-child(3),
.area-list span:nth-child(3),
.area-list a:nth-child(3) {
  background: var(--pink);
}

.quick-strip span:nth-child(4),
.area-list span:nth-child(4),
.area-list a:nth-child(4) {
  background: var(--orange);
}

.quick-strip span:nth-child(5),
.area-list span:nth-child(5),
.area-list a:nth-child(5) {
  background: var(--blue);
}

.section {
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 4vw, 5rem);
}

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

.section-heading p:not(.eyebrow),
.party-copy p:not(.eyebrow),
.booking-section p {
  max-width: 48rem;
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 700;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.service-card {
  display: grid;
  grid-template-columns: minmax(14rem, 0.38fr) minmax(0, 1fr);
  align-items: stretch;
  min-height: 16rem;
  padding: 0;
  overflow: hidden;
  background: var(--white);
  border: 3px solid var(--navy);
  border-radius: 8px;
  box-shadow: 0 9px 0 var(--navy);
}

.service-image {
  display: grid;
  place-items: center;
  min-height: 16rem;
  background: linear-gradient(135deg, rgba(149, 220, 255, 0.72), rgba(255, 217, 40, 0.32));
  border-right: 3px solid var(--navy);
}

.service-image img {
  width: 100%;
  height: 100%;
  max-height: 20rem;
  object-fit: contain;
  padding: 1rem;
}

.service-content {
  padding: 1.35rem;
}

.service-card p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-weight: 700;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  margin-bottom: 1rem;
  color: var(--navy);
  background: var(--yellow);
  border: 3px solid var(--navy);
  border-radius: 50%;
  font-size: 1.45rem;
  font-weight: 900;
}

.disco {
  border-top-color: var(--blue);
}

.games {
  border-top-color: var(--green);
}

.face {
  border-top-color: var(--pink);
}

.glitter {
  border-top-color: var(--orange);
}

.balloon {
  border-top-color: var(--cyan);
}

.magic {
  border-top-color: var(--red);
}

.areas-section {
  background: linear-gradient(90deg, rgba(255, 217, 40, 0.18), rgba(41, 200, 242, 0.16));
  border-block: 1px solid rgba(7, 20, 95, 0.12);
}

.area-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.7rem;
}

.area-list span:nth-child(6),
.area-list a:nth-child(6) {
  background: var(--red);
}

.party-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.8fr);
  align-items: start;
  gap: clamp(1.5rem, 4vw, 4rem);
}

.party-points {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.party-points li {
  padding: 1rem 1.1rem;
  color: var(--navy);
  background: var(--white);
  border-left: 0.5rem solid var(--pink);
  border-radius: 8px;
  font-weight: 900;
  box-shadow: 0 8px 24px rgba(7, 20, 95, 0.1);
}

.party-points li:nth-child(2) {
  border-color: var(--blue);
}

.party-points li:nth-child(3) {
  border-color: var(--green);
}

.party-points li:nth-child(4) {
  border-color: var(--orange);
}

.booking-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin: 0 clamp(1rem, 4vw, 5rem) clamp(3rem, 6vw, 5rem);
  padding: clamp(1.5rem, 4vw, 3rem);
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.booking-section h2 {
  color: var(--white);
}

.booking-section .eyebrow {
  color: var(--yellow);
}

.booking-section p {
  color: rgba(255, 255, 255, 0.82);
}

.booking-number {
  flex: 0 0 auto;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}

.site-footer {
  padding: 1.5rem clamp(1rem, 4vw, 5rem);
  color: var(--white);
  background: var(--ink);
}

.site-footer p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
}

@media (max-width: 1050px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 820px) {
  .site-header {
    position: static;
    flex-wrap: wrap;
  }

  .brand {
    flex: 1 1 15rem;
  }

  .nav-links {
    order: 3;
    width: 100%;
  }

  .phone-button {
    flex: 0 0 auto;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 2rem;
    text-align: center;
  }

  .hero-copy {
    display: contents;
  }

  .hero-logo {
    order: 1;
    justify-self: center;
  }

  .eyebrow {
    order: 2;
  }

  h1 {
    order: 3;
  }

  .intro {
    order: 4;
  }

  .hero-actions {
    order: 5;
    justify-content: center;
  }

  .hero-copy {
    max-width: none;
  }

  .intro,
  .section-heading,
  .section-heading p:not(.eyebrow),
  .party-copy p:not(.eyebrow),
  .booking-section p {
    margin-left: auto;
    margin-right: auto;
  }

  .section-heading,
  .party-copy,
  .service-card,
  .party-points li {
    text-align: center;
  }

  .service-icon {
    margin-left: auto;
    margin-right: auto;
  }

  .service-card {
    grid-template-columns: 1fr;
  }

  .service-image {
    min-height: 13rem;
    border-right: 0;
    border-bottom: 3px solid var(--navy);
  }

  .service-image img {
    max-height: 15rem;
  }

  .hero-logo {
    align-self: center;
  }

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

  .service-grid {
    grid-template-columns: 1fr;
  }

  .party-section,
  .booking-section {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .booking-section {
    display: grid;
    justify-items: center;
  }

  .booking-number {
    width: 100%;
  }

  .phone-button,
  .primary-action,
  .booking-number {
    min-height: auto;
    padding: 0.35rem 0;
    color: var(--navy);
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    text-decoration: underline;
    text-decoration-color: var(--pink);
    text-decoration-thickness: 3px;
    text-underline-offset: 0.28rem;
  }

  .phone-button:hover,
  .primary-action:hover,
  .booking-number:hover {
    transform: none;
    box-shadow: none;
    color: var(--pink);
  }
}

@media (max-width: 560px) {
  .site-header {
    align-items: stretch;
    justify-content: center;
    text-align: center;
  }

  .brand {
    justify-content: center;
  }

  .brand img {
    width: 3.2rem;
    height: 3.2rem;
  }

  .nav-links {
    justify-content: center;
    gap: 0.5rem;
  }

  .phone-button {
    width: 100%;
  }

  .hero-actions a {
    width: 100%;
  }

  h1 {
    font-size: clamp(1.35rem, 8.5vw, 2.25rem);
  }

  .quick-strip,
  .service-grid,
  .area-list {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }
}
