@import url("https://fonts.googleapis.com/css2?family=Luckiest+Guy&family=Nunito:wght@400;700;800;900&display=swap");

:root {
  --yellow: #f8ca33;
  --brown: #76512d;
  --green: #1f6335;
  --deep: #143d25;
  --teal: #0d8c8d;
  --red: #d94d3f;
  --orange: #f47b2f;
  --cream: #fff6d7;
  --page: #fffdf2;
  --ink: #28331f;
  --muted: #6b604d;
  --line: rgba(118, 81, 45, 0.14);
  --shadow: 0 18px 46px rgba(75, 48, 22, 0.14);
  --shadow-strong: 0 28px 80px rgba(39, 28, 14, 0.26);
  --radius: 8px;
  --max: 1180px;
  font-family: "Nunito", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(135deg, rgba(248, 202, 51, 0.06) 0 10px, transparent 10px 34px),
    var(--page);
  color: var(--ink);
}

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

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

.skip-link {
  position: fixed;
  top: -80px;
  left: 16px;
  z-index: 1000;
  background: var(--deep);
  color: #fff;
  padding: 12px 14px;
}

.skip-link:focus {
  top: 16px;
}

.fz-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 242, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 28px rgba(70, 48, 23, 0.08);
}

.fz-topbar {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 9px 16px;
  background:
    linear-gradient(90deg, var(--deep), #1b5732 50%, var(--deep));
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.fz-nav {
  width: min(var(--max), calc(100% - 28px));
  min-height: 78px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

.fz-logo img {
  width: 154px;
}

.fz-menu {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.fz-menu a {
  padding: 10px 11px;
  border-radius: var(--radius);
  color: var(--brown);
  font-weight: 900;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.fz-menu a:hover {
  background: #fff0b8;
  transform: translateY(-1px);
}

.fz-menu a[aria-current="page"] {
  background: var(--yellow);
  color: #3b2919;
}

.fz-menu-button {
  display: none;
}

.fz-nav-actions,
.fz-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.fz-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  padding: 12px 17px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 9px 18px rgba(75, 48, 22, 0.12);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.fz-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(75, 48, 22, 0.2);
}

.fz-btn--primary {
  background: linear-gradient(180deg, #ffe16a, var(--yellow));
  color: #3b2919;
  border-color: rgba(118, 81, 45, 0.1);
}

.fz-btn--soft {
  background: #e8f6d9;
  color: var(--green);
  border-color: rgba(31, 99, 53, 0.14);
}

.fz-btn--light {
  background: #fff;
  color: var(--brown);
}

.fz-btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: #fff;
}

.fz-btn--large {
  min-height: 54px;
  padding-inline: 20px;
  font-size: 17px;
}

.fz-hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.fz-hero__image,
.fz-hero__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.fz-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fz-hero__shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(14, 43, 25, 0.96), rgba(20, 61, 37, 0.72) 46%, rgba(20, 61, 37, 0.2)),
    linear-gradient(0deg, rgba(20, 61, 37, 0.78), transparent 52%);
}

.fz-hero__content {
  width: min(var(--max), calc(100% - 28px));
  margin: 0 auto;
  padding: 120px 0 56px;
  color: #fff;
}

.fz-eyebrow {
  margin: 0 0 10px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.fz-hero h1 {
  max-width: 800px;
  margin: 0 0 18px;
  font-family: "Luckiest Guy", "Nunito", Arial, sans-serif;
  font-size: clamp(46px, 8vw, 96px);
  font-weight: 400;
  line-height: 0.95;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.fz-hero p:not(.fz-eyebrow) {
  max-width: 660px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.45;
}

.fz-page-hero {
  min-height: 560px;
  display: grid;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(20, 61, 37, 0.94), rgba(20, 61, 37, 0.66) 48%, rgba(20, 61, 37, 0.14)),
    linear-gradient(0deg, rgba(20, 61, 37, 0.68), transparent 54%),
    url("assets/arcade-wide.jpg") center / cover no-repeat;
}

.fz-page-hero--party {
  background-image:
    linear-gradient(90deg, rgba(20, 61, 37, 0.94), rgba(20, 61, 37, 0.64) 50%, rgba(20, 61, 37, 0.18)),
    linear-gradient(0deg, rgba(20, 61, 37, 0.72), transparent 55%),
    url("assets/birthday.jpg");
}

.fz-page-hero--play {
  background-image:
    linear-gradient(90deg, rgba(20, 61, 37, 0.94), rgba(20, 61, 37, 0.62) 50%, rgba(20, 61, 37, 0.12)),
    linear-gradient(0deg, rgba(20, 61, 37, 0.7), transparent 54%),
    url("assets/play-laser-tag.jpg");
}

.fz-page-hero--food {
  background-image:
    linear-gradient(90deg, rgba(20, 61, 37, 0.94), rgba(20, 61, 37, 0.68) 48%, rgba(20, 61, 37, 0.18)),
    linear-gradient(0deg, rgba(20, 61, 37, 0.72), transparent 54%),
    url("assets/catering.png");
}

.fz-page-hero--groups {
  background-image:
    linear-gradient(90deg, rgba(20, 61, 37, 0.94), rgba(20, 61, 37, 0.65) 48%, rgba(20, 61, 37, 0.16)),
    linear-gradient(0deg, rgba(20, 61, 37, 0.72), transparent 54%),
    url("assets/laser-wall.jpg");
}

.fz-page-hero--about {
  background-image:
    linear-gradient(90deg, rgba(20, 61, 37, 0.94), rgba(20, 61, 37, 0.65) 48%, rgba(20, 61, 37, 0.16)),
    linear-gradient(0deg, rgba(20, 61, 37, 0.72), transparent 54%),
    url("assets/tag.jpg");
}

.fz-page-hero--contact {
  background-image:
    linear-gradient(90deg, rgba(20, 61, 37, 0.94), rgba(20, 61, 37, 0.66) 48%, rgba(20, 61, 37, 0.14)),
    linear-gradient(0deg, rgba(20, 61, 37, 0.68), transparent 54%),
    url("assets/arcade-wide.jpg");
}

.fz-page-hero__content {
  width: min(var(--max), calc(100% - 28px));
  margin: 0 auto;
  padding: 110px 0 54px;
  color: #fff;
}

.fz-page-hero h1 {
  max-width: 860px;
  margin: 0 0 18px;
  font-family: "Luckiest Guy", "Nunito", Arial, sans-serif;
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 400;
  line-height: 0.96;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.fz-page-hero p:not(.fz-eyebrow) {
  max-width: 720px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
}

.fz-quick-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.fz-quick-actions a {
  display: grid;
  gap: 4px;
  min-height: 96px;
  align-content: center;
  padding: 18px;
  border-right: 1px solid var(--line);
}

.fz-quick-actions a:last-child {
  border-right: 0;
}

.fz-quick-actions strong {
  color: var(--brown);
  font-size: 19px;
}

.fz-quick-actions span {
  color: var(--muted);
  font-size: 14px;
}

.fz-section {
  width: min(var(--max), calc(100% - 28px));
  margin: 0 auto;
  padding: 72px 0;
}

.fz-section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.fz-section h2 {
  margin: 0 0 12px;
  color: var(--brown);
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
}

.fz-section-heading p:not(.fz-eyebrow),
.fz-split p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.fz-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

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

.fz-feature-grid article {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(75, 48, 22, 0.07);
}

.fz-feature-grid span {
  color: var(--yellow);
  font-weight: 900;
}

.fz-feature-grid h3 {
  margin: 0;
  color: var(--green);
  font-size: 22px;
}

.fz-feature-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.fz-feature-grid a {
  color: var(--brown);
  font-weight: 900;
}

.fz-split {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 36px;
  align-items: center;
}

.fz-split img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.fz-section--green {
  width: 100%;
  max-width: none;
  padding-inline: max(14px, calc((100% - var(--max)) / 2));
  background: var(--deep);
  color: #fff;
}

.fz-section--green h2 {
  color: #fff;
}

.fz-check-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.fz-check-grid div {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  padding: 16px;
  font-weight: 800;
}

.fz-visit-band {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 18px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.fz-visit-band h2 {
  margin-bottom: 8px;
}

.fz-visit-band p {
  margin: 0;
  color: var(--muted);
}

.fz-hours-card {
  display: grid;
  gap: 4px;
  min-width: 250px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(75, 48, 22, 0.07);
}

.fz-hours-card strong {
  color: var(--brown);
  font-size: 20px;
}

.fz-hours-card small {
  color: var(--muted);
}

.fz-tab-controls {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  width: min(100%, 520px);
  margin-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff0b8;
  padding: 7px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 12px 26px rgba(75, 48, 22, 0.08);
}

.fz-tab-controls button {
  min-height: 50px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--brown);
  cursor: pointer;
  font: inherit;
  font-size: 18px;
  font-weight: 900;
}

.fz-tab-controls button.is-active {
  background: linear-gradient(180deg, #81572f 0%, var(--brown) 100%);
  color: #fff;
  box-shadow: 0 10px 22px rgba(118, 81, 45, 0.2);
}

.fz-tab-panel {
  display: none;
}

.fz-tab-panel.is-active {
  display: block;
}

.fz-panel-heading {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
  border-left: 6px solid var(--yellow);
  padding: 2px 0 2px 14px;
}

.fz-panel-heading h3 {
  margin: 0 0 6px;
  color: var(--brown);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
}

.fz-panel-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.fz-package-grid {
  display: grid;
  gap: 16px;
  align-items: stretch;
}

.fz-package-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fz-package-grid--five {
  grid-template-columns: repeat(5, minmax(210px, 1fr));
  overflow-x: auto;
  padding: 6px 2px 14px;
  scroll-snap-type: x proximity;
}

.fz-package-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  overflow: hidden;
  border: 1px solid rgba(118, 81, 45, 0.16);
  border-radius: 12px;
  background:
    linear-gradient(180deg, #fffdf5, #fff7dc);
  box-shadow: 0 16px 34px rgba(75, 48, 22, 0.12);
  scroll-snap-align: start;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.fz-package-card:hover {
  transform: translateY(-5px);
  border-color: rgba(248, 202, 51, 0.72);
  box-shadow: 0 26px 52px rgba(75, 48, 22, 0.18);
}

.fz-package-card--featured {
  outline: 3px solid rgba(248, 202, 51, 0.9);
  transform: translateY(-4px);
}

.fz-package-card--featured:hover {
  transform: translateY(-9px);
}

.fz-package-card__head {
  display: grid;
  gap: 8px;
  background:
    radial-gradient(circle at 90% 14%, rgba(255, 255, 255, 0.42), transparent 24%),
    linear-gradient(180deg, #ffe16a, var(--yellow));
  color: #3b2919;
  padding: 20px 18px;
}

.fz-package-badge {
  width: fit-content;
  border-radius: 999px;
  background: rgba(31, 99, 53, 0.12);
  color: var(--green);
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.fz-package-card__head h4 {
  margin: 0;
  color: var(--brown);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1;
}

.fz-package-card__head strong {
  display: block;
  color: #fff0a8;
  background: var(--brown);
  margin: 0 -18px -20px;
  padding: 12px 18px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
}

.fz-package-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-content: start;
  padding: 14px 18px 0;
}

.fz-package-meta span {
  border-radius: 999px;
  background: #fff;
  color: var(--green);
  padding: 7px 9px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 5px 12px rgba(75, 48, 22, 0.08);
}

.fz-package-card ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 16px 22px;
  list-style: none;
}

.fz-package-card li {
  position: relative;
  border-bottom: 1px solid rgba(248, 202, 51, 0.62);
  padding: 11px 0 11px 24px;
  color: #4c331f;
  font-weight: 800;
  line-height: 1.35;
}

.fz-package-card li::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(31, 99, 53, 0.12);
}

.fz-package-card li:last-child {
  border-bottom: 0;
}

.fz-package-card > .fz-btn,
.fz-card-actions {
  margin: 0 16px 16px;
}

.fz-card-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.fz-attraction-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.fz-attraction-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 24px rgba(75, 48, 22, 0.07);
}

.fz-attraction-card--wide {
  grid-column: span 2;
}

.fz-attraction-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.fz-attraction-card div {
  padding: 18px;
}

.fz-attraction-card h3,
.fz-menu-card h3,
.fz-contact-card h2 {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 24px;
  line-height: 1.1;
}

.fz-attraction-card p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.55;
}

.fz-attraction-card a {
  color: var(--brown);
  font-weight: 900;
}

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

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

.fz-menu-card,
.fz-contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 20px;
  box-shadow: 0 10px 24px rgba(75, 48, 22, 0.07);
}

.fz-menu-card dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.fz-menu-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(118, 81, 45, 0.12);
  padding: 10px 0;
}

.fz-menu-card dl div:last-child {
  border-bottom: 0;
}

.fz-menu-card dt {
  color: var(--ink);
  font-weight: 800;
}

.fz-menu-card dd {
  margin: 0;
  color: var(--brown);
  font-weight: 900;
  white-space: nowrap;
}

.fz-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.fz-contact-card {
  display: grid;
  gap: 10px;
}

.fz-contact-card a {
  color: var(--brown);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.3;
}

.fz-contact-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.fz-hero--v2 {
  min-height: 760px;
}

.fz-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 34px;
  align-items: end;
}

