/* ==========================================================================
   Hotel Cívico — styles.css
   Paleta inspirada no logo: teal escuro + creme + areia.
   ========================================================================== */

:root {
  --primary: #1d6f78;
  --primary-dark: #155057;
  --primary-darker: #0f3a40;
  --primary-light: #e6f1f2;
  --primary-soft: #b9d4d7;
  --accent: #c8a679;
  --accent-dark: #8e7144;

  --bg: #fbfaf6;
  --bg-alt: #f4f0e8;
  --surface: #ffffff;

  --text: #1a2e30;
  --text-muted: #5a6b6d;
  --text-light: #ffffff;
  --border: #e5e1d8;
  --border-soft: #efece4;

  --shadow-sm: 0 1px 2px rgba(15, 58, 64, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 58, 64, 0.08);
  --shadow-lg: 0 20px 50px rgba(15, 58, 64, 0.12);

  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 14px;

  --container: 1200px;
  --header-h: 88px;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }

a { color: var(--primary); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--primary-dark); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--text);
}

h1 { font-size: clamp(2.25rem, 4.5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 0.95rem; font-family: var(--font-body); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--primary-dark); }

p { margin: 0 0 1em; color: var(--text-muted); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.eyebrow--light { color: var(--accent); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-head--row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  max-width: none;
}
.section-head--row > div { max-width: 560px; }
.section-head h2 { margin-bottom: 8px; }
.section-head p { font-size: 1.05rem; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* --- Buttons --------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.25s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--primary);
  color: var(--text-light);
  border-color: var(--primary);
}
.btn--primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--text-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn--ghost:hover {
  background: var(--primary);
  color: var(--text-light);
}

.btn--ghost-light {
  background: rgba(255,255,255,0.08);
  color: var(--text-light);
  border-color: rgba(255,255,255,0.6);
  backdrop-filter: blur(4px);
}
.btn--ghost-light:hover {
  background: var(--text-light);
  color: var(--primary-dark);
  border-color: var(--text-light);
}

.link-arrow {
  display: inline-block;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--primary);
  letter-spacing: 0.02em;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: all 0.2s var(--ease);
}
.link-arrow:hover {
  color: var(--primary-dark);
  border-bottom-color: var(--primary-dark);
}
.link-arrow--light { color: var(--accent); }
.link-arrow--light:hover { color: #fff; border-bottom-color: #fff; }

/* --- Topbar ---------------------------------------------------------- */

.topbar {
  background: var(--primary-darker);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  gap: 16px;
}
.topbar__location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
}
.topbar__location:hover { color: #fff; }
.topbar__lang { display: flex; gap: 6px; }
.lang {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  padding: 3px 10px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.lang--active, .lang:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}

/* --- Header / Nav ---------------------------------------------------- */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 246, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}
.logo:hover { color: var(--text); }
.logo img { width: 56px; height: 56px; }
.logo__text { display: flex; flex-direction: column; line-height: 1.1; }
.logo__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.logo__tag {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav a {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  padding: 4px 0;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav a:hover { color: var(--primary); }
.nav a:hover::after { transform: scaleX(1); }
.nav__cta {
  background: var(--primary);
  color: var(--text-light) !important;
  padding: 10px 20px !important;
  border-radius: var(--radius);
  letter-spacing: 0.04em;
}
.nav__cta::after { display: none; }
.nav__cta:hover { background: var(--primary-dark); }
.nav__close { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s var(--ease);
}

/* --- Booking widget -------------------------------------------------- */

.booking {
  background: var(--surface);
  border-bottom: 1px solid var(--border-soft);
  padding: 24px 0;
}
.booking__form {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr auto;
  gap: 16px;
  align-items: end;
}
.booking__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}
.booking__field label {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.booking__field input,
.guests-toggle {
  appearance: none;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.2s var(--ease);
}
.booking__field input:focus,
.guests-toggle:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}

.guests-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  cursor: pointer;
  text-align: left;
}

.guests-panel {
  position: absolute;
  top: calc(100% + 6px);
  left: 0; right: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 18px;
  z-index: 20;
}
.guests-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-soft);
}
.guests-row:last-of-type { border-bottom: 0; }
.guests-row strong { display: block; font-size: 0.95rem; }
.guests-row small { color: var(--text-muted); font-size: 0.8rem; }

.counter {
  display: flex;
  align-items: center;
  gap: 12px;
}
.counter button {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.counter button:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.counter span { min-width: 16px; text-align: center; font-weight: 600; }

.guests-panel__done {
  width: 100%;
  margin-top: 14px;
  padding: 10px;
  background: var(--primary);
  color: #fff;
  border: 0;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
}

.booking__submit { height: 50px; }

/* --- Hero ------------------------------------------------------------ */

.hero {
  position: relative;
  color: var(--text-light);
  min-height: clamp(480px, 70vh, 720px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 58, 64, 0.45) 0%, rgba(15, 58, 64, 0.7) 100%),
    linear-gradient(135deg, #1d6f78 0%, #155057 50%, #0f3a40 100%);
  background-size: cover;
  background-position: center;
}
.hero__inner {
  position: relative;
  z-index: 1;
  padding: 80px 24px;
  max-width: 820px;
}
.hero__eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 8px 16px;
  border: 1px solid rgba(200, 166, 121, 0.5);
  border-radius: 999px;
  margin-bottom: 24px;
}
.hero__title {
  color: var(--text-light);
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.hero__lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.92);
  max-width: 640px;
  margin-bottom: 36px;
}
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* --- Pillars --------------------------------------------------------- */

