:root {
    --cab-cream: #fffaf0;
    --cab-paper: #f7ecd8;
    --cab-paper-deep: #ead9bd;
    --cab-brown: #2a160d;
    --cab-brown-soft: #5a3722;
    --cab-red: #781719;
    --cab-red-deep: #4f0d0e;
    --cab-copper: #bd6432;
    --cab-gold: #f4c64f;
    --cab-gold-soft: #ffe5a0;
    --cab-ink: #2c2723;
    --cab-muted: #74675d;
    --cab-line: rgba(42, 22, 13, .13);
    --cab-shadow: 0 22px 55px rgba(42, 22, 13, .18);
    --cab-shadow-soft: 0 12px 30px rgba(42, 22, 13, .1);
    --cab-shadow-deep: 0 30px 80px rgba(20, 9, 4, .38);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--cab-ink);
    background:
        radial-gradient(circle at 50% -10%, rgba(244, 198, 79, .16), transparent 34rem),
        linear-gradient(90deg, #2b170d 0%, #593619 18%, #24150e 50%, #593619 82%, #2b170d 100%);
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    text-rendering: optimizeLegibility;
}

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

a {
    text-decoration: none;
}

.site-header {
    background:
        linear-gradient(180deg, rgba(42, 22, 13, .96), rgba(42, 22, 13, .88));
    border-bottom: 1px solid rgba(244, 198, 79, .18);
    box-shadow: 0 16px 42px rgba(0, 0, 0, .18);
    backdrop-filter: blur(16px);
}

.navbar {
    padding: .75rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: .85rem;
    color: #fff;
}

.navbar-brand:hover {
    color: #fff;
}

.brand-logo,
.footer-logo {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow:
        0 0 0 2px rgba(255, 250, 240, .26),
        0 0 0 6px rgba(244, 198, 79, .12),
        0 10px 24px rgba(0, 0, 0, .25);
}

.navbar-brand strong {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
    letter-spacing: .01em;
}

.navbar-brand small {
    display: block;
    color: rgba(255, 248, 234, .72);
    font-size: .72rem;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.nav-link {
    position: relative;
    color: rgba(255, 248, 234, .78);
    font-size: .86rem;
    font-weight: 800;
    letter-spacing: .08em;
    padding-inline: .8rem !important;
    text-transform: uppercase;
    transition: color .2s ease, text-shadow .2s ease;
}

.nav-link:hover {
    color: #fff;
}

.navbar .nav-link.active,
.navbar .nav-link.show {
    color: var(--cab-gold) !important;
    text-shadow: 0 0 18px rgba(244, 198, 79, .28);
}

.navbar .nav-link::after {
    content: "";
    position: absolute;
    left: .8rem;
    right: .8rem;
    bottom: .22rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, var(--cab-gold), transparent);
    opacity: 0;
    transform: scaleX(.45);
    transition: opacity .2s ease, transform .2s ease;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    opacity: 1;
    transform: scaleX(1);
}

.navbar-toggler {
    border-color: rgba(255, 248, 234, .35);
}

.navbar-toggler-icon {
    filter: invert(1);
}

.btn-cab {
    --bs-btn-bg: linear-gradient(180deg, #9a2628, var(--cab-red-deep));
    --bs-btn-border-color: rgba(255, 229, 160, .3);
    --bs-btn-color: #fff;
    --bs-btn-hover-bg: var(--cab-red-deep);
    --bs-btn-hover-border-color: rgba(244, 198, 79, .55);
    --bs-btn-hover-color: #fff;
    background: linear-gradient(180deg, #9a2628, var(--cab-red-deep));
    border: 1px solid rgba(255, 229, 160, .28);
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: .88rem 1.45rem;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .22),
        0 14px 28px rgba(122, 24, 24, .28);
    transition: transform .2s ease, box-shadow .2s ease;
}

.btn-cab:hover {
    transform: translateY(-2px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .22),
        0 18px 36px rgba(122, 24, 24, .34);
}

.hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: #1d110b;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    opacity: .7;
    filter: saturate(.92) contrast(1.06);
    transform: scale(1.025);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 22% 42%, rgba(244, 198, 79, .14), transparent 24rem),
        linear-gradient(90deg, rgba(24, 13, 8, .95), rgba(24, 13, 8, .58) 52%, rgba(24, 13, 8, .82)),
        linear-gradient(0deg, rgba(24, 13, 8, .95), transparent 48%);
}

