:root {
  --bg: #080808;
  --panel: #141414;
  --steel: #c8c5bd;
  --muted: #aaa39a;
  --gold: #b58a52;
  --line: rgba(255,255,255,.12);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #f1eee8;
  background:
    radial-gradient(circle at 70% 20%, rgba(255,255,255,.08), transparent 32rem),
    linear-gradient(135deg, #050505, #151515 55%, #070707);
}
a { color: inherit; text-decoration: none; }
.site-header {
  position: sticky; top: 0; z-index: 10;
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(8,8,8,.88); backdrop-filter: blur(10px);
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.brand img { width: 46px; height: 46px; object-fit: cover; border-radius: 10px; box-shadow: 0 0 0 1px var(--line); }
nav { display: flex; gap: 22px; color: var(--muted); font-size: 14px; text-transform: uppercase; letter-spacing: .1em; }
.hero {
  min-height: 82vh;
  display: grid; grid-template-columns: 1fr minmax(280px, 520px); gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(44px, 7vw, 96px) clamp(18px, 6vw, 88px);
}
.eyebrow { color: var(--gold); text-transform: uppercase; letter-spacing: .22em; font-size: 13px; font-weight: 800; }
h1 { font-size: clamp(44px, 7vw, 86px); line-height: .95; margin: 12px 0 20px; text-transform: uppercase; letter-spacing: .03em; }
h2 { font-size: clamp(30px, 4vw, 52px); line-height: 1; margin: 8px 0 18px; text-transform: uppercase; }
h3 { margin: 0 0 10px; color: var(--steel); text-transform: uppercase; letter-spacing: .1em; }
.lead, p { color: var(--muted); font-size: 18px; line-height: 1.65; }
.actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.button { display: inline-flex; padding: 14px 22px; border-radius: 8px; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; border: 1px solid var(--line); }
.primary { background: linear-gradient(180deg, #d0cbc0, #77716a); color: #111; }
.secondary { color: var(--steel); background: #111; }
.hero-badge img, .gallery-image {
  width: 100%; border-radius: 24px;
  box-shadow: 0 28px 80px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.14);
}
.section { padding: clamp(42px, 6vw, 88px) clamp(18px, 6vw, 88px); border-top: 1px solid var(--line); }
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cards article, .quote-box { background: rgba(255,255,255,.045); border: 1px solid var(--line); border-radius: 18px; padding: 24px; box-shadow: inset 0 1px 0 rgba(255,255,255,.07); }
.split { display: grid; grid-template-columns: 1fr minmax(280px, 440px); gap: 40px; align-items: center; }
form { display: grid; gap: 14px; max-width: 720px; }
label { display: grid; gap: 8px; color: var(--steel); text-transform: uppercase; letter-spacing: .1em; font-size: 13px; }
input, textarea { width: 100%; padding: 14px; border-radius: 8px; border: 1px solid var(--line); background: #0b0b0b; color: #fff; }
footer { display: flex; gap: 24px; flex-wrap: wrap; padding: 28px clamp(18px, 6vw, 88px); color: var(--muted); border-top: 1px solid var(--line); }
@media (max-width: 850px) {
  .site-header, nav { align-items: flex-start; flex-direction: column; }
  .hero, .split { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
}