.pillars { padding: 96px 0; background: var(--bg); }
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.pillar-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  transition: all 0.3s var(--ease);
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-soft);
}
.pillar-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  margin-bottom: 24px;
}
.pillar-card h3 { margin-bottom: 12px; }
.pillar-card p { margin-bottom: 20px; }

/* --- Rooms preview --------------------------------------------------- */

.rooms-preview {
  padding: 96px 0;
  background: var(--bg-alt);
}
.rooms-carousel {
  position: relative;
  margin-top: 16px;
}
.rooms-carousel__track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.room-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.room-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.room-card__media {
  position: relative;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
}
.room-card__badge {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(255,255,255,0.95);
  color: var(--primary-dark);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}
.room-card__body {
  padding: 24px 24px 28px;
}
.room-card__body h3 { margin-bottom: 8px; }
.room-card__body p { font-size: 0.94rem; margin-bottom: 16px; }

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 1.4rem;
  color: var(--primary-dark);
  cursor: pointer;
  z-index: 5;
  box-shadow: var(--shadow-sm);
  display: none;
  transition: all 0.2s var(--ease);
}
.carousel-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.carousel-btn--prev { left: -22px; }
.carousel-btn--next { right: -22px; }

/* --- Split sections (Restaurant / Events) ---------------------------- */

.split { padding: 96px 0; background: var(--surface); }
.split + .split { background: var(--bg); }
.split__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split--reverse .split__inner { direction: rtl; }
.split--reverse .split__inner > * { direction: ltr; }

.split__media {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.split__body h2 { margin-bottom: 20px; }

.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
}
.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: var(--text);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 18px; height: 18px;
  background: var(--primary-light);
  border-radius: 50%;
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 5px; top: 11px;
  width: 8px; height: 4px;
  border-left: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(-45deg);
}

/* --- Gallery --------------------------------------------------------- */

