/* ============================================================
   GUERRY FAMILY WEBSITE — Main Stylesheet
   Theme: Gold · Navy · White  |  Elegant Family Luxury
   ============================================================ */

:root {
    --gold: #C9A84C;
    --gold-light: #E8CC80;
    --gold-dark: #9A7530;
    --gold-gradient: linear-gradient(135deg, #BFA14A 0%, #E8CC80 40%, #C9A84C 60%, #9A7530 100%);
    --navy: #1B2A4A;
    --navy-mid: #243460;
    --navy-light: #2E4080;
    --white: #FFFFFF;
    --off-white: #FAF8F4;
    --cream: #F5F0E8;
    --light-gold-bg: #FDF9F0;
    --text-dark: #1a1a2e;
    --text-mid: #3a3a5c;
    --text-light: #8a8aaa;
    --border-gold: rgba(201, 168, 76, 0.3);
    --shadow-gold: 0 4px 24px rgba(201, 168, 76, 0.18);
    --shadow-navy: 0 8px 32px rgba(27, 42, 74, 0.15);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Cormorant Garamond', Georgia, serif;
    background: var(--off-white);
    color: var(--text-dark);
    line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Top Banner ── */
.top-banner {
    background: var(--gold-gradient);
    color: var(--navy);
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    padding: 8px 20px;
}

/* ── Header ── */
.site-header {
    background: var(--navy);
    border-bottom: 3px solid;
    border-image: var(--gold-gradient) 1;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-navy);
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: space-between;
}
.logo-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
}
.site-logo {
    height: 70px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(201,168,76,0.4));
}
.site-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}
.site-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Navigation ── */
.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    padding: 8px 14px;
    border-radius: 6px;
    transition: var(--transition);
    border: 1px solid transparent;
}
.nav-link:hover, .nav-link.active {
    color: var(--gold-light);
    border-color: var(--border-gold);
    background: rgba(201,168,76,0.08);
}
.admin-link { font-size: 0.68rem; color: rgba(255,255,255,0.5); }
.admin-link:hover { color: var(--gold-light); }

/* ── Mobile Toggle ── */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold-light);
    border-radius: 2px;
    transition: var(--transition);
}

/* ── Site Main ── */
.site-main { min-height: 60vh; }

/* ── Hero Section ── */
.hero {
    background: var(--navy);
    position: relative;
    overflow: hidden;
    padding: 80px 24px 100px;
    text-align: center;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 60% 80% at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 80% 30%, rgba(201,168,76,0.06) 0%, transparent 50%);
}
.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(201,168,76,0.03) 40px, rgba(201,168,76,0.03) 41px),
        repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(201,168,76,0.03) 40px, rgba(201,168,76,0.03) 41px);
}
.hero-inner { position: relative; max-width: 800px; margin: 0 auto; }
.hero-logo-wrap {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}
.hero-logo {
    height: 220px;
    width: auto;
    filter: drop-shadow(0 8px 32px rgba(201,168,76,0.5));
}
.hero-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}
.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}
.hero-title em {
    font-style: italic;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-sub {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.65);
    max-width: 560px;
    margin: 0 auto 36px;
    font-weight: 300;
}
.hero-divider {
    width: 80px;
    height: 2px;
    background: var(--gold-gradient);
    margin: 0 auto 36px;
}
.hero-cta {
    display: inline-flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}
.btn-gold {
    background: var(--gold-gradient);
    color: var(--navy);
    border-color: var(--gold);
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201,168,76,0.4);
}
.btn-outline {
    background: transparent;
    color: var(--gold-light);
    border-color: var(--gold);
}
.btn-outline:hover {
    background: rgba(201,168,76,0.1);
    transform: translateY(-2px);
}
.btn-navy {
    background: var(--navy);
    color: var(--gold-light);
    border-color: var(--navy-mid);
}
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: 0.65rem; }
.btn-danger { background: #c0392b; color: white; border-color: #c0392b; }
.btn-danger:hover { background: #a93226; }

/* ── Section Styles ── */
.section { padding: 80px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}
.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
}
.section-divider {
    width: 60px;
    height: 2px;
    background: var(--gold-gradient);
    margin: 20px auto 0;
}
.section-alt { background: var(--cream); }
.section-navy { background: var(--navy); }
.section-navy .section-title { color: var(--white); }

/* ── Cards ── */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-gold);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 2px 12px rgba(27,42,74,0.06);
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}
.card-body { padding: 24px; }
.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 8px;
}
.card-text { color: var(--text-mid); font-size: 0.95rem; }

