/* ── Reset & Base ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #2C2C2A;
  --cream: #faf3e0;
  --accent: #d4a574;
  --accent-hover: #c49464;
  --muted: #a9a49b;
  --dim: #8a857a;
  --faint: #6a665f;
  --ghost: #5a5751;
  --border: #4a4a47;
  --card: #363633;
  --deep: #3a3a38;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ── Header ── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(44, 44, 42, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header-inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 4rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.header-logo {
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 300;
}

.header-nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.header-nav a {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.header-nav a:hover,
.header-nav a.active { color: var(--cream); }

.header-cta {
  justify-self: end;
  margin-right: 5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.25rem;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--accent);
  border: 1px solid rgba(212, 165, 116, 0.4);
  border-radius: 9999px;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
}

.header-cta:hover {
  background: rgba(212, 165, 116, 0.1);
  border-color: var(--accent);
}

.header-cta svg { width: 14px; height: 14px; }

/* ── Language Toggle ── */
.lang-toggle {
  position: fixed;
  top: 1rem;
  right: 1.5rem;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(44, 44, 42, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 9999px;
  padding: 0.2rem;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

.lang-btn {
  padding: 0.25rem 0.65rem;
  border: none;
  background: transparent;
  color: var(--ghost);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  cursor: pointer;
  border-radius: 9999px;
  transition: all 0.2s;
}

.lang-btn:hover { color: var(--muted); }

.lang-btn.active {
  background: rgba(212, 165, 116, 0.15);
  color: var(--accent);
  font-weight: 500;
}

/* ── Footer ── */
.footer {
  padding: 4rem 1.5rem;
  border-top: 1px solid var(--deep);
  text-align: center;
}

.footer-brand {
  color: var(--faint);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-links a {
  font-size: 0.75rem;
  color: var(--ghost);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--muted); }

.footer-credit {
  color: var(--border);
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
}

.footer-credit svg { width: 12px; height: 12px; color: rgba(212, 165, 116, 0.6); }

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.footer-social a {
  color: var(--ghost);
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
}

.footer-social a:hover { color: var(--muted); }

.footer-social svg { width: 18px; height: 18px; max-width: 18px; max-height: 18px; flex-shrink: 0; }

.footer-credit a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-credit a:hover { color: var(--muted); }

.footer-credit a svg.icon-linkedin {
  width: 12px;
  height: 12px;
  vertical-align: -1px;
  margin-left: 0.25rem;
}

.footer-copy {
  color: var(--deep);
  font-size: 10px;
  margin-top: 0.5rem;
}

/* ── Responsive ── */
@media (min-width: 768px) {
  .header-nav { display: flex; }
}
