/* ================================
   EVENTS & MEETINGS – SIX SENSES STYLE
================================ */

/* HERO */
.em-hero {
  max-width: 760px;
  margin: 140px auto 100px;
  text-align: center;
  padding: 0 20px;
}

.em-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.em-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  font-weight: 400;
  margin: 20px 0;
}

.em-hero p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-muted);
}

/* HERO IMAGE */
.em-hero-image img {
  width: 100%;
  height: 75vh;
  object-fit: cover;
}

/* INTRO */
.em-intro {
  max-width: 760px;
  margin: 120px auto;
  padding: 0 20px;
  text-align: center;
}

.em-intro p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-muted);
}

/* SECTIONS */
.em-section {
  max-width: 1200px;
  margin: 0 auto 160px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.em-section.reverse {
  direction: rtl;
}

.em-section.reverse > * {
  direction: ltr;
}

.em-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.em-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 20px;
}

.em-text p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.em-text ul {
  list-style: none;
  padding: 0;
}

.em-text li {
  font-size: 14px;
  margin-bottom: 10px;
  color: var(--text-muted);
}

/* ENQUIRY */
.em-enquiry {
  background: var(--bg-ivory);
  padding: 140px 20px;
  text-align: center;
}

.em-enquiry h2 {
  font-family: "Playfair Display", serif;
  font-size: 34px;
  font-weight: 400;
  margin-bottom: 18px;
}

.em-enquiry p {
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 15px;
  color: var(--text-muted);
}

.em-enquiry form {
  max-width: 420px;
  margin: auto;
}

.em-enquiry input,
.em-enquiry textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 14px;
  border: 1px solid #ddd;
  font-family: inherit;
}

.em-enquiry button {
  padding: 14px 36px;
  border: 1px solid var(--text-dark);
  background: none;
  cursor: pointer;
  letter-spacing: 0.08em;
}

.em-enquiry button:hover {
  background: var(--text-dark);
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .em-section {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .em-hero h1 {
    font-size: 34px;
  }
}
