/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0a0c0f;
  --bg-alt: #0f1318;
  --bg-panel: #111520;
  --fg: #d4cfc4;
  --fg-muted: #7a746a;
  --accent: #c8922a;
  --accent-dim: rgba(200, 146, 42, 0.15);
  --amber: #e8a838;
  --amber-dim: rgba(232, 168, 56, 0.08);
  --border: rgba(200, 146, 42, 0.18);
  --border-dim: rgba(200, 146, 42, 0.08);
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* NAV */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 12, 15, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-dim);
}

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

.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.12em;
  color: var(--fg);
}

.nav-logo-accent { color: var(--accent); margin-left: 1px; }

.nav-location {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 6px 12px;
  border: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav-link:hover { color: var(--fg); border-color: var(--border-dim); }
.nav-link-active { color: var(--accent); border-color: var(--border); }

@media (max-width: 700px) {
  .nav-links { display: none; }
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg);
  position: relative;
  padding-top: 56px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 85% 40%, rgba(200, 146, 42, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(200, 146, 42, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px 100px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--fg);
  text-transform: uppercase;
  margin-bottom: 28px;
}

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

.hero-sub {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--border);
  padding: 6px 14px;
  background: var(--amber-dim);
}

.hero-panel {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  padding: 40px;
  position: relative;
}

.hero-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--accent), transparent);
}

.hero-panel-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-stat {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  min-width: 60px;
}

.hero-stat-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.hero-divider {
  height: 1px;
  background: var(--border-dim);
}

/* STATS ROW */
.stats-row {
  background: var(--bg-alt);
  border-top: 1px solid var(--border-dim);
  border-bottom: 1px solid var(--border-dim);
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-item:first-child { padding-left: 0; }
.stat-item:not(:last-child) { border-right: 1px solid var(--border-dim); }

.stat-value {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.04em;
}

.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  font-weight: 500;
  line-height: 1.4;
}

/* SERVICES */
.services { padding: 100px 0; }

.services-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 56px;
  max-width: 540px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  background: var(--bg-alt);
  padding: 40px 36px;
  border: 1px solid var(--border-dim);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.2s;
}

.service-card:hover { border-color: var(--border); }

.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--amber-dim);
  border: 1px solid var(--border-dim);
}

.service-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
}

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

/* CREDENTIALS */
.credentials {
  background: var(--bg-alt);
  border-top: 1px solid var(--border-dim);
  padding: 100px 0;
}

.credentials-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.cred-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 760px;
}

.cred-item {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 24px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border-dim);
}

.cred-item:first-child { border-top: 1px solid var(--border-dim); }

.cred-marker {
  width: 12px;
  height: 12px;
  background: var(--accent);
  margin-top: 6px;
  flex-shrink: 0;
}

.cred-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

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

/* DIFFERENCE */
.difference {
  padding: 100px 0;
  border-top: 1px solid var(--border-dim);
}

.difference-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 80px;
  align-items: center;
}

.diff-body {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.diff-body:last-child { margin-bottom: 0; }

.diff-stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 32px;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  position: relative;
}

.diff-stat-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
}

.diff-number {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.diff-unit {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin: 4px 0;
}

.diff-label {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.5;
  max-width: 160px;
}

/* CLOSING */
.closing {
  background: var(--bg-alt);
  border-top: 1px solid var(--border-dim);
  padding: 100px 0;
}

.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 24px;
  max-width: 680px;
}

.closing-sub {
  font-size: 16px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 36px;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.15em;
}

.closing-detail {
  max-width: 600px;
}

.closing-detail p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.8;
}

/* FOOTER */
.site-footer {
  border-top: 1px solid var(--border-dim);
  padding: 48px 0;
}

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

.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.12em;
  color: var(--fg);
  display: block;
  margin-bottom: 8px;
}

.footer-logo-accent { color: var(--accent); }

.footer-tagline {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.6;
}

.footer-note {
  font-size: 13px;
  color: var(--fg-muted);
  font-style: italic;
  max-width: 340px;
  text-align: right;
  margin-bottom: 8px;
}

.footer-copy {
  font-size: 11px;
  color: rgba(122, 116, 106, 0.5);
  text-align: right;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 8px;
  justify-content: flex-end;
}

.footer-link {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover { color: var(--accent); }

@media (max-width: 700px) {
  .footer-links { justify-content: flex-start; }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-panel { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { padding-left: 0; border-top: 1px solid var(--border-dim); }
  .stat-item:nth-child(4) { border-top: 1px solid var(--border-dim); }
  .difference-inner { grid-template-columns: 1fr; }
  .diff-stat-block { display: none; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-note, .footer-copy { text-align: left; }
}

@media (max-width: 600px) {
  .hero-inner { padding: 60px 24px 80px; }
  .services-inner, .credentials-inner, .closing-inner { padding: 0 24px; }
  .services, .credentials, .difference, .closing { padding: 72px 0; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(3) { padding-left: 32px; }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--border-dim); }
  .stat-item:nth-child(even) { border-right: none; }
  .cred-item { grid-template-columns: 16px 1fr; gap: 16px; }
}