/*
Theme Name: Hotel Balneário Cabo Frio
Author: Daniel Pimenta
Description: Block theme for Hotel Balneário Cabo Frio. Ported from the Astro demo.
Version: 0.3.1
Requires at least: 6.5
Requires PHP: 7.4
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hotel-balneario
*/

/* ===== tokens ===== */
:root {
  --navy: #0a2a43;
  --navy-dark: #071e31;
  --gold: #bc9a5f;
  --gold-light: #d9c79c;
  --muted: #6b7683;
  --beige: #f1eadb;
  --border: #e2d9c6;
  --field-bg: #faf6ee;
}

/* ===== base ===== */
body {
  background: #faf6ee;
  color: #35414e;
  font-family: 'Karla', sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: var(--navy);
  text-decoration: none;
}
a:hover {
  color: var(--gold);
}
input,
select,
button {
  font-family: 'Karla', sans-serif;
}
h1,
h2,
h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  margin: 0;
}

/* reveal on scroll — site.js only tags elements that start below the fold */
[data-reveal] {
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
[data-reveal].pre {
  opacity: 0;
  transform: translateY(28px);
}
[data-reveal].in {
  opacity: 1;
  transform: none;
}

@keyframes hbFloat {
  0%,
  100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, -6px);
  }
}
@keyframes hbMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ===== shared section furniture ===== */
h2 {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1.15;
}
.kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.32em;
  font-weight: 700;
  text-transform: uppercase;
}
.section-head {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 52px;
}
.section-intro {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}
/* Vertical rhythm comes from the rules in this file, exactly as in the design.
   The editor's automatic block gap is switched off in theme.json — left on, it
   opens strips between sections and pushes the card contents apart. */

