@font-face {
  font-family: 'Univers Next Pro';
  src: url('fonts/UniversNextProRegular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Univers Next Pro';
  src: url('fonts/Univers_Next_Pro_Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Univers Next Pro';
  src: url('fonts/UniversNextProBold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Univers Next Pro Condensed';
  src: url('fonts/Univers_Next_Pro_Condensed.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

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

:root {
  --bg: #0a0a0f;
  --bg-card: #12121a;
  --text: #e8e8ec;
  --text-muted: #8a8a9a;
  --accent: #B22222;
  --accent-glow: #B2222266;
  --accent-hot: #d42a2a;
  --accent-light: #e63333;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Univers Next Pro', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* ===== 3D CANVAS ===== */
#bulb-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 9999;
  pointer-events: none;
}

/* ===== LOADING SCREEN ===== */
#loading-screen {
  position: fixed; inset: 0; z-index: 10001;
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
  padding-bottom: 15vh;
  pointer-events: none;
}
#loading-bg {
  position: fixed; inset: 0; z-index: 9998;
  background: var(--bg);
}

.progress-wrap { position: relative; z-index: 10002; width: 200px; pointer-events: auto; }
.progress-bar { width: 100%; height: 3px; background: #1a1a2e; border-radius: 3px; overflow: hidden; }
.progress-fill { height: 100%; width: 0%; background: linear-gradient(90deg, var(--accent), var(--accent-hot)); border-radius: 3px; transition: width 0.3s ease; }
.progress-text { margin-top: 12px; text-align: center; font-size: 13px; color: var(--text-muted); letter-spacing: 2px; text-transform: uppercase; font-family: 'Univers Next Pro Condensed', 'Univers Next Pro', sans-serif; }

/* ===== ANNOUNCEMENT BAR — fixed, full width ===== */
.announcement-bar {
  background: linear-gradient(90deg, var(--accent-hot), var(--accent));
  overflow: hidden; height: 40px;
  display: flex; align-items: center;
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 10020;
  opacity: 0;
}
.announcement-bar.visible { opacity: 1; transition: opacity 0.6s ease; }

.marquee { display: flex; animation: marquee 20s linear infinite; white-space: nowrap; }
.marquee span {
  font-family: 'Univers Next Pro Condensed', 'Univers Next Pro', sans-serif; font-size: 12px;
  letter-spacing: 1.5px; color: var(--bg); padding: 0 60px;
  display: flex; align-items: center; gap: 10px;
}
.marquee span::before { content: '⚡'; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== NAVBAR — fixed, full width, inner content capped ===== */
nav {
  position: fixed; top: 40px; left: 0; right: 0;
  z-index: 10010;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(178, 34, 34, 0.1);
  opacity: 0;
}
nav .nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 16px 48px;
  display: flex; align-items: center; justify-content: space-between;
}
nav.visible { opacity: 1; transition: opacity 0.6s ease; }

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon { height: 40px; width: auto; filter: brightness(2.5); }
.logo-text {
  font-family: 'Univers Next Pro Condensed', 'Univers Next Pro', sans-serif;
  font-size: 26px; font-weight: 700; letter-spacing: 3px;
}
.logo-vuk { color: #fff; }
.logo-el { color: var(--accent); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { color: #fff; text-decoration: none; font-size: 12px; letter-spacing: 0.5px; text-transform: uppercase; transition: color 0.3s; }
.nav-links a:hover { color: var(--accent); }

/* ===== HAMBURGER (mobile) ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--accent);
  transition: transform 0.3s, opacity 0.3s;
}

/* ===== HERO ===== */
#hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 140px 0 80px; position: relative;
  max-width: 1200px; margin: 0 auto;
  padding-left: 48px; padding-right: 48px;
}

/* Circuit pattern overlay — breaks out of wrapper to full width */
.circuit-pattern {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  opacity: 0;
  z-index: 0;
  overflow: hidden;
}

.circuit-pattern svg {
  width: 100%;
  height: 100%;
}

.circuit-line {
  stroke: rgba(178, 34, 34, 0.35);
  stroke-width: 1;
  fill: none;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}

.circuit-dot {
  fill: rgba(178, 34, 34, 0.3);
  r: 2.5;
}

.circuit-node {
  fill: none;
  stroke: rgba(178, 34, 34, 0.2);
  stroke-width: 0.5;
}

.hero-content {
  flex: 1; max-width: 550px;
  opacity: 0; transform: translateY(40px);
  position: relative; z-index: 3;
}
.hero-spacer { flex: 1; }

.hero-label { font-family: 'Univers Next Pro Condensed', 'Univers Next Pro', sans-serif; font-size: 14px; letter-spacing: 4px; color: var(--accent); margin-bottom: 20px; text-transform: uppercase; overflow: hidden; }
.hero-title { font-family: 'Univers Next Pro Condensed', 'Univers Next Pro', sans-serif; font-size: clamp(36px, 6vw, 72px); line-height: 1.05; color: var(--text); margin-bottom: 16px; overflow: hidden; }
.hero-title .dot { color: var(--accent); }
.hero-subtitle { font-size: 18px; color: var(--text); margin-bottom: 12px; font-style: italic; overflow: hidden; }
.hero-body { font-size: 16px; color: var(--text); line-height: 1.7; margin-bottom: 36px; overflow: hidden; }
.hero-cta {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--accent), var(--accent-hot));
  color: var(--bg); text-decoration: none; font-weight: 700; font-size: 15px;
  border-radius: 4px; letter-spacing: 0.5px; transition: transform 0.3s, box-shadow 0.3s;
  position: relative; z-index: 10;
}
.hero-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 32px var(--accent-glow); }

/* ===== GLOBAL WRAPPER ===== */
.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
}

/* ===== SECTIONS ===== */
section { padding: 100px 0; position: relative; }
section > .wrapper { padding-top: 0; padding-bottom: 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-label { font-family: 'Univers Next Pro Condensed', 'Univers Next Pro', sans-serif; font-size: 14px; letter-spacing: 4px; color: var(--accent); text-transform: uppercase; margin-bottom: 12px; }
.section-title { font-family: 'Univers Next Pro Condensed', 'Univers Next Pro', sans-serif; font-size: clamp(28px, 4vw, 52px); color: var(--text); }

/* text-reveal handled by JS */

/* WHY — red background section */
#why { background: var(--accent); padding: 100px 0; }
#why .wrapper { padding-left: 48px; padding-right: 48px; }
#why .section-label { color: rgba(255,255,255,0.5); }
#why .section-title { color: #fff; font-size: clamp(30px, 5vw, 56px); }

/* Top row: intro left, first card right */
.why-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
}

.why-intro { padding-right: 24px; }
.why-intro .section-label { margin-bottom: 16px; }
.why-intro .section-title { margin-bottom: 24px; }
.why-footer {
  font-size: 15px; line-height: 1;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Bottom row: 3 cards */
.why-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Cards */
.why-card {
  background: rgba(0, 0, 0, 0.15); border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px; padding: 36px 28px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.why-card:hover { transform: translateY(-4px); border-color: rgba(255, 255, 255, 0.2); box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15); }
.why-card svg { width: 48px; height: 48px; margin-bottom: 20px; stroke: #fff !important; }
.why-card h3 { font-family: 'Univers Next Pro Condensed', 'Univers Next Pro', sans-serif; font-size: 20px; letter-spacing: 1px; margin-bottom: 12px; color: #fff; text-transform: uppercase; }
.why-card p { font-size: 14px; line-height: 1.7; color: rgba(255, 255, 255, 0.75); }

/* SERVICES */
#services { background: linear-gradient(180deg, var(--bg) 0%, #0d0d14 100%); }
.services-list { display: flex; flex-direction: column; gap: 24px; }
.service-card {
  display: flex; align-items: stretch;
  background: var(--bg-card);
  border: 1px solid rgba(178, 34, 34, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.service-card:hover {
  border-color: rgba(178, 34, 34, 0.25);
  transform: translateY(-2px);
}
.service-img {
  flex: 0 0 280px;
  overflow: hidden;
  background: #000;
  margin: 16px;
  border-radius: 12px;
}
.service-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.5s ease;
}
.service-card:hover .service-img img {
  transform: scale(1.05);
}
.service-text {
  flex: 1;
  padding: 32px 36px;
  display: flex; flex-direction: column; justify-content: center;
}
.service-card h3 { font-family: 'Univers Next Pro Condensed', 'Univers Next Pro', sans-serif; font-size: 22px; letter-spacing: 1px; margin-bottom: 10px; color: var(--text); }
.service-card p { font-size: 15px; line-height: 1.7; color: var(--text-muted); }

/* GALLERY */
/* ===== GALLERY PREVIEW ===== */
.gal-preview {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  grid-auto-rows: min-content;
  gap: 12px; margin-top: 12px;
}
.gal-preview-item {
  position: relative; overflow: hidden; border-radius: 4px;
  aspect-ratio: 3/4; background: var(--bg-card) center/cover no-repeat; cursor: pointer;
}
.gal-preview-item:hover { transform: scale(1.04); transition: transform 0.4s ease; }
.gal-preview-item .gal-preview-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px 14px 10px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  font-family: 'Univers Next Pro Condensed', sans-serif;
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

/* See all button */
.gal-see-all {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 32px; background: transparent; border: 1.5px solid var(--accent);
  color: var(--text); font-family: 'Univers Next Pro Condensed', sans-serif;
  font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
  cursor: pointer; transition: all 0.3s ease; position: relative; overflow: hidden;
}
.gal-see-all::before {
  content: ''; position: absolute; inset: 0; background: var(--accent);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease; z-index: 0;
}
.gal-see-all:hover::before { transform: scaleX(1); }
.gal-see-all span { position: relative; z-index: 1; }
.gal-see-all .arr { position: relative; z-index: 1; transition: transform 0.3s; }
.gal-see-all:hover .arr { transform: translateX(4px); }

/* ===== GALLERY MODAL (full screen overlay with grid) ===== */
.gm-overlay {
  position: fixed; inset: 0; z-index: 30000;
  background: var(--bg);
  display: none; flex-direction: column;
  opacity: 0; transition: opacity 0.3s ease;
}
.gm-overlay.active { display: flex; opacity: 1; }

.gm-modal {
  flex: 1; display: flex; flex-direction: column;
  overflow: hidden;
}

.gm-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px; border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}
.gm-heading {
  font-family: 'Univers Next Pro Condensed', sans-serif;
  font-size: 18px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text);
}
.gm-close {
  width: 40px; height: 40px; background: none; border: 1px solid #333;
  color: #fff; font-size: 20px; cursor: pointer; display: flex;
  align-items: center; justify-content: center; transition: all 0.2s;
}
.gm-close:hover { background: var(--accent); border-color: var(--accent); }

/* Filter tabs */
.gm-filters {
  display: flex; gap: 6px; padding: 14px 28px; flex-wrap: wrap;
  border-bottom: 1px solid rgba(255,255,255,0.04); flex-shrink: 0;
}
.gm-filter-btn {
  padding: 8px 18px; background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06); border-radius: 3px;
  color: var(--text-muted); font-family: 'Univers Next Pro Condensed', sans-serif;
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  cursor: pointer; transition: all 0.25s ease; white-space: nowrap;
}
.gm-filter-btn:hover { color: var(--text); border-color: rgba(255,255,255,0.15); }
.gm-filter-btn.active {
  background: var(--accent); border-color: var(--accent); color: #fff;
}

/* Image grid inside modal */
.gm-grid {
  flex: 1; min-height: 0; overflow-y: auto; padding: 20px 28px 40px;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  grid-auto-rows: min-content;
  gap: 10px; align-content: start;
}
.gm-grid::-webkit-scrollbar { width: 5px; }
.gm-grid::-webkit-scrollbar-track { background: transparent; }
.gm-grid::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }
.gm-grid-item {
  aspect-ratio: 3/4; overflow: hidden; border-radius: 3px;
  background: var(--bg-card) center/cover no-repeat; cursor: pointer; position: relative;
  transition: transform 0.35s ease;
}
.gm-grid-item:hover { transform: scale(1.03); }

/* ===== FULLSCREEN IMAGE VIEWER (inside gallery modal) ===== */
.gm-viewer {
  position: absolute; inset: 0; z-index: 10;
  background: rgba(5,5,10,0.97); display: none;
  align-items: center; justify-content: center;
}
.gm-viewer.active { display: flex; }
.gm-viewer img {
  max-width: 90%; max-height: 85vh; object-fit: contain;
}
.gm-viewer-close {
  position: absolute; top: 16px; right: 20px;
  width: 40px; height: 40px; background: none; border: 1px solid #444;
  color: #fff; font-size: 20px; cursor: pointer; display: flex;
  align-items: center; justify-content: center; transition: all 0.2s; z-index: 5;
}
.gm-viewer-close:hover { background: var(--accent); border-color: var(--accent); }
.gm-viewer-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 72px; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1); color: #fff;
  font-size: 28px; cursor: pointer; display: flex;
  align-items: center; justify-content: center; transition: all 0.2s; z-index: 5;
}
.gm-viewer-arrow:hover { background: var(--accent); border-color: var(--accent); }
.gm-viewer-prev { left: 10px; }
.gm-viewer-next { right: 10px; }
.gm-viewer-counter {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  font-family: 'Univers Next Pro', sans-serif; font-size: 13px;
  color: var(--text-muted); letter-spacing: 1px;
}

