:root {
  --ink: #f3f7f4;
  --muted: #b7c7bc;
  --accent: #d4a373;
  --line: rgba(243, 247, 244, 0.14);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Sora", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--font-body);
  background: #132018;
  line-height: 1.55;
}

.bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 55% at 15% 10%, rgba(212, 163, 115, 0.22), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 80%, rgba(62, 110, 82, 0.35), transparent 50%),
    linear-gradient(165deg, #0d1712 0%, #1a2c22 45%, #101a14 100%);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem clamp(1.25rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
  animation: rise 0.8s ease both;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
}

nav {
  display: flex;
  gap: 1.25rem;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
}

nav a:hover { color: var(--ink); }

.hero {
  min-height: calc(100vh - 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 8vw, 5rem) clamp(1.25rem, 4vw, 3rem);
  max-width: 42rem;
  animation: rise 1s 0.1s ease both;
}

.hero h1 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 9vw, 5.2rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.hero p {
  margin: 0;
  max-width: 28rem;
  color: var(--muted);
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  animation: rise 1s 0.25s ease both;
}

.cta {
  margin-top: 1.75rem;
  animation: rise 1s 0.4s ease both;
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.4rem;
  background: var(--accent);
  color: #1a120c;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: 0;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.block {
  padding: clamp(3rem, 8vw, 5rem) clamp(1.25rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
  max-width: 40rem;
}

.block h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.1rem);
}

.block p { margin: 0; color: var(--muted); }
.block a { color: var(--accent); }

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  justify-content: space-between;
  padding: 1.5rem clamp(1.25rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer strong {
  color: var(--ink);
  font-family: var(--font-display);
}

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 640px) {
  nav { gap: 0.9rem; }
  .hero { min-height: 78vh; }
}
