:root {
    --color-navy: #102a49;
    --color-navy-deep: #081a2e;
    --color-orange: #f38a00;
    --color-blue: #24639b;
    --color-sand: #eadbc4;
    --color-ink: #172033;
    --color-paper: #e8edf1;
    --color-white: #ffffff;
    --font-body: "DM Sans", Arial, sans-serif;
    --font-heading: Outfit, Arial, sans-serif;
    --content-width: 72rem;
    --page-hero-height: clamp(34rem, 70vh, 46rem);
}

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

body {
    margin: 0;
    color: var(--color-ink);
    background: var(--color-paper);
    font-family: var(--font-body);
    line-height: 1.6;
}

body::selection {
    color: var(--color-white);
    background: var(--color-orange);
}

.skip-link {
    position: fixed;
    z-index: 100;
    top: 0.5rem;
    left: 0.5rem;
    padding: 0.75rem 1rem;
    color: var(--color-white);
    background: var(--color-navy-deep);
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

a {
    color: inherit;
}

.site-header,
.site-footer {
    color: var(--color-white);
    background: var(--color-navy);
}

.site-header__inner,
.site-footer__inner,
.page {
    width: min(100% - 2rem, var(--content-width));
    margin-inline: auto;
}

.site-header__inner,
.site-footer__inner {
    padding-block: 1rem;
}

.site-header__inner {
    padding-block: 1.15rem;
}

.site-header--hall {
    position: sticky;
    z-index: 20;
    top: 0;
    box-shadow: 0 0.5rem 1.5rem rgb(4 18 32 / 12%);
}

.site-header--hall .site-header__inner {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.75rem;
}

.brand {
    display: inline-flex;
    text-decoration: none;
}

.brand img {
    width: clamp(8.25rem, 27vw, 10.75rem);
    height: auto;
    display: block;
}

.hall-badge {
    justify-self: start;
    padding-left: 0.75rem;
    border-left: 1px solid rgb(255 255 255 / 30%);
    color: rgb(255 255 255 / 72%);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.6rem 0;
    color: var(--color-white);
    background: transparent;
    border: 0;
    font: inherit;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
}

.menu-toggle__icon {
    display: grid;
    gap: 0.3rem;
    width: 1.4rem;
}

.menu-toggle__icon i {
    display: block;
    height: 0.12rem;
    background: currentcolor;
    transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:first-child {
    transform: translateY(0.21rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:last-child {
    transform: translateY(-0.21rem) rotate(-45deg);
}

.main-navigation {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    padding: 1rem;
    color: var(--color-white);
    background: var(--color-navy-deep);
    border-radius: 0 0 0.5rem 0.5rem;
    box-shadow: 0 1rem 2rem rgb(0 0 0 / 24%);
}

.main-navigation--open {
    display: block;
}

.page {
    min-height: 70vh;
    padding-block: 3rem;
}

h1,
h2 {
    font-family: var(--font-heading);
    line-height: 1.15;
}

.hall-grid {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.hall-card {
    position: relative;
    isolation: isolate;
    min-height: clamp(18rem, 52vh, 31rem);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: clamp(1.5rem, 5vw, 3rem);
    color: var(--color-white);
    background-color: var(--color-orange);
    background-image: url('/assets/images/hall-selector/tibro-bowling-v2.png');
    background-position: center;
    background-size: cover;
    border: 1px solid rgb(255 255 255 / 14%);
    border-radius: 0.75rem;
    box-shadow: 0 1.4rem 3rem rgb(0 0 0 / 25%);
    text-decoration: none;
    transition: border-color 180ms ease, transform 180ms ease;
}

.hall-card--hjo {
    background-color: var(--color-blue);
    background-image: url('/assets/images/hall-selector/hjo-bowling-v2.png');
}

.hall-card__shade {
    position: absolute;
    z-index: -1;
    inset: 0;
    background:
        linear-gradient(180deg, rgb(7 20 35 / 8%) 20%, rgb(7 20 35 / 92%) 100%),
        linear-gradient(90deg, rgb(243 138 0 / 24%), transparent 62%);
    transition: background-color 180ms ease;
}

.hall-card--hjo .hall-card__shade {
    background:
        linear-gradient(180deg, rgb(7 20 35 / 8%) 20%, rgb(7 20 35 / 92%) 100%),
        linear-gradient(90deg, rgb(36 99 155 / 32%), transparent 62%);
}

.hall-card__content {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.hall-card__location {
    margin-bottom: 0.35rem;
    color: #ffd39b;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.19em;
    text-transform: uppercase;
}

.hall-card--hjo .hall-card__location {
    color: #b8dcff;
}

.hall-card strong {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 8vw, 4.8rem);
    font-weight: 900;
    letter-spacing: -0.035em;
    line-height: 0.95;
    text-transform: uppercase;
}

.hall-card__tagline {
    max-width: 26rem;
    margin-top: 0.9rem;
    color: rgb(255 255 255 / 84%);
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    font-style: italic;
    font-weight: 700;
    letter-spacing: 0.015em;
    line-height: 1.35;
}

.hall-card__button {
    display: inline-flex;
    gap: 0.65rem;
    align-items: center;
    margin-top: 1.35rem;
    padding: 0.72rem 1rem;
    color: var(--color-navy-deep);
    background: var(--color-orange);
    border-radius: 0.3rem;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hall-card--hjo .hall-card__button {
    color: var(--color-white);
    background: var(--color-blue);
}

.hall-card:hover,
.hall-card:focus-visible {
    border-color: rgb(255 255 255 / 60%);
    transform: translateY(-0.2rem);
}

.hall-card:focus-visible {
    outline: 0.2rem solid var(--color-orange);
    outline-offset: 0.2rem;
}

.hall-nav {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hall-nav a {
    display: block;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgb(255 255 255 / 12%);
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
}

.hall-nav a[aria-current="page"] {
    color: var(--color-orange);
    font-weight: 700;
}

.navigation-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.hall-switch {
    padding: 0.65rem;
    color: rgb(255 255 255 / 76%);
    font-size: 0.8rem;
    text-align: center;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.9rem;
    padding: 0.75rem 1.15rem;
    border: 1px solid transparent;
    border-radius: 0.3rem;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.045em;
    line-height: 1.2;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
    transform: translateY(-0.1rem);
}

.button:focus-visible,
.text-link:focus-visible,
.main-navigation a:focus-visible {
    outline: 0.18rem solid var(--color-orange);
    outline-offset: 0.2rem;
}

.button--booking,
.button--primary {
    color: var(--color-navy-deep);
    background: var(--color-orange);
}

.hall-home--blue .button--primary {
    color: var(--color-white);
    background: var(--color-blue);
}

.button--outline {
    color: var(--color-white);
    background: rgb(255 255 255 / 6%);
    border-color: rgb(255 255 255 / 55%);
}

.button--dark {
    color: var(--color-white);
    background: var(--color-navy-deep);
}

.page--hall {
    width: 100%;
    max-width: none;
    padding: 0;
}

.hall-hero {
    position: relative;
    isolation: isolate;
    min-height: clamp(30rem, 56vh, 36rem);
    display: flex;
    align-items: center;
    color: var(--color-white);
    background-image: url('/assets/images/home/tibro-bowling-hero.png');
    background-position: center;
    background-size: cover;
}

.page--hjo .hall-hero {
    background-image: url('/assets/images/home/hjo-bowling-hero.png');
}

.hall-hero__shade {
    position: absolute;
    z-index: -1;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 78%, var(--hero-fade-color, var(--color-navy-deep)) 100%),
        linear-gradient(90deg, rgb(5 20 35 / 80%) 0%, rgb(5 20 35 / 48%) 58%, rgb(5 20 35 / 30%) 100%),
        linear-gradient(0deg, rgb(5 20 35 / 76%) 0%, transparent 70%);
}

.hall-home {
    --hero-fade-color: var(--color-navy-deep);
}

.hall-hero__content,
.feature-section,
.restaurant-promo,
.visit-section,
.subpage-hero {
    width: min(100% - 2rem, var(--content-width));
    margin-inline: auto;
}

.hall-hero__content {
    padding-block: clamp(2.75rem, 6vw, 4.5rem);
    text-align: center;
}

.hall-hero h1 {
    display: flex;
    align-items: center;
    width: fit-content;
    gap: clamp(0.8rem, 2vw, 1.35rem);
    margin: clamp(1rem, 2.5vw, 1.5rem) auto 0;
    font-size: clamp(1.45rem, 3vw, 2.15rem);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-shadow: 0 0.2rem 1rem rgb(0 0 0 / 55%);
}

.hall-hero h1::before,
.hall-hero h1::after {
    width: clamp(2rem, 5vw, 4rem);
    height: 1px;
    background: var(--color-orange);
    box-shadow: 0 0 0.7rem rgb(243 138 0 / 60%);
    content: "";
}

.hall-home--blue .hall-hero h1::before,
.hall-home--blue .hall-hero h1::after {
    background: #62b5ef;
    box-shadow: 0 0 0.7rem rgb(98 181 239 / 60%);
}

.hall-hero__logo {
    width: clamp(18rem, 44vw, 31rem);
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0.75rem 1.5rem rgb(0 0 0 / 30%));
}

.hero-actions {
    display: grid;
    gap: 0.7rem;
    width: min(100%, 50rem);
    margin: clamp(1.5rem, 4vw, 2.35rem) auto 0;
}

.hero-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 4.65rem;
    padding: 1.05rem 1.3rem;
    color: var(--color-white);
    border: 1px solid;
    border-radius: 0.65rem;
    box-shadow: inset 0 1px 0 rgb(255 255 255 / 14%), 0 0.8rem 2rem rgb(0 0 0 / 20%);
    backdrop-filter: blur(0.85rem) saturate(125%);
    font-family: var(--font-heading);
    font-size: clamp(1rem, 1.6vw, 1.12rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    text-align: left;
    text-decoration: none;
    transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.hero-action--booking {
    background: rgb(243 138 0 / 30%);
    border-color: rgb(255 174 66 / 76%);
}

.hero-action--scoring {
    background: rgb(36 99 155 / 34%);
    border-color: rgb(111 183 244 / 78%);
}

.hero-action--current {
    background: rgb(255 255 255 / 13%);
    border-color: rgb(255 255 255 / 58%);
}

.hero-action:hover,
.hero-action:focus-visible {
    transform: translateY(-0.15rem);
}

.hero-action--booking:hover,
.hero-action--booking:focus-visible {
    background: rgb(243 138 0 / 66%);
}

.hero-action--scoring:hover,
.hero-action--scoring:focus-visible {
    background: rgb(36 99 155 / 72%);
}

.hero-action--current:hover,
.hero-action--current:focus-visible {
    background: rgb(255 255 255 / 24%);
}

.hero-action:focus-visible {
    outline: 0.2rem solid var(--color-white);
    outline-offset: 0.2rem;
}

@media (min-width: 48rem) {
    .hero-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 40rem;
    }

    .hero-action--current {
        grid-column: 1 / -1;
        justify-self: center;
        width: 62%;
    }
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.75rem;
}

.feature-section {
    width: 100%;
    max-width: none;
    padding-block: 4.5rem;
    padding-inline: max(1rem, calc((100% - var(--content-width)) / 2));
    color: var(--color-white);
    background: var(--color-navy-deep);
}

.section-heading {
    max-width: 48rem;
    margin: 0 auto 2rem;
    text-align: center;
}

.feature-section .section-heading .eyebrow {
    font-size: clamp(0.9rem, 1.8vw, 1.05rem);
}

.section-heading h2,
.restaurant-promo h2,
.visit-section h2,
.subpage-hero h1 {
    margin: 0;
    font-size: clamp(2rem, 6vw, 4rem);
    letter-spacing: -0.045em;
    text-wrap: balance;
}

.section-heading > p {
    max-width: 42rem;
    margin: 0.9rem auto 0;
    color: rgb(255 255 255 / 68%);
}

.feature-grid {
    display: grid;
    gap: 0.8rem;
}

.feature-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-rows: 8.5rem 1fr;
    color: var(--color-white);
    background: #173b63;
    border-radius: 0.45rem;
    text-decoration: none;
    transition: background-color 180ms ease, transform 180ms ease;
}

.feature-card:hover {
    background: #1c4a7b;
    transform: translateY(-0.2rem);
}

.feature-card__media {
    position: relative;
    overflow: hidden;
    display: block;
}

.feature-card__media::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, #173b63);
    content: '';
}

.feature-card__media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 400ms ease;
}

.feature-card:hover .feature-card__media img {
    transform: scale(1.035);
}

.feature-card:hover .feature-card__media::after {
    background: linear-gradient(180deg, transparent 42%, #1c4a7b);
}

.feature-card__body {
    display: flex;
    flex-direction: column;
    padding: 1.25rem 1.4rem 1.4rem;
}

.feature-card h3 {
    margin: 0 0 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.55rem;
}

.feature-card__description {
    color: rgb(255 255 255 / 68%);
}

.feature-card__link {
    margin-top: auto;
    padding-top: 1rem;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.restaurant-promo {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 27rem;
    display: flex;
    align-items: center;
    margin-bottom: 0;
    background:
        linear-gradient(
            90deg,
            var(--color-sand) 0%,
            var(--color-sand) 43%,
            rgb(234 219 196 / 76%) 49%,
            transparent 58%,
            transparent 88%,
            rgb(234 219 196 / 55%) 95%,
            var(--color-sand) 100%
        ),
        url('/assets/images/feature-cards/restaurant-placeholder.png') 78% center / cover no-repeat;
    border-radius: 0;
    box-shadow: 0 0 0 100vmax var(--color-sand);
    clip-path: inset(0 -100vmax);
}

.restaurant-promo__content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 48rem;
    padding: clamp(2rem, 6vw, 4.5rem);
}

.restaurant-promo h2 {
    font-size: clamp(2.5rem, 4.5vw, 4.5rem);
}

.restaurant-promo__content > p:not(.eyebrow) {
    max-width: 34rem;
}

.text-link {
    display: inline-flex;
    gap: 0.7rem;
    margin-top: 1rem;
    font-weight: 800;
    text-underline-offset: 0.25rem;
}

.visit-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: grid;
    gap: 1.5rem;
    align-items: center;
    margin-block: 0;
    padding-block: clamp(4.5rem, 8vw, 7rem);
    padding-inline: clamp(1.5rem, 4vw, 3rem);
    color: var(--color-white);
    background: var(--color-navy-deep);
    border-radius: 0;
    box-shadow: 0 0 0 100vmax var(--color-navy-deep);
    clip-path: inset(0 -100vmax);
}

.visit-section p {
    margin: 0;
}

.visit-section > *:not(.visit-section__city) {
    position: relative;
    z-index: 1;
}

.visit-section h2 {
    max-width: 45rem;
    font-size: clamp(2.35rem, 4vw, 3.6rem);
}

.visit-section > p {
    max-width: 31rem;
    color: rgb(255 255 255 / 72%);
    font-size: 1.05rem;
}

.visit-section .button {
    gap: 0.75rem;
    justify-self: start;
    white-space: nowrap;
}

.visit-section__city {
    position: absolute;
    z-index: -1;
    right: -0.04em;
    bottom: -0.25em;
    color: transparent;
    font-family: var(--font-heading);
    font-size: clamp(10rem, 25vw, 25rem);
    font-weight: 900;
    letter-spacing: -0.08em;
    line-height: 0.8;
    text-transform: uppercase;
    -webkit-text-stroke: 1px rgb(255 255 255 / 9%);
}

.visit-section::before {
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: -100vmax;
    width: 0.38rem;
    background: var(--color-orange);
    box-shadow: 100vmax 0 0 var(--color-orange);
    content: '';
}

.subpage-hero {
    padding-block: clamp(4rem, 10vw, 8rem);
}

.subpage-hero > p:last-child {
    color: #566071;
}

.subpage-image-hero {
    position: relative;
    isolation: isolate;
    min-height: var(--page-hero-height);
    display: flex;
    align-items: end;
    color: var(--color-white);
    background-position: center;
    background-size: cover;
}

.bowling-hero {
    background-image: url('/assets/images/feature-cards/bowling-placeholder.png');
}

.activities-hero {
    background-image: url('/assets/images/activities/shuffleboard-hero.png');
}

.restaurant-hero {
    background-image: url('/assets/images/restaurant/restaurant-hero.png');
}

.subpage-image-hero__shade {
    position: absolute;
    z-index: -1;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 78%, var(--hero-fade-color, var(--color-paper)) 100%),
        linear-gradient(90deg, rgb(5 20 35 / 92%) 0%, rgb(5 20 35 / 60%) 58%, rgb(5 20 35 / 25%) 100%),
        linear-gradient(0deg, rgb(5 20 35 / 88%) 0%, transparent 65%);
}

.bowling-page {
    --hero-fade-color: #dce5eb;
}

.activities-page {
    --hero-fade-color: #eef1f2;
}

.restaurant-page {
    --hero-fade-color: #f2eee8;
}

.offer-page {
    --hero-fade-color: #123b63;
}

.subpage-image-hero__content,
.bowling-intro,
.league-section,
.bowling-community,
.shuffleboard-section,
.social-games,
.group-activities,
.food-intro,
.afterwork-section,
.hospitality-section,
.subpage-cta {
    width: min(100% - 2rem, var(--content-width));
    margin-inline: auto;
}

.subpage-image-hero__content {
    padding-block: clamp(3.5rem, 8vw, 6rem);
}

.subpage-image-hero h1 {
    max-width: 54rem;
    margin: 0;
    font-size: clamp(1.9rem, 7vw, 5.8rem);
    letter-spacing: -0.055em;
    text-wrap: balance;
    white-space: nowrap;
}

.subpage-image-hero__content > p:not(.eyebrow) {
    max-width: 42rem;
    margin: 1rem 0 1.6rem;
    color: rgb(255 255 255 / 78%);
    font-size: clamp(1rem, 2vw, 1.2rem);
}

.offer-page {
    color: var(--color-white);
    background:
        radial-gradient(circle at 88% 72%, rgb(243 138 0 / 18%), transparent 30rem),
        #123b63;
}

.offer-hero {
    position: relative;
    isolation: isolate;
    min-height: var(--page-hero-height);
    display: flex;
    align-items: end;
    color: var(--color-white);
    background-position: center;
    background-size: cover;
}

.offer-hero--afterwork {
    background-image: url('/assets/images/restaurant/afterwork.png');
}

.offer-hero--children-party {
    background-image: url('/assets/images/activities/youth-party.png');
}

.offer-hero--groups {
    background-image: url('/assets/images/restaurant/buffet-catering.png');
}

.offer-hero__content,
.offer-details {
    width: min(100% - 2rem, var(--content-width));
    margin-inline: auto;
}

.offer-hero__content {
    padding-block: clamp(3.5rem, 8vw, 6rem);
}

.offer-hero h1 {
    max-width: 58rem;
    margin: 0;
    font-size: clamp(1.9rem, 7vw, 5.8rem);
    letter-spacing: -0.055em;
    line-height: 1;
    text-wrap: balance;
    white-space: nowrap;
}

.offer-hero__content > p:last-child {
    max-width: 42rem;
    margin-top: 1rem;
    color: rgb(255 255 255 / 78%);
    font-size: clamp(1rem, 2vw, 1.2rem);
}

.offer-details {
    display: grid;
    gap: 2rem;
    padding-block: clamp(4rem, 8vw, 7rem);
}

.offer-details h2 {
    margin: 0;
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    letter-spacing: -0.05em;
    line-height: 1.05;
    text-wrap: balance;
}

.offer-details__copy > p:not(.eyebrow) {
    max-width: 44rem;
    color: rgb(255 255 255 / 68%);
}

.offer-details__copy ul {
    display: grid;
    gap: 0.7rem;
    margin: 1.75rem 0 0;
    padding: 0;
    list-style: none;
}

.offer-details__copy li {
    position: relative;
    padding-left: 1.4rem;
    font-weight: 700;
}

.offer-details__copy li::before {
    position: absolute;
    left: 0;
    color: var(--color-orange);
    content: '●';
}

.offer-packages {
    display: grid;
    gap: 1rem;
    margin: 1.5rem 0;
}

.offer-package {
    padding: clamp(1.25rem, 3vw, 2rem);
    border-left: 0.25rem solid var(--color-orange);
    background: var(--color-navy);
    border-radius: 0.35rem;
}

.offer-package h3 {
    margin: 0.4rem 0;
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
}

.offer-package__price {
    margin: 0.5rem 0 1rem;
    color: #ffd39b;
    font-size: 1.2rem;
    font-weight: 800;
}

.offer-package > p:last-child {
    margin-bottom: 0;
    color: rgb(255 255 255 / 80%);
}

.offer-facts {
    max-width: 40rem;
    margin: 2rem 0 0;
    border-top: 1px solid rgb(255 255 255 / 18%);
}

.offer-facts > div {
    display: grid;
    grid-template-columns: 5rem minmax(0, 1fr);
    gap: 1rem;
    padding-block: 0.8rem;
    border-bottom: 1px solid rgb(255 255 255 / 18%);
}

.offer-facts dt {
    color: var(--color-orange);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.offer-facts dd {
    margin: 0;
    font-weight: 800;
}

.offer-booking {
    padding: clamp(1.8rem, 4vw, 3rem);
    color: var(--color-white);
    background: var(--color-navy-deep);
    border-top: 0.4rem solid var(--color-orange);
}

.offer-booking h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.offer-booking .button {
    margin-top: 1.5rem;
}

.offer-booking > p:not(.eyebrow) {
    margin: 1.75rem 0 0.3rem;
    color: rgb(255 255 255 / 68%);
}

.offer-booking__phone {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 900;
    text-underline-offset: 0.25rem;
}

.bowling-intro {
    display: grid;
    gap: 1rem;
    padding-block: clamp(2.25rem, 4vw, 3.5rem);
    background: #dce5eb;
    box-shadow: 0 0 0 100vmax #dce5eb;
    clip-path: inset(0 -100vmax);
}

.bowling-intro__statement {
    padding: clamp(1rem, 4vw, 3rem);
}

.bowling-intro h2,
.league-section h2,
.bowling-community h2,
.subpage-cta h2 {
    margin: 0;
    font-size: clamp(2.3rem, 5vw, 4.3rem);
    letter-spacing: -0.045em;
    text-wrap: balance;
}

.bowling-intro__statement > p:last-child {
    max-width: 35rem;
    color: #536173;
}

.disco-panel {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(2rem, 5vw, 4rem);
    color: var(--color-white);
    background:
        radial-gradient(circle at 90% 15%, rgb(243 138 0 / 36%), transparent 14rem),
        linear-gradient(135deg, #173b63, var(--color-navy-deep));
    border-radius: 0.55rem;
}

.disco-panel h2 {
    font-size: clamp(2.4rem, 5vw, 4.6rem);
}

.disco-panel > p:not(.eyebrow) {
    max-width: 32rem;
    color: rgb(255 255 255 / 72%);
}

.disco-panel ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin: 1.5rem 0 0;
    padding: 0;
    list-style: none;
}

.disco-panel li {
    padding: 0.55rem 0.8rem;
    background: rgb(255 255 255 / 9%);
    border: 1px solid rgb(255 255 255 / 16%);
    border-radius: 0.25rem;
    font-size: 0.85rem;
    font-weight: 800;
}

.disco-panel__glow {
    position: absolute;
    z-index: -1;
    right: -3rem;
    bottom: -5rem;
    width: 17rem;
    height: 17rem;
    border: 1.5rem solid rgb(255 255 255 / 4%);
    border-radius: 50%;
}

.league-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 26rem;
    display: flex;
    align-items: center;
    padding: clamp(2rem, 7vw, 5rem);
    color: var(--color-navy-deep);
    background:
        linear-gradient(90deg, var(--color-sand) 0%, var(--color-sand) 43%, rgb(234 219 196 / 82%) 54%, rgb(234 219 196 / 16%) 74%, var(--color-sand) 100%),
        url('/assets/images/bowling/sport-placeholder.png') right center / 58% auto no-repeat,
        var(--color-sand);
    box-shadow: 0 0 0 100vmax var(--color-sand);
    clip-path: inset(0 -100vmax);
}

.league-section__content {
    position: relative;
    z-index: 1;
    max-width: 42rem;
}

.league-section__content > p:not(.eyebrow) {
    max-width: 37rem;
}

.bowling-community {
    width: 100%;
    max-width: none;
    padding-block: clamp(4rem, 8vw, 7rem);
    padding-inline: max(1rem, calc((100% - var(--content-width)) / 2));
    color: var(--color-white);
    background: var(--color-navy-deep);
}

.section-heading--light > p:last-child {
    color: rgb(255 255 255 / 68%);
}

.community-grid {
    display: grid;
    gap: 0.8rem;
    margin-top: 2rem;
}

.community-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    color: var(--color-white);
    background: #173b63;
    border: 1px solid rgb(255 255 255 / 10%);
    border-radius: 0.45rem;
}

