.gal {
    --g-ember: #b66d33;
    --g-charcoal: #1a1714;
    --g-dark: #2a2520;
    --g-body: #5c5650;
    --g-muted: #9a9590;
    --g-brass: #c4a265;
    --g-cream: #faf7f2;
    --g-white: #ffffff;

    background: var(--g-charcoal);
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}

/* Grain */
.gal .gal__grain {
    position: absolute;
    inset: 0;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    pointer-events: none;
}

/* Logo watermark */
.gal .gal__logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    opacity: 0.02;
    pointer-events: none;
    user-select: none;
    filter: grayscale(1) brightness(3);
}

/* Floating smoke wisps */
.gal .gal__smoke {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
}
.gal .gal__smoke--1 { top: 8%; right: 10%; animation: galSmk1 9s ease-in-out infinite; }
.gal .gal__smoke--2 { top: 55%; left: 6%; animation: galSmk2 11s ease-in-out infinite 3s; }
.gal .gal__smoke--3 { top: 30%; right: 25%; animation: galSmk1 8s ease-in-out infinite 6s; }

@keyframes galSmk1 {
    0% { opacity: 0; transform: translateY(0) scale(0.7); }
    20% { opacity: 0.05; }
    100% { opacity: 0; transform: translateY(-80px) translateX(20px) scale(1.6); }
}
@keyframes galSmk2 {
    0% { opacity: 0; transform: translateY(0) scale(0.8); }
    25% { opacity: 0.04; }
    100% { opacity: 0; transform: translateY(-100px) translateX(-15px) scale(1.5); }
}

/* Floating sparks */
.gal .gal__spark {
    position: absolute;
    width: 3px; height: 3px;
    background: var(--g-ember);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}
.gal .gal__spark--1 { top: 15%; left: 15%; animation: galSp1 5s ease-out infinite 1s; }
.gal .gal__spark--2 { top: 45%; right: 12%; width: 2px; height: 2px; animation: galSp2 6s ease-out infinite 2.5s; }
.gal .gal__spark--3 { bottom: 25%; left: 35%; width: 2px; height: 2px; animation: galSp1 4.5s ease-out infinite 4s; }
.gal .gal__spark--4 { top: 65%; right: 30%; animation: galSp2 5.5s ease-out infinite 0.5s; }
.gal .gal__spark--5 { top: 25%; left: 55%; width: 2px; height: 2px; animation: galSp1 4s ease-out infinite 3s; }

@keyframes galSp1 {
    0% { opacity: 0; transform: translateY(0) scale(1); }
    10% { opacity: 0.7; }
    100% { opacity: 0; transform: translateY(-70px) translateX(18px) scale(0); }
}
@keyframes galSp2 {
    0% { opacity: 0; transform: translateY(0) scale(1); }
    10% { opacity: 0.5; }
    100% { opacity: 0; transform: translateY(-55px) translateX(-12px) scale(0); }
}

/* Floating Korean characters */
.gal .gal__char {
    position: absolute;
    font-weight: 900;
    color: #f5f0eb;
    opacity: 0.015;
    pointer-events: none;
    user-select: none;
    line-height: 1;
}
.gal .gal__char--1 { top: -30px; right: -40px; font-size: 240px; }
.gal .gal__char--2 { bottom: -50px; left: -20px; font-size: 180px; }

.gal .gal__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
    position: relative;
    z-index: 2;
}

/* ---- Header ---- */
.gal .gal__header {
    text-align: center;
    margin-bottom: 64px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.gal .gal__eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--g-brass);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.gal .gal__eyebrow::before,
.gal .gal__eyebrow::after {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--g-brass);
    opacity: 0.3;
}

.gal .gal__heading {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.1;
    color: #f5f0eb;
    margin: 0 0 16px;
}

.gal .gal__heading em {
    font-style: italic;
    color: var(--g-ember);
}

.gal .gal__subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--g-muted);
    margin: 0;
}

/* ---- Grid ---- */
.gal .gal__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 260px;
    gap: 4px;
    margin-bottom: 48px;
}

