/* ===== TOKENS ===== */
:root {
  --bg: #0a0d12;
  --bg-elev: #12161d;
  --surface: #1a1f28;
  --surface-2: #232934;
  --border: #2a3038;
  --border-strong: #3a414c;
  --text: #eef1f6;
  --text-muted: #8a93a0;
  --text-dim: #5d6571;
  --accent: #4dd2ff;
  --accent-dim: #2a8fb8;
  --accent-glow: rgba(77, 210, 255, 0.18);
  --warn: #ff6b35;

  --font-display: 'Big Shoulders Display', 'Arial Narrow', sans-serif;
  --font-body: 'IBM Plex Sans', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;

  --container: 1240px;
  --radius: 4px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ===== GLOBAL BACKGROUND (Darko: prožima ceo website) ===== */
.site-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: url('hero-bg.jpg') center/cover no-repeat;
  filter: saturate(0.7) contrast(1.05);
}
.site-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 20%, rgba(77,210,255,0.06), transparent 60%),
    linear-gradient(180deg, rgba(10,13,18,0.82) 0%, rgba(10,13,18,0.94) 60%, var(--bg) 100%);
}
/* subtle grain for industrial feel */
.site-grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 13, 18, 0.55);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s var(--ease);
}
.nav.scrolled {
  background: rgba(10, 13, 18, 0.88);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}
.logo-mark { width: 44px; height: 44px; flex-shrink: 0; }
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-text .name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.5px;
}
.logo-text .sub {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 2.5px;
  margin-top: 4px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-links a, .nav-links button.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.2s var(--ease);
  position: relative;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}
.nav-links a:hover, .nav-links button.nav-link:hover { color: var(--text); }
.nav-links a.active { color: var(--accent); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown-toggle::after {
  content: '';
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 4px;
  transition: transform 0.2s var(--ease);
}
.has-dropdown.open .dropdown-toggle::after { transform: rotate(-135deg) translateY(2px); }
.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 200px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.has-dropdown.open .dropdown,
.has-dropdown:hover .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: block;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.4px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.15s var(--ease);
}
.dropdown a:hover {
  color: var(--accent);
  background: rgba(77,210,255,0.06);
  padding-left: 22px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin-left: 8px;
}
.lang-switch button {
  padding: 7px 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 1px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.15s var(--ease);
}
.lang-switch button.active {
  background: var(--accent);
  color: var(--bg);
}
.lang-switch button:not(.active):hover { color: var(--text); }

/* mobile menu */
.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.menu-toggle span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--text);
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0 80px;
}
.hero-content {
  max-width: 880px;
}
.hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-meta::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--accent);
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(48px, 9vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--text);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero h1 .accent {
  color: var(--accent);
  position: relative;
}
.hero-tagline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 2.6vw, 32px);
  line-height: 1.2;
  color: var(--text);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 36px;
  max-width: 720px;
}
.hero-tagline .light { color: var(--text-muted); font-weight: 600; }

/* CTA buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--bg);
  box-shadow: 0 0 0 0 var(--accent-glow);
}
.btn-primary:hover {
  background: #6ad9ff;
  transform: translateY(-1px);
  box-shadow: 0 0 0 6px var(--accent-glow);
}
.btn-ghost {
  border-color: var(--border-strong);
  color: var(--text);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn .arrow {
  width: 16px; height: 1.5px;
  background: currentColor;
  position: relative;
  transition: transform 0.2s var(--ease);
}
.btn .arrow::after {
  content: '';
  position: absolute;
  right: 0; top: -4px;
  width: 9px; height: 9px;
  border-right: 1.5px solid currentColor;
  border-top: 1.5px solid currentColor;
  transform: rotate(45deg);
}
.btn:hover .arrow { transform: translateX(4px); }

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* hero spec strip */
.hero-specs {
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
}
.spec {
  font-family: var(--font-mono);
}
.spec-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  color: var(--accent);
  line-height: 1;
}
.spec-label {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 8px;
}

/* ===== SECTIONS ===== */
.section {
  padding: 120px 0;
  position: relative;
}
.section-head {
  display: flex;
  flex-direction: column;
  margin-bottom: 64px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--accent);
}
.section h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--text);
}

/* ===== O NAMA ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-text p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 20px;
}
.about-text p:last-child { margin-bottom: 0; color: var(--text-muted); }
.about-image-wrap {
  position: sticky;
  top: 120px;
}
.about-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 1px solid var(--border);
}
.about-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.about-image:hover img { transform: scale(1.04); }
.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(77,210,255,0.3);
  pointer-events: none;
  transform: translate(12px, 12px);
}

/* highlights */
.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--border);
  margin-top: 48px;
  border: 1px solid var(--border);
}
.highlight {
  background: var(--bg-elev);
  padding: 28px 24px;
}
.highlight .num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: block;
}
.highlight h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.highlight p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ===== USLUGE ===== */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.service {
  background: var(--bg-elev);
  padding: 40px 32px 36px;
  position: relative;
  transition: background 0.25s var(--ease);
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}
.service:hover { background: var(--surface); }
.service-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  margin: -40px -32px 32px;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.service-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
  filter: saturate(0.85);
}
.service:hover .service-image img { transform: scale(1.06); filter: saturate(1); }
.service-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,13,18,0.6) 100%);
}
.service-num {
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 2px;
  z-index: 2;
}
.service h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.service-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 24px;
  flex: 1;
}
.service-specs {
  list-style: none;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: grid;
  gap: 10px;
}
.service-specs li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
}
.service-specs .label { color: var(--text-dim); letter-spacing: 1px; text-transform: uppercase; }
.service-specs .value { color: var(--text); text-align: right; }