.fz-hero--v2 h1 {
  max-width: 860px;
  font-size: clamp(58px, 8vw, 112px);
}

.fz-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.fz-hero-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 900;
  backdrop-filter: blur(8px);
}

.fz-plan-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 253, 242, 0.96), rgba(255, 246, 215, 0.96));
  color: var(--ink);
  padding: 20px;
  box-shadow: var(--shadow-strong);
}

.fz-plan-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(135deg, rgba(248, 202, 51, 0.14) 0 9px, transparent 9px 28px);
}

.fz-plan-card > * {
  position: relative;
}

.fz-plan-card .fz-eyebrow {
  color: var(--green);
}

.fz-plan-card h2 {
  margin: 0 0 12px;
  color: var(--brown);
  font-size: 30px;
  line-height: 1;
}

.fz-plan-card a {
  display: grid;
  gap: 3px;
  border: 1px solid rgba(118, 81, 45, 0.14);
  border-radius: var(--radius);
  background: #fff;
  padding: 13px 14px;
  margin-top: 9px;
  box-shadow: 0 8px 18px rgba(75, 48, 22, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.fz-plan-card a:hover {
  transform: translateX(3px);
  box-shadow: 0 12px 24px rgba(75, 48, 22, 0.14);
}

.fz-plan-card strong {
  color: var(--green);
  font-size: 18px;
}

.fz-plan-card span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.fz-quick-actions--v2 {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 28px));
  margin: -36px auto 0;
  gap: 12px;
  background: transparent;
  border-bottom: 0;
}

