*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --black: #0a0a0a; --charcoal: #1a1a1f; --deep-navy: #0d1b2a;
  --steel-grey: #2c2c34; --steel-light: #3a3a44;
  --gold: #c9a84c; --electric-blue: #1e90ff;
  --text-primary: #e8e8e8; --text-secondary: #9a9a9a; --text-muted: #666;
  --border-subtle: rgba(201,168,76,0.15); --border-strong: rgba(201,168,76,0.4);
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; background: var(--black); color: var(--text-primary); line-height: 1.7; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--electric-blue); }
img { max-width: 100%; display: block; }

/* Scanline */
.scanline-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 9999; background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.03) 2px, rgba(0,0,0,0.03) 4px); }

/* Nav */
.nav-bar { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: rgba(10,10,10,0.92); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border-subtle); transition: all 0.4s; }
.nav-bar.scrolled { background: rgba(10,10,10,0.98); box-shadow: 0 4px 30px rgba(0,0,0,0.5); }
.nav-container { max-width: 1400px; margin: 0 auto; padding: 0 40px; display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-brand { display: flex; align-items: center; gap: 12px; color: var(--text-primary); }
.nav-brand .brand-icon { width: 36px; height: 36px; border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; color: var(--gold); }
.nav-brand .brand-text { font-size: 15px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; }
.nav-brand .brand-sub { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-secondary); position: relative; padding: 4px 0; transition: color 0.3s; }
.nav-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text-primary); transition: all 0.3s; display: block; }
.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); }

/* Hero */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 120px 40px 80px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.04), transparent 60%), radial-gradient(ellipse at 80% 20%, rgba(30,144,255,0.03), transparent 50%); pointer-events: none; }
.hero-grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; width: 100%; }
.hero-content { animation: fadeInUp 1s ease 0.3s both; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; border: 1px solid var(--border-strong); font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 32px; }
.hero-badge .dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
.hero-title { font-size: clamp(36px,5vw,64px); font-weight: 700; line-height: 1.1; letter-spacing: -1px; margin-bottom: 16px; }
.hero-title .highlight { color: var(--gold); display: block; }
.hero-designation { font-size: 16px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-secondary); margin-bottom: 28px; }
.hero-intro { font-size: 17px; color: var(--text-secondary); max-width: 520px; margin-bottom: 40px; line-height: 1.8; }
.hero-stats { display: flex; gap: 48px; margin-bottom: 48px; }
.hero-stat .number { font-size: 36px; font-weight: 700; color: var(--gold); display: block; line-height: 1; }
.hero-stat .label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-top: 6px; }
.hero-cta { display: flex; gap: 20px; }
.btn-primary { display: inline-flex; align-items: center; gap: 10px; padding: 14px 32px; background: var(--gold); color: var(--black); font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; border: none; cursor: pointer; transition: all 0.3s; }
.btn-primary:hover { background: #d4b35a; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.3); }
.btn-secondary { display: inline-flex; align-items: center; gap: 10px; padding: 14px 32px; background: transparent; color: var(--text-primary); font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; border: 1px solid var(--steel-light); cursor: pointer; transition: all 0.3s; }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
.hero-image { position: relative; animation: fadeInUp 1s ease 0.6s both; }
.hero-image-wrapper { position: relative; width: 100%; max-width: 480px; margin: 0 auto; background: rgba(255,255,255,0.02); border: 1px solid var(--border-subtle); }
.hero-image-wrapper img { width: 100%; height: auto; display: block; object-fit: contain; object-position: center top; filter: grayscale(10%); }
.hero-image-wrapper::before { content: ''; position: absolute; top: -12px; right: -12px; width: 100%; height: 100%; border: 1px solid var(--border-strong); z-index: -1; }

/* Sections */
.section { padding: 100px 40px; position: relative; }
.section-dark { background: var(--charcoal); }
.section-navy { background: var(--deep-navy); }
.container { max-width: 1200px; margin: 0 auto; }
.section-header { margin-bottom: 64px; }
.section-label { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.section-label::before { content: ''; width: 40px; height: 1px; background: var(--gold); }
.section-title { font-size: clamp(28px,4vw,48px); font-weight: 700; line-height: 1.2; }
.section-subtitle { font-size: 17px; color: var(--text-secondary); margin-top: 16px; max-width: 600px; line-height: 1.7; }

/* Highlights */
.highlights-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 48px; }
.highlight-card { background: rgba(255,255,255,0.02); border: 1px solid var(--border-subtle); padding: 40px 28px; transition: all 0.4s; position: relative; overflow: hidden; }
.highlight-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: var(--gold); transform: scaleX(0); transition: transform 0.4s; }
.highlight-card:hover { background: rgba(201,168,76,0.04); border-color: var(--border-strong); transform: translateY(-4px); }
.highlight-card:hover::before { transform: scaleX(1); }
.highlight-card .icon { font-size: 28px; margin-bottom: 20px; display: block; }
.highlight-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 10px; }
.highlight-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* Timeline */
.timeline { position: relative; padding-left: 40px; }
.timeline::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 1px; background: linear-gradient(to bottom, var(--gold), var(--border-subtle)); }
.timeline-item { position: relative; padding: 0 0 48px 40px; opacity: 0; transform: translateY(20px); transition: all 0.6s; }
.timeline-item.visible { opacity: 1; transform: translateY(0); }
.timeline-item::before { content: ''; position: absolute; left: -44px; top: 6px; width: 8px; height: 8px; background: var(--gold); border: 2px solid var(--black); outline: 1px solid var(--gold); }
.timeline-item .year { font-size: 12px; letter-spacing: 3px; color: var(--gold); margin-bottom: 8px; font-weight: 600; }
.timeline-item h3 { font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.timeline-item p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; }