.community-card__image {
    width: 100%;
    height: 12rem;
    display: block;
    object-fit: cover;
}

.community-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: clamp(1.4rem, 3vw, 2rem);
}

.community-card h3 {
    margin: 0 0 0.65rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
}

.community-card p {
    margin: 0;
    color: rgb(255 255 255 / 68%);
}

.community-card .text-link {
    margin-top: 1.25rem;
}

.subpage-cta {
    position: relative;
    display: grid;
    gap: 1rem;
    align-items: center;
    padding-block: clamp(4rem, 7vw, 6rem);
    padding-inline: clamp(1.5rem, 4vw, 3rem);
    color: var(--color-white);
    background: var(--color-navy-deep);
    box-shadow: 0 0 0 100vmax var(--color-navy-deep);
    clip-path: inset(0 -100vmax);
}

.subpage-cta p {
    margin: 0;
    color: rgb(255 255 255 / 68%);
}

.subpage-cta .button {
    justify-self: start;
}

.activities-page {
    background: #eef1f2;
}

.activities-page .page {
    padding-bottom: 0;
}

.activity-overview {
    width: min(100% - 2rem, var(--content-width));
    margin-inline: auto;
    padding-block: clamp(2.25rem, 4vw, 3.5rem);
}

.bowling-overview {
    background: #dce5eb;
    box-shadow: 0 0 0 100vmax #dce5eb;
    clip-path: inset(0 -100vmax);
}