.gallery { padding: 96px 0; background: var(--bg); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}
.gallery__item {
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery__item span {
  color: rgba(255,255,255,0.6);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.gallery__item:nth-child(1) { grid-row: span 2; }
.gallery__item:nth-child(4) { grid-column: span 2; }

/* --- Informações importantes ----------------------------------------- */

.info { padding: 96px 0; background: var(--surface); }
.info__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.info-card {
  background: var(--bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}
.info-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: var(--radius);
  background: var(--primary-light);
  color: var(--primary);
  margin-bottom: 18px;
}
.info-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.info-card p { color: var(--text); margin-bottom: 8px; }
.info-card p:last-child { margin-bottom: 0; }
.info-card p strong { color: var(--primary-dark); font-weight: 600; }
.info-card small { display: block; color: var(--text-muted); font-size: 0.84rem; line-height: 1.5; }

.policy {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
}
.policy > h3 { margin-bottom: 20px; }
.policy__list { list-style: none; padding: 0; margin: 0 0 20px; }
.policy__list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
  color: var(--text);
}
.policy__list li:last-child { border-bottom: 0; }
.policy__tag {
  flex: 0 0 auto;
  min-width: 150px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 7px 16px;
  border-radius: 999px;
}
.policy__tag--ok { background: #e3f1e8; color: #2f7d4f; }
.policy__tag--half { background: #faf0db; color: #946a1c; }
.policy__tag--no { background: #f8e4e4; color: #b23b3b; }
.policy__note { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 16px; }
.policy__terms {
  margin: 0;
  padding-top: 16px;
  border-top: 1px dashed var(--border);
  color: var(--text-muted);
  font-size: 0.88rem;
  font-style: italic;
}

@media (max-width: 960px) {
  .info__grid { grid-template-columns: 1fr; }
  .policy { padding: 28px 24px; }
  .policy__list li { flex-direction: column; align-items: flex-start; gap: 6px; }
  .policy__tag { min-width: 0; }
}

/* --- Newsletter ------------------------------------------------------ */

.newsletter {
  background: var(--primary-dark);
  color: var(--text-light);
  padding: 80px 0;
}
.newsletter__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.newsletter h2 { color: #fff; margin-bottom: 12px; }
.newsletter p { color: rgba(255,255,255,0.78); }

.newsletter__form { display: flex; flex-direction: column; gap: 12px; }
.newsletter__form input {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-family: inherit;
  font-size: 0.95rem;
  color: #fff;
}
.newsletter__form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter__form input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,255,255,0.12);
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.78);
  cursor: pointer;
}
.checkbox input { margin-top: 4px; accent-color: var(--accent); }

/* --- Footer ---------------------------------------------------------- */

.footer {
  background: var(--primary-darker);
  color: rgba(255,255,255,0.78);
  padding: 80px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer h4 { color: var(--accent); margin-bottom: 16px; }
.footer p { color: rgba(255,255,255,0.78); }
.footer a { color: rgba(255,255,255,0.85); }
.footer a:hover { color: #fff; }

.footer__brand img { margin-bottom: 18px; }

.social { display: flex; gap: 12px; }
.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.85);
  transition: all 0.2s var(--ease);
}
.social a:hover {
  background: var(--accent);
  color: var(--primary-darker);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-right: 72px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}
.footer__bottom small a { color: inherit; }
.footer__bottom-links { display: flex; align-items: center; gap: 8px 20px; flex-wrap: wrap; }

/* --- Quartos page ---------------------------------------------------- */

.page-hero {
  position: relative;
  color: #fff;
  min-height: 360px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero__inner {
  position: relative;
  z-index: 1;
  padding: 80px 24px;
}
.page-hero h1 {
  color: #fff;
  margin-bottom: 12px;
}
.page-hero p {
  color: rgba(255,255,255,0.88);
  max-width: 620px;
  font-size: 1.05rem;
}

.nav a.is-active { color: var(--primary); }
.nav a.is-active::after { transform: scaleX(1); }

.room-detail { padding: 96px 0; background: var(--bg); }
.room-detail--alt { background: var(--bg-alt); }
.room-detail__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: start;
}
.room-detail__inner--reverse { direction: rtl; }
.room-detail__inner--reverse > * { direction: ltr; }

.room-detail__gallery { display: flex; flex-direction: column; gap: 12px; }
.room-detail__hero {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.room-detail__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.room-detail__thumbs > div {
  aspect-ratio: 1/1;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.room-detail__thumbs > div:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.room-detail__body h2 { margin-bottom: 16px; }
.room-detail__body > p { font-size: 1.05rem; margin-bottom: 24px; }

.specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}
.specs > div { display: flex; flex-direction: column; gap: 4px; }
.specs strong {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}
.specs span { font-size: 0.95rem; color: var(--text); }

.room-detail__body h4 { margin-top: 8px; margin-bottom: 14px; }

.note {
  font-size: 0.88rem;
  color: var(--text-muted);
  background: var(--surface);
  border-left: 3px solid var(--accent);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin: 24px 0;
}

.rate-table {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 28px;
}
.rate-table h4 { margin-top: 0; margin-bottom: 12px; }
.rate-table table { width: 100%; border-collapse: collapse; }
.rate-table td {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: 0.95rem;
}
.rate-table tr:last-child td { border-bottom: 0; }
.rate-table td:last-child { text-align: right; font-weight: 600; color: var(--primary-dark); }
.rate-note { margin: 0; color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

@media (max-width: 960px) {
  .room-detail__inner,
  .room-detail__inner--reverse { grid-template-columns: 1fr; gap: 32px; direction: ltr; }
  .specs { grid-template-columns: 1fr 1fr; }
  .room-detail { padding: 64px 0; }
  .page-hero { min-height: 280px; }
  .page-hero__inner { padding: 56px 24px; }
}

/* --- Floating WhatsApp ----------------------------------------------- */

.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 40;
  transition: transform 0.2s var(--ease);
}
.whatsapp-float:hover {
  transform: scale(1.08);
  color: #fff;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 960px) {
  :root { --header-h: 72px; }

  .topbar__location { font-size: 0.78rem; }

  .nav {
    position: fixed;
    inset: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 80px 32px;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
  }
  .nav.is-open { transform: translateX(0); }
  .nav a { font-size: 1.2rem; }
  .nav__close {
    display: block;
    position: absolute;
    top: 24px; right: 24px;
    background: transparent;
    border: 0;
    font-size: 2rem;
    color: var(--text);
    cursor: pointer;
  }
  .hamburger { display: flex; }

  .booking__form {
    grid-template-columns: 1fr 1fr;
  }
  .booking__submit { grid-column: 1 / -1; }

  .pillars__grid,
  .rooms-carousel__track,
  .gallery__grid {
    grid-template-columns: 1fr;
  }

  .gallery__grid { grid-auto-rows: 200px; }
  .gallery__item:nth-child(1),
  .gallery__item:nth-child(4) { grid-row: auto; grid-column: auto; }

  .split__inner { grid-template-columns: 1fr; gap: 40px; }
  .split--reverse .split__inner { direction: ltr; }

  .section-head--row { flex-direction: column; align-items: flex-start; }

  .newsletter__inner,
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom-inner { flex-direction: column; align-items: flex-start; padding-right: 0; }
  .footer__bottom-links { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (max-width: 540px) {
  .topbar__inner { flex-direction: column; gap: 6px; padding: 8px 16px; }
  .container { padding: 0 16px; }
  .pillars, .rooms-preview, .split, .gallery { padding: 64px 0; }
  .newsletter, .footer { padding-top: 56px; }
  .booking__form { grid-template-columns: 1fr; }
  .hero__inner { padding: 64px 16px; }
}