/* Info Cards */
.info-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; }
.info-card { background: rgba(255,255,255,0.02); border: 1px solid var(--border-subtle); padding: 48px 36px; transition: all 0.4s; position: relative; }
.info-card:hover { border-color: var(--border-strong); background: rgba(201,168,76,0.03); }
.info-card .card-number { font-size: 48px; font-weight: 800; color: rgba(201,168,76,0.1); position: absolute; top: 16px; right: 24px; }
.info-card h3 { font-size: 20px; font-weight: 600; margin-bottom: 16px; color: var(--gold); }
.info-card p { font-size: 15px; color: var(--text-secondary); line-height: 1.8; }
.info-card ul { list-style: none; margin-top: 12px; }
.info-card ul li { padding: 8px 0 8px 20px; position: relative; font-size: 15px; color: var(--text-secondary); }
.info-card ul li::before { content: '\2014'; position: absolute; left: 0; color: var(--gold); }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.gallery-item { position: relative; overflow: hidden; aspect-ratio: 3/4; cursor: pointer; background: rgba(255,255,255,0.02); border: 1px solid var(--border-subtle); }
.gallery-item img { width: 100%; height: 100%; object-fit: contain; object-position: center top; transition: transform 0.6s, filter 0.4s; filter: grayscale(20%); }
.gallery-item:hover img { transform: scale(1.03); filter: grayscale(0%); }
.gallery-item .caption { position: absolute; bottom: 16px; left: 16px; font-size: 13px; color: white; z-index: 1; opacity: 0; transform: translateY(10px); transition: all 0.4s 0.1s; }
.gallery-item:hover .caption { opacity: 1; transform: translateY(0); }
.gallery-item.featured { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }

