:root {
  --bg: #0b0b0d;
  --panel: #131316;
  --panel-2: #191b20;
  --text: #f5f5f3;
  --muted: #b4b7be;
  --line: rgba(255,255,255,0.08);
  --gold: #d6c6a5;
  --max: 1240px;
  --radius: 22px;
  --shadow: 0 30px 70px rgba(0,0,0,0.35);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.noise {
  position: fixed; inset: 0; pointer-events: none; opacity: .05;
  background-image: radial-gradient(circle at 25% 25%, rgba(255,255,255,.25) 0, transparent 25%), radial-gradient(circle at 75% 75%, rgba(255,255,255,.12) 0, transparent 22%);
  background-size: 18px 18px;
}
.container { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }
.narrow { max-width: 760px; }
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 24px; backdrop-filter: blur(16px);
  background: linear-gradient(to bottom, rgba(0,0,0,.68), rgba(0,0,0,.25));
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.brand { display: flex; gap: 12px; align-items: center; }
.brand-mark {
  width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.16); border-radius: 12px;
  display: grid; place-items: center; font-weight: 800; letter-spacing: .08em; background: rgba(255,255,255,.04);
}
.brand-text { display: grid; }
.brand-text strong { font-size: 14px; letter-spacing: .2em; }
.brand-text small { font-size: 10px; letter-spacing: .18em; color: var(--muted); }
.nav { display: flex; gap: 28px; font-size: 14px; color: #dcdde0; }
.nav a { position: relative; }
.nav a::after { content: ''; position: absolute; left: 0; bottom: -6px; width: 100%; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: .3s; }
.nav a:hover::after { transform: scaleX(1); }
.menu-toggle { display: none; background: none; border: none; color: white; font-size: 24px; }
.section { padding: 110px 0; position: relative; }
.section-dark { background: linear-gradient(180deg, #0f1115 0%, #0b0b0d 100%); }
.section-black { background: #050506; }
.section-full {
  min-height: 100svh; position: relative; display: grid; place-items: end start;
  background-image: var(--bg); background-size: cover; background-position: center;
}
.section-full .overlay, .philosophy::before {
  content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.84) 0%, rgba(0,0,0,.48) 45%, rgba(0,0,0,.28) 100%);
}
.hero-content { position: relative; z-index: 1; padding-bottom: 10vh; max-width: 760px; }
.eyebrow {
  color: var(--gold); text-transform: uppercase; letter-spacing: .24em; font-size: 11px; margin-bottom: 18px;
}
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(44px, 7vw, 88px); line-height: .96; letter-spacing: -.04em; margin-bottom: 20px; }
h2 { font-size: clamp(30px, 4.3vw, 54px); line-height: 1.02; letter-spacing: -.03em; margin-bottom: 20px; }
h3 { font-size: 24px; line-height: 1.12; margin-bottom: 10px; }
p { color: var(--muted); font-size: 16px; }
.hero-copy { font-size: 18px; max-width: 650px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 22px;
  border-radius: 999px; border: 1px solid rgba(255,255,255,.18); transition: .3s ease; font-weight: 600;
}
.btn-light { background: #f5f5f2; color: #111; }
.btn-light:hover { transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,.06); }
.btn-ghost:hover { background: rgba(255,255,255,.12); }
.stats { padding: 32px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.stats-grid div {
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06);
  border-radius: 18px; padding: 28px; min-height: 136px;
}
.stats-grid strong { display: block; font-size: clamp(28px, 4vw, 52px); line-height: 1; margin-bottom: 14px; }
.stats-grid span { color: var(--muted); font-size: 14px; }
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 42px; align-items: center; }
.split-large { grid-template-columns: .95fr 1.05fr; }
.image-card {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.08);
}
.image-card img { width: 100%; height: 100%; object-fit: cover; }
.philosophy {
  background-image: var(--bg); background-size: cover; background-position: center right; overflow: hidden;
}
.philosophy .container { position: relative; z-index: 1; }
.section-head { margin-bottom: 38px; max-width: 760px; }
.cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.card {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.08); border-radius: 22px; padding: 28px; min-height: 220px;
}
.card span { color: var(--gold); font-weight: 700; letter-spacing: .12em; font-size: 12px; }
.card.accent { background: linear-gradient(180deg, rgba(214,198,165,.1), rgba(255,255,255,.02)); }
.projects-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.project {
  border-radius: 24px; overflow: hidden; background: #111318; border: 1px solid rgba(255,255,255,.08);
}
.project img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.project-copy { padding: 22px; }
.project-feature { grid-column: span 2; display: grid; grid-template-columns: 1.2fr .8fr; }
.project-feature img { height: 100%; aspect-ratio: auto; }
.meta { color: var(--gold); font-size: 12px; text-transform: uppercase; letter-spacing: .18em; }
.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.team-card {
  padding: 28px; background: #111318; border: 1px solid rgba(255,255,255,.08); border-radius: 22px;
}
.role { color: var(--gold); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; }
.cta { text-align: center; }
.site-footer {
  padding: 30px 24px 42px; text-align: center; color: var(--muted); border-top: 1px solid rgba(255,255,255,.06);
}
.reveal, .reveal-grid > * {
  opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible, .reveal-grid > *.visible {
  opacity: 1; transform: translateY(0);
}
.reveal-grid > *:nth-child(2) { transition-delay: .06s; }
.reveal-grid > *:nth-child(3) { transition-delay: .12s; }
.reveal-grid > *:nth-child(4) { transition-delay: .18s; }
.reveal-grid > *:nth-child(5) { transition-delay: .24s; }
.reveal-grid > *:nth-child(6) { transition-delay: .3s; }
@media (max-width: 1040px) {
  .cards, .team-grid, .stats-grid, .projects-grid, .split, .split-large, .project-feature { grid-template-columns: 1fr 1fr; }
  .project-feature { grid-column: auto; }
  .project-feature img { aspect-ratio: 16/10; }
}
@media (max-width: 760px) {
  .nav {
    position: absolute; top: 72px; right: 16px; left: 16px; display: none; flex-direction: column; gap: 16px;
    background: rgba(15,16,19,.95); border: 1px solid rgba(255,255,255,.08); border-radius: 18px; padding: 18px;
  }
  .nav.open { display: flex; }
  .menu-toggle { display: block; }
  .stats-grid, .cards, .projects-grid, .team-grid, .split, .split-large, .project-feature { grid-template-columns: 1fr; }
  .section { padding: 84px 0; }
  .container { width: min(var(--max), calc(100% - 28px)); }
  .hero-content { padding-bottom: 7vh; }
  h1 { font-size: 44px; }
  .brand-text small { display: none; }
}
