/* ============================================================================
   City's Towing & Lockout — Gallery Page Styles
   File location:  /assets/css/gallery.css
   Loaded by:      gallery.php  (single <link> tag)
   Scoped under    .ct-gallery-page — zero global pollution.
   All classes     gl- prefixed.
   ============================================================================ */

.ct-gallery-page,
.ct-gallery-page * { box-sizing: border-box; }

.ct-gallery-page {
    --gl-red:        #D32F2F;
    --gl-red-hot:    #E84141;
    --gl-red-deep:   #A81F1F;
    --gl-black:      #000000;
    --gl-ink:        #0B0B0B;
    --gl-ink-2:      #141414;
    --gl-white:      #FFFFFF;
    --gl-gray:       #B0B0B0;
    --gl-gray-dim:   #6F6F6F;
    --gl-line:       rgba(255,255,255,.08);
    --gl-cream:      #F5F2EE;
    --gl-bone:       #FAFAF8;
    --gl-shadow-lg:  0 30px 70px -28px rgba(0,0,0,.55);
    --gl-shadow-md:  0 18px 40px -18px rgba(0,0,0,.40);
    --gl-font:       'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;

    font-family: var(--gl-font);
    color: #1a1a1a;
    background: var(--gl-bone);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ---- Animations ---- */
@keyframes glPulse {
    0%   { box-shadow: 0 0 0 0 rgba(211,47,47,.65); }
    70%  { box-shadow: 0 0 0 12px rgba(211,47,47,0); }
    100% { box-shadow: 0 0 0 0 rgba(211,47,47,0); }
}
@keyframes glFadeUp {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes glScaleIn {
    from { opacity: 0; transform: scale(.94); }
    to   { opacity: 1; transform: scale(1); }
}
@keyframes glLbIn {
    from { opacity: 0; transform: translateY(20px) scale(.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ---- Shared layout ---- */
.ct-gallery-page .gl-container {
    max-width: 1320px; margin: 0 auto; padding: 0 24px;
}
.ct-gallery-page .gl-section { padding: 96px 24px; position: relative; }
.ct-gallery-page .gl-section--cream { background: var(--gl-cream); }
.ct-gallery-page .gl-section--ink   { background: var(--gl-ink); color: #fff; }
.ct-gallery-page .gl-section--dark  { background: var(--gl-black); color: #fff; }

.ct-gallery-page .gl-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    text-transform: uppercase; letter-spacing: .22em;
    font-size: 11.5px; font-weight: 700; color: var(--gl-red); margin-bottom: 16px;
}
.ct-gallery-page .gl-eyebrow::before {
    content: ""; width: 24px; height: 2px; background: var(--gl-red);
}
.ct-gallery-page .gl-h2 {
    margin: 0 0 16px;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800; letter-spacing: -.018em; line-height: 1.08; text-wrap: balance;
}
.ct-gallery-page .gl-h2 em { font-style: normal; color: var(--gl-red); }
.ct-gallery-page .gl-lead {
    margin: 0 0 40px; font-size: 17px; line-height: 1.6;
    color: rgba(0,0,0,.65); max-width: 64ch; text-wrap: pretty;
}

/* Pulse dot */
.ct-gallery-page .gl-pulse-dot {
    display: inline-block; width: 8px; height: 8px; border-radius: 50%;
    background: var(--gl-red); animation: glPulse 1.8s ease-out infinite; flex: 0 0 auto;
}

/* ---- Buttons ---- */
.ct-gallery-page .gl-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 22px; border-radius: 12px;
    font-size: 15px; font-weight: 700; text-decoration: none;
    border: 1px solid transparent; cursor: pointer;
    font-family: inherit; line-height: 1.2; white-space: nowrap;
    transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.ct-gallery-page .gl-btn svg { width: 16px; height: 16px; flex: 0 0 auto; }
.ct-gallery-page .gl-btn--lg  { padding: 18px 28px; font-size: 16px; }
.ct-gallery-page .gl-btn--lg svg { width: 18px; height: 18px; }

.ct-gallery-page .gl-btn--primary {
    background: var(--gl-red); color: #fff;
    box-shadow: 0 14px 28px -12px rgba(211,47,47,.7), inset 0 1px 0 rgba(255,255,255,.18);
    position: relative; overflow: hidden;
}
.ct-gallery-page .gl-btn--primary::before {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,0) 45%);
    pointer-events: none;
}
.ct-gallery-page .gl-btn--primary:hover {
    background: var(--gl-red-hot); transform: translateY(-2px);
    box-shadow: 0 20px 36px -12px rgba(232,65,65,.85), inset 0 1px 0 rgba(255,255,255,.22);
}
.ct-gallery-page .gl-btn--ghost {
    background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.18);
}
.ct-gallery-page .gl-btn--ghost:hover {
    background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.32); transform: translateY(-2px);
}
.ct-gallery-page .gl-btn--ghost-light {
    background: #fff; color: #111; border-color: rgba(0,0,0,.1);
    box-shadow: 0 8px 20px -10px rgba(0,0,0,.2);
}
.ct-gallery-page .gl-btn--ghost-light:hover {
    border-color: rgba(0,0,0,.2); transform: translateY(-2px);
}

/* ============================================================================
   HERO
   ============================================================================ */
.ct-gallery-page .gl-hero {
    position: relative; min-height: 620px;
    display: flex; align-items: center;
    overflow: hidden; color: #fff;
    padding: 100px 24px 96px;
}
.ct-gallery-page .gl-hero-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease;
    z-index: 0;
}
.ct-gallery-page .gl-hero:hover .gl-hero-bg { transform: scale(1); }
.ct-gallery-page .gl-hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(
        135deg,
        rgba(0,0,0,.82) 0%,
        rgba(0,0,0,.68) 40%,
        rgba(11,11,11,.55) 100%
    );
}
.ct-gallery-page .gl-hero-overlay::after {
    content: "";
    position: absolute; inset: 0;
    background:
        radial-gradient(55% 60% at 0% 100%, rgba(211,47,47,.2) 0%, rgba(211,47,47,0) 60%),
        linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
    background-size: auto, 56px 56px, 56px 56px;
    mask-image: radial-gradient(ellipse 80% 65% at 30% 50%, #000 25%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 65% at 30% 50%, #000 25%, transparent 80%);
}
.ct-gallery-page .gl-hero-inner {
    position: relative; z-index: 2;
    max-width: 1320px; margin: 0 auto; width: 100%;
    display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.ct-gallery-page .gl-hero-pre {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 8px 14px 8px 10px;
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
    border-radius: 999px; font-size: 12px; letter-spacing: .14em;
    text-transform: uppercase; color: rgba(255,255,255,.85); font-weight: 600; margin-bottom: 20px;
}
.ct-gallery-page .gl-hero-content h1 {
    margin: 0 0 22px;
    font-size: clamp(34px, 5vw, 66px);
    font-weight: 800; letter-spacing: -.025em; line-height: 1.03; text-wrap: balance;
}
.ct-gallery-page .gl-hero-content h1 em {
    font-style: normal;
    background: linear-gradient(180deg, #fff 0%, #fff 45%, var(--gl-red) 46%, var(--gl-red-hot) 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    display: inline-block;
}
.ct-gallery-page .gl-hero-sub {
    margin: 0 0 32px; font-size: 17px; color: rgba(255,255,255,.75);
    max-width: 54ch; line-height: 1.6; text-wrap: pretty;
}
.ct-gallery-page .gl-hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.ct-gallery-page .gl-hero-cta .gl-btn { padding: 16px 24px; font-size: 15.5px; }
.ct-gallery-page .gl-hero-trust {
    display: flex; flex-wrap: wrap; gap: 16px 24px;
    font-size: 13px; color: rgba(255,255,255,.65); font-weight: 600;
}
.ct-gallery-page .gl-hero-trust span { display: flex; align-items: center; gap: 7px; }
.ct-gallery-page .gl-hero-trust svg { width: 14px; height: 14px; color: var(--gl-red); }

.ct-gallery-page .gl-hero-badge {
    flex: 0 0 auto;
    width: 140px; height: 140px; border-radius: 50%;
    background: rgba(211,47,47,.18);
    border: 2px solid rgba(211,47,47,.4);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; gap: 4px;
    box-shadow: 0 0 40px rgba(211,47,47,.25), inset 0 0 40px rgba(211,47,47,.05);
}
.ct-gallery-page .gl-hero-badge-num {
    font-size: 40px; font-weight: 800; letter-spacing: -.04em; color: #fff; line-height: 1;
}
.ct-gallery-page .gl-hero-badge-label {
    font-size: 12px; color: rgba(255,255,255,.7);
    font-weight: 700; letter-spacing: .06em; text-transform: uppercase; line-height: 1.25;
}

.ct-gallery-page .gl-hero-scroll {
    position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
    z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 6px;
    color: rgba(255,255,255,.5); font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
    font-weight: 600;
    animation: glFadeUp .6s 1s ease both;
}
.ct-gallery-page .gl-hero-scroll svg {
    width: 20px; height: 20px;
    animation: glBounce 2s 1.5s ease-in-out infinite;
}
@keyframes glBounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(5px); }
}

/* ============================================================================
   STATS BAR
   ============================================================================ */
.ct-gallery-page .gl-stats-bar {
    background: var(--gl-red); color: #fff; padding: 0 24px;
    border-bottom: 1px solid rgba(0,0,0,.18);
}
.ct-gallery-page .gl-stats-inner {
    max-width: 1320px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr);
}
.ct-gallery-page .gl-stat {
    padding: 28px 24px; border-right: 1px solid rgba(255,255,255,.18);
    display: flex; flex-direction: column; gap: 2px;
}
.ct-gallery-page .gl-stat:last-child { border-right: 0; }
.ct-gallery-page .gl-stat strong {
    font-size: clamp(28px, 3vw, 38px); font-weight: 800; letter-spacing: -.02em;
    line-height: 1; display: block;
}
.ct-gallery-page .gl-stat span { font-size: 14px; font-weight: 700; opacity: .95; }
.ct-gallery-page .gl-stat small {
    font-size: 11px; opacity: .72; letter-spacing: .06em; text-transform: uppercase;
    font-weight: 500; margin-top: 2px;
}

