/* ===================================================================
   Lucille-style theme — site chanteuse / comédienne
   Palette : crème + corail | section sable | sections sombres
   Titres : Oswald | Texte : Jost | Logo : Pinyon Script
   =================================================================== */

:root {
    --bg: #f4f2f0;
    --white: #ffffff;
    --accent: #e0574e;
    --accent-d: #cf4942;
    --sand: #f2dcb5;
    --sand-d: #e9cf9f;
    --dark: #181a28;
    --dark-2: #1f2233;
    --ink: #2b2b2b;
    --muted: #7d7d7d;
    --line: rgba(0, 0, 0, .08);
    --font: 'Jost', system-ui, sans-serif; /* corps, menu, boutons */
    --font-display: 'Oswald', sans-serif; /* titres (comme Lucille) */
    --font-script: 'Pinyon Script', cursive; /* logo */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    font-weight: 300;
    color: var(--muted);
    background: var(--bg) url('/images/bg-js.webp') no-repeat center center / cover fixed;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

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

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(1180px, 92%);
    margin-inline: auto;
}

/* ---------- Titres de section --------------------------------- */
.section {
    padding: 90px 0;
}

.sec-head {
    text-align: center;
    margin-bottom: 60px;
}

.sec-head h2 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(30px, 4vw, 44px);
    color: #fff;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.sec-head h2 .hl {
    color: var(--accent);
}

.sec-head .sub {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: rgba(255,255,255,.6);
    letter-spacing: 7px;
    text-transform: capitalize;
    font-weight: 300;
}

.section--dark .sec-head h2 {
    color: #fff;
}

.section--dark .sec-head .sub {
    color: rgba(255, 255, 255, .45);
}

/* ===================================================================
   HEADER
   =================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: transparent;
    backdrop-filter: none;
    transition: background-color .35s ease, box-shadow .35s ease;
}

/* au scroll : fond sombre plein */
.site-header.scrolled {
    background-color: #1a1a1a;
    backdrop-filter: none;
    box-shadow: 0 2px 10px rgba(0,0,0,.3);
}

.site-header.scrolled .nav {
    height: 64px;
}

.site-header.scrolled .logo {
    font-size: 32px;
}

/* grille : logo à gauche | menu centré | icônes à droite */
.nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 90px;
    padding-inline: clamp(20px, 4vw, 50px);
    transition: height .35s ease;
}

.logo {
    justify-self: start;
    font-family: var(--font-script);
    font-size: 40px;
    color: #fff;
    line-height: 1;
    transition: font-size .35s ease, color .35s ease;
}

.menu {
    justify-self: center;
    display: flex;
    gap: 30px;
    list-style: none;
}

.menu a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,.85);
    transition: color .2s;
}

.menu a:hover, .menu a.active {
    color: var(--accent);
}

.nav-icons {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-icons a {
    color: rgba(255,255,255,.85);
    position: relative;
    display: grid;
    place-items: center;
    transition: color .2s;
}

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

.nav-icons .cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--accent);
    color: #fff;
    font-size: 10px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 600;
}

.burger {
    display: none;
    background: none;
    border: 0;
    cursor: pointer;
    color: #fff;
}

/* ===================================================================
   HERO
   =================================================================== */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 95vh;
    background-color: #111;
}

/* l'image en fond avec dégradé qui la fait disparaître à gauche */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: var(--hero-bg-image);
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.3) 25%, rgba(0,0,0,0.8) 45%, #000 60%, #000 100%);
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.3) 25%, rgba(0,0,0,0.8) 45%, #000 60%, #000 100%);
    z-index: 0;
}

.hero-img {
    display: none;
}

.hero-text {
    position: relative;
    z-index: 2;
    width: 50%;
    min-height: 97vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 92px 0 0 clamp(20px, 4vw, 50px);
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(90px, 13vw, 210px);
    line-height: .92;
    letter-spacing: 0;
    background-image: linear-gradient(115deg, #e88f7d 0%, #cf7c64 38%, #9a6253 72%, #6e4a42 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    font-family: var(--font);
    font-size: clamp(18px, 2.2vw, 30px);
    font-weight: 600;
    color: #fff;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 14px 0 30px;
}

/* boutons ----------------------------------------------------------*/
.btn {
    display: inline-block;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 15px 30px;
    border: 0;
    background: var(--accent);
    color: #fff;
    transition: background .25s;
}

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

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .4);
    color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: var(--ink);
    border-color: #fff;
}

