/* ==========================================================================
   Shivananda Lodge, Bankura — stylesheet
   Palette D "Editorial Charcoal": mostly monochrome, single terracotta accent.
   Type: Fraunces (display serif) + Inter (body). Square, editorial, un-generic.
   ========================================================================== */

:root {
  --ink: #181818;
  --ink-2: #232120;          /* warm near-black for dark bands */
  --ink-3: #2f2b28;
  --paper: #f7f5f0;          /* paper white page base */
  --paper-2: #efece4;        /* slightly deeper stone */
  --line: #e2ddd2;           /* hairline on paper */
  --white: #ffffff;
  --accent: #a63c2a;         /* single terracotta accent */
  --accent-dark: #83301f;
  --accent-soft: #f0e3df;
  --text: #2a2724;
  --muted: #4f4a43;
  --muted-2: #6b655e;
  --shadow-soft: 0 12px 34px rgba(24, 22, 20, .10);
  --shadow-strong: 0 26px 60px rgba(24, 18, 12, .22);
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Karla", "Segoe UI", Roboto, Arial, sans-serif;
  --container: 1180px;
  --radius: 3px;
}

html[lang="bn"] {
  --font-display: "Baloo Da 2", "Hind Siliguri", "Noto Sans Bengali", sans-serif;
  --font-body: "Hind Siliguri", "Noto Sans Bengali", sans-serif;
}
html[lang="bn"] body { line-height: 1.8; }
html[lang="bn"] .nav-links { gap: 0; }
html[lang="bn"] .nav-item > a {
  text-transform: none; letter-spacing: 0; font-size: .82rem;
  padding: 10px 10px; white-space: nowrap;
}
html[lang="bn"] .lang-switch { white-space: nowrap; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 15px; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--paper);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  margin: 0 0 .5em; line-height: 1.14; font-weight: 600;
  letter-spacing: -.01em; color: var(--ink);
}
p { margin: 0 0 1em; text-align: justify; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.section { padding: 88px 0; position: relative; z-index: 1; }
.section-tight { padding: 54px 0; }
/* light sections are semi-transparent so the drifting-icon layer whispers through */
.section-cream { background: transparent; }
.section-white { background: rgba(255,255,255,.72); }
.section-dark { background: var(--ink); color: rgba(247,245,240,.82); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  letter-spacing: .26em; text-transform: uppercase;
  font-size: .7rem; font-weight: 600; color: var(--accent);
  margin-bottom: 14px;
}
.section-dark .eyebrow { color: #d98a72; }
.section-head { max-width: 760px; margin: 0 auto 52px; }
.section-head.center { text-align: center; max-width: 860px; }
.section-head h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
.section-head::after { content: ""; display: block; width: 54px; height: 3px; background: var(--accent); margin-top: 18px; }
.section-head.center::after { margin-left: auto; margin-right: auto; }
.lede { color: var(--muted); font-size: 1.06rem; text-align: left; }
.section-head.center .lede { text-align: center; font-size: 1rem; max-width: 720px; margin-left: auto; margin-right: auto; }

/* Snippet-directive answer blocks — quotable by AI Overviews, natural on page */
.snippet-answer {
  font-size: 1.1rem; font-weight: 500; color: var(--ink);
  background: var(--white); border-left: 3px solid var(--accent);
  padding: 20px 24px; margin: 18px 0 26px; box-shadow: var(--shadow-soft);
  text-align: justify;
}
.section p a:not(.btn), .split p a:not(.btn), .snippet-answer a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(166,60,42,.4);
  text-underline-offset: 3px;
  font-weight: 600;
}
.section p a:not(.btn):hover, .split p a:not(.btn):hover, .snippet-answer a:hover { text-decoration-color: var(--accent); }
.section-dark p a:not(.btn), .cta-banner p a:not(.btn) { color: #e5b96a; text-decoration-color: rgba(229,185,106,.5); }
.section-dark .snippet-answer { background: rgba(255,255,255,.05); color: rgba(247,245,240,.92); }

/* ---------- Buttons: square, two-tone, right-edge accent ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 26px; border-radius: 0;
  font-weight: 600; font-size: .82rem; letter-spacing: .04em; text-transform: uppercase;
  cursor: pointer; border: 1px solid transparent; border-right-width: 4px;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--ink); color: var(--white); border-right-color: var(--accent); }
.btn-gold:hover { background: var(--accent); border-right-color: var(--ink); }
.btn-terracotta { background: var(--accent); color: var(--white); border-right-color: var(--ink); }
.btn-terracotta:hover { background: var(--accent-dark); border-right-color: var(--accent); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,.35); color: var(--white); border-right-color: var(--accent); }
.btn-outline:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.7); border-right-color: var(--accent); }
.btn-outline-dark { background: transparent; border-color: rgba(24,24,24,.22); color: var(--ink); border-right-color: var(--accent); }
.btn-outline-dark:hover { border-color: var(--ink); border-right-color: var(--accent); }
.btn-sm { padding: 10px 18px; font-size: .72rem; border-right-width: 3px; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Top utility bar ---------- */
.topbar { background: var(--ink); color: rgba(247,245,240,.7); font-size: .8rem; }
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 9px 24px; flex-wrap: wrap; }
.topbar a { display: inline-flex; align-items: center; gap: 6px; }
.topbar-links { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar-links a:hover { color: #d98a72; }
.topbar-address { color: rgba(247,245,240,.5); }

/* ---------- Header / nav (white, centered, dropdowns) ---------- */
.site-header {
  position: sticky; top: 0; z-index: 500;
  background: rgba(255,255,255,.96); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line); transition: box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: 0 8px 24px rgba(24,22,20,.08); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--ink); }
.brand-mark {
  width: 44px; height: 44px; background: var(--ink); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600; font-size: 1.25rem;
  flex-shrink: 0; border-right: 3px solid var(--accent);
}
.brand-text { line-height: 1.1; }
.brand-text strong { display: block; font-family: var(--font-display); font-size: 1.18rem; letter-spacing: -.01em; color: var(--ink); }
.brand-text span { font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-item > a {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--ink); font-size: .8rem; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; padding: 10px 13px; position: relative;
}
.nav-item > a .caret { width: 6px; height: 6px; border-right: 1.6px solid var(--muted); border-bottom: 1.6px solid var(--muted); transform: rotate(45deg) translateY(-2px); }
.nav-item > a::after { content: ""; position: absolute; left: 13px; right: 13px; bottom: 4px; height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.nav-item > a:hover::after, .nav-item > a[aria-current="page"]::after { transform: scaleX(1); }
.nav-item > a[aria-current="page"] { color: var(--accent); }

.nav-drop {
  position: absolute; top: 100%; left: 8px; min-width: 250px;
  background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-strong);
  padding: 8px; opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s; border-top: 3px solid var(--accent);
}
.nav-item:hover .nav-drop, .nav-item:focus-within .nav-drop { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-drop a { display: block; padding: 11px 14px; font-size: .8rem; color: var(--text); border-bottom: 1px solid var(--line); text-transform: none; letter-spacing: 0; }
.nav-drop a:last-child { border-bottom: 0; }
.nav-drop a:hover { background: var(--paper); color: var(--accent); padding-left: 20px; }

.nav-cta { display: flex; align-items: center; gap: 10px; }
.lang-switch {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-body); font-size: .78rem; font-weight: 700;
  color: var(--muted); border: 1px solid var(--line); padding: 7px 12px;
  text-decoration: none !important;
}
.lang-switch:hover { border-color: var(--accent); color: var(--accent); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .2s; }

/* ---------- Hero ---------- */
.hero {
  position: relative; padding: 84px 0 78px; color: var(--white); overflow: hidden;
  background: #3a241c url('../images/hero-terracotta-bg.svg') center / cover no-repeat;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(115deg, rgba(18,13,11,.92) 0%, rgba(18,13,11,.72) 42%, rgba(18,13,11,.55) 65%, rgba(18,13,11,.85) 100%);
  pointer-events: none;
}
.hero::after { content: ""; position: absolute; right: -8%; top: -30%; width: 55%; height: 150%; z-index: 1; background: radial-gradient(circle, rgba(207,138,90,.22), transparent 62%); pointer-events: none; }
.hero-grid { position: relative; z-index: 3; display: grid; grid-template-columns: 1.55fr 1fr; gap: 48px; align-items: start; }
.hero-inner { max-width: 660px; }
.hero .eyebrow { color: #e59a82; }
.hero h1 { font-size: clamp(2.2rem, 4.6vw, 3.4rem); color: var(--white); font-weight: 600; }
.hero p.lede { color: rgba(247,245,240,.82); font-size: 1.08rem; max-width: 590px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }
.hero-badge { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16); padding: 7px 13px; font-size: .74rem; letter-spacing: .02em; color: rgba(247,245,240,.85); }

.hero-card { position: relative; z-index: 3; background: var(--white); color: var(--text); padding: 28px 26px 22px; box-shadow: var(--shadow-strong); border-top: 4px solid var(--accent); }
.hero-card h3 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 2px; }
.hero-card .from-price { color: var(--accent); font-family: var(--font-display); font-weight: 600; font-size: 1.9rem; margin: 8px 0 2px; }
.hero-card .from-price small { font-family: var(--font-body); font-size: .7rem; color: var(--muted); font-weight: 500; letter-spacing: .02em; }
.hero-card ul { margin: 16px 0 20px; }
.hero-card ul li { display: flex; gap: 9px; font-size: .86rem; color: var(--muted); margin-bottom: 9px; align-items: flex-start; text-align: left; }
.hero-card ul li::before { content: ""; width: 6px; height: 6px; background: var(--accent); margin-top: 7px; flex-shrink: 0; }
.hero-card .btn { width: 100%; justify-content: center; margin-bottom: 10px; }
.hero-card .fineprint { font-size: .72rem; color: var(--muted); text-align: center; margin: 6px 0 0; }

