/* ОСНОВНІ НАЛАШТУВАННЯ */

.ro-landing {
  background: #FFFFFF;
  color: #1F2A33;
  font-family: "Inter", Arial, sans-serif;
}

.ro-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.ro-divider {
  height: 1px;
  background: #D9DEE3;
  width: 100%;
  margin: 48px 0;
}

/* HERO (ПЕРШИЙ ЕКРАН) */

.ro-hero {
  padding: 80px 0 60px;
}

.ro-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.ro-h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
  font-size: 52px;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #1F2A33;
}

.ro-sub {
  font-size: 18px;
  line-height: 1.6;
  color: #6B7680;
  margin-bottom: 32px;
}

/* КНОПКА */

.ro-btn {
  display: inline-block;
  background: #C9A46A;
  color: #FFFFFF;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
}

.ro-btn:hover {
  background: #B89255;
  transform: translateY(-2px);
}

/* ФОТО */

.ro-hero-img img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* ABOUT */

.ro-about {
  background: #F6F8FA;
  padding: 80px 0;
}

.ro-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.ro-h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 36px;
  margin-bottom: 20px;
  color: #1F2A33;
}

.ro-text {
  font-size: 17px;
  line-height: 1.7;
  color: #2F3A44;
}

/* ПАКЕТИ */

.ro-packages {
  padding: 80px 0;
}

.ro-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.ro-card {
  background: #FFFFFF;
  border: 1px solid #D9DEE3;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
}

.ro-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: #1F2A33;
}

.ro-card p {
  font-size: 15px;
  color: #6B7680;
  line-height: 1.6;
}

/* FOOTER / CONTACT */

.ro-contact {
  background: #F6F8FA;
  padding: 80px 0;
}

.ro-contact-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

/* АДАПТИВ */

@media (max-width: 900px) {

  .ro-hero-grid,
  .ro-about-grid,
  .ro-cards {
    grid-template-columns: 1fr;
  }

  .ro-h1 {
    font-size: 38px;
  }

}