.fz-quick-actions--v2 a {
  min-height: 122px;
  border: 1px solid rgba(118, 81, 45, 0.14);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.fz-quick-actions--v2 a:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(75, 48, 22, 0.18);
}

.fz-quick-actions--v2 strong {
  color: var(--green);
  font-size: 21px;
}

.fz-quick-actions--v2 span {
  max-width: 260px;
  color: var(--muted);
  line-height: 1.35;
}

.fz-section--tight {
  padding-top: 58px;
}

.fz-heading-center {
  max-width: 850px;
  margin-inline: auto;
  text-align: center;
}

.fz-heading-center .fz-eyebrow {
  width: fit-content;
  margin-inline: auto;
}

.fz-experience-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 16px;
}

.fz-experience-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(118, 81, 45, 0.14);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
}

.fz-experience-card--party {
  grid-row: span 2;
}

.fz-experience-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.fz-experience-card--party img {
  aspect-ratio: 4 / 3;
}

.fz-experience-card div {
  display: grid;
  gap: 9px;
  align-content: start;
  padding: 20px;
}

.fz-experience-card span {
  width: fit-content;
  border-radius: 999px;
  background: #fff0b8;
  color: var(--brown);
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.fz-experience-card h3 {
  margin: 0;
  color: var(--green);
  font-size: clamp(25px, 3vw, 40px);
  line-height: 1;
}

.fz-experience-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.fz-experience-card a {
  color: var(--brown);
  font-weight: 900;
}

.fz-party-spotlight {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 28px;
  align-items: center;
}

.fz-party-copy {
  position: sticky;
  top: 110px;
}

.fz-party-copy h2,
.fz-food-card h2 {
  margin: 0 0 12px;
  color: var(--brown);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
}

.fz-party-copy p,
.fz-food-card p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.fz-mini-pricing {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.fz-mini-pricing article {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(118, 81, 45, 0.14);
  border-radius: 12px;
  background:
    linear-gradient(180deg, #fffdf5, #fff6d7);
  padding: 18px;
  box-shadow: var(--shadow);
}

.fz-mini-pricing article:nth-child(2) {
  background:
    linear-gradient(180deg, #fff5bf, #fffdf5);
  transform: translateY(-8px);
}

.fz-mini-pricing span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.fz-mini-pricing h3 {
  margin: 0;
  color: var(--brown);
  font-size: 26px;
  line-height: 1;
}

.fz-mini-pricing strong {
  color: var(--green);
  font-size: 48px;
  line-height: 1;
}

.fz-mini-pricing p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.fz-attraction-band {
  position: relative;
  overflow: hidden;
}

.fz-attraction-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0 10px, transparent 10px 36px);
}

.fz-attraction-band > * {
  position: relative;
}

.fz-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.fz-chip-row span {
  border-radius: 999px;
  background: #fff;
  color: var(--green);
  padding: 10px 14px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.fz-photo-strip {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 12px;
}

.fz-photo-strip img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.26);
}

.fz-photo-strip img:first-child {
  height: 340px;
}

.fz-food-visit {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 18px;
  align-items: stretch;
}

.fz-food-card,
.fz-hours-card--big {
  border: 1px solid rgba(118, 81, 45, 0.14);
  border-radius: 12px;
  background: #fff;
  padding: clamp(22px, 3vw, 34px);
  box-shadow: var(--shadow);
}

.fz-food-card {
  background:
    linear-gradient(135deg, rgba(248, 202, 51, 0.18), transparent 44%),
    #fff;
}

.fz-hours-card--big {
  align-content: start;
  min-width: 0;
}

.fz-hours-card--big .fz-eyebrow {
  color: var(--green);
}

.fz-hours-card--big strong {
  font-size: 36px;
  line-height: 1;
}

.fz-hours-card--big .fz-btn {
  margin-top: 12px;
}

.fz-party-hero {
  position: relative;
  min-height: 660px;
  overflow: hidden;
}

.fz-party-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 20%, rgba(248, 202, 51, 0.28), transparent 20%),
    radial-gradient(circle at 84% 78%, rgba(244, 123, 47, 0.24), transparent 22%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0 10px, transparent 10px 36px);
}

