/* ---------- Brackley Kitchen Deli - base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --green: #2a4a3f;
    --green-deep: #1f3830;
    --green-soft: #3d5d50;
    --green-tint: #e6ede9;
    --cream: #faf5ea;
    --cream-soft: #fdf9f0;
    --paper: #f1e9d8;
    --line: #e3dccc;
    --gold: #c9985a;
    --gold-deep: #a87d40;
    --terracotta: #b5543f;
    --ink: #1d2520;
    --muted: #6b7068;
    --whatsapp: #25d366;
    --radius: 14px;
    --radius-lg: 22px;
    --shadow-sm: 0 1px 2px rgba(31, 56, 48, .06), 0 4px 14px rgba(31, 56, 48, .08);
    --shadow-md: 0 6px 24px rgba(31, 56, 48, .12);
    --shadow-lg: 0 10px 40px rgba(31, 56, 48, .18);
    --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --max: 1180px;
    --bar-h: 66px;
    --header-h: 64px;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--sans);
    color: var(--ink);
    background: var(--cream);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    padding-bottom: calc(var(--bar-h) + env(safe-area-inset-bottom, 0px));
}

img,
video {
    max-width: 100%;
    display: block;
}

a {
    color: var(--green);
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

p a {
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-color: rgba(42, 74, 63, .35);
}

p a:hover {
    text-decoration-color: currentColor;
}

/* ---------- Layout ---------- */
.container {
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 32px;
}

@media (min-width: 720px) {
    .container {
        padding: 0 48px;
    }
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4 {
    font-family: var(--serif);
    font-weight: 600;
    letter-spacing: -0.01em;
    margin: 0 0 .5em;
    line-height: 1.12;
    color: var(--green-deep);
}

h1 {
    font-size: clamp(2.2rem, 6.4vw, 3.8rem);
    font-weight: 600;
}

h1 em {
    font-style: italic;
    font-weight: 500;
    color: var(--gold);
}

h2 {
    font-size: clamp(1.7rem, 4.2vw, 2.4rem);
}

h3 {
    font-size: 1.2rem;
}

.eyebrow {
    text-transform: uppercase;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--gold-deep);
    margin: 0 0 0.6rem;
}

.eyebrow.centered {
    text-align: center;
}

.eyebrow.light {
    color: var(--gold);
}

.section {
    padding: 4rem 0;
}

@media (min-width: 720px) {
    .section {
        padding: 5.5rem 0;
    }
}

.section-title {
    font-family: var(--serif);
    font-size: clamp(1.7rem, 4.2vw, 2.4rem);
    color: var(--green-deep);
    margin: 0 0 0.8rem;
}

.section-title.centered {
    text-align: center;
}

.section-title.light {
    color: var(--cream);
}

.section-lede {
    color: var(--muted);
    font-size: 1.02rem;
    max-width: 640px;
    margin: 0 0 2.4rem;
    line-height: 1.7;
}

.section-lede.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-lede.light {
    color: rgba(250, 245, 234, .8);
}

.section-dark {
    background: var(--green-deep);
    color: var(--cream);
}

.section-dark h2,
.section-dark h3 {
    color: var(--cream);
}

.section-cream {
    background: var(--cream-soft);
}

.divider {
    width: 48px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    margin: 1rem auto 1.75rem;
}

.muted {
    color: var(--muted);
}

.small {
    font-size: 0.88rem;
}

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(250, 245, 234, .92);
    backdrop-filter: saturate(160%) blur(10px);
    -webkit-backdrop-filter: saturate(160%) blur(10px);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    height: var(--header-h);
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--green-deep);
    font-family: var(--serif);
    font-weight: 600;
    font-size: 1.05rem;
    line-height: 1;
}

.brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    object-fit: cover;
    display: block;
    box-shadow: var(--shadow-sm);
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-text .brand-sub {
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--gold-deep);
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.primary-nav {
    display: none;
    gap: 1.6rem;
}

.primary-nav a {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--green-deep);
    padding: 0.3rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.18s ease;
}

.primary-nav a:hover {
    border-bottom-color: var(--gold);
}

@media (min-width: 920px) {
    .primary-nav {
        display: flex;
    }
}

.header-cta {
    display: none;
    background: var(--green);
    color: var(--cream);
    padding: 0.55rem 1.1rem;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: background 0.18s ease, transform 0.18s ease;
}

.header-cta:hover {
    background: var(--green-deep);
    transform: translateY(-1px);
}

