:root {
  --bg: #0f0f10;
  --bg-soft: #151618;
  --panel: #17181a;
  --panel-2: #1d1f22;
  --text: #f4f1ea;
  --muted: #c8c1b6;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #d9b36c;
  --accent-dark: #b88d45;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(217, 179, 108, 0.12), transparent 30%),
    linear-gradient(180deg, #111214 0%, #0b0b0c 100%);
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  max-width: 820px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(10px);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.96rem;
}

.nav-links a:hover {
  color: var(--text);
}

.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  place-items: center;
  padding: 72px 0;
}

.hero-inner {
  text-align: center;
  max-width: 820px;
}

.eyebrow,
.section-label {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  margin-bottom: 12px;
}

h1,
h2,
h3 {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 1.02;
  letter-spacing: 0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 12px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.lead {
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 700px;
}

.lead.small {
  max-width: 640px;
}

.cta-group {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: #111;
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.section {
  padding: 84px 0;
}

.section.alt {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cards,
.info-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.card,
.info-box,
.contact-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.card p,
.info-box p,
.contact-card p {
  margin: 0;
  color: var(--muted);
}

.contact-card {
  max-width: 680px;
  margin: 28px auto 0;
}

.contact-card p + p {
  margin-top: 10px;
}

.contact-card a {
  color: var(--accent);
}

.site-footer {
  border-top: 1px solid var(--line);
}

.site-footer .container {
  padding: 24px 0 34px;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 840px) {
  .nav {
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: auto;
    padding: 64px 0;
  }

  .cards,
  .info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  .section {
    padding: 64px 0;
  }
}