:root {
    --color-sand: #f3ede3;
    --color-cream: #faf7f2;
    --color-terracotta: #b85c38;
    --color-terracotta-dark: #8f4529;
    --color-olive: #6b705c;
    --color-charcoal: #2e2a26;
    --color-white: #ffffff;
    --color-border: #ddd5ca;
    --shadow-soft: 0 16px 40px rgba(46, 42, 38, 0.08);
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: "Inter", Arial, sans-serif;
    color: var(--color-charcoal);
    background: var(--color-white);
    line-height: 1.65;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Cormorant Garamond", Georgia, serif;
    color: var(--color-charcoal);
    line-height: 1.05;
    margin-top: 0;
}

a {
    color: var(--color-terracotta);
    text-decoration: none;
}

a:hover {
    color: var(--color-terracotta-dark);
}

main {
    display: block;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    background: rgba(250, 247, 242, 0.96);
    border-bottom: 1px solid rgba(221, 213, 202, 0.8);
}

.navbar-brand {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-charcoal);
}

.nav-link {
    color: var(--color-charcoal);
    font-weight: 500;
}

.nav-link:hover {
    color: var(--color-terracotta);
}

/* Buttons */
.btn {
    border-radius: 999px;
    padding: 0.75rem 1.2rem;
    font-weight: 600;
}

.btn-primary {
    background: var(--color-terracotta);
    border-color: var(--color-terracotta);
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--color-terracotta-dark);
    border-color: var(--color-terracotta-dark);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--color-charcoal);
    color: var(--color-charcoal);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: var(--color-charcoal);
    border-color: var(--color-charcoal);
    color: var(--color-white);
}

/* Hero */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--color-white);
}

.hero-home {
    min-height: 82vh;
}

.hero-compact {
    min-height: 52vh;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(27, 25, 24, 0.78) 0%,
        rgba(27, 25, 24, 0.52) 46%,
        rgba(27, 25, 24, 0.2) 100%
    );
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-inner {
    padding: 6rem 0;
}

.hero-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero h1 {
    font-size: clamp(3.1rem, 8vw, 5.6rem);
    margin-bottom: 1rem;
    color: var(--color-white);
    line-height: 0.94;
}

.hero-compact h1 {
    font-size: clamp(2.6rem, 6vw, 4.4rem);
}

.hero-subheadline {
    font-size: clamp(1.1rem, 2.2vw, 1.5rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 1rem;
    max-width: 48rem;
}

.hero-text {
    max-width: 38rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.75rem;
    font-size: 1.03rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

@media (max-width: 991.98px) {
    .hero-home {
        min-height: 70vh;
    }

    .hero-compact {
        min-height: 42vh;
    }
}

@media (max-width: 767.98px) {
    .hero-inner {
        padding: 4.5rem 0;
    }

    .hero-home {
        min-height: 68vh;
    }

    .hero-compact {
        min-height: 38vh;
    }
}

/* Sections */
section {
    padding: 5rem 0;
}

.bg-cream {
    background: var(--color-cream);
}

.section-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: rgba(46, 42, 38, 0.68);
}

.section-heading {
    max-width: 46rem;
    margin-bottom: 2.5rem;
}

.section-heading h2 {
    font-size: clamp(2.1rem, 4vw, 3.4rem);
    margin-bottom: 1rem;
}

/* Cards */
.feature-card {
    height: 100%;
    background: var(--color-white);
    border: 1px solid rgba(221, 213, 202, 0.7);
    border-radius: 1.4rem;
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px rgba(46, 42, 38, 0.12);
    border-color: rgba(184, 92, 56, 0.28);
}

.feature-card-body {
    padding: 2rem 1.75rem;
}

.feature-card-title {
    font-size: 2rem;
    margin-bottom: 0.85rem;
    line-height: 1.05;
}

.feature-card-text {
    color: rgba(46, 42, 38, 0.8);
    margin-bottom: 1.25rem;
}

.feature-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 700;
    color: var(--color-terracotta);
}

.feature-card-link:hover {
    color: var(--color-terracotta-dark);
}

