#gallery-toolbar {
    opacity: 1 !important;
    transform: none !important;
}

/* Compact premium quote band */
.gallery-quote {
    position: relative;
    background:
        radial-gradient(ellipse 70% 120% at 100% 0%, rgba(11, 204, 231, 0.1) 0%, transparent 55%),
        linear-gradient(180deg, #fafafa 0%, #f3f3f1 100%);
    border-bottom: 1px solid #e8e8e6;
    overflow: hidden;
}

.gallery-quote__glow {
    position: absolute;
    width: 280px;
    height: 280px;
    right: -60px;
    bottom: -120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(11, 204, 231, 0.14) 0%, transparent 70%);
    pointer-events: none;
    animation: galleryQuoteGlow 7s ease-in-out infinite alternate;
}

.gallery-quote__backdrop-wrap {
    position: absolute;
    right: 0;
    bottom: -12%;
    z-index: 0;
    width: min(58vw, 420px);
    pointer-events: none;
    user-select: none;
}

.gallery-quote__backdrop {
    display: block;
    width: 100%;
    height: auto;
    color: #1e1e1e;
    opacity: 0.08;
    transform-origin: center bottom;
}

@keyframes galleryQuoteGlow {
    from { transform: translate3d(0, 0, 0) scale(1); opacity: 0.7; }
    to { transform: translate3d(-24px, -18px, 0) scale(1.12); opacity: 1; }
}

.gallery-quote::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    background: linear-gradient(180deg, #0bcce7 0%, rgba(11, 204, 231, 0.12) 100%);
}

.gallery-quote__inner {
    position: relative;
    z-index: 1;
    max-width: 1440px;
    margin: 0 auto;
    padding: 36px 24px;
}

.gallery-quote__main {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
    max-width: 920px;
}

.gallery-quote__mark {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 64px;
    line-height: 0.65;
    color: #0bcce7;
    text-shadow: 0 8px 24px rgba(11, 204, 231, 0.25);
    user-select: none;
}

.gallery-quote__text {
    margin: 0;
    font-size: clamp(23px, 3.3vw, 40px);
    line-height: 1.28;
    font-weight: 400;
    color: #1e1e1e;
    quotes: none;
}

.gallery-quote__line {
    display: inline;
}

.gallery-quote__meta {
    display: flex;
    align-items: center;
    gap: 14px;
}

.gallery-quote__rule {
    display: block;
    width: 42px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #0bcce7, rgba(11, 204, 231, 0.15));
    transform-origin: left center;
}

.gallery-quote__credit {
    margin: 0;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #737373;
}

@media (min-width: 900px) {
    .gallery-quote__inner {
        padding: 44px 64px;
    }

    .gallery-quote__line {
        display: block;
    }

    .gallery-quote__backdrop-wrap {
        right: 4%;
        bottom: -10%;
        width: min(38vw, 480px);
    }

    .gallery-quote__backdrop {
        opacity: 0.09;
    }
}

@media (min-width: 1200px) {
    .gallery-quote__inner {
        padding: 52px 80px;
    }

    .gallery-quote__mark {
        font-size: 76px;
    }

    .gallery-quote__backdrop-wrap {
        right: 6%;
        bottom: -8%;
        width: min(34vw, 520px);
    }

    .gallery-quote__backdrop {
        opacity: 0.1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .gallery-quote__glow {
        animation: none;
    }
}

.gallery-toolbar {
    position: sticky;
    top: 0;
    z-index: 50;
    margin: 0 0 8px;
    padding: 0 0 8px;
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.96) 85%, rgba(255, 255, 255, 0) 100%);
}

.gallery-toolbar__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(180px, 240px) auto;
    gap: 12px;
    align-items: center;
    padding: 14px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: rgba(250, 250, 250, 0.92);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.gallery-toolbar__field {
    position: relative;
    display: flex;
    align-items: center;
    margin: 0;
}

.gallery-toolbar__field--search {
    min-width: 0;
}

.gallery-toolbar__icon {
    position: absolute;
    left: 14px;
    color: #94a3b8;
    pointer-events: none;
}

