:root {
    --navy: #1a2f4a;
    --gold: #c9a227;
    --gold-light: #e8d48b;
    --blue: #1a5f7a;
    --white: #ffffff;
    --light: #f8f9fa;
    --text: #1a2f4a;
    --text-secondary: #5a6a7a;
    --border: #e2e8f0;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif; background: var(--white); color: var(--text); line-height: 1.6; }
h1, h2, h3, h4 { font-family: 'DM Serif Display', Georgia, serif; font-weight: 400; line-height: 1.2; }
a { color: var(--blue); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Buttons */
.btn { display: inline-block; padding: 14px 28px; border-radius: 8px; font-weight: 600; font-size: 15px; text-decoration: none; transition: all 0.2s; cursor: pointer; border: none; font-family: inherit; }
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-light); color: var(--navy); }
.btn-secondary { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.3); }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: #243d5e; color: var(--white); }

/* Navbar */
header { background: var(--navy); position: sticky; top: 0; z-index: 100; }
.navbar { padding: 16px 0; }
.navbar .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.nav-brand h1 { font-size: 22px; margin-bottom: 0; }
.nav-brand h1 a { color: var(--gold); font-family: 'DM Serif Display', serif; text-decoration: none; }
.nav-brand .tagline { color: rgba(255,255,255,0.5); font-size: 12px; letter-spacing: 1px; text-transform: uppercase; margin-top: 2px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--white); transition: all 0.3s; border-radius: 2px; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.nav-menu { display: flex; list-style: none; gap: 4px; }
.nav-menu a { color: rgba(255,255,255,0.7); padding: 8px 14px; border-radius: 6px; font-size: 14px; font-weight: 500; text-decoration: none; transition: all 0.2s; }
.nav-menu a:hover, .nav-menu a.active { color: var(--white); background: rgba(255,255,255,0.08); }
.social-links { display: flex; gap: 12px; }
.social-links a { color: rgba(255,255,255,0.5); font-size: 18px; transition: color 0.2s; }
.social-links a:hover { color: var(--gold); }

/* Hero */
.hero { background: linear-gradient(135deg, #1a2f4a 0%, #1a4a5f 40%, #1a5f7a 70%, #2a5f6a 100%); color: var(--white); padding: 100px 20px 80px; text-align: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(ellipse at 30% 50%, rgba(201,162,39,0.08) 0%, transparent 60%); pointer-events: none; }
.hero-video-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(26,47,74,0.92), rgba(26,95,122,0.88)); z-index: 1; }
.hero .container { position: relative; z-index: 2; }
.hero h2 { font-size: clamp(28px, 5vw, 52px); margin-bottom: 16px; color: var(--white); }
.hero-subtitle { font-size: clamp(16px, 2.5vw, 20px); color: rgba(255,255,255,0.7); margin-bottom: 24px; }
.hero-trust-badges { font-size: 15px; color: rgba(255,255,255,0.8); margin-bottom: 24px; }
.hero-description { font-size: 17px; color: rgba(255,255,255,0.6); max-width: 640px; margin: 0 auto 32px; line-height: 1.7; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* Section defaults */
.section-title { font-size: clamp(24px, 4vw, 36px); margin-bottom: 8px; color: var(--navy); }
.section-subtitle { color: var(--text-secondary); font-size: 16px; margin-bottom: 32px; max-width: 640px; }

/* Audience Segment */
.audience-segment { padding: 80px 20px; background: var(--light); }
.audience-segment .section-title { text-align: center; margin-bottom: 40px; }
.audience-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: 1000px; margin: 0 auto; }
.audience-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 36px 28px; text-align: center; text-decoration: none; color: var(--text); transition: transform 0.2s, box-shadow 0.2s; }
.audience-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(26,47,74,0.1); }
.audience-card h3 { font-size: 20px; margin-bottom: 12px; color: var(--navy); }
.audience-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* MDP CTA */
.mdp-cta { background: linear-gradient(135deg, var(--navy), #1a4a5f); padding: 60px 20px; text-align: center; color: var(--white); }
.mdp-cta-content { max-width: 500px; margin: 0 auto; }
.mdp-icon { font-size: 40px; color: var(--gold); margin-bottom: 16px; }
.mdp-cta h2 { font-size: clamp(22px, 3.5vw, 32px); color: var(--white); margin-bottom: 8px; }
.mdp-tagline { font-size: 18px; color: var(--gold-light); margin-bottom: 4px; }
.mdp-subtext { font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 24px; }
.mdp-phone-link { display: inline-block; font-size: 28px; font-weight: 700; color: var(--gold); text-decoration: none; }
.mdp-phone-link:hover { color: var(--gold-light); }
.mdp-instruction { font-size: 13px; color: rgba(255,255,255,0.4); margin-top: 16px; }

/* Features */
.features { padding: 80px 20px; }
.features .section-title { text-align: center; margin-bottom: 40px; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; max-width: 1000px; margin: 0 auto; }
.feature-card { text-align: center; padding: 32px 24px; }
.feature-icon { font-size: 36px; color: var(--gold); margin-bottom: 16px; }
.feature-card h3 { font-size: 18px; margin-bottom: 8px; color: var(--navy); }
.feature-card p { font-size: 14px; color: var(--text-secondary); }

/* Testimonials */
.testimonials { padding: 80px 20px; background: var(--light); }
.testimonials .section-title { text-align: center; margin-bottom: 40px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; max-width: 1000px; margin: 0 auto; }
.testimonial-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 32px 28px; }
.testimonial-text { font-size: 15px; line-height: 1.7; color: var(--text-secondary); margin-bottom: 20px; font-style: italic; }
.testimonial-author strong { color: var(--navy); }
.testimonial-author span { font-size: 13px; color: var(--text-secondary); }

/* Quick Links */
.quick-links { padding: 80px 20px; }
.quick-links .section-title { text-align: center; margin-bottom: 40px; }
.links-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; max-width: 800px; margin: 0 auto; }
.link-card { display: block; background: var(--light); border: 1px solid var(--border); border-radius: 12px; padding: 32px 28px; text-align: center; text-decoration: none; color: var(--text); transition: transform 0.2s, box-shadow 0.2s; }
.link-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(26,47,74,0.1); }
.link-card i { font-size: 32px; color: var(--gold); margin-bottom: 12px; }
.link-card h3 { font-size: 18px; margin-bottom: 8px; color: var(--navy); }
.link-card p { font-size: 14px; color: var(--text-secondary); }