.activity-overview h2,
.activity-showcase h2 {
    margin: 0;
    font-size: clamp(2.6rem, 5vw, 4.8rem);
    letter-spacing: -0.055em;
    line-height: 1;
    text-wrap: balance;
}

.activity-overview > p:not(.eyebrow) {
    max-width: 47rem;
    color: #536173;
    font-size: clamp(1rem, 2vw, 1.15rem);
}

.activity-index {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 2rem;
}

.activity-index a {
    padding: 0.7rem 1rem;
    color: var(--color-navy-deep);
    background: #dce5eb;
    border-bottom: 0.2rem solid var(--color-orange);
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
}

.activity-index a:hover,
.activity-index a:focus-visible {
    color: var(--color-white);
    background: var(--color-navy);
}

.activity-showcase {
    width: 100%;
    display: grid;
}

.activity-showcase--dark {
    color: var(--color-white);
    background: #123b63;
}

.activity-showcase--light {
    color: var(--color-navy-deep);
    background: var(--color-white);
}

.activity-showcase__media {
    min-height: clamp(22rem, 58vw, 38rem);
}

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

.activity-showcase__content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: clamp(3rem, 7vw, 6rem) max(1rem, calc((100vw - var(--content-width)) / 2));
}

.activity-showcase__content > p:not(.eyebrow) {
    max-width: 38rem;
    margin-block: 1.35rem 2rem;
    color: rgb(255 255 255 / 70%);
    font-size: 1.05rem;
}