.operator-notice-inline {
    font-size: 0.95rem;
    color: rgba(46, 42, 38, 0.75);
    background: #f7f2e9;
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    padding: 0.95rem 1.1rem;
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.card p {
    color: rgba(46, 42, 38, 0.8);
}

/* Image + Text */
.image-text-media {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background: var(--color-sand);
}

.image-text-media img {
    width: 100%;
    height: auto;
    display: block;
}

.image-text-content h2 {
    font-size: clamp(2.1rem, 4vw, 3.3rem);
    margin-bottom: 1rem;
}

.image-text-content p {
    color: rgba(46, 42, 38, 0.82);
    margin-bottom: 1.25rem;
}

/* Footer */
footer {
    border-top: 1px solid rgba(221, 213, 202, 0.8);
    background: var(--color-cream);
    color: var(--color-charcoal);
}

/* Helpers */
.text-muted-custom {
    color: rgba(46, 42, 38, 0.75);
}

@media (max-width: 991.98px) {
    .hero {
        min-height: 68vh;
    }
}

@media (max-width: 767.98px) {
    section {
        padding: 4rem 0;
    }

    .hero-inner {
        padding: 4rem 0;
    }
}

.section-small {
    padding: 2.5rem 0;
}

.operator-notice {
    background: #f7f2e9;
    border: 1px solid var(--color-border);
    border-radius: 1.25rem;
    padding: 1.5rem;
}

.operator-notice h2 {
    font-size: 1.9rem;
    margin-bottom: 0.75rem;
}

.operator-notice p {
    margin-bottom: 0;
    color: rgba(46, 42, 38, 0.82);
}

.cta-section {
    padding: 4.5rem 0;
}

.cta-box {
    border-radius: 1.9rem;
    padding: 2.4rem 2.2rem;
    overflow: hidden;
    position: relative;
    box-shadow: 0 24px 55px rgba(46, 42, 38, 0.08);
    border: 1px solid rgba(221, 213, 202, 0.9);
}

.cta-box--dark {
    background:
        radial-gradient(circle at top right, rgba(184,92,56,0.15), transparent 28%),
        linear-gradient(135deg, #777a37 0%, #86883d 50%, #cfd9c6 100%);
}

.cta-content {
    max-width: 38rem;
}

.cta-title {
    color: var(--color-cream);
    font-size: clamp(2.1rem, 4vw, 3.4rem);
    line-height: 1.02;
    margin-bottom: 0.85rem;
}

.cta-text {
    color: var(--color-cream);
    margin-bottom: 0;
    font-size: 1.02rem;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    justify-content: flex-start;
}

.cta-btn-primary,
.cta-btn-secondary {
    min-width: 190px;
    justify-content: center;
}

.cta-btn-primary {
    background: var(--color-olive);
    border-color: var(--color-cream);
    color: var(--color-white);
}

.cta-btn-primary:hover,
.cta-btn-primary:focus {
    background: var(--color-charcoal);
    border-color: var(--color-cream);
    color: var(--color-white);
}

.cta-btn-secondary {
    border-color: rgba(46, 42, 38, 0.22);
    color: var(--color-charcoal);
    background: rgba(255, 255, 255, 0.55);
}

.cta-btn-secondary:hover,
.cta-btn-secondary:focus {
    background: rgba(46, 42, 38, 0.06);
    border-color: rgba(46, 42, 38, 0.35);
    color: var(--color-charcoal);
}

@media (max-width: 991.98px) {
    .cta-box {
        padding: 2rem 1.6rem;
    }
}

@media (max-width: 767.98px) {
    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        min-width: 0;
    }
}

.operator-notice-inline {
    font-size: 0.95rem;
    color: rgba(46, 42, 38, 0.75);
    background: #f7f2e9;
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    padding: 0.9rem 1.1rem;
}


.contact-block-section {
    padding: 4.5rem 0;
}

.contact-card {
    background: var(--color-white);
    border: 1px solid rgba(221, 213, 202, 0.7);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    height: 100%;
}

.contact-item h3 {
    font-size: 1.45rem;
    margin-bottom: 0.5rem;
    color: var(--color-charcoal);
}

.contact-item p {
    margin-bottom: 0;
    color: rgba(46, 42, 38, 0.82);
}

.contact-item a {
    color: var(--color-terracotta);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--color-terracotta-dark);
}

