.intro { padding: 5rem 0; }

.intro-ornament-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.75rem;
}
.intro-line {
  flex: 1;
  height: 1px;
  background: #dc3545;
  opacity: 0.3;
}
.intro-dot {
  width: 8px; height: 8px;
  background: #dc3545;
  border-radius: 50%;
}

.intro-sub {
  font-size: 12px;
  color: #dc3545;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.intro-heading {
  font-family: Georgia, serif;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 1.5rem;
  color: rgb(235, 75, 17);
}

.intro-body {
  font-size: 19px;
  color: #555;
  line-height: 1.9;
  margin-bottom: 1rem;
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: #e5e5e5;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  overflow: hidden;
  margin: 2rem 0;
}
.amenity-card {
  background: #fff;
  padding: 1.25rem;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.amenity-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: #fcebeb;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.amenity-icon i { color: #dc3545; font-size: 18px; }
.amenity-text strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 2px;
}
.amenity-text span { font-size: 16px; color: #666; line-height: 1.5; }

.intro-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 28px;
  font-size: 14px;
  font-weight: 500;
  color: #a32d2d;
  border: 1.5px solid #dc3545;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.18s;
}
.intro-cta:hover { background: #fcebeb; color: #a32d2d; }


/*  about css */
