:root {
  --bg: #0f1114;
  --bg-2: #14181d;
  --panel: #191e25;
  --panel-2: #202733;
  --panel-3: #262f3c;
  --text: #f5f7fb;
  --muted: #bcc4cf;
  --line: #2b3441;
  --accent: #d47a2a;
  --accent-2: #f09a4a;
  --accent-soft: rgba(212, 122, 42, 0.12);
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(212,122,42,.08), transparent 24%),
    linear-gradient(180deg, var(--bg) 0%, #0c0e11 100%);
  color: var(--text);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15,17,20,.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand img { height: 92px; width: auto; }
.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: flex-end;
}
.nav a {
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}
.nav a:hover, .nav a.active { color: var(--text); }
.btn {
  display: inline-block;
  padding: 13px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  font-weight: 700;
  border: 1px solid transparent;
  box-shadow: 0 10px 25px rgba(212,122,42,.18);
}
.btn:hover { filter: brightness(1.06); }
.btn-outline {
  background: transparent;
  border-color: var(--accent);
  color: var(--text);
  box-shadow: none;
}
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}
.hero {
  position: relative;
  min-height: 74vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-home {
  background:
    linear-gradient(rgba(8,10,12,.76), rgba(8,10,12,.84)),
    radial-gradient(circle at top right, rgba(212,122,42,.35), transparent 26%),
    radial-gradient(circle at 20% 80%, rgba(240,154,74,.12), transparent 30%),
    linear-gradient(135deg, #222933 0%, #11151a 58%, #0d1014 100%);
}
.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: .16;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding: 106px 20px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  color: var(--accent-2);
  font-weight: 700;
  margin-bottom: 16px;
}
.hero h1, .page-hero h1 {
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.02;
  margin: 0 0 18px;
}
.hero p, .page-hero p {
  color: var(--muted);
  font-size: 19px;
  margin: 0 0 30px;
  max-width: 860px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.page-hero {
  position: relative;
  padding: 92px 0 52px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #171d24 0%, #11151a 100%);
}
.warm-hero {
  background:
    linear-gradient(180deg, rgba(212,122,42,.12), rgba(212,122,42,.02)),
    linear-gradient(180deg, #171d24 0%, #11151a 100%);
}
.section { padding: 82px 0; }
.section.alt {
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  margin: 0 0 14px;
}
.section-intro {
  max-width: 840px;
  color: var(--muted);
  margin-bottom: 34px;
}
.no-margin { margin: 0; }
.section-heading { margin-bottom: 30px; }
.section-tag {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.grid-2, .grid-3, .grid-4 {
  display: grid;
  gap: 22px;
}
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.align-start { align-items: start; }
.split-lead {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 30px;
  align-items: center;
}
.card {
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
}
.card h3 { margin: 0 0 10px; font-size: 22px; }
.card p { margin: 0; color: var(--muted); }
.feature-card { min-height: 100%; }
.accent-card {
  background: linear-gradient(180deg, rgba(212,122,42,.18), rgba(32,39,51,1) 45%);
  border-color: rgba(212,122,42,.28);
}
.accent-card-soft {
  background: linear-gradient(180deg, rgba(240,154,74,.11), rgba(32,39,51,1) 50%);
  border-color: rgba(240,154,74,.2);
}
.checklist-card {
  background: linear-gradient(180deg, rgba(212,122,42,.1), rgba(32,39,51,1) 35%);
}
.list-clean {
  list-style: none;
  padding: 0;
  margin: 0;
}
.list-clean li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}
.list-clean li:last-child { border-bottom: 0; }
.ticks li::before {
  content: "•";
  color: var(--accent-2);
  display: inline-block;
  width: 16px;
  margin-left: -2px;
}
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
}
.stat {
  background: linear-gradient(180deg, rgba(212,122,42,.08), var(--panel));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
}
.stat strong { display: block; font-size: 30px; margin-bottom: 8px; }
.project-placeholder {
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #262f39, #171b20);
  display: flex;
  align-items: end;
  padding: 18px;
}
.project-placeholder.warm {
  background: linear-gradient(135deg, rgba(212,122,42,.3), #1b2128 65%);
  border-color: rgba(212,122,42,.25);
}
.project-placeholder span {
  display: inline-block;
  background: rgba(15,17,20,.82);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
}
.cta-band {
  background: linear-gradient(135deg, rgba(212,122,42,.2), rgba(240,154,74,.06));
  border: 1px solid rgba(212,122,42,.28);
  border-radius: 28px;
  padding: 38px;
}
.cta-band p { color: var(--muted); margin: 10px 0 0; }
.copy p { color: var(--muted); }
.case-study {
  background: linear-gradient(180deg, rgba(212,122,42,.08), var(--panel));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
}
.case-study h3 { margin-top: 0; }
.project-bullets { color: var(--muted); padding-left: 18px; margin: 14px 0 0; }
.project-bullets li { margin-bottom: 8px; }
.image-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
  margin-top: 20px;
}
.image-slot {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #262c34, #171b20);
  border: 1px dashed #56606d;
  border-radius: 18px;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
}
.contact-box {
  background: linear-gradient(180deg, rgba(212,122,42,.08), var(--panel-2));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
}
.contact-box h2 { font-size: 24px; margin-bottom: 14px; }
.contact-box p { color: var(--muted); margin: 0 0 10px; }
.site-footer {
  border-top: 1px solid var(--line);
  padding: 24px 0 40px;
  background: #0d1013;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
}
.small-note { color: var(--muted); font-size: 14px; }

@media (max-width: 1000px) {
  .grid-4, .grid-3, .grid-2, .stat-strip, .split-lead {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 760px) {
  .header-inner, .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .brand img { height: 76px; }
  .nav { gap: 12px; }
  .hero { min-height: auto; }
  .hero-inner { padding: 74px 20px; }
  .grid-4, .grid-3, .grid-2, .stat-strip, .image-grid, .split-lead {
    grid-template-columns: 1fr;
  }
  .cta-band, .card, .contact-box, .case-study { padding: 24px; }
}
