.home-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem 1.2rem;
}

.home-hero .blason {
  width: clamp(90px, 14vw, 150px);
  margin-bottom: 1.6rem;
  filter: drop-shadow(0 6px 16px rgba(43,32,22,0.18));
  animation: rise .8s ease both;
}

.home-hero .eyebrow {
  animation: rise .8s .05s ease both;
}

.home-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin: 0.4rem 0 0.9rem;
  animation: rise .8s .1s ease both;
}

.home-hero .intro {
  max-width: 560px;
  color: var(--brown-700);
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0 auto 2.6rem;
  animation: rise .8s .18s ease both;
}

.home-choices {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
  animation: rise .8s .26s ease both;
}

.choice-card {
  width: 220px;
  padding: 2rem 1.4rem 1.6rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.choice-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--gold-light);
}

.choice-card .icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.choice-card h2 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.choice-card p {
  color: var(--brown-500);
  font-size: 0.86rem;
  line-height: 1.5;
  margin: 0 0 1.2rem;
}

.home-footer-note {
  margin-top: 3rem;
  color: var(--brown-300);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  animation: rise .8s .32s ease both;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 520px) {
  .choice-card { width: 100%; max-width: 320px; }
}
