/* ── Design Tokens ─────────────────────────────────────────────── */
:root {
  --navy: #0B1428;
  --navy-mid: #1E3A8A;
  --gold: #C9A84C;
  --gold-light: #e8c97c;
  --white: #F4F6FA;
  --grey-100: #f0f2f8;
  --grey-200: #dde2ee;
  --grey-400: #94a3b8;
  --grey-600: #4a5568;
  --grey-800: #1e293b;
  --dark-bg: #060e1f;
  --dark-surface: #0d1a33;
  --dark-card: #112040;

  --bg: #F4F6FA;
  --surface: #ffffff;
  --card: #ffffff;
  --text: #0d1b2e;
  --text-muted: #5a6a82;
  --border: #d8e0ee;
  --nav-bg: #0B1428;
  --nav-text: #e8eaf6;

  --radius: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,.12);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.18);
  --transition: 240ms ease;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;
  --font-mono: 'Space Grotesk', monospace;
}

[data-theme="dark"] {
  --bg: #060e1f;
  --surface: #0d1a33;
  --card: #112040;
  --text: #e8ecf5;
  --text-muted: #7a8daa;
  --border: #1e3560;
  --nav-bg: #060e1f;
}

/* ── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text); line-height: 1.65; transition: background var(--transition), color var(--transition); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }
address { font-style: normal; }
input, textarea, select { font: inherit; }

/* ── Typography ─────────────────────────────────────────────────── */
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
em { font-style: italic; color: var(--gold); }

/* ── Layout ─────────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section--dark { background: var(--navy); color: var(--white); }
.section--tinted { background: var(--grey-100); }
[data-theme="dark"] .section--tinted { background: var(--dark-surface); }
.section--gold { background: var(--gold); color: var(--navy); }

/* ── Navigation ─────────────────────────────────────────────────── */
.site-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: var(--nav-bg); border-bottom: 1px solid rgba(201,168,76,.15); backdrop-filter: blur(12px); }
.nav-container { display: flex; align-items: center; justify-content: space-between; height: 68px; padding: 0 2rem; max-width: 1300px; margin: 0 auto; }
.nav-logo { display: flex; align-items: center; gap: .6rem; color: var(--white); font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; }
.logo-mark { width: 34px; height: 34px; flex-shrink: 0; }
.logo-text em { color: var(--gold); font-style: normal; }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { color: rgba(232,234,246,.75); font-size: .9rem; font-weight: 500; letter-spacing: .02em; transition: color var(--transition); position: relative; padding-bottom: 2px; }
.nav-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transition: transform var(--transition); transform-origin: left; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links .nav-cta { background: var(--gold); color: var(--navy); padding: .45rem 1.1rem; border-radius: 4px; font-weight: 600; }
.nav-links .nav-cta::after { display: none; }
.nav-links .nav-cta:hover { background: var(--gold-light); }
.nav-actions { display: flex; align-items: center; gap: .8rem; }

/* Theme toggle */
.theme-toggle { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,.08); color: rgba(232,234,246,.8); transition: background var(--transition); }
.theme-toggle:hover { background: rgba(255,255,255,.15); }
.icon-moon { display: none; }
[data-theme="dark"] .icon-sun { display: none; }
[data-theme="dark"] .icon-moon { display: block; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--nav-text); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: -1; opacity: 0; transition: opacity .3s; }

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: 68px; left: 0; right: 0; background: var(--nav-bg); padding: 2rem; gap: 1.2rem; border-bottom: 1px solid rgba(201,168,76,.2); }
  .nav-links.open { display: flex; }
  .nav-links a, .nav-links .nav-cta { font-size: 1.1rem; }
  .nav-overlay.open { display: block; opacity: 1; }
  body.nav-open { overflow: hidden; }
}

