:root {
  --bg: #f5f5f3;
  --surface: #ffffff;
  --text: #1e1e1a;
  --muted: #6c6a63;
  --line: #ddd8cf;
  --accent: #2f3a32;
  --max-width: 920px;
  --radius: 14px;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

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

a:hover,
a:focus {
  text-decoration: underline;
}

.site {
  min-height: 100vh;
}

.container {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  padding: 5.5rem 0 3.5rem;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(to bottom, #f8f7f4 0%, #f5f5f3 100%);
}

.eyebrow {
  margin: 0 0 0.8rem;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.subtitle {
  margin: 1rem 0 0;
  font-size: 1.15rem;
  color: var(--muted);
}

main {
  padding: 2rem 0 4rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.8rem 1.5rem;
  margin-bottom: 1.4rem;
}

.card h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.35rem;
  line-height: 1.2;
  font-weight: 700;
}

.card p {
  margin: 0 0 1rem;
}

.card p:last-child {
  margin-bottom: 0;
}

.contact {
  padding-top: 0.4rem;
  border-top: 1px solid var(--line);
}

.site-footer {
  padding: 1.5rem 0 2.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 640px) {
  .hero {
    padding: 4rem 0 2.5rem;
  }

  .subtitle {
    font-size: 1.05rem;
  }

  .card {
    padding: 1.3rem 1.1rem;
  }
}