/* ===== header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: rgba(7, 26, 42, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
/* the logged-in admin bar would otherwise cover the header */
.admin-bar .site-header {
  top: 32px;
}
.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex: none;
}
.brand-mark img {
  width: 52px;
  height: 52px;
  max-width: none;
  object-fit: cover;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-name {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.brand-city {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold-light);
  font-weight: 700;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.main-nav a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 500;
}
.main-nav a:hover {
  color: var(--gold-light);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lang-switch {
  display: flex;
  gap: 8px;
}
.lang-switch a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 2px;
}
.lang-switch a.active {
  color: var(--gold-light);
  border-bottom: 1px solid var(--gold-light);
}
.lang-switch a:hover {
  color: var(--gold-light);
}
.header-wa {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-wa:hover {
  border-color: var(--gold-light);
  background: rgba(217, 199, 156, 0.12);
}
.btn-book {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.25s;
}
.btn-book:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: #fff;
  display: block;
}
.hamburger span.short {
  width: 14px;
  background: var(--gold-light);
}

/* ===== mobile menu ===== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(7, 26, 42, 0.97);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  padding: 8px;
}
.menu-close {
  position: absolute;
  top: 22px;
  right: 22px;
  background: none;
  border: none;
  color: var(--gold-light);
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
}
.menu-langs {
  display: flex;
  gap: 18px;
  margin-top: 22px;
}
.mobile-menu .menu-langs a {
  font-family: 'Karla', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.55);
  padding: 6px 4px;
}
.mobile-menu .menu-langs a.active {
  color: var(--gold-light);
  border-bottom: 1px solid var(--gold-light);
}

/* ===== sticky bar ===== */
.sticky-bar {
  position: fixed;
  /* sits below the fixed 72px header so the nav stays reachable */
  top: 72px;
  left: 0;
  right: 0;
  z-index: 55;
  background: #fff;
  box-shadow: 0 6px 28px rgba(7, 26, 42, 0.18);
  /* extra offset fully clears the translucent header when hidden */
  transform: translateY(calc(-100% - 80px));
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.admin-bar .sticky-bar {
  top: 104px;
}
.sticky-bar.show {
  transform: translateY(0);
}
.sticky-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.sticky-brand {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 17px;
  color: var(--navy);
  margin-right: auto;
  white-space: nowrap;
}
.sticky-fields {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.sticky-fields input,
.sticky-fields select {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 13px;
  color: #35414e;
  background: var(--field-bg);
}
.sticky-search {
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.25s;
}
.sticky-search:hover {
  background: var(--gold);
}

/* ===== whatsapp float ===== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 55;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(7, 26, 42, 0.3);
  transition: transform 0.25s;
}
.wa-float:hover {
  transform: scale(1.08);
}

/* ===== hero ===== */
.hero.wp-block-cover {
  min-height: 94vh;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.hero .wp-block-cover__image-background {
  filter: saturate(1.05) brightness(0.92);
}
/* The demo stacked two gradient divs over the photo. core/cover already ships one
   overlay layer sitting between image and content, so both gradients ride on it as
   background-image layers — no extra blocks and no fight with the core z-index rules,
   which win on specificity anyway. */
.hero.wp-block-cover .wp-block-cover__background {
  opacity: 1;
  /* the overlay inherits the cover's black background — at full opacity that would
     hide the photo entirely */
  background-color: transparent;
  background-image:
    radial-gradient(ellipse 70% 55% at 50% 46%, rgba(7, 26, 42, 0.5) 0%, rgba(7, 26, 42, 0) 70%),
    linear-gradient(180deg, rgba(7, 26, 42, 0.68) 0%, rgba(7, 26, 42, 0.42) 42%, rgba(7, 26, 42, 0.78) 100%);
}
.hero.wp-block-cover .wp-block-cover__inner-container {
  text-align: center;
  padding: 110px 24px 205px;
  max-width: 900px;
}
/* scroll cue — decoration only, kept out of the block tree */
.hero.wp-block-cover .wp-block-cover__inner-container::after {
  content: '';
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 26px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="26" height="26" viewBox="0 0 24 24" fill="none" stroke="%23ffffff" stroke-opacity="0.7" stroke-width="2"><path d="M6 9l6 6 6-6"/></svg>')
    no-repeat center;
  animation: hbFloat 2.6s ease-in-out infinite;
}
.hero .hero-kicker {
  margin: 16px 0 9px;
  color: var(--gold-light);
  font-size: 12px;
  letter-spacing: 0.4em;
  font-weight: 700;
  text-transform: uppercase;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.5rem, 6.4vw, 4.6rem);
  line-height: 1.08;
  text-wrap: balance;
  text-shadow: 0 2px 30px rgba(7, 26, 42, 0.4);
}
.hero .hero-sub {
  margin: 22px auto 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.6;
}

/* ===== booking widget ===== */
.widget-wrap {
  max-width: 1080px;
  margin: -96px auto 0;
  padding: 0 20px;
  position: relative;
  z-index: 10;
}
.widget {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(7, 26, 42, 0.22);
  padding: 26px 28px;
  border: 1px solid rgba(188, 154, 95, 0.25);
}
.widget-kicker {
  margin: 0 0 16px;
  font-size: 11px;
  letter-spacing: 0.28em;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
}
.widget-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
  align-items: end;
}
.widget-grid label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.widget-grid label span {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.06em;
}
.widget-grid input,
.widget-grid select {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
  font-size: 14px;
  color: #35414e;
  background: var(--field-bg);
  width: 100%;
  box-sizing: border-box;
}
.widget-search {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 14px 22px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all 0.25s;
  min-height: 47px;
}
.widget-search:hover {
  background: var(--navy);
  color: #fff;
}

/* ===== apartamentos ===== */
/* 1280 = 1240 of content + the 20px side padding. The demo relied on content-box
   sizing; WordPress sets border-box on every block, so the max-width has to carry
   the padding for the inner grid to land on the same 1240px. */
.apartments {
  max-width: 1280px;
  margin: 0 auto;
  padding: 96px 20px 40px;
}
.apto-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(7, 26, 42, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.apto-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(7, 26, 42, 0.14);
}
.card-img.wp-block-image {
  margin: 0;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.apto-card:hover .card-img img {
  transform: scale(1.05);
}
.card-body {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.card-body h3 {
  font-size: 24px;
  color: var(--navy);
}
.card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}
.card-body > p:not(.card-more) {
  flex: 1;
}
/* the demo styled a bare <a>; as a paragraph it would inherit .card-body p sizing */
.card-body p.card-more {
  font-weight: 700;
  font-size: 14px;
  line-height: normal;
  letter-spacing: 0.04em;
}
.card-more a {
  color: var(--gold);
}
.card-more a:hover {
  color: var(--navy);
}
.apto-features {
  text-align: center;
  margin: 36px auto 0;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.02em;
}
.apto-features strong {
  color: var(--navy);
}

/* ===== estrutura ===== */
.structure {
  background: var(--navy);
  margin-top: 72px;
  padding: 88px 20px;
}
.structure-inner {
  max-width: 1240px;
  margin: 0 auto;
}
.structure h2 {
  color: #fff;
}
.structure .section-intro {
  color: rgba(255, 255, 255, 0.72);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}
.feature-card.wp-block-cover {
  min-height: 360px;
  padding: 0;
  border-radius: 16px;
  overflow: hidden;
  align-items: flex-end;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}
.feature-card .wp-block-cover__image-background {
  transition: transform 0.6s ease;
}
.feature-card:hover .wp-block-cover__image-background {
  transform: scale(1.06);
}
/* same overlay trick as the hero: the design's shade div becomes the cover's own
   overlay layer, so no extra blocks and no z-index fight with core */
.feature-card.wp-block-cover .wp-block-cover__background {
  opacity: 1;
  background-color: transparent;
  background-image: linear-gradient(180deg, rgba(10, 42, 67, 0) 30%, rgba(7, 26, 42, 0.9) 100%);
}
.feature-card.wp-block-cover .wp-block-cover__inner-container {
  padding: 28px 26px 30px;
  max-width: none;
}
.feature-card .wp-block-cover__inner-container::before {
  content: '';
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(188, 154, 95, 0.92) no-repeat center / 25px 25px;
  margin-bottom: 14px;
}
.feature-pool .wp-block-cover__inner-container::before {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%230A2A43" stroke-width="1.8" stroke-linecap="round"><path d="M2 15c2-1.6 4-1.6 6 0s4 1.6 6 0 4-1.6 6 0"/><path d="M2 19c2-1.6 4-1.6 6 0s4 1.6 6 0 4-1.6 6 0"/><path d="M6 12V6a3 3 0 0 1 6 0"/></svg>');
}
.feature-restaurant .wp-block-cover__inner-container::before {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%230A2A43" stroke-width="1.8" stroke-linecap="round"><path d="M7 3v7M4 3v4a3 3 0 0 0 6 0V3M7 10v11M17 3c-2 1.5-2.5 5-2.5 8H17m0-8v18"/></svg>');
}
.feature-card h3 {
  font-size: 28px;
  color: #fff;
  line-height: 1.15;
}
.feature-card p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.55;
}
.amenities {
  margin-top: 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 36px;
}
.amenities-kicker {
  margin: 0 0 24px;
  color: var(--gold-light);
  font-size: 12px;
  letter-spacing: 0.28em;
  font-weight: 700;
  text-transform: uppercase;
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
}
.amenity {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  transition: all 0.3s;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.35;
}
.amenity:hover {
  background: rgba(188, 154, 95, 0.14);
  border-color: rgba(188, 154, 95, 0.4);
  transform: translateY(-4px);
}
/* Icons are pseudo-elements keyed by position — contentOnly stops the client from
   reordering the list, which is what keeps each icon on its own label. */
.amenity::before {
  content: '';
  display: block;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(188, 154, 95, 0.16) no-repeat center / 24px 24px;
}
.amenity:nth-child(1)::before {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23D9C79C" stroke-width="1.7" stroke-linecap="round"><path d="M4 9h12v6a4 4 0 0 1-4 4H8a4 4 0 0 1-4-4V9zM16 10h2a2 2 0 0 1 0 4h-2M7 5c0-1 .5-1 .5-2M11 5c0-1 .5-1 .5-2"/></svg>');
}
.amenity:nth-child(2)::before {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23D9C79C" stroke-width="1.7" stroke-linecap="round"><circle cx="12" cy="12" r="9"/><path d="M12 7v5l3 3"/></svg>');
}
.amenity:nth-child(3)::before {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23D9C79C" stroke-width="1.7" stroke-linecap="round"><rect x="3" y="3" width="18" height="18" rx="3"/><path d="M9 17V7h3.5a3 3 0 0 1 0 6H9"/></svg>');
}
.amenity:nth-child(4)::before {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23D9C79C" stroke-width="1.7" stroke-linecap="round"><path d="M7 12h10M4 9v6M20 9v6M7 8v8M17 8v8M2 11v2M22 11v2"/></svg>');
}
.amenity:nth-child(5)::before {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23D9C79C" stroke-width="1.7" stroke-linecap="round"><rect x="3" y="7" width="18" height="13" rx="2"/><path d="M9 7V5a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v2M3 12h18"/></svg>');
}
.amenity:nth-child(6)::before {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23D9C79C" stroke-width="1.7" stroke-linecap="round"><rect x="4" y="3" width="16" height="18" rx="2"/><circle cx="12" cy="13" r="4"/></svg>');
}
.amenity:nth-child(7)::before {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23D9C79C" stroke-width="1.7" stroke-linecap="round"><circle cx="6" cy="16" r="4"/><circle cx="18" cy="16" r="4"/><path d="M6 16l4-8h5l3 8M10 8l6 8"/></svg>');
}
.amenity:nth-child(8)::before {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23D9C79C"><circle cx="7" cy="9" r="1.8"/><circle cx="12" cy="7" r="1.8"/><circle cx="17" cy="9" r="1.8"/><ellipse cx="12" cy="15.5" rx="4.4" ry="3.6"/></svg>');
}
.amenity:nth-child(9)::before {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23D9C79C" stroke-width="1.7" stroke-linecap="round"><rect x="4" y="3" width="16" height="18" rx="2"/><path d="M12 3v18M8 10l-1.5 2L8 14M16 10l1.5 2L16 14"/></svg>');
}

/* ===== café da manhã ===== */
/* 1280 = 1240 of content + the 20px side padding. The demo relied on content-box
   sizing; WordPress sets border-box on every block, so the max-width has to carry
   the padding for the inner grid to land on the same 1240px. */
.breakfast {
  max-width: 1280px;
  margin: 0 auto;
  padding: 96px 20px;
}
.breakfast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 48px;
  align-items: center;
}
.breakfast-img.wp-block-image {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(7, 26, 42, 0.16);
}
.breakfast-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4/3;
}
.breakfast-text {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.75;
}
.chips {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip {
  background: #f0e7d3;
  color: #8a6d3b;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}
.marquee {
  margin-top: 56px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: hbMarquee 170s linear infinite;
}
.marquee-img {
  height: 180px;
  width: auto;
  border-radius: 12px;
  object-fit: cover;
  flex: none;
}

/* ===== eventos ===== */
.events {
  background: var(--beige);
  padding: 96px 20px;
}
.events-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 48px;
  align-items: center;
}
.events-grid > * {
  margin-block: 0;
}
.events-text {
  margin: 20px 0 0;
  color: #5c6470;
  font-size: 16.5px;
  line-height: 1.75;
}
.events-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.events-list li {
  display: flex;
  gap: 10px;
  align-items: baseline;
  color: #35414e;
  font-size: 15px;
}
/* the demo wrapped a <span class="dash"> in every item; core/list has no room for
   that, so the dash is drawn instead of typed */
.events-list li::before {
  content: '—';
  color: var(--gold);
  font-weight: 800;
}
.events-cta {
  margin-top: 28px;
}
.events-cta .wp-block-button__link {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  transition: all 0.25s;
}
.events-cta .wp-block-button__link:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}
.events-img.wp-block-image {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(7, 26, 42, 0.14);
  aspect-ratio: 4/3;
}
.events-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== cabo frio ===== */
/* 1280 = 1240 of content + the 20px side padding. The demo relied on content-box
   sizing; WordPress sets border-box on every block, so the max-width has to carry
   the padding for the inner grid to land on the same 1240px. */
