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

:root {
  --accent: #6b1a1a;
  --dark:   #111111;
  --muted:  #888;
  --border: #e5e5e5;
  --bg:     #fafaf9;
}

body {
  font-family: "Inter", -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--dark);
  background: var(--bg);
}

/* ── HEADER ── */
header {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 40px 24px 36px;
  max-width: 600px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}

.lang-toggle {
  display: flex;
  gap: 4px;
  margin-left: auto;
  flex-shrink: 0;
}

.lang {
  background: none;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.15s;
  font-family: inherit;
}

.lang:hover {
  color: var(--dark);
  border-color: #ccc;
}

.lang.active {
  background: var(--dark);
  border-color: var(--dark);
  color: #fff;
}

header img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
}

header h1 {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

header p {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 2px;
}

/* ── MAIN ── */
main {
  max-width: 600px;
  margin: 0 auto;
}

section {
  padding: 48px 24px;
  border-bottom: 1px solid var(--border);
}

h2 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

/* ── ABOUT ── */
.prose p {
  color: #333;
  margin-bottom: 14px;
}

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

/* ── CONTACT ── */
.contact-list {
  list-style: none;
  margin-bottom: 32px;
}

.contact-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.contact-list li:first-child {
  border-top: 1px solid var(--border);
}

.contact-list span {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-list a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 400;
}

.contact-list a:hover {
  text-decoration: underline;
}

.btn {
  display: inline-block;
  background: var(--dark);
  color: #fff;
  text-decoration: none;
  padding: 13px 26px;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: opacity 0.15s;
}

.btn:hover {
  opacity: 0.8;
}

/* ── FOOTER ── */
footer {
  max-width: 600px;
  margin: 0 auto;
  padding: 28px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.socials {
  display: flex;
  gap: 20px;
}

.socials a {
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}

.socials a:hover {
  color: var(--dark);
}

.footer-meta {
  display: flex;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--muted);
}

.footer-meta a {
  color: var(--muted);
  text-decoration: none;
}

.footer-meta a:hover {
  color: var(--dark);
}