@media (max-width: 768px) {
  .gm-top { padding: 14px 16px; }
  .gm-filters { padding: 10px 16px; gap: 5px; }
  .gm-filter-btn { padding: 6px 12px; font-size: 11px; }
  .gm-grid { padding: 14px 16px 30px; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 8px; }
  .gm-viewer-arrow { width: 36px; height: 56px; font-size: 22px; }
  .gal-preview { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
}

@media (max-width: 480px) {
  .gm-grid { grid-template-columns: 1fr 1fr; gap: 6px; }
  .gal-preview { grid-template-columns: 1fr 1fr; gap: 8px; }
}

/* ABOUT */
#about { background: #0d0d14; }
.about-content { max-width: 700px; margin: 0 auto; text-align: center; padding: 0 48px; }
.about-content p { font-size: 17px; line-height: 1.8; color: var(--text-muted); margin-bottom: 16px; }

/* CONTACT — ON-style full section */
#contact {
  background: var(--accent);
  padding: 100px 0 60px;
  position: relative;
  overflow: visible;
  text-align: left;
}

#contact .wrapper {
  position: relative;
  z-index: 10001;
}

.contact-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 120px;
}

.contact-intro {}
.contact-headline {
  font-family: 'Univers Next Pro Condensed', 'Univers Next Pro', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.2;
  color: #fff;
  margin-bottom: 16px;
}
.contact-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
}
#contact .contact-cta {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 32px;
  background: var(--bg);
  color: #fff;
  text-decoration: none; font-weight: 700; font-size: 14px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.3s, background 0.3s;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 10;
  cursor: pointer;
}
#contact .contact-cta:hover {
  transform: translateY(-2px);
  background: rgba(0, 0, 0, 0.8);
}