.city {
  max-width: 1280px;
  margin: 0 auto;
  padding: 96px 20px;
}
.city .card-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.city-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(7, 26, 42, 0.08);
  transition: transform 0.3s;
}
.city-card:hover {
  transform: translateY(-6px);
}
.city-img.wp-block-image {
  margin: 0;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.city-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.city-card:hover .city-img img {
  transform: scale(1.05);
}
.city-body {
  padding: 22px 24px 26px;
}
.city-body h3 {
  margin: 0 0 8px;
  font-size: 22px;
  color: var(--navy);
}
.city-body p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ===== prova social ===== */
.social {
  background: var(--navy);
  padding: 88px 20px;
}
.social-inner {
  max-width: 1240px;
  margin: 0 auto;
}
.social-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 48px;
}
.score-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  flex: none;
}
.score {
  font-weight: 800;
  font-size: 20px;
  color: var(--navy);
}
.score-of {
  font-size: 8px;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-top: 3px;
}
.score-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.score-headline {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}
.score-note {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12.5px;
  font-family: monospace;
}
.quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.quotes .wp-block-quote {
  margin: 0;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
/* the demo typed the opening quote mark as a span; drawing it keeps the block tree
   to what the client actually edits */
.quotes .wp-block-quote::before {
  content: '“';
  color: var(--gold-light);
  font-size: 26px;
  font-family: 'Cormorant Garamond', serif;
  line-height: 0.6;
}
.quotes .wp-block-quote p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  line-height: 1.7;
  flex: 1;
}
.quotes cite {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  font-style: normal;
}
.quotes .sample {
  color: var(--gold);
  font-family: monospace;
  font-size: 11px;
}