.site-navbar {
    position: sticky;
    top: 0;
    z-index: 1030;
    padding: 0.9rem 0;
    background: rgba(250, 247, 242, 0.9);
    border-bottom: 1px solid rgba(221, 213, 202, 0.78);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(46, 42, 38, 0.04);
}

.site-navbar-container {
    align-items: center;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    padding: 0;
    margin-right: 1.5rem;
}

.site-logo {
    height: 60px;
    width: auto;
    display: block;
}

.site-navbar-toggler {
    border: 1px solid rgba(46, 42, 38, 0.12);
    border-radius: 0.85rem;
    padding: 0.45rem 0.7rem;
}

.site-navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(184, 92, 56, 0.12);
}

.site-nav-list {
    gap: 0.1rem;
}

.nav-link {
    color: var(--color-charcoal);
    font-weight: 500;
    font-size: 0.96rem;
    padding: 0.8rem 0.95rem !important;
    border-radius: 999px;
    position: relative;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover {
    color: var(--color-terracotta);
    background: rgba(184, 92, 56, 0.06);
}

.nav-link.active {
    color: var(--color-terracotta);
    font-weight: 600;
    background: rgba(184, 92, 56, 0.08);
}

.site-nav-cta {
    white-space: nowrap;
    padding-left: 1.15rem;
    padding-right: 1.15rem;
    box-shadow: 0 10px 24px rgba(184, 92, 56, 0.18);
}

.site-nav-cta:hover,
.site-nav-cta:focus {
    box-shadow: 0 14px 28px rgba(184, 92, 56, 0.22);
}

@media (max-width: 1199.98px) {
    .site-logo {
        height: 54px;
    }

    .nav-link {
        font-size: 0.92rem;
        padding: 0.75rem 0.8rem !important;
    }
}

@media (max-width: 991.98px) {
    .site-navbar {
        padding: 0.8rem 0;
    }

    .site-logo {
        height: 52px;
    }

    .navbar-collapse {
        margin-top: 1rem;
        padding-top: 0.75rem;
        border-top: 1px solid rgba(221, 213, 202, 0.75);
    }

    .site-nav-list {
        gap: 0;
        align-items: stretch !important;
    }

    .nav-link {
        border-radius: 0.9rem;
        padding: 0.85rem 0.95rem !important;
    }

    .site-nav-cta {
        width: 100%;
        justify-content: center;
        display: inline-flex;
    }
}

@media (max-width: 767.98px) {
    .site-logo {
        height: 48px;
    }
}

.site-nav-cta {
    white-space: nowrap;
}

/* Footer */
.site-footer {
    margin-top: 0;
    padding: 4.5rem 0 2rem;
    background: #2c2724;
    color: rgba(255, 255, 255, 0.84);
}

.site-footer-brand {
    max-width: 24rem;
}

.footer-logo {
    height: 58px;
    width: auto;
    display: block;
    margin-bottom: 0.8rem;
}

.site-footer-subline {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.58);
    margin-bottom: 1rem;
}

.site-footer-heading {
    color: var(--color-white);
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.site-footer-text {
    color: rgba(255,255,255,0.78);
    font-size: 0.98rem;
}

.site-footer a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--color-white);
}

.site-footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer-nav li + li {
    margin-top: 0.55rem;
}

.site-footer-bottom {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.12);
}

.site-footer-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

@media (max-width: 767.98px) {
    .site-footer {
        padding: 4rem 0 2rem;
    }

    .footer-logo {
        height: 52px;
    }

    .site-footer-meta {
        margin-top: 0.5rem;
    }
}

.section-heading p,
.image-text-content p,
.contact-item p,
.cta-box p,
.operator-notice p {
    max-width: 42rem;
}

