.plan-page {
  position: relative;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.plan-page::after {
  content: "";
  position: fixed;
  top: 0%;
  right: -400px;
  width: 1800px;
  height: 1800px;
  background-image: url('/images/olivier2.png');
  background-repeat: no-repeat;
  background-position: right top;
  background-size: contain;
  opacity: 0.04;
  z-index: 0;
  pointer-events: none;
}

.plan-page > * {
  position: relative;
  z-index: 1;
}

.plan-intro {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}

.plan-intro h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 500;
  margin: 0 0 18px;
}

.plan-intro p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  line-height: 1.7;
  margin: 0;
  color: #2f2f2f;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.plan-col h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: #b68b52;
  border-bottom: 1px solid rgba(182, 139, 82, 0.3);
  padding-bottom: 10px;
  margin-bottom: 18px;
}

.plan-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan-col li {
  margin-bottom: 12px;
}

.plan-col a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: #5a4a36;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.plan-col a:hover {
  color: #b68b52;
  border-color: #b68b52;
}

@media (max-width: 900px) {
  .plan-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .plan-grid {
    grid-template-columns: 1fr;
  }
}
