/* Base */
:root {
  --bg: #0a0e1a;
  --bg-card: #111827;
  --fg: #f0ece6;
  --fg-muted: #8a8a9a;
  --accent: #FF5C35;
  --accent-warm: #FFAB40;
  --border: rgba(255,255,255,0.07);
}

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

html { scroll-behavior: smooth; }

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

h1, h2, h3 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.03em;
  line-height: 1.1;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

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

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.03em;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,14,26,0.95) 40%,
    rgba(10,14,26,0.6) 70%,
    rgba(10,14,26,0.2) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

.hero-headline {
  font-size: clamp(72px, 10vw, 140px);
  color: var(--fg);
  margin-bottom: 24px;
}

.hero-accent {
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.5;
}

/* Sections */
.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-heading {
  font-size: clamp(48px, 6vw, 80px);
  color: var(--fg);
  margin-bottom: 48px;
}

/* Manifesto */
.manifesto {
  background: #0f1420;
  padding: 120px 40px;
}

.manifesto-inner {
  max-width: 760px;
  margin: 0 auto;
}

.manifesto-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 20px;
}

.manifesto-statement {
  font-size: clamp(32px, 4vw, 52px);
  color: var(--fg);
  margin-bottom: 36px;
  line-height: 1.15;
}

.manifesto-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

/* Services */
.services {
  padding: 120px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.services-header {
  margin-bottom: 64px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.service-card {
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-card);
}

.service-img-wrap {
  overflow: hidden;
  height: 200px;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.service-card:hover .service-img {
  transform: scale(1.04);
}

.service-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.05em;
  color: var(--fg);
  padding: 24px 24px 8px;
}

.service-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
  padding: 0 24px 24px;
}

.service-card-last {
  border: 1px solid var(--accent);
}

.service-accent-block {
  height: 100%;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: linear-gradient(135deg, rgba(255,92,53,0.08) 0%, rgba(255,171,64,0.05) 100%);
}

.accent-quote {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--accent);
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.04em;
}

/* Outcomes */
.outcomes {
  background: #0f1420;
  padding: 120px 40px;
}

.outcomes-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
}

.outcome {
  padding: 48px 40px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.outcome:nth-child(even) { border-right: none; }
.outcome:nth-child(3),
.outcome:nth-child(4) { border-bottom: none; }

.outcome-metric {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.outcome-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Closing */
.closing {
  padding: 120px 40px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.closing-headline {
  font-size: clamp(32px, 4vw, 56px);
  color: var(--fg);
  margin-bottom: 28px;
  line-height: 1.15;
}

.closing-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px;
}

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

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.footer-copy {
  font-size: 13px;
  color: var(--fg-muted);
}

/* Responsive */
@media (max-width: 768px) {
  .navbar { padding: 16px 20px; }
  .hero-content { padding: 0 20px; }
  .hero { padding-bottom: 60px; }
  .manifesto, .services, .outcomes, .closing { padding: 80px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .outcome { border-right: none; border-bottom: 1px solid var(--border); }
  .outcome:nth-child(3) { border-bottom: 1px solid var(--border); }
  .outcome:last-child { border-bottom: none; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
  .service-img-wrap { height: 160px; }
}

.nav-cta:hover {
  background: var(--accent) !important;
  color: white !important;
}