:root {
  --bg: #f8f2e9;
  --surface: #fff9f2;
  --accent: #c18f5d;
  --text: #4f453f;
  --muted: #85786f;
  --panel: #fff2e4;
  --border: rgba(161, 128, 99, 0.22);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  background: linear-gradient(180deg, #fdf6ef 0%, #f7efe4 100%);
  color: var(--text);
  line-height: 1.7;
}

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

a:hover {
  text-decoration: underline;
}

.hero {
  min-height: 58vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
  background: radial-gradient(circle at top center, rgba(193, 143, 93, 0.14), transparent 35%), #f6ede3;
}

.content {
  max-width: 860px;
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 0.95rem;
}

h1 {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.03em;
  color: #3f3229;
}

.subtitle {
  margin: 1.5rem auto 0;
  max-width: 680px;
  color: var(--muted);
  font-size: 1.05rem;
}

.container {
  max-width: 980px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 16px 40px rgba(153, 122, 88, 0.08);
}

h2 {
  margin-top: 0;
  color: #3f3229;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.8rem;
}

p,
li,
address {
  color: #5b4f47;
}

ul {
  padding-left: 1.3rem;
  margin: 1rem 0 0;
}

li {
  margin-bottom: 0.8rem;
}

.program-image {
  margin: 1.5rem 0;
  text-align: center;
}

.program-image img {
  width: 100%;
  max-width: 760px;
  border-radius: 1.25rem;
  border: 1px solid rgba(193, 143, 93, 0.18);
  box-shadow: 0 18px 40px rgba(146, 113, 81, 0.12);
  cursor: zoom-in;
  transition: transform 0.2s ease;
}

.program-image img:hover {
  transform: scale(1.01);
}

.program-hint {
  margin-top: -0.3rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.contact-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(193, 143, 93, 0.35);
  background: #fff6eb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #7f6146;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.contact-icon:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(161, 128, 99, 0.18);
  background: #fff1df;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

footer.footer {
  text-align: center;
  padding: 1.5rem 1.5rem 2rem;
  color: var(--muted);
}

@media (max-width: 640px) {
  .hero {
    padding: 3rem 1rem;
  }

  .card {
    padding: 1.5rem;
  }
}
