:root {
  --black: #080808;
  --dark: #111111;
  --charcoal: #1d1d1d;
  --white: #ffffff;
  --soft: #f4f1ec;
  --muted: #b7b1a7;
  --gold: #b9975b;
  --gold-dark: #8d6f3c;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--white);
  background: var(--black);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  height: 84px;
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8, 8, 8, .76);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.logo { font-size: 1.55rem; font-weight: 800; letter-spacing: -1px; }
.nav { display: flex; gap: 34px; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.nav a { opacity: .86; }
.nav a:hover { color: var(--gold); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: .06em;
  font-size: .76rem;
  transition: .25s ease;
}
.btn-primary { background: linear-gradient(135deg, var(--gold), #d5b777); color: #111; }
.btn-primary:hover { transform: translateY(-2px); }
.btn-outline { border: 1px solid var(--gold); color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: #111; }
.btn-dark { border: 1px solid rgba(255,255,255,.22); color: var(--white); }
.btn-dark:hover { border-color: var(--gold); color: var(--gold); }

.hero {
  position: relative;
  min-height: 760px;
  padding: 180px 6% 90px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 50px;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 35%, rgba(185,151,91,.2), transparent 30%),
    linear-gradient(90deg, rgba(0,0,0,.96) 0%, rgba(0,0,0,.82) 45%, rgba(0,0,0,.52) 100%),
    url('assets/praxisformat-referenceM.png') center/cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.78));
}
.hero-content, .hero-card { position: relative; z-index: 2; }
.eyebrow {
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .76rem;
  font-weight: 800;
  color: var(--muted);
}
.gold { color: var(--gold); }
h1 {
  max-width: 900px;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: .95;
  letter-spacing: -4px;
  margin-bottom: 30px;
}
.hero-text {
  max-width: 760px;
  color: #ddd6ca;
  font-size: 1.15rem;
  margin-bottom: 34px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-card {
  align-self: end;
  padding: 28px;
  min-height: 160px;
  background: rgba(17,17,17,.72);
  border: 1px solid rgba(185,151,91,.45);
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
}
.hero-card span { display:block; color: var(--muted); text-transform: uppercase; font-size:.74rem; letter-spacing:.14em; margin-bottom:18px; }
.hero-card strong { font-size: 1.65rem; line-height: 1.1; }

.section-light { background: var(--soft); color: #151515; }
.section-dark { background: #0d0d0d; color: var(--white); }
.intro { padding: 90px 18%; text-align: center; }
.intro h2, .section-heading h2, .process h2, .why h2, .cta h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -2px;
  margin-bottom: 22px;
}
.intro p:last-child { max-width: 850px; margin: 0 auto; color: #555; font-size: 1.05rem; }

.services {
  padding: 0 6% 92px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
}
.service-card {
  padding: 38px 26px;
  background: #fff;
  border-right: 1px solid #ddd7cc;
  min-height: 270px;
}
.icon { color: var(--gold); font-weight: 900; margin-bottom: 28px; }
.service-card h3 { font-size: 1rem; text-transform: uppercase; margin-bottom: 14px; }
.service-card p { color: #555; font-size: .94rem; }

.markets { padding: 95px 6%; }
.section-heading { max-width: 760px; margin-bottom: 44px; }
.section-heading.left { margin-bottom: 36px; }
.market-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.market-grid article {
  min-height: 250px;
  padding: 34px;
  background: linear-gradient(180deg, #1a1a1a, #101010);
  border: 1px solid rgba(255,255,255,.08);
}
.market-grid h3 { color: var(--gold); font-size: 1.4rem; margin-bottom: 16px; }
.market-grid p { color: #d0cbc2; }

.process { padding: 96px 6%; }
.process > .section-heading p:last-child { color:#555; max-width:720px; }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.steps div { padding: 28px; border-top: 1px solid #d8d0c3; }
.steps span {
  display: inline-flex; width: 34px; height: 34px; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--gold); color:#111; font-weight:900; margin-bottom:18px;
}
.steps h3 { text-transform: uppercase; margin-bottom: 10px; }
.steps p { color:#555; }

.why {
  padding: 95px 6%;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 70px;
  align-items: center;
  background:
    linear-gradient(90deg, #080808, rgba(8,8,8,.88)),
    url('assets/praxisformat-referenceM.png') center/cover no-repeat;
}
.why p:last-child { color:#d0cbc2; max-width:760px; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.stats div { padding: 28px 18px; border: 1px solid rgba(185,151,91,.38); background: rgba(0,0,0,.4); }
.stats strong { display:block; color:var(--gold); font-size:2.4rem; line-height:1; }
.stats span { color:#d0cbc2; font-size:.86rem; text-transform:uppercase; letter-spacing:.06em; }

.cta { padding: 105px 6%; text-align: center; background: var(--soft); color: #151515; }
.cta p { max-width: 720px; margin: 0 auto 30px; color: #555; }
.footer {
  min-height: 110px;
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #aaa;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer strong { color:#fff; font-size:1.35rem; }

@media (max-width: 1050px) {
  .nav { display: none; }
  .hero { grid-template-columns: 1fr; }
  .services, .market-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .why { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .site-header { padding: 0 22px; height: 74px; }
  .site-header .btn { display: none; }
  .hero { min-height: 720px; padding: 130px 22px 70px; }
  h1 { letter-spacing: -2px; }
  .intro, .markets, .process, .why, .cta { padding-left: 22px; padding-right: 22px; }
  .services, .market-grid, .steps, .stats { grid-template-columns: 1fr; }
  .footer { flex-direction: column; align-items: flex-start; gap: 10px; padding: 28px 22px; }
}
