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

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --accent: #8b5cf6;
  --accent-light: #a78bfa;
  --text: #e5e5e5;
  --text-muted: rgba(255,255,255,0.55);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Raleway', sans-serif;
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
}

/* ── Nav ─────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  transition: background 0.3s, padding 0.3s;
}

nav.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  padding: 0.75rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img { height: 40px; width: 40px; object-fit: contain; }

nav ul { list-style: none; display: flex; gap: 2rem; }
nav ul a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}
nav ul a:hover, nav ul a.active { color: var(--white); }

/* ── Hero ────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  text-align: center;
  padding: 6rem 2rem 4rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero-logo {
  width: 110px;
  height: 110px;
  object-fit: contain;
  margin-bottom: 2rem;
  filter: drop-shadow(0 0 30px rgba(139,92,246,0.5));
}

.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 300;
  line-height: 1.7;
  color: var(--white);
  letter-spacing: 0.02em;
}

/* ── Services ────────────────────────────────────── */
.services { display: flex; flex-direction: column; }

.service {
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.service::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  transition: background 0.4s;
}

.service:hover::before {
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 100%);
}

.service-overlay {
  position: relative;
  z-index: 1;
  padding: 3rem 3rem 3.5rem;
  max-width: 700px;
}

.service-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 0.75rem;
}

.service h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.service p {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
}

/* ── Footer ──────────────────────────────────────── */
footer {
  text-align: center;
  padding: 3rem 2rem;
  background: #060606;
  border-top: 1px solid rgba(255,255,255,0.06);
}

footer p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

footer a {
  color: var(--accent-light);
  text-decoration: none;
  transition: color 0.2s;
}
footer a:hover { color: var(--white); }
footer .copy { font-size: 0.75rem; color: rgba(255,255,255,0.2); margin-top: 1rem; }

/* ── Contact page ────────────────────────────────── */
.contact-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  padding: 6rem 2rem 4rem;
}

.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
}

.contact-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  text-align: center;
}

.contact-inner h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.locations {
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.email-link {
  color: var(--accent-light);
  text-decoration: none;
  font-size: 1rem;
  display: inline-block;
  margin-bottom: 2.5rem;
  transition: color 0.2s;
}
.email-link:hover { color: var(--white); }

.contact-form {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.field label {
  display: block;
  font-size: 0.75rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.field input, .field textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.field input:focus, .field textarea:focus {
  border-color: var(--accent);
  background: rgba(139,92,246,0.08);
}

.field textarea { resize: vertical; }

button[type="submit"] {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  align-self: flex-start;
}

button[type="submit"]:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 600px) {
  .service-overlay { padding: 2rem 1.5rem 2.5rem; }
  .nav-inner { gap: 1rem; }
  nav ul { gap: 1rem; }
}
