*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #1a1814;
  --bg-card: #242018;
  --text: #e8e0d4;
  --text-muted: #9a9080;
  --accent: #c4a265;
  --accent-light: #d4b87a;
  --border: #3a342c;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  min-height: 100dvh;
  font-family: "Georgia", "Times New Roman", serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  background-image:
    radial-gradient(ellipse at 20% 0%, rgba(196, 162, 101, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 100%, rgba(196, 162, 101, 0.05) 0%, transparent 50%);
}

.container {
  max-width: 640px;
  width: 100%;
  text-align: center;
}

.logo {
  display: inline-block;
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2.5rem;
  font-family: system-ui, sans-serif;
  font-weight: 500;
}

h1 {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 1.25rem;
  color: var(--text);
}

.subtitle {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-style: italic;
}

.badge {
  display: inline-block;
  padding: 0.625rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--bg-card);
  color: var(--accent-light);
  font-family: system-ui, sans-serif;
  font-size: 0.8125rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 3rem;
}

.divider {
  width: 48px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto 2rem;
  opacity: 0.6;
}

.services {
  display: grid;
  gap: 1rem;
  margin-bottom: 3rem;
  text-align: left;
}

.service-item {
  padding: 1rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: rgba(36, 32, 24, 0.6);
  font-family: system-ui, sans-serif;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.service-item strong {
  display: block;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 0.25rem;
  font-family: Georgia, serif;
}

footer {
  font-family: system-ui, sans-serif;
  font-size: 0.8125rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

footer a {
  color: var(--accent);
  text-decoration: none;
}

footer a:hover {
  color: var(--accent-light);
}

@media (max-width: 480px) {
  body {
    padding: 1.5rem 1rem;
  }

  .logo {
    margin-bottom: 2rem;
  }

  .badge {
    margin-bottom: 2rem;
  }
}
