/* Carpe Diem — preview build
   Colours, type and spacing live here; change a token and the page follows. */

:root {
  --ink:    #16140f;
  --body:   #554c41;
  --ground: #faf7f1;
  --sand:   #f3eee3;
  --line:   #e6ded1;
  --clay:   #a6634b;
  --clay-d: #8a5140;
  --green:  #445542;
  --green-l:#53654f;
  --white:  #fff;

  --shell: 1220px;
  --gut: 24px;
  --r: 3px;

  --display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans: 'Karla', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 { font-family: var(--display); font-weight: 400; line-height: 1.12; margin: 0; }
h2 { font-size: clamp(28px, 3.4vw, 42px); }
h3 { font-size: 21px; font-weight: 500; }
p { margin: 0; }

a { color: var(--clay); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--clay-d); }

:focus-visible { outline: 2px solid var(--clay); outline-offset: 3px; border-radius: 2px; }

.shell { max-width: var(--shell); margin: 0 auto; padding: 0 var(--gut); }
.section { padding: clamp(52px, 7vw, 86px) 0; }
.eyebrow { font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--clay); margin-bottom: 14px; }
.lede { font-size: 17px; line-height: 1.65; color: var(--body); max-width: 62ch; }
[hidden] { display: none !important; }
.sr-only { 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;
  min-height: 48px; padding: 0 28px;
  font-family: var(--sans); font-size: 16px; font-weight: 700;
  border: 1px solid transparent; border-radius: var(--r);
  cursor: pointer; text-decoration: none; transition: background .15s ease, color .15s ease;
}
.btn--primary { background: var(--clay); color: var(--white); }
.btn--primary:hover { background: var(--clay-d); color: var(--white); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--white); }
.btn--block { width: 100%; }