/* Right side links */
.contact-links {
  display: flex;
  flex-direction: column;
}
.contact-link {
  font-family: 'Univers Next Pro Condensed', 'Univers Next Pro', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  color: rgba(0, 0, 0, 0.85);
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  transition: color 0.3s, padding-left 0.3s;
  position: relative;
  z-index: 10;
}
.contact-link:first-child { border-top: 1px solid rgba(0, 0, 0, 0.2); }
.contact-link:hover {
  color: #fff;
  padding-left: 12px;
}

/* Bottom: watermark + info */
.contact-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 40px;
}

.contact-watermark {
  font-family: 'Univers Next Pro Condensed', 'Univers Next Pro', sans-serif;
  font-size: clamp(80px, 12vw, 160px);
  font-weight: 700;
  color: rgba(0, 0, 0, 0.15);
  line-height: 0.85;
  letter-spacing: 8px;
  user-select: none;
}

.contact-footer-info {
  text-align: right;
}
.contact-details {
  display: flex;
  gap: 24px;
  margin-bottom: 12px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
}
.contact-copy {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.4);
}

/* fade-in handled by JS */

/* ===== TABLET ===== */
@media (max-width: 1024px) {
  .wrapper { padding: 0 32px; }
  #hero { padding: 120px 32px 60px; }
  section { padding: 80px 0; }
  .services-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .wrapper { padding: 0 20px; }
  .announcement-bar { height: 36px; }
  .marquee span { font-size: 10px; padding: 0 5px; }

  nav {
    top: 36px;
  }
  nav .nav-inner {
    padding: 12px 20px;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    padding: 20px;
    gap: 16px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 12px; }
  .hamburger { display: flex; }
  .logo-icon { height: 32px; }
  .logo-text { font-size: 20px; letter-spacing: 2px; }

  #hero {
    flex-direction: column;
    padding: 140px 20px 40px;
    min-height: 100vh;
    text-align: left;
    align-items: flex-start;
  }
  .hero-content { max-width: 100%; }
  .hero-spacer { display: none; }
  .hero-label { font-size: 11px; letter-spacing: 3px; }
  .hero-title { font-size: 32px; }
  .hero-subtitle { font-size: 15px; }
  .hero-body { font-size: 14px; line-height: 1.6; margin-bottom: 28px; }
  .hero-cta { padding: 14px 28px; font-size: 14px; }

  section { padding: 60px 20px; }
  .section-header { text-align: left; }
  .section-title { font-size: 28px; }
  .section-label { font-size: 12px; letter-spacing: 3px; }

  .why-top { grid-template-columns: 1fr; gap: 24px; }
  .why-intro { padding-right: 0; text-align: left; }
  .why-bottom { grid-template-columns: 1fr; gap: 20px; }
  .why-card { padding: 28px 22px; }
  .why-card h3 { font-size: 18px; }
  .why-card p { font-size: 13px; }
  .why-footer { font-size: 14px; text-align: left; }

  .service-card { flex-direction: column; }
  .service-img { flex: 0 0 200px; margin: 12px; }
  .service-text { padding: 24px 20px; }
  .service-card h3 { font-size: 18px; }
  .service-card p { font-size: 13px; }

  .gal-preview { grid-template-columns: 1fr 1fr; gap: 8px; }

  .about-content { text-align: left; padding: 0; }
  .about-content p { font-size: 15px; }

  .contact-top { grid-template-columns: 1fr; gap: 40px; margin-bottom: 60px; }
  .contact-headline { font-size: 24px; }
  .contact-sub { font-size: 14px; margin-bottom: 24px; }
  #contact .contact-cta { padding: 12px 24px; font-size: 13px; }
  .contact-link { font-size: 20px; padding: 12px 0; }
  .contact-bottom { flex-direction: column; align-items: flex-start; gap: 24px; }
  .contact-watermark { font-size: 50px; letter-spacing: 4px; }
  .contact-footer-info { text-align: left; }
  .contact-details { flex-direction: column; gap: 8px; font-size: 13px; }
  .contact-copy { font-size: 11px; }
  #contact { padding: 60px 0 40px; }

  #loading-screen { padding-bottom: 12vh; }
  .progress-wrap { width: 160px; }
}