.hero .container {
    z-index: 1;
}

.eyebrow,
.section-kicker {
    color: var(--cab-gold);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .16em;
    margin-bottom: .9rem;
    text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
    content: "";
    display: inline-block;
    width: 32px;
    height: 1px;
    margin-right: .7rem;
    vertical-align: middle;
    background: currentColor;
}

h1,
h2,
h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 900;
}

.hero h1,
.page-hero h1 {
    max-width: 13ch;
    font-size: clamp(3rem, 6.4vw, 6.25rem);
    line-height: .95;
    letter-spacing: -.04em;
    text-wrap: balance;
}

.hero-copy,
.page-hero p {
    max-width: 46rem;
    color: rgba(255, 248, 234, .86);
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    line-height: 1.65;
    margin: 1.25rem 0 2rem;
}

.hero-showcase {
    position: relative;
    margin-top: 4rem;
    border: 1px solid rgba(255, 250, 240, .34);
    border-radius: 1.35rem;
    padding: .7rem;
    background: rgba(255, 250, 240, .1);
    box-shadow: var(--cab-shadow-deep);
    backdrop-filter: blur(8px);
}

.hero-showcase::before {
    content: "";
    position: absolute;
    inset: -1.4rem 1.8rem auto auto;
    width: 8rem;
    height: 8rem;
    border-top: 1px solid rgba(244, 198, 79, .55);
    border-right: 1px solid rgba(244, 198, 79, .55);
    pointer-events: none;
}

.hero-showcase img {
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: .9rem;
    object-fit: cover;
    object-position: 50% 42%;
}

.hero-showcase-note {
    position: absolute;
    left: -1.1rem;
    right: 1.4rem;
    bottom: 1.6rem;
    color: #fff;
    background: linear-gradient(135deg, rgba(42, 22, 13, .94), rgba(120, 23, 25, .9));
    border: 1px solid rgba(244, 198, 79, .32);
    border-radius: .9rem;
    padding: 1rem 1.1rem;
    box-shadow: 0 16px 36px rgba(0, 0, 0, .25);
}

.hero-showcase-note span {
    display: block;
    color: var(--cab-gold);
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .12em;
    margin-bottom: .25rem;
    text-transform: uppercase;
}

.hero-showcase-note strong {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.1rem;
    line-height: 1.15;
}

.intro-band {
    margin-top: -3.5rem;
    position: relative;
    z-index: 2;
}

.intro-card,
.contact-box {
    position: relative;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .92), rgba(255, 250, 240, .96)),
        var(--cab-cream);
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 1.6rem;
    box-shadow: var(--cab-shadow);
    padding: clamp(1.5rem, 4vw, 3rem);
}

.intro-card::before,
.contact-box::before {
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(244, 198, 79, .25);
    border-radius: 1.25rem;
    pointer-events: none;
}

.intro-card h2 {
    font-size: clamp(1.5rem, 3vw, 2.45rem);
    color: var(--cab-brown);
}

.intro-card p,
.lead,
.contact-box p {
    color: var(--cab-muted);
    line-height: 1.7;
}

.quick-contact {
    background:
        radial-gradient(circle at top left, rgba(244, 198, 79, .18), transparent 55%),
        linear-gradient(145deg, var(--cab-brown-soft), var(--cab-brown));
    border: 1px solid rgba(244, 198, 79, .22);
    border-radius: 1.15rem;
    padding: 1.35rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
}

