:root {
  --bg: #f8f8f6;
  --text: #1f1f1f;
  --muted: #666;
  --line: #d8d8d8;
  --link: #184f90;
  --max: 980px;
}

* {
  box-sizing: border-box;
}

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

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 56px 24px 80px;
}

.site-header {
  border-bottom: 1px solid var(--line);
  padding-bottom: 24px;
  margin-bottom: 42px;
}

.site-title {
  font-size: 2.6rem;
  font-weight: 600;
  margin: 0 0 8px 0;
}

.site-subtitle {
  color: var(--muted);
  font-size: 1.08rem;
  margin-bottom: 18px;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
}

.site-nav a {
  text-decoration: none;
  color: var(--link);
  font-weight: 500;
}

.site-nav a.active {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-nav a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

main {
  min-height: 60vh;
}

h1 {
  font-size: 1.8rem;
  margin: 0 0 18px 0;
  font-weight: 600;
}

h2 {
  font-size: 1.22rem;
  margin: 32px 0 12px 0;
  font-weight: 600;
}

h3 {
  font-size: 1.06rem;
  margin: 22px 0 10px 0;
  font-weight: 600;
}

p {
  margin: 0 0 14px 0;
}

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

a:hover {
  text-decoration: underline;
}

.page-intro {
  max-width: 860px;
}

.hero-box {
  width: 100%;
  min-height: 320px;
  background: linear-gradient(180deg, #e9e5dc 0%, #efefea 100%);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-align: center;
  padding: 24px;
  margin: 22px 0 30px 0;
}

.meta {
  color: var(--muted);
  font-style: italic;
  margin-bottom: 10px;
}

.section-block {
  margin-bottom: 28px;
}

.clean-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.clean-list li {
  padding: 12px 0;
  border-bottom: 1px solid #e5e5e5;
}

.clean-list li:last-child {
  border-bottom: none;
}

.contact-list p {
  margin-bottom: 10px;
}

@media (max-width: 720px) {
  .site-title {
    font-size: 2.1rem;
  }

  .site-subtitle {
    font-size: 1rem;
  }

  .container {
    padding: 40px 18px 64px;
  }

  .hero-box {
    min-height: 220px;
  }
}
figure.hero-figure {
  margin: 22px 0 30px 0;
}

.hero-image {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border: 1px solid var(--line);
  display: block;
}

.hero-caption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.95rem;
  font-style: italic;
}