/* ---- Item ---- */
.gal .gal__item {
    position: relative;
    overflow: hidden;
    background: var(--g-dark);
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.gal .gal__item:hover {
    z-index: 3;
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.gal .gal__item--tall { grid-row: span 2; }
.gal .gal__item--wide { grid-column: span 2; }
.gal .gal__item--large { grid-column: span 2; grid-row: span 2; }

/* Media */
.gal .gal__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gal .gal__item:hover .gal__media {
    transform: scale(1.08);
}

/* Overlay */
.gal .gal__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.gal .gal__overlay--default {
    background: linear-gradient(0deg, rgba(26, 23, 20, 0.5) 0%, transparent 40%);
    opacity: 0.4;
}

.gal .gal__item:hover .gal__overlay--default {
    opacity: 1;
}

/* Bottom content -- slides up */
.gal .gal__content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 20px 24px;
    z-index: 3;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    transform: translateY(8px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gal .gal__item:hover .gal__content {
    opacity: 1;
    transform: translateY(0);
}

.gal .gal__caption {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #f5f0eb;
}

/* Type indicator */
.gal .gal__type {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'DM Sans', sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #f5f0eb;
    padding: 4px 10px;
    border-radius: 3px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.gal .gal__type--video {
    background: rgba(232, 74, 28, 0.7);
}

.gal .gal__type--image {
    background: rgba(26, 23, 20, 0.5);
}

.gal .gal__type svg {
    width: 8px; height: 8px;
}

/* Video play button */
.gal .gal__play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 60px; height: 60px;
    border-radius: 50%;
    background: rgba(232, 74, 28, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    border: none;
    box-shadow: 0 0 0 0 rgba(232, 74, 28, 0);
}

.gal .gal__item:hover .gal__play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.gal .gal__play:hover {
    background: var(--g-ember);
    box-shadow: 0 0 0 8px rgba(232, 74, 28, 0.15), 0 8px 32px rgba(232, 74, 28, 0.3);
    transform: translate(-50%, -50%) scale(1.08) !important;
}

.gal .gal__play svg {
    width: 22px; height: 22px;
    color: #f5f0eb;
    margin-left: 3px;
}

/* Live dot for video items */
.gal .gal__live {
    position: absolute;
    top: 14px; right: 14px;
    width: 8px; height: 8px;
    background: var(--g-ember);
    border-radius: 50%;
    z-index: 4;
    animation: galLive 2s ease-in-out infinite;
}

@keyframes galLive {
    0%, 100% { opacity: 0.3; box-shadow: 0 0 0 0 rgba(232, 74, 28, 0); }
    50% { opacity: 1; box-shadow: 0 0 0 5px rgba(232, 74, 28, 0.12); }
}

/* Ember bottom accent */
.gal .gal__item::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--g-ember);
    z-index: 5;
    transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gal .gal__item:hover::after {
    width: 100%;
}

/* ---- Stats strip ---- */
.gal .gal__stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 48px;
}

.gal .gal__stat {
    text-align: center;
    position: relative;
}

.gal .gal__stat + .gal__stat::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 28px;
    background: rgba(245, 240, 235, 0.06);
}

.gal .gal__stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: #f5f0eb;
    line-height: 1;
    margin-bottom: 4px;
}

.gal .gal__stat-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--g-muted);
}

/* ---- Instagram CTA ---- */
.gal .gal__insta {
    display: flex;
    justify-content: center;
}

.gal .gal__insta-link {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    color: #f5f0eb;
    padding: 18px 40px;
    border: 1px solid rgba(245, 240, 235, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.gal .gal__insta-link::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(232, 74, 28, 0.06), transparent);
    transition: left 0.5s ease;
}

.gal .gal__insta-link:hover::before { left: 100%; }

.gal .gal__insta-link:hover {
    border-color: var(--g-ember);
    color: var(--g-ember);
    transform: translateY(-2px);
}

.gal .gal__insta-icon svg { width: 18px; height: 18px; opacity: 0.6; }

.gal .gal__insta-handle {
    color: var(--g-brass);
    font-weight: 600;
}

.gal .gal__insta-arrow svg {
    width: 14px; height: 14px;
    transition: transform 0.3s ease;
}

.gal .gal__insta-link:hover .gal__insta-arrow svg {
    transform: translateX(3px);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
    .gal .gal__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
    }
    .gal { padding: 96px 0 80px; }
    .gal .gal__logo { width: 300px; }
}

@media (max-width: 768px) {
    .gal .gal__grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 200px;
        gap: 3px;
    }
    .gal .gal__item--large,
    .gal .gal__item--wide {
        grid-column: span 2;
    }
    .gal .gal__inner { padding: 0 24px; }
    .gal .gal__stats { gap: 32px; }
    .gal .gal__insta-link { width: 100%; justify-content: center; }
    .gal .gal__play { width: 48px; height: 48px; }
    .gal .gal__play svg { width: 18px; height: 18px; }
    .gal .gal__logo { width: 200px; opacity: 0.015; }
    .gal .gal__smoke,
    .gal .gal__spark,
    .gal .gal__char { display: none; }
}
