/* ============================================================
   MERCUR EFORIE SUD — STYLES
   Shared CSS for all pages (homepage + interior pages)
   ============================================================ */

:root {
  --gold: #aa8453;
  --gold-soft: #c9a875;
  --ink: #1a1a1a;
  --ink-soft: #4a4a4a;
  --sand: #f7f3ec;
  --cream: #fbf8f2;
  --line: #e6dfd3;
  --sea: #2c5870;
  --ok: #2d7a4f;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: "Playfair Display", Georgia, "Times New Roman", serif; font-weight: 600; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1.1; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 0.4em; }
h3 { font-size: 1.3rem; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-soft); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 24px; }
.eyebrow { color: var(--gold); font-size: 0.85rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; }
.btn {
  display: inline-block; padding: 14px 32px; font-weight: 600; border: none; cursor: pointer;
  text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.85rem; border-radius: 2px;
  transition: all .2s; text-decoration: none;
}
.btn-primary { background: var(--gold); color: #fff; }
.btn-primary:hover { background: var(--ink); color: #fff; }
.btn-outline { background: transparent; border: 2px solid #fff; color: #fff; }
.btn-outline:hover { background: #fff; color: var(--ink); }
.btn-ghost { background: transparent; border: 2px solid var(--gold); color: var(--gold); }
.btn-ghost:hover { background: var(--gold); color: #fff; }

/* TOP BAR */
.topbar { background: var(--ink); color: #fff; font-size: 0.8rem; padding: 8px 0; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.topbar a { color: #fff; opacity: 0.85; }
.topbar .lang { display: flex; gap: 6px; align-items: center; }
.topbar .lang a, .topbar .lang span { padding: 2px 6px; cursor: pointer; opacity: 0.6; color: #fff; text-decoration: none; }
.topbar .lang .active { opacity: 1; border-bottom: 1px solid var(--gold); }

/* NAV */
nav.main {
  position: sticky; top: 0; background: rgba(255,255,255,0.97); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line); z-index: 100;
}
nav.main .container { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; padding-bottom: 16px; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-mark {
  width: 44px; height: 44px;
  background: url('logo.svg') center / contain no-repeat;
  color: transparent;
  flex-shrink: 0;
  /* keep dimensions for fallback even if SVG fails to load */
  display: grid; place-items: center; font-family: "Playfair Display", Georgia, serif; font-size: 1.6rem; font-weight: 700;
}
.logo-text { font-family: "Playfair Display", Georgia, serif; font-size: 1.4rem; line-height: 1; color: var(--ink); }
.logo-text small { display: block; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-soft); margin-top: 4px; font-family: -apple-system, sans-serif; }
nav ul { display: flex; gap: 28px; list-style: none; }
nav ul a { color: var(--ink); font-weight: 500; font-size: 0.95rem; text-decoration: none; transition: color .2s; }
nav ul a:hover, nav ul a.active { color: var(--gold); }
nav .nav-cta { display: flex; gap: 12px; align-items: center; }
nav .phone { color: var(--ink); font-weight: 600; font-size: 0.95rem; text-decoration: none; }

/* HERO (homepage) */
.hero {
  position: relative; min-height: 88vh; display: grid; place-items: center;
  background: #1a1a1a;
  color: #fff; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; z-index: 0; }
.hero-bg img, .hero-bg video {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  animation: kenburns 22s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1.05) translate(0, 0); }
  to { transform: scale(1.18) translate(-2%, -1%); }
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.25) 30%, rgba(0,0,0,0.55) 100%),
    radial-gradient(ellipse at 80% 70%, rgba(170,132,83,0.2), transparent 60%);
}
.hero::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 30%; z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}
.hero-content { position: relative; text-align: center; padding: 100px 24px 200px; max-width: 900px; z-index: 2; }
.hero .stars { color: var(--gold-soft); letter-spacing: 0.3em; margin-bottom: 16px; }
.hero h1 { color: #fff; margin: 12px 0 24px; }
.hero p.lead { font-size: 1.15rem; opacity: 0.95; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }
.hero-badges { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-top: 40px; font-size: 0.9rem; opacity: 0.95; }
.hero-badges span { display: inline-flex; align-items: center; gap: 8px; }
.hero-badges svg { width: 18px; height: 18px; }

/* PAGE HERO (interior pages — smaller, image bg) */
.page-hero {
  position: relative; min-height: 44vh; display: grid; place-items: center;
  background: #1a1a1a; color: #fff; overflow: hidden;
}
.page-hero .bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.6) 100%);
}
.page-hero .content { position: relative; z-index: 2; text-align: center; padding: 80px 24px; max-width: 900px; }
.page-hero h1 { color: #fff; margin-bottom: 12px; font-size: clamp(2rem, 4.5vw, 3.4rem); }
.page-hero p { opacity: 0.9; max-width: 640px; margin: 0 auto; font-size: 1.05rem; }
.page-hero .breadcrumbs {
  margin-bottom: 18px; font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  opacity: 0.85;
}
.page-hero .breadcrumbs a { color: var(--gold-soft); text-decoration: none; }
.page-hero .breadcrumbs a:hover { color: #fff; }
.page-hero .breadcrumbs .sep { margin: 0 10px; opacity: 0.5; }

/* BOOKING WIDGET */
.booking-widget {
  position: relative; z-index: 5; background: #fff; box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  border-radius: 4px; padding: 28px; margin: -120px auto 0; max-width: 1100px;
  display: grid; grid-template-columns: 2fr 2fr 1.5fr 1.5fr 1fr; gap: 16px; align-items: end;
}
.booking-widget label { display: block; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 6px; font-weight: 600; }
.booking-widget .field {
  border: 1px solid var(--line); padding: 12px 14px; border-radius: 2px; cursor: pointer;
  background: #fff;
}
.booking-widget .field input, .booking-widget .field select {
  border: none; outline: none; width: 100%; font-size: 1rem; color: var(--ink); font-weight: 500; background: transparent;
  font-family: inherit;
}
.booking-widget .field-value { font-size: 1rem; color: var(--ink); font-weight: 500; }
.booking-widget .field-meta { font-size: 0.78rem; color: var(--ink-soft); margin-top: 2px; }
.booking-widget button { padding: 16px; height: 100%; }
.price-promise {
  text-align: center; max-width: 1100px; margin: 16px auto 0; font-size: 0.85rem; color: var(--ok);
  font-weight: 600;
}

/* SECTION SHARED */
section.block { padding: 96px 0; }
.section-head { text-align: center; max-width: 700px; margin: 0 auto 56px; }
.section-head .eyebrow { display: block; margin-bottom: 12px; }

/* WHY BOOK DIRECT */
.direct { background: var(--ink); color: #fff; }
.direct .section-head h2 { color: #fff; }
.direct .section-head .eyebrow { color: var(--gold-soft); }
.direct-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.direct-item {
  padding: 40px 28px 36px; text-align: center; border: 1px solid rgba(255,255,255,0.10);
  border-radius: 4px; transition: border-color .25s, transform .25s, background .25s;
  background: rgba(255,255,255,0.02);
}
.direct-item:hover { border-color: var(--gold-soft); transform: translateY(-4px); background: rgba(255,255,255,0.04); }
.direct-icon-wrap {
  width: 76px; height: 76px; margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(170, 132, 83, 0.07);
  border: 1px solid rgba(201, 168, 117, 0.25);
  display: grid; place-items: center;
  transition: background .25s, border-color .25s;
}
.direct-item:hover .direct-icon-wrap {
  background: rgba(170, 132, 83, 0.14);
  border-color: var(--gold-soft);
}
.direct-icon { width: 38px; height: 38px; color: var(--gold-soft); display: block; }
.direct-divider { width: 24px; height: 1px; background: var(--gold-soft); margin: 0 auto 14px; opacity: 0.5; }
.direct-item h3 {
  color: var(--gold-soft); font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem; font-weight: 500; margin-bottom: 10px; letter-spacing: -0.005em;
}
.direct-item p { color: rgba(255,255,255,0.78); font-size: 0.92rem; line-height: 1.55; }

/* HIGHLIGHTS */
.highlights { background: var(--cream); }
.hl-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.hl {
  background: #fff; padding: 40px 28px 36px; text-align: center; border-radius: 4px;
  border: 1px solid var(--line); transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative;
}
.hl:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(0,0,0,0.08); border-color: var(--gold-soft); }
.hl-icon-wrap {
  width: 76px; height: 76px; margin: 0 auto 20px;
  border-radius: 50%; background: var(--cream);
  display: grid; place-items: center;
  border: 1px solid var(--line);
  transition: background .25s, border-color .25s;
}
.hl:hover .hl-icon-wrap { background: #fff; border-color: var(--gold-soft); }
.hl-icon { width: 38px; height: 38px; color: var(--gold); display: block; }
.hl-divider {
  width: 24px; height: 1px; background: var(--gold-soft); margin: 0 auto 14px;
  opacity: 0.7;
}
.hl h3 {
  font-family: "Playfair Display", Georgia, serif; font-size: 1.2rem; font-weight: 500;
  margin-bottom: 10px; letter-spacing: -0.005em;
}
.hl p { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.55; }

/* ABOUT / DISTANCES split */
.about-split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; }
.about-split .photo {
  width: 100%; min-height: 520px; height: 100%; border-radius: 4px; overflow: hidden; position: relative;
  background-size: cover; background-position: center;
}
.about-split .photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.25) 100%);
}
.about-split .photo-label {
  position: absolute; bottom: 20px; left: 24px; color: rgba(255,255,255,0.85);
  font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase; z-index: 2;
}
.distances-list { list-style: none; margin-top: 24px; }
.distances-list li {
  display: flex; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.distances-list li:last-child { border-bottom: none; }
.distances-list .dist { color: var(--gold); font-weight: 700; font-variant-numeric: tabular-nums; }

/* ROOMS */
.rooms { background: #fff; }
.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.room {
  border: 1px solid var(--line); border-radius: 4px; overflow: hidden; background: #fff;
  transition: all .25s; cursor: pointer; text-decoration: none; color: var(--ink); display: block;
}
.room:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.room-img {
  height: 240px; background: linear-gradient(135deg, #c4d8de, #2c5870); position: relative;
  background-size: cover; background-position: center;
  display: grid; place-items: center; color: rgba(255,255,255,0.6); font-size: 0.8rem; letter-spacing: 0.2em;
  overflow: hidden;
}
.room-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0) 60%, rgba(0,0,0,0.25) 100%);
  transition: background .3s;
}
.room:hover .room-img::after { background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 60%, rgba(0,0,0,0.4) 100%); }
.room-img .badge {
  position: absolute; top: 14px; left: 14px; background: var(--gold); color: #fff;
  padding: 4px 10px; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; border-radius: 2px;
}
.room-body { padding: 24px; }
.room-body h3 { margin-bottom: 8px; color: var(--ink); }
.room-meta { display: flex; gap: 14px; color: var(--ink-soft); font-size: 0.85rem; margin-bottom: 14px; flex-wrap: wrap; }
.room-meta span { display: inline-flex; align-items: center; gap: 5px; }
.room-feat { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.room-feat span { background: var(--sand); padding: 4px 10px; font-size: 0.75rem; border-radius: 2px; color: var(--ink-soft); }
.room-foot { display: flex; justify-content: space-between; align-items: end; }
.price { font-family: "Playfair Display", Georgia, serif; }
.price .from { font-size: 0.7rem; color: var(--ink-soft); letter-spacing: 0.1em; text-transform: uppercase; display: block; }
.price .amount { font-size: 1.6rem; color: var(--ink); font-weight: 600; }
.price .unit { font-size: 0.85rem; color: var(--ink-soft); }
.room-foot .more { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.05em; color: var(--gold); }

/* GALLERY STRIP */
.gallery-strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 4px; padding: 0; }
.gallery-strip .gi {
  aspect-ratio: 1; background-size: cover; background-position: center;
  background-color: #1a1a1a; position: relative;
  cursor: pointer; transition: opacity .2s; overflow: hidden;
  display: block; text-decoration: none;
}
.gallery-strip .gi::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(0,0,0,0); transition: background .2s;
}
.gallery-strip .gi:hover::after { background: rgba(0,0,0,0.15); }
.gallery-strip .gi.more {
  background: linear-gradient(135deg, var(--gold) 0%, #8a6a40 100%);
  display: grid; place-items: center; color: #fff; font-size: 0.85rem; letter-spacing: 0.15em; font-weight: 600;
}
.gallery-strip .gi.more::after { display: none; }

/* GALLERY GRID (full gallery page) */
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 8px;
}
.gallery-grid .gi {
  aspect-ratio: 4/3; background-size: cover; background-position: center;
  background-color: #1a1a1a; position: relative; cursor: pointer; overflow: hidden;
  transition: transform .2s;
}
.gallery-grid .gi:hover { transform: scale(0.98); }
.gallery-filter { display: flex; gap: 12px; justify-content: center; margin-bottom: 40px; flex-wrap: wrap; }
.gallery-filter button {
  background: transparent; border: 1px solid var(--line); padding: 8px 18px; cursor: pointer;
  font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft);
  transition: all .2s; font-family: inherit;
}
.gallery-filter button:hover, .gallery-filter button.active { background: var(--gold); border-color: var(--gold); color: #fff; }

/* MAP / LOCATION */
.location { background: var(--cream); }
.map-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: stretch; }
.map-frame {
  min-height: 480px; border-radius: 4px; overflow: hidden; box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  position: relative; background: #e8e4dc;
}
.map-frame iframe { width: 100%; height: 100%; min-height: 480px; border: 0; display: block; }
.info-stack h3 { margin-bottom: 14px; font-size: 1.5rem; }
.info-stack p { color: var(--ink-soft); margin-bottom: 18px; }

