:root {
    --text: #231f20;
    --brand: #308282;
    --brand-dark: #1f6666;
    --accent: #e17d0f;
    --accent-hover: #c96a00;
    --highlight: #fabe2a;
    --muted: #6a6a6a;
    --border: #e6e6e6;
    --bg-light: #f7f5f2;
    --font-display: "Berkshire Swash", cursive;
    --font-body: "Titillium Web", "Helvetica Neue", "Segoe UI", Arial, sans-serif;
}

html {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text);
    background: #fff;
    line-height: 1.5;
}

a {
    color: var(--brand);
    text-decoration: underline;
}

a:hover {
    color: var(--accent);
}

img {
    max-width: 100%;
    height: auto;
}

.fit {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

.title-h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 400;
    margin: 0 0 16px;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
    text-align: center;
}

.title-h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin: 0 0 14px;
    font-weight: 400;
    line-height: 1.2;
}

.title-h3 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin: 0 0 12px;
    font-weight: 400;
    line-height: 1.25;
    color: var(--text);
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.col {
    flex: 1 1 100%;
}

.col-p50 {
    flex: 1 1 calc(50% - 12px);
}

.col-p30 {
    flex: 1 1 30%;
}

.col-p70 {
    flex: 1 1 65%;
}

.col-p100 {
    flex: 1 1 100%;
}

/* Header */
.hdr {
    background: #fff;
    box-shadow: 0 1px 0 var(--border);
}

.top-bar {
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
    padding: 8px 0;
}

.hdr-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.hdr-contact-link {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    color: var(--text);
    text-decoration: none;
    font-size: 0.92rem;
}

.hdr-contact-link:hover {
    color: var(--accent);
}

.hdr-box {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0 0;
    position: relative;
}

.main-logo-box {
    text-decoration: none;
    flex-shrink: 0;
}

.main-logo {
    display: block;
    width: 380px;
    height: 120px;
    object-fit: contain;
}

.main-logo-text {
    font-family: "Berkshire Swash", cursive;
    font-size: 2.2rem;
    color: var(--text);
}

.nav-main-toggle,
.nav-main-close {
    display: none;
    color: var(--text);
    text-decoration: none;
    font-size: 1.4rem;
    padding: 8px;
}

.nav-main {
    display: flex;
    justify-content: flex-end;
}

.nav-main-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
}

.nav-main-link {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
}

.nav-main-item.is-active .nav-main-link,
.nav-main-link:hover {
    color: var(--accent);
}

.hdr-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    flex: 1 1 auto;
    justify-content: flex-end;
    min-width: 0;
}

.hdr-nav .cta-btn-item {
    margin: 0;
    flex-shrink: 0;
}

.hdr-nav .cta-btn-list {
    margin: 0;
}

.nav-main-toggle {
    flex-shrink: 0;
}

/* Messages */
.messages-bar {
    padding-top: 12px;
}

.message {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 8px;
}

.message-success {
    background: #e8f5e9;
    color: #2e7d32;
}

.message-error {
    background: #ffebee;
    color: #c62828;
}

/* Main */
.main {
    padding: 0 0 60px;
}

.cmp-frontpage .main {
    padding-top: 0;
}

.page-intro {
    padding: 40px 20px;
}

.page-heading {
    padding: 36px 0 0;
}

.page-heading .title-h2 {
    margin: 0;
    color: var(--text);
}

/* Hero slider */
.ban {
    position: relative;
    overflow: hidden;
}

.ban-sli-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ban-sli-item {
    display: none;
    position: relative;
    min-height: 600px;
}

.ban-sli-item.is-active {
    display: block;
}

.ban-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    z-index: 0;
}

.ban-img:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.55) 100%);
}

.ban-spacer {
    position: relative;
    z-index: 1;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 64px 0 72px;
}

.ban-content {
    width: 100%;
}