.particles { position: absolute; inset: 0; z-index: 3; pointer-events: none; }
.particle { position: absolute; bottom: -30px; width: 3px; height: 3px; border-radius: 50%; background: rgba(230,154,130,.5); opacity: .4; animation: floatUp linear infinite; }
@keyframes floatUp { 0% { transform: translateY(0); opacity: 0; } 12% { opacity: .5; } 100% { transform: translateY(-108vh) translateX(var(--drift,30px)); opacity: 0; } }

/* ---------- Full-body drifting hotel-accessory icons ---------- */
.bg-icons { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.drift-icon { position: absolute; opacity: .06; color: var(--ink); animation: driftAcross linear infinite; will-change: transform; }
.drift-icon svg { display: block; width: 100%; height: 100%; }
@keyframes driftAcross { 0% { transform: translate(0,0) rotate(0deg); } 50% { transform: translate(26px,-20px) rotate(8deg); } 100% { transform: translate(0,0) rotate(0deg); } }

/* ---------- Sub-page hero ---------- */
.page-hero {
  position: relative; padding: 128px 0 60px; color: var(--white); overflow: hidden;
  background: #3a241c url('../images/hero-terracotta-bg.svg') center 30% / cover no-repeat;
}
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(18,13,11,.82) 0%, rgba(18,13,11,.6) 45%, rgba(18,13,11,.92) 100%); }
.page-hero::after { content: ""; position: absolute; right: -8%; top: -30%; width: 46%; height: 150%; z-index: 1; background: radial-gradient(circle, rgba(207,138,90,.2), transparent 62%); }
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb { font-size: .78rem; letter-spacing: .02em; color: rgba(247,245,240,.62); margin-bottom: 16px; }
.breadcrumb a:hover { color: #e59a82; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 2.9rem); max-width: 800px; color: var(--white); }

/* ---------- Grid & cards ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white); overflow: hidden; border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(24,22,20,.07);
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  transform: scaleX(0); transform-origin: left; transition: transform .35s ease; z-index: 2;
}
.card:hover { transform: translateY(-7px); box-shadow: 0 26px 50px rgba(24,18,12,.16); border-color: rgba(166,60,42,.35); }
.card:hover::before { transform: scaleX(1); }
.card-media { aspect-ratio: 4/3; overflow: hidden; background: var(--paper-2); border-bottom: 1px solid var(--line); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.card:hover .card-media img { transform: scale(1.08); }
.card-body { padding: 24px 26px 28px; }
.card-body h3 { font-size: 1.24rem; margin-bottom: 8px; }
.price-tag { display: block; font-family: var(--font-display); font-weight: 600; color: var(--accent); font-size: 1.5rem; margin: 6px 0 12px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.price-tag small { font-family: var(--font-body); font-size: .68rem; color: var(--muted); font-weight: 500; }
.tag-row { display: flex; flex-wrap: wrap; gap: 7px; margin: 10px 0 16px; }
.tag { font-size: .66rem; letter-spacing: .06em; text-transform: uppercase; background: var(--paper-2); color: var(--muted); padding: 5px 10px; }

.feature {
  display: flex; flex-direction: column; align-items: flex-start; gap: 14px;
  background: var(--white); padding: 28px 26px; border: 1px solid var(--line);
  box-shadow: 0 8px 22px rgba(24,22,20,.05);
  position: relative; overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.feature::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.feature:hover { border-color: rgba(166,60,42,.35); box-shadow: 0 20px 40px rgba(24,18,12,.12); transform: translateY(-4px); }
.feature:hover::before { transform: scaleX(1); }
.feature .icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(145deg, var(--ink), #33302c); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06), 0 6px 16px rgba(24,22,20,.18);
}
.feature:hover .icon { background: linear-gradient(145deg, var(--accent), var(--accent-dark)); }
.feature h4 { margin: 0; font-size: 1.02rem; font-family: var(--font-body); font-weight: 600; color: var(--ink); }
.feature p { margin: 0; font-size: .87rem; color: var(--muted); text-align: left; line-height: 1.6; }

.audience-card {
  display: block; background: linear-gradient(165deg, var(--ink-2), var(--ink-3));
  padding: 30px 26px; border: 1px solid rgba(255,255,255,.06); border-left: 3px solid transparent;
  box-shadow: 0 10px 26px rgba(0,0,0,.25); position: relative; overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.audience-card::after {
  content: ""; position: absolute; right: -30px; top: -30px; width: 110px; height: 110px; border-radius: 50%;
  background: radial-gradient(circle, rgba(166,60,42,.22), transparent 70%);
  opacity: 0; transition: opacity .3s ease;
}
.audience-card:hover { transform: translateY(-6px); border-left-color: var(--accent); box-shadow: 0 24px 48px rgba(0,0,0,.35); }
.audience-card:hover::after { opacity: 1; }
.audience-card .icon {
  width: 50px; height: 50px; border-radius: 50%; margin-bottom: 16px;
  background: rgba(230,154,130,.12); border: 1px solid rgba(230,154,130,.28);
  display: flex; align-items: center; justify-content: center; font-size: 1.35rem;
  position: relative; z-index: 1;
}
.audience-card h3 { font-size: 1.12rem; margin-bottom: 8px; color: var(--white); position: relative; z-index: 1; }
.audience-card p { font-size: .87rem; color: rgba(247,245,240,.7); margin-bottom: 14px; text-align: left; position: relative; z-index: 1; }
.audience-card .go { font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #e59a82; position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 6px; transition: gap .2s ease; }
.audience-card:hover .go { gap: 10px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split-media { position: relative; }
.split-media-frame { overflow: hidden; box-shadow: 0 24px 54px rgba(24,18,12,.16); border: 1px solid rgba(255,255,255,.5); }
.split-media img { display: block; width: 100%; filter: saturate(1.04) contrast(1.03); transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.split-media-frame:hover img { transform: scale(1.045); }
.split-media .float-card { position: absolute; bottom: -22px; right: -22px; background: var(--white); box-shadow: var(--shadow-strong); padding: 16px 20px; max-width: 220px; border-top: 3px solid var(--accent); z-index: 2; }
.info-table-wrap { overflow-x: auto; margin: 18px 0; }
.info-table { width: 100%; border-collapse: collapse; background: var(--white); box-shadow: var(--shadow-soft); }
.info-table th, .info-table td { text-align: left; padding: 13px 16px; font-size: .92rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.info-table th { font-family: var(--font-body); font-size: .74rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--white); background: var(--ink); }
.info-table td:first-child { font-weight: 700; color: var(--ink); white-space: nowrap; }
.info-table tr:last-child td { border-bottom: 0; }
.info-table tr:nth-child(even) td { background: var(--paper); }

.list-check { margin: 18px 0; }
.list-check li { display: flex; gap: 12px; margin-bottom: 11px; font-size: .95rem; text-align: left; }
.list-check li::before { content: ""; width: 7px; height: 7px; background: var(--accent); margin-top: 8px; flex-shrink: 0; }

.landmark-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 24px; }
.landmark-item { display: flex; gap: 14px; align-items: center; background: var(--white); padding: 12px 16px; border: 1px solid var(--line); transition: border-color .18s ease; }
.landmark-item:hover { border-color: var(--accent); }
.landmark-item .dist { display: inline-flex; align-items: center; justify-content: center; font-weight: 700; color: var(--accent); font-family: var(--font-body); font-size: .7rem; letter-spacing: .04em; text-transform: uppercase; background: var(--accent-soft); padding: 6px 9px; min-width: 66px; text-align: center; flex-shrink: 0; }
.landmark-item span:last-child { font-size: .87rem; color: var(--text); line-height: 1.4; }
.landmark-item a { font-size: .87rem; color: var(--text); line-height: 1.4; text-decoration: none; }
.landmark-item a:hover { color: var(--accent); }

.map-frame { overflow: hidden; box-shadow: var(--shadow-strong); border: 6px solid var(--white); }
.map-frame iframe { width: 100%; height: 400px; border: 0; display: block; }

/* ---------- FAQ (two-column, editorial) ---------- */
.faq-wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; align-items: start; }
.faq-intro { position: sticky; top: 100px; }
.faq-intro h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.faq-intro p { color: var(--muted); text-align: left; }
.faq-intro .btn { margin-top: 12px; }
.faq { max-width: none; margin: 0; }
.faq details { background: var(--white); padding: 4px 22px; margin-bottom: 12px; box-shadow: var(--shadow-soft); border-left: 2px solid var(--line); transition: border-color .2s ease; }
.faq details[open] { border-left-color: var(--accent); }
.faq summary { cursor: pointer; font-weight: 600; font-family: var(--font-display); font-size: 1.05rem; color: var(--ink); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 16px 0; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .q-no { color: var(--accent); font-size: .85rem; margin-right: 6px; font-family: var(--font-body); }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--accent); font-family: var(--font-body); line-height: 1; }
.faq details[open] summary::after { content: "\2013"; }
.faq p { margin: 0 0 16px; color: var(--muted); text-align: left; }
.faq-jump-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0 8px; }
.faq-jump {
  font-family: var(--font-body); font-size: .78rem; font-weight: 700;
  letter-spacing: .03em; color: var(--accent-dark);
  background: var(--accent-soft); border: 1px solid rgba(166,60,42,.25);
  padding: 8px 16px; border-radius: 999px; text-decoration: none !important;
  transition: background .15s ease, color .15s ease;
}
.faq-jump:hover { background: var(--accent); color: var(--white); }

