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

:root {
  --bg: #FAF9F6;
  --text: #2C2C2C;
  --text-light: #6B6B6B;
  --text-muted: #9B9B9B;
  --accent: #5B7F5E;
  --accent-olive: #A3B899;
  --accent-lichen: #C5D5BD;
  --accent-light: #E8F0E8;
  --border: #E2E0D8;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Lora', Georgia, serif;
}

html {
  font-size: 17px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

a:hover {
  color: var(--accent-hover, #4A6B4D);
}

/* ── Construction ── */
.construction {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.construction-content {
  max-width: 440px;
  text-align: center;
}

.construction-icon {
  margin-bottom: 2rem;
  opacity: 0.7;
}

.construction h1 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 1.2rem;
  letter-spacing: -0.3px;
}

.construction-text {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.construction-status {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--accent);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.construction-line {
  width: 40px;
  height: 1px;
  background: var(--accent-olive);
  margin: 0 auto 2rem;
}

.construction-contact {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.connect-links {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
}

.connect-btn {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 400;
  transition: all 0.2s;
}

.connect-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light);
}

footer {
  text-align: center;
  padding: 2rem;
  border-top: 1px solid var(--accent-lichen);
}

footer p {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 300;
}

@media (max-width: 640px) {
  html { font-size: 16px; }
  .construction h1 { font-size: 1.6rem; }
  .construction-text br { display: none; }
}