.ban-content .fit {
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ban-description {
    max-width: 760px;
    font-size: 1.05rem;
    margin-left: auto;
    margin-right: auto;
}

.ban-content .cta-btn-list {
    justify-content: center;
}

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

.nav-sli {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.nav-sli-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 10px;
}

.nav-sli-link {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

.nav-sli-item.is-active .nav-sli-link {
    background: var(--accent);
}

/* CTAs */
.cta-btn-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cta-btn-link {
    display: inline-flex;
    padding: 12px 22px;
    border-radius: 999px;
    text-decoration: none;
    background: var(--brand);
    color: #fff;
    font-weight: 700;
    border: 2px solid transparent;
    transition: background 0.2s, transform 0.2s;
}

.cta-btn-link:hover {
    background: var(--brand-dark);
    color: #fff;
    transform: translateY(-1px);
}

.cta-btn-item.has-bg .cta-btn-link {
    background: var(--accent);
}

.cta-btn-item.has-bg .cta-btn-link:hover {
    background: var(--accent-hover);
}

/* Sections */
.sec {
    padding: 56px 0;
}

.sec-bg {
    background: var(--bg-light);
}

.sec-n-content .row {
    align-items: center;
}

.sec-content-left .row {
    flex-direction: row-reverse;
}

.sec-img {
    width: 100%;
    border-radius: 12px;
    display: block;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* USPs */
.usp-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.usp-item {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    text-align: center;
}

.usp-title-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.usp-icon {
    color: var(--highlight);
    font-size: 2rem;
    line-height: 1;
}

.usp-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    color: var(--highlight);
    line-height: 1.2;
}

.usp-description {
    font-size: 1rem;
    color: var(--text);
}

/* Gallery */
.sec-n-gallery .intro-box {
    margin-bottom: 32px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.sec-n-gallery .intro-box p,
.sec-n-gallery .intro-box ul,
.sec-n-gallery .intro-box ol {
    text-align: center;
}

.sec-n-gallery .intro-box .title-h2 {
    margin-bottom: 18px;
}

.intro-box {
    margin-bottom: 28px;
}

.gal-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.photo-album-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.photo-album-link {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    text-decoration: none;
    aspect-ratio: 1 / 1;
}

.photo-album-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.photo-album-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.28);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.photo-album-ig {
    color: #fff;
    font-size: 3rem;
    opacity: 0.45;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.photo-album-link:hover .photo-album-overlay,
.photo-album-link:focus-visible .photo-album-overlay {
    opacity: 1;
}

.photo-album-link:hover .photo-album-ig,
.photo-album-link:focus-visible .photo-album-ig {
    opacity: 0.55;
    transform: scale(1.06);
}

.photo-album-link:hover .photo-album-img,
.photo-album-link:focus-visible .photo-album-img {
    transform: scale(1.04);
}

.gal-link {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    text-decoration: none;
}

.gal-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    font-size: 1.4rem;
    opacity: 0;
    transition: opacity 0.2s;
    z-index: 1;
    pointer-events: none;
}

.gal-link:hover .gal-icon {
    opacity: 1;
}

.gal-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.gal-link:hover .gal-img {
    transform: scale(1.05);
}

/* Gallery lightbox */
.gallery-lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox-overlay.is-open {
    display: flex;
}

body.lightbox-open {
    overflow: hidden;
}

.gallery-lightbox-stage {
    position: relative;
    max-width: 92vw;
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-lightbox-img {
    max-width: 92vw;
    max-height: 78vh;
    border-radius: 8px;
    display: block;
    object-fit: contain;
}

.gallery-lightbox-caption {
    margin-top: 14px;
    color: #fff;
    font-size: 1rem;
    text-align: center;
}

.gallery-lightbox-close,
.gallery-lightbox-prev,
.gallery-lightbox-next {
    position: absolute;
    border: none;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    cursor: pointer;
    font-size: 2rem;
    line-height: 1;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 10001;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover {
    background: rgba(255, 255, 255, 0.25);
}

.gallery-lightbox-close {
    top: 20px;
    right: 20px;
    font-size: 2.2rem;
}

.gallery-lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.gallery-lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

/* Side content sections */
.sec-n-content .title-h3,
.sec-n-cta .title-h2 {
    font-family: var(--font-display);
    font-weight: 400;
}

/* CTA section */
.sec-n-cta {
    position: relative;
    overflow: hidden;
}

.sec-bg-img-box {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.sec-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.sec-n-cta > .fit {
    position: relative;
    z-index: 1;
}

/* Footer */
.ftr {
    background: var(--bg-light);
    border-top: 1px solid var(--border);
    padding: 40px 0;
}

.contact-box {
    margin-bottom: 16px;
}

.contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-label {
    color: var(--text);
    text-decoration: none;
}

.ftr-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 20px;
}

.sm-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 14px;
}

.sm-link {
    color: var(--text);
    text-decoration: none;
    font-size: 1.4rem;
}

.sm-link:hover {
    color: var(--accent);
}

/* Catering video + Borrel feature */
.sec-n-video-feature {
    padding-top: 36px;
    padding-bottom: 12px;
}

.catering-feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: stretch;
}

@media (min-width: 900px) {
    .catering-feature-grid.has-video {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
        gap: 40px;
    }
}

.catering-feature-copy {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 0;
}

.catering-feature-text .title-h3 {
    margin-top: 0;
}

.catering-feature-text .cta-btn-bar,
.catering-feature-text .cta-btn-list {
    margin-top: 28px;
    margin-bottom: 8px;
}

.catering-feature-media {
    flex: 1 1 auto;
    min-height: 220px;
    display: flex;
}

.catering-feature-img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.catering-feature-video {
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.catering-video {
    display: block;
    width: 100%;
    max-width: 420px;
    height: auto;
    margin: 0 auto;
    border-radius: 12px;
    background: #111;
    object-fit: contain;
}

@media (min-width: 900px) {
    .catering-feature-grid.has-video .catering-feature-copy {
        height: 100%;
    }

    .catering-feature-grid.has-video .catering-feature-video {
        justify-content: stretch;
    }

    .catering-feature-grid.has-video .catering-video {
        max-width: none;
        margin: 0;
    }
}

/* Google reviews slider */
.sec-n-reviews {
    padding-top: 48px;
    padding-bottom: 48px;
}

.reviews-header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px 24px;
    margin-bottom: 28px;
}

.reviews-brand {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.reviews-google-logo {
    flex: 0 0 auto;
    margin-top: 6px;
}

.reviews-brand-copy .title-h2 {
    margin: 0 0 8px;
}

.reviews-summary {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
}

.reviews-score {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text);
}

.reviews-stars,
.review-stars {
    display: inline-flex;
    gap: 2px;
    color: #fbbc04;
    letter-spacing: 1px;
}

.reviews-star.is-empty {
    color: #d0d0d0;
}

.reviews-count {
    color: #666;
    font-size: .95rem;
}

.reviews-all-link {
    color: var(--brand);
    font-weight: 700;
    text-decoration: none;
}

.reviews-all-link:hover {
    color: var(--brand-dark);
    text-decoration: underline;
}

.reviews-slider {
    position: relative;
}

.reviews-viewport {
    overflow: hidden;
    width: 100%;
}

.reviews-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    width: 100%;
    transition: transform .45s ease;
    will-change: transform;
}

.reviews-item {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    padding: 0 6px;
    box-sizing: border-box;
}

@media (min-width: 900px) {
    .reviews-item {
        flex: 0 0 33.333333%;
        width: 33.333333%;
        max-width: 33.333333%;
        padding: 0 10px;
    }
}

.review-card {
    background: #fff;
    border: 1px solid var(--border, #e6e6e6);
    border-radius: 16px;
    padding: 28px 24px 24px;
    height: 100%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
    box-sizing: border-box;
}

.review-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.review-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.review-author {
    font-size: 1.05rem;
}

.review-time {
    font-size: .85rem;
    color: #777;
}

.review-stars {
    margin-bottom: 12px;
}

.review-text {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.55;
    color: var(--text);
}

.reviews-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 22px;
}

.reviews-arrow {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border, #e6e6e6);
    border-radius: 999px;
    background: #fff;
    color: var(--text);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
}

.reviews-arrow:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.reviews-dots {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 8px;
}

.reviews-dot button {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 0;
    padding: 0;
    background: #cfcfcf;
    cursor: pointer;
}

.reviews-dot.is-active button {
    background: var(--accent);
}

/* Take-away menu board */
.menu-board {
    margin-top: 8px;
    margin-bottom: 40px;
}

.menu-board > .title-h2 {
    margin-bottom: 28px;
}

.menu-category {
    margin-bottom: 36px;
}

.menu-category-title {
    margin: 0 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--accent);
}