/* ===== SMALL MOBILE ===== */
@media (max-width: 400px) {
  #hero { padding: 120px 16px 30px; }
  .hero-title { font-size: 30px; }
  .hero-body { font-size: 13px; }
  .gal-preview { grid-template-columns: 1fr; }
}

/* ===== NAV CTA BUTTON ===== */
.nav-cta {
  font-family: 'Univers Next Pro Condensed', 'Univers Next Pro', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  background: linear-gradient(135deg, var(--accent), var(--accent-hot));
  color: #fff; border: none; padding: 10px 24px; border-radius: 3px;
  cursor: pointer; transition: transform 0.3s, box-shadow 0.3s;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--accent-glow);
}

/* ===== CONTACT MODAL ===== */
.contact-overlay {
  position: fixed; inset: 0; z-index: 20000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.contact-overlay::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(5, 5, 10, 0.88);
  backdrop-filter: blur(10px);
}
.contact-overlay.active { opacity: 1; visibility: visible; }

.contact-modal {
  position: relative; background: var(--bg-card);
  border: 1px solid rgba(178,34,34,0.15);
  width: 92%; max-width: 540px; max-height: 90vh; overflow-y: auto;
  padding: 44px 40px;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.contact-overlay.active .contact-modal {
  transform: translateY(0) scale(1);
}
.contact-modal::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--accent), var(--accent-hot));
}