/* ===== CTA ===== */
.cta.wp-block-cover {
  min-height: 0;
  padding: 84px 20px;
  text-align: center;
}
.cta.wp-block-cover .wp-block-cover__background {
  opacity: 1;
  background-color: transparent;
  /* same navy veil as the hero: keeps white copy readable over any photo */
  background-image: linear-gradient(180deg, rgba(7, 26, 42, 0.82) 0%, rgba(10, 42, 67, 0.6) 50%, rgba(7, 26, 42, 0.86) 100%);
}
.cta.wp-block-cover .wp-block-cover__inner-container {
  max-width: 720px;
}
.cta h2 {
  color: #fff;
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  text-wrap: balance;
  margin: 0 2px;
  text-shadow: 0 2px 30px rgba(7, 26, 42, 0.4);
}
.cta p {
  margin: 18px auto 0;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  line-height: 1.6;
}
.cta-button {
  margin-top: 32px;
  justify-content: center;
}
.cta-button .wp-block-button__link {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 17px 38px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.04em;
  transition: all 0.25s;
  box-shadow: 0 14px 34px rgba(7, 26, 42, 0.45);
}
.cta-button .wp-block-button__link:hover {
  background: var(--gold-light);
  color: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(7, 26, 42, 0.55);
}

/* ===== footer ===== */
.footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 72px 20px 0;
}
.footer-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-logo {
  background: #fff;
  border-radius: 10px;
  padding: 10px 14px;
  display: inline-flex;
  align-self: flex-start;
}
.footer-logo img {
  height: 34px;
  width: auto;
  display: block;
}
.footer-brand p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}
.pet-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  border: 1px solid rgba(188, 154, 95, 0.5);
  color: var(--gold-light);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-title {
  color: var(--gold-light);
  font-size: 12px;
  letter-spacing: 0.26em;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.footer-address {
  font-size: 14px;
  line-height: 1.7;
}
.footer-col a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}
.footer-col a:hover {
  color: var(--gold-light);
}
.footer-bottom {
  max-width: 1240px;
  margin: 56px auto 0;
  padding: 22px 0 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}
