:root {
  --bg: #070809;
  --ink: #f8f5ee;
  --muted: #b9b2a8;
  --line: rgba(255, 255, 255, .13);
  --line-strong: rgba(255, 255, 255, .24);
  --gold: #d7b46a;
  --green: #76a87f;
  --blue: #91bccd;
  --red: #a51f1f;
  --shadow: 0 24px 90px rgba(0, 0, 0, .5);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--ink);
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% -10%, rgba(118, 168, 127, .22), transparent 30rem),
    radial-gradient(circle at 85% 8%, rgba(215, 180, 106, .16), transparent 28rem),
    linear-gradient(135deg, #050607, #111416 48%, #08090a);
}
a { color: inherit; text-decoration: none; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 8, 9, .72);
  backdrop-filter: blur(18px);
}
.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--gold);
  background: linear-gradient(145deg, rgba(215, 180, 106, .2), rgba(255,255,255,.04));
  font-size: 12px;
  font-weight: 900;
}
.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
}
.brand small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.links {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
}
.links a:hover { color: var(--gold); }
.page {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
  padding: clamp(54px, 8vw, 100px) 0;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .24em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: .98;
}
h1 { font-size: clamp(52px, 9vw, 124px); }
h2 { font-size: clamp(34px, 5vw, 68px); }
h3 { font-size: clamp(24px, 3vw, 36px); }
p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}
.lead {
  max-width: 760px;
  color: #e5ded4;
  font-size: clamp(18px, 2.2vw, 24px);
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid rgba(215, 180, 106, .56);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(118, 168, 127, .95), rgba(45, 78, 54, .95));
  color: white;
  font-weight: 850;
}
.button.secondary {
  background: rgba(255,255,255,.055);
  border-color: var(--line-strong);
}
.glass, .card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.095), rgba(255,255,255,.035));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.glass {
  min-height: 540px;
  padding: clamp(28px, 4vw, 46px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.section {
  padding: clamp(54px, 8vw, 112px) 0;
  border-top: 1px solid var(--line);
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card {
  padding: clamp(24px, 3vw, 34px);
}
.card p:last-child { margin-bottom: 0; }
.tag {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.footer {
  border-top: 1px solid var(--line);
  padding: 38px clamp(18px, 4vw, 56px);
  color: var(--muted);
  background: rgba(0,0,0,.26);
}
.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 900px) {
  .nav { flex-direction: column; align-items: flex-start; padding: 16px 0; }
  .links { flex-wrap: wrap; }
  .hero, .grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .glass { min-height: 360px; }
  .footer-inner { flex-direction: column; }
}