/* ===================================================================
   ABOUT
   =================================================================== */
.about {
    position: relative;
    z-index: 2;
    background: transparent;
    padding: 0 0 80px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
}

.about-img {
    min-height: 100%;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.about-text {
    padding: 50px;
}

.about-title {
    font-family: var(--font-script);
    font-size: 48px;
    color: var(--ink);
    margin-bottom: 24px;
    font-weight: 400;
}

.about-text p {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 16px;
}

.about-text p strong {
    color: var(--ink);
}

.about-text .btn {
    margin-top: 14px;
}

/* ===================================================================
   NEW ALBUM
   =================================================================== */
.new-album {
    background: #151515;
}

.album-release {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 50px;
    align-items: start;
}

.album-cover img {
    width: 100%;
    border-radius: 4px;
}

.album-tracks {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.album-track {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    color: rgba(255,255,255,.7);
    font-size: 14px;
    transition: background .2s;
}

.album-track:hover {
    background: rgba(255,255,255,.04);
}

.album-track.playing {
    color: var(--accent);
}

.track-num {
    font-size: 13px;
    color: rgba(255,255,255,.4);
    min-width: 20px;
}

.album-track.playing .track-num {
    color: var(--accent);
}

.track-name {
    min-width: 100px;
    font-weight: 400;
}

.track-play {
    background: none;
    border: 0;
    color: rgba(255,255,255,.6);
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: color .2s;
    flex: none;
}

.track-play:hover {
    color: var(--accent);
}

.album-track.playing .track-play {
    color: var(--accent);
}

.track-progress {
    flex: 1;
    height: 4px;
    background: rgba(255,255,255,.12);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
    min-width: 80px;
}

.track-progress-bar {
    height: 100%;
    background: var(--accent);
    border-radius: 2px;
    width: 0;
    transition: width .1s linear;
}

.track-time {
    font-size: 12px;
    color: rgba(255,255,255,.4);
    min-width: 40px;
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.track-vol {
    background: none;
    border: 0;
    color: rgba(255,255,255,.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: color .2s;
}

.track-vol:hover {
    color: rgba(255,255,255,.8);
}

.album-desc {
    margin-top: 30px;
    padding: 0 18px;
}

.album-desc p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,.55);
    margin-bottom: 14px;
    font-style: italic;
}

/* ===================================================================
   SHOWS
   =================================================================== */
.shows {
    background: var(--sand);
}

.shows .sec-head h2, .shows .sec-head .sub {
    color: var(--ink);
}

.shows .sec-head .hl {
    color: var(--accent);
}

.show-feature {
    display: grid;
    grid-template-columns: 220px 1fr 1fr 140px;
    align-items: center;
    padding: 26px 0;
    margin-bottom: 10px;
}

.show-feature .date-big {
    position: relative;
    height: 90px;
}

.show-feature .date-big .num {
    font-family: var(--font-display);
    font-size: 96px;
    font-weight: 700;
    color: rgba(0, 0, 0, .07);
    line-height: 1;
}

.show-feature .date-big .mon {
    position: absolute;
    left: 14px;
    top: 38px;
    font-size: 17px;
    color: #444;
}

.show-feature .place, .show-feature .event {
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #3a3a3a;
    font-size: 14px;
}

.show-feature .tickets {
    text-align: right;
}

.show-row {
    display: grid;
    grid-template-columns: 220px 1fr 1fr 140px;
    align-items: center;
    padding: 22px 0;
    border-top: 1px solid rgba(0, 0, 0, .1);
    color: #4a4a4a;
    font-size: 15px;
}

.show-row .place, .show-row .event {
    text-align: center;
}

.show-row .tickets {
    text-align: right;
}

.show-row .tickets a:hover {
    color: var(--accent-d);
}

.shows .tickets a {
    font-weight: 600;
}

.no-shows {
    text-align: center;
    padding: 40px 20px;
}

.no-shows p {
    font-size: 17px;
    color: #555;
    margin-bottom: 12px;
}

.no-shows .btn {
    margin-top: 20px;
}

/* ===================================================================
   ALBUM
   =================================================================== */
.album-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.album-art {
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
}

.embed-wrap {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 16px;
}

.embed-now {
    display: flex;
    gap: 16px;
    align-items: center;
    padding-bottom: 14px;
}

.embed-now img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.embed-now .info {
    flex: 1;
}

.embed-now .info .src {
    font-size: 11px;
    letter-spacing: 2px;
    color: #bbb;
    text-transform: uppercase;
}

.embed-now .info .ttl {
    font-weight: 500;
    color: #333;
}

.embed-now .play-sm {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    border: 0;
    display: grid;
    place-items: center;
    cursor: pointer;
    flex: none;
}

.embed-list {
    list-style: none;
    border-top: 1px solid var(--line);
}

.embed-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid var(--line);
}

.embed-list li .thumb {
    width: 30px;
    height: 30px;
    object-fit: cover;
    flex: none;
}

.embed-list li .name {
    flex: 1;
}

.embed-list li .plays {
    color: #aaa;
}

.store-links {
    display: flex;
    gap: 10px;
    margin-top: 26px;
    flex-wrap: wrap;
}

.store-links a {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    padding: 11px 20px;
    border: 1px solid var(--line);
    color: #555;
    transition: all .2s;
}

.store-links a:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

/* ===================================================================
   GALLERY
   =================================================================== */
.gallery {
    background: #151515;
    padding: 0 0 80px;
    border-top: 1px solid rgba(255,255,255,.08);
    margin-top: 60px;
}

.gallery .sec-head {
    padding: 80px 0 70px;
}

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

.gallery-grid a {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
}

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

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.gallery-grid a:hover img {
    transform: scale(1.08);
}

.gallery-grid a::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent);
    opacity: 0;
    transition: opacity .3s;
    mix-blend-mode: multiply;
}