.footer-bottom span {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.45);
}

/* ===== página de apartamentos ===== */
.rooms-hero.wp-block-cover {
  min-height: 62vh;
  padding: 0;
  align-items: flex-end;
}
.rooms-hero.wp-block-cover .wp-block-cover__background {
  opacity: 1;
  background-color: transparent;
  background-image: linear-gradient(180deg, rgba(7, 26, 42, 0.74) 0%, rgba(7, 26, 42, 0.4) 45%, rgba(7, 26, 42, 0.85) 100%);
}
.rooms-hero.wp-block-cover .wp-block-cover__image-background {
  filter: saturate(1.04) brightness(0.9);
}
.rooms-hero.wp-block-cover .wp-block-cover__inner-container {
  /* 1280 = 1240 of content + the side padding, same border-box compensation as the
     other sections */
  max-width: 1280px;
  padding: 150px 20px 56px;
  text-align: left;
}
.rooms-crumbs {
  margin: 0 0 18px;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
}
.rooms-crumbs a {
  color: rgba(255, 255, 255, 0.7);
}
.rooms-crumbs a:hover {
  color: var(--gold-light);
}
.rooms-crumbs .crumb-sep {
  color: var(--gold);
  margin: 0 6px;
}
.rooms-crumbs .crumb-here {
  color: var(--gold-light);
}
.rooms-hero h1 {
  margin: 0;
  max-width: 820px;
  color: #fff;
  font-size: clamp(2.3rem, 5.6vw, 4rem);
  line-height: 1.08;
  text-wrap: balance;
  text-shadow: 0 2px 30px rgba(7, 26, 42, 0.4);
}
.rooms-hero .hero-kicker {
  margin: 0 0 14px;
  color: var(--gold-light);
  font-size: 12px;
  letter-spacing: 0.4em;
  font-weight: 700;
  text-transform: uppercase;
}
.rooms-hero-sub {
  margin: 20px 0 0;
  max-width: 580px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.65;
}