.bridge-section {
    padding: 4rem 0;
}

.bridge-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;

    background: linear-gradient(
        135deg,
        #f7f4ee 0%,
        #efe8dc 100%
    );

    border: 1px solid rgba(180,170,150,0.3);
    border-radius: 1.6rem;
    padding: 2rem 2.2rem;

    box-shadow: 0 18px 40px rgba(46,42,38,0.06);
}

.bridge-content {
    max-width: 36rem;
}

.bridge-title {
    font-size: 1.9rem;
    margin-bottom: 0.5rem;
    color: var(--color-charcoal);
}

.bridge-text {
    color: rgba(46,42,38,0.75);
    margin-bottom: 0;
}

.bridge-action {
    flex-shrink: 0;
}



@media (max-width: 768px) {
    .bridge-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .bridge-action {
        width: 100%;
    }

    .bridge-action .btn {
        width: 100%;
    }
}


.bridge-section {
    padding: 4rem 0;
}

.bridge-box {
    border-radius: 1.75rem;
    padding: 2rem 2.2rem;
    border: 1px solid rgba(180, 170, 150, 0.3);
    box-shadow: 0 18px 40px rgba(46, 42, 38, 0.06);
}

/* Pizza / Technik */
.bridge-box--warm {
    background:
        radial-gradient(circle at top right, rgba(184,92,56,0.12), transparent 35%),
        radial-gradient(circle at bottom left, rgba(107,112,92,0.1), transparent 35%),
        linear-gradient(135deg, #f7f4ee 0%, #efe8dc 100%);
}

/* Trattoria */
.bridge-box--aubergine {
    background:
        radial-gradient(circle at top right, rgba(95,59,84,0.14), transparent 35%),
        radial-gradient(circle at bottom left, rgba(107,112,92,0.08), transparent 35%),
        linear-gradient(135deg, #f6f1f3 0%, #ebe1e6 100%);
}


.bridge-content {
    max-width: 70rem;
}

.bridge-title {
    font-size: clamp(1.9rem, 3vw, 2.5rem);
    margin-bottom: 0.75rem;
    color: var(--color-charcoal);
}

.bridge-text {
    color: rgba(46,42,38,0.76);
    margin-bottom: 1.25rem;
}

.bridge-logo-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 160px;
    padding: 1rem 1.25rem;

}

.bridge-logo {
    max-width: 220px;
    width: auto;
    height: auto;
    max-width: 360px;
    transform: translateX(10px);

}

@media (max-width: 991.98px) {
    .bridge-logo-wrap {
        justify-content: flex-start;
    }
}
.bridge-btn {
    font-size: 0.95rem;
    padding: 0.55rem 1.1rem;
}

.pizzaofen-bridge,
.cta-box,
.contact-card,
.feature-card,
.operator-notice,
.operator-notice-inline {
    backdrop-filter: blur(2px);
}

.section-heading {
    max-width: 42rem;
}

.feature-card-text,
.pizzaofen-bridge-content p,
.image-text-content p {
    font-size: 1rem;
}

.brand-logos-section {
    padding: 4.5rem 0;
    background: var(--color-white);
}

.brand-logos-heading {
    margin-bottom: 2rem;
}

.brand-logos-wrap {
    background: linear-gradient(180deg, #fbf8f3 0%, #f6f0e7 100%);
    border: 1px solid rgba(221, 213, 202, 0.85);
    border-radius: 1.75rem;
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-soft);
}

.brand-logos-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.brand-logo-item {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(221, 213, 202, 0.65);
    border-radius: 1.2rem;
    min-height: 132px;
    padding: 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.brand-logo-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(46, 42, 38, 0.08);
    border-color: rgba(184, 92, 56, 0.24);
}

.brand-logo-item a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
}

.brand-logo-item img {
    max-width: 150px;
    max-height: 52px;
    width: auto;
    height: auto;
    display: block;
    filter: grayscale(1) contrast(0.95) brightness(0.55);
    opacity: 0.9;
    transition: filter 0.22s ease, opacity 0.22s ease, transform 0.22s ease;
}