/* REVIEWS */
.reviews { background: var(--ink); color: #fff; }
.reviews .section-head h2 { color: #fff; }
.reviews-summary { display: flex; justify-content: center; gap: 48px; margin-bottom: 56px; flex-wrap: wrap; }
.rev-platform { text-align: center; }
.rev-platform .score { font-family: "Playfair Display", Georgia, serif; font-size: 2.4rem; color: var(--gold-soft); }
.rev-platform .name { font-size: 0.85rem; opacity: 0.7; letter-spacing: 0.15em; text-transform: uppercase; margin-top: 4px; }
.rev-platform .count { font-size: 0.78rem; opacity: 0.5; margin-top: 2px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.review-card {
  background: rgba(255,255,255,0.04); padding: 28px; border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.08);
}
.review-card .stars { color: var(--gold-soft); margin-bottom: 12px; }
.review-card p { font-size: 0.95rem; opacity: 0.92; margin-bottom: 18px; line-height: 1.6; }
.review-card .author { font-size: 0.85rem; opacity: 0.7; }
.review-card .author strong { color: #fff; opacity: 1; }

/* FAQ */
.faq { background: #fff; }
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); padding: 22px 0; cursor: pointer; }
.faq-item summary {
  list-style: none; display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; font-size: 1.05rem; cursor: pointer;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.4rem; color: var(--gold); transition: transform .2s; font-weight: 300; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { margin-top: 14px; color: var(--ink-soft); font-size: 0.95rem; }
.faq-cta {
  text-align: center; margin-top: 40px; padding: 28px; background: var(--cream); border-radius: 4px;
}
.faq-cta strong { color: var(--gold); }

/* FAQ CATEGORIES (full FAQ page) */
.faq-cat-nav {
  display: flex; gap: 16px; justify-content: center; margin-bottom: 40px; flex-wrap: wrap;
}
.faq-cat-nav a {
  padding: 8px 18px; border: 1px solid var(--line); font-size: 0.85rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-soft); transition: all .2s;
}
.faq-cat-nav a:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.faq-category { margin-bottom: 60px; }
.faq-category h2 { color: var(--gold); border-bottom: 2px solid var(--gold-soft); padding-bottom: 12px; margin-bottom: 24px; font-size: 1.6rem; }

/* CTA STRIP */
.cta-strip {
  background: linear-gradient(135deg, var(--gold) 0%, #8a6a40 100%); color: #fff; text-align: center;
  padding: 64px 24px;
}
.cta-strip h2 { color: #fff; margin-bottom: 14px; }
.cta-strip p { opacity: 0.95; margin-bottom: 28px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* CONTENT PAGES (despre, restaurant, legal) */
.content-block { padding: 96px 0; }
.content-block .container-narrow > p { color: var(--ink-soft); margin-bottom: 18px; font-size: 1.05rem; }
.content-block .container-narrow > h2 { margin-top: 56px; margin-bottom: 18px; color: var(--gold); }
.content-block .container-narrow > h3 { margin-top: 40px; margin-bottom: 14px; }
.content-block .container-narrow > ul, .content-block .container-narrow > ol { margin: 18px 0 18px 24px; color: var(--ink-soft); }
.content-block .container-narrow > ul li, .content-block .container-narrow > ol li { margin-bottom: 10px; line-height: 1.6; }
.content-block .lead-paragraph {
  font-size: 1.25rem; line-height: 1.55; color: var(--ink); margin-bottom: 32px;
  font-family: "Playfair Display", Georgia, serif; font-weight: 400; font-style: italic;
}

/* CONTACT FORM */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form label { display: block; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 6px; font-weight: 600; }
.contact-form input, .contact-form textarea {
  width: 100%; border: 1px solid var(--line); padding: 12px 14px; border-radius: 2px;
  font-family: inherit; font-size: 1rem; color: var(--ink); background: #fff; outline: none;
  transition: border-color .2s;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--gold); }
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-info-cards { display: grid; gap: 16px; }
.contact-info-card {
  border: 1px solid var(--line); padding: 20px 24px; border-radius: 4px; background: var(--cream);
}
.contact-info-card .label { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 6px; font-weight: 600; }
.contact-info-card .value { font-family: "Playfair Display", Georgia, serif; font-size: 1.3rem; }
.contact-info-card .value a { color: var(--ink); text-decoration: none; }
.contact-info-card .value a:hover { color: var(--gold); }

/* ROOM DETAIL PAGE */
.room-hero-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 8px; height: 60vh; }
.room-hero-grid .main { background-size: cover; background-position: center; height: 100%; min-height: 460px; }
.room-hero-grid .side { display: grid; grid-template-rows: 1fr 1fr; gap: 8px; }
.room-hero-grid .side .img { background-size: cover; background-position: center; min-height: 220px; }
.room-detail { padding: 80px 0; }
.room-detail-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: start; }
.room-detail h1 { margin-bottom: 14px; font-size: clamp(2rem, 4vw, 3.4rem); }
.room-detail .badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.room-detail .badges span { background: var(--cream); padding: 4px 12px; font-size: 0.75rem; letter-spacing: 0.1em; color: var(--ink-soft); border: 1px solid var(--line); }
.room-detail .lead { font-size: 1.15rem; color: var(--ink-soft); margin-bottom: 32px; }
.room-detail h2 { margin: 32px 0 16px; font-size: 1.6rem; }
.room-detail .amenity-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 32px; }
.room-detail .amenity-grid li { list-style: none; padding: 8px 0; color: var(--ink-soft); display: flex; gap: 10px; align-items: center; }
.room-detail .amenity-grid li::before { content: "✓"; color: var(--gold); font-weight: 600; }
.room-side-card {
  position: sticky; top: 96px; border: 1px solid var(--line); padding: 32px; border-radius: 4px; background: var(--cream);
}
.room-side-card .price { margin-bottom: 20px; }
.room-side-card .price .amount { display: block; font-size: 2.4rem; }
.room-side-card .price .unit { color: var(--ink-soft); font-family: inherit; }
.room-side-card .seasons { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 0.88rem; color: var(--ink-soft); }
.room-side-card .seasons div { display: flex; justify-content: space-between; padding: 5px 0; }
.room-side-card .seasons .price-num { font-weight: 600; color: var(--ink); font-variant-numeric: tabular-nums; }

/* FOOTER */
footer {
  background: #0f0f0f; color: rgba(255,255,255,0.7); padding: 64px 0 24px; font-size: 0.9rem;
}
footer .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
footer h4 { color: #fff; font-family: -apple-system, sans-serif; font-size: 0.85rem; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 18px; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; }
footer a { color: rgba(255,255,255,0.7); text-decoration: none; }
footer a:hover { color: var(--gold-soft); }
footer .social { display: flex; gap: 12px; margin-top: 16px; }
footer .social a {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08); display: grid; place-items: center;
  transition: background .2s, transform .2s;
  color: rgba(255,255,255,0.85);
}
footer .social a:hover { background: var(--gold); color: #fff; transform: translateY(-2px); }
footer .social a svg { width: 17px; height: 17px; display: block; }
footer .footer-bottom {
  display: flex; justify-content: space-between; padding-top: 24px; font-size: 0.8rem; opacity: 0.6;
  flex-wrap: wrap; gap: 12px;
}
footer .footer-bottom a { color: rgba(255,255,255,0.85); }

/* FOXY WIDGET */
.foxy-bubble { position: fixed; bottom: 24px; right: 24px; z-index: 999; }
.foxy-btn {
  width: 64px; height: 64px; border-radius: 50%; background: var(--gold); color: #fff;
  display: grid; place-items: center; box-shadow: 0 12px 30px rgba(170,132,83,0.4);
  cursor: pointer; transition: transform .2s; border: none;
  font-size: 1.6rem; position: relative;
}
.foxy-btn:hover { transform: scale(1.05); }
.foxy-btn::after {
  content: ""; position: absolute; top: 6px; right: 6px; width: 12px; height: 12px;
  background: #ff5757; border: 2px solid #fff; border-radius: 50%;
}
.foxy-tooltip {
  position: absolute; right: 78px; bottom: 12px; background: #fff; padding: 12px 18px;
  border-radius: 24px; box-shadow: 0 8px 24px rgba(0,0,0,0.12); white-space: nowrap;
  font-size: 0.88rem; font-weight: 500; color: var(--ink);
  animation: float 3s ease-in-out infinite;
}
.foxy-tooltip strong { color: var(--gold); }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }

/* ==========================================================================
   FOXY CHAT PANEL
   ========================================================================== */
#foxy-panel {
  position: fixed; bottom: 100px; right: 24px;
  width: 380px; max-width: calc(100vw - 32px);
  height: 580px; max-height: calc(100vh - 140px);
  background: #fff; border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25), 0 0 0 1px rgba(0,0,0,0.05);
  display: flex; flex-direction: column;
  z-index: 998; overflow: hidden;
  transform: translateY(20px) scale(0.96);
  opacity: 0;
  pointer-events: none;
  transition: transform .25s cubic-bezier(0.34, 1.56, 0.64, 1), opacity .2s;
  font-family: "Inter", -apple-system, sans-serif;
}
#foxy-panel.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}
.foxy-header {
  background: linear-gradient(135deg, var(--gold) 0%, #8a6a40 100%);
  color: #fff; padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
}
.foxy-header .foxy-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.2); color: #fff;
  display: grid; place-items: center;
  font-family: "Playfair Display", serif; font-size: 1.4rem; font-weight: 600;
  flex-shrink: 0;
}
.foxy-header .foxy-meta { flex: 1; min-width: 0; }
.foxy-header .foxy-name {
  font-weight: 600; font-size: 1rem; line-height: 1.1;
  font-family: "Playfair Display", serif; letter-spacing: 0.02em;
}
.foxy-header .foxy-status {
  font-size: 0.74rem; opacity: 0.95; display: flex; align-items: center; gap: 6px; margin-top: 4px;
  letter-spacing: 0.05em;
}
.foxy-header .foxy-dot {
  width: 8px; height: 8px; background: #4ade80; border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(74,222,128,0.3);
  animation: foxyPulse 2s infinite;
}
@keyframes foxyPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }
.foxy-header .foxy-lang {
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25); color: #fff; cursor: pointer;
  padding: 4px 10px; border-radius: 100px; font-size: 0.7rem; letter-spacing: 0.15em; font-weight: 600;
  font-family: inherit; transition: background .2s; margin-right: 4px;
}
.foxy-header .foxy-lang:hover { background: rgba(255,255,255,0.28); }
.foxy-header .foxy-close {
  background: transparent; border: none; color: #fff; cursor: pointer;
  width: 32px; height: 32px; border-radius: 50%; font-size: 1.5rem;
  display: grid; place-items: center; transition: background .2s;
  line-height: 1; padding: 0;
}
.foxy-header .foxy-close:hover { background: rgba(255,255,255,0.2); }