.activity-showcase--light .activity-showcase__content > p:not(.eyebrow) {
    color: #536173;
}

.showcase-prices {
    max-width: 40rem;
    margin: 0;
    border-top: 1px solid rgb(255 255 255 / 20%);
}

.activity-showcase--light .showcase-prices {
    border-color: rgb(8 26 46 / 18%);
}

.showcase-prices > div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    padding-block: 0.9rem;
    border-bottom: 1px solid rgb(255 255 255 / 20%);
}

.activity-showcase--light .showcase-prices > div {
    border-color: rgb(8 26 46 / 18%);
}

.showcase-prices dt {
    color: rgb(255 255 255 / 68%);
    font-size: 0.86rem;
}

.activity-showcase--light .showcase-prices dt {
    color: #647080;
}

.showcase-prices dd {
    margin: 0;
    font-family: var(--font-heading);
    font-weight: 900;
    white-space: nowrap;
}

.activity-showcase__booking {
    align-self: flex-start;
    margin-top: 1.75rem;
}

.activity-showcase__subheading {
    margin: 1.25rem 0 0;
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 2.5vw, 2rem);
    letter-spacing: -0.025em;
}

.bowling-hours > div {
    padding-block: 0.55rem;
}

.bowling-hours dt {
    padding-right: 1rem;
}