/* ---------- WhatsApp ---------- */
.wa-ico { flex: none; }
.btn--wa .wa-ico { color: #0f7a6e; }
.btn--wa:hover .wa-ico { color: inherit; }
/* header: icon + word on wide screens, icon alone on tablets, nothing on phones (the bottom bar has it) */
@media (max-width: 1100px) { .btn--wa .wa-txt { display: none; } .header .btn--wa { padding: 0 12px; } }
@media (max-width: 520px) { .header .btn--wa { display: none; } }
.mbar__wa { flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: var(--r); background: #0f7a6e; color: var(--white); text-decoration: none; }
.mbar__wa:hover { background: #0b5f55; color: var(--white); }
.askwa { margin: 26px 0 0; font-size: 16px; color: var(--body); display: flex; flex-wrap: wrap; align-items: center; gap: 6px 14px; }
.askwa a { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: #0f6a5f; text-decoration: none; border-bottom: 1px solid currentColor; }
.askwa a:hover { color: var(--ink); }


/* ---------- top strip + header ---------- */

.strip {
  background: var(--green); color: #eef3f0;
  font-size: 14px; text-align: center;
  padding: 11px var(--gut);
}
.strip b { font-weight: 700; }
.strip .sep { opacity: .45; margin: 0 10px; }
@media (max-width: 720px) { .strip .opt { display: none; } }

.header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(250,247,241,.94);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__in { display: flex; align-items: center; gap: 22px; min-height: 74px; }
.brand { display: flex; align-items: center; flex: none; text-decoration: none; }
.brand img { height: 42px; width: auto; display: block; }
@media (max-width: 520px) { .brand img { height: 34px; } }
.nav { display: flex; gap: 22px; flex: 1; font-size: 15px; }
.nav a { color: var(--ink); text-decoration: none; }
.nav a:hover { color: var(--clay); }
.lang { display: flex; align-items: center; gap: 2px; }
.lang a {
  display: inline-flex; padding: 8px 5px 9px; border-radius: 2px; line-height: 0;
  opacity: .65; transition: opacity .15s ease; box-shadow: inset 0 -2px 0 transparent;
}
.lang a:hover, .lang a:focus-visible { opacity: 1; }
.lang a[aria-current="true"] { opacity: 1; box-shadow: inset 0 -2px 0 var(--clay); }
.lang img { width: 22px; height: 16px; object-fit: cover; border-radius: 2px; box-shadow: 0 0 0 1px rgba(22,20,15,.14); display: block; }
/* five flags need a little less room each on small screens */
@media (max-width: 560px) { .lang a { padding: 8px 3px 9px; } .lang img { width: 20px; height: 14px; } }
.header .btn { min-height: 44px; padding: 0 20px; font-size: 15px; }
@media (max-width: 960px) { .nav { display: none; } }
@media (max-width: 520px) { .header .btn--primary { display: none; } }

/* ---------- hero ---------- */

.hero { position: relative; color: var(--white); isolation: isolate; }
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(10,20,15,.86) 0%, rgba(10,20,15,.62) 46%, rgba(10,20,15,.24) 100%);
}
/* top/bottom only: the shorthand used to wipe .shell's side padding */
.hero__in { padding-top: clamp(96px, 15vw, 190px); padding-bottom: clamp(120px, 12vw, 150px); }
.hero__eyebrow { font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: #e3d8c5; margin-bottom: 16px; }
.hero h1 { font-size: clamp(38px, 6vw, 72px); max-width: 15ch; margin-bottom: 20px; }
.hero p { font-size: clamp(16px, 1.5vw, 19px); color: #ece5d8; max-width: 52ch; }
@media (max-width: 720px) {
  .hero::after { background: linear-gradient(180deg, rgba(10,20,15,.42) 0%, rgba(10,20,15,.42) 45%, rgba(10,20,15,.88) 100%); }
}

/* ---------- booking bar ---------- */

.book {
  position: relative; z-index: 5;
  margin-top: -54px; margin-bottom: 8px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: 0 18px 48px rgba(22,20,15,.16);
  padding: 22px 24px 26px;
  display: flex; align-items: flex-end; gap: 16px; flex-wrap: wrap;
}
.book__f { display: flex; flex-direction: column; gap: 7px; flex: 1 1 170px; min-width: 0; }
.book__f label, .unlock label { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--body); font-weight: 500; }
.book input, .book select, .unlock input {
  height: 48px; padding: 0 12px; width: 100%;
  font-family: var(--sans); font-size: 16px; color: var(--ink);
  background: var(--ground); border: 1px solid var(--line); border-radius: var(--r);
}
.book .btn { flex: 0 0 auto; }
.book__note { flex-basis: 100%; font-size: 13px; color: var(--body); margin-top: -8px; }
.book__note b { color: var(--ink); }
@media (max-width: 760px) {
  .book { margin-top: -28px; }
  .book__f { flex: 1 1 100%; }
  .book .btn { width: 100%; }
}

/* ---------- trust ---------- */

.trust { display: flex; flex-wrap: wrap; gap: 14px 40px; align-items: center; justify-content: center; padding: 34px 0 6px; }
.score { display: flex; align-items: baseline; gap: 8px; }
.score b { font-family: var(--display); font-size: 27px; font-weight: 400; }
.score span { font-size: 14px; color: var(--body); }
.trust .rule { width: 1px; height: 26px; background: var(--line); }
@media (max-width: 720px) { .trust .rule { display: none; } .trust { gap: 12px 26px; } }

/* ---------- unlock ---------- */

.unlock-wrap { display: grid; grid-template-columns: 1fr 430px; gap: 60px; align-items: start; }
@media (max-width: 960px) { .unlock-wrap { grid-template-columns: 1fr; gap: 34px; } }

.perks { list-style: none; margin: 26px 0 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.perks li { display: flex; gap: 13px; align-items: flex-start; font-size: 16px; }
.perks svg { flex: none; margin-top: 3px; }

.unlock { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 32px; }
.unlock__tag { display: flex; align-items: center; gap: 9px; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--green); font-weight: 700; margin-bottom: 18px; }
.prices { display: flex; align-items: flex-end; gap: 22px; margin-bottom: 16px; }
.prices small { display: block; font-size: 13px; color: var(--body); margin-bottom: 3px; }
.prices .was { font-family: var(--display); font-size: 27px; color: var(--body); text-decoration: line-through; }
.prices .now { font-family: var(--display); font-size: 38px; letter-spacing: .02em; }
.prices .lbl-now { color: var(--clay); font-weight: 700; }
.unlock p.fine { font-size: 13px; color: var(--body); margin-top: 13px; }
.unlock .note { font-size: 14px; margin-top: 12px; min-height: 1.3em; }
.unlock .note.err { color: var(--clay); }
.hp { position: absolute; left: -9999px; opacity: 0; width: 1px; height: 1px; }
.code {
  display: inline-block; font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 19px; letter-spacing: .12em; background: var(--sand);
  border: 1px dashed var(--clay); border-radius: var(--r); padding: 9px 16px; margin: 4px 0 16px;
}

/* ---------- rooms ---------- */

.rooms { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 30px; }
@media (max-width: 1020px) { .rooms { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .rooms { grid-template-columns: 1fr; } }

.room { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; display: flex; flex-direction: column; }
.room--flag { border-color: var(--clay); }
.room img { height: 178px; width: 100%; object-fit: cover; }
.room__b { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.room__meta { font-size: 13px; color: var(--body); margin: 5px 0 10px; }
.room__d { font-size: 14px; line-height: 1.55; color: var(--body); flex: 1; }
.chips { display: flex; flex-wrap: wrap; gap: 6px; margin: 14px 0 16px; }
.chip { font-size: 12px; padding: 4px 9px; background: var(--sand); border-radius: 2px; color: var(--body); }
.price { font-family: var(--display); font-size: 26px; }
.price small { font-family: var(--sans); font-size: 13px; color: var(--body); }
.price-from { font-size: 13px; color: var(--body); }
.price-note { display: none; font-family: var(--display); font-size: 19px; line-height: 1.3; color: var(--clay); margin: 4px 0 16px; }
.room--na .price-note { display: block; }
.room--na .price, .room--na .price-from, .room--na .memberline { display: none; }
.rooms--loading .price, .rooms--loading .price-note { opacity: .45; transition: opacity .2s; }
.room .memberline { font-size: 13px; color: var(--clay); font-weight: 700; margin: 2px 0 14px; }
.ph { border-bottom: 1px dotted var(--body); }

/* ---------- room photo accordion ---------- */
.room__gallery { position: relative; display: flex; gap: 2px; height: 178px; }
.room .room__gallery img { width: auto; height: 100%; flex: 1 1 0%; min-width: 0; object-fit: cover; cursor: zoom-in; filter: brightness(.9); transition: flex-grow .45s cubic-bezier(.22,.8,.3,1), filter .3s ease; outline-offset: -3px; }
.room .room__gallery img.is-active { flex-grow: 8; filter: none; }
.room .room__gallery img:hover,
.room .room__gallery img:focus-visible { flex-grow: 8; filter: none; }
.room__zoom { position: absolute; right: 8px; bottom: 8px; display: flex; align-items: center; gap: 6px; padding: 6px 10px; border: 0; border-radius: 999px; background: rgba(22,20,15,.62); color: var(--white); font: 600 12px/1 var(--sans); cursor: pointer; }
.room__zoom:hover { background: rgba(22,20,15,.82); }
.room__zoom svg { width: 13px; height: 13px; }
@media (max-width: 560px) { .room__gallery { height: 230px; } }
@media (prefers-reduced-motion: reduce) { .room .room__gallery img { transition: filter .15s ease; } }
@media (hover: none) { .room .room__gallery img { filter: none; } }

/* ---------- room photo viewer (lightbox) ---------- */
.lb { position: fixed; inset: 0; z-index: 2147483600; display: flex; align-items: center; justify-content: center; background: rgba(14,12,9,.95); opacity: 0; transition: opacity .2s ease; touch-action: pan-y; }
.lb[hidden] { display: none; }
.lb.is-open { opacity: 1; }
.lb__fig { margin: 0; display: flex; flex-direction: column; align-items: center; max-width: min(90vw, 1300px); }
.lb__img { display: block; max-width: 100%; max-height: 80vh; width: auto; height: auto; border-radius: 4px; user-select: none; -webkit-user-drag: none; }
.lb__cap { margin-top: 14px; color: rgba(255,255,255,.85); font: 500 14px/1.4 var(--sans); text-align: center; }
.lb button { border: 0; padding: 0; cursor: pointer; color: var(--white); background: rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; line-height: 1; }
.lb button:hover { background: rgba(255,255,255,.24); }
.lb__close { position: absolute; top: 16px; right: 16px; width: 44px; height: 44px; border-radius: 50%; font-size: 26px; }
.lb__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; font-size: 30px; }
.lb__nav--prev { left: 18px; }
.lb__nav--next { right: 18px; }
.lb__nav[hidden] { display: none; }
@media (max-width: 640px) {
  .lb__fig { max-width: 100vw; }
  .lb__img { max-height: 70vh; border-radius: 0; }
  .lb__nav { top: auto; bottom: 22px; transform: none; width: 48px; height: 48px; }
  .lb__nav--prev { left: calc(50% - 64px); }
  .lb__nav--next { right: calc(50% - 64px); }
}
@media (prefers-reduced-motion: reduce) { .lb { transition: none; } }

/* ---------- split / gallery ---------- */

.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 58px; align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 30px; } }
.split img { border-radius: var(--r); height: 100%; max-height: 420px; object-fit: cover; width: 100%; }
.facts { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 28px; margin-top: 28px; }
.fact { display: flex; align-items: flex-start; gap: 11px; font-size: 15px; color: var(--ink); line-height: 1.4; }
.fact svg { flex: none; margin-top: 1px; color: var(--clay); }
@media (max-width: 520px) { .facts { grid-template-columns: 1fr; } }

.strip3 { display: grid; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 760px) { .strip3 { grid-template-columns: 1fr; } }
.strip3 figure { position: relative; margin: 0; }
.strip3 img { height: 300px; width: 100%; object-fit: cover; }
.strip3 figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 13px 20px; background: rgba(18,16,12,.74); color: #f3efe6; font-size: 14px; letter-spacing: .05em; }

/* ---------- events ---------- */

.events { background: var(--sand); }
.evlist { list-style: none; margin: 26px 0 0; padding: 0; border-top: 1px solid var(--line); }
.evlist li { display: flex; gap: 20px; align-items: baseline; padding: 16px 0; border-bottom: 1px solid var(--line); }
.evlist .when { flex: 0 0 172px; font-size: 14px; color: var(--body); }
.evlist .what { flex: 1; font-size: 17px; }
.evlist .in { font-size: 13px; color: var(--body); white-space: nowrap; }
.evlist li.next .what { font-weight: 700; }
.evlist li.next .in { color: var(--clay); font-weight: 700; }
@media (max-width: 620px) {
  .evlist li { flex-wrap: wrap; gap: 4px 14px; }
  .evlist .when { flex: 1 0 100%; }
}

/* ---------- reviews ---------- */

.reviews { background: var(--green); color: #f1f5f2; }
.reviews h2 { color: var(--white); }
.rgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 30px; }
@media (max-width: 900px) { .rgrid { grid-template-columns: 1fr; } }
.rev { background: var(--green-l); border-radius: var(--r); padding: 26px; margin: 0; }
.rev .n { font-family: var(--display); font-size: 24px; color: var(--white); }
.rev blockquote { margin: 14px 0; font-size: 17px; line-height: 1.6; }
.rev figcaption { font-size: 14px; color: #c3d3cb; }

/* ---------- cards / faq ---------- */

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 26px; }
@media (max-width: 860px) { .cards { grid-template-columns: 1fr; } }
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 26px; }
.card p { font-size: 15px; color: var(--body); margin-top: 8px; }

.faq { margin-top: 26px; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; padding: 17px 0; font-size: 17px; font-weight: 700; list-style: none; display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 22px; color: var(--clay); font-weight: 400; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq .a { padding: 0 0 18px; font-size: 15px; color: var(--body); max-width: 72ch; }

/* ---------- footer + mobile bar ---------- */

.footer { background: var(--ink); color: #e6dfd3; padding: 54px 0 46px; }
.fgrid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 46px; }
@media (max-width: 800px) { .fgrid { grid-template-columns: 1fr; gap: 28px; } }
.footer h3 { font-family: var(--sans); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: #9a9186; font-weight: 700; margin-bottom: 12px; }
.footer a { color: #e6dfd3; }
.fbrand { height: 80px; width: auto; display: block; margin-bottom: 18px; }
.footer .small { font-size: 13px; color: #9a9186; margin-top: 22px; }

.mbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  display: none; gap: 14px; align-items: center;
  padding: 12px var(--gut); background: var(--white);
  border-top: 1px solid var(--line); box-shadow: 0 -8px 24px rgba(22,20,15,.12);
}
.mbar .btn { flex: 0 0 auto; }
.mbar div { flex: 1; line-height: 1.25; white-space: nowrap; min-width: 0; }
@media (max-width: 760px) { .mbar { display: flex; } body { padding-bottom: 78px; } }

/* Asksuite chat on phones (25 Sep 2026): its launcher sat on top of "See prices"
   with a "Best price here! / Book now" teaser bubble beside it. Lift the launcher
   above the bar, make it a little smaller, and hide the teaser + unread badge --
   the bar already says "see prices". Asksuite's fixed wrapper is .infochat_floatmain
   (inline bottom:10px, hence !important). The chat window itself (#chatbot) is untouched. */
@media (max-width: 760px) {
  .infochat_floatmain { bottom: calc(84px + env(safe-area-inset-bottom, 0px)) !important; right: 12px !important; }
  .infochat_floatmain .infochat_flt_rel,
  .infochat_floatmain #infochat_agtpic,
  .infochat_floatmain #botTitleBar { width: 52px !important; height: 52px !important; }
  #titlediv.infochat_custom_message,
  .infochat_floatmain .rubberBand { display: none !important; }
}

/* ---------- reveal ---------- */
.rv { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .rv { opacity: 1; transform: none; } }

/* ---------- LGPD consent banner ---------- */
.consent {
  background: var(--ink); color: #f3eee3; padding: 14px var(--gut);
}
.consent__in {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px 20px;
}
.consent p { margin: 0; font-size: 14px; line-height: 1.5; max-width: 62ch; }
.consent a { color: #f3eee3; text-decoration-thickness: 1px; }
.consent a:hover { color: var(--white); }
.consent__actions { display: flex; gap: 10px; flex: 0 0 auto; }
.consent .btn { padding: 9px 18px; font-size: 14px; }
.consent .btn--ghost { color: #f3eee3; border-color: #f3eee3; }
.consent .btn--ghost:hover { background: #f3eee3; color: var(--ink); }
@media (max-width: 620px) { .consent__actions { width: 100%; } .consent .btn { flex: 1; } }

/* ---------- preview ribbon (remove when it goes live) ---------- */
.ribbon {
  background: #3a3125; color: #f0e7d8; font-size: 13px; text-align: center;
  padding: 9px var(--gut); letter-spacing: .02em;
}

.room .memberline--live { color: var(--clay); font-weight: 700; }

/* The rate is a footnote to the offer, not its headline: one quiet line,
   sitting under the description rather than leading the card. */
.prices--quiet {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 7px;
  margin: 18px 0 0; font-size: 14px; color: var(--body);
}
.prices--quiet .was { font-family: var(--sans); font-size: 14px; color: var(--body); text-decoration: line-through; }
.prices--quiet .now { font-family: var(--sans); font-size: 15px; font-weight: 700; color: var(--ink); letter-spacing: 0; }
.prices--quiet .lbl-now { color: var(--clay); font-weight: 600; }
.prices--quiet .prices__sep { color: var(--line); }