/* Lead capture form (inside chat bubble) */
.foxy-lead-form-wrap { background: var(--cream) !important; border-color: var(--gold-soft) !important; padding: 16px !important; max-width: 100% !important; }
.foxy-lead-form { display: flex; flex-direction: column; gap: 10px; }
.foxy-lead-form label { display: block; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; }
.foxy-lead-form input, .foxy-lead-form select, .foxy-lead-form textarea {
  width: 100%; margin-top: 4px; padding: 8px 12px; border: 1px solid var(--line); border-radius: 6px;
  font-family: inherit; font-size: 0.9rem; background: #fff; color: var(--ink); outline: none;
  text-transform: none; letter-spacing: normal; font-weight: 400;
}
.foxy-lead-form input:focus, .foxy-lead-form select:focus, .foxy-lead-form textarea:focus { border-color: var(--gold); }
.foxy-lead-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.foxy-lead-submit {
  background: var(--gold); color: #fff; border: none; padding: 10px; border-radius: 100px;
  font-family: inherit; font-weight: 600; font-size: 0.9rem; cursor: pointer;
  letter-spacing: 0.05em; transition: background .2s; margin-top: 4px;
}
.foxy-lead-submit:hover { background: var(--ink); }
.foxy-lead-confirm {
  padding: 16px; text-align: center; color: var(--ok); font-size: 0.95rem;
  background: rgba(45, 122, 79, 0.08); border-radius: 8px;
}

