:root {
  --bg: #0d0d0d;
  --bg-alt: #141414;
  --surface: #1c1c1c;
  --surface-hover: #242424;
  --accent: #d97706;
  --accent-light: #f59e0b;
  --accent-dim: rgba(217, 119, 6, 0.15);
  --text: #f5e6c8;
  --text-dim: rgba(245, 230, 200, 0.5);
  --text-muted: rgba(245, 230, 200, 0.25);
  --border: rgba(245, 230, 200, 0.08);
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,13,13,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.nav-logo-sub {
  color: var(--accent);
  margin-left: 2px;
}
.nav-tagline {
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-dusk {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(217,119,6,0.08) 0%, transparent 70%),
    linear-gradient(160deg, #0d0d0d 0%, #1a1208 50%, #0d0d0d 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,230,200,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,230,200,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem 5rem;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  background: var(--accent-dim);
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(217,119,6,0.25);
  width: fit-content;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  max-width: 900px;
}
.headline-light {
  display: block;
  color: var(--text-dim);
  font-weight: 400;
}
.headline-bold {
  display: block;
  color: var(--text);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-dim);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.meta-sep { color: var(--accent); }
.hero-accent {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 40%;
  display: flex;
  align-items: center;
  z-index: 1;
  pointer-events: none;
}
.accent-bar {
  width: 100%;
  height: 70%;
  background: linear-gradient(180deg, rgba(217,119,6,0.12) 0%, transparent 100%);
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
}

/* ── STATS ── */
.stats {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-unit {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── SERVICES ── */
.services {
  padding: 6rem 0;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
.services-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--text);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.svc-card {
  background: var(--bg);
  padding: 2rem;
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.svc-card:hover { background: var(--surface); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-icon {
  color: var(--accent);
  margin-bottom: 1.25rem;
  width: 28px;
  height: 28px;
}
.svc-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.svc-desc {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ── PROCESS ── */
.process {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 6rem 0;
}
.process-header {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
}
.process-steps {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  padding: 0 1.5rem;
}
.step:first-child { padding-left: 0; }
.step:last-child { padding-right: 0; }
.step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(217,119,6,0.15);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.step-desc {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.6;
}
.step-connector {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--border), rgba(217,119,6,0.4), var(--border));
  flex-shrink: 0;
  margin-top: 2.5rem;
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 6rem 0;
  border-top: 1px solid var(--border);
}
.testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.testimonial-main {
  position: relative;
  padding: 2.5rem 3rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  margin-bottom: 2rem;
}
.quote-mark {
  width: 40px;
  height: 40px;
  background: var(--accent-dim);
  border: 1px solid rgba(217,119,6,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.quote-mark::after {
  content: '';
  width: 16px;
  height: 12px;
  background: var(--accent);
  clip-path: polygon(0 0, 100% 0, 100% 60%, 60% 100%, 0 80%);
}
.quote-text {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
  margin-bottom: 1.5rem;
}
.quote-author {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  font-style: normal;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.t-card {
  background: var(--bg);
  padding: 1.75rem;
}
.t-text {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.65;
  margin-bottom: 1rem;
  font-style: italic;
}
.t-author {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  font-style: normal;
}

/* ── CLOSING ── */
.closing {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 6rem 0;
}
.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.closing-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.closing-sub {
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.7;
}
.closing-meta {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.meta-row {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.meta-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.meta-val {
  font-size: 0.9rem;
  color: var(--text-dim);
}

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text);
  letter-spacing: -0.01em;
}
.footer-logo-sub { color: var(--accent); margin-left: 1px; }
.footer-tagline {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}
.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}
.footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-links a {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text-dim); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .stats-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
  .stat-divider { display: none; }
  .stat { align-items: center; text-align: center; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; gap: 2rem; }
  .step-connector { width: 40px; height: 1px; margin: 0; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .closing-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-meta { align-items: flex-start; }
  .hero-headline { font-size: clamp(3rem, 14vw, 5rem); }
  .hero-accent { display: none; }
  .section-title br { display: none; }
  .process-header .section-title br { display: none; }
}

@media (max-width: 480px) {
  .nav-inner { padding: 0 1rem; }
  .services, .stats-inner, .process-header,
  .testimonials-inner, .closing-inner, .footer-inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .hero-inner { padding: 3rem 1rem; }
  .stat-num { font-size: 2.2rem; }
  .svc-card { padding: 1.5rem; }
  .testimonial-main { padding: 1.75rem; }
}