.fz-party-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 32px;
  align-items: end;
}

.fz-party-hero-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 253, 242, 0.96), rgba(255, 246, 215, 0.98));
  color: var(--ink);
  padding: 20px;
  box-shadow: var(--shadow-strong);
}

.fz-party-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 90% 0%, rgba(248, 202, 51, 0.36), transparent 26%),
    repeating-linear-gradient(135deg, rgba(248, 202, 51, 0.12) 0 8px, transparent 8px 30px);
}

.fz-party-hero-card > * {
  position: relative;
}

.fz-party-hero-card .fz-eyebrow {
  color: var(--green);
}

.fz-party-hero-card h2 {
  margin: 0 0 12px;
  color: var(--brown);
  font-size: 31px;
  line-height: 1;
}

.fz-party-hero-card a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 14px;
  align-items: center;
  border: 1px solid rgba(118, 81, 45, 0.14);
  border-radius: 10px;
  background: #fff;
  padding: 14px;
  margin-top: 10px;
  box-shadow: 0 9px 19px rgba(75, 48, 22, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.fz-party-hero-card a:hover {
  transform: translateX(4px);
  box-shadow: 0 16px 28px rgba(75, 48, 22, 0.16);
}

.fz-party-hero-card span {
  grid-column: 1 / -1;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.fz-party-hero-card strong {
  color: var(--brown);
  font-size: 20px;
}

.fz-party-hero-card em {
  color: var(--green);
  font-size: 28px;
  font-style: normal;
  font-weight: 900;
}

.fz-party-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding-top: 42px;
  padding-bottom: 34px;
}

.fz-proof-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(118, 81, 45, 0.14);
  border-radius: 12px;
  background: #fff;
  padding: 18px;
  box-shadow: var(--shadow);
}

