:root {
  --font-body: "Nunito Sans";
  --font-heading: "Poppins";
  --navy: #020817;
  --panel: #192130;
  --pink: #dc18ae;
  --lilac: #db79de;
  --coral: #f79996;
  --blue: #6b9ff5;
  --cream: #fff8fc;
  --text: #293149;
  --muted: #6d7488;
  --gradient: linear-gradient(135deg, #dc18ae 0%, #f79996 100%);
}

/* Youth club gaming events page */
.youthHero {
  padding: 78px 0 105px;
  overflow: hidden;
  background: linear-gradient(125deg, #fff7fc 0%, #f7f3ff 100%);
}

.youthHeroGrid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1.05fr);
  align-items: center;
  gap: 80px;
}

.youthHero h1 {
  margin: 14px 0 26px;
  color: var(--navy);
  font: 700 clamp(48px, 5vw, 76px) / 1.02 var(--font-heading);
  letter-spacing: -0.055em;
}

.youthHero h1 span,
.youthIntro h2 span,
.youthParticipation h2 span {
  color: var(--pink);
}

.youthLead {
  max-width: 650px;
  color: #697186;
  font-size: 18px;
  line-height: 1.75;
}

.youthTextLink {
  margin-left: 12px;
}

.youthHeroVisual {
  position: relative;
  min-height: 625px;
}

.youthHeroVisual figure {
  position: absolute;
  inset: 0 20px 55px 0;
  margin: 0;
  overflow: hidden;
  border-radius: 100px 34px 100px 34px;
  box-shadow: 0 28px 65px rgba(34, 23, 59, 0.18);
}

.youthHeroVisual figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.youthStat {
  position: absolute;
  right: -18px;
  bottom: 5px;
  display: flex;
  max-width: 310px;
  align-items: center;
  gap: 15px;
  padding: 20px 24px;
  border: 7px solid #fff;
  border-radius: 23px;
  background: var(--gradient);
  color: #fff;
}

.youthStat b {
  white-space: nowrap;
  font: 800 28px/1 var(--font-heading);
}

.youthStat span {
  font-size: 13px;
  line-height: 1.35;
}

.youthNote {
  position: absolute;
  left: -28px;
  bottom: 36px;
  display: flex;
  max-width: 265px;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border: 6px solid #fff;
  border-radius: 21px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(34, 23, 59, 0.15);
}

.youthNote > span {
  font-size: 25px;
}

.youthNote p {
  margin: 0;
  color: #687085;
  font-size: 12px;
  line-height: 1.4;
}

.youthNote b {
  display: block;
  color: var(--navy);
  font-size: 14px;
}

.youthIntro {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: end;
  gap: 100px;
  padding-top: 115px;
  padding-bottom: 115px;
}

.youthIntro h2,
.youthParticipation h2 {
  margin: 12px 0 0;
  color: var(--navy);
  font: 700 clamp(42px, 4.4vw, 63px) / 1.08 var(--font-heading);
  letter-spacing: -0.045em;
}

.youthIntro > div:last-child p,
.youthParticipation > div > p:not(.kicker) {
  color: #687085;
  font-size: 17px;
  line-height: 1.75;
}

.youthFormats {
  padding: 110px 0;
  background: var(--navy);
}

.youthFormats .sectionTitle h2 {
  color: #fff;
}

.youthFormatGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.youthFormatGrid article {
  display: flex;
  min-height: 340px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
}

.youthFormatGrid article > span {
  color: var(--pink);
  font: 800 28px var(--font-heading);
}

.youthFormatGrid h3 {
  margin: 42px 0 13px;
  color: #fff;
  font: 700 21px/1.35 var(--font-heading);
}

.youthFormatGrid p {
  margin: 0 0 24px;
  color: #abb4c8;
  font-size: 16px;
  line-height: 1.65;
}

