:root {
    --content-padding: 0;
    --site-width: 1180px;
    --fox-gold: #e8dea7;
    --fox-gold-dark: #7d6b20;
    --fox-green: #263c2d;
    --fox-ink: #151515;
    --fox-paper: #eee;
    --header-min-height: 100px;
    --header-background: #fff;
    --header-font-family: "Roboto Slab", serif;
    --nav-text: #111;
    --nav-active: #7d6b20;
    --nav-hover: #7d6b20;
    --nav-arrow: #111;
    --nav-arrow-hover: #7d6b20;
    --contact-background: #e8dea7;
    --contact-text: #111;
    --contact-hover-background: #111;
    --contact-hover-text: #fff;
    --footer-background: #050505;
    --footer-text: #fff;
    --footer-heading: #fff;
    --footer-link: #fff;
    --footer-link-hover: #e8dea7;
    --footer-divider: #3e3e3e;
    --footer-credit-text: #fff;
    --footer-credit-link: #e8dea7;
    --footer-font-family: "Roboto Slab", serif;
}

html { scroll-behavior: smooth; }
* { box-sizing: border-box; }

body {
    margin: 0;
    background: var(--fox-paper);
    color: #333;
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    line-height: 1.65;
}

img { max-width: 100%; }
a { color: var(--fox-ink); text-underline-offset: .2em; }
h1, h2, h3, h4, h5, h6,
.button, button, .main-navigation, .footer-navigation { font-family: "Roboto Slab", serif; }

.page-heading {
    width: min(var(--site-width), calc(100% - 60px));
    margin: 54px auto 34px;
    color: var(--fox-ink);
    font-family: "Roboto Slab", serif;
    font-size: clamp(2.2rem, 5vw, 3.125rem);
    line-height: 1.1;
}

.page-content-shell,
.nxb-text-block__inner,
.nxb-grid-layout__inner,
.nxb-contact-form__inner {
    width: min(var(--site-width), calc(100% - 60px));
    margin-inline: auto;
}

.site-header {
    position: relative;
    z-index: 100;
    min-height: 100px;
    padding: 0 30px;
    background: #fff;
    border: 0;
    box-shadow: 0 1px 8px rgb(0 0 0 / 9%);
}

.skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 10000;
    padding: .65rem 1rem;
    background: var(--fox-ink);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transform: translateY(-180%);
    transition: transform .15s ease;
}

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

.header-logo img {
    width: auto;
    max-width: 190px;
    height: 76px;
    max-height: 76px;
    object-fit: contain;
    filter: brightness(0);
}

.main-navigation > ul { gap: 0; }
.main-navigation a {
    min-height: 100px;
    padding: 0 15px;
    color: var(--fox-ink);
    font-size: 17px;
    line-height: 100px;
}
.main-navigation li.active > a,
.main-navigation a:hover,
.main-navigation a:focus-visible { color: var(--fox-gold-dark); }