/* ── Quick Links Grid ── */
.quick-links { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.quick-link-card {
    background: var(--white);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    display: block;
    box-shadow: 0 2px 12px rgba(27,42,74,0.06);
}
.quick-link-card:hover {
    background: var(--navy);
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}
.quick-link-card:hover .ql-icon,
.quick-link-card:hover .ql-title,
.quick-link-card:hover .ql-text { color: var(--white); }
.quick-link-card:hover .ql-icon { color: var(--gold-light); }
.ql-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
    color: var(--gold);
    transition: var(--transition);
}
.ql-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 8px;
    transition: var(--transition);
}
.ql-text {
    font-size: 0.88rem;
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
    transition: var(--transition);
}

/* ── Gallery Grid ── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid var(--border-gold);
    transition: var(--transition);
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 240px;
}
.gallery-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    transition: transform 0.4s ease;
    display: block;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(27,42,74,0.95) 0%, rgba(27,42,74,0.7) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 16px;
    z-index: 10;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-caption {
    color: white;
    font-size: 0.8rem;
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* ── YouTube Grid ── */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}
.video-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-gold);
    box-shadow: 0 2px 12px rgba(27,42,74,0.06);
    transition: var(--transition);
}
.video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}
.video-embed iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
}
.video-info { padding: 16px 20px; }
.video-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 4px;
}
.video-desc { font-size: 0.85rem; color: var(--text-light); }

/* ── Lightbox ── */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}
.lightbox.active { display: flex; }
.lightbox-content { max-width: 90vw; max-height: 90vh; text-align: center; }
.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border: 2px solid var(--gold);
    border-radius: var(--radius);
}
.lightbox-caption { color: var(--gold-light); font-size: 0.9rem; margin-top: 12px; }
.lightbox-close, .lightbox-prev, .lightbox-next {
    position: fixed;
    background: rgba(201,168,76,0.2);
    border: 1px solid var(--gold);
    color: var(--gold-light);
    font-size: 1.8rem;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--gold); color: var(--navy); }
.lightbox-close { top: 20px; right: 20px; font-size: 1.4rem; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }

/* ── Password Gate ── */
.pw-gate {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    padding: 40px 24px;
}
.pw-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    max-width: 440px;
    width: 100%;
    text-align: center;
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-gold);
}
.pw-icon { font-size: 3rem; margin-bottom: 20px; }
.pw-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 8px;
}
.pw-sub { color: var(--text-light); font-size: 0.9rem; margin-bottom: 28px; }

/* ── Forms ── */
.form-group { margin-bottom: 20px; text-align: left; }
.form-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 8px;
}
.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-gold);
    border-radius: var(--radius);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--white);
    transition: var(--transition);
}
.form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
textarea.form-control { min-height: 120px; resize: vertical; }