@media (min-width: 720px) {
    .header-cta {
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    color: var(--cream);
    min-height: 78vh;
    display: flex;
    align-items: center;
    background:
        radial-gradient(120% 80% at 80% 0%, rgba(201, 152, 90, 0.18) 0%, transparent 55%),
        radial-gradient(120% 80% at 10% 100%, rgba(20, 74, 71, 0.55) 0%, transparent 60%),
        linear-gradient(180deg, var(--green-deep) 0%, #18302a 100%);
}

/* Subtle dotted texture overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(250, 245, 234, 0.05) 1px, transparent 1px);
    background-size: 18px 18px;
    background-position: 0 0;
    z-index: -1;
    pointer-events: none;
}

/* Soft top/bottom edge gradients for depth */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, transparent 18%, transparent 80%, rgba(0, 0, 0, 0.3) 100%);
    z-index: -1;
    pointer-events: none;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    color: var(--gold);
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
    pointer-events: none;
}

.hero-blob--a {
    width: 460px;
    height: 460px;
    background: radial-gradient(circle at 30% 30%, rgba(201, 152, 90, 0.7), rgba(201, 152, 90, 0) 70%);
    top: -120px;
    right: -120px;
}

.hero-blob--b {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle at 30% 30%, rgba(61, 93, 80, 0.85), rgba(61, 93, 80, 0) 70%);
    bottom: -160px;
    left: -160px;
}

.hero-flourish {
    position: absolute;
    width: 140px;
    height: 46px;
    color: var(--gold);
    opacity: 0.85;
}

.hero-flourish--top {
    top: 18%;
    left: 50%;
    transform: translateX(-50%);
}

.hero-flourish--bottom {
    bottom: 11%;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 599px) {
    .hero-flourish {
        width: 110px;
        height: 36px;
    }

    .hero-flourish--top {
        top: 13%;
    }

    .hero-flourish--bottom {
        bottom: 8%;
    }
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-media video,
.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(31, 56, 48, .35) 0%, rgba(31, 56, 48, .68) 60%, rgba(31, 56, 48, .85) 100%);
}

.hero-inner {
    width: 100%;
    padding-top: 2rem;
    padding-bottom: 3.5rem;
    display: grid;
    gap: 1.4rem;
    text-align: center;
}

.hero-logo {
    width: 280px;
    height: auto;
    margin: 0 auto;
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
}

.hero-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gold);
    margin: 0.4rem 0 0;
}

.hero h1 {
    color: var(--cream);
    margin: 0.4rem auto 0.2rem;
    max-width: 14ch;
}

.hero-lede {
    color: rgba(250, 245, 234, .9);
    max-width: 580px;
    margin: 0.5rem auto 0;
    font-size: 1.05rem;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.25rem;
}

.hero-meta {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.4rem;
    margin: 1.2rem auto 0;
    color: rgba(250, 245, 234, .8);
    font-size: 0.86rem;
}

.hero-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.hero-meta svg {
    flex-shrink: 0;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 1.5rem;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    font-family: var(--sans);
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background: var(--gold);
    color: var(--green-deep);
    border-color: var(--gold);
    box-shadow: 0 4px 14px rgba(201, 152, 90, 0.25);
}

.btn-primary:hover {
    background: var(--gold-deep);
    border-color: var(--gold-deep);
    color: var(--cream);
}

.btn-ghost {
    background: rgba(250, 245, 234, .08);
    color: var(--cream);
    border-color: rgba(250, 245, 234, .35);
    backdrop-filter: blur(4px);
}

.btn-ghost:hover {
    background: rgba(250, 245, 234, .15);
    border-color: var(--cream);
}

.btn-solid {
    background: var(--green);
    color: var(--cream);
    border-color: var(--green);
}

.btn-solid:hover {
    background: var(--green-deep);
    border-color: var(--green-deep);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: #fff;
    border-color: var(--whatsapp);
}

.btn-whatsapp:hover {
    background: #1ebe5c;
    border-color: #1ebe5c;
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: var(--green-deep);
    border-color: var(--green);
}

.btn-outline:hover {
    background: var(--green);
    color: var(--cream);
}