.header-actions { gap: 14px; }
.header-search { position: relative; }
.header-search summary {
    position: relative;
    width: 28px;
    height: 28px;
    list-style: none;
    cursor: pointer;
}
.header-search summary::-webkit-details-marker { display: none; }
.header-search summary::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 3px;
    width: 13px;
    height: 13px;
    border: 2px solid var(--fox-ink);
    border-radius: 50%;
}
.header-search summary::after {
    content: "";
    position: absolute;
    top: 17px;
    left: 17px;
    width: 8px;
    height: 2px;
    background: var(--fox-ink);
    transform: rotate(45deg);
    transform-origin: left center;
}
.header-search summary:focus-visible {
    outline: 3px solid var(--fox-gold-dark);
    outline-offset: 4px;
}
.header-search form {
    position: absolute;
    top: calc(100% + 18px);
    right: 0;
    display: flex;
    z-index: 20;
    min-width: 340px;
    padding: 12px;
    background: #fff;
    box-shadow: 0 8px 24px rgb(0 0 0 / 18%);
}
.header-search input {
    min-width: 0;
    flex: 1;
    padding: .6rem .75rem;
    border: 1px solid #999;
    font: inherit;
}
.header-search button {
    padding-inline: 1rem;
    border: 1px solid var(--fox-ink);
    background: var(--fox-ink);
    color: #fff;
    font: inherit;
    cursor: pointer;
}
.button-light,
.nxb-text-block__button,
.nxb-banner__button,
.nxb-simple-pods__link,
.nxb-contact-form__submit {
    border: 1px solid var(--fox-ink);
    border-radius: 0;
    background: var(--fox-gold);
    color: var(--fox-ink);
    font-family: "Roboto Slab", serif;
    font-weight: 600;
    text-transform: none;
}
.button-light:hover,
.nxb-text-block__button:hover,
.nxb-banner__button:hover,
.nxb-simple-pods__link:hover,
.nxb-contact-form__submit:hover { background: var(--fox-ink); color: #fff; }

.nxb-banner { background: var(--fox-ink); }
.nxb-banner--width-full-screen { width: 100%; }
.nxb-banner--size-medium-crop { min-height: clamp(360px, 48vw, 640px); }
.nxb-banner__title {
    font-size: clamp(2.4rem, 5.4vw, 4.8rem);
    line-height: 1.02;
    text-shadow: 0 2px 14px rgb(0 0 0 / 45%);
}
.nxb-banner__subtitle,
.nxb-banner__intro { font-size: clamp(1.05rem, 2vw, 1.35rem); }

.nxb-text-block { padding-block: 60px; }
.nxb-text-block--background-white { background: #fff; }
.nxb-text-block--background-light-grey { background: var(--fox-paper); }
.nxb-text-block--background-dark { background: var(--fox-green); color: #fff; }
.nxb-text-block__secondary-heading {
    margin-bottom: .55rem;
    color: var(--fox-gold-dark);
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.nxb-text-block__heading { color: var(--fox-ink); }

.nxb-simple-pods { padding-block: 55px; }
.nxb-simple-pods__card { background: #fff; border: 0; box-shadow: 0 12px 35px rgb(0 0 0 / 8%); }
.nxb-simple-pods__heading { color: var(--fox-ink); }
.nxb-simple-pods__media { aspect-ratio: 4 / 3; overflow: hidden; }
.nxb-simple-pods__image { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.nxb-simple-pods__card:hover .nxb-simple-pods__image { transform: scale(1.035); }

.nxb-gallery { padding-block: 50px; background: #fff; }
.nxb-gallery__image { transition: transform .3s ease; }
.nxb-gallery__link:hover .nxb-gallery__image { transform: scale(1.025); }

.nxb-blog { background: #fff; }
.nxb-blog__header-content,
.nxb-blog__body { width: min(900px, calc(100% - 60px)); margin-inline: auto; }
.nxb-blog__title { color: var(--fox-ink); }

.nxb-contact-form { padding-block: 60px; background: #fff; }
.nxb-contact-form__heading { color: var(--fox-ink); }
.nxb-contact-form input,
.nxb-contact-form textarea { border-radius: 0; border-color: #bbb; }

.nxb-code-block { width: 100%; }
.nxb-code-block iframe { display: block; width: 100%; max-width: 100%; border: 0; }

.nxb-sitemap,
.nxb-search-results {
    width: min(var(--site-width), calc(100% - 60px));
    margin-inline: auto;
    padding-block: 45px 70px;
}

.site-footer { background: var(--footer-background); color: var(--footer-text); }
.footer-inner { width: min(var(--site-width), calc(100% - 60px)); padding: 55px 0 25px; }
.footer-logo img { max-height: 100px; width: auto; filter: brightness(0) invert(1); }
.footer-locations .nxb-simple-pods { padding-block: 25px; }
.footer-locations .nxb-simple-pods__card { background: transparent; box-shadow: none; color: #fff; }
.footer-locations .nxb-simple-pods__heading { color: #fff; }
.footer-services-navigation a,
.footer-navigation a,
.footer-cookie-settings { color: var(--footer-link); }
.footer-services-navigation a:hover,
.footer-navigation a:hover,
.footer-cookie-settings:hover { color: var(--footer-link-hover); }
.site-credit { display: inline-flex !important; align-items: center; gap: .35rem; }
.site-credit__dragon { width: 24px; height: 18px; object-fit: contain; }

.nxb-heading-align-centre :is(h1, h2, h3, h4, h5, h6, .nxb-text-block__secondary-heading) { text-align: center; }
.nxb-heading-align-right :is(h1, h2, h3, h4, h5, h6, .nxb-text-block__secondary-heading) { text-align: right; }
.nxb-remove-top-padding { padding-top: 0 !important; }
.nxb-remove-bottom-padding { padding-bottom: 0 !important; }

.site-notification { border-radius: 0; }
.site-notification__buttons button { border-radius: 0; }

@media (max-width: 991px) {
    .site-header { min-height: 80px; padding-inline: 20px; }
    .header-logo img { height: 62px; max-height: 62px; }
    .main-navigation a { min-height: 52px; line-height: 52px; }
    .page-heading,
    .page-content-shell,
    .nxb-text-block__inner,
    .nxb-grid-layout__inner,
    .nxb-contact-form__inner,
    .nxb-sitemap,
    .nxb-search-results,
    .footer-inner { width: min(100% - 36px, var(--site-width)); }
}

@media (max-width: 575px) {
    body { font-size: 16px; }
    .page-heading { margin-block: 34px 24px; }
    .nxb-text-block,
    .nxb-simple-pods,
    .nxb-gallery,
    .nxb-contact-form { padding-block: 38px; }
    .site-credit { flex-wrap: wrap; height: auto !important; }
    .header-search form { min-width: min(300px, calc(100vw - 36px)); }
}

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

/* Live-site composition --------------------------------------------------- */

:root {
    --fox-green: #17341c;
    --fox-green-deep: #0e2512;
    --fox-gold: #e8dea7;
    --fox-ink: #050505;
    --fox-section-height: 700px;
}

.page-content-shell {
    width: 100%;
    max-width: none;
}

.page-content-shell__main {
    width: 100%;
}

.page-content-shell__main > .umb-block-list {
    display: contents;
}

.page-content-shell--with-sidebar {
    display: grid;
    width: min(calc(100% - 48px), 1350px);
    grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
    gap: clamp(40px, 6vw, 90px);
    align-items: start;
    margin-inline: auto;
    padding-block: clamp(60px, 7vw, 90px);
}

.page-content-shell--with-sidebar .page-content-shell__main,
.page-content-shell--with-sidebar .page-content-shell__sidebar {
    min-width: 0;
}

.page-news-events .page-content-shell--with-sidebar .fox-page-pods--news-events {
    padding: 0;
    background: transparent;
}

.fox-news-sidebar {
    width: 100%;
    margin: 0;
}

.fox-news-sidebar__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
    padding: 15px 0 0;
    list-style: none;
}

.fox-news-sidebar__link {
    display: inline-block;
    color: var(--fox-ink);
    font-family: "Roboto Slab", serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
    text-decoration: none;
}

.fox-news-sidebar__item:first-child {
    margin-bottom: 2px;
    padding-bottom: 10px;
}

.fox-news-sidebar__item:first-child .fox-news-sidebar__link {
    font-size: 1.5rem;
    font-weight: 700;
}

.fox-news-sidebar__link:hover {
    text-decoration: underline;
    text-underline-offset: .2em;
}

.fox-news-sidebar__link:focus-visible {
    outline: 3px solid var(--fox-green);
    outline-offset: 4px;
}

@media (max-width: 56.24rem) {
    .page-content-shell--with-sidebar {
        grid-template-columns: minmax(0, 1fr);
        gap: 45px;
    }
}

.content {
    overflow: hidden;
}

/* Transparent live-style header with a consistent burger menu. */
.site-header {
    position: absolute;
    z-index: 1000;
    top: 0;
    left: 0;
    display: grid;
    width: 100%;
    min-height: 100px;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 24px;
    padding: 0 clamp(22px, 4vw, 62px);
    border: 0;
    background: transparent;
    box-shadow: none;
    transition: background-color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
    position: fixed;
    background: rgb(5 5 5 / 97%);
    box-shadow: 0 4px 20px rgb(0 0 0 / 20%);
}

.header-logo {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
}

.header-logo img {
    width: auto;
    max-width: 225px;
    height: 80px;
    max-height: 80px;
    filter: brightness(0) invert(1);
}

.site-header.navigation-enhanced .header-menu-toggle {
    display: block;
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    justify-self: start;
}

.header-menu-toggle {
    width: 48px;
    height: 48px;
    border: 0;
    color: #fff;
}

.header-menu-toggle__icon,
.header-menu-toggle__icon::before,
.header-menu-toggle__icon::after {
    width: 27px;
    height: 2px;
}

.header-menu-toggle__icon::before { top: -8px; }
.header-menu-toggle__icon::after { top: 8px; }

.header-actions {
    display: flex;
    grid-column: 3;
    grid-row: 1;
    align-items: center;
    justify-self: end;
}

.header-search { display: none; }

.header-actions .button-light {
    min-width: 148px;
    min-height: 48px;
    padding: 0 24px;
    border-color: var(--fox-gold);
    background: var(--fox-gold);
    color: #111;
    font-size: 16px;
}

.header-actions .button-light:hover,
.header-actions .button-light:focus {
    border-color: #fff;
    background: #fff;
    color: #111;
}

.site-header.navigation-enhanced .main-navigation {
    position: absolute;
    z-index: 999;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    width: 100%;
    padding: 22px clamp(24px, 5vw, 80px) 30px;
    background: rgb(5 5 5 / 97%);
    box-shadow: 0 18px 30px rgb(0 0 0 / 20%);
}

.site-header.navigation-enhanced.is-menu-open .main-navigation { display: block; }

.main-navigation > ul {
    justify-content: center;
    gap: clamp(12px, 3vw, 46px);
}

.main-navigation a {
    min-height: auto;
    padding: 14px 0;
    color: #fff;
    font-size: 18px;
    line-height: 1.25;
}

.main-navigation .expand-subpages::after { border-color: #fff; }

.main-navigation .navigation-submenu {
    background: #fff;
}

.main-navigation .navigation-submenu a { color: #111; }

.page-contact .site-header,
.page-privacy-policy .site-header,
.page-terms-conditions .site-header,
.page-sitemap .site-header,
.page-search .site-header {
    position: relative;
    background: var(--fox-ink);
}

/* Home hero. */
.fox-home-hero-carousel {
    grid-column: 1 / -1;
    grid-row: 1;
    background: var(--fox-ink);
}

.fox-home-hero-carousel .nxb-banner--size-takeover {
    min-height: 100svh;
}

.fox-home-hero-carousel .nxb-banner__content {
    padding: 150px clamp(28px, 7vw, 110px) 95px;
}

.fox-home-hero-carousel .nxb-banner__content-inner {
    width: min(100%, 850px);
}

.fox-home-hero-carousel .nxb-banner__title {
    font-size: clamp(42px, 5.2vw, 76px);
    line-height: 1.05;
}

.fox-home-hero-carousel .nxb-banner__intro {
    max-width: 760px;
    margin-inline: auto;
    font-size: clamp(17px, 1.35vw, 21px);
}

.fox-home-hero-carousel .nxb-banner__buttons {
    gap: 12px;
}

.nxb-banner__button,
.nxb-text-block__button,
.nxb-simple-pods__link {
    min-height: 48px;
    padding: 11px 20px;
    border-width: 1px;
    border-radius: 0;
    font-size: 15px;
    letter-spacing: .01em;
}

.nxb-banner__button--primary,
.nxb-text-block__button--primary {
    border-color: var(--fox-gold);
    background: var(--fox-gold);
    color: #111;
}

.nxb-banner__button--secondary,
.nxb-text-block__button--secondary {
    border-color: #fff;
    background: #fff;
    color: #111;
}

.nxb-banner__button:hover,
.nxb-text-block__button:hover {
    border-color: #fff;
    background: transparent;
    color: #fff;
    filter: none;
}

.fox-home-hero-carousel .nxb-banner-carousel__arrow {
    border: 0;
    background: transparent;
}

.fox-home-hero-carousel .nxb-banner-carousel__dots {
    bottom: 28px;
    background: transparent;
}

.fox-home-hero-carousel .nxb-banner-carousel__toggle {
    bottom: 24px;
    border: 0;
    background: transparent;
}

/* Home split sections built from existing Text Block and Gallery blocks. */
.page-home .page-content-shell__main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.fox-home-panel,
.fox-home-dine {
    position: relative;
    z-index: 1;
    display: flex;
    min-width: 0;
    align-items: center;
    padding: clamp(65px, 7vw, 110px);
    background: linear-gradient(135deg, var(--fox-green) 0%, var(--fox-green-deep) 100%);
    color: #fff;
}

.fox-home-panel { min-height: var(--fox-section-height); }

.fox-home-panel .nxb-text-block__inner,
.fox-home-dine .nxb-text-block__inner {
    width: min(100%, 610px);
    margin: 0;
}

.fox-home-panel .nxb-text-block__secondary-heading,
.fox-home-dine .nxb-text-block__secondary-heading {
    color: var(--fox-gold);
}

.fox-home-panel .nxb-text-block__heading,
.fox-home-dine .nxb-text-block__heading {
    color: #fff;
    font-size: clamp(34px, 3.6vw, 54px);
}

.fox-home-panel .nxb-text-block__content,
.fox-home-dine .nxb-text-block__content {
    color: #f1f1f1;
}

.fox-home-panel--charm { grid-column: 1; grid-row: 2; }
.fox-home-media--charm { grid-column: 2; grid-row: 2; }
.fox-home-dine { grid-column: 1 / -1; grid-row: 3; }
.fox-home-dine-gallery { grid-column: 1 / -1; grid-row: 4; }
.fox-home-panel--bar { grid-column: 2; grid-row: 5; }
.fox-home-media--bar { grid-column: 1; grid-row: 5; }
.fox-home-panel--stay { grid-column: 1; grid-row: 6; }
.fox-home-media--stay { grid-column: 2; grid-row: 6; }

.fox-home-dine {
    min-height: 430px;
    justify-content: center;
    overflow: hidden;
    background: var(--fox-ink);
    text-align: center;
}

.fox-home-dine::before,
.fox-home-dine::after {
    position: absolute;
    z-index: -1;
    width: 360px;
    height: 360px;
    border: 1px solid rgb(232 222 167 / 12%);
    border-radius: 50%;
    content: "";
}

.fox-home-dine::before { top: -190px; left: -80px; }
.fox-home-dine::after { right: -100px; bottom: -220px; }

.fox-home-dine .nxb-text-block__inner { margin-inline: auto; }
.fox-home-dine .nxb-text-block__buttons { justify-content: center; }

.fox-home-media,
.fox-home-dine-gallery,
.fox-page-gallery {
    position: relative;
    min-width: 0;
    margin: 0;
    padding: 0;
    background: #111;
}

.fox-home-media { min-height: var(--fox-section-height); }
.fox-home-dine-gallery { min-height: 320px; }

.fox-home-media .nxb-gallery__viewport,
.fox-home-media .slick-list,
.fox-home-media .slick-track,
.fox-home-media .slick-slide,
.fox-home-media .slick-slide > div,
.fox-home-media .nxb-gallery__item,
.fox-home-media .nxb-gallery__link,
.fox-home-media .nxb-gallery__image {
    height: 100%;
}

.fox-home-media .nxb-gallery__viewport { min-height: var(--fox-section-height); }
.fox-home-media .nxb-gallery__image { aspect-ratio: auto; }

.fox-home-dine-gallery .nxb-gallery__viewport,
.fox-home-dine-gallery .slick-list,
.fox-home-dine-gallery .slick-track,
.fox-home-dine-gallery .slick-slide,
.fox-home-dine-gallery .slick-slide > div,
.fox-home-dine-gallery .nxb-gallery__item,
.fox-home-dine-gallery .nxb-gallery__link,
.fox-home-dine-gallery .nxb-gallery__image {
    height: 320px;
}

.fox-home-dine-gallery .nxb-gallery__image { aspect-ratio: auto; }
.fox-home-dine-gallery.nxb-gallery--carousel { padding-bottom: 0; }

.fox-home-media .nxb-gallery__arrow,
.fox-page-gallery .nxb-gallery__arrow {
    border: 0;
    background: rgb(0 0 0 / 50%);
}

/* Inner-page heroes and split content. */
.fox-page-hero {
    grid-column: 1 / -1;
    min-height: 650px;
}

.fox-page-hero.nxb-banner--size-medium-crop { min-height: 650px; }

.fox-page-hero .nxb-banner__content {
    padding-top: 145px;
}

.fox-page-hero .nxb-banner__title {
    font-size: clamp(42px, 5vw, 70px);
}

.page-about-us .page-content-shell__main,
.page-dine-menus .page-content-shell__main,
.page-bar .page-content-shell__main,
.page-deluxe-king-rooms .page-content-shell__main,
.page-twin-room .page-content-shell__main,
.page-family-room .page-content-shell__main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.fox-page-copy {
    display: flex;
    min-width: 0;
    min-height: 760px;
    align-items: center;
    padding: clamp(60px, 6vw, 100px);
    background: #fff;
}

.fox-page-copy .nxb-text-block__inner {
    width: min(100%, 680px);
    margin: 0;
}

.fox-page-copy .nxb-text-block__heading {
    color: var(--fox-ink);
    font-size: clamp(34px, 3.3vw, 50px);
}

.fox-page-copy .nxb-text-block__secondary-heading {
    color: #7d6b20;
}

.fox-page-gallery {
    min-height: 760px;
}

.fox-page-gallery .nxb-gallery__viewport,
.fox-page-gallery .slick-list,
.fox-page-gallery .slick-track,
.fox-page-gallery .slick-slide,
.fox-page-gallery .slick-slide > div,
.fox-page-gallery .nxb-gallery__item,
.fox-page-gallery .nxb-gallery__link,
.fox-page-gallery .nxb-gallery__image {
    height: 100%;
    min-height: 760px;
}

.fox-page-gallery .nxb-gallery__image { aspect-ratio: auto; }

.page-bar .fox-page-copy { grid-column: 2; grid-row: 2; }
.page-bar .fox-page-gallery { grid-column: 1; grid-row: 2; }

.fox-page-pods {
    grid-column: 1 / -1;
    width: 100%;
    max-width: none;
    padding: clamp(60px, 7vw, 105px) clamp(24px, 6vw, 90px);
    background: #efefed;
}

.fox-page-pods .nxb-simple-pods__grid {
    max-width: 1350px;
    margin-inline: auto;
    gap: 30px;
}

.fox-page-pods .nxb-simple-pods__card {
    border: 0;
    border-radius: 0;
    box-shadow: 0 12px 35px rgb(0 0 0 / 9%);
}

.fox-page-pods .nxb-simple-pods__content { padding: 28px; }

.page-stay .fox-page-copy,
.page-news-events .fox-page-blog,
.page-book-a-table .fox-page-code {
    width: 100%;
}

.page-stay .fox-page-copy {
    min-height: auto;
    justify-content: center;
    padding-block: 85px;
}

.page-stay .fox-page-copy .nxb-text-block__inner {
    width: min(100% - 48px, 1120px);
    margin-inline: auto;
}

.page-book-a-table .fox-page-code {
    min-height: 700px;
    padding: 80px 24px;
    background: #fff;
}

.page-news-events .fox-page-blog { padding-top: 70px; }

.page-contact .page-content-shell__main {
    display: flex;
    flex-direction: column;
}

.page-contact .fox-page-code--contact {
    order: 1;
    min-height: 480px;
}

.page-contact .fox-contact-form {
    order: 2;
    padding-block: 85px;
}

/* Footer matching the live three-column information layout. */
.site-footer {
    min-height: 630px;
    background-color: var(--fox-ink);
    background-image: url('/media/pappcnpo/footer-bg-dog30.png');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100% auto;
}

.footer-inner {
    width: min(100% - 60px, 1350px);
    max-width: none;
    padding: 90px 0 185px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.15fr 1.2fr .65fr;
    gap: clamp(38px, 6vw, 95px);
}

.footer-logo { display: none; }

.footer-locations .nxb-simple-pods {
    width: 100%;
    margin: 0;
    padding: 0;
}

.footer-locations .nxb-simple-pods__grid { display: block; }

.footer-locations .nxb-simple-pods__card,
.footer-locations .nxb-simple-pods__content {
    min-height: 0;
    padding: 0;
}

.footer-locations .nxb-simple-pods__heading,
.footer-heading {
    margin: 0 0 26px;
    color: #fff;
    font-family: "Roboto Slab", serif;
    font-size: 27px;
    font-weight: 600;
}

.footer-locations .nxb-simple-pods__text {
    margin-top: 0;
    color: #fff;
    font-family: "Open Sans", sans-serif;
    line-height: 1.65;
}

.footer-locations .nxb-simple-pods__text p { margin-bottom: 13px; }

.footer-services-navigation ul,
.footer-social-navigation ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-services-navigation ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 46px;
}

.footer-social-navigation li + li { margin-top: 16px; }

.footer-services-navigation a,
.footer-social-navigation a {
    color: #fff;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    text-decoration: none;
}

.footer-services-navigation a:hover,
.footer-social-navigation a:hover { color: var(--fox-gold); }

.footer-bottom {
    margin-top: 70px;
    padding-top: 28px;
}

.footer-navigation,
.footer-navigation a,
.footer-navigation button {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
}

.site-credit__dragon {
    width: 24px;
    height: 24px;
}

@media (max-width: 991px) {
    :root { --fox-section-height: 580px; }

    .site-header {
        min-height: 82px;
        padding-inline: 20px;
    }

    .header-logo img {
        max-width: 180px;
        height: 64px;
    }

    .header-actions .button-light {
        min-width: auto;
        min-height: 44px;
        padding-inline: 15px;
    }

    .site-header.navigation-enhanced .main-navigation {
        padding: 10px 22px 28px;
    }

    .main-navigation > ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .main-navigation li,
    .main-navigation .navigation-submenu li {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        border-top: 1px solid rgb(255 255 255 / 14%);
    }

    .main-navigation .navigation-submenu {
        position: static;
        display: none;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
    }

    .main-navigation .has-child.is-submenu-open > .navigation-submenu { display: block; }

    .page-home .page-content-shell__main,
    .page-about-us .page-content-shell__main,
    .page-dine-menus .page-content-shell__main,
    .page-bar .page-content-shell__main,
    .page-deluxe-king-rooms .page-content-shell__main,
    .page-twin-room .page-content-shell__main,
    .page-family-room .page-content-shell__main {
        display: block;
    }

    .fox-home-panel,
    .fox-home-media,
    .fox-page-copy,
    .fox-page-gallery {
        min-height: 580px;
    }

    .fox-home-panel,
    .fox-page-copy { padding: 64px clamp(30px, 7vw, 70px); }

    .fox-home-media .nxb-gallery__viewport,
    .fox-page-gallery .nxb-gallery__viewport,
    .fox-page-gallery .slick-list,
    .fox-page-gallery .slick-track,
    .fox-page-gallery .slick-slide,
    .fox-page-gallery .slick-slide > div,
    .fox-page-gallery .nxb-gallery__item,
    .fox-page-gallery .nxb-gallery__link,
    .fox-page-gallery .nxb-gallery__image {
        min-height: 580px;
        height: 580px;
    }

    .fox-page-hero,
    .fox-page-hero.nxb-banner--size-medium-crop { min-height: 520px; }

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

    .footer-social-navigation { grid-column: 1 / -1; }

    .footer-navigation ul {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px 25px;
    }

    .footer-navigation li,
    .footer-navigation li + li { margin: 0; }

    .footer-navigation .site-credit { margin-left: auto; }
}

@media (max-width: 640px) {
    :root { --fox-section-height: 460px; }

    .site-header {
        display: grid;
        grid-template-columns: 48px minmax(0, 1fr) auto;
        gap: 10px;
        min-height: 74px;
        padding: 0 13px;
    }

    .header-logo img {
        max-width: 130px;
        height: 56px;
    }

    .header-actions .button-light {
        min-height: 40px;
        padding-inline: 10px;
        font-size: 13px;
    }

    .header-menu-toggle { width: 42px; height: 42px; }
    .header-menu-toggle__icon { top: 18px; }

    .fox-home-hero-carousel .nxb-banner--size-takeover { min-height: 78svh; }

    .fox-home-hero-carousel .nxb-banner__content {
        padding: 115px 30px 72px;
    }

    .fox-home-hero-carousel .nxb-banner__title,
    .fox-page-hero .nxb-banner__title { font-size: 36px; }

    .fox-home-hero-carousel .nxb-banner__intro { font-size: 16px; }

    .fox-home-panel,
    .fox-page-copy {
        min-height: 0;
        padding: 52px 26px;
    }

    .fox-home-media,
    .fox-home-media .nxb-gallery__viewport,
    .fox-home-media .slick-list,
    .fox-home-media .slick-track,
    .fox-home-media .slick-slide,
    .fox-home-media .slick-slide > div,
    .fox-home-media .nxb-gallery__item,
    .fox-home-media .nxb-gallery__link,
    .fox-home-media .nxb-gallery__image,
    .fox-page-gallery,
    .fox-page-gallery .nxb-gallery__viewport,
    .fox-page-gallery .slick-list,
    .fox-page-gallery .slick-track,
    .fox-page-gallery .slick-slide,
    .fox-page-gallery .slick-slide > div,
    .fox-page-gallery .nxb-gallery__item,
    .fox-page-gallery .nxb-gallery__link,
    .fox-page-gallery .nxb-gallery__image {
        min-height: 390px;
        height: 390px;
    }

    .fox-home-dine {
        min-height: 420px;
        padding: 58px 26px;
    }

    .fox-home-dine-gallery,
    .fox-home-dine-gallery .nxb-gallery__viewport,
    .fox-home-dine-gallery .slick-list,
    .fox-home-dine-gallery .slick-track,
    .fox-home-dine-gallery .slick-slide,
    .fox-home-dine-gallery .slick-slide > div,
    .fox-home-dine-gallery .nxb-gallery__item,
    .fox-home-dine-gallery .nxb-gallery__link,
    .fox-home-dine-gallery .nxb-gallery__image {
        min-height: 220px;
        height: 220px;
    }

    .fox-page-hero,
    .fox-page-hero.nxb-banner--size-medium-crop { min-height: 430px; }

    .fox-page-hero .nxb-banner__content { padding: 110px 26px 55px; }

    .fox-page-pods { padding: 52px 20px; }

    .footer-inner {
        width: min(100% - 40px, 1350px);
        padding: 65px 0 145px;
    }

    .footer-main { grid-template-columns: 1fr; gap: 42px; }
    .footer-social-navigation { grid-column: auto; }
    .footer-services-navigation ul { grid-template-columns: 1fr 1fr; }

    .footer-navigation ul {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-navigation .site-credit { margin-left: 0; }
}

/* Live-site parity refinements (August 2026 fixes). */
body.navigation-open { overflow: hidden; }

.header-logo img {
    height: 72px;
    max-height: 72px;
}

.header-actions .button-light {
    min-width: 140px;
    min-height: 42px;
    gap: 9px;
    padding-inline: 18px;
}

.header-cta-icon,
.nxb-banner__button-icon {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

.nxb-banner__button--with-icon {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.site-header.is-menu-open {
    position: fixed;
    inset: 0;
    display: block;
    width: 100%;
    height: 100svh;
    min-height: 100svh;
    overflow-y: auto;
    padding: 0;
    background: #050505;
    box-shadow: none;
}

.site-header.is-menu-open .header-logo {
    position: absolute;
    top: 0;
    left: 50%;
    display: flex;
    width: max-content;
    height: 100px;
    align-items: center;
    transform: translateX(-50%);
}

.site-header.is-menu-open .header-menu-toggle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
}

.site-header.is-menu-open .header-actions {
    position: absolute;
    top: 29px;
    right: clamp(22px, 4vw, 62px);
    display: flex;
}

.site-header.navigation-enhanced.is-menu-open .main-navigation {
    position: absolute;
    top: 200px;
    right: 0;
    left: 0;
    display: block;
    width: 100%;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.site-header.is-menu-open .main-navigation > ul {
    display: flex;
    width: min(calc(100% - 40px), 768px);
    margin-inline: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
}

.site-header.is-menu-open .main-navigation li {
    display: block;
    width: 100%;
    border: 0;
    text-align: center;
}

.site-header.is-menu-open .main-navigation a {
    display: flex;
    height: 50px;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: #fff;
    font-size: 24px;
    line-height: 24px;
}

.site-header.is-menu-open .main-navigation .expand-subpages,
.site-header.is-menu-open .main-navigation .navigation-submenu {
    display: none !important;
}

.site-header.is-menu-open .header-search {
    position: fixed;
    top: 450px;
    left: 50%;
    display: block;
    width: min(calc(100% - 40px), 460px);
    transform: translateX(-50%);
}

.site-header.is-menu-open .header-search summary { display: none; }

.site-header.is-menu-open .header-search form {
    position: static;
    display: flex !important;
    width: 100%;
    min-width: 0;
    height: 50px;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.site-header.is-menu-open .header-search input {
    width: calc(100% - 50px);
    height: 50px;
    border: 0;
    border-radius: 0;
    padding: 0 17px;
    font-size: 16px;
}

.site-header.is-menu-open .header-search button {
    position: relative;
    width: 50px;
    height: 50px;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: #fff;
    color: transparent;
    font-size: 0;
}

.site-header.is-menu-open .header-search button::before {
    position: absolute;
    top: 15px;
    left: 14px;
    width: 15px;
    height: 15px;
    border: 2px solid #111;
    border-radius: 50%;
    content: "";
}

.site-header.is-menu-open .header-search button::after {
    position: absolute;
    top: 30px;
    left: 29px;
    width: 9px;
    height: 2px;
    background: #111;
    content: "";
    transform: rotate(45deg);
    transform-origin: left center;
}

.fox-home-hero-carousel .nxb-banner__content-inner { width: min(100%, 1100px); }

.fox-home-hero-carousel .nxb-banner__title {
    font-size: 50px;
    line-height: 60px;
}

.fox-home-hero-carousel .nxb-banner__intro {
    max-width: 980px;
    font-size: 18px;
    line-height: 27px;
}

.fox-home-hero-carousel .nxb-banner__button {
    min-height: 42px;
    padding: 9px 18px;
    font-size: 16px;
}

.fox-home-hero-carousel .nxb-banner-carousel__dots,
.fox-home-hero-carousel .nxb-banner-carousel__toggle { bottom: 18px; }

.fox-scroll-cue {
    position: absolute;
    z-index: 6;
    bottom: 23px;
    left: 50%;
    display: block;
    width: 22px;
    height: 36px;
    border: 2px solid #fff;
    border-radius: 12px;
    color: #fff;
    transform: translateX(-50%);
}

.fox-scroll-cue::after {
    position: absolute;
    top: 7px;
    left: 50%;
    width: 2px;
    height: 7px;
    border-radius: 2px;
    background: currentColor;
    content: "";
    transform: translateX(-50%);
    animation: fox-scroll-wheel 1.8s ease-in-out infinite;
}

@keyframes fox-scroll-wheel {
    0%, 100% { opacity: .35; transform: translate(-50%, 0); }
    50% { opacity: 1; transform: translate(-50%, 7px); }
}

.page-home .page-content-shell__main,
.page-about-us .page-content-shell__main,
.page-dine-menus .page-content-shell__main,
.page-bar .page-content-shell__main,
.page-deluxe-king-rooms .page-content-shell__main,
.page-twin-room .page-content-shell__main,
.page-family-room .page-content-shell__main {
    display: block;
}

.fox-composite-section {
    width: 100%;
    min-width: 0;
    margin: 0;
}

.fox-composite-section > section {
    min-width: 0;
    margin: 0;
}

.fox-composite-section--home {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fox-composite-section--home:not(.fox-composite-section--dine) > section {
    grid-row: 1 !important;
    min-height: 713px;
}

.fox-composite-section--home .fox-home-panel {
    grid-column: 1;
    min-height: 713px;
    padding: clamp(62px, 6.5vw, 100px);
}

.fox-composite-section--home .fox-home-media {
    grid-column: 2;
    min-height: 713px;
}

.fox-composite-section--home .fox-home-media .nxb-gallery__viewport,
.fox-composite-section--home .fox-home-media .slick-list,
.fox-composite-section--home .fox-home-media .slick-track,
.fox-composite-section--home .fox-home-media .slick-slide,
.fox-composite-section--home .fox-home-media .slick-slide > div,
.fox-composite-section--home .fox-home-media .nxb-gallery__item,
.fox-composite-section--home .fox-home-media .nxb-gallery__link,
.fox-composite-section--home .fox-home-media .nxb-gallery__image {
    height: 713px;
    min-height: 713px;
}

.fox-composite-section--bar .fox-home-media {
    grid-column: 1;
}

.fox-composite-section--bar .fox-home-panel {
    grid-column: 2;
}

.fox-composite-section--dine {
    display: block;
}

.fox-composite-section--dine .fox-home-dine {
    min-height: 410px;
    padding-block: 64px;
}

.fox-composite-section--dine .fox-home-dine-gallery,
.fox-composite-section--dine .fox-home-dine-gallery .nxb-gallery__viewport,
.fox-composite-section--dine .fox-home-dine-gallery .slick-list,
.fox-composite-section--dine .fox-home-dine-gallery .slick-track,
.fox-composite-section--dine .fox-home-dine-gallery .slick-slide,
.fox-composite-section--dine .fox-home-dine-gallery .slick-slide > div,
.fox-composite-section--dine .fox-home-dine-gallery .nxb-gallery__item,
.fox-composite-section--dine .fox-home-dine-gallery .nxb-gallery__link,
.fox-composite-section--dine .fox-home-dine-gallery .nxb-gallery__image {
    height: 204px;
    min-height: 204px;
}

.fox-composite-section--page {
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    align-items: start;
    padding: 60px clamp(24px, 2.6vw, 38px);
    background: #fff;
}

.fox-composite-section--page > .fox-page-copy {
    grid-column: 1;
    grid-row: 1;
    min-height: 0;
    align-items: flex-start;
    padding: 0 12px;
    background: transparent;
}

.fox-composite-section--page > .fox-page-copy .nxb-text-block__inner {
    width: 100%;
    max-width: none;
}

.fox-composite-section--page > .fox-page-copy .nxb-text-block__content {
    font-size: 18px;
    line-height: 27px;
}

.fox-composite-section--page > .fox-page-gallery {
    grid-column: 2;
    grid-row: 1;
    min-height: 0;
    padding: 0 12px;
    background: transparent;
}

.fox-composite-section--page > .fox-page-gallery .nxb-gallery__viewport {
    display: grid;
    height: auto;
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 24px;
}

.fox-composite-section--page > .fox-page-gallery .nxb-gallery__item,
.fox-composite-section--page > .fox-page-gallery .nxb-gallery__link,
.fox-composite-section--page > .fox-page-gallery .nxb-gallery__image {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 1;
}

.fox-composite-section--page > .fox-page-gallery .nxb-gallery__image { object-fit: cover; }

.fox-composite-section--bar > .fox-page-gallery {
    grid-column: 1;
}

.fox-composite-section--bar > .fox-page-copy {
    grid-column: 2;
}

.fox-composite-section--deluxe-king-rooms,
.fox-composite-section--twin-room,
.fox-composite-section--family-room {
    background: linear-gradient(135deg, var(--fox-green) 0%, var(--fox-green-deep) 100%);
}

.fox-composite-section--deluxe-king-rooms > .fox-page-copy,
.fox-composite-section--twin-room > .fox-page-copy,
.fox-composite-section--family-room > .fox-page-copy,
.fox-composite-section--deluxe-king-rooms .nxb-text-block__content,
.fox-composite-section--twin-room .nxb-text-block__content,
.fox-composite-section--family-room .nxb-text-block__content {
    color: #fff;
}

.fox-composite-section--deluxe-king-rooms .nxb-text-block__heading,
.fox-composite-section--twin-room .nxb-text-block__heading,
.fox-composite-section--family-room .nxb-text-block__heading {
    color: #fff;
}

.fox-composite-section--deluxe-king-rooms .nxb-text-block__secondary-heading,
.fox-composite-section--twin-room .nxb-text-block__secondary-heading,
.fox-composite-section--family-room .nxb-text-block__secondary-heading {
    color: var(--fox-gold);
}

.page-about-us .fox-page-copy--about-us {
    min-height: 0;
    padding: 60px clamp(36px, 3.4vw, 50px);
}

.page-about-us .fox-page-copy--about-us .nxb-text-block__inner {
    width: 100%;
    max-width: 1350px;
}

.page-about-us .fox-page-gallery--about-us {
    min-height: 0;
    background: #111;
}

.page-about-us .fox-page-gallery--about-us .nxb-gallery__viewport {
    display: grid;
    height: auto;
    min-height: 0;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
}

.page-about-us .fox-page-gallery--about-us .nxb-gallery__item,
.page-about-us .fox-page-gallery--about-us .nxb-gallery__link,
.page-about-us .fox-page-gallery--about-us .nxb-gallery__image {
    width: 100%;
    height: clamp(260px, 28vw, 404px);
    min-height: 0;
    aspect-ratio: auto;
    object-fit: cover;
}

.footer-inner { padding: 62px 0 185px; }

.footer-locations .nxb-simple-pods__heading,
.footer-heading {
    font-size: 25px;
    line-height: 1.25;
}

.footer-services-navigation a { font-size: 18px; }

.footer-social-navigation ul {
    display: flex;
    gap: 12px;
}

.footer-social-navigation li + li { margin-top: 0; }

.footer-social-link,
.footer-social-icon {
    display: flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
}

.footer-social-link {
    color: #fff !important;
    text-decoration: none;
}

.footer-social-link--facebook { background: #1877f2; }
.footer-social-link--tripadvisor { background: #34e0a1; color: #111 !important; }

.footer-social-link--facebook .footer-social-icon {
    align-items: flex-end;
    font-family: Arial, sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 43px;
}

.footer-social-link--tripadvisor .footer-social-icon { padding: 7px; }

.footer-cookie-settings { display: none; }
.footer-bottom { border-top: 0; }

@media (max-width: 991px) {
    .site-header.is-menu-open { min-height: 100svh; padding: 0; }

    .site-header.navigation-enhanced.is-menu-open .main-navigation {
        top: 150px;
        padding: 0;
    }

    .site-header.is-menu-open .header-search { top: 410px; }

    .fox-composite-section--home:not(.fox-composite-section--dine) > section,
    .fox-composite-section--home .fox-home-panel,
    .fox-composite-section--home .fox-home-media,
    .fox-composite-section--home .fox-home-media .nxb-gallery__viewport,
    .fox-composite-section--home .fox-home-media .slick-list,
    .fox-composite-section--home .fox-home-media .slick-track,
    .fox-composite-section--home .fox-home-media .slick-slide,
    .fox-composite-section--home .fox-home-media .slick-slide > div,
    .fox-composite-section--home .fox-home-media .nxb-gallery__item,
    .fox-composite-section--home .fox-home-media .nxb-gallery__link,
    .fox-composite-section--home .fox-home-media .nxb-gallery__image {
        height: 580px;
        min-height: 580px;
    }

    .fox-composite-section--page { padding: 50px 22px; }
}

@media (max-width: 640px) {
    .header-logo img { height: 56px; max-height: 56px; }

    .header-actions .button-light {
        min-width: 0;
        min-height: 40px;
        gap: 6px;
        padding-inline: 9px;
        font-size: 12px;
    }

    .header-cta-icon { width: 15px; height: 15px; }

    .site-header.is-menu-open .header-logo { height: 74px; }

    .site-header.is-menu-open .header-menu-toggle {
        width: 74px;
        height: 74px;
    }

    .site-header.is-menu-open .header-actions {
        top: 17px;
        right: 13px;
    }

    .site-header.navigation-enhanced.is-menu-open .main-navigation { top: 112px; }

    .site-header.is-menu-open .main-navigation a {
        height: 44px;
        min-height: 44px;
        font-size: 21px;
        line-height: 21px;
    }

    .site-header.is-menu-open .header-search { top: 352px; }

    .fox-home-hero-carousel .nxb-banner__content-inner { width: 100%; }

    .fox-home-hero-carousel .nxb-banner__title {
        font-size: 36px;
        line-height: 43px;
    }

    .fox-home-hero-carousel .nxb-banner__intro {
        font-size: 16px;
        line-height: 24px;
    }

    .fox-home-hero-carousel .nxb-banner__buttons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .fox-scroll-cue { bottom: 16px; }

    .fox-composite-section--home,
    .fox-composite-section--page {
        display: flex;
        padding: 0;
        flex-direction: column;
    }

    .fox-composite-section--home:not(.fox-composite-section--dine) > section,
    .fox-composite-section--home .fox-home-panel {
        height: auto;
        min-height: 0;
    }

    .fox-composite-section--home .fox-home-panel { padding: 52px 26px; }

    .fox-composite-section--home .fox-home-media,
    .fox-composite-section--home .fox-home-media .nxb-gallery__viewport,
    .fox-composite-section--home .fox-home-media .slick-list,
    .fox-composite-section--home .fox-home-media .slick-track,
    .fox-composite-section--home .fox-home-media .slick-slide,
    .fox-composite-section--home .fox-home-media .slick-slide > div,
    .fox-composite-section--home .fox-home-media .nxb-gallery__item,
    .fox-composite-section--home .fox-home-media .nxb-gallery__link,
    .fox-composite-section--home .fox-home-media .nxb-gallery__image {
        height: 390px;
        min-height: 390px;
    }

    .fox-composite-section--bar .fox-home-media { order: 2; }
    .fox-composite-section--bar .fox-home-panel { order: 1; }

    .fox-composite-section--dine .fox-home-dine { min-height: 420px; }

    .fox-composite-section--dine .fox-home-dine-gallery,
    .fox-composite-section--dine .fox-home-dine-gallery .nxb-gallery__viewport,
    .fox-composite-section--dine .fox-home-dine-gallery .slick-list,
    .fox-composite-section--dine .fox-home-dine-gallery .slick-track,
    .fox-composite-section--dine .fox-home-dine-gallery .slick-slide,
    .fox-composite-section--dine .fox-home-dine-gallery .slick-slide > div,
    .fox-composite-section--dine .fox-home-dine-gallery .nxb-gallery__item,
    .fox-composite-section--dine .fox-home-dine-gallery .nxb-gallery__link,
    .fox-composite-section--dine .fox-home-dine-gallery .nxb-gallery__image {
        height: 220px;
        min-height: 220px;
    }

    .fox-composite-section--page > .fox-page-copy,
    .fox-composite-section--page > .fox-page-gallery {
        width: 100%;
        min-height: 0;
        padding: 52px 26px;
    }

    .fox-composite-section--page > .fox-page-copy { order: 1; }

    .fox-composite-section--page > .fox-page-gallery {
        order: 2;
        height: auto;
        padding: 20px;
    }

    .fox-composite-section--page > .fox-page-gallery .nxb-gallery__viewport {
        height: auto;
        min-height: 0;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .fox-page-pods .nxb-simple-pods__grid {
        grid-template-columns: 1fr;
    }

    .page-about-us .fox-page-copy--about-us { padding: 52px 26px; }

    .page-about-us .fox-page-gallery--about-us .nxb-gallery__viewport {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .page-about-us .fox-page-gallery--about-us .nxb-gallery__item,
    .page-about-us .fox-page-gallery--about-us .nxb-gallery__link,
    .page-about-us .fox-page-gallery--about-us .nxb-gallery__image {
        height: 50vw;
    }

    .footer-inner { padding: 58px 0 145px; }
}

@media (prefers-reduced-motion: reduce) {
    .fox-scroll-cue::after { animation: none; }
}

/* Reusable mixed components: scoped to sidebar/footer placements. */
.nxb-reusable-components {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: clamp(20px, 3vw, 32px);
}

.nxb-reusable-components > *,
.nxb-reusable-components__item,
.nxb-reusable-components .nxb-text-block,
.nxb-reusable-components .nxb-text-block__inner,
.nxb-reusable-components .nxb-text-area,
.nxb-reusable-components .nxb-text-area__content {
    min-width: 0;
    max-width: 100%;
}

.nxb-reusable-components .nxb-simple-pods,
.nxb-reusable-components .nxb-text-block,
.nxb-reusable-components .nxb-text-area {
    width: 100%;
    margin: 0;
}

.nxb-reusable-components .nxb-text-block {
    padding-block: clamp(20px, 3vw, 32px);
}

.nxb-reusable-components .nxb-text-block__inner {
    width: 100%;
    padding-inline: clamp(18px, 3vw, 28px);
}

.nxb-reusable-components .nxb-text-block__intro { margin-bottom: 1.25rem; }
.nxb-reusable-components .nxb-text-block__outro { margin-top: 1.25rem; }
.nxb-reusable-components .nxb-text-block__buttons { flex-wrap: wrap; }

.nxb-reusable-components .nxb-text-block__button,
.nxb-reusable-components .nxb-text-area a {
    max-width: 100%;
    overflow-wrap: anywhere;
}

.nxb-reusable-components .nxb-text-area {
    box-sizing: border-box;
    padding: clamp(18px, 3vw, 28px);
    background: #fff;
    color: var(--fox-ink);
}

.nxb-reusable-components .nxb-text-area__content > :first-child { margin-top: 0; }
.nxb-reusable-components .nxb-text-area__content > :last-child { margin-bottom: 0; }

.nxb-reusable-components--footer { gap: 24px; }

.footer-locations .nxb-reusable-components .nxb-text-block,
.footer-locations .nxb-reusable-components .nxb-text-area {
    padding: 0;
    background: transparent;
    color: #fff;
}

.footer-locations .nxb-reusable-components .nxb-text-block__inner {
    width: 100%;
    padding: 0;
}

.footer-locations .nxb-reusable-components .nxb-text-block__heading,
.footer-locations .nxb-reusable-components .nxb-text-block__secondary-heading,
.footer-locations .nxb-reusable-components .nxb-text-block__content,
.footer-locations .nxb-reusable-components .nxb-text-block__intro-text,
.footer-locations .nxb-reusable-components .nxb-text-block__outro-text,
.footer-locations .nxb-reusable-components .nxb-text-area,
.footer-locations .nxb-reusable-components .nxb-text-area a {
    color: #fff;
}

.footer-locations .nxb-reusable-components .nxb-text-block__button {
    border-color: currentColor;
}