/* Close button */
.contact-close {
  position: absolute; top: 16px; right: 16px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-muted); width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.3s; border-radius: 2px;
}
.contact-close:hover { border-color: var(--accent); color: #fff; background: rgba(178,34,34,0.1); }

/* Modal header */
.modal-header { margin-bottom: 28px; }
.modal-label {
  font-family: 'Univers Next Pro Condensed', 'Univers Next Pro', sans-serif;
  font-size: 12px; color: var(--accent); letter-spacing: 4px; text-transform: uppercase;
  display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
}
.modal-label-line { width: 32px; height: 2px; background: var(--accent); }
.modal-title {
  font-family: 'Univers Next Pro Condensed', 'Univers Next Pro', sans-serif;
  font-size: 32px; font-weight: 700; color: var(--text); text-transform: uppercase;
  line-height: 1.1; margin: 0 0 10px 0;
}
.modal-title span { color: var(--accent); }
.modal-stripe {
  width: 40px; height: 4px; background: var(--accent);
  transform: skewX(-20deg); margin-bottom: 14px;
}
.modal-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* Form */
.form-group { margin-bottom: 18px; flex: 1; }
.form-row { display: flex; gap: 14px; }
.form-group label {
  font-family: 'Univers Next Pro Condensed', 'Univers Next Pro', sans-serif;
  font-size: 11px; color: var(--text-muted); letter-spacing: 2px;
  text-transform: uppercase; display: block; margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 11px 14px; color: var(--text);
  font-family: 'Univers Next Pro', sans-serif; font-size: 14px;
  outline: none; transition: border-color 0.3s; border-radius: 2px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: #1a1a2a; color: #e8e8ec; padding: 8px; }
.form-group select option:hover, .form-group select option:checked { background: var(--accent); color: #fff; }
.form-group textarea { resize: vertical; min-height: 70px; }

/* Submit */
.form-submit {
  font-family: 'Univers Next Pro Condensed', 'Univers Next Pro', sans-serif;
  font-size: 14px; font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent-hot));
  color: #fff; border: none; padding: 14px 36px; cursor: pointer;
  letter-spacing: 2px; text-transform: uppercase; width: 100%;
  border-radius: 3px; transition: transform 0.3s, box-shadow 0.3s; margin-top: 6px;
}
.form-submit:hover { transform: translateY(-1px); box-shadow: 0 4px 20px var(--accent-glow); }
.form-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* Status */
.form-status { margin-top: 14px; font-size: 14px; text-align: center; min-height: 20px; }
.form-status.success { color: #4CAF50; }
.form-status.error { color: var(--accent); }

/* Modal scrollbar */
.contact-modal::-webkit-scrollbar { width: 5px; }
.contact-modal::-webkit-scrollbar-track { background: transparent; }
.contact-modal::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* Modal responsive */
@media (max-width: 600px) {
  .contact-modal { padding: 32px 22px; }
  .modal-title { font-size: 26px; }
  .form-row { flex-direction: column; gap: 0; }
}