/* ===== SERVICE PAGE (zasebne stranice glodanje/struganje/zavarivanje) ===== */
.service-page {
  padding-top: 160px;
}
.service-page-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--text);
  margin: 20px 0 28px;
}
.service-page-desc {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
  max-width: 800px;
  margin-bottom: 48px;
}
.service-page-media {
  border: 1px solid var(--border);
  margin-bottom: 48px;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-elev);
}
.service-page-media video,
.service-page-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== GALERIJA ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--bg-elev);
  border: 1px solid transparent;
  transition: border-color 0.2s var(--ease);
}
.gallery-item:hover { border-color: var(--accent); }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,13,18,0.7));
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item .zoom {
  position: absolute;
  bottom: 12px; right: 12px;
  width: 36px; height: 36px;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.25s var(--ease);
  z-index: 2;
}
.gallery-item:hover .zoom { opacity: 1; transform: translateY(0); }
.gallery-item .zoom::before, .gallery-item .zoom::after {
  content: '';
  position: absolute;
  background: var(--bg);
}
.gallery-item .zoom::before { width: 12px; height: 1.5px; }
.gallery-item .zoom::after { width: 1.5px; height: 12px; }

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 7, 10, 0.95);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border: 1px solid var(--border);
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  width: 48px; height: 48px;
  border: 1px solid var(--border-strong);
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.lightbox-close { top: 24px; right: 24px; }
.lightbox-close::before, .lightbox-close::after {
  content: ''; position: absolute;
  width: 18px; height: 1.5px;
  background: currentColor;
}
.lightbox-close::before { transform: rotate(45deg); }
.lightbox-close::after { transform: rotate(-45deg); }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-prev::before, .lightbox-next::before {
  content: '';
  width: 12px; height: 12px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
}
.lightbox-prev::before { transform: rotate(-135deg) translate(-3px,3px); }
.lightbox-next::before { transform: rotate(45deg); }

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--surface) 0%, var(--bg-elev) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('services/zavarivanje.jpg') center/cover;
  opacity: 0.18;
  filter: saturate(0.6);
}
.cta-banner::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.cta-inner h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--text);
  max-width: 720px;
}
.cta-inner h3 .accent { color: var(--accent); }

/* ===== KONTAKT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.info-block {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.info-block:last-child { border-bottom: none; padding-bottom: 0; }
.info-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.info-icon svg { width: 22px; height: 22px; }
.info-content h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.info-content p, .info-content a {
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
  display: block;
}
.info-content a:hover { color: var(--accent); }
.info-content .small {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
}

/* form */
.form-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  padding: 40px;
}
.form-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.form-card .form-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.field label .req { color: var(--accent); }
.field input, .field textarea {
  width: 100%;
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.field input:focus, .field textarea:focus {
  border-color: var(--accent);
  background: rgba(77,210,255,0.04);
}
.field textarea { resize: vertical; min-height: 110px; font-family: var(--font-body); }
.form-card button[type="submit"] {
  margin-top: 8px;
  width: 100%;
  justify-content: center;
}
.form-status {
  margin-top: 16px;
  font-size: 13px;
  text-align: center;
  min-height: 18px;
  font-family: var(--font-mono);
}
.form-status.success { color: var(--accent); }
.form-status.error { color: var(--warn); }

/* map */
.map-wrap {
  margin-top: 72px;
  border: 1px solid var(--border);
  overflow: hidden;
  height: 400px;
  position: relative;
}
.map-wrap iframe {
  width: 100%; height: 100%;
  border: none;
  filter: invert(0.92) hue-rotate(180deg) saturate(0.6) contrast(0.95);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer p, .footer a, .footer li {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  list-style: none;
}
.footer a { transition: color 0.15s var(--ease); }
.footer a:hover { color: var(--accent); }
.footer-brand p { margin-top: 16px; max-width: 280px; }
.socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.socials a {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s var(--ease);
}
.socials a:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.socials svg { width: 18px; height: 18px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image-wrap { position: static; }
  .about-image { aspect-ratio: 16/10; }
  .services { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--bg-elev);
    border-top: 1px solid var(--border);
    padding: 12px;
    gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a, .nav-links button.nav-link {
    width: 100%;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links li:last-child a { border-bottom: none; }
  .has-dropdown .dropdown {
    position: static;
    transform: none;
    min-width: 0;
    box-shadow: none;
    background: transparent;
    border: none;
    margin-left: 16px;
    opacity: 1;
    pointer-events: auto;
    display: none;
    padding: 0 0 8px;
  }
  .has-dropdown.open .dropdown { display: block; transform: none; }
  .has-dropdown .dropdown a {
    display: block;
    color: var(--text);
    font-size: 14px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
  }
  .has-dropdown .dropdown a:last-child { border-bottom: none; }
  .lang-switch { margin: 8px 16px; }
  .menu-toggle { display: flex; }

  .section { padding: 80px 0; }
  .hero { padding: 100px 0 60px; }
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-card { padding: 28px 24px; }
}

/* reveal animation */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* honeypot */
.hp { position: absolute; left: -9999px; top: -9999px; visibility: hidden; }