/* ============================================================================
   GALLERY HEAD
   ============================================================================ */
.ct-gallery-page .gl-gallery-head {
    display: flex; justify-content: space-between; align-items: flex-end;
    gap: 32px; margin-bottom: 32px; flex-wrap: wrap;
}
.ct-gallery-page .gl-gallery-head > div { max-width: 64ch; }
.ct-gallery-page .gl-gallery-head .gl-lead { margin-bottom: 0; }

/* ============================================================================
   FILTER PILLS
   ============================================================================ */
.ct-gallery-page .gl-filters {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-bottom: 36px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(0,0,0,.07);
}
.ct-gallery-page .gl-filter-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 18px; border-radius: 999px;
    background: #fff; color: #333;
    border: 1px solid rgba(0,0,0,.1);
    font-size: 13.5px; font-weight: 700; cursor: pointer;
    font-family: inherit; line-height: 1;
    transition: background .2s ease, color .2s ease, border-color .2s ease, transform .18s ease, box-shadow .2s ease;
    box-shadow: 0 2px 8px -4px rgba(0,0,0,.12);
}
.ct-gallery-page .gl-filter-btn:hover {
    background: var(--gl-red); color: #fff;
    border-color: var(--gl-red); transform: translateY(-1px);
    box-shadow: 0 8px 18px -8px rgba(211,47,47,.5);
}
.ct-gallery-page .gl-filter-btn.is-active {
    background: var(--gl-red); color: #fff; border-color: var(--gl-red);
    box-shadow: 0 8px 22px -8px rgba(211,47,47,.55);
}
.ct-gallery-page .gl-filter-count {
    display: inline-flex; align-items: center; justify-content: center;
    width: 22px; height: 22px; border-radius: 50%;
    background: rgba(0,0,0,.08); font-size: 11px; font-weight: 800;
    transition: background .2s ease;
}
.ct-gallery-page .gl-filter-btn.is-active .gl-filter-count,
.ct-gallery-page .gl-filter-btn:hover .gl-filter-count {
    background: rgba(255,255,255,.22);
}