#boka-bowling .activity-showcase__content {
    padding-block: clamp(2rem, 4vw, 3rem);
}

#boka-bowling .activity-showcase__content > p:not(.eyebrow) {
    margin-block: 0.9rem 1.25rem;
}

#boka-bowling .bowling-hours > div {
    padding-block: 0.4rem;
}

#boka-bowling .disco-times {
    margin-top: 0.9rem;
}

#boka-bowling .activity-showcase__booking {
    margin-top: 1.25rem;
}

.disco-times {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    align-items: center;
    margin-top: 1.25rem;
}

.disco-times strong,
.disco-times span {
    padding: 0.55rem 0.75rem;
    border-radius: 0.2rem;
}

.disco-times strong {
    color: var(--color-navy-deep);
    background: var(--color-orange);
    font-family: var(--font-heading);
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.disco-times span {
    background: rgb(255 255 255 / 9%);
    border: 1px solid rgb(255 255 255 / 16%);
    font-size: 0.82rem;
    font-weight: 800;
}

.shuffleboard-section {
    display: grid;
    gap: 2rem;
    align-items: end;
    padding-block: clamp(4rem, 8vw, 7rem);
}

.shuffleboard-section__intro {
    max-width: 44rem;
}

.shuffleboard-section h2,
.social-games h2,
.group-activities h2 {
    margin: 0;
    font-size: clamp(2.5rem, 5vw, 4.6rem);
    letter-spacing: -0.05em;
    text-wrap: balance;
}

.shuffleboard-section__intro > p:not(.eyebrow) {
    max-width: 40rem;
    color: #536173;
}

.shuffleboard-section .button {
    margin-top: 0.8rem;
}

.activity-prices {
    margin: 0;
    color: var(--color-white);
    background: var(--color-navy-deep);
    border-top: 0.35rem solid var(--color-orange);
}

.activity-prices > div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    padding: 1.1rem 1.25rem;
    border-bottom: 1px solid rgb(255 255 255 / 11%);
}

.activity-prices > div:last-child {
    border-bottom: 0;
}

.activity-prices dt {
    color: rgb(255 255 255 / 68%);
    font-size: 0.88rem;
}

.activity-prices dd {
    margin: 0;
    font-family: var(--font-heading);
    font-weight: 900;
}

.social-games {
    width: 100%;
    max-width: none;
    display: grid;
    color: var(--color-white);
    background: #123353;
}

.social-games__media {
    min-height: 22rem;
}

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

.social-games__content {
    padding: clamp(2.5rem, 7vw, 6rem) max(1rem, calc((100vw - var(--content-width)) / 2));
}

.game-list {
    display: grid;
    gap: 0;
    margin-top: 2.4rem;
    border-top: 1px solid rgb(255 255 255 / 15%);
}