.testimonial-card { background: var(--white); padding: 26px; box-shadow: var(--shadow-soft); position: relative; border-top: 3px solid var(--accent); }
.testimonial-card .quote-mark { font-family: var(--font-display); font-size: 2.6rem; color: var(--accent); line-height: 1; }
.testimonial-card p { text-align: left; }
.testimonial-card .author { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.testimonial-card .avatar { width: 42px; height: 42px; border-radius: 50%; overflow: hidden; }
.placeholder-note { font-size: .72rem; color: var(--muted); text-align: center; margin-top: 12px; font-style: italic; }

.cta-banner { background: var(--ink); color: var(--white); padding: 44px 48px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; box-shadow: var(--shadow-strong); border: 1px solid rgba(255,255,255,.12); border-left: 4px solid var(--accent); position: relative; }
.cta-banner::after { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='300' viewBox='0 0 600 300'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.05' stroke-width='1'%3E%3Cpath d='M0 80 Q150 30 300 80 T600 80'/%3E%3Cpath d='M0 130 Q150 80 300 130 T600 130'/%3E%3Cpath d='M0 180 Q150 130 300 180 T600 180'/%3E%3Cpath d='M0 230 Q150 180 300 230 T600 230'/%3E%3C/g%3E%3C/svg%3E"); }
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h3 { color: var(--white); margin-bottom: 6px; font-size: 1.5rem; }
.cta-banner p { color: rgba(247,245,240,.72); margin: 0; text-align: left; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
/* buttons on the dark CTA must read as light regardless of variant used */
.cta-banner .btn-outline-dark { border-color: rgba(255,255,255,.4); color: var(--white); border-right-color: var(--accent); }
.cta-banner .btn-outline-dark:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

/* ---------- Horizontal room rows (Rooms & Prices page) ---------- */
.room-list { display: grid; gap: 22px; }
.room-row { display: grid; grid-template-columns: 320px 1fr 260px; background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-soft); overflow: hidden; transition: box-shadow .25s ease, transform .25s ease; }
.room-row:hover { box-shadow: var(--shadow-strong); transform: translateY(-3px); }
.room-row .rr-media { overflow: hidden; height: 280px; }
.room-row .rr-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.room-row:hover .rr-media img { transform: scale(1.05); }
.room-row .rr-body { padding: 26px 28px; border-left: 1px solid var(--line); display: flex; flex-direction: column; height: 280px; }
.room-row .rr-body h3 { font-size: 1.35rem; margin-bottom: 6px; }
.room-row .rr-body p { text-align: left; color: var(--muted); font-size: .92rem; margin: 0; }
.room-row .rr-body-foot { margin-top: auto; padding-top: 18px; }
.room-row .rr-body-foot .btn { padding: 12px 22px; font-size: .78rem; }
.room-row .rr-price { padding: 26px 24px; border-left: 1px solid var(--line); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 4px; background: var(--paper); }
.room-row .rr-price .amt { font-family: var(--font-display); font-weight: 600; color: var(--accent); font-size: 2rem; }
.room-row .rr-price .amt small { font-family: var(--font-body); font-size: .7rem; color: var(--muted); font-weight: 500; }
.room-row .rr-price .avail { font-size: .74rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); margin-bottom: 12px; }
.room-row .rr-price .btn { width: 100%; justify-content: center; }

/* ---------- Google reviews block ---------- */
.reviews-panel {
  display: grid; grid-template-columns: 280px 1fr; gap: 44px; align-items: center;
  background: linear-gradient(180deg, var(--white), #fdfbf7);
  border: 1px solid var(--line); box-shadow: var(--shadow-soft); padding: 40px 44px;
  position: relative; overflow: hidden;
}
.reviews-panel::before { content: ""; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--accent); }
.reviews-score { text-align: center; border-right: 1px solid var(--line); padding-right: 40px; }
.reviews-score .g { font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.reviews-score .num { font-family: var(--font-display); font-size: 3.4rem; font-weight: 600; color: var(--ink); line-height: 1; }
.reviews-score .stars { color: var(--accent); font-size: 1.3rem; letter-spacing: 4px; margin: 10px 0; }
.reviews-score .count { font-size: .78rem; color: var(--muted); }
.reviews-body h3 { font-size: 1.55rem; margin-bottom: 8px; }
.reviews-body p { text-align: left; color: var(--muted); }
.reviews-note { font-size: .72rem; color: var(--muted-2); margin-top: 10px; }

/* Featured review (left) + stacked pair (right) */
.reviews-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 24px; margin-top: 24px; align-items: stretch; }
.review-stack { display: grid; grid-template-rows: 1fr 1fr; gap: 24px; }
.review-card {
  background: var(--white); border: 1px solid var(--line); padding: 30px 32px;
  position: relative; display: flex; flex-direction: column;
  box-shadow: 0 10px 30px rgba(24,22,20,.06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.review-card::after { content: "\201D"; position: absolute; top: 14px; right: 24px; font-family: var(--font-display); font-size: 4rem; line-height: 1; color: var(--accent); opacity: .14; }
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-strong); border-color: rgba(166,60,42,.4); }
.review-card--feature { justify-content: center; }
.review-card--feature .review-author { margin-top: 22px; }
.review-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.review-stars { color: var(--accent); letter-spacing: 3px; font-size: 1rem; }
.review-badge {
  font-size: .6rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); border: 1px solid var(--line); padding: 4px 9px; border-radius: 999px;
}
.review-text { color: var(--text); font-size: .96rem; line-height: 1.7; text-align: left; margin: 0 0 20px; }
.review-card--feature .review-text { font-size: 1.05rem; font-family: var(--font-display); font-weight: 500; color: var(--ink); line-height: 1.6; }
.review-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review-avatar {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600; font-size: 1.1rem;
}
.review-author strong { display: block; font-size: .95rem; color: var(--ink); }
.review-author em { display: block; font-size: .72rem; font-style: normal; color: var(--muted); letter-spacing: .02em; }