.foxy-messages {
  flex: 1; padding: 20px 16px; overflow-y: auto;
  background: #fafaf7;
  display: flex; flex-direction: column; gap: 10px;
  scroll-behavior: smooth;
}
.foxy-messages::-webkit-scrollbar { width: 6px; }
.foxy-messages::-webkit-scrollbar-track { background: transparent; }
.foxy-messages::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.15); border-radius: 3px; }
.foxy-messages::-webkit-scrollbar-thumb:hover { background: rgba(0,0,0,0.25); }

.foxy-msg { display: flex; animation: foxyFadeIn .25s ease-out; }
@keyframes foxyFadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.foxy-msg .foxy-msg-text {
  max-width: 88%; padding: 10px 14px; border-radius: 16px;
  font-size: 0.92rem; line-height: 1.5; word-wrap: break-word;
}
.foxy-msg .foxy-msg-text a { color: inherit; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 2px; }
.foxy-msg .foxy-msg-text a:hover { opacity: 0.85; }
.foxy-msg .foxy-msg-text strong { font-weight: 600; }

.foxy-msg-user { justify-content: flex-end; }
.foxy-msg-user .foxy-msg-text {
  background: var(--gold); color: #fff;
  border-bottom-right-radius: 4px;
}

.foxy-msg-foxy { justify-content: flex-start; }
.foxy-msg-foxy .foxy-msg-text {
  background: #fff; color: var(--ink);
  border: 1px solid var(--line);
  border-bottom-left-radius: 4px;
}