.fz-proof-card::after {
  content: "";
  position: absolute;
  right: -32px;
  bottom: -42px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(248, 202, 51, 0.18);
}

.fz-proof-card span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 900;
}

.fz-proof-card strong {
  display: block;
  margin: 14px 0 7px;
  color: var(--brown);
  font-size: 21px;
  line-height: 1.1;
}

.fz-proof-card p {
  position: relative;
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.fz-party-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 24px;
  align-items: start;
}

.fz-party-callout {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(31, 99, 53, 0.18);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(31, 99, 53, 0.1), transparent 42%),
    #fff;
  padding: 18px;
  box-shadow: var(--shadow);
}

.fz-party-callout strong {
  color: var(--green);
  font-size: 22px;
}

.fz-party-callout span {
  color: var(--muted);
  line-height: 1.45;
}

.fz-party-callout a {
  width: fit-content;
  border-radius: var(--radius);
  background: var(--yellow);
  color: #3b2919;
  padding: 10px 13px;
  font-weight: 900;
}

.fz-party-help {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 22px;
  align-items: start;
}

.fz-party-help h2 {
  margin: 0;
}

.fz-help-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.fz-help-grid article {
  border: 1px solid rgba(118, 81, 45, 0.14);
  border-radius: 12px;
  background: #fff;
  padding: 18px;
  box-shadow: var(--shadow);
}

