:root {
    --bg-black: #050a08;
    --bg-emerald: #0a1f14;
    --text-primary: #ffffff;
    --text-secondary: #a3b8b0;
    --gold-light: #f9d976;
    --gold-mid: #d4af37;
    --gold-dark: #aa7c11;
    --glass-bg: rgba(10, 31, 20, 0.6);
    --glass-border: rgba(212, 175, 55, 0.2);
    --glass-border-hover: rgba(212, 175, 55, 0.5);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-black);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
}

/* Background Animations */
.cinematic-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background-color: var(--bg-black);
}

.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.5;
    animation: pulseGlow 15s infinite alternate ease-in-out;
}

.glow-1 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(16,56,38,1) 0%, rgba(5,10,8,0) 70%);
    top: -200px;
    left: -200px;
}

.glow-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, rgba(5,10,8,0) 70%);
    bottom: -100px;
    right: -100px;
    animation-delay: -7s;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

@keyframes pulseGlow {
    0% { transform: scale(1) translate(0, 0); opacity: 0.4; }
    100% { transform: scale(1.2) translate(50px, 50px); opacity: 0.6; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography & Core Elements */
.text-gold {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-mid) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-secondary {
    color: var(--text-secondary);
}

.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 24px;
}

.gold-divider {
    height: 3px;
    width: 60px;
    background: linear-gradient(90deg, var(--gold-light), var(--gold-dark));
    margin: 20px auto;
    border-radius: 2px;
}
.gold-divider.left {
    margin: 20px 0;
}

/* Navigation */
.navbar {
    padding: 30px 0;
    margin-bottom: 20px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo-link {
    text-decoration: none;
    color: inherit;
}

.nav-brand {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin: 0;
    font-family: 'Cinzel', serif;
}

.brand-accent {
    color: var(--gold-mid);
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold-light);
}

/* Hero Section */
.main-hero {
    padding: 40px 0 100px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: var(--gold-light);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 90%;
    font-weight: 300;
    line-height: 1.8;
}

.gold-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    padding: 16px 36px;
    border-radius: 50px;
    color: var(--bg-black);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    border: none;
    position: relative;
    overflow: hidden;
}

.gold-btn::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: all 0.8s ease;
}

.gold-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #fff2c8, var(--gold-mid));
}

.gold-btn:hover::after {
    left: 200%;
}

.blended-image {
    width: 100%;
    display: block;
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
    transition: all 0.8s ease;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.1));
    opacity: 0.9;
}

.hero-image-wrapper .blended-image {
    transform: scale(0.95);
}

.hero-image-wrapper:hover .blended-image {
    transform: scale(1);
    filter: drop-shadow(0 0 50px rgba(212, 175, 55, 0.3));
}

/* Sections */
.features-section {
    padding: 80px 0;
}

.cinematic-heading {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 15px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.features-grid .luxury-card {
    padding: 40px 30px;
}

.features-grid .card-title {
    font-size: 1.25rem;
}

.features-grid .feature-icon {
    font-size: 2.5rem;
}

.luxury-card {
    position: relative;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 50px 40px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.luxury-card:hover {
    transform: translateY(-10px);
    border-color: var(--glass-border-hover);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 30px rgba(212, 175, 55, 0.1);
}

.card-glow {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.luxury-card > * {
    position: relative;
    z-index: 1;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-title {
    font-size: 1.4rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.card-text {
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.7;
}

/* Showcase Section */
.showcase-section {
    padding: 100px 0;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.showcase-content {
    padding: 60px 50px;
}

.gold-list {
    list-style: none;
    margin-top: 30px;
}

.gold-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
    color: var(--text-secondary);
    font-weight: 300;
}

.gold-list li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: var(--gold-mid);
    font-size: 1.2rem;
    line-height: 1;
    top: 2px;
}

/* Footer */
footer {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 60px 0 30px;
    background: linear-gradient(to top, rgba(10,31,20,0.8), transparent);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    margin-left: 30px;
    font-weight: 400;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold-light);
}

.copyright {
    color: rgba(255,255,255,0.3);
    font-size: 0.9rem;
}

/* Animations */
.reveal, .reveal-delay-1, .reveal-delay-2, .reveal-delay-3 {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-delay-1 { transition-delay: 0.2s; }
.reveal-delay-2 { transition-delay: 0.4s; }
.reveal-delay-3 { transition-delay: 0.6s; }

.reveal.visible, .reveal-delay-1.visible, .reveal-delay-2.visible, .reveal-delay-3.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {
    .hero-grid, .showcase-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    .hero-title { font-size: 3.5rem; }
    .hero-subtitle { max-width: 100%; text-align: center; }
    .hero-buttons { text-align: center; }
    .gold-divider.left { margin: 20px auto; }
    .gold-list li { text-align: left; }
    .hero-image-wrapper .blended-image { transform: none; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-content { flex-direction: column; gap: 30px; }
    .footer-links a { margin: 0 15px; }
}

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

/* ============================================================
   v1.4 ENHANCEMENTS
   ============================================================ */
:root {
    --emerald: #00e5a0;
    --emerald-dim: #00b27d;
}

/* Scroll progress bar */
.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--gold-light), var(--gold-mid), var(--emerald));
    z-index: 100;
    box-shadow: 0 0 12px rgba(212,175,55,0.5);
    transition: width 0.1s linear;
}

/* Third ambient glow (emerald, ties to the app accent) */
.glow-3 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0,229,160,0.10) 0%, rgba(5,10,8,0) 70%);
    top: 40%; left: 45%;
    animation-delay: -3s;
}