.foxy-typing .foxy-msg-text {
  padding: 14px 16px;
  display: flex; gap: 5px;
}
.foxy-typing .foxy-msg-text span {
  width: 7px; height: 7px; background: var(--gold-soft); border-radius: 50%;
  animation: foxyTyping 1.2s infinite;
}
.foxy-typing .foxy-msg-text span:nth-child(2) { animation-delay: 0.15s; }
.foxy-typing .foxy-msg-text span:nth-child(3) { animation-delay: 0.3s; }
@keyframes foxyTyping {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-4px); }
}

.foxy-quick {
  padding: 0 16px 12px; display: flex; flex-wrap: wrap; gap: 6px;
  background: #fafaf7;
  border-top: 1px solid transparent;
  max-height: 130px; overflow-y: auto;
}
.foxy-chip {
  background: #fff; border: 1px solid var(--line); padding: 7px 13px;
  border-radius: 100px; font-size: 0.78rem; cursor: pointer;
  color: var(--ink-soft); font-family: inherit; line-height: 1.2;
  transition: border-color .2s, color .2s, background .2s;
}
.foxy-chip:hover { border-color: var(--gold); color: var(--gold); background: var(--cream); }

.foxy-input {
  display: flex; gap: 8px; padding: 12px 16px;
  background: #fff; border-top: 1px solid var(--line);
}
.foxy-input input {
  flex: 1; border: 1px solid var(--line); padding: 10px 16px;
  border-radius: 100px; font-size: 0.92rem; outline: none;
  font-family: inherit; transition: border-color .2s;
  min-width: 0;
}
.foxy-input input:focus { border-color: var(--gold); }
.foxy-input button {
  background: var(--gold); color: #fff; border: none;
  width: 40px; height: 40px; border-radius: 50%; cursor: pointer;
  display: grid; place-items: center; flex-shrink: 0;
  transition: background .2s, transform .15s;
}
.foxy-input button:hover { background: var(--ink); transform: scale(1.05); }
.foxy-input button:active { transform: scale(0.96); }

