.section-heading p {
    font-family: "Cinzel", Georgia, serif;
    font-size: clamp(0.9rem, 1.35vw, 1.08rem);
    font-weight: 300;
    letter-spacing: 0.10em;
    color: #cdb4a0;
}

.gallery-more {
    position: relative;
    display: block;
    width: min(520px, 82vw);
    margin: 46px auto 0;
    padding-bottom: 24px;
    color: #cdb4a0;
    font-family: "Cinzel", Georgia, serif;
    font-size: clamp(0.92rem, 1.5vw, 1.18rem);
    font-weight: 300;
    letter-spacing: 0.24em;
    line-height: 1.4;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 180ms ease, text-shadow 180ms ease;
}

.gallery-more::before {
    content: "✦";
    position: absolute;
    left: 0;
    bottom: 1px;
    color: #e8bb8e;
    font-size: 1.25rem;
    line-height: 1;
    letter-spacing: 0;
    text-shadow: 0 0 12px rgba(232, 187, 142, 0.28);
    transform: translateX(-50%);
}

.gallery-more::after {
    content: "";
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 11px;
    height: 1px;
    background: linear-gradient(90deg, var(--bronze), var(--bronze-soft), rgba(184, 140, 104, 0.18));
}

.gallery-more span {
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

.gallery-more span::after {
    content: "➤";
    position: absolute;
    right: -61px;
    bottom: -25px;
    color: #d5a47f;
    font-size: 1.35rem;
    line-height: 1;
    letter-spacing: 0;
    transform: scaleX(1.55);
    transform-origin: left center;
}

.gallery-more:hover {
    color: #f0c7a9;
    text-shadow: 0 0 12px rgba(213, 164, 127, 0.24);
}

@media (max-width: 520px) {
    .section-heading p {
        letter-spacing: 0.06em;
    }

    .gallery-more {
        width: calc(100% - 28px);
        padding-bottom: 22px;
        letter-spacing: 0.08em;
    }

    .gallery-more::before {
        left: 10px;
    }

    .gallery-more::after {
        left: 28px;
        right: 28px;
    }

    .gallery-more span {
        display: block;
    }

    .gallery-more span::after {
        right: 9px;
    }
}