/* Sticky, condensing navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 90;
    transition: padding 0.4s ease, background 0.4s ease, backdrop-filter 0.4s ease;
}
.navbar.scrolled {
    padding: 16px 0;
    background: rgba(5, 10, 8, 0.7);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}
.nav-cta {
    padding: 9px 20px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    color: var(--bg-black) !important;
    font-weight: 700 !important;
    letter-spacing: 1px;
    box-shadow: 0 6px 18px rgba(212,175,55,0.28);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(212,175,55,0.45); }
@media (max-width: 640px) {
    .nav-links a.nav-link { display: none; }
}

/* Hero badge dot */
.badge { display: inline-flex; align-items: center; gap: 8px; }
.badge-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--emerald);
    box-shadow: 0 0 10px var(--emerald);
    animation: blink 1.6s infinite ease-in-out;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

.hero-title { font-size: clamp(2.6rem, 6vw, 4.6rem); }
.hero-subtitle strong { color: var(--gold-light); font-weight: 600; }

/* Store buttons */
.store-buttons { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 16px; }
.store-buttons.center { justify-content: center; }
.btn-labels { display: inline-flex; flex-direction: column; align-items: flex-start; line-height: 1.1; }
.btn-labels small { font-size: 0.62rem; opacity: 0.75; letter-spacing: 1px; text-transform: uppercase; }
.gold-btn { padding: 14px 30px; }
.gold-btn .btn-text { font-size: 1.05rem; }
.ghost-btn {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 14px 30px;
    border-radius: 50px;
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid var(--glass-border-hover);
    color: var(--gold-light);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.35s ease;
}
.ghost-btn:hover {
    transform: translateY(-3px);
    background: rgba(212, 175, 55, 0.14);
    border-color: var(--gold-mid);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}
.ghost-btn .btn-text { font-size: 1.05rem; }
.store-note { color: var(--text-secondary); font-size: 0.82rem; letter-spacing: 0.5px; margin-bottom: 26px; }

/* Hero feature pills */
.hero-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
    padding: 8px 14px;
    border-radius: 50px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-size: 0.82rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.pill:hover { border-color: var(--glass-border-hover); color: var(--gold-light); transform: translateY(-2px); }

/* Framed images */
.hero-frame {
    position: relative;
    border-radius: 28px;
    padding: 10px;
    background: linear-gradient(160deg, rgba(212,175,55,0.14), rgba(0,229,160,0.05));
    border: 1px solid var(--glass-border);
    box-shadow: 0 30px 80px rgba(0,0,0,0.55);
}
.hero-frame .blended-image {
    border-radius: 20px;
    -webkit-mask-image: none;
    mask-image: none;
    opacity: 1;
}