.foxy-disclaimer {
  padding: 8px 16px 10px; font-size: 0.7rem; color: var(--ink-soft);
  background: #fff; text-align: center; line-height: 1.4;
}
.foxy-disclaimer a { color: var(--gold); }

@media (max-width: 480px) {
  #foxy-panel {
    bottom: 0; right: 0; left: 0; width: 100%; height: 100%; max-height: 100%;
    border-radius: 0;
    transform: translateY(100%);
  }
  #foxy-panel.open { transform: translateY(0); }
}

/* ==========================================================================
   COOKIE CONSENT BANNER & MODAL
   ========================================================================== */
#mercur-cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9000;
  background: #fff; border-top: 1px solid var(--line);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.12);
  padding: 18px 24px;
  animation: mcb-slide-up .35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes mcb-slide-up {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@keyframes mcb-slide-down {
  from { transform: translateY(0); opacity: 1; }
  to { transform: translateY(100%); opacity: 0; }
}
#mercur-cookie-banner .mcb-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
#mercur-cookie-banner .mcb-text { flex: 1; min-width: 280px; }
#mercur-cookie-banner .mcb-text strong {
  display: block; margin-bottom: 6px; color: var(--ink);
  font-family: "Playfair Display", Georgia, serif; font-size: 1.05rem; font-weight: 500;
}
#mercur-cookie-banner .mcb-text p {
  margin: 0; font-size: 0.88rem; color: var(--ink-soft); line-height: 1.5;
}
#mercur-cookie-banner .mcb-text a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
#mercur-cookie-banner .mcb-actions {
  display: flex; gap: 8px; flex-shrink: 0; flex-wrap: wrap;
}