/* ── Alert Messages ── */
.alert {
    padding: 14px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    border: 1px solid;
}
.alert-error { background: #fef2f2; color: #c0392b; border-color: #fbb; }
.alert-success { background: #f0fdf4; color: #1a7a3a; border-color: #afa; }
.alert-info { background: #f0f8ff; color: #1a4a7a; border-color: #adf; }

/* ── Page Hero ── */
.page-hero {
    background: var(--navy);
    padding: 56px 24px;
    text-align: center;
    border-bottom: 3px solid;
    border-image: var(--gold-gradient) 1;
}
.page-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 12px;
}
.page-hero-sub {
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* ── Upload Zone ── */
.upload-zone {
    border: 2px dashed var(--gold);
    border-radius: var(--radius-lg);
    padding: 60px 24px;
    text-align: center;
    background: var(--light-gold-bg);
    cursor: pointer;
    transition: var(--transition);
}
.upload-zone:hover, .upload-zone.drag-over {
    background: rgba(201,168,76,0.1);
    border-color: var(--gold-dark);
}
.upload-icon { font-size: 3rem; margin-bottom: 16px; color: var(--gold); }
.upload-text { font-family: 'Montserrat', sans-serif; font-size: 0.85rem; color: var(--text-mid); }

/* ── Admin Styles ── */
.admin-layout { display: grid; grid-template-columns: 240px 1fr; min-height: calc(100vh - 120px); }
.admin-sidebar {
    background: var(--navy);
    padding: 24px 0;
    border-right: 1px solid rgba(201,168,76,0.2);
}
.admin-sidebar-title {
    padding: 0 20px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    border-bottom: 1px solid rgba(201,168,76,0.15);
    margin-bottom: 12px;
}
.admin-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    color: rgba(255,255,255,0.7);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    transition: var(--transition);
    border-left: 3px solid transparent;
}
.admin-nav-link:hover, .admin-nav-link.active {
    color: var(--gold-light);
    background: rgba(201,168,76,0.08);
    border-left-color: var(--gold);
}
.admin-content { padding: 32px; background: var(--off-white); }
.admin-content-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 8px;
}
.admin-content-sub { color: var(--text-light); font-size: 0.9rem; margin-bottom: 32px; }

/* ── Tables ── */
.data-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: 0 2px 12px rgba(27,42,74,0.06); }
.data-table th {
    background: var(--navy);
    color: var(--gold-light);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 16px;
    text-align: left;
}
.data-table td { padding: 12px 16px; border-bottom: 1px solid var(--cream); font-size: 0.9rem; vertical-align: middle; }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--light-gold-bg); }

/* ── Stats Cards ── */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; margin-bottom: 32px; }
.stat-card {
    background: var(--white);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(27,42,74,0.06);
}
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-top: 6px;
}

/* ── Progress Bar ── */
.progress-wrap { background: var(--cream); border-radius: 99px; height: 6px; overflow: hidden; margin-top: 8px; }
.progress-bar {
    height: 100%;
    border-radius: 99px;
    background: var(--gold-gradient);
    transition: width 0.5s ease;
}

/* ── Pagination ── */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.page-btn {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border-radius: var(--radius);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    border: 1px solid var(--border-gold);
    color: var(--navy);
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
}
.page-btn:hover, .page-btn.active { background: var(--navy); color: var(--gold-light); border-color: var(--navy); }

/* ── Footer ── */
.site-footer {
    background: var(--navy);
    border-top: 3px solid;
    border-image: var(--gold-gradient) 1;
    padding: 40px 24px;
    margin-top: auto;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }
.footer-copy { text-align: right; }
.footer-copy p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.5);
}
.footer-tagline { color: var(--gold) !important; margin-top: 4px; }

/* ── Utility ── */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; }
.gap-2 { gap: 16px; }
.flex { display: flex; } .flex-wrap { flex-wrap: wrap; } .items-center { align-items: center; }
.justify-between { justify-content: space-between; } .justify-center { justify-content: center; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }

/* ── Responsive ── */
@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: var(--navy-mid);
        flex-direction: column;
        padding: 16px;
        gap: 4px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.3);
        border-top: 1px solid var(--border-gold);
    }
    .main-nav.open { display: flex; }
    .site-header { position: relative; }
    .header-inner { position: relative; flex-wrap: wrap; }
    .admin-layout { grid-template-columns: 1fr; }
    .admin-sidebar { padding: 16px; display: flex; gap: 8px; flex-wrap: wrap; }
    .admin-sidebar-title { display: none; }
    .admin-nav-link { border-left: none; border-bottom: 3px solid transparent; padding: 8px 16px; }
    .admin-nav-link.active { border-bottom-color: var(--gold); border-left: none; }
    .footer-inner { flex-direction: column; text-align: center; }
    .footer-copy { text-align: center; }
    .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
    .video-grid { grid-template-columns: 1fr; }
    .logo-wrap { gap: 10px; }
    .site-logo { height: 50px; }
    .site-title { font-size: 1.1rem; }
}
