@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;800&family=Inter:wght@400;500;600;700&display=swap');

/* ── Custom properties ── */
:root {
  --yellow: #FFD200;
  --bg-darkest: #080808;
  --bg-darker: #0a0a0a;
  --bg-dark: #0e0e0e;
  --bg-section: #111111;
  --bg-alt: #121212;
  --bg-card: #1a1a1a;
  --bg-card-alt: #191919;
  --border: #242424;
  --border-subtle: #1c1c1c;
  --text-primary: #f0f0f0;
  --text-secondary: #888888;
  --text-muted: #666666;
  --text-ghost: #444444;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg-darkest);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3 { font-family: 'Barlow Condensed', 'Inter', sans-serif; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Nav ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-darker);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 48px;
  height: 76px;
  transition: box-shadow 0.2s;
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.6); }
.nav-logo { height: 52px; width: auto; display: block; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--yellow); }
.nav-lang {
  border: 1px solid #2e2e2e;
  border-radius: 20px;
  padding: 4px 12px;
  color: var(--text-ghost);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: border-color 0.15s, color 0.15s;
}
.nav-lang:hover { border-color: var(--yellow); color: var(--yellow); }

/* ── Section label ── */
.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 10px;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  padding: 80px 48px 68px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  left: 0;
  right: 0;
  top: -15%;
  height: 130%;
  background-image: url('/assets/475052261_1134930384999654_6904844393456462243_n.jpg');
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.32);
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.5) 50%,
    rgba(0,0,0,0.1) 100%
  );
}
.hero-content { position: relative; z-index: 1; max-width: 620px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.hero-eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-eyebrow-text {
  color: var(--yellow);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.hero h1 {
  color: #ffffff;
  font-size: 58px;
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero h1 em { color: var(--yellow); font-style: normal; }
.hero-sub {
  color: #c0c0c0;
  font-size: 16px;
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 38px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  background: var(--yellow);
  color: #000;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 13px;
  padding: 14px 28px;
  border-radius: 4px;
  letter-spacing: 0.3px;
  transition: opacity 0.15s;
}
.btn-primary:hover { opacity: 0.88; }
.btn-ghost {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.2);
  color: #ddd;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 4px;
  transition: border-color 0.15s, color 0.15s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.45); color: #fff; }

/* ── Services ── */
.services { background: var(--bg-alt); padding: 80px 48px; }
.services-header { margin-bottom: 48px; }
.services h2 {
  color: #fff;
  font-size: 44px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.services-sub { color: var(--text-secondary); font-size: 14px; line-height: 1.6; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s;
}
.service-card:hover { border-color: var(--yellow); }
.service-photo {
  position: relative;
  height: 168px;
  overflow: hidden;
}
.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.82);
  transition: transform 0.4s ease, filter 0.2s;
}
.service-card:hover .service-photo img {
  transform: scale(1.06);
  filter: brightness(0.9);
}
.service-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.55) 100%);
}
.service-body { padding: 18px 18px 22px; flex: 1; }
.service-body h3 {
  color: var(--text-primary);
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 7px;
}
.service-body p { color: var(--text-secondary); font-size: 13px; line-height: 1.6; }

/* ── USPs ── */
.usps { background: var(--bg-dark); padding: 80px 48px; border-top: 1px solid var(--border-subtle); }
.usps h2 {
  color: #fff;
  font-size: 44px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 48px;
}
.usps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.usp { border-left: 3px solid var(--yellow); padding-left: 20px; }
.usp h3 {
  color: var(--text-primary);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.usp p { color: var(--text-secondary); font-size: 14px; line-height: 1.75; }

/* ── Testimonials ── */
.testimonials { background: var(--bg-section); padding: 80px 48px; }
.testimonials h2 {
  color: #fff;
  font-size: 44px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 48px;
}
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.testimonial {
  background: var(--bg-card-alt);
  border: 1px solid #222;
  border-radius: 8px;
  padding: 28px 24px;
  position: relative;
}
.testimonial::before {
  content: '\201C';
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 60px;
  color: var(--yellow);
  opacity: 0.12;
  line-height: 1;
  font-family: Georgia, serif;
}
.testimonial p {
  color: #bbbbbb;
  font-size: 13.5px;
  line-height: 1.72;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-author { color: var(--yellow); font-size: 12px; font-weight: 700; letter-spacing: 0.4px; }
.testimonial-location { color: var(--text-muted); font-size: 11px; margin-top: 3px; }

/* ── Contact strip ── */
.contact-strip {
  background: var(--yellow);
  padding: 72px 48px;
  text-align: center;
}
.contact-strip h2 {
  color: #000;
  font-size: 48px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.contact-strip p {
  color: rgba(0,0,0,0.62);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 32px;
}
.contact-strip .btn-dark {
  display: inline-block;
  background: #000;
  color: var(--yellow);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 13px;
  padding: 15px 34px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  transition: opacity 0.15s;
}
.contact-strip .btn-dark:hover { opacity: 0.85; }
.contact-email {
  display: block;
  color: rgba(0,0,0,0.48);
  font-size: 13px;
  margin-top: 16px;
  font-weight: 500;
}

/* ── Footer ── */
footer {
  background: var(--bg-darkest);
  padding: 28px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #141414;
  gap: 16px;
}
.footer-logo { height: 28px; width: auto; opacity: 0.45; }
.footer-copy { color: var(--text-ghost); font-size: 11px; }
.footer-lang {
  color: #555;
  font-size: 11px;
  border-bottom: 1px solid #333;
  padding-bottom: 1px;
  transition: color 0.15s;
}
.footer-lang:hover { color: var(--yellow); }

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .nav { padding: 0 20px; height: 64px; }
  .nav-links a:not(.nav-lang) { display: none; }
  .hero { padding: 56px 20px 48px; min-height: 420px; }
  .hero h1 { font-size: 38px; }
  .hero-sub { font-size: 14px; }
  .services, .usps, .testimonials, .contact-strip { padding: 56px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .usps-grid { grid-template-columns: 1fr; gap: 24px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .services h2, .usps h2, .testimonials h2, .contact-strip h2 { font-size: 32px; }
  .contact-strip h2 { font-size: 36px; }
  footer { flex-direction: column; text-align: center; padding: 24px 20px; gap: 12px; }
}