/* Credentials */
.credentials { padding: 60px 20px; background: var(--light); }
.credentials .section-title { text-align: center; margin-bottom: 32px; }
.credentials-list { max-width: 600px; margin: 0 auto; }
.credential-item { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; background: var(--white); border: 1px solid var(--border); border-radius: 8px; margin-bottom: 12px; }
.credential-item strong { color: var(--navy); font-size: 15px; }
.credential-item span { color: var(--text-secondary); font-size: 14px; }

/* Page Header (subpages) */
.page-header { background: linear-gradient(135deg, var(--navy), #1a4a5f); padding: 60px 20px 40px; text-align: center; color: var(--white); }
.page-header h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 8px; }
.page-header p { color: rgba(255,255,255,0.6); font-size: 16px; max-width: 600px; margin: 0 auto; }

/* Content sections */
.content-section { padding: 60px 20px; }
.content-section:nth-child(even) { background: var(--light); }
.content-section .container { max-width: 900px; }

/* Video embed */
.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.video-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.video-card iframe { width: 100%; aspect-ratio: 16/9; border: none; display: block; }
.video-card h3 { padding: 16px 20px 4px; font-size: 16px; }
.video-card p { padding: 0 20px 16px; font-size: 13px; color: var(--text-secondary); }

/* Reviews */
.review-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 28px 24px; margin-bottom: 16px; }
.review-card .stars { color: #f39c12; margin-bottom: 8px; font-size: 14px; }
.review-card .review-text { font-size: 15px; line-height: 1.7; margin-bottom: 12px; }
.review-card .review-meta { font-size: 13px; color: var(--text-secondary); }

/* Listings grid */
.listings-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.listing-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; text-decoration: none; color: var(--text); transition: transform 0.2s, box-shadow 0.2s; display: block; }
.listing-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(26,47,74,0.1); color: var(--text); }
.listing-card .listing-img { aspect-ratio: 16/10; background: linear-gradient(135deg, var(--navy), #1a4a5f); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.3); font-size: 48px; font-family: 'DM Serif Display', serif; overflow: hidden; }
.listing-card .listing-img img { width: 100%; height: 100%; object-fit: cover; }
.listing-card .listing-body { padding: 20px; }
.listing-card .listing-price { font-family: 'DM Serif Display', serif; font-size: 24px; color: var(--navy); margin-bottom: 4px; }
.listing-card .listing-address { font-size: 16px; color: var(--navy); margin-bottom: 8px; }
.listing-card .listing-details { font-size: 13px; color: var(--text-secondary); }

/* Comps */
.comps-intro { max-width: 700px; margin: 0 auto 32px; text-align: center; }
.comps-table-wrap { overflow-x: auto; margin-bottom: 24px; }
.comps-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.comps-table th { background: var(--navy); color: var(--gold); padding: 12px 14px; text-align: left; font-weight: 600; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; }
.comps-table td { padding: 12px 14px; border-bottom: 1px solid var(--border); }
.comps-table tr:nth-child(even) td { background: #f8fafc; }
.comps-table .price { font-weight: 700; color: var(--navy); }

/* Contact form */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 700px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info h3 { font-size: 20px; margin-bottom: 16px; color: var(--navy); }
.contact-info p { font-size: 15px; color: var(--text-secondary); margin-bottom: 12px; }
.contact-info a { color: var(--blue); font-weight: 500; }
.contact-form { display: flex; flex-direction: column; gap: 12px; }
.contact-form input, .contact-form textarea, .contact-form select { padding: 14px 16px; border: 1px solid var(--border); border-radius: 8px; font-size: 15px; font-family: inherit; outline: none; transition: border-color 0.2s; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--gold); }
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form button { align-self: flex-start; }

/* Footer */
footer { background: var(--navy); color: rgba(255,255,255,0.5); padding: 48px 20px 24px; }
.footer-content { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-bottom: 32px; }
.footer-section h3, .footer-section h4 { color: var(--white); margin-bottom: 12px; }
.footer-section p { font-size: 14px; margin-bottom: 8px; }
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 6px; }
.footer-section a { color: rgba(255,255,255,0.5); font-size: 14px; text-decoration: none; transition: color 0.2s; }
.footer-section a:hover { color: var(--gold); }
.footer-section .social-links a { font-size: 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; text-align: center; font-size: 13px; }

/* Listing Page Styles */
.listing-hero { background: linear-gradient(135deg, #1a2f4a 0%, #1a4a5f 40%, #1a5f7a 100%); color: var(--white); padding: 60px 20px; text-align: center; position: relative; }
.listing-hero h2 { font-size: clamp(28px, 5vw, 48px); color: var(--white); margin-bottom: 8px; }
.listing-hero .subtitle { color: rgba(255,255,255,0.6); font-size: 18px; margin-bottom: 24px; }
.listing-stats { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; margin-bottom: 24px; }
.listing-stat { text-align: center; }
.listing-stat .stat-value { font-family: 'DM Serif Display', serif; font-size: 24px; color: var(--gold); }
.listing-stat .stat-label { font-size: 12px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; }

/* Photo Gallery */
.gallery-section { padding: 60px 20px; background: var(--light); }
.gallery-section .section-title { text-align: center; margin-bottom: 8px; }
.gallery-section .section-subtitle { text-align: center; max-width: 600px; margin: 0 auto 32px; }
.gallery-tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 32px; }
.gallery-tab { padding: 10px 24px; border: 1px solid var(--border); background: var(--white); border-radius: 8px; cursor: pointer; font-size: 14px; font-weight: 500; font-family: inherit; color: var(--text-secondary); transition: all 0.2s; }
.gallery-tab.active, .gallery-tab:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 12px; max-width: 1200px; margin: 0 auto; }
.gallery-grid.hidden { display: none; }
.gallery-item { border-radius: 8px; overflow: hidden; aspect-ratio: 4/3; cursor: pointer; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:first-child { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }

/* Lightbox */
.lightbox { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.92); z-index: 1000; justify-content: center; align-items: center; }
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 4px; }
.lightbox-close { position: absolute; top: 20px; right: 24px; color: white; font-size: 32px; cursor: pointer; background: none; border: none; z-index: 1001; }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); color: white; font-size: 40px; cursor: pointer; background: rgba(255,255,255,0.1); border: none; width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.lightbox-nav:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-counter { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.6); font-size: 14px; }