.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 34px; position: relative; z-index: 4; }
.stat-box { background: var(--white); padding: 14px 18px; display: flex; align-items: center; gap: 12px; box-shadow: 0 10px 24px rgba(24,22,20,.08); border-left: 3px solid var(--accent); transition: transform .2s ease, box-shadow .2s ease; }
.stat-box:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(24,22,20,.14); }
.stat-box strong { font-family: var(--font-display); font-size: 1.55rem; color: var(--accent); line-height: 1; flex-shrink: 0; }
.stat-box span { font-size: .74rem; color: var(--muted); line-height: 1.3; text-align: left; }

/* ---------- Room detail (with left icon rail) ---------- */
.room-wrap { display: grid; grid-template-columns: 62px 1fr; gap: 28px; }
.room-rail { position: sticky; top: 100px; align-self: start; display: flex; flex-direction: column; gap: 10px; background: var(--white); padding: 12px 8px; box-shadow: var(--shadow-soft); border-top: 3px solid var(--accent); }
.room-rail a { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 1.1rem; transition: background .15s ease, color .15s ease; }
.room-rail a:hover, .room-rail a.active { background: var(--ink); color: var(--white); }
.room-gallery { display: grid; grid-template-columns: 2.2fr 1fr; gap: 12px; margin-top: 4px; }
.room-gallery-main {
  overflow: hidden; aspect-ratio: 16/10; box-shadow: 0 20px 46px rgba(24,18,12,.14);
  border: 1px solid rgba(255,255,255,.5); position: relative;
}
.room-gallery-main img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.04) contrast(1.03);
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.room-gallery-main:hover img { transform: scale(1.05); }
.room-gallery-thumbs { display: grid; grid-template-rows: repeat(2, 1fr); gap: 12px; }
.thumb-frame {
  display: block; overflow: hidden; box-shadow: 0 12px 28px rgba(24,18,12,.1);
  border: 1px solid rgba(255,255,255,.5); aspect-ratio: 4/3;
}
.thumb-frame img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.04) contrast(1.03);
  transition: transform .5s ease; display: block;
}
.thumb-frame:hover img { transform: scale(1.1); }
.room-layout { display: grid; grid-template-columns: 1fr 330px; gap: 44px; margin-top: 40px; align-items: start; }
.room-detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 16px; }
.room-detail-grid > div { background: var(--white); padding: 15px 16px; border-left: 2px solid var(--accent); }
.room-detail-grid .dt { display: block; font-size: .68rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.room-detail-grid .dd { display: block; font-size: .92rem; font-weight: 600; margin-top: 4px; color: var(--ink); }

/* ---------- Contact info row (4 across, compact) ---------- */
.info-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.info-box { background: var(--white); border: 1px solid var(--line); padding: 18px 18px 20px; position: relative; }
.info-box::before { content: ""; position: absolute; top: -1px; left: -1px; width: 36px; height: 3px; background: var(--accent); }
.info-box .k { display: inline-block; font-size: .66rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--accent); background: var(--accent-soft); padding: 5px 9px; margin-bottom: 10px; }
.info-box .v { display: block; font-size: .86rem; color: var(--text); line-height: 1.5; }