.gallery-grid a:hover::after {
    opacity: .35;
}

/* ---- Lightbox --------------------------------------------------- */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, .92);
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 85vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 2px;
    animation: lbFadeIn .3s ease;
}

@keyframes lbFadeIn {
    from { opacity: 0; transform: scale(.95); }
    to   { opacity: 1; transform: scale(1); }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: 0;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
    opacity: .7;
    transition: opacity .2s;
}

.lightbox-close:hover { opacity: 1; }

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: 0;
    color: #fff;
    font-size: 48px;
    cursor: pointer;
    z-index: 10;
    padding: 10px;
    opacity: .7;
    transition: opacity .2s;
}

.lightbox-prev:hover,
.lightbox-next:hover { opacity: 1; }

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 24px;
    color: rgba(255,255,255,.6);
    font-size: 14px;
}

/* ===================================================================
   VIDEO
   =================================================================== */
.video-frame {
    position: relative;
    max-width: 880px;
    margin-inline: auto;
    aspect-ratio: 16/9;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
}

.video-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-frame .play-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, .15);
    transition: background .3s;
}

.video-frame:hover .play-overlay {
    background: rgba(0, 0, 0, .3);
}

.video-frame .play-overlay span {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(224, 87, 78, .85);
    display: grid;
    place-items: center;
    color: #fff;
    transition: transform .25s;
}

.video-frame:hover .play-overlay span {
    transform: scale(1.1);
}

/* ===================================================================
   CONTACT
   =================================================================== */
.contact-page {
    background: var(--dark);
    padding-top: 120px;
    flex: 1;
}

.contact-page .sec-head h2 {
    color: #fff;
}

.contact-page .contact-subtitle {
    color: rgba(255,255,255,.85);
}

.contact-page .contact-form input,
.contact-page .contact-form textarea {
    border-bottom-color: rgba(255,255,255,.18);
    color: #fff;
}

.contact-page .contact-form input::placeholder,
.contact-page .contact-form textarea::placeholder {
    color: rgba(255,255,255,.45);
}

.contact-page .contact-details li {
    color: rgba(255,255,255,.75);
}

.contact-page .contact-details li a {
    color: rgba(255,255,255,.75);
}

.contact-page .contact-details li a:hover {
    color: var(--accent);
}

.contact-page .contact-text {
    color: rgba(255,255,255,.55);
}

.contact-page .contact-social a {
    color: #fff;
}

