:root {
  --teal: #0e7c86;
  --teal-dark: #095860;
  --teal-light: #e6f4f5;
  --sand: #f7f3ea;
  --coral: #e0693f;
  --ink: #1e2a2b;
  --muted: #5c6b6c;
  --border: #e3e8e8;
}
* { box-sizing: border-box; }
body {
  margin: 0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--ink); background: #fff; -webkit-font-smoothing: antialiased;
}
.navbar {
  position: sticky; top: 0; z-index: 10; display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px; background: rgba(9,88,96,0.92); backdrop-filter: blur(6px);
}
.brand { color: #fff; font-weight: 700; font-size: 16px; }
.nav-cta {
  color: #fff; text-decoration: none; font-size: 13px; font-weight: 600; border: 1.5px solid #fff;
  border-radius: 20px; padding: 7px 14px;
}
.hero {
  background: linear-gradient(160deg, var(--teal), var(--teal-dark));
  color: #fff; padding-bottom: 46px;
}
.hero-content { padding: 40px 22px 10px; text-align: center; }
.hero-content h1 { font-size: 26px; line-height: 1.3; margin: 0 0 10px; }
.hero-content p { font-size: 14.5px; opacity: .9; margin: 0 0 22px; }
.btn-primary {
  display: inline-block; background: var(--coral); color: #fff; text-decoration: none;
  font-weight: 700; font-size: 14.5px; padding: 13px 26px; border-radius: 30px; border: none; cursor: pointer;
}
.btn-secondary {
  display: inline-block; background: var(--teal-light); color: var(--teal-dark); text-decoration: none;
  font-weight: 700; font-size: 14.5px; padding: 12px 22px; border-radius: 30px; margin-top: 10px;
}
.section { max-width: 720px; margin: 0 auto; padding: 40px 20px; }
.section.alt { background: var(--sand); max-width: none; }
.section.alt > * { max-width: 720px; margin-left: auto; margin-right: auto; }
.section h2 { font-size: 20px; margin: 0 0 14px; color: var(--teal-dark); }
.section p { font-size: 14.5px; line-height: 1.6; color: var(--muted); }

.room-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 640px) { .room-grid { grid-template-columns: 1fr 1fr 1fr; } }
.room-card {
  border: 1px solid var(--border); border-radius: 14px; padding: 18px; text-align: center;
}
.room-photo { font-size: 34px; margin-bottom: 8px; }
.room-card h3 { margin: 0 0 6px; font-size: 16px; }
.room-meta { font-size: 12.5px; color: var(--muted); margin: 0 0 10px; min-height: 34px; }
.room-rate { font-size: 15px; font-weight: 700; color: var(--teal-dark); margin: 2px 0; }
.room-rate span { font-weight: 400; font-size: 12px; color: var(--muted); }
.room-notes { font-size: 12.5px; color: var(--muted); margin-top: 16px; }

.calendar-placeholder {
  border: 1.5px dashed var(--teal); background: var(--teal-light); border-radius: 14px; padding: 24px;
  text-align: center;
}
.calendar-placeholder p { color: var(--teal-dark); margin: 4px 0; }

.amenities-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.amenities-list li { font-size: 14px; }

.inquire-form { display: flex; flex-direction: column; gap: 4px; max-width: 420px; margin: 0 auto; }
.inquire-form label { font-size: 12.5px; font-weight: 600; color: var(--muted); margin-top: 10px; }
.inquire-form input, .inquire-form select, .inquire-form textarea {
  padding: 11px 12px; border-radius: 10px; border: 1px solid var(--border); font-size: 15px; font-family: inherit;
}
.date-row { display: flex; gap: 10px; }
.date-row > div { flex: 1; }
.inquire-form button { margin-top: 18px; }
.form-status { text-align: center; font-size: 13px; min-height: 18px; margin-top: 8px; }
.or-divider { text-align: center; color: var(--muted); font-size: 13px; margin: 22px 0 4px; }

.footer { text-align: center; padding: 26px 20px 40px; color: var(--muted); font-size: 12.5px; }
.footer .employee-link { color: var(--muted); text-decoration: underline; font-size: 12px; }