.game-item {
    display: grid;
    gap: 0.8rem;
    padding-block: 1.5rem;
    border-bottom: 1px solid rgb(255 255 255 / 15%);
}

.game-item h3,
.group-card h3 {
    margin: 0 0 0.55rem;
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.game-item p {
    max-width: 38rem;
    margin: 0;
    color: rgb(255 255 255 / 68%);
}

.game-item__price {
    color: var(--color-white) !important;
    font-family: var(--font-heading);
    font-weight: 900;
}

.group-activities {
    width: 100%;
    max-width: none;
    padding: clamp(4rem, 8vw, 7rem) max(1rem, calc((100% - var(--content-width)) / 2));
    background: var(--color-sand);
}

.group-activities__heading {
    max-width: 50rem;
    margin-bottom: 2rem;
}

.group-activities__heading > p:last-child {
    max-width: 40rem;
    color: #5e5d60;
}

.group-activities__grid {
    display: grid;
    gap: 1rem;
}

.group-card {
    position: relative;
    isolation: isolate;
    min-height: 30rem;
    overflow: hidden;
    display: flex;
    align-items: end;
    color: var(--color-white);
    background-position: center;
    background-size: cover;
    border-radius: 0.45rem;
}

.group-card::after {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(180deg, transparent 15%, rgb(5 20 35 / 94%) 88%);
    content: '';
}

.group-card--party,
.group-card--youth {
    background-image: url('/assets/images/activities/youth-party.png');
}

.group-card--youth {
    background-position: 64% center;
}

.group-card__body {
    width: 100%;
    padding: clamp(1.5rem, 4vw, 2.5rem);
}

.group-card__body > p:not(.eyebrow) {
    max-width: 37rem;
    color: rgb(255 255 255 / 72%);
}

.group-card__note {
    font-size: 0.86rem;
}

.compact-prices {
    max-width: 31rem;
    margin: 1.25rem 0;
}

.compact-prices > div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-block: 0.55rem;
    border-bottom: 1px solid rgb(255 255 255 / 15%);
}

.compact-prices dt {
    color: rgb(255 255 255 / 68%);
}

.compact-prices dd {
    margin: 0;
    font-weight: 900;
}

.activities-cta {
    margin-bottom: 0;
}

.restaurant-page {
    background: #f2eee8;
}

.restaurant-page .page {
    padding-bottom: 0;
}

.food-intro {
    display: grid;
    gap: 2rem;
    align-items: end;
    padding-block: clamp(2.25rem, 4vw, 3.5rem);
}

.food-intro h2,
.afterwork-section h2,
.hospitality-section h2 {
    margin: 0;
    font-size: clamp(2.5rem, 5vw, 4.7rem);
    letter-spacing: -0.05em;
    text-wrap: balance;
}

.food-intro__copy > p:last-child,
.hospitality-section__heading > p:last-child {
    max-width: 42rem;
    color: #5f6065;
}

.food-options {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 0.35rem solid var(--color-orange);
}

.food-options li {
    padding: 1.1rem 0.2rem;
    border-bottom: 1px solid rgb(8 26 46 / 18%);
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 800;
}

.food-menu-link {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.35rem 1rem;
    margin: -1.1rem -0.2rem;
    padding: 1.1rem 0.2rem;
    color: inherit;
    text-decoration: none;
    border-radius: 0.2rem;
}

.food-menu-link__hint {
    color: #5f6065;
    font-size: 0.8rem;
    font-weight: 500;
}

.food-menu-link__hint span {
    margin-left: 0.35rem;
    color: var(--color-blue);
}

.food-menu-link:hover {
    color: var(--color-blue);
    background: rgb(36 99 155 / 6%);
}

.food-menu-link:focus-visible {
    outline: 0.18rem solid var(--color-orange);
    outline-offset: 0.2rem;
}

.afterwork-section {
    width: 100%;
    max-width: none;
    display: grid;
    color: var(--color-white);
    background: var(--color-navy-deep);
}

.afterwork-section__image {
    min-height: 24rem;
}

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

.afterwork-section__content {
    padding: clamp(2.5rem, 7vw, 6rem) max(1rem, calc((100vw - var(--content-width)) / 2));
}

.afterwork-section__content > p:not(.eyebrow) {
    max-width: 39rem;
    color: rgb(255 255 255 / 70%);
}

.afterwork-section__time {
    margin: 1.8rem 0 0.2rem !important;
    color: var(--color-white) !important;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 900;
}

.afterwork-section__price {
    margin-top: 0.2rem !important;
    color: #ffd39b !important;
    font-weight: 800;
}

.afterwork-section .text-link {
    margin-top: 1.2rem;
}

.hospitality-section {
    width: 100%;
    max-width: none;
    padding: clamp(4rem, 8vw, 7rem) max(1rem, calc((100% - var(--content-width)) / 2));
    background: var(--color-sand);
}

.hospitality-section__heading {
    max-width: 52rem;
    margin-bottom: 2.2rem;
}

.hospitality-feature {
    display: grid;
    overflow: hidden;
    color: var(--color-white);
    background: #153a5f;
    border-radius: 0.5rem;
}

.hospitality-feature > img {
    width: 100%;
    min-height: 20rem;
    height: 100%;
    display: block;
    object-fit: cover;
}

.hospitality-feature__body {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: clamp(2rem, 5vw, 4rem);
}

.hospitality-feature h3 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.4rem);
    letter-spacing: -0.04em;
}

.hospitality-feature__body > p:not(.eyebrow) {
    max-width: 38rem;
    color: rgb(255 255 255 / 68%);
}

.restaurant-cta {
    margin-bottom: 0;
}

.contact-page {
    color: var(--color-white);
    background: var(--color-navy);
}

.contact-page .page {
    padding-bottom: 0;
}

.contact-hero,
.contact-methods,
.opening-hours,
.restaurant-hours,
.contact-signoff {
    width: min(100% - 2rem, var(--content-width));
    margin-inline: auto;
}

.contact-hero {
    position: relative;
    isolation: isolate;
    width: 100%;
    max-width: none;
    min-height: var(--page-hero-height);
    display: grid;
    gap: 2rem;
    align-items: end;
    padding: clamp(3.5rem, 8vw, 6rem) max(1rem, calc((100% - var(--content-width)) / 2));
    background-image: url('/assets/images/contact/tibro-exterior-hero.png');
    background-position: center;
    background-size: cover;
}

.page--hjo .contact-hero {
    background-image: url('/assets/images/home/hjo-bowling-hero.png');
}