.mcb-btn {
  padding: 10px 18px; border: none; border-radius: 100px; cursor: pointer;
  font-family: inherit; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.02em;
  transition: all .2s; white-space: nowrap;
}
.mcb-btn-primary { background: var(--gold); color: #fff; }
.mcb-btn-primary:hover { background: var(--ink); color: #fff; }
.mcb-btn-secondary { background: var(--cream); color: var(--ink); border: 1px solid var(--line); }
.mcb-btn-secondary:hover { background: var(--sand); border-color: var(--gold-soft); }

/* Modal */
#mercur-cookie-modal {
  position: fixed; inset: 0; z-index: 9100;
  display: grid; place-items: center; padding: 24px;
}
#mercur-cookie-modal .mcm-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0.55); animation: mcm-fade .2s;
}
#mercur-cookie-modal .mcm-content {
  position: relative; background: #fff; max-width: 560px; width: 100%;
  border-radius: 8px; padding: 36px 32px 28px;
  max-height: calc(100vh - 48px); overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0,0,0,0.28);
  animation: mcm-pop .3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes mcm-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes mcm-pop { from { opacity: 0; transform: scale(0.94) translateY(10px); } to { opacity: 1; transform: scale(1) translateY(0); } }

#mercur-cookie-modal .mcm-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 50%;
  background: transparent; border: none; color: var(--ink-soft);
  font-size: 1.5rem; cursor: pointer; transition: all .2s;
  display: grid; place-items: center;
}
#mercur-cookie-modal .mcm-close:hover { background: var(--cream); color: var(--ink); }

