:root {
  --bg: #0c0d0b;
  --bg-2: #141612;
  --bg-3: #1c1f18;
  --copper: #c4843a;
  --copper-2: #e0a85a;
  --copper-dim: #8a5a28;
  --ink: #f4efe6;
  --muted: #b7b1a4;
  --line: rgba(196, 132, 58, 0.28);
  --ok: #c9d4b8;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
}

img { max-width: 100%; display: block; }
a { color: var(--copper-2); text-decoration: none; }
a:hover { color: #f0c27a; }

.wrap { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }

.topbar {
  position: sticky; top: 0; z-index: 40;
  background: rgba(12, 13, 11, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 72px; gap: 16px;
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--ink); }
.brand img {
  width: 48px; height: 48px; object-fit: cover;
  border-radius: 50%; border: 1px solid var(--line);
}
.brand-name { font-weight: 750; letter-spacing: .04em; line-height: 1.1; }
.brand-name small { display: block; color: var(--muted); font-weight: 500; letter-spacing: .12em; font-size: 11px; text-transform: uppercase; }

nav { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
nav a { color: var(--muted); font-size: 14px; }
nav a:hover { color: var(--ink); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border: 0; cursor: pointer;
  background: linear-gradient(180deg, var(--copper-2), var(--copper));
  color: #1a1208; font-weight: 750;
  padding: 12px 18px; border-radius: 999px;
  box-shadow: 0 8px 24px rgba(196, 132, 58, .25);
}
.btn.ghost {
  background: transparent; color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }

.hero {
  padding: 56px 0 28px;
  background:
    radial-gradient(900px 400px at 80% -10%, rgba(196,132,58,.18), transparent 55%),
    linear-gradient(180deg, #12140f, var(--bg));
}
.hero-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: center; }
.kicker {
  color: var(--copper-2); letter-spacing: .18em; text-transform: uppercase;
  font-size: 12px; font-weight: 700; margin: 0 0 10px;
}
h1 { font-size: clamp(34px, 6vw, 58px); line-height: 1.05; margin: 0 0 16px; }
.lead { font-size: 18px; color: var(--muted); max-width: 56ch; }
.hero-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 22px;
  box-shadow: var(--shadow);
}
.hero-card img { width: 100%; border-radius: 50%; margin-bottom: 14px; }
.hero-card p { margin: 0; color: var(--muted); }

.section { padding: 64px 0; }
.section.alt { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
h2 { font-size: clamp(26px, 4vw, 36px); margin: 0 0 12px; }
.sub { color: var(--muted); max-width: 62ch; margin: 0 0 28px; }

.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}
.card h3 { margin: 0 0 8px; font-size: 20px; }
.card p { margin: 0; color: var(--muted); }
.icon { color: var(--copper-2); font-size: 22px; margin-bottom: 10px; }

.list { margin: 0; padding-left: 18px; color: var(--muted); }
.two { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.areas { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 12px; color: var(--ok); font-size: 14px;
}

form { display: grid; gap: 12px; }
label { font-size: 13px; color: var(--muted); }
input, select, textarea {
  width: 100%; padding: 12px 14px;
  border-radius: 12px; border: 1px solid var(--line);
  background: #0f110e; color: var(--ink); font: inherit;
}
textarea { min-height: 120px; resize: vertical; }
.note { color: var(--muted); font-size: 13px; }

footer {
  padding: 28px 0 40px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 14px;
}
.foot { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

.menu-btn { display: none; background: none; border: 0; color: var(--ink); font-size: 24px; }

@media (max-width: 860px) {
  .hero-grid, .cards, .two { grid-template-columns: 1fr; }
  .menu-btn { display: block; }
  nav {
    display: none; position: absolute; right: 16px; top: 72px;
    background: #161814; border: 1px solid var(--line);
    padding: 14px; border-radius: 14px; flex-direction: column; min-width: 200px;
  }
  nav.open { display: flex; }
}