/* ---------- Awards strip ---------- */
.awards-strip {
    background: var(--cream-soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.awards-inner {
    display: grid;
    gap: 1.4rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    grid-template-columns: 1fr;
    align-items: stretch;
}

@media (min-width: 720px) {
    .awards-inner {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }
}

.award-card {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    padding: 1.1rem 1.4rem;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    min-width: 0;
}

.award-card-media {
    flex: 0 0 auto;
    width: 168px;
    max-width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-card-media img {
    max-width: 100%;
    height: auto;
    display: block;
}

.award-card-body {
    flex: 1 1 auto;
    min-width: 0;
}

.award-card-body p {
    margin: 0;
    font-size: 0.92rem;
    color: var(--ink);
    line-height: 1.5;
}

.award-card-body strong {
    display: block;
    font-family: var(--serif);
    font-size: 1.05rem;
    color: var(--green-deep);
    margin-bottom: 0.15rem;
    font-weight: 600;
}

.award-card-body a {
    color: var(--gold-deep);
    font-weight: 500;
}

/* FSA badge wrapper - constrains the inline-styled badge from the embed script */
.fsa-badge {
    display: block;
    width: 100%;
    background: transparent;
    border-radius: 8px;
    line-height: 0;
}

.fsa-badge a {
    display: block;
    line-height: 0;
}

.fsa-badge img {
    min-width: 0 !important;
    width: 100%;
    max-width: 168px;
    height: auto;
    display: block;
}

/* ---------- About / Intro ---------- */
.intro {
    background: var(--cream);
}

.intro-grid {
    display: grid;
    gap: 2.2rem;
    align-items: center;
}

@media (min-width: 880px) {
    .intro-grid {
        grid-template-columns: 1.1fr 1fr;
        gap: 3.5rem;
    }
}

.intro-copy p {
    margin: 0 0 1rem;
    color: var(--ink);
    font-size: 1.04rem;
    line-height: 1.75;
}

.intro-media {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 4 / 5;
    background: var(--green-tint);
}

.intro-media img,
.intro-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---------- Counter / What's on offer ---------- */
.counter-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
}

@media (min-width: 600px) {
    .counter-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (min-width: 980px) {
    .counter-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.counter-item {
    background: var(--cream-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.25rem 1rem;
    text-align: center;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.counter-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
    border-color: var(--gold);
}

.counter-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--green-tint);
    color: var(--green-deep);
    border-radius: 50%;
    margin-bottom: 0.6rem;
}

.counter-item h3 {
    font-family: var(--serif);
    font-size: 1rem;
    color: var(--green-deep);
    margin: 0 0 0.25rem;
}

.counter-item p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.45;
}

/* ---------- Showcase gallery ---------- */
.gallery {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 120px;
}

@media (min-width: 720px) {
    .gallery {
        gap: 16px;
        grid-auto-rows: 180px;
    }
}

@media (min-width: 1080px) {
    .gallery {
        grid-auto-rows: 220px;
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--green-tint);
    box-shadow: var(--shadow-sm);
    grid-column: span 6;
    grid-row: span 2;
}

@media (min-width: 720px) {
    .gallery-item--tall {
        grid-column: span 3;
        grid-row: span 2;
    }

    .gallery-item--wide {
        grid-column: span 4;
        grid-row: span 2;
    }

    .gallery-item--square {
        grid-column: span 2;
        grid-row: span 2;
    }

    .gallery-item--full {
        grid-column: span 6;
        grid-row: span 2;
    }
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.04);
}

.gallery-caption {
    position: absolute;
    left: 14px;
    bottom: 12px;
    right: 14px;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .5);
    pointer-events: none;
}

/* ---------- Eatery (secondary) ---------- */
.eatery {
    background: var(--green-deep);
    color: var(--cream);
}

.eatery-grid {
    display: grid;
    gap: 1.6rem;
    align-items: center;
}

@media (min-width: 880px) {
    .eatery-grid {
        grid-template-columns: 1.1fr 1fr;
        gap: 3rem;
    }
}

.eatery-copy h2 {
    color: var(--cream);
    margin-bottom: 0.8rem;
}

.eatery-copy p {
    color: rgba(250, 245, 234, .85);
    margin: 0 0 1rem;
    line-height: 1.7;
}

.eatery-copy .btn-outline {
    color: var(--cream);
    border-color: var(--gold);
}

.eatery-copy .btn-outline:hover {
    background: var(--gold);
    color: var(--green-deep);
    border-color: var(--gold);
}

.eatery-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.eatery-photo {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 3 / 4;
    box-shadow: var(--shadow-md);
}

.eatery-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.eatery-photo:hover img {
    transform: scale(1.05);
}

/* ---------- Find us / Map ---------- */
.find-us-intro {
    text-align: center;
    margin-bottom: 2rem;
}

#map {
    width: 100%;
    height: 360px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    z-index: 0;
    margin-bottom: 1.5rem;
}

@media (min-width: 720px) {
    #map {
        height: 420px;
    }
}

.location-cards {
    display: grid;
    gap: 1rem;
}

@media (min-width: 720px) {
    .location-cards {
        grid-template-columns: 1.15fr 0.85fr;
        gap: 1.2rem;
    }
}

