.gallery-page {
    background: linear-gradient(180deg, #f7f7f5 0%, #ffffff 100%);
}
.gallery-page-hero {
    position: relative;
    min-height: 78svh;
    display: grid;
    align-items: center;
    padding: 8rem 1.5rem 3rem;
    overflow: hidden;
}
.gallery-page-hero-image {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(17,24,39,.18), rgba(17,24,39,.58)),
        url('../../pildid/restaurant.webp') center/cover no-repeat;
    transform: scale(1.03);
}
.gallery-page-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 8rem;
    background: linear-gradient(180deg, transparent, rgba(247,247,245,1));
}
.gallery-page-hero-copy {
    position: relative;
    z-index: 1;
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}
.gallery-page-hero-copy h1 {
    margin: 0;
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: .95;
    letter-spacing: -.04em;
}
.gallery-page-hero-copy .hero-lead {
    margin: 1rem auto 0;
    max-width: 34rem;
    color: rgba(255,255,255,.86);
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    line-height: 1.7;
}
.gallery-page-wall {
    padding-top: 1rem;
}
.gallery-page-intro {
    display: grid;
    gap: .5rem;
    justify-items: center;
    margin-bottom: 1.5rem;
}
.gallery-page-note {
    margin: 0;
    max-width: 36rem;
    color: var(--muted);
    line-height: 1.7;
}
.gallery-page-grid-full {
    max-width: 1180px;
}
.gallery-page-grid-full .thumb {
    border-radius: 24px;
}
.gallery-page-grid-full .thumb:nth-child(6n + 1) {
    grid-column: span 7;
    aspect-ratio: 16 / 10;
}
.gallery-page-grid-full .thumb:nth-child(6n + 2) {
    grid-column: span 5;
    aspect-ratio: 4 / 5;
}
.gallery-page-grid-full .thumb:nth-child(6n + 3) {
    grid-column: span 5;
    aspect-ratio: 1 / 1;
}
.gallery-page-grid-full .thumb:nth-child(6n + 4) {
    grid-column: span 7;
    aspect-ratio: 16 / 9;
}
.gallery-page-grid-full .thumb:nth-child(6n + 5) {
    grid-column: span 4;
    aspect-ratio: 4 / 5;
}
.gallery-page-grid-full .thumb:nth-child(6n + 6) {
    grid-column: span 8;
    aspect-ratio: 16 / 9;
}
.gallery-page-cta {
    padding-top: 2rem;
}
.gallery-page-cta-card {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.4rem 1.5rem;
    border-radius: 28px;
    background:
        radial-gradient(circle at top left, rgba(234,179,8,.12), transparent 28%),
        linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,250,252,.95));
    border: 1px solid rgba(229,231,235,.95);
    box-shadow: 0 18px 42px rgba(15,23,42,.07);
}
.gallery-page-cta-card .section-title {
    margin: 0;
}
.gallery-page-cta-actions {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
}