#mercur-cookie-modal h2 {
  font-family: "Playfair Display", Georgia, serif; font-size: 1.5rem; font-weight: 500;
  margin-bottom: 12px; color: var(--ink);
}
#mercur-cookie-modal .mcm-content > p {
  color: var(--ink-soft); margin-bottom: 24px; font-size: 0.93rem; line-height: 1.6;
}

.mcm-cat {
  display: flex; gap: 14px; padding: 14px 16px;
  border: 1px solid var(--line); border-radius: 6px;
  margin-bottom: 10px; cursor: pointer;
  transition: all .2s;
}
.mcm-cat:hover { border-color: var(--gold-soft); background: var(--cream); }
.mcm-cat input[type="checkbox"] {
  margin-top: 3px; cursor: pointer; flex-shrink: 0;
  width: 18px; height: 18px; accent-color: var(--gold);
}
.mcm-cat input[type="checkbox"]:disabled { cursor: not-allowed; opacity: 0.5; }
.mcm-cat strong { display: block; margin-bottom: 4px; color: var(--ink); font-size: 0.95rem; }
.mcm-cat span { color: var(--ink-soft); font-size: 0.85rem; line-height: 1.5; }

.mcm-actions {
  display: flex; gap: 10px; margin-top: 20px; justify-content: flex-end; flex-wrap: wrap;
  padding-top: 16px; border-top: 1px solid var(--line);
}

@media (max-width: 640px) {
  #mercur-cookie-banner { padding: 16px; }
  #mercur-cookie-banner .mcb-inner { flex-direction: column; align-items: stretch; gap: 14px; }
  #mercur-cookie-banner .mcb-actions { justify-content: space-between; }
  #mercur-cookie-banner .mcb-actions .mcb-btn { flex: 1; min-width: 0; padding: 10px 8px; font-size: 0.8rem; }
  #mercur-cookie-modal .mcm-content { padding: 28px 20px 20px; }
  .mcm-actions .mcb-btn { flex: 1; }
}

/* GOOGLE TRANSLATE — hide default UI, keep functionality */
#google_translate_element,
.goog-te-banner-frame.skiptranslate,
.skiptranslate iframe { display: none !important; visibility: hidden !important; }
body { top: 0 !important; position: static !important; }
.goog-te-gadget { font-size: 0 !important; height: 0; overflow: hidden; }
.goog-te-gadget > span > a,
.goog-te-gadget .goog-te-combo { display: none !important; }
font.goog-text-highlight { background: transparent !important; box-shadow: none !important; }

/* MOCKUP NOTES */
.mockup-banner {
  background: #2d3748; color: #fff; padding: 14px 24px; text-align: center;
  font-size: 0.85rem; letter-spacing: 0.05em;
}
.mockup-banner strong { color: var(--gold-soft); }

/* RESPONSIVE */
@media (max-width: 900px) {
  nav ul { display: none; }
  .booking-widget { grid-template-columns: 1fr 1fr; padding: 20px; gap: 12px; }
  .booking-widget button { grid-column: 1 / -1; }
  .hl-grid, .rooms-grid, .reviews-grid, .direct-grid { grid-template-columns: 1fr; }
  .about-split, .map-grid, .contact-grid, .room-detail-grid { grid-template-columns: 1fr; gap: 32px; }
  footer .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .gallery-strip { grid-template-columns: repeat(3, 1fr); }
  section.block, .content-block { padding: 64px 0; }
  .topbar .container { font-size: 0.72rem; }
  .topbar .lang { display: none; }
  .room-hero-grid { grid-template-columns: 1fr; height: auto; }
  .room-hero-grid .side { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr; }
  .room-side-card { position: static; }
}
@media (max-width: 560px) {
  .hero-content { padding: 60px 20px 200px; }
  .booking-widget { grid-template-columns: 1fr; margin-top: -180px; }
  footer .footer-grid { grid-template-columns: 1fr; }
  .reviews-summary { gap: 24px; }
  .room-detail .amenity-grid { grid-template-columns: 1fr; }
}