.menu-item-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border, #e6e6e6);
}

.menu-item-main {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.menu-item-name {
    font-weight: 700;
    font-size: 1.05rem;
}

.menu-item-desc {
    color: #666;
    font-size: .95rem;
    line-height: 1.4;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.menu-item-price {
    flex-shrink: 0;
    font-weight: 800;
    color: var(--accent);
    font-size: 1.05rem;
    white-space: nowrap;
}

/* Contact form */
.contact-form {
    max-width: 640px;
    margin-top: 32px;
}

.form-row {
    margin-bottom: 16px;
}

.form-row label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}

.form-row input,
.form-row textarea,
.form-row select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font: inherit;
    background: #fff;
}

.form-row-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-hint {
    margin: 6px 0 0;
    font-size: .9rem;
    color: #666;
}

.btn.primary {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
    font: inherit;
}

.btn.primary:hover {
    background: var(--accent-hover);
}

/* Floating reservation button */
.res-float-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 99990;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    background: var(--accent);
    color: #fff;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .22);
    transition: background .2s ease, transform .2s ease;
}

.res-float-btn:hover {
    background: var(--accent-hover);
    color: #fff;
    transform: translateY(-2px);
}

.res-float-icon {
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 900px) {
    .usp-list,
    .gal-list {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .col-p50,
    .col-p30,
    .col-p70 {
        flex: 1 1 100%;
    }

    .sec-content-left .row {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .on-desktop {
        display: none;
    }

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

    .res-float-btn {
        right: 14px;
        bottom: 14px;
        padding: 12px 16px;
        font-size: .95rem;
    }

    .nav-main-toggle,
    .on-mobile-device {
        display: block;
    }

    .hdr-box {
        gap: 8px;
        padding: 10px 0 0;
    }

    .main-logo {
        width: 240px;
        height: auto;
        max-height: 78px;
    }

    .hdr-nav {
        gap: 6px;
        flex: 1 1 auto;
    }

    .hdr-nav .cta-btn-link {
        padding: 7px 10px;
        font-size: 0.72rem;
        line-height: 1.1;
    }

    .hdr-nav .cta-btn-label {
        white-space: nowrap;
    }

    .nav-main-toggle {
        padding: 6px;
        font-size: 1.2rem;
    }

    .nav-main {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.2s, visibility 0.2s;
    }

    .nav-main.is-open {
        opacity: 1;
        visibility: visible;
    }

    .nav-main-list {
        position: absolute;
        top: 0;
        right: 0;
        width: min(320px, 85vw);
        height: 100%;
        background: #fff;
        flex-direction: column;
        justify-content: flex-start;
        padding: 60px 24px 24px;
        gap: 0;
        overflow-y: auto;
    }

    .nav-main-item {
        border-bottom: 1px solid var(--border);
    }

    .nav-main-link {
        display: block;
        padding: 16px 0;
    }

    .nav-main-close {
        position: absolute;
        top: 16px;
        right: 16px;
        z-index: 1001;
    }

    .ban-sli-item,
    .ban-spacer {
        min-height: 420px;
    }

    .gallery-lightbox-prev {
        left: 10px;
    }

    .gallery-lightbox-next {
        right: 10px;
    }

    .usp-list,
    .gal-list {
        grid-template-columns: 1fr;
    }

    .photo-album-list {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 769px) {
    .on-mobile-device {
        display: none !important;
    }
}

/* Page banner */
.ban-page {
    position: relative;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ban-page .ban-content {
    position: relative;
    z-index: 1;
    padding: 60px 0;
}

.ban-page .ban-content .title-h1 {
    margin: 0;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,.45);
}

/* Marquee bar */
.marquee-bar {
    background: #e17d0f;
    overflow: hidden;
    white-space: nowrap;
    padding: 14px 0;
}

.marquee-track {
    display: inline-block;
    animation: marquee-scroll 35s linear infinite;
}

.marquee-text {
    font-family: 'Berkshire Swash', cursive;
    font-size: 1.35rem;
    font-weight: 400;
    color: #000;
    letter-spacing: .04em;
}

@keyframes marquee-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