/* ============================================================================
   GALLERY GRID
   ============================================================================ */
.ct-gallery-page .gl-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 260px;
    gap: 14px;
}
.ct-gallery-page .gl-item {
    position: relative; border-radius: 14px; overflow: hidden;
    cursor: pointer; background: var(--gl-ink-2);
    box-shadow: 0 4px 18px -8px rgba(0,0,0,.25);
    transition: transform .28s ease, box-shadow .28s ease, opacity .32s ease;
    outline: none;
}
.ct-gallery-page .gl-item:focus-visible {
    outline: 3px solid var(--gl-red); outline-offset: 3px;
}
.ct-gallery-page .gl-item.gl-item--lg {
    grid-column: span 2; grid-row: span 2;
}
.ct-gallery-page .gl-item.gl-item--wide {
    grid-column: span 2;
}
.ct-gallery-page .gl-item:hover {
    transform: scale(1.025);
    box-shadow: 0 20px 48px -16px rgba(0,0,0,.45);
    z-index: 2;
}

/* Filter hide/show animations */
.ct-gallery-page .gl-item.gl-filtering-out {
    opacity: 0; transform: scale(.94); pointer-events: none;
}
.ct-gallery-page .gl-item.gl-filtering-in {
    animation: glScaleIn .32s ease both;
}