.quick-contact span,
.contact-panel span,
.proof-card span,
.feature-tile span,
.menu-card span,
.link-panel span {
    display: block;
    color: var(--cab-copper);
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .12em;
    margin-bottom: .4rem;
    text-transform: uppercase;
}

.quick-contact a {
    display: block;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 900;
}

.section-pad {
    background:
        linear-gradient(180deg, rgba(255, 250, 240, .55), rgba(247, 236, 216, .9)),
        var(--cab-paper);
    padding: clamp(4rem, 8vw, 7rem) 0;
}

.cream-section {
    background: var(--cab-paper);
}

.dark-section {
    background:
        radial-gradient(circle at 80% 18%, rgba(244, 198, 79, .18), transparent 24rem),
        linear-gradient(135deg, rgba(120, 23, 25, .94), rgba(42, 22, 13, .97)),
        url("../assets/img/recent-van-side-service.jpeg") center/cover;
}

.editorial-section {
    background: linear-gradient(180deg, #fffaf0, #f3e4ca);
}

.display-title {
    color: var(--cab-brown);
    font-size: clamp(2rem, 4vw, 3.8rem);
    line-height: 1.04;
    letter-spacing: -.035em;
    text-wrap: balance;
}

.mosaic-frame {
    position: relative;
    min-height: 620px;
}

.mosaic-frame::before {
    content: "";
    position: absolute;
    inset: 3rem 4rem 2rem 0;
    border: 1px solid rgba(120, 23, 25, .18);
    border-radius: 1.4rem;
    background: rgba(255, 250, 240, .52);
}

.mosaic-main,
.mosaic-float {
    position: absolute;
    object-fit: cover;
    border: 1px solid rgba(255, 250, 240, .9);
    border-radius: 1rem;
    box-shadow: var(--cab-shadow);
}

.mosaic-main {
    inset: 0 0 auto 3rem;
    width: calc(100% - 3rem);
    height: 430px;
    object-position: 48% 42%;
}

.mosaic-float {
    left: 0;
    bottom: 0;
    width: 52%;
    height: 260px;
    object-position: center 42%;
    outline: 10px solid rgba(255, 250, 240, .78);
}

.image-card {
    border: 1px solid rgba(255, 255, 255, .76);
    border-radius: 1.35rem;
    overflow: hidden;
    box-shadow: var(--cab-shadow);
    background: #fff;
    padding: .55rem;
}

.image-card img {
    border-radius: .95rem;
}

.image-card-stack {
    display: grid;
    grid-template-columns: 1fr;
    gap: .55rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, .95), rgba(255, 250, 240, .88));
}

.image-card-stack img {
    height: auto;
    min-height: 0;
    width: 100%;
}

.image-card-stack img:first-child {
    aspect-ratio: 4 / 3;
    object-position: center 40%;
}

.image-card-stack img:last-child {
    aspect-ratio: 16 / 9;
    object-position: center 44%;
}

.image-card img,
.page-hero-img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}