.location-card {
    background: var(--cream-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.location-card--primary {
    border-color: var(--gold);
}

.location-card-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--gold);
    color: var(--green-deep);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    z-index: 2;
}

.location-card-photo {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.location-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.location-card:hover .location-card-photo img {
    transform: scale(1.05);
}

.location-card-body {
    padding: 1.2rem 1.4rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.location-name {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--green-deep);
    margin: 0;
}

.location-address {
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.5;
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
}

.location-address svg {
    flex-shrink: 0;
    color: var(--green);
    margin-top: 2px;
}

.location-meta {
    font-size: 0.85rem;
    color: var(--muted);
    margin: 0;
    font-style: italic;
}

.location-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.4rem;
}

.location-actions .btn {
    padding: 0.62rem 1.05rem;
    font-size: 0.86rem;
}

/* ---------- Contact / Connect ---------- */
.connect {
    background: var(--cream-soft);
}

.connect-grid {
    display: grid;
    gap: 0.85rem;
    grid-template-columns: 1fr;
    max-width: 720px;
    margin: 0 auto;
}

@media (min-width: 600px) {
    .connect-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.connect-tile {
    display: flex;
    align-items: center;
    gap: 0.95rem;
    padding: 1rem 1.15rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: border-color 0.18s, transform 0.18s, box-shadow 0.18s;
    color: var(--ink);
}

.connect-tile:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.connect-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-tint);
    color: var(--green-deep);
}

.connect-icon--ig {
    background: linear-gradient(135deg, #f9a343 0%, #e4405f 50%, #833ab4 100%);
    color: #fff;
}

.connect-icon--fb {
    background: #1877F2;
    color: #fff;
}

.connect-icon--wa {
    background: var(--whatsapp);
    color: #fff;
}

.connect-icon--mail {
    background: var(--green);
    color: var(--cream);
}

.connect-icon--phone {
    background: var(--terracotta);
    color: #fff;
}

.connect-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.connect-text strong {
    font-weight: 600;
    color: var(--green-deep);
    font-size: 0.97rem;
    line-height: 1.25;
}

.connect-text span {
    color: var(--muted);
    font-size: 0.84rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--green-deep);
    color: rgba(250, 245, 234, .75);
    text-align: center;
    padding: 2.5rem 1rem;
    font-size: 0.88rem;
}

.site-footer a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.site-footer p {
    margin: 0.25rem 0;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--cream);
    font-family: var(--serif);
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
}

.footer-brand img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

/* ---------- Fixed mobile bar ---------- */
.mobile-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    display: flex;
    background: var(--green-deep);
    box-shadow: 0 -2px 12px rgba(31, 56, 48, 0.18);
    border-top: 1px solid rgba(250, 245, 234, 0.08);
    padding: 4px 4px calc(4px + env(safe-area-inset-bottom, 0px));
    gap: 2px;
}

.mb-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 8px 4px;
    color: rgba(250, 245, 234, 0.78);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-decoration: none;
    min-height: calc(var(--bar-h) - 8px);
    border-radius: 8px;
    transition: background 0.15s ease, color 0.15s ease;
}

.mb-item svg {
    flex-shrink: 0;
    opacity: 0.9;
}

.mb-item:hover,
.mb-item:active,
.mb-item:focus-visible {
    background: rgba(250, 245, 234, 0.06);
    color: var(--cream);
    text-decoration: none;
}

@media (min-width: 720px) {
    .mobile-bar {
        display: none;
    }

    body {
        padding-bottom: 0;
    }
}

/* ---------- Leaflet tweaks ---------- */
.leaflet-popup-content-wrapper {
    border-radius: 12px;
    background: #fff;
}

.leaflet-popup-content {
    margin: 12px 14px;
    font-family: var(--sans);
    line-height: 1.5;
}

.leaflet-popup-content strong {
    font-family: var(--serif);
    color: var(--green-deep);
    font-size: 0.95rem;
    display: block;
    margin-bottom: 2px;
}

.leaflet-popup-content small {
    color: var(--muted);
    font-size: 0.8rem;
}

.leaflet-popup-content a {
    color: var(--gold-deep);
    font-weight: 600;
    font-size: 0.82rem;
    display: inline-block;
    margin-top: 6px;
}

.leaflet-control-attribution a {
    color: var(--green);
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .btn:hover,
    .counter-item:hover,
    .connect-tile:hover,
    .gallery-item:hover img,
    .gallery-item:hover video,
    .location-card:hover .location-card-photo img,
    .eatery-photo:hover img {
        transform: none;
    }
}
