:root {
  --ink: #2b2b28;
  --muted: #6b6b64;
  --cream: #faf8f4;
  --accent: #5c6b52;
  --line: #e4e0d8;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
}
.wrap { max-width: 760px; margin: 0 auto; padding: 0 24px; }

header { padding: 48px 0 32px; border-bottom: 1px solid var(--line); }
header h1 { font-size: 1.7rem; font-weight: normal; margin-bottom: 4px; }
header .credentials { color: var(--muted); font-size: 0.9rem; }

nav {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}
nav .wrap {
  display: flex;
  gap: 22px;
  padding: 14px 24px;
  font-family: Arial, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  flex-wrap: wrap;
}
nav a { color: var(--ink); text-decoration: none; }
nav a:hover, nav a.active { color: var(--accent); }

main { padding: 48px 0; }
h2 {
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 32px 0 16px;
}
h2:first-child { margin-top: 0; }
h3 { font-size: 1.3rem; font-weight: normal; margin-bottom: 16px; }
p { margin-bottom: 16px; max-width: 620px; }
ul, ol { margin: 0 0 16px 20px; max-width: 600px; }
li { margin-bottom: 6px; }

.faq-item { margin-bottom: 28px; max-width: 620px; }
.faq-item .q { font-weight: bold; margin-bottom: 6px; }

.fee-item {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 20px 24px;
  margin-bottom: 16px;
  max-width: 600px;
}
.fee-item .amount { font-family: Arial, sans-serif; font-size: 1.4rem; color: var(--accent); margin-bottom: 6px; }
.fee-item .title { font-family: Arial, sans-serif; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.03em; color: var(--muted); margin-bottom: 8px; }

.cta {
  display: inline-block;
  margin-top: 12px;
  padding: 14px 30px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  border-radius: 3px;
}
.cta:hover { background: #4a5742; }

.about-photo {
  float: right;
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 0 24px 40px;
}

h2.section-break { clear: both; }
.note {
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
  color: var(--muted);
  background: #f2efe8;
  padding: 16px 20px;
  border-radius: 4px;
  max-width: 600px;
  margin-top: 24px;
}

form { max-width: 480px; margin-top: 20px; }
label { display: block; font-family: Arial, sans-serif; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.02em; color: var(--muted); margin-bottom: 6px; margin-top: 16px; }
input, textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 3px;
  font-family: Georgia, serif;
  font-size: 1rem;
  background: #fff;
}
textarea { min-height: 120px; resize: vertical; }
button {
  margin-top: 20px;
  padding: 12px 28px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 3px;
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  cursor: pointer;
}
button:hover { background: #4a5742; }

footer {
  padding: 40px 0 60px;
  border-top: 1px solid var(--line);
  margin-top: 40px;
  font-family: Arial, sans-serif;
  font-size: 0.8rem;
  color: var(--muted);
}
footer .contact-line { margin-top: 8px; }
footer a { color: var(--accent); }

@media (max-width: 600px) {
  nav .wrap { gap: 14px; overflow-x: auto; }
}