.gallery-toolbar__input,
.gallery-toolbar__select {
    width: 100%;
    height: 46px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    background: #fff;
    color: #1e1e1e;
    font-family: "Outfit", sans-serif;
    font-size: 15px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.gallery-toolbar__input {
    padding: 0 14px 0 42px;
}

.gallery-toolbar__select {
    padding: 0 36px 0 14px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    cursor: pointer;
}

.gallery-toolbar__input:focus,
.gallery-toolbar__select:focus {
    outline: none;
    border-color: #1e1e1e;
    box-shadow: 0 0 0 3px rgba(30, 30, 30, 0.08);
}

.gallery-toolbar__clear {
    height: 46px;
    padding: 0 18px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    background: #fff;
    color: #475569;
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.gallery-toolbar__clear:hover,
.gallery-toolbar__clear:focus {
    border-color: #1e1e1e;
    color: #1e1e1e;
    outline: none;
}

.gallery-toolbar__count {
    margin: 10px 4px 0;
    font-family: "Outfit", sans-serif;
    font-size: 13px;
    color: #64748b;
}

.gallery-no-results {
    padding: 48px 24px;
    border: 1px dashed #d1d5db;
    border-radius: 14px;
    background: #fafafa;
    text-align: center;
}

.gallery-no-results__title {
    margin: 0 0 8px;
    font-size: 28px;
    color: #1e1e1e;
}

.gallery-no-results__text {
    margin: 0;
    font-size: 16px;
    color: #64748b;
}

[data-gallery-section][hidden] {
    display: none !important;
}

.gallery-albums {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px 20px;
}

.gallery-album {
    display: block;
    text-decoration: none;
    color: inherit;
    min-width: 0;
    transition: transform 0.35s ease;
}

.gallery-album:hover,
.gallery-album:focus-visible {
    transform: translateY(-2px);
    outline: none;
}

/* Structural collage templates — each card can use a different grid */
.gallery-album__collage {
    display: grid;
    gap: 6px;
    border-radius: 12px;
    overflow: hidden;
}

.gallery-album__stack,
.gallery-album__row {
    display: flex;
    gap: 6px;
    min-width: 0;
    min-height: 0;
}

.gallery-album__stack {
    flex-direction: column;
}

.gallery-album__row {
    flex-direction: row;
}

.gallery-album__thumb {
    position: relative;
    width: 100%;
    min-height: 0;
    overflow: hidden;
    border-radius: 10px;
    background: #f5f5f4;
}

.gallery-album__thumb.is-portrait {
    border-radius: 12px 8px 8px 12px;
}

.gallery-album__thumb.is-square {
    border-radius: 8px;
}

.gallery-album__thumb.is-landscape {
    border-radius: 10px;
}

/* stack-left: 2 small left + large portrait right */
.gallery-album__collage--stack-left {
    grid-template-columns: 0.9fr 1.15fr;
    align-items: stretch;
}

.gallery-album__collage--stack-left .gallery-album__stack .gallery-album__thumb.is-square {
    aspect-ratio: 1 / 1;
}

.gallery-album__collage--stack-left .gallery-album__stack .gallery-album__thumb.is-landscape {
    aspect-ratio: 16 / 10;
}

.gallery-album__collage--stack-left .gallery-album__thumb--large {
    height: 100%;
    align-self: stretch;
    border-radius: 8px 14px 14px 8px;
}

/* stack-right: large portrait left + 2 small right */
.gallery-album__collage--stack-right {
    grid-template-columns: 1.15fr 0.9fr;
    align-items: stretch;
}

.gallery-album__collage--stack-right .gallery-album__stack .gallery-album__thumb.is-square {
    aspect-ratio: 1 / 1;
}

.gallery-album__collage--stack-right .gallery-album__stack .gallery-album__thumb.is-landscape {
    aspect-ratio: 16 / 10;
}

.gallery-album__collage--stack-right .gallery-album__thumb--large {
    height: 100%;
    align-self: stretch;
    border-radius: 14px 8px 8px 14px;
}

/* stack-top: square on top, landscape below */
.gallery-album__collage--stack-top {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
}

.gallery-album__collage--stack-top .gallery-album__thumb--top {
    aspect-ratio: 1 / 1;
}

.gallery-album__collage--stack-top .gallery-album__thumb--bottom {
    aspect-ratio: 16 / 9;
}

/* duo-portrait: two tall frames side by side */
.gallery-album__collage--duo-portrait {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

.gallery-album__collage--duo-portrait .gallery-album__thumb {
    aspect-ratio: 3 / 4;
    border-radius: 12px;
}

/* quad: 2×2 equal squares */
.gallery-album__collage--quad {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    aspect-ratio: 1 / 1;
}

.gallery-album__collage--quad .gallery-album__thumb {
    aspect-ratio: 1 / 1;
    height: 100%;
    border-radius: 8px;
}

/* hero-bottom: 2 on top row + wide landscape bottom */
.gallery-album__collage--hero-bottom {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
}

.gallery-album__collage--hero-bottom .gallery-album__row > .gallery-album__thumb {
    flex: 1;
}

.gallery-album__collage--hero-bottom .gallery-album__row .is-square {
    aspect-ratio: 1 / 1;
}

.gallery-album__collage--hero-bottom .gallery-album__row .is-portrait {
    aspect-ratio: 3 / 4;
}

.gallery-album__collage--hero-bottom .gallery-album__thumb--hero {
    aspect-ratio: 2.2 / 1;
    border-radius: 10px;
}

.gallery-album__thumb.is-portrait img,
.gallery-album__thumb.is-portrait video {
    object-position: center 18%;
}

.gallery-album__thumb.is-landscape img,
.gallery-album__thumb.is-landscape video,
.gallery-album__thumb.is-square img,
.gallery-album__thumb.is-square video {
    object-position: center center;
}

.gallery-album__thumb img,
.gallery-album__thumb video,
.gallery-album__thumb iframe {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
    border: 0;
    pointer-events: none;
}

.gallery-album__thumb video.gallery-album__media {
    background: #0c0a09;
}

.gallery-album__thumb iframe.gallery-album__media--embed {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: scale(1.12);
    transform-origin: center center;
}

.gallery-album:hover .gallery-album__thumb img,
.gallery-album:hover .gallery-album__thumb video,
.gallery-album:hover .gallery-album__thumb iframe,
.gallery-album:focus-visible .gallery-album__thumb img,
.gallery-album:focus-visible .gallery-album__thumb video,
.gallery-album:focus-visible .gallery-album__thumb iframe {
    transform: scale(1.04);
}

.gallery-album:hover .gallery-album__thumb iframe.gallery-album__media--embed,
.gallery-album:focus-visible .gallery-album__thumb iframe.gallery-album__media--embed {
    transform: scale(1.16);
}

.gallery-album__meta {
    margin-top: 12px;
    padding: 0 2px;
}

.gallery-album__title {
    margin: 0;
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
    color: #1e1e1e;
}

.gallery-album__count {
    margin: 4px 0 0;
    font-family: "Outfit", sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
    color: #737373;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (min-width: 640px) {
    .gallery-albums {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px 24px;
    }
}

@media (min-width: 1100px) {
    .gallery-albums {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 36px 28px;
    }

    .gallery-album__title {
        font-size: 17px;
    }
}

@media (max-width: 767px) {
    .gallery-toolbar {
        top: 0;
    }

    .gallery-toolbar__inner {
        grid-template-columns: 1fr;
    }

    .gallery-toolbar__clear {
        width: 100%;
    }
}

/* Collection preview modal */
body.gallery-preview-open {
    overflow: hidden;
}

.gallery-preview {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.gallery-preview[hidden] {
    display: none !important;
}

.gallery-preview__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 15, 15, 0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.gallery-preview__panel {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: min(1180px, 100%);
    max-height: calc(100svh - 32px);
    overflow: hidden;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
}

.gallery-preview__panel:fullscreen {
    width: 100%;
    max-height: 100%;
    border-radius: 0;
}

.gallery-preview__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px 12px;
    border-bottom: 1px solid #ececec;
    flex-shrink: 0;
}

.gallery-preview__heading {
    min-width: 0;
    flex: 1 1 auto;
    padding-right: 8px;
}

.gallery-preview__eyebrow {
    margin: 0 0 4px;
    font-family: "Outfit", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #a16207;
}

.gallery-preview__title {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 500;
    line-height: 1.2;
    color: #1e1e1e;
}

.gallery-preview__summary {
    margin: 6px 0 0;
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    line-height: 1.45;
    color: #737373;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gallery-preview__toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex-shrink: 0;
}

.gallery-preview__tool,
.gallery-preview__close {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    background: #fff;
    color: #1e1e1e;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.gallery-preview__tool:hover,
.gallery-preview__tool:focus-visible,
.gallery-preview__close:hover,
.gallery-preview__close:focus-visible,
.gallery-preview__tool.is-active {
    background: #f5f5f4;
    border-color: #1e1e1e;
    outline: none;
}

.gallery-preview__tool:disabled {
    opacity: 0.35;
    cursor: default;
}

.gallery-preview__progress {
    height: 2px;
    background: #f0f0f0;
    overflow: hidden;
}

.gallery-preview__progress-bar {
    width: 0;
    height: 100%;
    background: #1e1e1e;
    transition: width 0.05s linear;
}

.gallery-preview.is-autoplaying .gallery-preview__progress-bar {
    background: linear-gradient(90deg, #a16207, #1e1e1e);
}

.gallery-preview__stage {
    position: relative;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    align-items: center;
    gap: 10px;
    padding: 14px 14px 0;
    min-height: 0;
    flex: 0 0 auto;
}

.gallery-preview__viewport {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: min(48svh, 520px);
    background: #f5f5f4;
    border-radius: 14px;
    overflow: hidden;
    touch-action: none;
    cursor: zoom-in;
    isolation: isolate;
}

.gallery-preview__viewport.is-zoomed {
    cursor: grab;
}

.gallery-preview__viewport.is-panning {
    cursor: grabbing;
}

.gallery-preview__viewport.is-fading .gallery-preview__image,
.gallery-preview__viewport.is-fading .gallery-preview__video,
.gallery-preview__viewport.is-fading .gallery-preview__embed {
    animation: galleryPreviewFade 0.28s ease;
}

@keyframes galleryPreviewFade {
    from { opacity: 0.35; transform: scale(0.985); }
    to { opacity: 1; transform: scale(1); }
}

.gallery-preview__frame {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    transform-origin: center center;
    transition: transform 0.12s ease-out;
    will-change: transform;
}

.gallery-preview__image {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    user-select: none;
    -webkit-user-drag: none;
}

.gallery-preview__media {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
}

.gallery-preview__video,
.gallery-preview__embed {
    display: block;
    width: min(100%, 960px);
    height: min(70vh, 540px);
    max-width: 100%;
    max-height: 100%;
    background: #0c0a09;
    border: 0;
}

.gallery-preview.is-video-slide .gallery-preview__tool#gallery-preview-zoom-in,
.gallery-preview.is-video-slide .gallery-preview__tool#gallery-preview-zoom-out {
    opacity: 0.35;
    pointer-events: none;
}

.gallery-preview__thumb {
    position: relative;
}

.gallery-preview__thumb-play {
    position: absolute;
    right: 6px;
    bottom: 6px;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    line-height: 1;
    color: #fff;
    background: rgba(0, 0, 0, 0.65);
    pointer-events: none;
}

.gallery-preview__counter {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    margin: 0;
    font-family: "Outfit", sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #fff;
    white-space: nowrap;
    background: rgba(30, 30, 30, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    padding: 5px 10px;
    pointer-events: none;
}

.gallery-preview__zoom-hint {
    position: absolute;
    top: 12px;
    left: 50%;
    z-index: 3;
    transform: translateX(-50%);
    margin: 0;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(30, 30, 30, 0.78);
    color: #fff;
    font-family: "Outfit", sans-serif;
    font-size: 12px;
    pointer-events: none;
    animation: galleryHintFade 2.5s ease forwards;
}

@keyframes galleryHintFade {
    0%, 70% { opacity: 1; }
    100% { opacity: 0; }
}

.gallery-preview__nav {
    position: relative;
    z-index: 2;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    background: #fff;
    color: #1e1e1e;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.gallery-preview__nav:hover:not(:disabled),
.gallery-preview__nav:focus-visible:not(:disabled) {
    background: #f5f5f4;
    border-color: #1e1e1e;
    outline: none;
}

.gallery-preview__nav:disabled {
    opacity: 0.35;
    cursor: default;
}

.gallery-preview__toast {
    margin: 0 20px 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #1e1e1e;
    color: #fff;
    font-family: "Outfit", sans-serif;
    font-size: 12px;
    white-space: nowrap;
    align-self: flex-end;
}

.gallery-preview__thumbs-wrap {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr) 36px;
    align-items: center;
    column-gap: 10px;
    margin: 12px 16px 0;
    padding: 10px 8px;
    border: 1px solid #ececec;
    border-radius: 14px;
    background: #fafafa;
    flex-shrink: 0;
}

.gallery-preview__thumbs {
    display: flex;
    justify-content: center;
    gap: 8px;
    overflow-x: auto;
    min-width: 0;
    padding: 2px 4px;
    scrollbar-width: thin;
    scroll-behavior: smooth;
}

.gallery-preview__thumbs-nav {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    background: #fff;
    color: #525252;
    cursor: pointer;
    flex-shrink: 0;
}

.gallery-preview__thumbs-nav:hover,
.gallery-preview__thumbs-nav:focus-visible {
    border-color: #1e1e1e;
    color: #1e1e1e;
    outline: none;
}

.gallery-preview__thumb {
    position: relative;
    flex: 0 0 auto;
    width: 64px;
    height: 64px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 10px;
    overflow: hidden;
    background: #f5f5f4;
    cursor: pointer;
    opacity: 0.72;
    transition: border-color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.gallery-preview__thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-preview__thumb:hover,
.gallery-preview__thumb:focus-visible {
    opacity: 1;
    border-color: #a3a3a3;
    outline: none;
    transform: translateY(-1px);
}

.gallery-preview__thumb.is-active {
    opacity: 1;
    border-color: #1e1e1e;
    box-shadow: 0 0 0 1px #1e1e1e;
}

.gallery-preview__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 18px 16px;
    border-top: 1px solid #ececec;
    background: #fafafa;
    flex-shrink: 0;
    margin-top: auto;
}

.gallery-preview__shortcuts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-family: "Outfit", sans-serif;
    font-size: 11px;
    color: #a3a3a3;
}

.gallery-preview__shortcuts span {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 8px;
    border: 1px solid #e7e5e4;
    border-radius: 6px;
    background: #fff;
}

.gallery-preview__actions-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.gallery-preview__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 10px;
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.gallery-preview__btn--ghost {
    border: 1px solid #d1d5db;
    background: #fff;
    color: #1e1e1e;
}

.gallery-preview__btn--ghost:hover,
.gallery-preview__btn--ghost:focus-visible {
    border-color: #1e1e1e;
    outline: none;
}

.gallery-preview__btn--solid {
    border: 1px solid #1e1e1e;
    background: #1e1e1e;
    color: #fff;
}

.gallery-preview__btn--solid:hover,
.gallery-preview__btn--solid:focus-visible {
    background: #333;
    outline: none;
}

.gallery-preview__btn[hidden] {
    display: none !important;
}

@media (max-width: 767px) {
    .gallery-preview {
        padding: 0;
    }

    .gallery-preview__panel {
        width: 100%;
        max-height: 100svh;
        border-radius: 0;
    }

    .gallery-preview__header {
        padding: 14px 12px 10px;
    }

    .gallery-preview__toolbar {
        gap: 6px;
    }

    .gallery-preview__tool,
    .gallery-preview__close {
        width: 36px;
        height: 36px;
    }

    .gallery-preview__stage {
        grid-template-columns: 1fr;
        padding: 8px 12px 0;
    }

    .gallery-preview__nav {
        position: absolute;
        top: 42%;
        z-index: 4;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    }

    .gallery-preview__nav--prev {
        left: 20px;
    }

    .gallery-preview__nav--next {
        right: 20px;
    }

    .gallery-preview__viewport {
        height: min(42svh, 380px);
    }

    .gallery-preview__thumbs-wrap {
        margin: 10px 12px 0;
        grid-template-columns: 1fr;
        padding: 8px;
    }

    .gallery-preview__shortcuts {
        display: none;
    }

    .gallery-preview__actions {
        justify-content: stretch;
    }

    .gallery-preview__actions-btns {
        width: 100%;
    }

    .gallery-preview__btn {
        flex: 1 1 auto;
    }

    .gallery-preview__thumbs-nav {
        display: none;
    }
}

/* —— Gallery editorial (Journal / Custom dark) —— */
.gl-page {
    background: #000;
    color: #f7f5f1;
    min-height: 100vh;
    padding-bottom: 4rem;
    color-scheme: dark;
    overflow-x: clip;
}

.gl-hero {
    position: relative;
    min-height: min(78vh, 40rem);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    padding: calc(var(--ed-header-h) + 2.2rem) 6% 3.2rem;
    overflow: hidden;
    background-color: #0a0a0a;
}

.gl-hero::before {
    content: "";
    position: absolute;
    inset: -10%;
    background: var(--gl-hero, url("/assets/images/gallery/hero.jpg")) center / cover no-repeat;
    transform: scale(1.12);
    animation: glKenBurns 18s ease-out forwards;
    will-change: transform;
}

.gl-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.42) 48%, rgba(0, 0, 0, 0.5) 100%);
    pointer-events: none;
}

@keyframes glKenBurns {
    from { transform: scale(1.12) translate3d(0, 2%, 0); }
    to { transform: scale(1) translate3d(0, 0, 0); }
}

.gl-hero-inner {
    position: relative;
    z-index: 1;
    width: min(720px, 100%);
}

.gl-kicker {
    margin: 0 0 0.85rem;
    font-family: "Montserrat", sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(247, 245, 241, 0.62);
}

.gl-display {
    margin: 0;
    font-family: "Bodoni Moda", serif;
    font-size: clamp(2.8rem, 7vw, 5.6rem);
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 0.9;
}

.gl-lede {
    margin: 1rem auto 0;
    max-width: 36rem;
    font-family: "Montserrat", sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    line-height: 1.7;
    color: rgba(247, 245, 241, 0.72);
}

.gl-quote {
    text-align: center;
    padding: 3rem 8% 2.4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.gl-quote-text {
    margin: 0 auto;
    max-width: 38rem;
    font-family: "Bodoni Moda", serif;
    font-size: clamp(1.35rem, 2.6vw, 2rem);
    font-weight: 500;
    font-style: italic;
    line-height: 1.4;
    color: #f7f5f1;
}

.gl-quote-credit {
    margin: 1rem 0 0;
    font-family: "Montserrat", sans-serif;
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(247, 245, 241, 0.55);
}

.gl-toolbar-wrap {
    margin: 0;
    overflow: visible;
}

.gl-shell {
    width: min(1440px, 90vw);
    margin-inline: auto;
}

.gl-section-head {
    text-align: center;
    margin: 0 0 1.8rem;
}

.gl-section-title {
    margin: 0.35rem 0 0;
    font-family: "Bodoni Moda", serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1;
}

.gl-page .gallery-toolbar {
    position: sticky;
    top: 0;
    z-index: 50;
    margin: 0;
    padding: 0;
    overflow: visible;
    background: rgba(10, 10, 10, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.gl-page .gallery-toolbar:has(.is-open) {
    z-index: 80;
}

.gl-page .gallery-toolbar__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(11rem, 0.85fr) auto auto;
    align-items: center;
    gap: 0.7rem 0.85rem;
    margin: 0;
    padding: 0.85rem 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.gl-page .gallery-toolbar__field {
    flex: none;
    min-width: 0;
    width: 100%;
}

.gl-page .gallery-toolbar__icon,
.gl-page .gallery-toolbar__chevron {
    color: rgba(247, 245, 241, 0.55);
    pointer-events: none;
}

.gl-page .gallery-toolbar__icon {
    left: 0.75rem;
}

.gl-page .gallery-toolbar__chevron {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    width: 13px;
    height: 13px;
    transform: translateY(-50%);
    transition: transform 0.25s ease;
}

.gl-page .gallery-toolbar__field--select {
    position: relative;
    z-index: 2;
}

.gl-page .gallery-toolbar__select {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.gl-page .gallery-toolbar__input,
.gl-page .gallery-toolbar__select-trigger,
.gl-page .gallery-toolbar__clear {
    height: 2.4rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0;
    background: transparent;
    background-image: none;
    color: #f7f5f1;
    font-family: "Montserrat", sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    box-shadow: none;
    transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.gl-page .gallery-toolbar__input {
    padding: 0 0.85rem 0 2.05rem;
}

.gl-page .gallery-toolbar__select-trigger {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    padding: 0 2.1rem 0 0.85rem;
    text-align: left;
    cursor: pointer;
}

.gl-page .gallery-toolbar__select-value {
    display: block;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gl-page .gallery-toolbar__field--select.is-open .gallery-toolbar__chevron {
    transform: translateY(-50%) rotate(180deg);
}

.gl-page .gallery-toolbar__menu {
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 0;
    right: 0;
    z-index: 80;
    margin: 0;
    padding: 0.35rem 0;
    list-style: none;
    max-height: min(22rem, 70vh);
    overflow: auto;
    border: 1px solid rgba(247, 245, 241, 0.22);
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
}

.gl-page .gallery-toolbar__menu[hidden] {
    display: none !important;
}

.gl-page .gallery-toolbar__menu [role="option"] {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 2.15rem;
    padding: 0.45rem 2.15rem 0.45rem 0.9rem;
    color: rgba(247, 245, 241, 0.78);
    font-family: "Montserrat", sans-serif;
    font-size: 0.64rem;
    letter-spacing: 0.08em;
    line-height: 1.3;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease, padding-left 0.18s ease;
}

.gl-page .gallery-toolbar__menu [role="option"]:hover,
.gl-page .gallery-toolbar__menu [role="option"].is-active {
    background: #f7f5f1;
    color: #0a0a0a;
    padding-left: 1.05rem;
}

.gl-page .gallery-toolbar__menu [role="option"][aria-selected="true"] {
    color: #f7f5f1;
}

.gl-page .gallery-toolbar__menu [role="option"][aria-selected="true"]:hover,
.gl-page .gallery-toolbar__menu [role="option"][aria-selected="true"].is-active {
    color: #0a0a0a;
}

.gl-page .gallery-toolbar__menu [role="option"][aria-selected="true"]::after {
    content: "";
    position: absolute;
    right: 0.85rem;
    top: 50%;
    width: 7px;
    height: 12px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: translateY(-60%) rotate(45deg);
}

.gl-page .gallery-toolbar__input::placeholder {
    color: rgba(247, 245, 241, 0.38);
}

.gl-page .gallery-toolbar__input:hover,
.gl-page .gallery-toolbar__select-trigger:hover,
.gl-page .gallery-toolbar__select-trigger:focus,
.gl-page .gallery-toolbar__field--select.is-open .gallery-toolbar__select-trigger {
    background: rgba(247, 245, 241, 0.08);
    border-color: rgba(247, 245, 241, 0.72);
    color: #f7f5f1;
    outline: none;
}

.gl-page .gallery-toolbar__input:focus {
    border-color: rgba(247, 245, 241, 0.72);
    color: #f7f5f1;
    box-shadow: none;
    outline: none;
}

.gl-page .gallery-toolbar__clear:hover,
.gl-page .gallery-toolbar__clear:focus,
.gl-page .gallery-toolbar__clear.is-active {
    border-color: #f7f5f1;
    color: #0a0a0a;
    box-shadow: none;
    outline: none;
}

.gl-page .gallery-toolbar__clear {
    flex: 0 0 auto;
    min-width: 5.6rem;
    padding: 0 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    opacity: 0.55;
    transition: opacity 0.25s ease, border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.gl-page .gallery-toolbar__clear.is-active,
.gl-page .gallery-toolbar__clear:hover,
.gl-page .gallery-toolbar__clear:focus {
    opacity: 1;
    background: #f7f5f1;
    border-color: #f7f5f1;
    color: #0a0a0a;
}

.gl-page .gallery-toolbar__count {
    margin: 0;
    justify-self: end;
    white-space: nowrap;
    font-family: "Montserrat", sans-serif;
    font-size: 0.58rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(247, 245, 241, 0.52);
}

@media (max-width: 899px) {
    .gl-page .gallery-toolbar__inner {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
    }

    .gl-page .gallery-toolbar__count {
        grid-column: 1 / -1;
        justify-self: start;
    }
}

@media (max-width: 639px) {
    .gl-page .gallery-toolbar__inner {
        grid-template-columns: 1fr;
    }

    .gl-page .gallery-toolbar__clear {
        width: 100%;
    }
}

.gl-body {
    padding: 1.85rem 0 0;
}

.gl-page .gallery-no-results {
    padding: 3rem 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0;
    background: #0a0a0a;
}

.gl-page .gallery-no-results__title {
    font-family: "Bodoni Moda", serif;
    font-weight: 500;
    color: #f7f5f1;
}

.gl-page .gallery-no-results__text {
    font-family: "Montserrat", sans-serif;
    letter-spacing: 0.06em;
    color: rgba(247, 245, 241, 0.62);
}

.gl-page .gallery-no-results .ed-explore {
    margin-top: 1.2rem;
}

.gl-page .gallery-albums[hidden],
.gl-page .gl-section-head[hidden],
.gl-page [data-gallery-promo][hidden] {
    display: none !important;
}

.gl-page .gallery-albums-bleed {
    width: 100%;
    max-width: 100%;
}

.gl-page .gallery-albums {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: 210px;
    gap: var(--ed-grid-gap);
    width: 100%;
}

.gl-page .gallery-album {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-width: 0;
    overflow: hidden;
    background: #111;
    transform: none;
    isolation: isolate;
    outline: 1px solid rgba(247, 245, 241, 0.18);
}

.gl-page .gallery-album:hover,
.gl-page .gallery-album:focus-visible {
    transform: none;
    outline: none;
}

.gl-page .gallery-album:focus-visible {
    outline: 1px solid rgba(247, 245, 241, 0.7);
    outline-offset: -1px;
}

.gl-page .gallery-album--wide,
.gl-page .gallery-album--tall,
.gl-page .gallery-album--banner {
    grid-row: span 2;
}

.gl-page .gallery-album--sq {
    grid-row: span 1;
}

@media (min-width: 720px) {
    .gl-page .gallery-albums {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        grid-auto-rows: clamp(92px, 12vw, 128px);
        gap: var(--ed-grid-gap);
    }

    .gl-page .gallery-album--wide {
        grid-column: span 4;
        grid-row: span 3;
    }

    .gl-page .gallery-album--tall {
        grid-column: span 2;
        grid-row: span 3;
    }

    .gl-page .gallery-album--sq {
        grid-column: span 2;
        grid-row: span 2;
    }

    .gl-page .gallery-album--banner {
        grid-column: span 6;
        grid-row: span 4;
    }
}

@media (min-width: 1100px) {
    .gl-page .gallery-albums {
        grid-template-columns: repeat(12, minmax(0, 1fr));
        grid-auto-rows: clamp(84px, 8.4vw, 118px);
        gap: var(--ed-grid-gap);
    }

    .gl-page .gallery-album--wide {
        grid-column: span 8;
        grid-row: span 3;
    }

    .gl-page .gallery-album--tall {
        grid-column: span 4;
        grid-row: span 3;
    }

    .gl-page .gallery-album--sq {
        grid-column: span 4;
        grid-row: span 2;
    }

    .gl-page .gallery-album--banner {
        grid-column: span 12;
        grid-row: span 4;
    }
}

.gl-page .gallery-album__collage,
.gl-page .gallery-album__thumb,
.gl-page .gallery-album__thumb.is-portrait,
.gl-page .gallery-album__thumb.is-square,
.gl-page .gallery-album__thumb.is-landscape,
.gl-page .gallery-album__collage--stack-left .gallery-album__thumb--large,
.gl-page .gallery-album__collage--stack-right .gallery-album__thumb--large,
.gl-page .gallery-album__collage--duo-portrait .gallery-album__thumb,
.gl-page .gallery-album__collage--quad .gallery-album__thumb {
    border-radius: 0;
}

.gl-page .gallery-album__collage {
    flex: 1 1 auto;
    height: 100%;
    min-height: 100%;
    gap: 0;
    border: 0;
    aspect-ratio: auto;
}

.gl-page .gallery-album__stack,
.gl-page .gallery-album__row {
    gap: 0;
    height: 100%;
}

.gl-page .gallery-album__collage--quad {
    aspect-ratio: auto;
    height: 100%;
}

.gl-page .gallery-album__thumb,
.gl-page .gallery-album__collage--stack-left .gallery-album__stack .gallery-album__thumb.is-square,
.gl-page .gallery-album__collage--stack-left .gallery-album__stack .gallery-album__thumb.is-landscape,
.gl-page .gallery-album__collage--stack-right .gallery-album__stack .gallery-album__thumb.is-square,
.gl-page .gallery-album__collage--stack-right .gallery-album__stack .gallery-album__thumb.is-landscape,
.gl-page .gallery-album__collage--stack-top .gallery-album__thumb--top,
.gl-page .gallery-album__collage--stack-top .gallery-album__thumb--bottom,
.gl-page .gallery-album__collage--duo-portrait .gallery-album__thumb,
.gl-page .gallery-album__collage--quad .gallery-album__thumb,
.gl-page .gallery-album__collage--hero-bottom .gallery-album__row > .gallery-album__thumb,
.gl-page .gallery-album__collage--hero-bottom .gallery-album__thumb--hero {
    aspect-ratio: auto;
    height: 100%;
    min-height: 0;
    flex: 1 1 0;
}

.gl-page .gallery-album__thumb {
    background: #161616;
}

.gl-page .gallery-album:hover .gallery-album__thumb img,
.gl-page .gallery-album:hover .gallery-album__thumb video,
.gl-page .gallery-album:focus-visible .gallery-album__thumb img {
    transform: scale(1.08);
}

.gl-page .gallery-album__meta {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    margin: 0;
    padding: 1.25rem 1.15rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.38);
    pointer-events: none;
}

.gl-page .gallery-album__copy {
    min-width: 0;
    flex: 0 1 auto;
}

.gl-page .gallery-album__count {
    margin: 0 0 0.28rem;
    font-family: "Montserrat", sans-serif;
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(247, 245, 241, 0.72);
}

.gl-page .gallery-album__title {
    margin: 0;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: clamp(1.05rem, 1.7vw, 1.7rem);
    font-weight: 500;
    line-height: 1.12;
    color: #f7f5f1;
}

.gl-page .gallery-album--wide .gallery-album__title,
.gl-page .gallery-album--banner .gallery-album__title {
    font-size: clamp(1.35rem, 2.4vw, 2.4rem);
}

.gl-page .gallery-album--banner .gallery-album__meta {
    padding: 1.4rem 1.6rem;
}

.gl-page .gallery-album__view {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 2.25rem;
    padding: 0.45rem 1.05rem 0.45rem 0.9rem;
    border: 1px solid rgba(247, 245, 241, 0.62);
    background: rgba(255, 255, 255, 0.08);
    color: #f7f5f1;
    font-family: "Montserrat", sans-serif;
    font-size: 0.58rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    white-space: nowrap;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
    transition: background 0.28s ease, color 0.28s ease, border-color 0.28s ease, transform 0.28s ease;
}

.gl-page .gallery-album:hover .gallery-album__view,
.gl-page .gallery-album:focus-visible .gallery-album__view {
    background: #fff;
    border-color: #fff;
    color: #0a0a0a;
    transform: translateY(-1px);
}

.gl-page .gallery-album__view svg {
    display: block;
    flex-shrink: 0;
}

@media (max-width: 719px) {
    .gl-page .gallery-album__meta {
        padding: 1rem 0.85rem;
        gap: 0.7rem;
    }
}

.gl-page .gallery-album__summary {
    max-height: 0;
    margin: 0;
    opacity: 0;
    overflow: hidden;
    font-family: "Montserrat", sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    line-height: 1.5;
    color: rgba(247, 245, 241, 0.72);
    display: block;
    -webkit-line-clamp: unset;
    transition: opacity 0.35s ease, max-height 0.35s ease, margin 0.35s ease;
}

.gl-page .gallery-album:hover .gallery-album__summary,
.gl-page .gallery-album:focus-visible .gallery-album__summary {
    max-height: 3.4em;
    margin-top: 0.4rem;
    opacity: 1;
}

.gl-page .gallery-album::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    box-shadow: inset 0 0 0 0 rgba(247, 245, 241, 0);
    transition: box-shadow 0.35s ease;
    pointer-events: none;
}

.gl-page .gallery-album:hover::after,
.gl-page .gallery-album:focus-visible::after {
    box-shadow: inset 0 0 0 1px rgba(247, 245, 241, 0.42);
}

.gl-feature {
    display: grid;
    grid-template-columns: 1fr;
    margin: 3.2rem 0 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    overflow: hidden;
    background: #000;
}

@media (min-width: 900px) {
    .gl-feature {
        grid-template-columns: 1.2fr 0.95fr;
        min-height: 26rem;
    }
}

.gl-feature-media {
    min-height: 16rem;
    overflow: hidden;
    background: #161616;
}

.gl-feature-media img,
.gl-workshop-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 16rem;
    transform: scale(1.06);
    transition: transform 1.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.gl-feature.aos-animate .gl-feature-media img,
.gl-workshop.aos-animate .gl-workshop-media img {
    transform: scale(1);
}

.gl-feature:hover .gl-feature-media img,
.gl-workshop:hover .gl-workshop-media img {
    transform: scale(1.05);
    transition-duration: 0.65s;
}

.gl-feature-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.8rem 1.5rem 2rem;
    background: #0a0a0a;
}

@media (min-width: 900px) {
    .gl-feature-copy {
        padding: 2.2rem 2.4rem;
    }
}

.gl-feature-copy h2,
.gl-workshop-head h2 {
    margin: 0.4rem 0 0.85rem;
    font-family: "Bodoni Moda", serif;
    font-size: clamp(1.6rem, 2.8vw, 2.4rem);
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    line-height: 1.1;
}

.gl-feature-copy > p:not(.gl-kicker) {
    margin: 0 0 1.4rem;
    font-family: "Montserrat", sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    line-height: 1.7;
    color: rgba(247, 245, 241, 0.7);
}

.gl-feature-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.gl-page .ed-explore.is-solid {
    background: #fff;
    color: #0a0a0a;
}

.gl-page .ed-explore.is-solid:hover {
    background: transparent;
    color: #fff;
}

.gl-workshop {
    margin: 2.6rem 0 0;
}

.gl-workshop-head {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto 1.6rem;
}

.gl-workshop-head .gl-lede {
    margin-top: 0.75rem;
}

.gl-workshop-media {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 0;
    background: #161616;
    min-height: 18rem;
}

.gl-workshop-media img {
    min-height: 18rem;
    max-height: 34rem;
}

.gl-workshop-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.3rem 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: #0a0a0a;
}

@media (min-width: 800px) {
    .gl-workshop-bar {
        flex-direction: row;
        padding: 1.4rem 1.8rem;
    }
}

.gl-workshop-bar p {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    line-height: 1.6;
    color: rgba(247, 245, 241, 0.78);
    text-align: center;
}

@media (min-width: 800px) {
    .gl-workshop-bar p {
        text-align: left;
    }
}

@media (max-width: 767px) {
    .gl-shell {
        width: min(1440px, calc(100% - 2rem));
    }
}

@media (prefers-reduced-motion: reduce) {
    .gl-hero::before,
    .gl-feature-media img,
    .gl-workshop-media img {
        animation: none !important;
        transform: none !important;
        transition: none !important;
    }
}

/* Dark collection preview — matches editorial gallery */
.gallery-preview__panel {
    border-radius: 0;
    background: #0a0a0a;
    color: #f7f5f1;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.gallery-preview__header,
.gallery-preview__actions {
    border-color: rgba(255, 255, 255, 0.12);
    background: #0a0a0a;
}

.gallery-preview__eyebrow {
    color: rgba(247, 245, 241, 0.55);
    font-family: "Montserrat", sans-serif;
}

.gallery-preview__title {
    font-family: "Bodoni Moda", serif;
    color: #f7f5f1;
}

.gallery-preview__summary {
    font-family: "Montserrat", sans-serif;
    color: rgba(247, 245, 241, 0.62);
}

.gallery-preview__tool,
.gallery-preview__close,
.gallery-preview__nav,
.gallery-preview__thumbs-nav {
    border-color: rgba(255, 255, 255, 0.2);
    border-radius: 0;
    background: transparent;
    color: #f7f5f1;
}

.gallery-preview__tool:hover,
.gallery-preview__tool:focus-visible,
.gallery-preview__close:hover,
.gallery-preview__close:focus-visible,
.gallery-preview__tool.is-active,
.gallery-preview__nav:hover:not(:disabled),
.gallery-preview__nav:focus-visible:not(:disabled),
.gallery-preview__thumbs-nav:hover,
.gallery-preview__thumbs-nav:focus-visible {
    background: #fff;
    border-color: #fff;
    color: #0a0a0a;
}

.gallery-preview__progress {
    background: rgba(255, 255, 255, 0.12);
}

.gallery-preview__progress-bar {
    background: #f7f5f1;
}

.gallery-preview.is-autoplaying .gallery-preview__progress-bar {
    background: #f7f5f1;
}

.gallery-preview__viewport {
    background: #111;
    border-radius: 0;
}

.gallery-preview__thumbs-wrap {
    border-color: rgba(255, 255, 255, 0.12);
    border-radius: 0;
    background: #000;
}

.gallery-preview__thumb {
    border-radius: 0;
    background: #161616;
}

.gallery-preview__thumb.is-active {
    border-color: #f7f5f1;
    box-shadow: 0 0 0 1px #f7f5f1;
}

.gallery-preview__shortcuts {
    font-family: "Montserrat", sans-serif;
    color: rgba(247, 245, 241, 0.45);
}

.gallery-preview__shortcuts span {
    border-color: rgba(255, 255, 255, 0.18);
    border-radius: 0;
    background: transparent;
    color: rgba(247, 245, 241, 0.62);
}

.gallery-preview__btn {
    border-radius: 0;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.68rem;
}

.gallery-preview__btn--solid {
    border-color: #fff;
    background: #fff;
    color: #0a0a0a;
}

.gallery-preview__btn--solid:hover,
.gallery-preview__btn--solid:focus-visible {
    background: transparent;
    color: #fff;
}

.gallery-preview__btn--ghost {
    border-color: rgba(255, 255, 255, 0.28);
    background: transparent;
    color: #f7f5f1;
}