.ct-gallery-page .gl-item-img-wrap {
    position: absolute; inset: 0;
}
.ct-gallery-page .gl-item-img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform .45s ease;
}
.ct-gallery-page .gl-item:hover .gl-item-img { transform: scale(1.07); }

/* Overlay */
.ct-gallery-page .gl-item-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        0deg,
        rgba(0,0,0,.78) 0%,
        rgba(0,0,0,.2) 45%,
        rgba(0,0,0,0) 70%
    );
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 18px;
    opacity: 0; transition: opacity .28s ease;
}
.ct-gallery-page .gl-item:hover .gl-item-overlay { opacity: 1; }

.ct-gallery-page .gl-item-expand {
    position: absolute; top: 14px; right: 14px;
    width: 36px; height: 36px; border-radius: 8px;
    background: rgba(211,47,47,.85); color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    transform: scale(.8); transition: transform .25s ease;
}
.ct-gallery-page .gl-item:hover .gl-item-expand { transform: scale(1); }
.ct-gallery-page .gl-item-expand svg { width: 16px; height: 16px; }

.ct-gallery-page .gl-item-caption {
    color: #fff; font-size: 13.5px; font-weight: 700;
    letter-spacing: .03em; line-height: 1.3;
    text-shadow: 0 1px 4px rgba(0,0,0,.5);
}

/* Category tag — always visible */
.ct-gallery-page .gl-item-cat-tag {
    position: absolute; top: 12px; left: 12px;
    padding: 4px 10px; border-radius: 999px;
    background: rgba(0,0,0,.55); color: rgba(255,255,255,.9);
    font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,.12);
    transition: opacity .28s ease;
}
.ct-gallery-page .gl-item:hover .gl-item-cat-tag { opacity: 0; }

/* Empty state */
.ct-gallery-page .gl-empty {
    display: none; text-align: center; padding: 80px 24px;
    color: var(--gl-gray-dim);
}
.ct-gallery-page .gl-empty.is-visible { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.ct-gallery-page .gl-empty svg { width: 40px; height: 40px; opacity: .35; }
.ct-gallery-page .gl-empty p { margin: 0; font-size: 16px; font-weight: 600; }

/* ============================================================================
   LIGHTBOX
   ============================================================================ */
.gl-lightbox {
    position: fixed; inset: 0; z-index: 9000;
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
    opacity: 0; pointer-events: none;
    transition: opacity .3s ease;
}
.gl-lightbox.is-open { opacity: 1; pointer-events: auto; }

.gl-lb-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,.92);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
}
.gl-lb-wrap {
    position: relative; z-index: 1;
    max-width: 1100px; width: 100%;
    display: flex; flex-direction: column; align-items: center; gap: 16px;
    animation: glLbIn .35s ease both;
}
.gl-lb-img-box {
    position: relative; width: 100%;
    max-height: calc(100dvh - 160px);
    border-radius: 14px; overflow: hidden;
    box-shadow: 0 40px 80px -20px rgba(0,0,0,.8);
    background: var(--gl-ink-2);
    display: flex; align-items: center; justify-content: center;
}
.gl-lb-img {
    max-width: 100%; max-height: calc(100dvh - 160px);
    width: auto; height: auto; display: block;
    border-radius: 14px;
    transition: opacity .25s ease;
}
.gl-lb-img.is-loading { opacity: 0; }