.brand-logo-item:hover img {
    filter: grayscale(1) contrast(1) brightness(0.38);
    opacity: 1;
    transform: scale(1.02);
}

.brand-logo-name {
    font-size: 0.88rem;
    color: rgba(46, 42, 38, 0.72);
    line-height: 1.35;
}

@media (max-width: 991.98px) {
    .brand-logos-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .brand-logos-wrap {
        padding: 1.5rem 1rem;
    }

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

    .brand-logo-item {
        min-height: 118px;
        padding: 1rem 0.75rem;
    }

    .brand-logo-item img {
        max-width: 120px;
        max-height: 44px;
    }
}


.feature-card {
    height: 100%;
    background: var(--color-white);
    border: 1px solid rgba(221, 213, 202, 0.7);
    border-radius: 1.4rem;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px rgba(46, 42, 38, 0.12);
    border-color: rgba(184, 92, 56, 0.28);
}

.feature-card-media {
    position: relative;
    aspect-ratio: 4 / 3;
    background: var(--color-sand);
    overflow: hidden;
}

.feature-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transition: transform 0.5s ease, filter 0.35s ease;
    filter: saturate(0.9) contrast(0.96) brightness(0.92);
}

.feature-card:hover .feature-card-media img {
    transform: scale(1.04);
    filter: saturate(0.95) contrast(0.98) brightness(0.9);
}

.feature-card-media-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(46, 42, 38, 0.06) 0%,
            rgba(46, 42, 38, 0.14) 100%
        ),
        linear-gradient(
            135deg,
            rgba(184, 92, 56, 0.08) 0%,
            rgba(107, 112, 92, 0.06) 100%
        );
    pointer-events: none;
}

.feature-card-body {
    padding: 1.75rem;
}

.feature-card-title {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    line-height: 1.05;
}

.feature-card-text {
    color: rgba(46, 42, 38, 0.8);
    margin-bottom: 1.25rem;
}

.feature-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 700;
    color: var(--color-terracotta);
}

.feature-card-link:hover {
    color: var(--color-terracotta-dark);
}


.opening-info-section {
    padding: 4.5rem 0;
}

.opening-card {
    background: #ffffff;
    border-radius: 1.4rem;
    border: 1px solid rgba(221,213,202,0.7);
    padding: 1.6rem;
    height: 100%;
    box-shadow: var(--shadow-soft);
}

.opening-card-title {
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
}

.opening-card-text {
    font-size: 0.95rem;
    color: rgba(46,42,38,0.75);
    margin-bottom: 0.8rem;
}

.opening-card-hours {
    font-weight: 600;
    color: var(--color-terracotta);
    font-size: 0.95rem;
}

.opening-card-link {
    display: inline-block;
    margin-top: 0.6rem;
    font-size: 0.9rem;
}


.gallery-section {
    padding: 4.5rem 0;
}

.gallery-grid {
    display: grid;
    gap: 1rem;
}

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

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

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

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

.gallery-item {
    margin: 0;
    border-radius: 1.4rem;
    overflow: hidden;
    background: var(--color-sand);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(221, 213, 202, 0.65);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    display: block;
    filter: saturate(0.94) contrast(0.97) brightness(0.96);
    transition: transform 0.35s ease, filter 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.02);
    filter: saturate(0.98) contrast(0.99) brightness(0.94);
}

.gallery-caption {
    padding: 0.85rem 1rem 1rem;
    font-size: 0.92rem;
    color: rgba(46, 42, 38, 0.72);
    background: rgba(255,255,255,0.78);
}

@media (max-width: 991.98px) {
    .gallery-grid--3,
    .gallery-grid--6 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-item img {
        min-height: 220px;
    }
}

@media (max-width: 767.98px) {
    .gallery-grid--2,
    .gallery-grid--3,
    .gallery-grid--4,
    .gallery-grid--6 {
        grid-template-columns: 1fr;
    }

    .gallery-item img {
        min-height: 240px;
    }
}