.youthFormatGrid article > b {
  margin-top: auto;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.youthParticipation {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 90px;
  padding-top: 120px;
  padding-bottom: 120px;
}

.youthParticipation figure {
  height: 590px;
  margin: 0;
  overflow: hidden;
  border-radius: 35px 90px 35px 90px;
  box-shadow: 0 25px 55px rgba(28, 20, 53, 0.16);
}

.youthParticipation figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.youthPlanning {
  background: var(--navy);
}

.youthProcess,
.youthFaq {
  padding-top: 115px;
  padding-bottom: 115px;
}

@media (max-width: 1100px) {
  .youthFormatGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1000px) {
  .youthHeroGrid,
  .youthIntro,
  .youthParticipation {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .youthHeroVisual {
    min-height: 560px;
  }

  .youthParticipation figure {
    height: 520px;
  }
}

@media (max-width: 600px) {
  .youthHero {
    padding: 55px 0 75px;
  }

  .youthHero h1 {
    font-size: 44px;
  }

  .youthLead {
    font-size: 16px;
  }

  .youthTextLink {
    margin-left: 0;
  }

  .youthHero .actions {
    align-items: flex-start;
  }

  .youthHeroVisual {
    min-height: 440px;
  }

  .youthHeroVisual figure {
    inset: 0 0 50px;
  }

  .youthNote {
    display: none;
  }

  .youthStat {
    right: -4px;
    max-width: 245px;
    padding: 14px 17px;
  }

  .youthStat b {
    font-size: 23px;
  }

  .youthIntro,
  .youthParticipation,
  .youthProcess,
  .youthFaq {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .youthFormats {
    padding: 80px 0;
  }

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

  .youthFormatGrid article {
    min-height: 0;
    padding: 25px;
  }

  .youthFormatGrid h3 {
    margin-top: 25px;
  }

  .youthParticipation figure {
    height: 390px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--font-body), sans-serif;
  background: #fff;
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wrap {
  width: min(1180px, calc(100% - 48px));
  margin: auto;
}

.offer {
  height: 36px;
  background: var(--gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 12px;
  letter-spacing: 0.05em;
}

.offer b {
  font-weight: 800;
}

header {
  height: 92px;
  background: #fff;
  display: flex;
  align-items: center;
  padding: 0 max(3.5vw, 25px);
  gap: 35px;
  position: relative;
  z-index: 20;
  box-shadow: 0 5px 30px rgba(25, 33, 48, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 230px;
}

.brandIcon {
  width: 55px;
  height: 55px;
  border-radius: 18px;
  background: var(--gradient);
  color: #fff;
  display: grid;
  place-items: center;
  font: 800 21px var(--font-heading);
  transform: rotate(-4deg);
  box-shadow: 0 8px 18px rgba(220, 24, 174, 0.25);
}

.brandIcon span {
  font-size: 14px;
  margin: 0 1px;
}

.brand > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand b {
  font: 700 17px var(--font-heading);
  color: var(--navy);
}

.brand small {
  margin-top: 6px;
  color: var(--pink);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.34em;
}

header nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: auto;
}

header nav a {
  font-size: 14px;
  font-weight: 700;
  color: #3b4255;
  transition: 0.2s;
}

header nav a:hover {
  color: var(--pink);
}

/* Shared desktop dropdown navigation */
.navDropdown {
  position: relative;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.navDropdown > a {
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.navDropdown > a span {
  color: var(--pink);
  line-height: 1;
  transition: transform 0.2s ease;
}

.navDropdown::after {
  position: absolute;
  top: 100%;
  left: -16px;
  width: calc(100% + 32px);
  height: 18px;
  content: "";
}

header nav .subMenu {
  position: absolute;
  z-index: 100;
  top: calc(100% + 16px);
  left: -20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: max-content;
  min-width: 250px;
  padding: 12px;
  border: 1px solid #f0ddea;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 20px 45px rgba(25, 33, 48, 0.15);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    transform 0.2s ease;
}

header nav .subMenu a {
  display: block;
  width: 100%;
  padding: 10px 12px;
  border-radius: 9px;
  color: #3b4255;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  white-space: nowrap;
}

header nav .subMenu a:hover,
header nav .subMenu a:focus-visible {
  color: var(--pink);
  background: #fff0fa;
}

.navDropdown:hover .subMenu,
.navDropdown:focus-within .subMenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.navDropdown:hover > a span,
.navDropdown:focus-within > a span {
  transform: rotate(180deg);
}

.headActions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.cart {
  font-size: 12px;
  font-weight: 700;
  color: #656d82;
  white-space: nowrap;
}

.menu {
  display: none;
  border: 0;
  background: var(--navy);
  color: #fff;
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 800;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 15px 24px;
  border-radius: 14px;
  background: var(--gradient);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(220, 24, 174, 0.2);
  transition: 0.25s;
  border: 2px solid transparent;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(220, 24, 174, 0.28);
}

.btn.small {
  padding: 12px 20px;
  border-radius: 12px;
  white-space: nowrap;
}

.btn.outline {
  background: #fff;
  color: var(--pink);
  border-color: var(--lilac);
  box-shadow: none;
}

.btn.outline.light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.hero {
  min-height: 660px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 78px max(6vw, 45px);
  background: linear-gradient(115deg, #fff 0%, #fff7fd 65%, #faeafa 100%);
  overflow: hidden;
  position: relative;
}

.heroCopy {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.kicker {
  color: var(--pink);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.hero h1,
.about h2,
.sectionTitle h2,
.gallery h2,
.faq h2,
.contact h2 {
  font: 700 clamp(50px, 5.3vw, 78px) / 1.08 var(--font-heading);
  letter-spacing: -0.045em;
  color: var(--navy);
  margin: 0 0 23px;
}

.hero h1 em,
.about h2 span,
.sectionTitle h2 span,
.gallery h2 span,
.faq h2 span,
.contact h2 span {
  font-style: normal;
  color: var(--pink);
}

.heroCopy > p:not(.kicker) {
  font-size: 18px;
  line-height: 1.75;
  color: #636b80;
  max-width: 590px;
}

.actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.rating {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: start;
  column-gap: 12px;
  margin-top: 33px;
  align-items: center;
}

.rating span {
  color: #f3a707;
  letter-spacing: 2px;
}

.rating b {
  font-size: 18px;
  color: var(--navy);
}

.rating small {
  grid-column: 2;
  color: #8a91a2;
  font-size: 18px;
}

.heroMedia {
  height: 505px;
  position: relative;
  z-index: 2;
}

.photoMain {
  position: absolute;
  right: 0;
  top: 5px;
  width: 80%;
  height: 430px;
  border-radius: 45% 45% 30% 45%;
  overflow: hidden;
  border: 9px solid #fff;
  box-shadow: 0 25px 60px rgba(83, 30, 86, 0.2);
}

.photoSmall {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 44%;
  height: 210px;
  border-radius: 50% 35% 50% 35%;
  overflow: hidden;
  border: 8px solid #fff;
  box-shadow: 0 20px 35px rgba(83, 30, 86, 0.2);
}

.players {
  position: absolute;
  right: -5px;
  bottom: 5px;
  background: var(--pink);
  color: #fff;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(6deg);
  border: 7px solid #fff;
  box-shadow: 0 18px 35px rgba(220, 24, 174, 0.3);
}

.players strong {
  font: 700 20px var(--font-heading);
}

.players span {
  font-size: 12px;
}

.bubble {
  position: absolute;
  border-radius: 50%;
}

.bubbleOne {
  width: 220px;
  height: 220px;
  background: var(--lilac);
  opacity: 0.23;
  right: 34%;
  top: -100px;
}

.bubbleTwo {
  width: 95px;
  height: 95px;
  background: var(--coral);
  opacity: 0.5;
  left: -30px;
  bottom: 50px;
}

.plus {
  position: absolute;
  color: var(--pink);
  font: 600 70px var(--font-heading);
  left: 47%;
  bottom: 15px;
  transform: rotate(18deg);
  opacity: 0.25;
}

.dots {
  position: absolute;
  width: 110px;
  height: 65px;
  right: 2%;
  top: 0;
  background-image: radial-gradient(var(--pink) 2px, transparent 3px);
  background-size: 15px 15px;
  opacity: 0.35;
}

.quickFacts {
  min-height: 118px;
  background: var(--navy);
  color: #fff;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 23px max(8vw, 55px);
  gap: 30px;
}

.quickFacts > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.quickFacts > div:last-child {
  border: 0;
}

.quickFacts > div > span {
  width: 50px;
  height: 50px;
  border-radius: 17px;
  background: rgba(219, 121, 222, 0.17);
  display: grid;
  place-items: center;
  font-size: 22px;
}

.quickFacts p {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.quickFacts b {
  font: 600 15px var(--font-heading);
}

.quickFacts small {
  color: #abb3ca;
  margin-top: 5px;
  font-size: 11px;
}

.about {
  padding-top: 120px;
  padding-bottom: 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 100px;
}

.aboutMedia {
  height: 520px;
  position: relative;
}

.imageCard {
  width: 86%;
  height: 480px;
  border-radius: 38px 90px 38px 90px;
  overflow: hidden;
  box-shadow: 0 25px 55px rgba(28, 20, 53, 0.18);
}

.experienceBadge {
  position: absolute;
  right: 0;
  bottom: -3px;
  background: var(--gradient);
  color: #fff;
  border: 9px solid #fff;
  border-radius: 28px;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 11px;
  box-shadow: 0 18px 35px rgba(220, 24, 174, 0.2);
}

.experienceBadge b {
  font: 800 38px var(--font-heading);
}

.experienceBadge span {
  font-size: 11px;
  line-height: 1.35;
}

.squiggle {
  position: absolute;
  right: 5%;
  top: -35px;
  color: var(--pink);
  font-size: 45px;
  transform: rotate(12deg);
}

.about h2 {
  font-size: clamp(43px, 4.3vw, 63px);
}

.copy > p:not(.kicker) {
  color: #676f83;
  line-height: 1.75;
  font-size: 16px;
}

.textLink {
  display: inline-block;
  margin-top: 17px;
  color: var(--pink);
  font-weight: 600;
  font-size: 13px;
}

.textLink b {
  margin-left: 7px;
}

.packageSection {
  position: relative;
  background: var(--navy);
  color: #fff;
  padding: 110px 0;
  overflow: hidden;
}

.packageBlob {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--pink);
  filter: blur(1px);
  opacity: 0.1;
  right: -200px;
  top: -220px;
}

.sectionTitle {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 55px;
  position: relative;
}

.sectionTitle h2 {
  font-size: clamp(42px, 4.5vw, 64px);
  color: inherit;
}

.sectionTitle > p:last-child {
  color: #aeb6cb;
  line-height: 1.7;
}

.packageGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.package {
  background: #fff;
  color: var(--text);
  border-radius: 25px;
  padding: 30px;
  position: relative;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
  border-top: 6px solid var(--pink);
}

.package.purple {
  border-color: var(--lilac);
}

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

.popular {
  position: absolute;
  right: 22px;
  top: -17px;
  background: var(--gradient);
  color: #fff;
  padding: 8px 13px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.packageTop {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.controllerIcon {
  min-width: 53px;
  height: 53px;
  border-radius: 17px;
  background: #fff0fb;
  display: grid;
  place-items: center;
  font-size: 22px;
}

.package h3 {
  font: 700 22px var(--font-heading);
  color: var(--navy);
  margin: 2px 0 8px;
  text-transform: capitalize;
}

.packageTop p {
  font-size: 12px;
  color: #72798b;
  line-height: 1.5;
  margin: 0;
}

.price {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 25px 0 15px;
  padding-bottom: 18px;
  border-bottom: 1px solid #ececf2;
}

.price b {
  font: 800 40px var(--font-heading);
  color: var(--pink);
}

.price span {
  font-size: 10px;
  color: #858b9a;
  line-height: 1.4;
}

.package ul {
  list-style: none;
  padding: 0;
  margin: 15px 0 25px;
}

.package li {
  padding: 7px 0;
  font-size: 12px;
  color: #5e6678;
}

.package li span {
  color: var(--pink);
  font-weight: 900;
  margin-right: 9px;
}

.cardButton {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff0fb;
  color: var(--pink);
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 12px;
  font-weight: 900;
}

.more {
  margin-top: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.more p {
  font-size: 13px;
  color: #aeb6cb;
}

.more p b {
  color: #fff;
}

.how {
  padding-top: 115px;
  padding-bottom: 115px;
}

.sectionTitle.left {
  text-align: left;
  margin: 0 0 45px;
}

.sectionTitle.left h2 {
  color: var(--navy);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.steps article {
  background: var(--cream);
  border: 1px solid #f1d9ec;
  border-radius: 25px;
  padding: 30px;
  position: relative;
}

.steps article > b {
  position: absolute;
  right: 25px;
  top: 12px;
  font: 800 65px var(--font-heading);
  color: var(--lilac);
  opacity: 0.22;
}

.steps article > span {
  display: inline-block;
  background: var(--gradient);
  color: #fff;
  padding: 7px 12px;
  border-radius: 40px;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.steps h3 {
  font: 700 21px var(--font-heading);
  color: var(--navy);
  margin: 23px 0 9px;
}

.steps p {
  font-size: 13px;
  line-height: 1.65;
  color: #71798c;
}

.partySection {
  padding: 110px 0;
  background: #fff6fc;
}

.partySection .sectionTitle h2 {
  color: var(--navy);
}

.partyGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.partyGrid a {
  background: #fff;
  border: 1px solid #efd9eb;
  padding: 35px;
  border-radius: 28px;
  transition: 0.25s;
  position: relative;
  overflow: hidden;
}

.partyGrid a:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(112, 48, 104, 0.12);
  border-color: var(--lilac);
}

.partyGrid a:after {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--lilac);
  opacity: 0.11;
  right: -35px;
  top: -35px;
}

.partyIcon {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  background: #fff0fa;
  display: grid;
  place-items: center;
  font-size: 26px;
}

.partyGrid h3 {
  font: 700 22px var(--font-heading);
  color: var(--navy);
  margin: 23px 0 10px;
}

.partyGrid p {
  color: #71798b;
  line-height: 1.65;
  font-size: 13px;
}

.partyGrid b {
  display: block;
  color: var(--pink);
  font-size: 12px;
  margin-top: 25px;
}

.gallery {
  padding-top: 125px;
  padding-bottom: 125px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 90px;
}

.gallery h2 {
  font-size: clamp(43px, 4.5vw, 63px);
}

.galleryCopy > p:not(.kicker) {
  line-height: 1.75;
  color: #6d7588;
  margin-bottom: 28px;
}

.galleryImages {
  height: 540px;
  position: relative;
}

.galleryImages img {
  position: absolute;
  box-shadow: 0 22px 50px rgba(28, 20, 53, 0.2);
}

.g1 {
  width: 68%;
  height: 410px;
  right: 0;
  top: 0;
  border-radius: 60px 28px 60px 28px;
}

.g2 {
  width: 50%;
  height: 280px;
  left: 0;
  bottom: 0;
  border-radius: 28px 60px 28px 60px;
  border: 8px solid #fff;
}

.circleText {
  position: absolute;
  right: 3%;
  bottom: 2%;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--pink);
  border: 6px solid #fff;
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  font: 800 10px var(--font-heading);
  letter-spacing: 0.12em;
  padding: 18px;
  transform: rotate(8deg);
}

.reviews {
  padding: 110px 0;
  background: linear-gradient(135deg, #dc18ae, #9c36ca);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.reviewBlob {
  position: absolute;
  width: 420px;
  height: 420px;
  border: 80px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  left: -230px;
  bottom: -230px;
}

.reviews .sectionTitle h2 {
  color: #fff;
}

.reviews .sectionTitle h2 span {
  color: #ffd7f1;
}

.reviews .kicker {
  color: #ffd7f1;
}

.reviewGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.reviewGrid blockquote {
  margin: 0;
  background: #fff;
  color: var(--text);
  padding: 30px;
  border-radius: 25px;
}

.reviewGrid blockquote > div {
  color: #efa910;
  letter-spacing: 2px;
}

.reviewGrid blockquote > p {
  font-size: 14px;
  line-height: 1.7;
  color: #60687b;
  min-height: 120px;
}

.reviewGrid footer {
  border-top: 1px solid #ececf2;
  padding-top: 17px;
  display: flex;
  flex-direction: column;
}

.reviewGrid footer b {
  font-size: 13px;
  color: var(--navy);
}

.reviewGrid footer span {
  font-size: 10px;
  color: #959bad;
  margin-top: 3px;
}

.textLink.white {
  display: block;
  text-align: center;
  color: #fff;
  margin-top: 35px;
}

.faq {
  padding-top: 120px;
  padding-bottom: 120px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
}

.faq h2 {
  font-size: clamp(42px, 4.2vw, 61px);
}

.faqIntro > p:not(.kicker) {
  color: #70788b;
  line-height: 1.7;
  margin-bottom: 27px;
}

.questions details {
  border-bottom: 1px solid #e7d9e5;
  padding: 22px 4px;
}

.questions summary {
  list-style: none;
  cursor: pointer;
  font: 600 17px var(--font-heading);
  color: var(--navy);
  display: flex;
  justify-content: space-between;
}

.questions summary span {
  color: var(--pink);
  font-size: 24px;
}

.questions details p {
  color: #737b8d;
  font-size: 13px;
  line-height: 1.7;
  padding-right: 40px;
}

.contact {
  background: var(--gradient);
  color: #fff;
  padding: 80px 0;
}

.contactInner {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: center;
  gap: 80px;
}

.contact h2 {
  font-size: clamp(40px, 4vw, 58px);
  color: #fff;
}

.contact h2 span {
  color: #fff;
}

.contact .kicker {
  color: #ffe6f7;
}

.contactInner > div > p:last-child {
  color: #ffe7f5;
  line-height: 1.7;
}

.contactButtons {
  display: flex;
  align-items: center;
  gap: 25px;
}

.whiteBtn {
  background: #fff;
  color: var(--pink);
  box-shadow: 0 12px 25px rgba(87, 13, 73, 0.2);
}

.phone {
  display: flex;
  flex-direction: column;
}

.phone small {
  font-size: 10px;
  color: #ffe5f5;
}

.phone b {
  font: 700 18px var(--font-heading);
  margin-top: 3px;
}

.siteFooter {
  background: var(--navy);
  color: #fff;
  padding: 80px 0 20px;
}

.footerGrid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.9fr 1.1fr;
  gap: 65px;
}

.footerBrand .brand b {
  color: #fff;
}

.footerBrand b {
  color: #fff;
}

.footerGrid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footerGrid h3 {
  font: 600 16px var(--font-heading);
  margin: 5px 0 13px;
}

.footerGrid p,
.footerGrid a:not(.brand) {
  color: #a8b0c7;
  font-size: 12px;
  line-height: 1.65;
}

.footerGrid a:hover {
  color: var(--lilac);
}

.footerSocials {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
}

.footerSocials a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #858da2;
  border: 1px solid rgba(168, 176, 199, 0.28);
  border-radius: 50%;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.footerSocials svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.footerSocials a:hover,
.footerSocials a:focus-visible {
  color: #b3bacb;
  border-color: #b3bacb;
  transform: translateY(-2px);
}

.footerBottom {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  margin-top: 55px;
  padding-top: 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  color: #788198;
  font-size: 16px;
  font-weight: 400;
}

.siteFooter .footerPolicies {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px 22px;
  justify-self: end;
  position: static;
  inset: auto;
  width: auto;
  margin: 0;
  text-align: right;
}

.siteFooter .footerPolicies a {
  color: #788198;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.siteFooter .footerPolicies a:hover,
.siteFooter .footerPolicies a:focus-visible {
  color: #b3bacb;
}

@media (max-width: 700px) {
  .footerBottom {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 12px;
  }

  .siteFooter .footerPolicies {
    justify-self: start;
    justify-content: flex-start;
    gap: 6px 16px;
  }
}

@media (max-width: 1000px) {
  header {
    height: 76px;
  }

  .menu {
    display: block;
    margin-left: auto;
  }

  header nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 76px;
    background: #fff;
    flex-direction: column;
    padding: 25px;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
  }

  header nav.open {
    display: flex;
  }

  .navDropdown {
    display: block;
    width: 100%;
  }

  .navDropdown::after {
    display: none;
  }

  .navDropdown > a {
    justify-content: space-between;
    width: 100%;
  }

  header nav .subMenu {
    position: static;
    width: 100%;
    min-width: 0;
    margin-top: 8px;
    padding: 8px 0 8px 14px;
    border: 0;
    border-radius: 10px;
    background: #fff6fc;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  header nav .subMenu a {
    padding: 8px 12px;
    white-space: normal;
  }

  .headActions .cart {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 70px 35px;
  }

  .heroMedia {
    height: 480px;
  }

  .quickFacts {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .quickFacts > div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 15px;
    justify-content: flex-start;
  }

  .about,
  .gallery,
  .faq {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .packageGrid,
  .partyGrid,
  .reviewGrid,
  .steps {
    grid-template-columns: 1fr;
  }

  .package.purple {
    transform: none;
  }

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

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

@media (max-width: 600px) {
  .wrap {
    width: min(100% - 30px, 1180px);
  }

  .offer {
    font-size: 9px;
  }

  header {
    padding: 0 15px;
  }

  .brand {
    min-width: 0;
  }

  .brand > span:last-child {
    display: none;
  }

  .headActions {
    display: none;
  }

  .hero {
    padding: 60px 20px 75px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 30px;
  }

  .heroMedia {
    height: 355px;
  }

  .photoMain {
    width: 88%;
    height: 300px;
  }

  .photoSmall {
    height: 150px;
  }

  .players {
    width: 95px;
    height: 95px;
  }

  .players strong {
    font-size: 15px;
  }

  .about,
  .gallery,
  .faq {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .aboutMedia {
    height: 390px;
  }

  .imageCard {
    height: 360px;
  }

  .experienceBadge {
    padding: 15px;
  }

  .experienceBadge b {
    font-size: 28px;
  }

  .packageSection,
  .partySection,
  .reviews {
    padding: 80px 0;
  }

  .more {
    flex-direction: column;
    text-align: center;
  }

  .galleryImages {
    height: 390px;
  }

  .g1 {
    height: 300px;
  }

  .g2 {
    height: 190px;
  }

  .contactButtons {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .sectionTitle h2,
  .about h2,
  .gallery h2,
  .faq h2,
  .contact h2 {
    font-size: 40px;
  }
}

/* Parties hub: uses the approved homepage design system */
.breadcrumbLine {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #858ca0 !important;
  font-size: 16px !important;
  margin: 0 0 22px !important;
}

.breadcrumbLine a {
  color: var(--pink);
}

.partiesHero .players {
  text-align: center;
}

.partyIntro {
  padding-top: 120px;
  padding-bottom: 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 100px;
}

.partyIntro h2 {
  font: 700 clamp(43px, 4.3vw, 63px) / 1.08 var(--font-heading);
  letter-spacing: -0.045em;
  color: var(--navy);
  margin: 0 0 23px;
}

.partyIntro h2 span {
  color: var(--pink);
}

.hubPartySection .sectionTitle > p:last-child {
  color: #71798b;
  font-size: 17px;
}

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

.hubPartyGrid a {
  min-height: 355px;
  display: flex;
  flex-direction: column;
}

.hubPartyGrid p {
  font-size: 16px;
}

.hubPartyGrid b {
  font-size: 16px;
  margin-top: auto;
}

.hubGallery {
  padding-top: 125px;
  padding-bottom: 125px;
}

.hubProcess .steps article {
  background: #fff;
  color: var(--text);
}

.hubProcess .sectionTitle > p:last-child {
  color: #aeb6cb;
}

.hubSteps p {
  font-size: 16px;
}

.partiesHero .kicker,
.partyIntro .kicker,
.hubPartySection .kicker,
.hubGallery .kicker,
.hubProcess .kicker,
.faq .kicker {
  font-size: 16px;
}

.partiesHero .heroCopy > p:not(.kicker):not(.breadcrumbLine),
.partyIntro .copy > p:not(.kicker),
.hubGallery .galleryCopy > p:not(.kicker),
.faqIntro > p:not(.kicker),
.questions details p {
  font-size: 17px;
}

.partiesHero .btn,
.hubGallery .btn,
.faq .btn,
.contact .btn {
  font-size: 16px;
}

.partiesHero .rating b,
.partiesHero .rating small {
  font-size: 16px;
}

.quickFacts b,
.quickFacts small {
  font-size: 16px;
}

.contact .phone small {
  font-size: 16px;
}

.siteFooter .footerGrid p,
.siteFooter .footerGrid a:not(.brand),
.siteFooter .footerBottom {
  font-size: 16px;
}

@media (max-width: 1100px) {
  .hubPartyGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partyIntro {
    gap: 60px;
  }
}

@media (max-width: 1000px) {
  .partyIntro {
    grid-template-columns: 1fr;
    gap: 60px;
    padding-top: 90px;
    padding-bottom: 90px;
  }

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

  .hubPartyGrid a {
    min-height: 300px;
  }
}

@media (max-width: 600px) {
  .partyIntro {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .partyIntro .aboutMedia {
    height: 390px;
  }

  .partyIntro h2 {
    font-size: 40px;
  }

  .hubPartyGrid a {
    min-height: 0;
  }

  .breadcrumbLine {
    font-size: 16px !important;
  }
}

/* Brand logos */
.headerLogo {
  width: 140px;
  height: auto;
  object-fit: contain;
}

.footerLogo {
  width: 150px;
  height: auto;
  object-fit: contain;
}

/* Readable package typography */
.packageTop p,
.price span,
.package li,
.cardButton,
.more p,
.popular {
  font-size: 16px;
}

.packageSection .sectionTitle > p:last-child {
  font-size: 17px;
}

/* Authority and internal-link hub */
.guideHub {
  padding: 115px 0;
  background: #fff6fc;
}

.guideHubInner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 85px;
}

.guideHubIntro h2 {
  margin: 0 0 22px;
  color: var(--navy);
  font: 700 clamp(42px, 4.2vw, 61px) / 1.08 var(--font-heading);
  letter-spacing: -0.045em;
}

.guideHubIntro > p:not(.kicker) {
  margin-bottom: 28px;
  color: #70788b;
  font-size: 17px;
  line-height: 1.7;
}

.guideHubLinks {
  display: grid;
  gap: 14px;
}

.guideHubLinks a {
  display: grid;
  grid-template-columns: 55px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 22px 25px;
  border: 1px solid #efd9eb;
  border-radius: 22px;
  background: #fff;
  transition: 0.25s;
}

.guideHubLinks a:hover {
  border-color: var(--lilac);
  box-shadow: 0 18px 38px rgba(112, 48, 104, 0.1);
  transform: translateY(-3px);
}

.guideHubLinks > a > span {
  display: grid;
  place-items: center;
  width: 55px;
  height: 55px;
  border-radius: 18px;
  background: #fff0fa;
  color: var(--pink);
  font: 800 16px var(--font-heading);
}

.guideHubLinks h3 {
  margin: 0 0 4px;
  color: var(--navy);
  font: 700 20px var(--font-heading);
}

.guideHubLinks p {
  margin: 0;
  color: #71798b;
  font-size: 16px;
}

.guideHubLinks b {
  color: var(--pink);
  font-size: 24px;
}

header nav a,
.cart,
.btn,
.textLink {
  font-size: 16px;
}

@media (max-width: 1150px) {
  .headerLogo {
    width: 190px;
  }

  header nav {
    gap: 18px;
  }
}

@media (max-width: 1000px) {
  .guideHubInner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .guideHub {
    padding: 85px 0;
  }
}

@media (max-width: 600px) {
  .headerLogo {
    width: 180px;
  }

  .footerLogo {
    width: 220px;
  }

  .guideHubLinks a {
    grid-template-columns: 48px 1fr auto;
    gap: 14px;
    padding: 18px;
  }

  .guideHubLinks > a > span {
    width: 48px;
    height: 48px;
  }
}

.footerContact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px !important;
}

.footerContact h3 {
  margin: 5px 0 12px;
}

.footerContact .footerContactItem {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  color: #a8b0c7;
  font-size: 16px;
  line-height: 1.4;
}

.footerContactIcon {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: #929bb0;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
}

.footerContactIcon svg {
  display: block;
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.footerContact a.footerContactItem:hover {
  color: #ffffff;
}

.footerContact a.footerContactItem:hover .footerContactIcon {
  color: #ffffff;
}

.packageGridSecondary {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: calc((200% - 22px) / 3);
  margin: 22px auto 0;
}

.packageGridSecondary .package {
  width: 100%;
}

@media (max-width: 1000px) {
  .packageGridSecondary {
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 22px;
  }
}




/* Kids birthday party page */
.birthdayHero {
  background: #fff6fc;
  padding: 85px 0 105px;
  overflow: hidden;
}
.birthdayHeroGrid {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: 75px;
}
.birthdayHero h1 {
  margin: 0 0 24px;
  color: var(--navy);
  font: 700 clamp(48px, 5vw, 76px) / 1.03 var(--font-heading);
  letter-spacing: -0.055em;
}
.birthdayHero h1 span,
.birthdayIntro h2 span,
.birthdayGuidance h2 span {
  color: var(--pink);
}
.birthdayLead {
  max-width: 660px;
  color: #697186;
  font-size: 18px;
  line-height: 1.75;
}
.birthdayTextLink {
  margin: 0 0 0 12px;
}

.birthdayHeroMedia {
  position: relative;
  height: 610px;
}
.birthdayHeroImage {
  position: absolute;
  inset: 0 30px 55px 45px;
  overflow: hidden;
  border-radius: 80px 35px 100px 40px;
  box-shadow: 0 28px 65px rgba(34, 23, 59, 0.18);
}
.birthdayHeroImage img,
.birthdayMiniImage img,
.birthdayIntroMedia img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.birthdayMiniImage {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 210px;
  height: 155px;
  overflow: hidden;
  border: 8px solid #fff;
  border-radius: 28px;
  box-shadow: 0 15px 35px rgba(34, 23, 59, 0.18);
}
.birthdayHeroBadge {
  position: absolute;
  right: 0;
  bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 22px;
  color: #fff;
  background: var(--gradient);
  border: 7px solid #fff;
  border-radius: 24px;
}
.birthdayHeroBadge b {
  font: 800 25px var(--font-heading);
}
.birthdayHeroBadge span {
  font-size: 12px;
  line-height: 1.35;
}
.birthdayIntro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 90px;
  padding-top: 120px;
  padding-bottom: 120px;
}
.birthdayIntroMedia {
  height: 570px;
  overflow: hidden;
  border-radius: 38px 90px 38px 90px;
  box-shadow: 0 25px 55px rgba(28, 20, 53, 0.16);
}
.birthdayIntro h2,
.birthdayGuidance h2 {
  margin: 0 0 25px;
  color: var(--navy);
  font: 700 clamp(42px, 4.4vw, 63px) / 1.08 var(--font-heading);
  letter-spacing: -0.045em;
}
.birthdayIntroCopy > p:not(.kicker),
.birthdayGuidanceGrid > div > p:not(.kicker) {
  color: #687085;
  font-size: 17px;
  line-height: 1.75;
}
.birthdayTicks {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}
.birthdayTicks li {
  display: flex;
  gap: 11px;
  color: #3d465c;
  font-size: 16px;
}
.birthdayTicks span {
  color: var(--pink);
  font-weight: 900;
}
.birthdayBenefits {
  padding: 110px 0;
  background: #fff6fc;
}
.birthdayBenefitGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.birthdayBenefitGrid article {
  padding: 30px;
  background: #fff;
  border: 1px solid #f0ddea;
  border-radius: 24px;
}
.birthdayBenefitGrid article > span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  background: #fff0fa;
  border-radius: 17px;
  font-size: 23px;
}
.birthdayBenefitGrid h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font: 700 21px var(--font-heading);
}
.birthdayBenefitGrid p {
  margin: 0;
  color: #71798b;
  font-size: 16px;
  line-height: 1.65;
}

.birthdayProcess {
  padding-top: 120px;
  padding-bottom: 120px;
}
.birthdaySteps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.birthdaySteps article {
  padding: 28px;
  border: 1px solid #eadce8;
  border-radius: 24px;
}
.birthdaySteps b {
  color: var(--pink);
  font: 800 30px var(--font-heading);
}
.birthdaySteps h3 {
  margin: 20px 0 10px;
  color: var(--navy);
  font: 700 21px var(--font-heading);
}
.birthdaySteps p {
  margin: 0;
  color: #71798b;
  font-size: 16px;
  line-height: 1.65;
}
.birthdayGuidance {
  padding: 110px 0;
  background: var(--navy);
  color: #fff;
}
.birthdayGuidanceGrid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 85px;
}
.birthdayGuidance h2 {
  color: #fff;
}
.birthdayGuidanceGrid > div > p:not(.kicker) {
  color: #aeb6cb;
}
.guidanceCards {
  display: grid;
  gap: 14px;
}
.guidanceCards article {
  padding: 24px 26px;
  background: #111929;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
}
.guidanceCards b {
  font: 700 19px var(--font-heading);
}
.guidanceCards p {
  margin: 8px 0 0;
  color: #aeb6cb;
  font-size: 16px;
  line-height: 1.6;
}
.birthdayGuides {
  padding-top: 115px;
  padding-bottom: 115px;
}
.birthdayGuideGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.birthdayGuideGrid a {
  padding: 30px;
  border: 1px solid #efd9eb;
  border-radius: 24px;
  background: #fff6fc;
}
.birthdayGuideGrid span {
  color: var(--pink);
  font: 800 28px var(--font-heading);
}
.birthdayGuideGrid h3 {
  margin: 18px 0 10px;
  color: var(--navy);
  font: 700 22px var(--font-heading);
}
.birthdayGuideGrid p {
  color: #71798b;
  font-size: 16px;
  line-height: 1.65;
}
.birthdayGuideGrid b {
  color: var(--pink);
  font-size: 16px;
}
.birthdayFaq {
  padding-top: 110px;
  padding-bottom: 110px;
}

@media (max-width: 1000px) {
  .birthdayHeroGrid,
  .birthdayIntro,
  .birthdayGuidanceGrid {
    grid-template-columns: 1fr;
  }
  .birthdayHeroMedia {
    height: 520px;
  }
  .birthdayBenefitGrid,
  .birthdaySteps {
    grid-template-columns: repeat(2, 1fr);
  }
  .birthdayPackageLinks {
    grid-template-columns: repeat(2, 1fr);
  }
  .birthdayPackageLinks a,
  .birthdayPackageLinks a:nth-child(4),
  .birthdayPackageLinks a:nth-child(5) {
    grid-column: auto;
  }
  .birthdayGuideGrid {
    grid-template-columns: 1fr;
  }
  .birthdayIntro {
    gap: 55px;
  }
}
@media (max-width: 600px) {
  .birthdayHero {
    padding: 55px 0 75px;
  }
  .birthdayHero h1 {
    font-size: 44px;
  }
  .birthdayLead {
    font-size: 16px;
  }
  .birthdayHeroMedia {
    height: 390px;
  }
  .birthdayHeroImage {
    inset: 0 0 45px 15px;
  }
  .birthdayMiniImage {
    width: 145px;
    height: 110px;
  }
  .birthdayHeroBadge {
    right: -5px;
    padding: 13px;
  }
  .birthdayHeroBadge b {
    font-size: 19px;
  }
  
  .birthdayIntro {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .birthdayIntroMedia {
    height: 390px;
  }
  .birthdayBenefitGrid,
  .birthdaySteps,
  .birthdayPackageLinks {
    grid-template-columns: 1fr;
  }
  .birthdayBenefits,
  .birthdayGuidance {
    padding: 80px 0;
  }
  .birthdayProcess,
  .birthdayGuides,
  .birthdayFaq {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .birthdayTextLink {
    margin-left: 0;
  }
  .birthdayHero .actions {
    align-items: flex-start;
  }
}

/* Corporate gaming events page */
.corporateHero {
  padding: 78px 0 105px;
  overflow: hidden;
  background: #f7f3ff;
}

.corporateHeroGrid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1.05fr);
  align-items: center;
  gap: 80px;
}

.corporateHero h1 {
  margin: 14px 0 26px;
  color: var(--navy);
  font: 700 clamp(48px, 5vw, 76px) / 1.02 var(--font-heading);
  letter-spacing: -0.055em;
  line-height: 1.2;
}

.corporateHero h1 span,
.corporateBrief h2 span,
.corporateExperience h2 span {
  color: var(--pink);
}

.corporateLead {
  max-width: 660px;
  color: #697186;
  font-size: 18px;
  line-height: 1.75;
}

.corporateTextLink {
  margin-left: 12px;
}

.corporateHeroMedia {
  position: relative;
  min-height: 610px;
}

.corporateHeroMedia > img {
  width: 100%;
  height: 610px;
  object-fit: cover;
  border-radius: 34px 95px 34px 95px;
  box-shadow: 0 28px 65px rgba(34, 23, 59, 0.18);
}

.corporateHeroNote {
  position: absolute;
  right: -22px;
  bottom: 34px;
  display: grid;
  max-width: 285px;
  gap: 5px;
  padding: 20px 24px;
  border: 7px solid #fff;
  border-radius: 22px;
  background: var(--gradient);
  color: #fff;
}

.corporateHeroNote strong {
  font: 800 23px var(--font-heading);
}

.corporateHeroNote span {
  font-size: 13px;
  line-height: 1.45;
}

.corporateBrief {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: end;
  gap: 100px;
  padding-top: 115px;
  padding-bottom: 115px;
}

.corporateBrief h2,
.corporateExperience h2 {
  margin: 12px 0 0;
  color: var(--navy);
  font: 700 clamp(42px, 4.4vw, 63px) / 1.08 var(--font-heading);
  letter-spacing: -0.045em;
}

.corporateBriefCopy p,
.corporateExperienceCopy > p:not(.kicker) {
  color: #687085;
  font-size: 17px;
  line-height: 1.75;
}

.corporateFormats {
  padding: 110px 0;
  background: var(--navy);
}

.corporateFormats .sectionTitle h2 {
  color: #fff;
}

.corporateFormatGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.corporateFormatGrid article {
  display: grid;
  grid-template-columns: 58px 1fr;
  column-gap: 22px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
}

.corporateFormatGrid article > span {
  grid-row: 1 / 3;
  color: var(--pink);
  font: 800 27px var(--font-heading);
}

.corporateFormatGrid h3 {
  margin: 0 0 10px;
  color: #fff;
  font: 700 22px var(--font-heading);
}

.corporateFormatGrid p {
  margin: 0;
  color: #abb4c8;
  font-size: 16px;
  line-height: 1.65;
}

.corporateExperience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 90px;
  padding-top: 120px;
  padding-bottom: 120px;
}

.corporateExperienceMedia {
  height: 590px;
  overflow: hidden;
  border-radius: 85px 35px 85px 35px;
  box-shadow: 0 25px 55px rgba(28, 20, 53, 0.16);
}

.corporateExperienceMedia img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.corporateDelivery {
  padding-top: 115px;
  padding-bottom: 115px;
}

.corporatePackageCta {
  padding: 90px 0;
  background: #fff1fa;
}

.corporatePackageCtaInner {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: center;
  gap: 90px;
}

.corporatePackageCta h2 {
  margin: 10px 0 0;
  color: var(--navy);
  font: 700 clamp(36px, 3.6vw, 52px) / 1.12 var(--font-heading);
  letter-spacing: -0.04em;
}

.corporatePackageCtaInner > div:last-child > p {
  color: #697186;
  font-size: 17px;
  line-height: 1.75;
}

.corporateFaq {
  padding-top: 115px;
  padding-bottom: 115px;
}

@media (max-width: 1000px) {
  .corporateHeroGrid,
  .corporateBrief,
  .corporateExperience,
  .corporatePackageCtaInner {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .corporateHeroMedia {
    min-height: 520px;
  }

  .corporateHeroMedia > img,
  .corporateExperienceMedia {
    height: 520px;
  }

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

@media (max-width: 600px) {
  .corporateHero {
    padding: 55px 0 75px;
  }

  .corporateHero h1 {
    font-size: 44px;
  }

  .corporateLead {
    font-size: 16px;
  }

  .corporateHeroMedia {
    min-height: 390px;
  }

  .corporateHeroMedia > img,
  .corporateExperienceMedia {
    height: 390px;
  }

  .corporateHeroNote {
    right: -4px;
    bottom: 20px;
    max-width: 240px;
    padding: 15px 18px;
  }

  .corporateHeroNote strong {
    font-size: 19px;
  }

  .corporateTextLink {
    margin-left: 0;
  }

  .corporateHero .actions {
    align-items: flex-start;
  }

  .corporateBrief,
  .corporateExperience,
  .corporateDelivery,
  .corporateFaq {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .corporateFormats {
    padding: 80px 0;
  }

  .corporateFormatGrid article {
    grid-template-columns: 44px 1fr;
    padding: 24px;
  }

  .corporatePackageCta {
    padding: 75px 0;
  }
}

/* Parties directory hub */
.partyDirectoryHero {
  padding: 58px 0 90px;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
}

.partyDirectoryHero .breadcrumbLine,
.partyDirectoryHero .breadcrumbLine a {
  color: #aeb7cb;
}

.partyDirectoryHeading {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
  align-items: end;
  gap: 70px;
  margin-top: 52px;
}

.partyDirectoryHeading h1 {
  max-width: 900px;
  margin: 12px 0 0;
  color: #fff;
  font: 700 clamp(48px, 5vw, 76px) / 1.03 var(--font-heading);
  letter-spacing: -0.055em;
}

.partyDirectoryHeading h1 em {
  color: var(--pink);
  font-style: normal;
}

.partyDirectoryLead p {
  margin: 0 0 28px;
  color: #bdc5d7;
  font-size: 18px;
  line-height: 1.75;
}

.partyDirectoryStrip {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.55fr);
  min-height: 410px;
  margin-top: 62px;
  overflow: hidden;
  border-radius: 34px;
  background: #fff;
}

.directoryImageLarge {
  min-height: 410px;
  margin: 0;
}

.directoryImageLarge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.directoryPromise {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
  color: var(--navy);
}

.directoryPromise > span {
  margin-bottom: 22px;
  color: var(--pink);
  font: 800 15px var(--font-heading);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.directoryPromise ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.directoryPromise li {
  position: relative;
  padding-left: 27px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
}

.directoryPromise li::before {
  position: absolute;
  left: 0;
  color: var(--pink);
  content: "✓";
}

.partyDirectory {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.6fr);
  gap: 90px;
  padding-top: 120px;
  padding-bottom: 120px;
}

.directoryIntro {
  position: sticky;
  top: 40px;
  align-self: start;
}

.directoryIntro h2,
.partyChooser h2,
.partyEvidenceCopy h2,
.partyKnowledgeHead h2 {
  margin: 12px 0 24px;
  color: var(--navy);
  font: 800 clamp(38px, 4vw, 60px) / 1.05 var(--font-heading);
  letter-spacing: -0.045em;
}

.directoryIntro h2 span,
.partyChooser h2 span,
.partyEvidenceCopy h2 span,
.partyKnowledgeHead h2 span {
  color: var(--pink);
}

.directoryIntro > p:last-child {
  color: #747d91;
  font-size: 17px;
  line-height: 1.75;
}

.directoryList {
  border-top: 1px solid #e6dfeb;
}

.directoryList > a {
  display: grid;
  grid-template-columns: 62px minmax(210px, 1fr) minmax(180px, 0.8fr) 30px;
  align-items: center;
  gap: 24px;
  min-height: 142px;
  padding: 24px 8px;
  border-bottom: 1px solid #e6dfeb;
  color: var(--navy);
  transition:
    padding 0.2s ease,
    background 0.2s ease;
}

.directoryList > a:hover {
  padding-right: 20px;
  padding-left: 20px;
  background: #fff3fb;
}

.directoryNumber {
  color: var(--pink);
  font: 800 17px var(--font-heading);
}

.directoryList small {
  color: #8c94a6;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.directoryList h3 {
  margin: 7px 0 0;
  font: 700 24px/1.25 var(--font-heading);
}

.directoryList p {
  margin: 0;
  color: #757e91;
  font-size: 15px;
  line-height: 1.6;
}

.directoryList > a > b {
  color: var(--pink);
  font-size: 25px;
}

.partyChooser {
  padding: 110px 0;
  background: #fff1fa;
}

.partyChooserGrid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 100px;
}

.chooserOptions {
  display: grid;
  gap: 12px;
}

.chooserOptions a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 22px 26px;
  border: 1px solid #ecd6e7;
  border-radius: 16px;
  background: #fff;
}

.chooserOptions span {
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
}

.chooserOptions b {
  flex: 0 0 auto;
  color: var(--pink);
  font-size: 14px;
}

.partyEvidence {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: 90px;
  padding-top: 120px;
  padding-bottom: 120px;
}

.partyEvidenceImage {
  height: 680px;
  margin: 0;
  overflow: hidden;
  border-radius: 36px;
}

.partyEvidenceImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partyEvidenceCopy > p {
  color: #747d91;
  font-size: 17px;
  line-height: 1.75;
}

.evidencePoints {
  display: grid;
  gap: 0;
  margin: 34px 0;
  border-top: 1px solid #e6dfeb;
}

.evidencePoints div {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 17px;
  padding: 18px 0;
  border-bottom: 1px solid #e6dfeb;
}

.evidencePoints b {
  color: var(--pink);
}

.evidencePoints span {
  color: #727b8e;
  line-height: 1.55;
}

.evidencePoints strong {
  display: block;
  color: var(--navy);
}

.partyKnowledge {
  padding: 110px 0;
  background: var(--navy);
}

.partyKnowledgeHead {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr;
  align-items: end;
  gap: 90px;
  margin-bottom: 52px;
}

.partyKnowledgeHead h2 {
  margin-bottom: 0;
  color: #fff;
}

.partyKnowledgeHead > p {
  color: #aeb7ca;
  font-size: 17px;
  line-height: 1.75;
}

.partyKnowledgeGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.partyKnowledgeGrid a {
  display: flex;
  min-height: 275px;
  padding: 30px;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.partyKnowledgeGrid span {
  color: var(--pink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.partyKnowledgeGrid h3 {
  margin: 24px 0;
  font: 700 25px/1.35 var(--font-heading);
}

.partyKnowledgeGrid b {
  margin-top: auto;
  color: #fff;
  font-size: 15px;
}

.partyDirectoryFaq {
  padding-top: 120px;
  padding-bottom: 120px;
}

@media (max-width: 1000px) {
  .partyDirectoryHeading,
  .partyDirectory,
  .partyChooserGrid,
  .partyEvidence,
  .partyKnowledgeHead {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .partyDirectoryStrip {
    grid-template-columns: 1.3fr 0.7fr;
  }

  .directoryIntro {
    position: static;
  }

  .directoryList > a {
    grid-template-columns: 52px minmax(200px, 1fr) 30px;
  }

  .directoryList p {
    display: none;
  }

  .partyEvidenceImage {
    height: 540px;
  }
}

@media (max-width: 700px) {
  .partyDirectoryHero {
    padding: 42px 0 65px;
  }

  .partyDirectoryHeading {
    margin-top: 38px;
  }

  .partyDirectoryHeading h1 {
    font-size: 48px;
  }

  .partyDirectoryStrip {
    grid-template-columns: 1fr;
    margin-top: 44px;
  }

  .directoryImageLarge {
    min-height: 290px;
  }

  .directoryPromise {
    padding: 32px;
  }

  .partyDirectory,
  .partyEvidence,
  .partyChooser,
  .partyKnowledge,
  .partyDirectoryFaq {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .directoryList > a {
    grid-template-columns: 42px 1fr 24px;
    gap: 12px;
    min-height: 120px;
  }

  .directoryList h3 {
    font-size: 20px;
  }

  .chooserOptions a {
    align-items: flex-start;
    flex-direction: column;
  }

  .partyEvidenceImage {
    height: 390px;
  }

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

  .partyKnowledgeGrid a {
    min-height: 220px;
  }
}

/* Wedding gaming parties page */
.weddingHero {
  padding: 78px 0 105px;
  overflow: hidden;
  background: linear-gradient(120deg, #fff8fc 0%, #fff 52%, #f5efff 100%);
}

.weddingHeroGrid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1.05fr);
  align-items: center;
  gap: 80px;
}

.weddingHero h1 {
  margin: 14px 0 26px;
  color: var(--navy);
  font: 700 clamp(48px, 5vw, 76px) / 1.02 var(--font-heading);
  letter-spacing: -0.055em;
}

.weddingHero h1 span,
.weddingWelcome h2 span,
.weddingGuestExperience h2 span {
  color: var(--pink);
}

.weddingLead {
  max-width: 650px;
  color: #697186;
  font-size: 18px;
  line-height: 1.75;
}

.weddingTextLink {
  margin-left: 12px;
}

.weddingHeroMedia {
  position: relative;
  height: 610px;
  margin: 0;
}

.weddingHeroMedia > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 100px 36px 100px 36px;
  box-shadow: 0 28px 65px rgba(34, 23, 59, 0.18);
}

.weddingHeroMedia figcaption {
  position: absolute;
  right: -20px;
  bottom: 30px;
  display: grid;
  max-width: 300px;
  gap: 5px;
  padding: 20px 24px;
  border: 7px solid #fff;
  border-radius: 22px;
  background: var(--gradient);
  color: #fff;
}

.weddingHeroMedia figcaption strong {
  font: 800 19px/1.25 var(--font-heading);
}

.weddingHeroMedia figcaption span {
  font-size: 13px;
  line-height: 1.45;
}

.weddingWelcome {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: end;
  gap: 100px;
  padding-top: 115px;
  padding-bottom: 115px;
}

.weddingWelcome h2,
.weddingGuestExperience h2 {
  margin: 12px 0 0;
  color: var(--navy);
  font: 700 clamp(42px, 4.4vw, 63px) / 1.08 var(--font-heading);
  letter-spacing: -0.045em;
}

.weddingWelcomeCopy p,
.weddingGuestExperience > div > p:not(.kicker) {
  color: #687085;
  font-size: 17px;
  line-height: 1.75;
}

.weddingMoments {
  padding: 110px 0;
  background: var(--navy);
}

.weddingMoments .sectionTitle h2 {
  color: #fff;
}

.weddingMomentGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.weddingMomentGrid article {
  display: flex;
  min-height: 320px;
  padding: 30px;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
}

.weddingMomentGrid article > b {
  color: var(--pink);
  font: 800 28px var(--font-heading);
}

.weddingMomentGrid article > span {
  margin-top: 28px;
  color: #abb4c8;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.weddingMomentGrid h3 {
  margin: 10px 0 12px;
  color: #fff;
  font: 700 22px/1.35 var(--font-heading);
}

.weddingMomentGrid p {
  margin: 0;
  color: #abb4c8;
  font-size: 16px;
  line-height: 1.65;
}

.weddingGuestExperience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 90px;
  padding-top: 120px;
  padding-bottom: 120px;
}

.weddingGuestExperience figure {
  height: 590px;
  margin: 0;
  overflow: hidden;
  border-radius: 38px 90px 38px 90px;
  box-shadow: 0 25px 55px rgba(28, 20, 53, 0.16);
}

.weddingGuestExperience figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.weddingPlanning {
  background: var(--navy);
}

.weddingProcess,
.weddingFaq {
  padding-top: 115px;
  padding-bottom: 115px;
}

@media (max-width: 1000px) {
  .weddingHeroGrid,
  .weddingWelcome,
  .weddingGuestExperience {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .weddingHeroMedia {
    height: 520px;
  }

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

  .weddingGuestExperience figure {
    height: 520px;
  }
}

@media (max-width: 600px) {
  .weddingHero {
    padding: 55px 0 75px;
  }

  .weddingHero h1 {
    font-size: 44px;
  }

  .weddingLead {
    font-size: 16px;
  }

  .weddingTextLink {
    margin-left: 0;
  }

  .weddingHero .actions {
    align-items: flex-start;
  }

  .weddingHeroMedia,
  .weddingGuestExperience figure {
    height: 390px;
  }

  .weddingHeroMedia figcaption {
    right: -4px;
    bottom: 18px;
    max-width: 245px;
    padding: 14px 17px;
  }

  .weddingWelcome,
  .weddingGuestExperience,
  .weddingProcess,
  .weddingFaq {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .weddingMoments {
    padding: 80px 0;
  }

  .weddingMomentGrid article {
    min-height: 0;
    padding: 25px;
  }
}

/* School gaming events page */
.schoolHero {
  padding: 78px 0 105px;
  overflow: hidden;
  background: #f4f7ff;
}

.schoolHeroGrid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1.05fr);
  align-items: center;
  gap: 80px;
}

.schoolHero h1 {
  margin: 14px 0 26px;
  color: var(--navy);
  font: 700 clamp(48px, 5vw, 76px) / 1.02 var(--font-heading);
  letter-spacing: -0.055em;
}

.schoolHero h1 span,
.schoolPurpose h2 span,
.schoolOrganisation h2 span {
  color: var(--pink);
}

.schoolLead {
  max-width: 650px;
  color: #697186;
  font-size: 18px;
  line-height: 1.75;
}

.schoolTextLink {
  margin-left: 12px;
}

.schoolHeroMedia {
  position: relative;
  height: 610px;
  margin: 0;
}

.schoolHeroMedia > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 36px 90px 36px 90px;
  box-shadow: 0 28px 65px rgba(34, 23, 59, 0.18);
}

.schoolHeroMedia figcaption {
  position: absolute;
  right: -20px;
  bottom: 30px;
  display: grid;
  max-width: 285px;
  gap: 5px;
  padding: 20px 24px;
  border: 7px solid #fff;
  border-radius: 22px;
  background: var(--gradient);
  color: #fff;
}

.schoolHeroMedia figcaption strong {
  font: 800 20px/1.25 var(--font-heading);
}

.schoolHeroMedia figcaption span {
  font-size: 13px;
  line-height: 1.45;
}

.schoolPurpose {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: end;
  gap: 100px;
  padding-top: 115px;
  padding-bottom: 115px;
}

.schoolPurpose h2,
.schoolOrganisation h2 {
  margin: 12px 0 0;
  color: var(--navy);
  font: 700 clamp(42px, 4.4vw, 63px) / 1.08 var(--font-heading);
  letter-spacing: -0.045em;
}

.schoolPurpose > div:last-child p,
.schoolOrganisation > div > p:not(.kicker) {
  color: #687085;
  font-size: 17px;
  line-height: 1.75;
}

.schoolUses {
  padding: 110px 0;
  background: var(--navy);
}

.schoolUses .sectionTitle h2 {
  color: #fff;
}

.schoolUseGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.schoolUseGrid article {
  display: grid;
  grid-template-columns: 58px 1fr;
  column-gap: 22px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
}

.schoolUseGrid article > b {
  grid-row: 1 / 3;
  color: var(--pink);
  font: 800 27px var(--font-heading);
}

.schoolUseGrid h3 {
  margin: 0 0 10px;
  color: #fff;
  font: 700 22px var(--font-heading);
}

.schoolUseGrid p {
  margin: 0;
  color: #abb4c8;
  font-size: 16px;
  line-height: 1.65;
}

.schoolOrganisation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 90px;
  padding-top: 120px;
  padding-bottom: 120px;
}

.schoolOrganisation figure {
  height: 590px;
  margin: 0;
  overflow: hidden;
  border-radius: 85px 35px 85px 35px;
  box-shadow: 0 25px 55px rgba(28, 20, 53, 0.16);
}

.schoolOrganisation figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.schoolPlanning {
  background: var(--navy);
}

.schoolProcess,
.schoolFaq {
  padding-top: 115px;
  padding-bottom: 115px;
}

@media (max-width: 1000px) {
  .schoolHeroGrid,
  .schoolPurpose,
  .schoolOrganisation {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .schoolHeroMedia,
  .schoolOrganisation figure {
    height: 520px;
  }

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

@media (max-width: 600px) {
  .schoolHero {
    padding: 55px 0 75px;
  }

  .schoolHero h1 {
    font-size: 44px;
  }

  .schoolLead {
    font-size: 16px;
  }

  .schoolTextLink {
    margin-left: 0;
  }

  .schoolHero .actions {
    align-items: flex-start;
  }

  .schoolHeroMedia,
  .schoolOrganisation figure {
    height: 390px;
  }

  .schoolHeroMedia figcaption {
    right: -4px;
    bottom: 18px;
    max-width: 245px;
    padding: 14px 17px;
  }

  .schoolPurpose,
  .schoolOrganisation,
  .schoolProcess,
  .schoolFaq {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .schoolUses {
    padding: 80px 0;
  }

  .schoolUseGrid article {
    grid-template-columns: 44px 1fr;
    padding: 24px;
  }
}

/* Festival gaming events page */
.festivalHero {
  padding: 78px 0 105px;
  overflow: hidden;
  background: linear-gradient(125deg, #fff8fc 0%, #f4f7ff 100%);
}

.festivalHeroGrid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1.05fr);
  align-items: center;
  gap: 80px;
}

.festivalHero h1 {
  margin: 14px 0 26px;
  color: var(--navy);
  font: 700 clamp(48px, 5vw, 76px) / 1.02 var(--font-heading);
  letter-spacing: -0.055em;
}

.festivalHero h1 span,
.festivalIntro h2 span,
.festivalAudience h2 span,
.festivalOperations h2 span {
  color: var(--pink);
}

.festivalLead {
  max-width: 650px;
  color: #697186;
  font-size: 18px;
  line-height: 1.75;
}

.festivalTextLink {
  margin-left: 12px;
}

.festivalHeroMedia {
  position: relative;
  height: 615px;
}

.festivalHeroMedia figure {
  height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 34px 110px 34px 110px;
  box-shadow: 0 28px 65px rgba(34, 23, 59, 0.18);
}

.festivalHeroMedia figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.festivalHeroBadge {
  position: absolute;
  right: -20px;
  bottom: 28px;
  display: flex;
  max-width: 310px;
  align-items: center;
  gap: 14px;
  padding: 19px 22px;
  border: 7px solid #fff;
  border-radius: 22px;
  background: var(--gradient);
  color: #fff;
}

.festivalHeroBadge > span {
  font-size: 28px;
}

.festivalHeroBadge p {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
}

.festivalHeroBadge b {
  display: block;
  font: 800 17px/1.3 var(--font-heading);
}

.festivalIntro {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: end;
  gap: 100px;
  padding-top: 115px;
  padding-bottom: 115px;
}

.festivalIntro h2,
.festivalAudience h2,
.festivalOperations h2 {
  margin: 12px 0 0;
  color: var(--navy);
  font: 700 clamp(42px, 4.4vw, 63px) / 1.08 var(--font-heading);
  letter-spacing: -0.045em;
}

.festivalIntro > div:last-child p,
.festivalAudience > div > p:not(.kicker),
.festivalOperationsGrid > div:first-child > p:not(.kicker) {
  color: #687085;
  font-size: 17px;
  line-height: 1.75;
}

.festivalFormats {
  padding: 110px 0;
  background: var(--navy);
}

.festivalFormats .sectionTitle h2 {
  color: #fff;
}

.festivalFormatGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.festivalFormatGrid article {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 20px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
}

.festivalFormatGrid article > b {
  color: var(--pink);
  font: 800 28px var(--font-heading);
}

.festivalFormatGrid h3 {
  margin: 0 0 10px;
  color: #fff;
  font: 700 22px/1.35 var(--font-heading);
}

.festivalFormatGrid p {
  margin: 0;
  color: #abb4c8;
  font-size: 16px;
  line-height: 1.65;
}

.festivalAudience {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 90px;
  padding-top: 120px;
  padding-bottom: 120px;
}

.festivalAudience figure {
  height: 590px;
  margin: 0;
  overflow: hidden;
  border-radius: 90px 35px 90px 35px;
  box-shadow: 0 25px 55px rgba(28, 20, 53, 0.16);
}

.festivalAudience figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.festivalOperations {
  padding: 115px 0;
  background: #f4f7ff;
}

.festivalOperationsGrid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 90px;
}

.festivalCheckList {
  display: grid;
  gap: 14px;
}

.festivalCheckList article {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 20px;
  padding: 24px;
  border: 1px solid #e5e9f3;
  border-radius: 20px;
  background: #fff;
}

.festivalCheckList article > span {
  color: var(--pink);
  font: 800 24px var(--font-heading);
}

.festivalCheckList h3 {
  margin: 0 0 7px;
  color: var(--navy);
  font: 700 19px var(--font-heading);
}

.festivalCheckList p {
  margin: 0;
  color: #687085;
  font-size: 15px;
  line-height: 1.6;
}

.festivalProcess,
.festivalFaq {
  padding-top: 115px;
  padding-bottom: 115px;
}

@media (max-width: 1000px) {
  .festivalHeroGrid,
  .festivalIntro,
  .festivalAudience,
  .festivalOperationsGrid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .festivalHeroMedia,
  .festivalAudience figure {
    height: 520px;
  }
}

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

@media (max-width: 600px) {
  .festivalHero {
    padding: 55px 0 75px;
  }

  .festivalHero h1 {
    font-size: 44px;
  }

  .festivalLead {
    font-size: 16px;
  }

  .festivalTextLink {
    margin-left: 0;
  }

  .festivalHero .actions {
    align-items: flex-start;
  }

  .festivalHeroMedia,
  .festivalAudience figure {
    height: 390px;
  }

  .festivalHeroBadge {
    right: -4px;
    bottom: 18px;
    max-width: 245px;
    padding: 14px 17px;
  }

  .festivalIntro,
  .festivalAudience,
  .festivalProcess,
  .festivalFaq {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .festivalFormats,
  .festivalOperations {
    padding: 80px 0;
  }

  .festivalFormatGrid article {
    grid-template-columns: 46px 1fr;
    padding: 24px;
  }

  .festivalCheckList article {
    grid-template-columns: 42px 1fr;
    padding: 21px;
  }
}

/* Private gaming parties page */
.privateHero {
  padding: 78px 0 110px;
  overflow: hidden;
  background: linear-gradient(125deg, #fff8fc 0%, #f7f2ff 100%);
}

.privateHeroGrid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1.05fr);
  align-items: center;
  gap: 80px;
}

.privateHero h1 {
  margin: 14px 0 26px;
  color: var(--navy);
  font: 700 clamp(48px, 5vw, 76px) / 1.02 var(--font-heading);
  letter-spacing: -0.055em;
}

.privateHero h1 span,
.privateIntro h2 span,
.privateExperience h2 span {
  color: var(--pink);
}

.privateLead {
  max-width: 650px;
  color: #697186;
  font-size: 18px;
  line-height: 1.75;
}

.privateTextLink {
  margin-left: 12px;
}

.privateHeroGallery {
  position: relative;
  height: 625px;
}

.privateHeroGallery figure {
  margin: 0;
  overflow: hidden;
  box-shadow: 0 25px 55px rgba(28, 20, 53, 0.16);
}

.privateHeroMain {
  position: absolute;
  inset: 0 70px 50px 0;
  border-radius: 100px 34px 100px 34px;
}

.privateHeroSmall {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
  height: 235px;
  border: 8px solid #fff;
  border-radius: 28px;
}

.privateHeroGallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.privateHeroTag {
  position: absolute;
  top: 38px;
  right: -18px;
  display: grid;
  max-width: 215px;
  gap: 4px;
  padding: 18px 21px;
  border: 7px solid #fff;
  border-radius: 22px;
  background: var(--gradient);
  color: #fff;
}

.privateHeroTag b {
  font: 800 18px var(--font-heading);
}

.privateHeroTag span {
  font-size: 13px;
  line-height: 1.4;
}

.privateIntro {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: end;
  gap: 100px;
  padding-top: 115px;
  padding-bottom: 115px;
}

.privateIntro h2,
.privateExperience h2 {
  margin: 12px 0 0;
  color: var(--navy);
  font: 700 clamp(42px, 4.4vw, 63px) / 1.08 var(--font-heading);
  letter-spacing: -0.045em;
}

.privateIntro > div:last-child p,
.privateExperience > div > p:not(.kicker) {
  color: #687085;
  font-size: 17px;
  line-height: 1.75;
}

.privateOccasions {
  padding: 110px 0;
  background: var(--navy);
}

.privateOccasions .sectionTitle h2 {
  color: #fff;
}

.privateOccasionGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.privateOccasionGrid article {
  min-height: 310px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
}

.privateOccasionGrid article > span {
  display: inline-grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 16px;
  background: rgba(220, 24, 174, 0.16);
  font-size: 26px;
}

.privateOccasionGrid h3 {
  margin: 35px 0 12px;
  color: #fff;
  font: 700 21px/1.35 var(--font-heading);
}

.privateOccasionGrid p {
  margin: 0;
  color: #abb4c8;
  font-size: 16px;
  line-height: 1.65;
}

.privateExperience {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 90px;
  padding-top: 120px;
  padding-bottom: 120px;
}

.privateExperience figure {
  height: 630px;
  margin: 0;
  overflow: hidden;
  border-radius: 35px 90px 35px 90px;
  box-shadow: 0 25px 55px rgba(28, 20, 53, 0.16);
}

.privateExperience figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.privateModeList {
  display: grid;
  gap: 10px;
  margin: 28px 0;
}

.privateModeList article {
  display: grid;
  grid-template-columns: 43px 1fr;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #e7e9f1;
}

.privateModeList article > b {
  color: var(--pink);
  font: 800 19px var(--font-heading);
}

.privateModeList h3 {
  margin: 0 0 5px;
  color: var(--navy);
  font: 700 18px var(--font-heading);
}

.privateModeList p {
  margin: 0;
  color: #687085;
  font-size: 15px;
  line-height: 1.55;
}

.privatePlanning {
  background: var(--navy);
}

.privateProcess,
.privateFaq {
  padding-top: 115px;
  padding-bottom: 115px;
}

@media (max-width: 1100px) {
  .privateOccasionGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1000px) {
  .privateHeroGrid,
  .privateIntro,
  .privateExperience {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .privateHeroGallery {
    height: 570px;
  }

  .privateExperience figure {
    height: 520px;
  }
}

@media (max-width: 600px) {
  .privateHero {
    padding: 55px 0 75px;
  }

  .privateHero h1 {
    font-size: 44px;
  }

  .privateLead {
    font-size: 16px;
  }

  .privateTextLink {
    margin-left: 0;
  }

  .privateHero .actions {
    align-items: flex-start;
  }

  .privateHeroGallery {
    height: 450px;
  }

  .privateHeroMain {
    inset: 0 35px 45px 0;
  }

  .privateHeroSmall {
    height: 165px;
  }

  .privateHeroTag {
    top: 20px;
    right: -4px;
    max-width: 180px;
    padding: 13px 15px;
  }

  .privateIntro,
  .privateExperience,
  .privateProcess,
  .privateFaq {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .privateOccasions {
    padding: 80px 0;
  }

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

  .privateOccasionGrid article {
    min-height: 0;
    padding: 25px;
  }

  .privateExperience figure {
    height: 390px;
  }
}

/* Gaming party packages page: append to parties-master.css */
.packagePageTitle {
  margin: 0 0 23px;
  color: #fff;
  font: 700 clamp(42px, 4.5vw, 64px) / 1.08 var(--font-heading);
  letter-spacing: -0.045em;
}

.packagePageTitle span {
  color: #ffd7f1;
}

.packageSection .breadcrumbLine {
  justify-content: center;
}

.packageChargeNotice {
  max-width: 760px;
  margin: 34px auto 0;
  padding: 14px 20px;
  color: #d9deea;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
}

.packageChargeNotice b {
  color: #fff;
}

@media (max-width: 600px) {
  .packagePageTitle {
    font-size: 40px;
  }
}


/* About Us page: append to parties-master.css */
.aboutPageHero {
  padding: 82px 0 105px;
  overflow: hidden;
  background: linear-gradient(125deg, #fff7fc 0%, #f5f3ff 100%);
}

.aboutPageHeroGrid,
.aboutStory,
.aboutFounder {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 90px;
}

.aboutPageHero h1,
.aboutStory h2,
.aboutFounder h2 {
  margin: 0 0 24px;
  color: var(--navy);
  font: 700 clamp(46px, 4.8vw, 72px) / 1.04 var(--font-heading);
  letter-spacing: -0.05em;
}

.aboutPageHero h1 span,
.aboutStory h2 span,
.aboutFounder h2 span {
  color: var(--pink);
}

.aboutPageHeroCopy > p:not(.kicker):not(.breadcrumbLine),
.aboutStoryCopy > p:not(.kicker),
.aboutFounder > div > p:not(.kicker) {
  color: #687085;
  font-size: 17px;
  line-height: 1.75;
}

.aboutHeroLink {
  margin: 0;
}

.aboutPageHeroMedia {
  position: relative;
  height: 610px;
}

.aboutPageHeroMedia figure {
  height: 100%;
  margin: 0;
  overflow: hidden;
  border: 9px solid #fff;
  border-radius: 85px 35px 95px 38px;
  box-shadow: 0 28px 65px rgba(34, 23, 59, 0.18);
}

.aboutPageHeroMedia img,
.aboutStoryMedia img,
.aboutFounder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aboutSince {
  position: absolute;
  right: -18px;
  bottom: 32px;
  display: flex;
  flex-direction: column;
  padding: 19px 23px;
  color: #fff;
  background: var(--gradient);
  border: 7px solid #fff;
  border-radius: 23px;
  box-shadow: 0 16px 35px rgba(220, 24, 174, 0.24);
}

.aboutSince b {
  font: 800 23px var(--font-heading);
}

.aboutSince span {
  font-size: 12px;
}

.aboutStory,
.aboutFounder {
  padding-top: 120px;
  padding-bottom: 120px;
}

.aboutStoryMedia {
  position: relative;
  height: 520px;
}

.aboutStoryMedia img {
  overflow: hidden;
  border-radius: 38px 90px 38px 90px;
  box-shadow: 0 25px 55px rgba(28, 20, 53, 0.16);
}

.aboutStoryMedia > span {
  position: absolute;
  right: -15px;
  bottom: 25px;
  padding: 17px 21px;
  color: #fff;
  background: var(--navy);
  border: 7px solid #fff;
  border-radius: 20px;
  line-height: 1.35;
}

.aboutStoryMedia > span b {
  color: var(--lilac);
  font: 700 18px var(--font-heading);
}

.aboutJourney {
  padding-top: 20px;
}

.aboutValues .textLink {
  display: block;
  width: max-content;
  margin: 30px auto 0;
}

.aboutFounder figure {
  height: 570px;
  margin: 0;
  overflow: hidden;
  border-radius: 90px 38px 90px 38px;
  box-shadow: 0 25px 55px rgba(28, 20, 53, 0.16);
}

.aboutFounder h2,
.aboutStory h2 {
  font-size: clamp(42px, 4.3vw, 62px);
  line-height: 1.08;
}

@media (max-width: 1000px) {
  .aboutPageHeroGrid,
  .aboutStory,
  .aboutFounder {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .aboutPageHeroMedia,
  .aboutStoryMedia,
  .aboutFounder figure {
    height: 520px;
  }
}

@media (max-width: 600px) {
  .aboutPageHero {
    padding: 55px 0 75px;
  }

  .aboutPageHero h1 {
    font-size: 43px;
  }

  .aboutPageHeroMedia,
  .aboutStoryMedia,
  .aboutFounder figure {
    height: 390px;
  }

  .aboutStory,
  .aboutFounder {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .aboutSince {
    right: -5px;
    bottom: 18px;
  }

  .aboutStoryMedia > span {
    right: -5px;
  }
}

/* FAQ hub page: append to parties-master.css */
.faqHubHero {
  padding: 72px 0 65px;
  color: #fff;
  background: var(--navy);
}

.faqHubHero .breadcrumbLine,
.faqHubHero .breadcrumbLine a {
  color: #aeb6cb !important;
}

.faqHubHero h1 {
  max-width: 900px;
  margin: 0 0 22px;
  color: #fff;
  font: 700 clamp(50px, 6vw, 88px) / 1 var(--font-heading);
  letter-spacing: -0.055em;
}

.faqHubHero h1 span {
  color: var(--lilac);
}

.faqHubHero > .wrap > p:not(.kicker):not(.breadcrumbLine) {
  max-width: 720px;
  color: #b7bfd1;
  font-size: 17px;
  line-height: 1.7;
}

.faqCategoryNav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.faqCategoryNav a {
  padding: 10px 15px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50px;
}

.faqCategoryNav a:hover {
  color: var(--navy);
  background: #fff;
}

.faqHub {
  padding-top: 105px;
  padding-bottom: 120px;
}

.faqCategory {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 85px;
  padding: 85px 0;
  scroll-margin-top: 30px;
  border-bottom: 1px solid #eadde8;
}

.faqCategory:first-child {
  padding-top: 0;
}

.faqCategory:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.faqCategoryIntro {
  align-self: start;
  position: sticky;
  top: 28px;
}

.faqCategoryIntro h2 {
  margin: 0 0 20px;
  color: var(--navy);
  font: 700 clamp(36px, 3.6vw, 52px) / 1.08 var(--font-heading);
  letter-spacing: -0.045em;
}

.faqCategoryIntro h2 span {
  color: var(--pink);
}

.faqCategoryIntro > p:not(.kicker) {
  color: #71798b;
  font-size: 16px;
  line-height: 1.7;
}

.faqCategory .questions details {
  padding: 22px 4px;
}

.faqCategory .questions summary b {
  color: var(--pink);
  font-size: 24px;
  line-height: 1;
}

.faqCategory .questions details[open] summary b {
  transform: rotate(45deg);
}

.faqCategory .questions details p a {
  color: var(--pink);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

@media (max-width: 1000px) {
  .faqCategory {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .faqCategoryIntro {
    position: static;
  }
}

@media (max-width: 600px) {
  .faqHubHero {
    padding: 55px 0;
  }

  .faqHubHero h1 {
    font-size: 44px;
  }

  .faqHub {
    padding-top: 75px;
    padding-bottom: 85px;
  }

  .faqCategory {
    padding: 65px 0;
  }

  .faqCategoryNav a {
    font-size: 12px;
  }
}


/* Long-form gaming guide: reuse for all four guide pages */
.partyPlanningHero .partyDirectoryHeading {
  align-items: center;
}

.partyPlanningHero .partyDirectoryStrip,
.partyPlanningHero .directoryImageLarge {
  min-height: 330px;
}

.guideArticleLayout {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: 90px;
  padding-top: 120px;
  padding-bottom: 65px;
}

.guideContents {
  position: sticky;
  top: 30px;
  align-self: start;
}

.guideContents nav {
  display: grid;
  margin: 0 0 28px;
  border-top: 1px solid #e6dfeb;
}

.guideContents nav a {
  padding: 12px 2px;
  color: #687085;
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px solid #e6dfeb;
}

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

.guideArticle > section {
  padding: 0 0 72px;
  margin: 0 0 72px;
  scroll-margin-top: 30px;
  border-bottom: 1px solid #e6dfeb;
}

.guideArticle > section:last-child {
  margin-bottom: 0;
}

.guideArticle h2 {
  margin: 0 0 24px;
  color: var(--navy);
  font: 700 clamp(34px, 3.5vw, 50px) / 1.1 var(--font-heading);
  letter-spacing: -0.04em;
}

.guideArticle h3 {
  margin: 32px 0 13px;
  color: var(--navy);
  font: 700 23px var(--font-heading);
}

.guideArticle p,
.guideArticle li {
  color: #687085;
  font-size: 17px;
  line-height: 1.75;
}

.guideArticle a {
  color: var(--pink);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.guideArticle ul,
.guideArticle ol {
  display: grid;
  gap: 8px;
  padding-left: 24px;
}

.guideNumber {
  margin: 0 0 12px;
  color: var(--pink) !important;
  font: 800 16px var(--font-heading) !important;
  letter-spacing: 0.1em;
}

.guideAnswer,
.guideCallout {
  padding: 32px;
  background: #fff3fb;
  border: 1px solid #efd9eb;
  border-radius: 24px;
}

.guideArticle > .guideAnswer {
  padding: 32px;
}

.guideCallout {
  margin: 28px 0;
}

.guideCallout > b {
  color: var(--navy);
  font: 700 19px var(--font-heading);
}

.guideCallout p:last-child {
  margin-bottom: 0;
}

.guideChecklist {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px !important;
  padding: 0 !important;
  list-style: none;
}

.guideChecklist li {
  padding: 14px 16px 14px 43px;
  position: relative;
  background: #fff8fc;
  border: 1px solid #efdfea;
  border-radius: 14px;
}

.guideChecklist li::before {
  position: absolute;
  left: 17px;
  color: var(--pink);
  font-weight: 900;
  content: "✓";
}

@media (max-width: 1000px) {
  .guideArticleLayout {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .guideContents {
    position: static;
  }
}

@media (max-width: 600px) {
  .guideArticleLayout {
    padding-top: 80px;
  }

  .guideArticle > section {
    padding-bottom: 52px;
    margin-bottom: 52px;
  }

  .guideArticle p,
  .guideArticle li {
    font-size: 16px;
  }

  .guideAnswer,
  .guideCallout {
    padding: 23px;
  }

  .guideArticle > .guideAnswer {
    padding: 23px;
  }

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