.gl-lb-close {
    position: absolute; top: -48px; right: 0;
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
    color: #fff; cursor: pointer; font-family: inherit;
    display: inline-flex; align-items: center; justify-content: center;
    transition: background .18s ease, transform .18s ease;
}
.gl-lb-close:hover { background: var(--gl-red); transform: rotate(90deg); }
.gl-lb-close svg { width: 18px; height: 18px; }

.gl-lb-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 48px; height: 48px; border-radius: 50%;
    background: rgba(0,0,0,.55); border: 1px solid rgba(255,255,255,.18);
    color: #fff; cursor: pointer; font-family: inherit;
    display: inline-flex; align-items: center; justify-content: center;
    transition: background .18s ease, transform .18s ease, border-color .18s ease;
    z-index: 2;
}
.gl-lb-nav:hover { background: var(--gl-red); border-color: var(--gl-red); }
.gl-lb-nav--prev { left: -64px; }
.gl-lb-nav--next { right: -64px; }
.gl-lb-nav svg { width: 20px; height: 20px; }

.gl-lb-footer {
    width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.gl-lb-caption {
    color: rgba(255,255,255,.8); font-size: 14px; font-weight: 600; letter-spacing: .03em;
}
.gl-lb-counter {
    color: rgba(255,255,255,.45); font-size: 13px; font-weight: 600;
    letter-spacing: .1em; white-space: nowrap;
}

/* ============================================================================
   SEO CONTENT
   ============================================================================ */
.ct-gallery-page .gl-seo-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 52px;
}
.ct-gallery-page .gl-seo h3 {
    margin: 0 0 14px; font-size: 20px; font-weight: 700; letter-spacing: -.01em;
}
.ct-gallery-page .gl-seo p {
    color: rgba(0,0,0,.65); font-size: 15px; line-height: 1.7;
    margin: 0 0 14px; text-wrap: pretty;
}

/* ============================================================================
   FINAL CTA
   ============================================================================ */