/* ── Flash Messages ──────────────────────────────────────────────── */
.flash-container { position: fixed; top: 76px; right: 1rem; z-index: 200; display: flex; flex-direction: column; gap: .5rem; max-width: 380px; }
.flash { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .85rem 1.1rem; border-radius: var(--radius); font-size: .9rem; animation: slideIn .25s ease; }
@keyframes slideIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: none; } }
.flash--success { background: #064e3b; color: #a7f3d0; border-left: 3px solid #10b981; }
.flash--error { background: #7f1d1d; color: #fecaca; border-left: 3px solid #ef4444; }
.flash--info { background: #1e3a5f; color: #bfdbfe; border-left: 3px solid #3b82f6; }
.flash-close { background: none; border: none; cursor: pointer; opacity: .7; font-size: 1.2rem; color: inherit; }

/* ── Buttons ─────────────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .7rem 1.6rem; border-radius: 4px; font-weight: 600; font-size: .9rem; transition: all var(--transition); cursor: pointer; border: 2px solid transparent; }
.btn--primary { background: var(--gold); color: var(--navy); }
.btn--primary:hover { background: var(--gold-light); }
.btn--ghost { border-color: var(--gold); color: var(--gold); }
.btn--ghost:hover { background: rgba(201,168,76,.1); }
.btn--outline { border-color: var(--border); color: var(--text); }
.btn--outline:hover { border-color: var(--gold); color: var(--gold); }
.btn--gold { background: var(--gold); color: var(--navy); }
.btn--dark { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn--dark:hover { background: var(--grey-800); }
.btn--dark-outline { border-color: var(--navy); color: var(--navy); }
.btn--dark-outline:hover { background: var(--navy); color: var(--white); }
.btn--full { width: 100%; justify-content: center; }
.btn--sm { padding: .5rem 1rem; font-size: .82rem; }

/* ── Section Headers ─────────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-eyebrow { font-family: var(--font-mono); font-size: .75rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: .6rem; }
.section--dark .section-eyebrow { color: var(--gold); }
.section-intro { max-width: 600px; margin: 1rem auto 0; color: var(--text-muted); }
.section--dark .section-intro { color: rgba(232,234,246,.65); }
.section-cta { text-align: center; margin-top: 3rem; }

/* ── Hero ────────────────────────────────────────────────────────── */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; background: var(--navy); color: var(--white); overflow: hidden; padding-top: 68px; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-cable { position: absolute; top: 0; bottom: 0; width: 1px; background: linear-gradient(to bottom, transparent, rgba(201,168,76,.3), transparent); }
.hero-cable--1 { left: 20%; animation: cablePulse 3s ease-in-out infinite; }
.hero-cable--2 { left: 50%; animation: cablePulse 3s ease-in-out infinite .8s; }
.hero-cable--3 { right: 20%; animation: cablePulse 3s ease-in-out infinite 1.6s; }
@keyframes cablePulse { 0%,100% { opacity: .2; } 50% { opacity: .6; } }

.floor-indicator { position: absolute; right: 4rem; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; align-items: center; gap: .3rem; opacity: .35; }
.fi-label { font-family: var(--font-mono); font-size: .55rem; letter-spacing: .2em; color: var(--gold); }
.fi-number { font-family: var(--font-mono); font-size: 5rem; font-weight: 700; color: var(--gold); line-height: 1; }

.hero-content { position: relative; z-index: 2; max-width: 700px; padding: 0 2rem 0 min(8vw, 6rem); }
.hero-eyebrow { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; opacity: .85; }
.hero-headline { color: var(--white); margin-bottom: 1.4rem; }
.hero-sub { color: rgba(232,234,246,.7); font-size: 1.05rem; max-width: 520px; margin-bottom: 2rem; line-height: 1.7; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: .5rem; color: rgba(255,255,255,.4); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; }
.hero-scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, rgba(201,168,76,.6), transparent); animation: scrollLine 1.8s ease-in-out infinite; }
@keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ── Stats Bar ───────────────────────────────────────────────────── */
.stats-bar { background: var(--gold); padding: 2rem 0; }
.stats-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; display: flex; justify-content: space-around; flex-wrap: wrap; gap: 2rem; }
.stat-item { text-align: center; }
.stat-number { display: block; font-family: var(--font-mono); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--navy); line-height: 1; }
.stat-label { font-size: .78rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: rgba(11,20,40,.7); }

