:root {
  --bg: #F5F5F5;
  --text: #111111;
  --muted: #777777;
  --accent: #0A1A2F; /* deep blue */
  --space-xl: 6rem;
  --space-lg: 3rem;
  --space-md: 1.5rem;
  --space-sm: 0.75rem;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  padding: var(--space-lg);
  max-width: 900px;
  margin: 0 auto;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  margin-bottom: var(--space-md);
}

section {
  margin-bottom: var(--space-xl);
}

nav {
  margin-bottom: var(--space-lg);
}

nav a {
  margin-right: var(--space-md);
  text-decoration: none;
  color: var(--text);
}

.cta {
  padding: 0.75rem 1.5rem;
  background: var(--accent);
  color: white;
  text-decoration: none;
  border-radius: 4px;
}

input, textarea {
  width: 100%;
  padding: var(--space-sm);
  margin-bottom: var(--space-md);
  border: 1px solid var(--muted);
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
}

button {
  padding: 0.75rem 1.5rem;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