.feature-tile,
.proof-card {
    height: 100%;
    background:
        linear-gradient(145deg, #fff, var(--cab-cream));
    border: 1px solid var(--cab-line);
    border-radius: .9rem;
    padding: 1.35rem;
    box-shadow: var(--cab-shadow-soft);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.feature-tile:hover,
.proof-card:hover {
    border-color: rgba(244, 198, 79, .45);
    box-shadow: 0 18px 38px rgba(42, 22, 13, .14);
    transform: translateY(-4px);
}

.feature-tile h3,
.proof-card h3 {
    color: var(--cab-brown);
    font-size: 1.1rem;
}

.feature-tile p,
.proof-card p {
    color: var(--cab-muted);
    margin-bottom: 0;
}

.link-panel {
    display: block;
    height: 100%;
    color: #fff;
    background: rgba(255, 250, 240, .09);
    border: 1px solid rgba(244, 198, 79, .22);
    border-radius: .95rem;
    padding: 1.55rem;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.link-panel:hover {
    color: #fff;
    background: rgba(255, 250, 240, .15);
    border-color: rgba(244, 198, 79, .45);
    transform: translateY(-3px);
}

.link-panel strong {
    display: block;
    font-size: 1.25rem;
}

.page-hero {
    color: #fff;
    background:
        radial-gradient(circle at 85% 0%, rgba(244, 198, 79, .18), transparent 30rem),
        linear-gradient(135deg, rgba(42, 22, 13, .96), rgba(120, 23, 25, .88)),
        url("../assets/img/recent-table-wide.jpeg") center/cover;
}

.page-hero.compact {
    padding: clamp(4rem, 9vw, 7rem) 0;
}

.page-hero-img,
.contact-logo {
    border: 1px solid rgba(255, 250, 240, .8);
    border-radius: 1.25rem;
    outline: 8px solid rgba(255, 250, 240, .15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
}

.page-hero-img {
    aspect-ratio: 4 / 3;
    min-height: 360px;
    object-position: center 44%;
}

.contact-logo {
    width: min(320px, 80vw);
    height: min(320px, 80vw);
    margin-left: auto;
    object-fit: cover;
    border-radius: 50%;
}

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

.event-chip {
    background: linear-gradient(145deg, #fff, var(--cab-cream));
    border: 1px solid var(--cab-line);
    border-left: 5px solid var(--cab-gold);
    border-radius: .85rem;
    color: var(--cab-brown);
    font-size: 1.05rem;
    font-weight: 900;
    padding: 1rem 1.15rem;
    box-shadow: var(--cab-shadow-soft);
}

.showcase-section {
    background:
        radial-gradient(circle at 20% 10%, rgba(244, 198, 79, .14), transparent 24rem),
        linear-gradient(135deg, rgba(42, 22, 13, .96), rgba(84, 26, 16, .94)),
        url("../assets/img/recent-table-close.jpeg") center/cover;
}

.event-showcase-panel {
    display: grid;
    grid-template-columns: 1.12fr .88fr;
    gap: clamp(1.5rem, 4vw, 3.2rem);
    align-items: center;
    color: #fff;
    background:
        radial-gradient(circle at 12% 15%, rgba(244, 198, 79, .16), transparent 18rem),
        linear-gradient(145deg, rgba(255, 250, 240, .13), rgba(255, 250, 240, .05));
    border: 1px solid rgba(244, 198, 79, .24);
    border-radius: 1.35rem;
    padding: clamp(1rem, 2.8vw, 2.2rem);
    box-shadow: var(--cab-shadow-deep);
    backdrop-filter: blur(8px);
}

.showcase-media-collage {
    position: relative;
    min-height: clamp(360px, 42vw, 500px);
}

.showcase-media-collage::before {
    content: "";
    position: absolute;
    inset: 1.2rem 4.2rem 3rem 1rem;
    border: 1px solid rgba(244, 198, 79, .28);
    border-radius: 1.15rem;
    transform: rotate(-2deg);
}

.showcase-main-photo,
.showcase-detail-photo {
    position: absolute;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 250, 240, .55);
    background: rgba(255, 250, 240, .14);
    box-shadow: 0 22px 46px rgba(0, 0, 0, .28);
}

.showcase-main-photo {
    left: 0;
    right: 3.5rem;
    top: 1rem;
    height: clamp(245px, 29vw, 340px);
    border-radius: 1.05rem;
    padding: .55rem;
}

.showcase-main-photo img,
.showcase-detail-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-main-photo img {
    border-radius: .72rem;
    object-position: center 45%;
}

.showcase-main-photo figcaption {
    position: absolute;
    left: 1.15rem;
    bottom: 1.15rem;
    color: var(--cab-brown);
    background: rgba(255, 250, 240, .92);
    border: 1px solid rgba(244, 198, 79, .38);
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .09em;
    padding: .55rem .85rem;
    text-transform: uppercase;
}

.showcase-detail-photo {
    border-radius: .9rem;
    padding: .42rem;
}

.showcase-detail-photo img {
    border-radius: .58rem;
}

.detail-one {
    right: 0;
    bottom: 2.3rem;
    width: 35%;
    height: clamp(150px, 18vw, 215px);
    transform: rotate(3deg);
}

.detail-one img {
    object-position: center 45%;
}

.detail-two {
    left: 8%;
    bottom: .4rem;
    width: 34%;
    height: clamp(128px, 15vw, 180px);
    transform: rotate(-3deg);
}

.detail-two img {
    object-position: center 42%;
}

.showcase-copy {
    padding: clamp(1rem, 3vw, 2rem);
}

.showcase-copy-elevated {
    position: relative;
    border-left: 1px solid rgba(244, 198, 79, .28);
}

.showcase-copy-elevated::before {
    content: "Events catered for";
    display: inline-block;
    color: rgba(255, 250, 240, .7);
    border: 1px solid rgba(255, 250, 240, .16);
    border-radius: 999px;
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .12em;
    margin-bottom: 1rem;
    padding: .45rem .7rem;
    text-transform: uppercase;
}

.showcase-copy h2 {
    max-width: 11ch;
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.02;
    text-wrap: balance;
}

.showcase-copy p {
    color: rgba(255, 248, 234, .78);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 34rem;
}

.showcase-points {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin-top: 1.4rem;
}

.showcase-points span {
    color: var(--cab-gold-soft);
    background: rgba(255, 250, 240, .08);
    border: 1px solid rgba(244, 198, 79, .25);
    border-radius: 999px;
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .08em;
    padding: .55rem .8rem;
    text-transform: uppercase;
}

.showcase-badge-photo {
    position: absolute;
    right: -1rem;
    bottom: -1.2rem;
    width: min(180px, 34%);
    aspect-ratio: 4 / 3;
    border: 6px solid rgba(255, 250, 240, .88);
    border-radius: .85rem;
    box-shadow: 0 16px 34px rgba(0, 0, 0, .28);
    object-fit: cover;
    object-position: center 46%;
}

.sticky-note {
    position: sticky;
    top: 7rem;
    background: linear-gradient(145deg, #fff, var(--cab-cream));
    border: 1px solid var(--cab-line);
    border-radius: 1.25rem;
    box-shadow: var(--cab-shadow);
    overflow: hidden;
}

.sticky-note img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center 42%;
}

.sticky-note h2,
.sticky-note p,
.sticky-note .btn {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
}

.sticky-note h2 {
    margin-top: 1.25rem;
    color: var(--cab-brown);
}

.sticky-note p {
    color: var(--cab-muted);
}

.sticky-note .btn {
    margin-bottom: 1.25rem;
}

.menu-list {
    display: grid;
    gap: 1rem;
}

.menu-card {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    background: linear-gradient(145deg, #fff, var(--cab-cream));
    border: 1px solid var(--cab-line);
    border-radius: .9rem;
    padding: 1.3rem 1.35rem;
    box-shadow: var(--cab-shadow-soft);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.menu-card:hover {
    border-color: rgba(244, 198, 79, .48);
    box-shadow: 0 18px 38px rgba(42, 22, 13, .13);
    transform: translateY(-3px);
}

.menu-card h2 {
    color: var(--cab-brown);
    font-size: 1.25rem;
    margin-bottom: .25rem;
    text-transform: uppercase;
}

.menu-card p {
    color: var(--cab-muted);
    margin-bottom: 0;
}

.menu-card span {
    flex: 0 0 auto;
    color: var(--cab-red);
    background: rgba(244, 198, 79, .18);
    border: 1px solid rgba(244, 198, 79, .35);
    border-radius: 999px;
    height: fit-content;
    padding: .35rem .7rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 230px;
    gap: 1.1rem;
}

.gallery-item {
    border: 1px solid rgba(255, 250, 240, .78);
    border-radius: 1rem;
    box-shadow: var(--cab-shadow);
    cursor: pointer;
    overflow: hidden;
    padding: 0;
}

.gallery-wide {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.98) contrast(1.04);
    transition: transform .35s ease, filter .35s ease;
}

.gallery-item:hover img {
    filter: saturate(1.08) contrast(1.08);
    transform: scale(1.05);
}

.photo-modal {
    background: transparent;
    border: 0;
}

.photo-modal .btn-close {
    align-self: flex-end;
    margin-bottom: .75rem;
}

.photo-modal img {
    width: 100%;
    max-height: 82vh;
    object-fit: contain;
    border-radius: 1rem;
}

.contact-panel {
    display: block;
    height: 100%;
    background: linear-gradient(145deg, #fff, var(--cab-cream));
    border: 1px solid var(--cab-line);
    border-radius: 1rem;
    color: var(--cab-brown);
    padding: 1.5rem;
    box-shadow: var(--cab-shadow-soft);
    overflow-wrap: anywhere;
}

.contact-panel:hover {
    color: var(--cab-red);
    border-color: rgba(244, 198, 79, .48);
}

.contact-panel strong {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
}

.contact-form {
    display: grid;
    gap: .75rem;
}

.contact-form label {
    color: var(--cab-brown);
    font-weight: 900;
}

.form-control {
    border-color: var(--cab-line);
    border-radius: .9rem;
    padding: .85rem 1rem;
}

.site-footer {
    color: rgba(255, 248, 234, .78);
    background:
        radial-gradient(circle at top left, rgba(244, 198, 79, .1), transparent 28rem),
        #140b07;
    padding: 4rem 0 2rem;
}

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

.site-footer h2,
.site-footer h3 {
    color: #fff;
}

.site-footer h3 {
    font-size: .9rem;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.site-footer a {
    display: block;
    color: rgba(255, 248, 234, .78);
    margin-bottom: .45rem;
}

.site-footer a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid rgba(255, 248, 234, .12);
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    font-size: .9rem;
}

@media (max-width: 991px) {
    .navbar-nav {
        padding-top: 1rem;
    }

    .hero h1,
    .page-hero h1 {
        max-width: 100%;
    }

    .contact-logo {
        margin-left: 0;
    }

    .mosaic-frame {
        min-height: auto;
        display: grid;
        gap: 1rem;
    }

    .mosaic-frame::before {
        display: none;
    }

    .mosaic-main,
    .mosaic-float {
        position: static;
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 3;
        outline: 0;
    }

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

    .event-showcase-panel {
        grid-template-columns: 1fr;
    }

    .showcase-media-collage {
        min-height: 470px;
    }

    .showcase-copy-elevated {
        border-left: 0;
        border-top: 1px solid rgba(244, 198, 79, .28);
        padding-top: 2rem;
    }

    .showcase-copy h2,
    .showcase-copy p {
        max-width: none;
    }
}

@media (max-width: 767px) {
    .brand-logo {
        width: 52px;
        height: 52px;
    }

    .navbar-brand strong {
        font-size: 1.1rem;
    }

    .event-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-grid {
        grid-auto-rows: 230px;
    }

    .showcase-media-collage {
        display: grid;
        gap: .85rem;
        min-height: 0;
    }

    .showcase-media-collage::before {
        display: none;
    }

    .showcase-main-photo,
    .showcase-detail-photo {
        position: static;
        width: 100%;
        height: auto;
        transform: none;
    }

    .showcase-main-photo {
        aspect-ratio: 4 / 3;
    }

    .showcase-detail-photo {
        aspect-ratio: 16 / 10;
    }

    .showcase-main-photo figcaption {
        left: .95rem;
        bottom: .95rem;
    }

    .menu-card {
        display: block;
    }

    .menu-card span {
        margin-top: .75rem;
    }

    .footer-bottom {
        display: block;
    }
}