.rooms-jump {
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.rooms-jump-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.rooms-jump-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11.5px;
  letter-spacing: 0.24em;
  font-weight: 700;
  text-transform: uppercase;
  margin-right: 8px;
}
.rooms-jump-pill a {
  display: block;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 13.5px;
  font-weight: 600;
}
.rooms-jump-pill a:hover {
  background: rgba(188, 154, 95, 0.18);
  border-color: var(--gold);
  color: var(--gold-light);
}
.rooms-jump-all {
  margin-left: auto;
  font-size: 13.5px;
  font-weight: 700;
}
.rooms-jump-all a {
  color: var(--gold-light);
}
.rooms-jump-all a:hover {
  color: #fff;
}

.room {
  max-width: 1280px;
  margin: 0 auto;
  padding: 88px 20px 0;
}
.room-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 52px;
  align-items: center;
}
.room-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.room-shot.wp-block-image {
  grid-column: span 2;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(7, 26, 42, 0.16);
}
.room-shot img {
  width: 100%;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}
/* Photos the hotel has not sent yet. core/image renders nothing on the front end
   until it has a src, so visitors see one photo instead of an empty box; this dashed
   frame is what the client sees in the editor, where the slot is fillable. */
.room-slot.wp-block-image {
  margin: 0;
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  border: 1px dashed var(--border);
  background: rgba(226, 217, 198, 0.25);
}
.room-slot img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.room-tags {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.room-badge {
  font-size: 11px;
  letter-spacing: 0.22em;
  font-weight: 700;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
}
.room-badge-navy {
  background: var(--navy);
  color: var(--gold-light);
}
.room-badge-beige {
  background: #f0e7d3;
  color: #8a6d3b;
}
.room-capacity {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.24em;
  font-weight: 700;
  text-transform: uppercase;
}
.room-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.14;
}
.room-text {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.75;
}
.room-specs {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 18px;
}
.spec-card {
  background: #fff;
  border: 1px solid #ede3cf;
  border-radius: 12px;
  padding: 18px 20px;
}
.spec-label {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.2em;
  font-weight: 700;
  text-transform: uppercase;
}
.spec-value {
  margin: 0;
  color: #35414e;
  font-size: 14.5px;
  line-height: 1.65;
}
.room-copy .chips {
  margin-top: 22px;
  gap: 9px;
}
.room-cta {
  margin-top: 30px;
}
.room-cta .wp-block-button__link {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 15px 32px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14.5px;
  letter-spacing: 0.03em;
  transition: all 0.25s;
}
.room-cta .wp-block-button__link:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
}

