:root {
  --bg: #fbfaf7;
  --soft: #f3eee7;
  --ink: #151515;
  --muted: #5f5a52;
  --gold: #b99655;
  --line: rgba(185, 150, 85, 0.35);
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 250, 247, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 96px;
  display: block;
}

.nav-links {
  display: flex;
  gap: 24px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a {
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--gold);
}

.hero {
  min-height: 78vh;
  display: grid;
  place-items: center;
  padding: 84px 24px;
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(185,150,85,0.12), transparent 42%),
    linear-gradient(180deg, #fffdf9 0%, var(--bg) 100%);
}

.hero-inner {
  max-width: 860px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 13px;
  font-family: Arial, Helvetica, sans-serif;
}

h1, h2, h3 {
  font-weight: 500;
  line-height: 1.12;
  margin: 0;
}

h1 {
  font-size: clamp(44px, 8vw, 86px);
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(30px, 4vw, 54px);
  letter-spacing: -0.03em;
}

h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.lead {
  max-width: 760px;
  margin: 28px auto 0;
  font-size: clamp(18px, 2.1vw, 24px);
  color: var(--muted);
}

.hero-actions {
  margin-top: 38px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  letter-spacing: 0.04em;
}

.button.primary {
  background: var(--ink);
  color: var(--white);
}

.button.secondary {
  background: transparent;
  color: var(--ink);
}

.button:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}

.section {
  padding: 88px 24px;
}

.soft {
  background: var(--soft);
}

.container {
  max-width: 1120px;
  margin: 0 auto;
}

.two-col {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

p {
  margin: 0 0 18px;
  font-size: 18px;
  color: var(--muted);
}

.section-lead {
  max-width: 760px;
  font-size: 20px;
  margin-top: 18px;
}

.cards {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  background: rgba(255,255,255,0.58);
  border: 1px solid var(--line);
  padding: 28px;
  min-height: 190px;
}

.card p {
  font-size: 17px;
}

.small {
  font-size: 14px !important;
}

.program {
  margin-top: 28px;
  background: rgba(255,255,255,0.58);
  border: 1px solid var(--line);
  padding: 34px;
}

ul {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 18px;
}

li {
  margin-bottom: 10px;
}

.note {
  padding: 22px;
  border-left: 3px solid var(--gold);
  background: rgba(185,150,85,0.08);
  color: var(--ink);
}

.contact-box {
  margin-top: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0 12px;
}

.contact-box p {
  margin-bottom: 12px;
}

.footer {
  padding: 28px 24px;
  background: var(--ink);
  color: var(--white);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer p {
  color: rgba(255,255,255,0.78);
  margin: 0;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
}

@media (max-width: 820px) {
  .nav {
    align-items: flex-start;
  }

  .brand img {
    width: 78px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 70vh;
    padding-top: 72px;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 20px;
  }
}