/* Sources marquee */
.sources-strip { padding: 30px 0 10px; }
.sources-label { text-align: center; color: var(--text-secondary); font-size: 0.9rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 22px; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: inline-flex; gap: 18px; white-space: nowrap; animation: marquee 26s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.source-chip {
    display: inline-block;
    padding: 12px 26px;
    border-radius: 14px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
}
.source-chip.is-new {
    border-color: rgba(0,229,160,0.45);
    color: var(--emerald);
    box-shadow: 0 0 22px rgba(0,229,160,0.12);
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Stats band */
.stats-band { padding: 50px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat {
    text-align: center;
    padding: 30px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: all 0.4s ease;
}
.stat:hover { transform: translateY(-6px); border-color: var(--glass-border-hover); }
.stat-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.stat-sub { font-size: 1.1rem; margin-left: 4px; -webkit-text-fill-color: var(--text-secondary); }
.stat-label { margin-top: 10px; color: var(--text-secondary); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1.5px; }

/* Section tag chip */
.section-tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.25);
    color: var(--gold-light);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

/* NEW badge on cards */
.card-title { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.new-badge {
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 6px;
    color: var(--bg-black);
    background: linear-gradient(135deg, var(--emerald), var(--emerald-dim));
    box-shadow: 0 0 14px rgba(0,229,160,0.35);
}

/* What's New spotlight */
.whatsnew-section { padding: 60px 0 40px; }
.spotlight-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 50px; }
.luxury-card.spotlight { padding: 40px 30px; }
.spotlight-num {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 14px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.9;
}

/* Devices */
.devices-section { padding: 70px 0; }
.devices-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; margin-top: 40px; }
.device {
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    padding: 26px 12px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-align: center;
    transition: all 0.35s ease;
}
.device:hover { transform: translateY(-6px); border-color: var(--glass-border-hover); color: var(--gold-light); }
.device-ico { font-size: 2rem; }

/* CTA band */
.cta-band { padding: 40px 0 100px; }
.cta-inner {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 70px 40px;
    border-radius: 32px;
    background: radial-gradient(ellipse at 50% -20%, rgba(212,175,55,0.14), transparent 60%), var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
.cta-inner .cinematic-heading { margin-bottom: 16px; }

/* Footer tagline */
.footer-tag { color: var(--text-secondary); font-size: 0.85rem; font-weight: 300; margin-top: 10px; max-width: 340px; }
.footer-content { align-items: flex-start; }

/* Responsive */
@media (max-width: 992px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .spotlight-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .devices-grid { grid-template-columns: repeat(3, 1fr); }
    .store-buttons { justify-content: center; }
    .hero-pills { justify-content: center; }
}
@media (max-width: 768px) {
    .features-grid { grid-template-columns: 1fr; }
    .spotlight-grid { grid-template-columns: 1fr; }
    .devices-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-num { font-size: 2.4rem; }
    .cta-inner { padding: 50px 22px; }
}

@media (prefers-reduced-motion: reduce) {
    .marquee-track, .ambient-glow, .badge-dot { animation: none !important; }
    .reveal, .reveal-delay-1, .reveal-delay-2, .reveal-delay-3 { transition: none; opacity: 1; transform: none; }
}

/* ── Screenshots gallery ───────────────────────────────── */
.gallery-section { padding: 70px 0 40px; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 50px;
}
.shot {
    position: relative;
    margin: 0;
    aspect-ratio: 9 / 19;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    box-shadow: 0 18px 40px rgba(0,0,0,0.45);
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.shot:hover {
    transform: translateY(-8px);
    border-color: var(--glass-border-hover);
    box-shadow: 0 26px 60px rgba(0,0,0,0.6), 0 0 26px rgba(212,175,55,0.12);
}
.shot .shot-ph {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(212,175,55,0.14), transparent 60%),
        linear-gradient(160deg, rgba(10,31,20,0.9), rgba(5,10,8,0.95));
}
.shot .shot-ico {
    font-size: 2.6rem;
    filter: drop-shadow(0 0 16px rgba(0,229,160,0.25));
    opacity: 0.85;
}
.shot img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.shot figcaption {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    z-index: 2;
    padding: 26px 14px 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-primary);
    text-align: center;
    background: linear-gradient(to top, rgba(5,10,8,0.9), transparent);
}
.gallery-note { margin-top: 34px; font-size: 0.82rem; line-height: 1.9; }
code {
    font-family: ui-monospace, 'SFMono-Regular', Menlo, monospace;
    font-size: 0.82em;
    color: var(--gold-light);
    background: rgba(212,175,55,0.08);
    border: 1px solid rgba(212,175,55,0.16);
    border-radius: 5px;
    padding: 1px 6px;
}
@media (max-width: 992px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