.fz-help-grid span {
  color: var(--yellow);
  font-weight: 900;
}

.fz-help-grid h3 {
  margin: 9px 0 8px;
  color: var(--green);
  font-size: 22px;
  line-height: 1.08;
}

.fz-help-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.fz-party-steps .fz-check-grid div {
  display: grid;
  align-content: center;
  min-height: 92px;
  font-size: 17px;
}

.fz-sticky-cta {
  position: sticky;
  bottom: 0;
  z-index: 45;
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  border-top: 1px solid rgba(118, 81, 45, 0.16);
  background: rgba(255, 253, 242, 0.96);
  padding: 10px;
  box-shadow: 0 -14px 30px rgba(75, 48, 22, 0.14);
  backdrop-filter: blur(14px);
}

.fz-sticky-cta a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  border-radius: var(--radius);
  background: #fff;
  color: var(--green);
  font-weight: 900;
}

.fz-sticky-cta a:nth-child(2) {
  background: var(--yellow);
  color: #3b2919;
}

.fz-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px max(14px, calc((100% - var(--max)) / 2));
  background: #101b13;
  color: #fff;
}

.fz-footer img {
  width: 138px;
  margin-bottom: 8px;
}

.fz-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.fz-footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  color: var(--yellow);
  font-weight: 900;
}