.contact-hero::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 78%, #eef1f2 100%),
        linear-gradient(90deg, rgb(5 20 35 / 92%) 0%, rgb(5 20 35 / 60%) 58%, rgb(5 20 35 / 25%) 100%),
        linear-gradient(0deg, rgb(5 20 35 / 88%) 0%, transparent 65%);
    content: '';
}

.contact-hero h1,
.opening-hours h2,
.restaurant-hours h2,
.contact-signoff h2 {
    margin: 0;
    font-size: clamp(1.9rem, 6vw, 5.5rem);
    letter-spacing: -0.055em;
    text-wrap: balance;
}

.contact-hero h1 {
    white-space: nowrap;
}

.contact-hero__intro > p:last-child,
.opening-hours__intro > p:last-child {
    max-width: 43rem;
    color: rgb(255 255 255 / 68%);
}

.contact-hero__booking {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: clamp(1.8rem, 4vw, 3rem);
    color: var(--color-white);
    background: rgb(8 26 46 / 90%);
    border-top: 0.4rem solid var(--color-orange);
    text-decoration: none;
}

.contact-hero__booking > span:first-child,
.contact-method__label {
    color: #aebdcc;
    font-family: var(--font-heading);
    font-size: 0.73rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.contact-hero__booking strong {
    margin-block: 0.45rem 1.5rem;
    font-family: var(--font-heading);
    font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.contact-methods {
    width: 100%;
    max-width: none;
    display: grid;
    gap: 0.75rem;
    padding: clamp(2.25rem, 4vw, 3.5rem) max(1rem, calc((100% - var(--content-width)) / 2));
    background: #eef1f2;
}

.contact-methods__heading {
    margin-bottom: 1rem;
    color: var(--color-navy-deep);
}

.contact-methods__heading h2 {
    margin: 0;
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    letter-spacing: -0.05em;
    line-height: 1.05;
}

.contact-method {
    min-width: 0;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: clamp(1.5rem, 3vw, 2rem);
    color: var(--color-white);
    background: #173b63;
    border: 1px solid rgb(255 255 255 / 9%);
    text-decoration: none;
    transition: background-color 180ms ease, transform 180ms ease;
}

.contact-method:hover,
.contact-method:focus-visible {
    background: #1d4977;
    transform: translateY(-0.15rem);
}

.contact-method strong {
    max-width: 100%;
    margin-block: 1rem 1.6rem;
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2.4vw, 1.75rem);
    overflow-wrap: anywhere;
}

.contact-method > span:last-child {
    margin-top: auto;
    color: var(--color-orange);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.opening-hours {
    width: 100%;
    max-width: none;
    display: grid;
    gap: 2.5rem;
    padding: clamp(4rem, 8vw, 7rem) max(1rem, calc((100% - var(--content-width)) / 2));
    color: var(--color-white);
    background: var(--color-navy-deep);
}

.opening-hours__intro > p:last-child {
    color: rgb(255 255 255 / 62%);
}

.hours-list {
    margin: 0;
    border-top: 1px solid rgb(255 255 255 / 18%);
}

.hours-list > div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    padding-block: 1rem;
    border-bottom: 1px solid rgb(255 255 255 / 18%);
}

.hours-list dt {
    font-family: var(--font-heading);
    font-weight: 800;
}

.hours-list dt small {
    display: block;
    margin-top: 0.2rem;
    color: #aebdcc;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
}

.hours-list dd {
    margin: 0;
    font-weight: 900;
}

.hours-list .is-closed {
    color: rgb(255 255 255 / 48%);
}

.restaurant-hours {
    display: grid;
    gap: 1.5rem;
    align-items: center;
    padding-block: clamp(3.5rem, 7vw, 5.5rem);
    color: var(--color-white);
}

.restaurant-hours h2 {
    font-size: clamp(2.2rem, 4vw, 3.7rem);
}

.restaurant-hours dl {
    min-width: min(100%, 20rem);
    margin: 0;
}

.restaurant-hours dl > div {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    padding-block: 0.65rem;
    border-bottom: 1px solid rgb(255 255 255 / 18%);
}

.restaurant-hours dd {
    margin: 0;
    font-weight: 900;
}

.contact-signoff {
    width: 100%;
    max-width: none;
    padding: clamp(4rem, 8vw, 7rem) max(1rem, calc((100% - var(--content-width)) / 2));
    color: var(--color-white);
    background:
        radial-gradient(circle at 85% 20%, rgb(243 138 0 / 22%), transparent 24rem),
        #123353;
}

.contact-signoff h2 {
    max-width: 55rem;
}

.contact-signoff .button-row {
    margin-top: 2rem;
}

.hall-selector-page {
    color: var(--color-white);
    background: var(--color-navy-deep);
}

.hall-selector-page .site-header,
.hall-selector-page .site-footer {
    display: none;
}

.hall-selector-page .page {
    width: 100%;
    min-height: 100svh;
    padding: 0;
}

.landing-hero {
    position: relative;
    isolation: isolate;
    min-height: 100svh;
    overflow: hidden;
    display: grid;
    place-items: center;
    padding: clamp(2rem, 6vw, 5rem) 1rem;
    background: var(--color-navy-deep);
}

.landing-hero__image,
.landing-hero__overlay {
    position: absolute;
    z-index: -2;
    inset: 0;
    width: 100%;
    height: 100%;
}

.landing-hero__image {
    object-fit: cover;
    object-position: 65% center;
    animation: landing-reveal 5s ease-out both;
}

@keyframes landing-reveal {
    from { transform: scale(1.045); }
    to { transform: scale(1); }
}

.landing-hero__overlay {
    z-index: -1;
    background:
        radial-gradient(circle at 50% 45%, transparent 0, rgb(5 16 29 / 18%) 36%, rgb(5 16 29 / 55%) 100%),
        linear-gradient(180deg, rgb(5 16 29 / 54%), rgb(5 16 29 / 32%) 48%, rgb(5 16 29 / 72%));
}

.landing-hero__content {
    width: calc(100vw - 2rem);
    max-width: 58rem;
    min-width: 0;
    text-align: center;
}

.landing-hero__logo {
    width: clamp(18rem, 54vw, 36rem);
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0.75rem 1.5rem rgb(0 0 0 / 28%));
}

.landing-hero h1 {
    margin: clamp(1.5rem, 4vh, 2.5rem) 0 0;
    font-size: clamp(1.4rem, 3.5vw, 2.35rem);
    font-weight: 600;
    letter-spacing: -0.025em;
    text-shadow: 0 0.2rem 1rem rgb(0 0 0 / 55%);
}