/* ---------- Featured room cards (home) ---------- */
.rooms-featured .card.is-featured { box-shadow: 0 26px 50px rgba(24,18,12,.18); border-color: rgba(166,60,42,.4); }
.rooms-featured .card.is-featured::before { transform: scaleX(1); }
.rooms-featured .card .ribbon { position: absolute; top: 12px; right: 12px; z-index: 4; background: var(--accent); color: #fff; font-size: .62rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 5px 9px; box-shadow: 0 4px 10px rgba(166,60,42,.4); }

/* ---------- Compact spec list (room-detail features, image4 style) ---------- */
.spec-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px 22px; margin-top: 18px; }
.spec-list .spec { display: flex; align-items: center; gap: 10px; font-size: .88rem; color: var(--text); padding: 6px 0; border-bottom: 1px solid var(--line); }
.spec-list .spec .si { width: 30px; height: 30px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: var(--accent); background: var(--accent-soft); font-size: .95rem; }

/* ---------- Destination cards (tourism, redesigned) ---------- */
.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.dest-grid.dest-grid-2x2 { grid-template-columns: repeat(2, 1fr); }
.dest-card { position: relative; overflow: hidden; box-shadow: var(--shadow-soft); background: var(--ink); color: var(--white); min-height: 340px; display: flex; flex-direction: column; justify-content: flex-end; }
.dest-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .55; transition: transform .5s ease, opacity .3s ease; }
.dest-card:hover img { transform: scale(1.08); opacity: .45; }
.dest-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(18,16,20,.9)); }
.dest-card .dc-body { position: relative; z-index: 2; padding: 26px 24px; }
.dest-card .dc-index { position: absolute; top: 18px; left: 20px; z-index: 2; font-family: var(--font-display); font-size: 2.4rem; font-weight: 600; color: rgba(255,255,255,.28); line-height: 1; }
.dest-card .dc-dist { display: inline-block; font-size: .66rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink); background: var(--gold, #e9c887); padding: 5px 9px; margin-bottom: 12px; background: #e5b96a; }
.dest-card h3 { color: var(--white); font-size: 1.35rem; margin-bottom: 8px; }
.dest-card p { color: rgba(247,245,240,.82); font-size: .88rem; margin: 0; text-align: justify; }
.dest-card .dc-body .more { display: inline-block; margin-top: 12px; font-size: .74rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #e5b96a; }

/* ---------- Footer ---------- */
.site-footer { position: relative; z-index: 1; background: var(--ink); color: rgba(247,245,240,.7); padding-top: 66px; }
.site-footer::before {
  content: ""; position: absolute; top: -13px; left: 0; right: 0; height: 13px;
  background: linear-gradient(135deg, var(--ink) 25%, transparent 25%) -13px 0,
             linear-gradient(225deg, var(--ink) 25%, transparent 25%) -13px 0;
  background-size: 26px 26px; background-repeat: repeat-x;
}
.site-footer::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .55;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='300' viewBox='0 0 600 300'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.05' stroke-width='1'%3E%3Cpath d='M0 60 Q150 10 300 60 T600 60'/%3E%3Cpath d='M0 100 Q150 50 300 100 T600 100'/%3E%3Cpath d='M0 140 Q150 90 300 140 T600 140'/%3E%3Cpath d='M0 180 Q150 130 300 180 T600 180'/%3E%3Cpath d='M0 220 Q150 170 300 220 T600 220'/%3E%3Cpath d='M0 260 Q150 210 300 260 T600 260'/%3E%3C/g%3E%3C/svg%3E");
}
.site-footer > * { position: relative; z-index: 2; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: 40px; padding-bottom: 54px; border-bottom: 1px solid rgba(255,255,255,.09); }
.footer-grid h4 { color: var(--white); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 18px; padding-left: 12px; border-left: 2px solid var(--accent); }
.footer-grid a { color: rgba(247,245,240,.65); font-size: .87rem; display: block; margin-bottom: 11px; transition: color .15s, padding-left .15s; }
.footer-grid a:hover { color: #e59a82; padding-left: 5px; }
.footer-about p { font-size: .87rem; color: rgba(247,245,240,.58); max-width: 320px; text-align: left; }
.footer-social { display: flex; gap: 9px; margin-top: 16px; }
.footer-social a { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.16); display: flex; align-items: center; justify-content: center; font-size: .74rem; margin: 0; }
.footer-social a:hover { border-color: var(--accent); color: #e59a82; padding: 0; }
.footer-promise li { display: flex; gap: 9px; font-size: .85rem; color: rgba(247,245,240,.65); margin-bottom: 11px; align-items: flex-start; }
.footer-promise li::before { content: ""; width: 6px; height: 6px; background: var(--accent); margin-top: 7px; flex-shrink: 0; }

.footer-infostrip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; position: relative; z-index: 3; margin-top: -26px; }
.footer-info-box { background: var(--white); color: var(--text); padding: 12px 14px; box-shadow: var(--shadow-strong); display: flex; gap: 10px; align-items: center; border-top: 3px solid var(--accent); }
.footer-info-box .icon { width: 30px; height: 30px; flex-shrink: 0; background: var(--ink); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: .85rem; }
.footer-info-box strong { display: block; font-size: .62rem; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.footer-info-box span { display: block; font-size: .82rem; margin-top: 1px; color: var(--ink); line-height: 1.3; }

.footer-bottom { padding: 58px 0 24px; font-size: .78rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; color: rgba(247,245,240,.45); }

/* ---------- Floating actions: WhatsApp left, scroll-top right ---------- */
.float-whatsapp { position: fixed; bottom: 26px; left: 26px; z-index: 600; width: 54px; height: 54px; border-radius: 50%; background: #25d366; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.4rem; box-shadow: 0 8px 20px rgba(37,211,102,.4); transition: transform .15s ease; }
.float-whatsapp:hover { transform: scale(1.07); }
.scroll-top { position: fixed; bottom: 26px; right: 26px; z-index: 600; width: 48px; height: 48px; background: var(--ink); color: var(--white); border: none; border-right: 3px solid var(--accent); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(12px); transition: opacity .2s ease, transform .2s ease, visibility .2s, background .2s; }
.scroll-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--accent); border-right-color: var(--ink); }

.mobile-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 590; display: none; box-shadow: 0 -6px 20px rgba(0,0,0,.15); }
.mobile-bar-inner { display: flex; }
.mobile-bar a { flex: 1; text-align: center; padding: 14px 8px; font-weight: 700; font-size: .8rem; letter-spacing: .04em; text-transform: uppercase; }
.mobile-bar a.call { background: var(--ink); color: var(--white); }
.mobile-bar a.whatsapp { background: #25d366; color: var(--white); }

.text-center { text-align: center; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 34px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { max-width: 440px; }
  .footer-infostrip { grid-template-columns: 1fr 1fr; }
  .room-layout { grid-template-columns: 1fr; }
  .room-detail-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-wrap { grid-template-columns: 1fr; gap: 26px; }
  .faq-intro { position: static; }
  .room-row { grid-template-columns: 240px 1fr; }
  .room-row .rr-price { grid-column: 1 / -1; border-left: 0; border-top: 1px solid var(--line); flex-direction: row; align-items: center; justify-content: space-between; }
  .room-row .rr-price .btn { width: auto; }
  .reviews-panel { grid-template-columns: 1fr; gap: 24px; }
  .reviews-score { border-right: 0; border-bottom: 1px solid var(--line); padding-right: 0; padding-bottom: 24px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .review-stack { grid-template-rows: none; }
  .info-row { grid-template-columns: repeat(2, 1fr); }
  .spec-list { grid-template-columns: repeat(2, 1fr); }
  .dest-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-cta .btn { display: none; }
  .nav-cta { margin-left: auto; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: calc(100% + 1px); right: 12px; left: auto;
    width: 250px; background: var(--white); padding: 8px;
    box-shadow: var(--shadow-strong); border-top: 3px solid var(--accent);
  }
  .nav-links.open .nav-item { width: 100%; }
  .nav-links.open .nav-item > a { width: 100%; padding: 13px 14px; border-bottom: 1px solid var(--line); }
  .nav-links.open .nav-item:last-child > a { border-bottom: 0; }
  .nav-links.open .nav-item > a::after { display: none; }
  .nav-links.open .nav-item > a:hover { background: var(--paper); color: var(--accent); border-left: 3px solid var(--accent); }
  .nav-links.open .nav-item > a .caret { width: 8px; height: 8px; margin-left: auto; transition: transform .2s ease; }
  .nav-links.open .nav-item.sub-open > a .caret { transform: rotate(225deg) translateY(2px); }
  /* submenus start collapsed on mobile; JS toggles .sub-open to expand */
  .nav-links.open .nav-drop {
    position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0;
    padding: 0 0 0 14px; max-height: 0; overflow: hidden;
    transition: max-height .25s ease;
  }
  .nav-links.open .nav-item.sub-open .nav-drop { max-height: 300px; }
  .nav-links.open .nav-drop a { border-bottom: 1px solid var(--line); }
  .topbar-links { display: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .landmark-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-infostrip { grid-template-columns: 1fr; margin-top: 20px; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); margin-top: 24px; }
  .room-wrap { grid-template-columns: 1fr; }
  .room-rail { position: static; flex-direction: row; flex-wrap: wrap; top: auto; }
  .room-gallery { grid-template-columns: 1fr; }
  .room-gallery-thumbs { grid-template-columns: repeat(2, 1fr); grid-template-rows: none; }
  .room-detail-grid { grid-template-columns: 1fr 1fr; }
  .room-row { grid-template-columns: 1fr; }
  .room-row .rr-media { height: 200px; }
  .room-row .rr-body { border-left: 0; border-top: 1px solid var(--line); height: auto; }
  .room-row .rr-price { grid-column: auto; flex-direction: column; align-items: flex-start; }
  .room-row .rr-price .btn { width: 100%; }
  .cta-banner { flex-direction: column; text-align: center; }
  .cta-banner p { text-align: center; }
  .info-row { grid-template-columns: 1fr; }
  .spec-list { grid-template-columns: 1fr 1fr; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .mobile-bar { display: block; }
  .float-whatsapp { bottom: 82px; }
  .scroll-top { bottom: 82px; }
  body { padding-bottom: 54px; }
  .section { padding: 58px 0; }
}