/* ===== comparativo ===== */
.compare {
  background: var(--navy);
  margin-top: 96px;
  padding: 88px 20px;
}
.compare-inner {
  max-width: 1240px;
  margin: 0 auto;
}
.compare h2 {
  color: #fff;
}
.compare .section-head {
  max-width: 620px;
}
.compare .section-intro {
  color: rgba(255, 255, 255, 0.72);
}
.compare-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
/* 1px gaps over a translucent background draw the grid lines */
.compare-grid {
  min-width: 760px;
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  overflow: hidden;
}
.compare-corner,
.compare-label {
  background: var(--navy);
}
.compare-label {
  padding: 18px 20px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.compare-head {
  background: rgba(255, 255, 255, 0.04);
  padding: 22px 20px;
  text-align: center;
}
.compare-head.is-featured {
  background: rgba(188, 154, 95, 0.16);
}
.compare-name {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
}
.compare-people {
  margin: 6px 0 0;
  color: var(--gold-light);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  font-weight: 700;
  text-transform: uppercase;
}
.compare-cell {
  background: rgba(255, 255, 255, 0.03);
  padding: 18px 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13.5px;
  line-height: 1.5;
}
.compare-cell.is-featured {
  background: rgba(188, 154, 95, 0.1);
}
.compare-cell.is-yes {
  color: var(--gold-light);
  font-size: 14px;
  font-weight: 700;
}
.compare-note {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  text-align: center;
}

/* ===== em todos os apartamentos ===== */
.included {
  max-width: 1280px;
  margin: 0 auto;
  padding: 96px 20px;
}
.included .section-head {
  max-width: 600px;
  margin-bottom: 48px;
}
.included h2 {
  font-size: clamp(2rem, 4vw, 2.7rem);
}
.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 16px;
}
.included-item {
  background: #fff;
  border: 1px solid #ede3cf;
  border-radius: 14px;
  padding: 26px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 13px;
  transition: all 0.3s;
  color: var(--navy);
  font-weight: 600;
  font-size: 14.5px;
  line-height: 1.4;
}
.included-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(7, 26, 42, 0.1);
}
/* icons keyed by position, same approach as the amenity tiles on the home page */
.included-item::before {
  content: '';
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #f0e7d3 no-repeat center / 23px 23px;
}
.included-item:nth-child(1)::before {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23BC9A5F" stroke-width="1.7" stroke-linecap="round"><path d="M3 12h18M6 8V6a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v2M5 16h14M8 20h8"/></svg>');
}
.included-item:nth-child(2)::before {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23BC9A5F" stroke-width="1.7" stroke-linecap="round"><rect x="2" y="4" width="20" height="13" rx="2"/><path d="M8 21h8M12 17v4"/></svg>');
}
.included-item:nth-child(3)::before {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23BC9A5F" stroke-width="1.7" stroke-linecap="round"><rect x="5" y="3" width="14" height="18" rx="2"/><path d="M5 11h14M9 7h1"/></svg>');
}
.included-item:nth-child(4)::before {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23BC9A5F" stroke-width="1.7" stroke-linecap="round"><path d="M2 9c6-5 14-5 20 0M5.5 12.5c4-3.3 9-3.3 13 0M9 16c2-1.7 4-1.7 6 0"/><circle cx="12" cy="19.5" r="1"/></svg>');
}
.included-item:nth-child(5)::before {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23BC9A5F" stroke-width="1.7" stroke-linecap="round"><path d="M3 10h18M5 10V7h14v3M6 10v10M18 10v10M9 14h6"/></svg>');
}
.included-item:nth-child(6)::before {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23BC9A5F" stroke-width="1.7" stroke-linecap="round"><path d="M4 4h6l2 5-2.5 1.5a11 11 0 0 0 4 4L15 12l5 2v6h-3A13 13 0 0 1 4 7V4z"/></svg>');
}
.included-item:nth-child(7)::before {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23BC9A5F" stroke-width="1.7" stroke-linecap="round"><path d="M6 3v9M6 12a6 6 0 0 0 12 0H6zM18 12V3M15 21h-6"/><path d="M12 18v3"/></svg>');
}
.included-item:nth-child(8)::before {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23BC9A5F" stroke-width="1.7" stroke-linecap="round"><path d="M4 9h12v6a4 4 0 0 1-4 4H8a4 4 0 0 1-4-4V9zM16 10h2a2 2 0 0 1 0 4h-2M7 5c0-1 .5-1 .5-2M11 5c0-1 .5-1 .5-2"/></svg>');
}

