:root {
  --bg: #050506;
  --panel: #0d0d10;
  --panel-2: #141419;
  --text: #f4f1ea;
  --muted: #a7a19a;
  --line: rgba(244, 241, 234, 0.12);
  --gold: #c7a766;
  --gold-soft: rgba(199, 167, 102, 0.16);
  --shadow: rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 10%, rgba(199, 167, 102, 0.12), transparent 28rem),
    radial-gradient(circle at 80% 25%, rgba(255, 255, 255, 0.06), transparent 22rem),
    var(--bg);
  line-height: 1.6;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.045;
  background-image: linear-gradient(45deg, #fff 25%, transparent 25%), linear-gradient(-45deg, #fff 25%, transparent 25%);
  background-size: 4px 4px;
  z-index: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 6vw;
  backdrop-filter: blur(18px);
  background: rgba(5, 5, 6, 0.72);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.82rem;
}

.nav { display: flex; gap: 30px; }
.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}
.nav a:hover { color: var(--text); }
.nav-toggle { display: none; }

main, footer { position: relative; z-index: 1; }
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 60px;
  align-items: center;
  padding: 150px 6vw 90px;
}

.eyebrow, .card-topline {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 700;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 930px;
  font-size: clamp(3.2rem, 7vw, 7.8rem);
  line-height: 0.92;
  letter-spacing: -0.08em;
  margin-bottom: 28px;
}
h2 {
  font-size: clamp(2rem, 4vw, 4.3rem);
  line-height: 1;
  letter-spacing: -0.055em;
  margin-bottom: 24px;
}
h3 { font-size: 1.35rem; letter-spacing: -0.03em; }
.hero-text, .section-content p, .contact-copy p {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid var(--line);
  color: var(--text);
  text-decoration: none;
  background: transparent;
  cursor: pointer;
  font-weight: 700;
}
.button.primary { background: var(--gold); color: #111; border-color: var(--gold); }
.button.secondary:hover { border-color: var(--gold); color: var(--gold); }

.hero-card {
  padding: 36px;
  min-height: 420px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  box-shadow: 0 26px 80px var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-card h2 { font-size: clamp(2rem, 3vw, 3.4rem); }
.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.metrics div { padding-top: 24px; }
.metrics strong { display: block; color: var(--gold); font-size: 1.6rem; }
.metrics span { color: var(--muted); font-size: 0.85rem; }

.section { padding: 100px 6vw; border-top: 1px solid var(--line); }
.split { display: grid; grid-template-columns: 0.35fr 1fr; gap: 70px; }
.section-label { color: var(--muted); text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.75rem; }
.section-heading { max-width: 850px; margin-bottom: 44px; }
.grid.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.focus-card {
  min-height: 330px;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--panel);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.focus-card:hover { transform: translateY(-6px); border-color: rgba(199, 167, 102, 0.5); }
.focus-card span { color: var(--gold); font-weight: 800; }
.focus-card p { color: var(--muted); }

.principles { background: rgba(255,255,255,0.02); }
.principle-list { border-top: 1px solid var(--line); }
.principle-list div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(1.2rem, 2vw, 2rem);
  letter-spacing: -0.03em;
}
.principle-list strong { color: var(--gold); font-size: 1rem; }

.quote-section {
  padding: 120px 8vw;
  text-align: center;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
}
.quote-section p {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(2rem, 4.5vw, 5rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: var(--panel-2);
  border: 1px solid var(--line);
}
label { color: var(--muted); font-size: 0.9rem; }
input, textarea {
  width: 100%;
  margin-top: 8px;
  padding: 15px 14px;
  border: 1px solid var(--line);
  background: #08080a;
  color: var(--text);
  font: inherit;
  outline: none;
}
input:focus, textarea:focus { border-color: var(--gold); }

.form-success {
  display: none;
  padding: 28px;
  background: var(--panel-2);
  border: 1px solid rgba(199, 167, 102, 0.4);
  text-align: center;
}
.form-success p { color: var(--muted); margin-bottom: 0; }
.form-success strong { display: block; color: var(--gold); font-size: 1.2rem; margin-bottom: 10px; letter-spacing: -0.02em; }

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 34px 6vw;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
    background: transparent;
    color: var(--text);
    border: 1px solid var(--line);
    width: 42px;
    height: 42px;
  }
  .nav {
    position: absolute;
    top: 83px;
    left: 6vw;
    right: 6vw;
    display: none;
    flex-direction: column;
    padding: 22px;
    background: rgba(13, 13, 16, 0.98);
    border: 1px solid var(--line);
  }
  .nav.open { display: flex; }
  .hero, .split, .contact { grid-template-columns: 1fr; }
  .grid.cards { grid-template-columns: 1fr; }
  .hero { padding-top: 130px; }
  .hero-card { min-height: 320px; }
  .section { padding: 78px 6vw; }
  .footer { flex-direction: column; }
}