.landing-hero__choices {
    display: grid;
    gap: 0.75rem;
    width: 100%;
    max-width: 34rem;
    margin: clamp(1.5rem, 4vh, 2.35rem) auto 0;
}

.landing-choice {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 0.9rem;
    min-height: 4.5rem;
    padding: 1rem 1.25rem;
    color: var(--color-white);
    background: rgb(243 138 0 / 25%);
    border: 1px solid rgb(255 174 66 / 72%);
    border-radius: 0.65rem;
    box-shadow: inset 0 1px 0 rgb(255 255 255 / 14%), 0 0.8rem 2rem rgb(0 0 0 / 18%);
    backdrop-filter: blur(0.85rem) saturate(125%);
    font-family: var(--font-heading);
    text-align: left;
    text-decoration: none;
    transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.landing-choice__icon {
    position: relative;
    align-self: center;
    width: 3.5rem;
    height: 4.25rem;
    color: #ffad43;
}

.landing-choice__icon img {
    position: absolute;
    inset: 0 0 0 auto;
    width: auto;
    height: 100%;
}

.landing-choice__ball {
    position: absolute;
    z-index: 1;
    bottom: 0.2rem;
    left: -0.2rem;
    width: 1.65rem;
    height: 1.65rem;
    fill: currentcolor;
    stroke: rgb(255 255 255 / 86%);
    stroke-width: 1.4;
}

.landing-choice__hole {
    fill: var(--color-navy-deep);
    stroke: none;
}

.landing-choice__label {
    display: grid;
    gap: 0.15rem;
}

.landing-choice__label > span {
    color: rgb(255 226 188 / 82%);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.landing-choice__label strong {
    font-size: clamp(1.5rem, 4vw, 2rem);
    line-height: 1;
}

.landing-choice--hjo {
    background: rgb(36 99 155 / 30%);
    border-color: rgb(111 183 244 / 76%);
}

.landing-choice--hjo .landing-choice__icon {
    color: #78c3ff;
}

.landing-choice--hjo .landing-choice__label > span {
    color: rgb(188 222 251 / 84%);
}

.landing-choice:hover,
.landing-choice:focus-visible {
    background: rgb(243 138 0 / 62%);
    border-color: var(--color-orange);
    transform: translateY(-0.15rem);
}

.landing-choice--hjo:hover,
.landing-choice--hjo:focus-visible {
    background: rgb(36 99 155 / 68%);
    border-color: #75bcf5;
}

.landing-choice:focus-visible {
    outline: 0.2rem solid var(--color-white);
    outline-offset: 0.2rem;
}

.eyebrow {
    margin: 0 0 0.8rem;
    color: var(--color-orange);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

@media (min-width: 38rem) {
    .landing-hero__choices {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 42rem;
    }

    .landing-choice {
        grid-template-columns: 1fr auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .landing-hero__image {
        animation: none;
    }
}

@media (min-width: 48rem) {
    .activity-showcase {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        min-height: 38rem;
    }

    .activity-showcase__media {
        min-height: 100%;
    }

    .activity-showcase--reversed .activity-showcase__media {
        order: 2;
    }

    .activity-showcase__content {
        padding-inline: clamp(2.5rem, 5vw, 6rem);
    }

    .offer-details {
        grid-template-columns: minmax(0, 1.25fr) minmax(20rem, 0.75fr);
        align-items: start;
    }

    .selector-intro h1 {
        white-space: nowrap;
    }

    .hall-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page:not(.page--hall) {
        padding-block: 5rem;
    }

    .hall-selector-page .page {
        padding: 0;
    }

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

    .restaurant-promo h2 {
        white-space: nowrap;
    }

    .visit-section {
        grid-template-columns: minmax(0, 1fr) auto;
        column-gap: 3rem;
    }

    .visit-section > div,
    .visit-section > p {
        grid-column: 1;
    }

    .visit-section > p {
        grid-row: 2;
    }

    .visit-section > .button {
        grid-column: 2;
        grid-row: 1;
    }

    .visit-section h2 {
        max-width: 42rem;
        text-wrap: balance;
    }

    .bowling-intro {
        grid-template-columns: 0.9fr 1.1fr;
        align-items: stretch;
    }

    .shuffleboard-section {
        grid-template-columns: minmax(0, 1fr) minmax(19rem, 0.7fr);
    }

    .food-intro {
        grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
    }

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

    .contact-methods__heading {
        grid-column: 1 / -1;
    }

    .opening-hours {
        grid-template-columns: minmax(0, 0.85fr) minmax(24rem, 1.15fr);
    }

    .restaurant-hours {
        grid-template-columns: minmax(0, 1fr) auto auto;
        column-gap: 3rem;
    }

    .hospitality-feature {
        grid-template-columns: minmax(0, 1.15fr) minmax(22rem, 0.85fr);
    }

    .game-item {
        grid-template-columns: minmax(0, 1fr) auto;
        column-gap: 2rem;
    }

    .game-item .text-link {
        grid-column: 1;
    }

    .game-item__price {
        grid-column: 2;
        grid-row: 1 / span 2;
        align-self: center;
    }

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

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

    .subpage-cta {
        grid-template-columns: 1.2fr 0.8fr auto;
        column-gap: 2.5rem;
    }
}

@media (min-width: 68rem) {
    .feature-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

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

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

    .afterwork-section__image {
        min-height: 40rem;
    }

    .afterwork-section__content {
        padding-right: max(2rem, calc((100vw - var(--content-width)) / 2));
        padding-left: clamp(2.5rem, 6vw, 6rem);
    }

    .social-games__media {
        min-height: 40rem;
    }

    .social-games__content {
        padding-right: max(2rem, calc((100vw - var(--content-width)) / 2));
        padding-left: clamp(2.5rem, 6vw, 6rem);
    }

    .site-header--hall .site-header__inner {
        grid-template-columns: auto auto 1fr;
    }

    .menu-toggle {
        display: none;
    }

    .main-navigation {
        position: static;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 1.55rem;
        padding: 0;
        background: transparent;
        box-shadow: none;
    }

    .hall-nav {
        display: flex;
        align-items: center;
        gap: 1.25rem;
    }

    .hall-nav a {
        padding: 0.55rem 0;
        border: 0;
        font-size: 0.8rem;
    }

    .navigation-actions {
        display: flex;
        gap: 0.6rem;
        margin: 0;
    }

    .hall-switch {
        padding-inline: 0.4rem;
        white-space: nowrap;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