.ct-gallery-page .gl-final {
    position: relative; overflow: hidden; padding: 112px 24px;
    color: #fff; text-align: center;
    background:
        radial-gradient(60% 70% at 50% 0%, rgba(211,47,47,.22) 0%, rgba(211,47,47,0) 55%),
        linear-gradient(180deg, #0B0B0B 0%, #000 100%);
}
.ct-gallery-page .gl-final::before {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 80% 65% at 50% 50%, #000 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 65% at 50% 50%, #000 30%, transparent 80%);
}
.ct-gallery-page .gl-final-inner {
    position: relative; z-index: 2; max-width: 780px; margin: 0 auto;
}
.ct-gallery-page .gl-final .gl-eyebrow { justify-content: center; margin-bottom: 16px; }
.ct-gallery-page .gl-final h2 {
    margin: 0 0 18px;
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 800; letter-spacing: -.022em; line-height: 1.05; text-wrap: balance;
}
.ct-gallery-page .gl-final h2 em {
    font-style: normal;
    background: linear-gradient(180deg, var(--gl-red) 0%, var(--gl-red-hot) 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.ct-gallery-page .gl-final p {
    margin: 0 auto 40px; color: var(--gl-gray); font-size: 17px;
    line-height: 1.6; max-width: 54ch;
}
.ct-gallery-page .gl-final-btns {
    display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 28px;
}
.ct-gallery-page .gl-final-trust {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px;
    color: var(--gl-gray-dim); font-size: 12.5px; font-weight: 600;
    letter-spacing: .06em; text-transform: uppercase;
}
.ct-gallery-page .gl-final-trust svg { width: 14px; height: 14px; color: var(--gl-red); }

/* ============================================================================
   STICKY MOBILE CALL
   ============================================================================ */
.ct-gallery-page .gl-sticky-call {
    display: none;
    position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 950;
    padding: 16px 20px; border-radius: 14px;
    background: var(--gl-red); color: #fff; text-decoration: none;
    font-weight: 800; font-size: 15.5px; text-align: center;
    box-shadow: 0 18px 36px -10px rgba(211,47,47,.6), 0 2px 10px rgba(0,0,0,.3),
                inset 0 1px 0 rgba(255,255,255,.18);
    align-items: center; justify-content: center; gap: 10px;
    font-family: inherit; letter-spacing: -.01em;
}
.ct-gallery-page .gl-sticky-call svg { width: 18px; height: 18px; }

/* ============================================================================
   RESPONSIVE
   ============================================================================ */
@media (max-width: 1200px) {
    .ct-gallery-page .gl-lb-nav--prev { left: -52px; }
    .ct-gallery-page .gl-lb-nav--next { right: -52px; }
    .ct-gallery-page .gl-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 980px) {
    .ct-gallery-page .gl-hero { min-height: 520px; padding: 80px 20px; }
    .ct-gallery-page .gl-hero-inner { flex-direction: column; align-items: flex-start; }
    .ct-gallery-page .gl-hero-badge { display: none; }
    .ct-gallery-page .gl-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
    .ct-gallery-page .gl-seo-grid { grid-template-columns: 1fr; gap: 32px; }
    .ct-gallery-page .gl-lb-nav--prev { left: 8px; }
    .ct-gallery-page .gl-lb-nav--next { right: 8px; }
    .ct-gallery-page .gl-lb-close { top: -48px; }
}
@media (max-width: 760px) {
    .ct-gallery-page .gl-stats-inner { grid-template-columns: repeat(2, 1fr); }
    .ct-gallery-page .gl-stat { border-bottom: 1px solid rgba(255,255,255,.14); }
    .ct-gallery-page .gl-stat:nth-child(2) { border-right: 0; }
    .ct-gallery-page .gl-stat:nth-child(3) { border-bottom: 0; }
    .ct-gallery-page .gl-stat:nth-child(4) { border-right: 0; border-bottom: 0; }
    .ct-gallery-page .gl-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
    .ct-gallery-page .gl-item--lg { grid-column: span 2; grid-row: span 1; }
    .ct-gallery-page .gl-section { padding: 64px 20px; }
    .ct-gallery-page .gl-final-btns { flex-direction: column; }
    .ct-gallery-page .gl-final-btns .gl-btn { justify-content: center; }
    .ct-gallery-page .gl-hero-cta { flex-direction: column; }
    .ct-gallery-page .gl-hero-cta .gl-btn { justify-content: center; }
    .ct-gallery-page .gl-sticky-call { display: inline-flex; }
    .ct-gallery-page { padding-bottom: 76px; }
    .gl-lb-nav { width: 38px; height: 38px; }
    .gl-lb-nav svg { width: 16px; height: 16px; }
    .gl-lb-nav--prev { left: 4px; }
    .gl-lb-nav--next { right: 4px; }
    .gl-lb-wrap { padding: 0 50px; }
}
@media (max-width: 480px) {
    .ct-gallery-page .gl-grid { grid-template-columns: 1fr; }
    .ct-gallery-page .gl-item--lg,
    .ct-gallery-page .gl-item--wide { grid-column: span 1; }
    .ct-gallery-page .gl-filters { gap: 6px; }
    .ct-gallery-page .gl-filter-btn { padding: 8px 14px; font-size: 12.5px; }
}
@media (prefers-reduced-motion: reduce) {
    .ct-gallery-page * { animation: none !important; transition: none !important; }
    .gl-lightbox * { animation: none !important; transition: none !important; }
}
