:root {
  --bg: #f7f5f2;
  --panel: #dff7ff;
  --surface: #ffffff;
  --text: #111318;
  --muted: #667b86;
  --line: rgba(11, 181, 239, 0.24);
  --accent: #0bb5ef;
  --accent-dark: #0898ca;
  --accent-soft: #e2f8ff;
  --shadow: 0 22px 60px rgba(11, 181, 239, 0.12);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: 1220px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background: #ffffff;
  overflow-x: hidden;
}

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

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

p {
  margin: 0;
  line-height: 1.65;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  font-family: "Roboto Slab", serif;
}

main {
  padding: 0;
}

.site-footer {
  padding-inline: 0;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  max-width: 980px;
  margin: 0 auto;
  padding: 0.95rem 1.1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 40px rgba(108, 116, 168, 0.1);
}

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

.brand-logo {
  width: auto;
  height: 3rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--accent);
}

.mobile-directions-link {
  display: none;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  font: inherit;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.45rem 0.45rem 1rem;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
}

.nav-cta-icon,
.hero-button-icon {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: white;
  color: var(--accent);
  font-size: 1rem;
  line-height: 1;
}

.hero-shell {
  padding: 0;
}

.hero-panel {
  position: relative;
  background: linear-gradient(180deg, #d9f5ff 0%, #eefbff 52%, #ffffff 78%, #ffffff 100%);
  border-radius: 0;
  padding: 1.9rem 1.9rem 0;
  overflow: visible;
  min-height: calc(100vh - 3rem);
}

.site-header {
  padding-top: 0.45rem;
}

.hero-content {
  display: grid;
  justify-items: center;
  text-align: center;
  padding: 4.4rem 0 3rem;
}

.hero-copy {
  max-width: 980px;
}

.hero-copy h1 {
  color: #146078;
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.2rem, 3.85vw, 3.55rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 700;
  text-wrap: balance;
}

.hero-text {
  max-width: 780px;
  margin: 1.5rem auto 0;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.5;
}

.hero-hours {
  display: inline-flex;
  margin-top: 1.05rem;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(11, 181, 239, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #2b5563;
  font-size: 0.98rem;
  font-weight: 500;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.8rem;
  padding: 0.5rem 0.5rem 0.5rem 1.35rem;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  font-weight: 600;
  white-space: nowrap;
}

.photo-marquee {
  overflow-x: hidden;
  overflow-y: visible;
  margin: 0 -3.2rem;
  margin-bottom: 0;
  margin-top: 45px;
  padding-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.photo-track {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  width: max-content;
  animation: scroll-photos 30s linear infinite;
}

.photo-card {
  flex: 0 0 auto;
  width: 290px;
  height: 290px;
  overflow: hidden;
  background: #cdeffc;
  box-shadow: 0 18px 42px rgba(11, 181, 239, 0.1);
  border-radius: 24px;
}

.photo-card-link {
  display: block;
  width: 100%;
  height: 100%;
}

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

.content-section {
  padding: 4.5rem 0;
}

.pricing-section {
  padding-top: 6.2rem;
  padding-bottom: calc(6.75rem + 10px);
}

.about-section {
  margin-top: 0;
  padding: 6.5rem 0 8rem;
  background: transparent;
  position: relative;
  z-index: 1;
}

.about-panel {
  background: transparent;
  border-radius: 0;
  padding: 2.5rem 0 0;
  transform: rotate(-2deg);
  transform-origin: center;
  position: relative;
  top: -60px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.3fr);
  gap: 2.5rem;
  align-items: start;
  transform: rotate(2deg);
}

.about-label {
  margin-bottom: 0.65rem;
  color: #6a7968;
  font-size: 1rem;
}

.about-intro h2 {
  color: #146078;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.02;
  font-family: "Outfit", sans-serif;
  letter-spacing: -0.04em;
  font-weight: 700;
}

.about-copy {
  display: grid;
  gap: 1.2rem;
}

.about-copy p {
  color: #40523d;
  font-size: 1rem;
  line-height: 1.7;
}

.amenities-section {
  margin-top: -2px;
  padding: 1.9rem 0 3.4rem;
  background: #0bb5ef;
  position: relative;
  z-index: 1;
  overflow: visible;
}

.wave-band {
  position: absolute;
  left: 0;
  width: 100%;
  height: 84px;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.wave-band-top {
  top: -70px;
}

.wave-band-bottom {
  bottom: -70px;
}

.wave-svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.amenities-shell {
  text-align: left;
  position: relative;
  z-index: 1;
}

.amenities-heading {
  width: 100%;
  max-width: none;
  text-align: center;
}

.amenities-heading .about-label {
  color: rgba(255, 255, 255, 0.92);
}

.amenities-shell h2 {
  max-width: none;
  margin: 0 auto;
  color: #ffffff;
  font-size: clamp(1.9rem, 2.8vw, 3rem);
  line-height: 1.02;
  font-family: "Outfit", sans-serif;
  letter-spacing: -0.04em;
  font-weight: 700;
  white-space: nowrap;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 2rem 1rem;
  margin-top: 3.75rem;
}

.amenity-item {
  text-align: center;
  color: #ffffff;
  background: rgba(234, 250, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 22px;
  padding: 1.35rem 0.9rem 1.2rem;
}

.amenity-icon {
  width: 5.25rem;
  height: 5.25rem;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  color: #f7fdff;
}

.amenity-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: brightness(0) saturate(100%) invert(29%) sepia(36%) saturate(1122%) hue-rotate(149deg) brightness(92%) contrast(93%);
}

.amenity-kicker {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  margin-top: 0.45rem;
}

.amenity-item h3 {
  max-width: 12ch;
  margin: 0 auto;
  font-size: clamp(1rem, 1.05vw, 1.2rem);
  line-height: 1.16;
  font-weight: 600;
}

.content-section-muted {
  background: #ffffff;
}

.section-copy-block {
  max-width: 760px;
}

.section-label {
  margin-bottom: 0.75rem;
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-copy-block h2 {
  color: #146078;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  font-family: "Outfit", sans-serif;
  letter-spacing: -0.04em;
  font-weight: 700;
}

.section-copy-block p {
  color: var(--muted);
  font-size: 1.02rem;
}

.pricing-heading {
  margin-bottom: 2rem;
}

.pricing-heading .section-label {
  margin-bottom: 0.65rem;
  color: #6a7968;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.pricing-stack {
  display: grid;
  gap: 1.5rem;
}

.pricing-card-row {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: start;
  padding: 1.8rem 2rem;
  border: 1px solid #dce6ea;
  border-radius: 28px;
  background: white;
  box-shadow: 0 10px 30px rgba(78, 93, 162, 0.06);
}

.pricing-card-intro {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.pricing-card-icon {
  width: 4.1rem;
  height: 4.1rem;
  display: grid;
  place-items: center;
}

.pricing-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.pricing-card-intro h3 {
  margin-bottom: 0.45rem;
  font-family: "Outfit", sans-serif;
  font-size: 1.9rem;
}

.pricing-card-intro p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.pricing-card-label {
  margin-bottom: 0.9rem;
  color: #2d4752;
  font-size: 0.92rem;
  font-weight: 700;
}

.pricing-list {
  display: grid;
  gap: 0.9rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pricing-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid #e7eef2;
}

.pricing-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.pricing-list span {
  color: #36515a;
}

.pricing-list strong {
  color: var(--accent-dark);
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
}

.reviews-section {
  position: relative;
  background: #0bb5ef;
  overflow: visible;
  padding: calc(4rem - 40px) 0 5.15rem;
}

.reviews-shell {
  position: relative;
  z-index: 1;
}

.reviews-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.reviews-kicker {
  margin-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1rem;
  font-weight: 400;
}

.reviews-heading h2 {
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: none;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 880px;
  margin: 0 auto;
}

.reviews-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.reviews-cta {
  margin-top: 0;
  background: #146078;
}

.reviews-cta .hero-button-icon {
  color: #146078;
}

.review-card {
  padding: 2rem 1.8rem;
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
  transform: rotate(-2deg);
}

.review-card:nth-child(2) {
  transform: rotate(1.5deg);
}

.review-card p {
  color: #56707a;
  line-height: 1.75;
  margin-bottom: 1.2rem;
}

.review-card strong {
  color: #163843;
  font-size: 0.96rem;
}

.reviews-decor {
  position: absolute;
  color: rgba(255, 255, 255, 0.95);
  font-family: "Roboto Slab", serif;
  font-size: 7rem;
  line-height: 1;
  pointer-events: none;
}

.reviews-decor-left {
  left: 4%;
  top: 22%;
}

.reviews-decor-right {
  right: 6%;
  bottom: calc(18% - 380px);
}

.site-footer {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.86);
}

.contact-section {
  padding-top: 5.75rem;
  padding-bottom: 6.5rem;
}

.jobs-section {
  padding-top: calc(6.8rem - 55px);
  padding-bottom: calc(3.4rem + 50px);
}

.jobs-panel {
  padding-top: 0;
  position: relative;
  top: 35px;
}

.jobs-intro h2 {
  max-width: 11ch;
}

.jobs-intro {
  padding-left: 1rem;
}

.jobs-form-card {
  padding: 1.7rem;
  border: 1px solid #dce6ea;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(78, 93, 162, 0.06);
}

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

.jobs-field {
  display: grid;
  gap: 0.45rem;
}

.jobs-field span {
  color: #40523d;
  font-size: 0.92rem;
  font-weight: 500;
}

.jobs-field input,
.jobs-field textarea {
  width: 100%;
  border: 1px solid #dce6ea;
  border-radius: 16px;
  background: #fbfdff;
  color: #243222;
  font: inherit;
  padding: 0.9rem 1rem;
  resize: vertical;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.jobs-field input:focus,
.jobs-field textarea:focus {
  border-color: rgba(11, 181, 239, 0.6);
  box-shadow: 0 0 0 4px rgba(11, 181, 239, 0.12);
}

.jobs-field-full {
  grid-column: 1 / -1;
}

.jobs-form-actions {
  display: grid;
  gap: 0.85rem;
}

.jobs-submit {
  justify-self: start;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font: inherit;
  font-weight: 600;
  padding: 0.9rem 1.4rem;
  cursor: pointer;
  transition: transform 160ms ease, opacity 160ms ease, box-shadow 160ms ease;
  box-shadow: 0 12px 28px rgba(11, 181, 239, 0.2);
}

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

.jobs-submit:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

.jobs-form-status {
  min-height: 1.4rem;
  color: #4f666f;
  font-size: 0.94rem;
}

.jobs-form-status.is-error {
  color: #b44343;
}

.jobs-form-status.is-success {
  color: #1d6b58;
}

.pinball-section {
  position: relative;
  padding: 3.8rem 0 4.6rem;
  background:
    radial-gradient(circle at top left, rgba(255, 225, 120, 0.2), transparent 26%),
    radial-gradient(circle at bottom right, rgba(255, 84, 168, 0.18), transparent 28%),
    linear-gradient(180deg, #09141d 0%, #102536 100%);
  overflow: hidden;
}

.pinball-section::before {
  content: "";
  position: absolute;
  inset: 1.1rem;
  border: 3px solid rgba(133, 240, 255, 0.22);
  pointer-events: none;
}

.pinball-shell {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.15fr);
  gap: 2.4rem;
  align-items: start;
}

.pinball-heading {
  color: #effbff;
}

.pinball-kicker {
  margin-bottom: 1rem;
  color: #86e7ff;
  font-family: "Press Start 2P", monospace;
  font-size: 0.7rem;
  line-height: 1.8;
}

.pinball-heading h2 {
  color: #fff7c2;
  font-family: "Press Start 2P", monospace;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.7;
  text-transform: uppercase;
  text-shadow: 0 3px 0 rgba(11, 181, 239, 0.22);
}

.pinball-copy {
  max-width: 28ch;
  margin-top: 1.35rem;
  color: rgba(236, 246, 255, 0.82);
  font-size: 1rem;
  line-height: 1.8;
}

.pinball-board {
  padding: 1.1rem;
  border: 4px solid #7ee7ff;
  background: linear-gradient(180deg, #14293b 0%, #0f1f2d 100%);
  box-shadow:
    0 0 0 4px rgba(255, 255, 255, 0.06),
    0 20px 50px rgba(0, 0, 0, 0.3);
}

.pinball-board-top,
.pinball-row {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) minmax(120px, auto);
  gap: 1rem;
  align-items: center;
}

.pinball-board-top {
  padding: 0.95rem 1rem;
  margin-bottom: 0.8rem;
  background: rgba(126, 231, 255, 0.15);
  color: #9cf4ff;
  font-family: "Press Start 2P", monospace;
  font-size: 0.62rem;
  line-height: 1.7;
  text-transform: uppercase;
}

.pinball-list {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pinball-row {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.04);
  color: #f4fbff;
  box-shadow: inset 0 0 0 2px rgba(134, 231, 255, 0.14);
}

.pinball-rank,
.pinball-score {
  font-family: "Press Start 2P", monospace;
  font-size: 0.82rem;
  line-height: 1.6;
}

.pinball-rank {
  color: #fff7c2;
}

.pinball-name {
  color: #ffffff;
  font-family: "Press Start 2P", monospace;
  font-size: 0.8rem;
  line-height: 1.6;
}

.pinball-score {
  color: #86e7ff;
  text-align: right;
}

.contact-panel {
  padding-top: 0;
  position: relative;
  top: 1.35rem;
}

.contact-copy {
  gap: 0.7rem;
}

.contact-grid .about-intro h2 {
  max-width: 7ch;
}

.contact-copy p {
  color: #40523d;
}

.contact-copy a {
  color: #40523d;
}

.contact-copy a:hover,
.contact-copy a:focus-visible {
  color: var(--accent-dark);
}

.footer-wave {
  height: 92px;
  position: relative;
  overflow: hidden;
  margin-bottom: -1px;
}

.footer-inner {
  background: #0f2f39;
  padding: 2.8rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) repeat(3, minmax(140px, 1fr));
  gap: 2rem;
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 1rem;
}

.footer-logo {
  width: auto;
  height: 3.6rem;
  margin-left: -12px;
  filter: brightness(0) saturate(100%) invert(74%) sepia(91%) saturate(1670%) hue-rotate(154deg) brightness(97%) contrast(95%);
}

.footer-brand p,
.footer-column p,
.footer-column a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  line-height: 1.7;
}

.footer-brand p {
  line-height: 1.45;
}

.footer-column {
  display: grid;
  gap: 0.4rem;
}

.footer-column h3 {
  margin-bottom: 0.5rem;
  color: #ffffff;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: #86e7ff;
}

.footer-bottom a {
  color: #86e7ff;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 2rem;
  padding: 1rem 0 1.2rem;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.footer-credit-break {
  display: none;
}

@media (max-width: 1100px) {
  .nav-shell {
    max-width: 920px;
  }
}

@media (max-width: 900px) {
  .nav-shell {
    max-width: none;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .site-nav {
    order: 4;
    width: 100%;
    justify-content: center;
  }

  .brand-logo {
    height: 2.5rem;
  }

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

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

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

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

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

@media (max-width: 760px) {
  main,
  .site-footer {
    padding-inline: 0;
  }

  main {
    padding-top: 0;
  }

  .hero-shell {
    padding: 0;
  }

  .hero-panel {
    padding: 1rem 1rem 0;
    min-height: auto;
  }

  .hero-panel::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2.5rem;
    height: 5rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
    pointer-events: none;
    z-index: 1;
  }

  .nav-shell {
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem;
    flex-wrap: wrap;
    row-gap: 0;
    border-radius: 32px;
    overflow: hidden;
    transition: padding-bottom 180ms ease;
  }

  .nav-shell.is-open {
    padding-bottom: 1rem;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-cta {
    display: none;
  }

  .site-nav {
    order: 3;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 0.95rem;
    padding-top: 0.85rem;
    margin-top: 0.85rem;
    border-top: 1px solid rgba(11, 181, 239, 0.16);
  }

  .site-nav.open {
    display: flex;
  }

  .mobile-directions-link {
    display: inline-flex;
  }

  .hero-content {
    padding: 2.2rem 0 2.4rem;
  }

  .hero-copy {
    max-width: 21.5rem;
    margin: 0 auto;
  }

  .hero-copy h1 {
    font-size: 2.3rem;
  }

  .hero-text {
    max-width: 30ch;
    font-size: 1rem;
  }

  .hero-hours {
    font-size: 0.9rem;
  }

  .photo-marquee {
    margin: 0 -1.8rem;
    margin-bottom: -2rem;
    padding-bottom: 1.5rem;
  }

  .photo-track {
    gap: 0.9rem;
  }

  .photo-card {
    width: 230px;
    height: 230px;
    border-radius: 18px;
  }

  .about-section {
    margin-top: 0;
    padding: 4.5rem 0 5.2rem;
  }

  .about-panel {
    padding: 1.6rem 0 0;
  }

  .about-grid {
    gap: 1.5rem;
  }

  .jobs-form {
    grid-template-columns: 1fr;
  }

  .pinball-shell {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    max-width: 20.75rem;
    margin: 0 auto;
  }

  .pinball-section {
    padding: 3rem 0 3.4rem;
  }

  .pinball-section::before {
    inset: 0.75rem;
  }

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

  .pinball-heading h2 {
    font-size: 1.05rem;
    line-height: 1.65;
  }

  .pinball-board {
    padding: 0.85rem;
  }

  .pinball-board-top,
  .pinball-row {
    grid-template-columns: 52px minmax(0, 1fr) minmax(96px, auto);
    gap: 0.65rem;
  }

  .pinball-board-top {
    padding: 0.8rem;
    font-size: 0.5rem;
  }

  .pinball-name,
  .pinball-rank,
  .pinball-score {
    font-size: 0.66rem;
  }

  .amenities-heading {
    max-width: 22rem;
    margin: 0 auto;
  }

  .amenities-section {
    padding: 2rem 0 3rem;
  }

  .wave-band {
    height: 64px;
  }

  .wave-band-top {
    top: -54px;
  }

  .wave-band-bottom {
    bottom: -54px;
  }

  .amenities-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    max-width: 22rem;
    margin: 2.8rem auto 0;
  }

  .pricing-section {
    padding-top: 5rem;
    padding-bottom: calc(4rem + 15px);
  }

  .pricing-heading,
  .pricing-stack {
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card-row {
    padding: 1.35rem;
  }

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

  .pricing-card-intro h3 {
    font-size: 1.5rem;
  }

  .reviews-section {
    padding: calc(3.9rem - 40px) 0 5rem;
  }

  .reviews-heading {
    margin-bottom: 2rem;
  }

  .jobs-panel {
    top: 0;
  }

  .reviews-decor {
    display: none;
  }

  .review-card,
  .review-card:nth-child(2) {
    transform: none;
  }

  .footer-wave {
    height: 68px;
  }

  .footer-inner {
    padding-top: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    padding-inline: 0.75rem;
  }

  .amenities-shell h2 {
    font-size: 1.9rem;
    white-space: normal;
  }

  .content-section {
    padding: 3rem 0;
  }

  .contact-section {
    padding-top: calc(5.75rem - 25px);
  }

  .contact-grid {
    padding-inline: 0.75rem;
  }

  .footer-bottom {
    padding-inline: 0.75rem;
  }

  .footer-credit-break {
    display: block;
  }

  .footer-shell {
    flex-direction: column;
  }
}

@keyframes scroll-photos {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 0.6rem));
  }
}

@media (prefers-reduced-motion: reduce) {
  .wave-svg {
    transform: none;
  }
}