/* ── About Excerpt ───────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-text h2 { margin-bottom: 1rem; }
.about-content { color: var(--text-muted); margin-bottom: 2rem; }
.about-content p + p { margin-top: 1rem; }
.brand-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.brand-chip { padding: 1.2rem 1.4rem; border: 1px solid var(--border); border-radius: var(--radius); border-left: 3px solid var(--brand-color, var(--gold)); background: var(--surface); }
.brand-chip-name { display: block; font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--text); }
.brand-chip-tag { font-size: .72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; }

/* ── Services Grid ───────────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.service-card { padding: 2rem; border: 1px solid rgba(201,168,76,.2); border-radius: var(--radius-lg); transition: border-color var(--transition), transform var(--transition); }
.service-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.service-icon { width: 56px; height: 56px; background: rgba(201,168,76,.12); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; color: var(--gold); }
.service-card h3 { color: var(--white); margin-bottom: .5rem; }
.service-card p { color: rgba(232,234,246,.6); font-size: .9rem; }

/* ── Projects Grid ───────────────────────────────────────────────── */
.projects-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.project-card { border-radius: var(--radius-lg); overflow: hidden; background: var(--card); border: 1px solid var(--border); transition: transform var(--transition), box-shadow var(--transition); }
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.project-cover { position: relative; aspect-ratio: 16/9; background: var(--grey-800); overflow: hidden; }
.project-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.project-card:hover .project-cover img { transform: scale(1.05); }
.project-cover-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #0d1a33, #1a2f5a); color: rgba(201,168,76,.4); }
.project-overlay { position: absolute; inset: 0; background: rgba(6,14,31,.7); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity var(--transition); }
.project-card:hover .project-overlay { opacity: 1; }
.open-slideshow-btn { display: flex; align-items: center; gap: .6rem; padding: .75rem 1.4rem; background: var(--gold); color: var(--navy); border-radius: 4px; font-weight: 600; font-size: .9rem; border: none; cursor: pointer; }
.project-info { padding: 1.4rem; }
.project-brand { font-family: var(--font-mono); font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }
.project-info h3, .project-title { margin: .4rem 0 .6rem; font-size: 1.1rem; color: var(--text); }
.project-meta { display: flex; gap: 1rem; font-size: .8rem; color: var(--text-muted); margin-bottom: .6rem; }
.project-desc { font-size: .88rem; color: var(--text-muted); line-height: 1.6; }
.project-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: .6rem; }
.tag { padding: .2rem .6rem; border-radius: 4px; font-size: .72rem; font-weight: 600; background: var(--grey-100); color: var(--text-muted); }
.tag--brand { background: rgba(201,168,76,.15); color: var(--gold); }
.tag--featured { background: rgba(30,58,138,.15); color: var(--navy-mid); }
[data-theme="dark"] .tag { background: rgba(255,255,255,.08); }
[data-theme="dark"] .tag--featured { background: rgba(30,58,138,.3); color: #93c5fd; }

/* ── CTA Section ─────────────────────────────────────────────────── */
.cta-section .cta-content { text-align: center; max-width: 650px; margin: 0 auto; }
.cta-section h2 { margin-bottom: 1rem; }
.cta-section p { margin-bottom: 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Page Hero ───────────────────────────────────────────────────── */
.page-hero { background: var(--navy); color: var(--white); padding: 7rem 0 4rem; text-align: center; margin-top: 68px; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero-sub { color: rgba(232,234,246,.65); max-width: 540px; margin: 0 auto; }

/* ── About Page ─────────────────────────────────────────────────── */
.about-body { display: grid; grid-template-columns: 1fr 340px; gap: 3rem; }
.about-main-content p + p { margin-top: 1rem; }
.company-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; }
.company-card h3 { margin-bottom: 1.2rem; }
.company-details { display: grid; grid-template-columns: auto 1fr; gap: .5rem 1rem; font-size: .88rem; }
.company-details dt { color: var(--text-muted); font-weight: 500; }
.company-details dd { color: var(--text); }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.mv-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.5rem; }
.mv-icon { color: var(--gold); margin-bottom: 1rem; }
.mv-card h2 { font-size: 1.4rem; margin-bottom: .8rem; }
.mv-card p { color: var(--text-muted); }
.directors-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.director-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; text-align: center; }
.director-initials { width: 64px; height: 64px; border-radius: 50%; background: var(--gold); color: var(--navy); font-family: var(--font-mono); font-size: 1.5rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.director-card h3 { margin-bottom: .3rem; }
.director-role { color: var(--gold); font-size: .85rem; font-weight: 600; }
.director-shares { font-size: .82rem; color: var(--text-muted); margin-top: .3rem; }
.director-nat { font-size: .78rem; color: var(--text-muted); }
.docs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.doc-download-card { display: flex; gap: 1.2rem; background: rgba(255,255,255,.05); border: 1px solid rgba(201,168,76,.25); border-radius: var(--radius-lg); padding: 1.8rem; transition: border-color var(--transition), background var(--transition); }
.doc-download-card:hover { border-color: var(--gold); background: rgba(201,168,76,.1); }
.doc-icon { color: var(--gold); flex-shrink: 0; }
.doc-info h3 { color: var(--white); font-size: 1rem; margin-bottom: .3rem; }
.doc-info p { color: rgba(232,234,246,.55); font-size: .82rem; }
.doc-badge { display: inline-block; margin-top: .6rem; padding: .2rem .6rem; background: rgba(201,168,76,.2); color: var(--gold); border-radius: 4px; font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }

/* ── Services Page ───────────────────────────────────────────────── */
.brand-section-inner { padding: 4rem 0; }
.brand-header { margin-bottom: 2.5rem; }
.brand-name-display { font-family: var(--font-mono); font-size: .7rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.brand-header h2 { margin: .4rem 0 .6rem; }
.services-detail-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.service-detail-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; }
.sdc-header { margin-bottom: 1rem; }
.sdc-category { font-family: var(--font-mono); font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); }
.sdc-header h3 { margin-top: .3rem; }
.sdc-desc { color: var(--text-muted); font-size: .9rem; margin-bottom: 1.2rem; }
.sdc-features { display: flex; flex-direction: column; gap: .5rem; }
.sdc-features li { display: flex; align-items: flex-start; gap: .5rem; font-size: .88rem; color: var(--text); }
.sdc-features svg { flex-shrink: 0; margin-top: 2px; }