.contact-page .contact-social a:hover {
    color: var(--accent);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-subtitle {
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: var(--ink);
}

.contact-form {
    max-width: 100%;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #ddd;
    color: var(--ink);
    font-family: var(--font);
    font-size: 15px;
    padding: 14px 0;
    font-weight: 300;
    margin-bottom: 10px;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form input::placeholder, .contact-form textarea::placeholder {
    color: #999;
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: 0;
    border-color: var(--accent);
}

.contact-details {
    list-style: none;
    margin-bottom: 24px;
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: #555;
}

.contact-details li svg {
    flex: none;
    color: var(--accent);
}

.contact-details li a {
    color: #555;
    transition: color .2s;
}

.contact-details li a:hover {
    color: var(--accent);
}

.contact-text {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.contact-social {
    display: flex;
    gap: 16px;
}

.contact-social a {
    color: var(--ink);
    transition: color .2s;
}

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

/* ===================================================================
   FOOTER
   =================================================================== */
.footer {
    background: #111;
    color: rgba(255, 255, 255, .55);
    padding: 0;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
    font-style: italic;
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 900px) {
    /* ---- HEADER mobile : barre blanche 70px, tout aligné sur une ligne ---- */
    .nav {
        display: flex;
        align-items: center;
        justify-content: space-between; /* icônes à gauche, burger à droite */
        height: 70px;
        position: relative; /* repère pour centrer le logo */
    }

    /* icônes à gauche (2 seulement) */
    .nav-icons {
        display: flex;
        align-items: center;
        gap: 18px;
    }

    .nav-icons a {
        display: flex;
    }

    /* logo centré en absolu : il ne décale rien et reste pile au milieu */
    .logo {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        font-size: 30px;
        line-height: 1;
    }

    /* burger à droite */
    .burger {
        display: flex;
        align-items: center;
        color: #fff;
    }

    /* barre sombre (mobile) */
    .site-header {
        background: rgba(0,0,0,.6);
        backdrop-filter: blur(4px);
    }

    .site-header.scrolled {
        background: #1a1a1a;
    }

    .site-header.scrolled .nav {
        height: 70px;
    }

    .site-header.scrolled .logo {
        font-size: 30px;
    }

    /* menu sombre plein écran, sous la barre */
    .menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        width: 100% !important;
        flex-direction: column;
        background: #1a1a1a;
        box-shadow: 0 10px 30px rgba(0,0,0,.3);
        overflow-y: auto;
        padding: 0;
        gap: 0;
        z-index: 100;
        justify-self: stretch;
    }

    .menu.open {
        display: flex;
    }

    .menu li {
        width: 100%;
    }

    .menu a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 20px;
        font-size: 15px;
        text-transform: none;
        color: rgba(255,255,255,.85);
        border-bottom: 1px solid rgba(255,255,255,.1);
        font-weight: 400;
        letter-spacing: 0;
    }

    .menu a::after {
        content: '›';
        font-size: 18px;
        color: rgba(255,255,255,.4);
        font-weight: 300;
    }

    .menu a.active {
        color: var(--accent);
        font-weight: 400;
    }

    .menu a.active::after,
    .menu a.no-sub::after {
        content: '';
    }

    /* ---- HERO mobile : image plein écran, pas de brouillard ---- */
    .hero {
        min-height: 90vh;
    }

    .hero::before {
        background-position: center top;
        background-size: cover;
        -webkit-mask-image: none;
        mask-image: none;
    }

    .hero-text {
        width: 100%;
        min-height: 90vh;
        padding: 80px 16px 50px 16px;
        justify-content: center;
    }

    .hero-title {
        font-size: clamp(50px, 18vw, 90px);
    }

    .hero-sub {
        font-size: clamp(10px, 2.8vw, 14px);
        font-weight: 700;
        letter-spacing: 3px;
        margin: 8px 0 22px;
    }

    .btn {
        font-size: 11px;
        padding: 14px 28px;
    }

    /* ---- autres sections ---- */
    .about {
        margin-top: 0;
        padding: 0 0 40px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .about-text {
        padding: 30px 20px;
    }

    .about-img img {
        height: 350px;
    }

    .about-title {
        font-size: 36px;
    }

    .album-release {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .album-cover img {
        max-height: 360px;
        object-fit: cover;
    }

    .album-track {
        padding: 14px 16px;
        gap: 10px;
    }

    .album-desc {
        padding: 0 16px;
    }

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

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

    .show-feature, .show-row {
        grid-template-columns: 90px 1fr 90px;
        gap: 10px;
        font-size: 13px;
    }

    .show-feature .event, .show-row .event {
        display: none;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 520px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

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