@media (max-width: 980px) {
  .fz-nav {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .fz-menu-button {
    display: inline-flex;
    min-height: 44px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    color: var(--brown);
    padding: 10px 14px;
    font: inherit;
    font-weight: 900;
  }

  .fz-menu {
    position: absolute;
    top: 100%;
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    padding: 8px;
    box-shadow: var(--shadow);
  }

  .fz-menu.is-open {
    display: flex;
  }

  .fz-nav-actions {
    display: none;
  }

  .fz-hero-grid,
  .fz-party-hero__grid,
  .fz-party-spotlight,
  .fz-food-visit,
  .fz-party-heading-row,
  .fz-party-help {
    grid-template-columns: 1fr;
  }

  .fz-plan-card,
  .fz-party-copy {
    position: static;
  }

  .fz-plan-card {
    max-width: 620px;
  }

  .fz-feature-grid,
  .fz-feature-grid--three,
  .fz-check-grid,
  .fz-party-proof,
  .fz-attraction-grid,
  .fz-menu-grid,
  .fz-menu-grid--catering,
  .fz-contact-grid,
  .fz-help-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fz-split {
    grid-template-columns: 1fr;
  }

  .fz-experience-grid,
  .fz-mini-pricing,
  .fz-photo-strip {
    grid-template-columns: 1fr;
  }

  .fz-experience-card--party {
    grid-row: auto;
  }

  .fz-mini-pricing article:nth-child(2) {
    transform: none;
  }

  .fz-photo-strip img,
  .fz-photo-strip img:first-child {
    height: 260px;
  }

  .fz-visit-band {
    grid-template-columns: 1fr;
  }

  .fz-package-grid--two {
    grid-template-columns: 1fr;
  }

  .fz-package-card--featured {
    transform: none;
  }

  .fz-package-card--featured:hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 700px) {
  .fz-topbar {
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
  }

  .fz-hero {
    min-height: 640px;
  }

  .fz-hero--v2 {
    min-height: auto;
  }

  .fz-hero-grid {
    padding-top: 82px;
  }

  .fz-hero--v2 h1 {
    font-size: clamp(48px, 14vw, 72px);
  }

  .fz-quick-actions,
  .fz-feature-grid,
  .fz-feature-grid--three,
  .fz-check-grid,
  .fz-party-proof,
  .fz-attraction-grid,
  .fz-menu-grid,
  .fz-menu-grid--catering,
  .fz-contact-grid,
  .fz-help-grid {
    grid-template-columns: 1fr;
  }

  .fz-page-hero {
    min-height: 600px;
  }

  .fz-party-hero {
    min-height: auto;
  }

  .fz-party-hero__grid {
    padding-top: 82px;
  }

  .fz-party-hero-card {
    padding: 16px;
  }

  .fz-party-hero-card a {
    grid-template-columns: 1fr;
  }

  .fz-quick-actions--v2 {
    margin-top: 0;
    padding-top: 14px;
  }

  .fz-quick-actions--v2 a {
    min-height: 98px;
  }

  .fz-plan-card {
    padding: 16px;
  }

  .fz-hero-pills span,
  .fz-chip-row span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .fz-experience-card div,
  .fz-food-card,
  .fz-hours-card--big,
  .fz-proof-card,
  .fz-help-grid article {
    padding: 18px;
  }

  .fz-party-callout,
  .fz-party-hero-card {
    border-radius: 10px;
  }

  .fz-package-grid--five {
    grid-template-columns: repeat(5, minmax(260px, 1fr));
    margin-inline: -14px;
    padding-inline: 14px;
  }

  .fz-package-card:hover,
  .fz-package-card--featured:hover {
    transform: none;
  }

  .fz-panel-heading,
  .fz-card-actions {
    grid-template-columns: 1fr;
    display: grid;
  }

  .fz-attraction-card--wide {
    grid-column: auto;
  }

  .fz-quick-actions a {
    min-height: 74px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .fz-footer {
    display: grid;
  }

  .fz-sticky-cta {
    display: grid;
  }
}