/* Trust bar */
.trust-bar { background: var(--navy); padding: 40px 20px; text-align: center; }
.trust-bar h2 { color: var(--gold); font-size: clamp(20px, 3.5vw, 28px); margin-bottom: 20px; }
.trust-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; max-width: 700px; margin: 0 auto; }
.trust-badge { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 10px; padding: 20px 28px; text-align: center; flex: 1; min-width: 220px; }
.trust-badge .label { color: var(--gold); font-weight: 700; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 6px; }
.trust-badge .value { color: var(--white); font-size: 15px; font-weight: 500; }

/* Market table */
.market-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.market-table th { background: var(--navy); color: var(--gold); padding: 12px 14px; text-align: left; font-weight: 600; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; }
.market-table td { padding: 12px 14px; border-bottom: 1px solid var(--border); }
.market-table tr:nth-child(even) td { background: #f8fafc; }
.market-table .price { font-weight: 700; color: var(--navy); }
.market-table .psf { color: var(--text-secondary); }
.market-summary { margin-top: 24px; background: #f8fafc; border-left: 4px solid var(--gold); padding: 20px 24px; border-radius: 0 8px 8px 0; }
.market-summary strong { color: var(--navy); }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.card { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 28px 24px; transition: transform 0.2s, box-shadow 0.2s; }
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(26,47,74,0.1); }
.card-icon { font-size: 28px; margin-bottom: 16px; color: var(--gold); font-family: 'DM Serif Display', serif; }
.card h3 { font-size: 18px; margin-bottom: 8px; color: var(--navy); }
.card p { font-size: 14px; color: var(--text-secondary); line-height: 1.5; }

/* About grid */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
.about-photo { background: linear-gradient(135deg, var(--navy), #1a4a5f); border-radius: 12px; aspect-ratio: 4/5; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.3); font-size: 48px; font-family: 'DM Serif Display', serif; }
.about-content h3 { font-size: 24px; color: var(--navy); margin-bottom: 12px; }
.about-content p { font-size: 15px; color: var(--text-secondary); margin-bottom: 12px; line-height: 1.7; }

/* Lead form */
.lead-form { max-width: 480px; margin: 0 auto; background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.15); border-radius: 12px; padding: 32px 28px; }
.lead-form h3 { color: var(--gold-light); font-size: 20px; margin-bottom: 4px; text-align: left; }
.lead-form p { color: rgba(255,255,255,0.7); font-size: 14px; margin-bottom: 20px; text-align: left; }
.lead-form input { width: 100%; padding: 14px 16px; margin-bottom: 12px; border: 1px solid rgba(255,255,255,0.2); border-radius: 8px; background: rgba(255,255,255,0.08); color: var(--white); font-size: 15px; font-family: inherit; outline: none; transition: border-color 0.2s; }
.lead-form input::placeholder { color: rgba(255,255,255,0.4); }
.lead-form input:focus { border-color: var(--gold); }
.lead-form button { width: 100%; padding: 16px; background: var(--gold); color: var(--navy); border: none; border-radius: 8px; font-size: 14px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; font-family: inherit; transition: background 0.2s; }
.lead-form button:hover { background: var(--gold-light); }
.form-confirm { display: none; text-align: center; color: var(--gold-light); font-size: 16px; padding: 20px 0; }
.form-confirm.show { display: block; }

/* CTA section */
.cta-section { background: linear-gradient(135deg, var(--navy), #1a4a5f, #1a5f7a); padding: 60px 20px; text-align: center; color: var(--white); }
.cta-section h2 { font-size: clamp(24px, 4vw, 36px); color: var(--white); margin-bottom: 12px; }
.cta-section p { color: rgba(255,255,255,0.7); margin-bottom: 28px; font-size: 16px; }
.cta-phone { display: inline-block; background: var(--gold); color: var(--navy); font-size: 22px; font-weight: 700; padding: 18px 40px; border-radius: 10px; text-decoration: none; margin-bottom: 16px; transition: background 0.2s; }
.cta-phone:hover { background: var(--gold-light); color: var(--navy); }
.cta-email { display: block; color: var(--gold-light); font-size: 16px; text-decoration: none; margin-top: 12px; }
.cta-email:hover { text-decoration: underline; }

/* Listing footer */
.listing-footer { background: var(--navy); color: rgba(255,255,255,0.5); padding: 32px 20px; text-align: center; font-size: 13px; line-height: 1.8; }
.listing-footer a { color: var(--gold); text-decoration: none; }
.listing-footer .logo-text { color: var(--gold); font-weight: 600; font-size: 15px; margin-bottom: 8px; }
.listing-footer .disclaimer { max-width: 600px; margin: 16px auto 0; font-size: 11px; color: rgba(255,255,255,0.35); }

/* Media embed */
.media-embed { padding: 60px 20px; }
.media-embed .section-title { text-align: center; margin-bottom: 32px; }
.embed-container { max-width: 900px; margin: 0 auto; border-radius: 12px; overflow: hidden; border: 1px solid var(--border); }
.embed-container iframe { width: 100%; aspect-ratio: 16/9; border: none; display: block; }
.matterport-container { max-width: 1000px; margin: 0 auto; border-radius: 12px; overflow: hidden; border: 1px solid var(--border); }
.matterport-container iframe { width: 100%; height: 500px; border: none; display: block; }

/* License list */
.license-list { list-style: none; margin-top: 16px; }
.license-list li { padding: 6px 0; font-size: 14px; color: var(--text-secondary); border-bottom: 1px solid var(--border); }
.license-list li strong { color: var(--navy); }

/* Responsive */
@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-menu { display: none; width: 100%; flex-direction: column; padding-top: 12px; }
    .nav-menu.active { display: flex; }
    .social-links { display: none; }
    .footer-content { grid-template-columns: 1fr 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .gallery-item:first-child { grid-column: span 1; grid-row: span 1; aspect-ratio: 4/3; }
    .credential-item { flex-direction: column; text-align: center; gap: 4px; }
    .lightbox-nav { width: 40px; height: 40px; font-size: 28px; }
}
/* 1778484122 */