/* ── Contact Page ────────────────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 340px; gap: 3rem; }
.contact-form-wrap h2 { margin-bottom: 1.5rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--text); }
.form-group input, .form-group textarea, .form-group select { padding: .75rem 1rem; background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius); color: var(--text); transition: border-color var(--transition); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,.12); }
.form-group textarea { resize: vertical; min-height: 120px; }
.req { color: var(--gold); }
#submitBtn { padding: 1rem; font-size: 1rem; }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; }
.contact-info-card h3 { margin-bottom: 1.2rem; font-size: 1.1rem; }
.ci-item { display: flex; gap: 1rem; margin-bottom: 1rem; }
.ci-item > div { display: flex; flex-direction: column; gap: .2rem; }
.ci-item strong { font-size: .85rem; }
.ci-item p { color: var(--text-muted); font-size: .88rem; }
.ci-details { display: grid; grid-template-columns: auto 1fr; gap: .5rem 1rem; font-size: .85rem; margin-bottom: 1.2rem; }
.ci-details dt { color: var(--text-muted); }
.footer-docs { margin-top: 1.5rem; }
.footer-docs strong { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.4); margin-bottom: .5rem; }
.doc-links { display: flex; flex-direction: column; gap: .4rem; }
.doc-link { display: flex; align-items: center; gap: .5rem; font-size: .82rem; color: rgba(232,234,246,.6); transition: color var(--transition); }
.doc-link:hover { color: var(--gold); }

/* ── Footer ─────────────────────────────────────────────────────── */
.site-footer { background: var(--navy); color: rgba(232,234,246,.7); border-top: 1px solid rgba(201,168,76,.15); }
.footer-container { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 3rem; max-width: 1200px; margin: 0 auto; padding: 4rem 2rem 3rem; }
.footer-logo { display: flex; align-items: center; gap: .6rem; color: var(--white); font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; margin-bottom: .8rem; }
.footer-tagline { font-size: .82rem; color: rgba(232,234,246,.4); margin-bottom: 1rem; }
.footer-links h4, .footer-services h4, .footer-contact h4 { color: var(--white); font-family: var(--font-body); font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 1rem; }
.footer-links ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a:hover { color: var(--gold); }
.footer-services ul { display: flex; flex-direction: column; gap: .5rem; font-size: .88rem; }
.footer-contact address p { margin-bottom: .4rem; font-size: .85rem; }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 1.2rem 2rem; max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; font-size: .78rem; color: rgba(232,234,246,.3); }
.footer-admin-link { color: rgba(232,234,246,.2); transition: color var(--transition); }
.footer-admin-link:hover { color: rgba(232,234,246,.5); }