/* Media Cards */
.media-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.media-card { background: rgba(255,255,255,0.02); border: 1px solid var(--border-subtle); overflow: hidden; transition: all 0.4s; }
.media-card:hover { border-color: var(--border-strong); transform: translateY(-4px); }
.media-card-image { width: 100%; height: 240px; overflow: hidden; }
.media-card-image img { width: 100%; height: 100%; object-fit: contain; object-position: center center; background: rgba(255,255,255,0.03); transition: transform 0.5s; }
.media-card:hover .media-card-image img { transform: scale(1.05); }
.media-card-body { padding: 24px; }
.media-card-body .date { font-size: 11px; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; }
.media-card-body h3 { font-size: 16px; font-weight: 600; margin: 8px 0; line-height: 1.4; }
.media-card-body p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact-info { padding: 40px 0; }
.contact-info-item { display: flex; gap: 16px; padding: 24px 0; border-bottom: 1px solid var(--border-subtle); }
.contact-info-item .icon-box { width: 48px; height: 48px; border: 1px solid var(--border-strong); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-info-item h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.contact-info-item p { font-size: 14px; color: var(--text-secondary); }
.contact-form { background: rgba(255,255,255,0.02); border: 1px solid var(--border-subtle); padding: 48px; }
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-secondary); margin-bottom: 8px; }
.form-group input, .form-group textarea { width: 100%; padding: 14px 16px; background: rgba(255,255,255,0.03); border: 1px solid var(--steel-light); color: var(--text-primary); font-size: 15px; font-family: inherit; outline: none; transition: border-color 0.3s; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { min-height: 140px; resize: vertical; }
.form-submit { width: 100%; }

/* Footer */
.footer { background: var(--charcoal); border-top: 1px solid var(--border-subtle); padding: 48px 40px 32px; }
.footer-container { max-width: 1200px; margin: 0 auto; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 40px; flex-wrap: wrap; gap: 32px; }
.footer-brand h3 { font-size: 16px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 4px; }
.footer-brand p { font-size: 13px; color: var(--text-secondary); }
.footer-social { display: flex; gap: 16px; }
.footer-social a { width: 40px; height: 40px; border: 1px solid var(--steel-light); display: flex; align-items: center; justify-content: center; color: var(--text-secondary); transition: all 0.3s; }
.footer-social a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.footer-links { display: flex; gap: 32px; flex-wrap: wrap; }
.footer-links a { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-secondary); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--border-subtle); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-size: 12px; color: var(--text-muted); }
.footer-bottom a { color: var(--gold); }
.footer-contact-info { font-size: 12px; color: var(--text-muted); display: flex; gap: 20px; flex-wrap: wrap; }

/* Page Header */
.page-header { padding: 160px 40px 80px; position: relative; overflow: hidden; background: linear-gradient(135deg, var(--deep-navy), var(--charcoal)); }
.page-header::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.05), transparent 60%); }
.page-header .container { position: relative; z-index: 1; }
.page-header .breadcrumb { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 20px; }
.page-header .breadcrumb a { color: var(--text-muted); }
.page-header .breadcrumb a:hover { color: var(--gold); }
.page-header h1 { font-size: clamp(32px,5vw,56px); font-weight: 700; margin-bottom: 16px; }
.page-header .page-desc { font-size: 17px; color: var(--text-secondary); max-width: 600px; line-height: 1.7; }

/* Content */
.content-block { margin-bottom: 64px; }
.content-block h2 { font-size: 28px; font-weight: 600; margin-bottom: 20px; }
.content-block h3 { font-size: 22px; font-weight: 600; margin-bottom: 12px; color: var(--gold); }
.content-block p { font-size: 16px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 16px; }
.content-block ul { list-style: none; margin: 16px 0; }
.content-block ul li { padding: 8px 0 8px 24px; position: relative; font-size: 15px; color: var(--text-secondary); line-height: 1.7; }
.content-block ul li::before { content: ''; position: absolute; left: 0; top: 16px; width: 8px; height: 1px; background: var(--gold); }
.content-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.content-split img { width: 100%; height: auto; display: block; object-fit: contain; object-position: center top; background: rgba(255,255,255,0.02); border: 1px solid var(--border-subtle); }

/* Milestones */
.milestone-row { display: flex; align-items: center; gap: 32px; padding: 32px 0; border-bottom: 1px solid var(--border-subtle); }
.milestone-row .milestone-year { font-size: 14px; letter-spacing: 3px; color: var(--gold); font-weight: 600; min-width: 120px; }
.milestone-row h3 { font-size: 18px; font-weight: 600; margin-bottom: 4px; }
.milestone-row p { font-size: 14px; color: var(--text-secondary); }

