:root {
  --bg: #141414;
  --bg-2: #1A1A1A;
  --bg-3: #222222;
  --fg: #F5F5F0;
  --fg-muted: #9CA3AF;
  --accent: #F59E0B;
  --accent-dim: rgba(245, 158, 11, 0.15);
  --steel: #6B7280;
  --border: #2A2A2A;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(20, 20, 20, 0.9);
  backdrop-filter: blur(12px);
  z-index: 100;
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-name { font-family: 'Bebas Neue', sans-serif; font-size: 18px; letter-spacing: 3px; color: var(--fg); }
.nav-phone { color: var(--accent); text-decoration: none; font-size: 14px; font-weight: 500; font-family: 'DM Sans', sans-serif; }
.nav-phone:hover { text-decoration: underline; }

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  border-bottom: 1px solid var(--border);
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 80px;
  background: var(--bg);
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 6vw, 88px);
  line-height: 1;
  letter-spacing: 2px;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-lede {
  font-size: 18px;
  color: var(--fg-muted);
  margin-bottom: 48px;
  line-height: 1.7;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 36px; color: var(--accent); letter-spacing: 1px; }
.stat-label { font-size: 12px; color: var(--steel); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }
.hero-visual {
  position: relative;
  overflow: hidden;
}
.hero-image-frame {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg) 0%, transparent 30%);
}

/* SECTION TAGS */
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

/* SERVICES */
.services {
  padding: 100px 80px;
  background: var(--bg-2);
}
.services-header { max-width: 600px; margin-bottom: 64px; }
.services-header h2 { font-family: 'Bebas Neue', sans-serif; font-size: 52px; letter-spacing: 2px; color: var(--fg); margin-bottom: 20px; line-height: 1.1; }
.services-sub { color: var(--fg-muted); font-size: 17px; line-height: 1.7; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.service-card {
  background: var(--bg-3);
  padding: 40px 36px;
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.service-card:hover { border-color: var(--accent); }
.service-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 24px; letter-spacing: 1px; color: var(--fg); margin-bottom: 12px; }
.service-card p { color: var(--fg-muted); font-size: 15px; line-height: 1.7; }
.service-icon { margin-bottom: 24px; }

/* PHILOSOPHY */
.philosophy { background: var(--bg); border-top: 1px solid var(--border); }
.philosophy-inner { display: grid; grid-template-columns: 1fr 1fr; }
.philosophy-text { padding: 100px 64px; display: flex; flex-direction: column; justify-content: center; }
.philosophy-text h2 { font-family: 'Bebas Neue', sans-serif; font-size: 48px; letter-spacing: 2px; color: var(--fg); margin-bottom: 28px; line-height: 1.15; }
.philosophy-text p { color: var(--fg-muted); font-size: 17px; line-height: 1.8; margin-bottom: 20px; }
.philosophy-image { overflow: hidden; }
.philosophy-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* GEO */
.geo { padding: 100px 80px; background: var(--bg-2); border-top: 1px solid var(--border); }
.geo-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.geo-map { border: 1px solid var(--border); padding: 32px; background: var(--bg); }
.map-visual { width: 100%; }
.nd-map { width: 100%; height: auto; border-radius: 4px; }
.geo-text h2 { font-family: 'Bebas Neue', sans-serif; font-size: 44px; letter-spacing: 2px; color: var(--fg); margin-bottom: 20px; line-height: 1.15; }
.geo-text > p { color: var(--fg-muted); font-size: 16px; line-height: 1.8; margin-bottom: 36px; }
.geo-facts { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.geo-fact { display: flex; align-items: baseline; gap: 16px; }
.geo-num { font-family: 'Bebas Neue', sans-serif; font-size: 32px; color: var(--accent); letter-spacing: 1px; min-width: 80px; }
.geo-desc { font-size: 14px; color: var(--fg-muted); }
.geo-address { font-size: 13px; color: var(--steel); line-height: 1.8; }
.geo-address a { color: var(--accent); text-decoration: none; }
.geo-address a:hover { text-decoration: underline; }

/* CAREERS */
.careers { background: var(--bg); border-top: 1px solid var(--border); }
.careers-inner { display: grid; grid-template-columns: 1fr auto; gap: 80px; align-items: center; padding: 100px 80px; }
.careers-content h2 { font-family: 'Bebas Neue', sans-serif; font-size: 48px; letter-spacing: 2px; color: var(--fg); margin-bottom: 20px; line-height: 1.15; }
.careers-content > p { color: var(--fg-muted); font-size: 16px; line-height: 1.8; margin-bottom: 36px; max-width: 500px; }
.careers-values { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 36px; }
.value { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--fg-muted); }
.value-dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }
.careers-cta { display: inline-block; color: var(--accent); text-decoration: none; font-weight: 600; font-size: 15px; border: 1px solid var(--accent); padding: 12px 24px; transition: background 0.2s, color 0.2s; }
.careers-cta:hover { background: var(--accent); color: var(--bg); }
.careers-visual { flex-shrink: 0; }
.careers-badge { display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 32px; border: 1px solid var(--border); }
.careers-badge span { font-size: 13px; color: var(--steel); text-transform: uppercase; letter-spacing: 2px; }

/* CLOSING */
.closing { background: var(--accent); }
.closing-inner { padding: 100px 80px; text-align: center; }
.closing-inner h2 { font-family: 'Bebas Neue', sans-serif; font-size: 56px; letter-spacing: 2px; color: #141414; margin-bottom: 16px; line-height: 1.15; }
.closing-inner p { font-size: 20px; color: rgba(20,20,20,0.7); margin-bottom: 40px; }
.closing-contact { display: flex; justify-content: center; align-items: center; gap: 20px; }
.closing-phone, .closing-email { color: #141414; text-decoration: none; font-weight: 600; font-size: 18px; }
.closing-sep { color: rgba(20,20,20,0.4); }
.closing-phone:hover, .closing-email:hover { text-decoration: underline; }

/* FOOTER */
.footer { background: var(--bg); border-top: 1px solid var(--border); padding: 40px 80px; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; }
.footer-brand { display: flex; align-items: center; gap: 10px; font-family: 'Bebas Neue', sans-serif; font-size: 16px; letter-spacing: 3px; color: var(--fg); }
.footer-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; font-size: 12px; color: var(--steel); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-visual { height: 50vh; }
  .hero-image-overlay { background: linear-gradient(to top, var(--bg) 0%, transparent 50%); }
  .hero-content { padding: 60px 32px; }
  .services { padding: 60px 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .philosophy-inner { grid-template-columns: 1fr; }
  .philosophy-image { height: 40vh; }
  .geo-inner { grid-template-columns: 1fr; }
  .careers-inner { grid-template-columns: 1fr; padding: 60px 32px; }
  .careers-values { grid-template-columns: 1fr; }
  .closing-inner { padding: 60px 32px; }
  .footer-inner { flex-direction: column; gap: 16px; }
  .footer-meta { align-items: center; }
  .navbar { padding: 16px 24px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
}

@media (max-width: 600px) {
  .hero-headline { font-size: 48px; }
  .services-header h2, .philosophy-text h2, .geo-text h2, .careers-content h2, .closing-inner h2 { font-size: 36px; }
}