/* ── Slideshow Modal ─────────────────────────────────────────────── */
.modal-overlay { position: fixed; inset: 0; z-index: 500; background: rgba(0,0,0,.92); display: flex; align-items: center; justify-content: center; animation: fadeIn .2s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.slideshow-container { position: relative; width: min(90vw, 1000px); max-height: 90vh; display: flex; flex-direction: column; }
.modal-close { position: absolute; top: -2.5rem; right: 0; background: none; border: none; color: rgba(255,255,255,.7); font-size: 2rem; cursor: pointer; line-height: 1; }
.modal-close:hover { color: var(--gold); }
.slideshow-header { margin-bottom: 1rem; }
.slideshow-title { color: var(--white); font-size: 1.4rem; }
.slideshow-meta { color: rgba(255,255,255,.5); font-size: .85rem; margin-top: .3rem; }
.slideshow-stage { position: relative; display: flex; align-items: center; background: #0a0a0a; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/9; }
.slide-image-wrap { flex: 1; height: 100%; position: relative; }
.slide-image { width: 100%; height: 100%; object-fit: contain; display: block; }
.slide-loader { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.spinner { width: 36px; height: 36px; border: 3px solid rgba(201,168,76,.25); border-top-color: var(--gold); border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.slide-prev, .slide-next { position: absolute; z-index: 2; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,.5); color: white; border: none; font-size: 2.5rem; cursor: pointer; width: 48px; height: 64px; display: flex; align-items: center; justify-content: center; transition: background var(--transition); line-height: 1; }
.slide-prev { left: 0; border-radius: 0 var(--radius) var(--radius) 0; }
.slide-next { right: 0; border-radius: var(--radius) 0 0 var(--radius); }
.slide-prev:hover, .slide-next:hover { background: rgba(201,168,76,.8); }
.slideshow-counter { text-align: center; color: rgba(255,255,255,.45); font-family: var(--font-mono); font-size: .78rem; margin: .6rem 0; }
.slideshow-thumbs { display: flex; gap: .4rem; overflow-x: auto; padding: .3rem 0; }
.slideshow-thumbs::-webkit-scrollbar { height: 3px; }
.slideshow-thumbs::-webkit-scrollbar-track { background: rgba(255,255,255,.05); }
.slideshow-thumbs::-webkit-scrollbar-thumb { background: var(--gold); }
.thumb-img { width: 64px; height: 48px; object-fit: cover; border-radius: 4px; cursor: pointer; opacity: .5; border: 2px solid transparent; transition: all var(--transition); flex-shrink: 0; }
.thumb-img.active, .thumb-img:hover { opacity: 1; border-color: var(--gold); }

/* ── Projects Filters ────────────────────────────────────────────── */
.projects-filters-bar { background: var(--surface); border-bottom: 1px solid var(--border); padding: 1rem 0; margin-top: 68px; }
.projects-filters-bar + .section { padding-top: 3rem; }
.page-hero + .projects-filters-bar { margin-top: 0; }
.filters-row { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.filter-group { display: flex; flex-direction: column; gap: .3rem; }
.filter-group label { font-size: .75rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; }
.filter-group select { padding: .45rem .8rem; border: 1.5px solid var(--border); border-radius: var(--radius); background: var(--surface); color: var(--text); font-size: .85rem; }

/* ── Reveal Animations ───────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal--delay { transition-delay: .15s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ── Meta items ──────────────────────────────────────────────────── */
.meta-item { display: inline-flex; align-items: center; gap: .3rem; }

/* ── Empty state ─────────────────────────────────────────────────── */
.empty-state { text-align: center; padding: 4rem 2rem; color: var(--text-muted); }
.empty-state svg { margin: 0 auto 1rem; opacity: .3; }
.empty-state h3 { margin-bottom: .5rem; }

/* ── About sidebar (contact page) ────────────────────────────────── */
.about-sidebar .company-card { position: sticky; top: 90px; }

/* ── Error page ──────────────────────────────────────────────────── */
.error-code { font-family: var(--font-mono); font-size: 6rem; font-weight: 700; color: var(--gold); line-height: 1; }
.error-title { margin: .5rem 0 1rem; }
.error-msg { color: var(--text-muted); }

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .about-grid, .about-body, .contact-layout { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .mv-grid, .directors-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero-content { padding: 0 1.5rem; }
  .floor-indicator { display: none; }
  .hero-cable--1, .hero-cable--3 { display: none; }
  .footer-container { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-container { gap: 1.5rem; }
  .about-grid { gap: 2rem; }
  .brand-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
}