/* Animations */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s, transform 0.7s; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Gate */
.gate-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--black); position: relative; overflow: hidden; }
.gate-page::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(201,168,76,0.03), transparent 70%); }
.gate-container { text-align: center; position: relative; z-index: 1; padding: 40px; }
.gate-icon { width: 80px; height: 80px; border: 2px solid var(--gold); margin: 0 auto 40px; display: flex; align-items: center; justify-content: center; position: relative; }
.gate-icon svg { width: 32px; height: 32px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.gate-icon::before, .gate-icon::after { content: ''; position: absolute; border: 1px solid var(--border-subtle); }
.gate-icon::before { top: -8px; left: -8px; right: -8px; bottom: -8px; }
.gate-icon::after { top: -16px; left: -16px; right: -16px; bottom: -16px; border-color: rgba(201,168,76,0.08); }
.gate-title { font-size: 14px; letter-spacing: 6px; text-transform: uppercase; color: var(--text-secondary); margin-bottom: 8px; }
.gate-subtitle { font-size: 11px; letter-spacing: 3px; color: var(--text-muted); margin-bottom: 48px; text-transform: uppercase; }
.gate-input-wrapper { position: relative; max-width: 320px; margin: 0 auto 24px; }
.gate-input-wrapper input { width: 100%; padding: 16px 20px; background: rgba(255,255,255,0.03); border: 1px solid var(--steel-light); color: var(--text-primary); font-size: 14px; letter-spacing: 4px; text-align: center; font-family: 'Courier New', monospace; outline: none; transition: border-color 0.3s; }
.gate-input-wrapper input:focus { border-color: var(--gold); }
.gate-input-wrapper input::placeholder { color: var(--text-muted); letter-spacing: 2px; font-size: 12px; }
.gate-btn { padding: 14px 48px; background: transparent; border: 1px solid var(--gold); color: var(--gold); font-size: 11px; letter-spacing: 4px; text-transform: uppercase; cursor: pointer; transition: all 0.3s; font-family: inherit; }
.gate-btn:hover { background: var(--gold); color: var(--black); }
.gate-error { color: #ff4444; font-size: 12px; letter-spacing: 1px; margin-top: 16px; opacity: 0; transition: opacity 0.3s; }
.gate-error.show { opacity: 1; }
.gate-unlock { animation: gateUnlock 1.5s ease forwards; }
@keyframes gateUnlock { 0% { opacity: 1; } 30% { opacity: 1; transform: scale(1); } 60% { opacity: 0.5; transform: scale(0.98); } 100% { opacity: 0; transform: scale(1.1); } }
.gate-scan-line { position: absolute; left: 0; width: 100%; height: 2px; background: linear-gradient(to right, transparent, var(--gold), transparent); opacity: 0; top: 0; }
.gate-scan-line.active { opacity: 1; animation: scanDown 1s ease forwards; }
@keyframes scanDown { from { top: 0; } to { top: 100%; } }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 10000; display: none; align-items: center; justify-content: center; cursor: pointer; }
.lightbox.active { display: flex; }
.lightbox img { max-width: 90%; max-height: 90vh; object-fit: contain; }
.lightbox-close { position: absolute; top: 24px; right: 24px; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,0.2); background: none; color: white; font-size: 24px; cursor: pointer; display: flex; align-items: center; justify-content: center; }

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-content { order: 2; } .hero-image { order: 1; }
  .hero-image-wrapper { max-width: 360px; }
  .hero-intro { margin: 0 auto 40px; }
  .hero-stats { justify-content: center; } .hero-cta { justify-content: center; }
  .highlights-grid { grid-template-columns: repeat(2,1fr); }
  .info-grid, .content-split, .contact-grid { grid-template-columns: 1fr; }
  .media-grid, .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-item.featured { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: 72px; left: 0; width: 100%; background: rgba(10,10,10,0.98); flex-direction: column; padding: 24px 40px; gap: 20px; border-bottom: 1px solid var(--border-subtle); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .section { padding: 64px 20px; } .hero { padding: 120px 20px 60px; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .hero-cta { flex-direction: column; align-items: center; }
  .highlights-grid, .media-grid, .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.featured { grid-column: span 1; }
  .page-header { padding: 120px 20px 60px; }
  .footer-top, .footer-bottom { flex-direction: column; }
  .footer-bottom { text-align: center; }
  .footer-links { justify-content: center; }
  .contact-form { padding: 32px 20px; }
  .milestone-row { flex-direction: column; gap: 8px; align-items: flex-start; }
  .nav-container { padding: 0 20px; }
}
.text-gold { color: var(--gold); }