/* ===== políticas ===== */
.policies {
  background: var(--beige);
  padding: 88px 20px;
}
.policies-inner {
  max-width: 1240px;
  margin: 0 auto;
}
.policies .section-head {
  max-width: 620px;
  margin-bottom: 44px;
}
.policies h2 {
  font-size: clamp(2rem, 4vw, 2.7rem);
}
.policies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
}
.policy-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 26px;
  box-shadow: 0 10px 30px rgba(7, 26, 42, 0.07);
}
.policy-label {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.2em;
  font-weight: 700;
  text-transform: uppercase;
}
.policy-card p {
  margin: 0;
  color: #35414e;
  font-size: 15px;
  line-height: 1.7;
}
.policy-card a {
  color: var(--gold);
  font-weight: 700;
}

/* ===== CTA da página de apartamentos ===== */
/* gold veil instead of the home page's navy one — copy here is navy on light */
.rooms-cta.wp-block-cover {
  min-height: 0;
  padding: 84px 20px;
  text-align: center;
}
.rooms-cta.wp-block-cover .wp-block-cover__background {
  opacity: 1;
  background-color: transparent;
  background-image: linear-gradient(135deg, rgba(188, 154, 95, 0.62) 0%, rgba(217, 199, 156, 0.5) 100%);
}
.rooms-cta.wp-block-cover .wp-block-cover__inner-container {
  max-width: 720px;
}
.rooms-cta h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(2rem, 4.4vw, 3rem);
  line-height: 1.15;
  text-wrap: balance;
}
.rooms-cta p {
  margin: 0;
  color: rgba(10, 42, 67, 0.75);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 600;
}
.rooms-cta-button {
  margin-top: 32px;
  justify-content: center;
}
.rooms-cta-button .wp-block-button__link {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  padding: 17px 38px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.04em;
  transition: all 0.25s;
  box-shadow: 0 14px 34px rgba(10, 42, 67, 0.3);
}
.rooms-cta-button .wp-block-button__link:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(10, 42, 67, 0.4);
}

/* ===== responsive ===== */
@media (max-width: 920px) {
  .main-nav,
  .lang-switch,
  .sticky-fields .desktop-only {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}
@media (min-width: 921px) {
  .mobile-menu.open {
    display: none;
  }
}
@media (max-width: 560px) {
  .header-inner {
    padding: 0 14px;
    gap: 10px;
  }
  .header-actions {
    gap: 8px;
  }
  /* the floating button already covers WhatsApp on small screens */
  .header-wa {
    display: none;
  }
  .brand-name {
    font-size: 15px;
  }
  .brand-city {
    font-size: 9px;
  }
  .btn-book {
    padding: 9px 16px;
    font-size: 13px;
  }
  /* sticky bar collapses to a single row: dates + search */
  .sticky-brand {
    display: none;
  }
  .sticky-inner {
    padding: 10px 14px;
  }
  .sticky-fields {
    width: 100%;
    flex-wrap: nowrap;
  }
  .sticky-fields input {
    flex: 1;
    min-width: 0;
  }
  .sticky-search {
    flex: none;
  }
  /* shorter hero: copy rises above the horizon and the booking card enters the first fold */
  .hero.wp-block-cover {
    min-height: 70svh;
  }
  .hero h1 {
    margin-top: 8px;
  }
  /* compact 2-column amenity tiles */
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .amenity {
    padding: 16px 10px;
    gap: 10px;
    font-size: 13px;
  }
  .amenity::before {
    width: 40px;
    height: 40px;
    background-size: 20px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
