/* ==========================================================================
   Select House Sibiu — foaie de stil principală
   Paletă, tipografie și sistem de mișcare preluate din prototipul de design
   „Select House Sibiu.dc.html".

   Praguri: 480 (telefon mic) · 768 (telefon) · 1024 (tabletă) · 1280 (desktop)
   ========================================================================== */

:root {
  --burgundy: #571F2B;
  --wine: #7B2E3F;
  --espresso: #261B17;
  --ivory: #F5EFE6;
  --sand: #EFE7DA;
  --card: #FBF7F1;
  --gold: #B59660;
  --gold-ink: #8A6F3C;   /* auriu suficient de închis pentru text pe ivory */
  --sage: #697161;
  --stone: #DCD2C2;
  --error: #8E2A2A;
  --error-light: #E8A9A0;

  --ink-86: rgba(38, 27, 23, .86);
  --ink-76: rgba(38, 27, 23, .76);
  --ink-72: rgba(38, 27, 23, .72);
  --ink-68: rgba(38, 27, 23, .68);
  --ink-62: rgba(38, 27, 23, .62);
  --ink-55: rgba(38, 27, 23, .55);
  --ink-50: rgba(38, 27, 23, .50);
  --line: rgba(38, 27, 23, .12);
  --line-soft: rgba(38, 27, 23, .09);
  --line-strong: rgba(38, 27, 23, .22);

  --cream-88: rgba(245, 239, 230, .88);
  --cream-82: rgba(245, 239, 230, .82);
  --cream-74: rgba(245, 239, 230, .74);
  --cream-70: rgba(245, 239, 230, .70);
  --cream-55: rgba(245, 239, 230, .55);
  --cream-line: rgba(245, 239, 230, .14);

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: Manrope, system-ui, -apple-system, "Segoe UI", sans-serif;

  --ease-in: cubic-bezier(.22, .61, .36, 1);
  --ease-big: cubic-bezier(.16, 1, .3, 1);

  --gutter: clamp(20px, 3vw, 40px);
  --wrap: 1280px;
  --section: clamp(52px, 9vw, 130px);
  --header-h: 84px;
}

/* --------------------------------------------------------------------------
   Reset
   -------------------------------------------------------------------------- */

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 100px; }
html, body { max-width: 100%; }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--espresso);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }

h1, h2, h3, h4 { margin: 0; font-family: var(--serif); font-weight: 600; letter-spacing: -.01em; }
p { margin: 0; text-wrap: pretty; }
img { display: block; max-width: 100%; }
a { color: var(--wine); text-decoration: none; transition: color 250ms; }
a:hover { color: var(--burgundy); }
input, select, textarea, button { font-family: inherit; font-size: inherit; max-width: 100%; }
button { cursor: pointer; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
::selection { background: var(--gold); color: var(--espresso); }

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

.skip-link {
  position: absolute; left: 12px; top: -100px; z-index: 500;
  background: var(--espresso); color: var(--ivory);
  padding: 12px 18px; font-size: 14px; font-weight: 600;
  transition: top 200ms;
}
.skip-link:focus { top: 12px; color: var(--ivory); }

/* --------------------------------------------------------------------------
   Animații
   -------------------------------------------------------------------------- */

@keyframes shRise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
@keyframes shFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes shMask { from { transform: translateY(105%); } to { transform: none; } }
@keyframes shDraw { from { stroke-dashoffset: 250; } to { stroke-dashoffset: 0; } }
@keyframes shKen  { from { transform: scale(1); } to { transform: scale(1.045); } }
@keyframes shSheet { from { transform: translateY(100%); } to { transform: none; } }
@keyframes shDot { 0% { transform: translateX(-6px); opacity: .3; } 50% { opacity: 1; } 100% { transform: translateX(6px); opacity: .3; } }
@keyframes shNudge { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* Sistemul de dezvăluire la derulare.
   Regulile se aplică doar sub .js-motion, clasă pusă de un script scurt din
   <head> atunci când browserul chiar poate anima. Fără JS (sau cu mișcare
   redusă) conținutul rămâne pur și simplu vizibil. */
.js-motion [data-rv="title"] { clip-path: inset(0 0 105% 0); transform: translateY(14px); transition: clip-path 860ms var(--ease-big), transform 860ms var(--ease-big); }
.js-motion [data-rv="text"]  { opacity: 0; transform: translateY(22px); transition: opacity 660ms var(--ease-in), transform 660ms var(--ease-in); }
.js-motion [data-rv="img"] { clip-path: inset(0 100% 0 0); transition: clip-path 940ms var(--ease-big); }
.js-motion [data-rv="line"]  { transform: scaleX(0); transform-origin: left; transition: transform 640ms var(--ease-in); }
.js-motion [data-rv="stagger"] > * { opacity: 0; transform: translateY(20px); transition: opacity 620ms var(--ease-in), transform 620ms var(--ease-in); }

.js-motion [data-rv].is-in { opacity: 1; transform: none; clip-path: inset(0 0 0 0); }
.js-motion [data-rv="line"].is-in { transform: scaleX(1); }
.js-motion [data-rv="stagger"].is-in > * { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   Preîncărcare
   -------------------------------------------------------------------------- */

.preloader {
  /* Ascuns implicit: fără JS nu are cine să-l închidă, iar un ecran negru
     permanent ar bloca site-ul. Se aprinde doar sub .js-motion. */
  display: none;
  position: fixed; inset: 0; z-index: 400;
  background: var(--espresso);
  place-items: center;
  transition: opacity 520ms var(--ease-big), clip-path 620ms var(--ease-big);
  clip-path: inset(0 0 0 0);
}
.js-motion .preloader { display: grid; }
.preloader.is-done { opacity: 0; clip-path: inset(0 0 100% 0); pointer-events: none; }
.preloader[hidden] { display: none !important; }
.preloader__inner { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.preloader svg path { stroke-dasharray: 250; animation: shDraw 900ms var(--ease-in) both; }
.preloader__word { overflow: hidden; display: block; }
.preloader__word span {
  display: block;
  font-family: var(--serif); color: var(--ivory);
  font-size: 15px; letter-spacing: .34em;
  animation: shMask 700ms 320ms var(--ease-big) both;
}
.preloader__rule { width: 44px; height: 1px; background: rgba(181, 150, 96, .35); position: relative; overflow: hidden; }
.preloader__rule span { position: absolute; inset: 0; width: 14px; background: var(--gold); animation: shDot 1100ms 200ms ease-in-out infinite; }

/* --------------------------------------------------------------------------
   Utilitare
   -------------------------------------------------------------------------- */

.wrap { max-width: var(--wrap); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-top: var(--section); }

.eyebrow {
  display: block;
  font-size: 11.5px; letter-spacing: .22em;
  color: var(--gold); font-weight: 600;
  text-transform: uppercase;
}

.lede { margin-top: 18px; font-size: clamp(15px, 1.4vw, 17px); line-height: 1.7; color: var(--ink-76); max-width: 56ch; }
.note { margin-top: 14px; font-size: 12.5px; line-height: 1.6; color: var(--ink-50); }

.callout {
  background: var(--sand);
  border-left: 2px solid var(--sage);
  padding: 18px 20px;
  font-size: 14px; line-height: 1.65; color: var(--ink-86);
}
.callout--light { background: var(--ivory); }

.rule-gold { display: block; height: 1px; background: var(--gold); margin-top: 22px; max-width: 120px; }

.h-hero  { font-size: clamp(34px, 7.4vw, 80px); line-height: 1.03; }
.h-page  { font-size: clamp(30px, 4.4vw, 62px); line-height: 1.06; }
.h-major { font-size: clamp(28px, 3.6vw, 52px); line-height: 1.08; }
.h-sect  { font-size: clamp(26px, 3.2vw, 44px); line-height: 1.1; }
.h-sub   { font-size: clamp(24px, 2.6vw, 30px); line-height: 1.15; }

/* --------------------------------------------------------------------------
   Butoane
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 1px solid transparent; border-radius: 2px;
  min-height: 50px; padding: 0 clamp(18px, 2.4vw, 28px);
  font-size: 13.5px; font-weight: 600; letter-spacing: .04em;
  text-align: center;
  transition: background 260ms, color 260ms, border-color 260ms, transform 260ms;
}
.btn--primary { background: var(--wine); color: var(--ivory); }
.btn--primary:hover { background: var(--burgundy); color: var(--ivory); transform: translateY(-3px); }
.btn--deep { background: var(--burgundy); color: var(--ivory); }
.btn--deep:hover { background: var(--wine); color: var(--ivory); transform: translateY(-2px); }
.btn--dark { background: var(--espresso); color: var(--ivory); }
.btn--dark:hover { background: var(--burgundy); color: var(--ivory); }
.btn--outline { background: transparent; color: var(--burgundy); border-color: rgba(87, 31, 43, .35); }
.btn--outline:hover { background: var(--burgundy); color: var(--ivory); border-color: var(--burgundy); }
.btn--quiet { background: transparent; color: var(--espresso); border-color: rgba(38, 27, 23, .3); }
.btn--quiet:hover { border-color: var(--wine); color: var(--wine); }
.btn--ghost { background: transparent; color: var(--ivory); border-color: rgba(245, 239, 230, .42); }
.btn--ghost:hover { background: rgba(245, 239, 230, .08); border-color: var(--gold); color: var(--ivory); }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .62; cursor: progress; transform: none; }

.link-more {
  min-height: 44px;
  display: inline-flex; align-items: center;
  font-size: 13px; font-weight: 600; letter-spacing: .06em;
  color: var(--wine); white-space: nowrap;
  border-bottom: 1px solid rgba(123, 46, 63, .35);
}
.link-more:hover { border-bottom-color: var(--wine); }

.icon-btn {
  width: 44px; height: 44px; flex: none;
  display: grid; place-items: center;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  font-size: 20px; line-height: 1; color: var(--espresso);
  transition: background 250ms, color 250ms, border-color 250ms;
}
.icon-btn:hover { background: var(--espresso); color: var(--ivory); }

/* --------------------------------------------------------------------------
   Antet
   -------------------------------------------------------------------------- */

.header {
  position: fixed; inset: 0 0 auto 0; z-index: 120;
  height: var(--header-h);
  display: flex; align-items: center;
  gap: clamp(14px, 2.2vw, 34px);
  padding-left: max(clamp(16px, 3vw, 40px), env(safe-area-inset-left));
  padding-right: max(clamp(16px, 3vw, 40px), env(safe-area-inset-right));
  background: var(--ivory);
  box-shadow: 0 1px 22px rgba(38, 27, 23, .10);
  color: var(--espresso);
  transition: background 320ms var(--ease-in), height 320ms var(--ease-in), box-shadow 320ms, color 320ms;
}

/* Doar pagina principală pornește cu antet transparent peste hero. */
.header--ghost {
  background: linear-gradient(to bottom, rgba(38, 27, 23, .62), rgba(38, 27, 23, 0));
  box-shadow: none;
  color: var(--ivory);
}
.header--ghost.is-scrolled {
  height: 72px;
  background: var(--ivory);
  box-shadow: 0 1px 22px rgba(38, 27, 23, .10);
  color: var(--espresso);
}

.header__brand { display: flex; align-items: center; gap: 10px; min-width: 0; color: inherit; }
.header__brand:hover { color: inherit; }
.header__brand svg { flex: none; transition: all 320ms; }
.header__brand svg path { stroke: var(--wine); }
.header--ghost:not(.is-scrolled) .header__brand svg path { stroke: var(--gold); }
.header--ghost.is-scrolled .header__brand svg { width: 23px; height: 27px; }

.header__word { font-family: var(--serif); font-size: clamp(14px, 1.3vw, 19px); letter-spacing: .16em; white-space: nowrap; color: inherit; }

.header__nav { display: flex; gap: clamp(12px, 1.9vw, 30px); align-items: center; min-width: 0; }
.header__nav a {
  position: relative;
  font-size: clamp(11.5px, 1.05vw, 13.5px);
  font-weight: 500; letter-spacing: .05em;
  white-space: nowrap; padding: 8px 0;
  color: inherit; opacity: .72;
}
.header__nav a:hover { opacity: 1; color: inherit; }
.header__nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 300ms var(--ease-in);
}
.header__nav a:hover::after { transform: scaleX(.4); }
.header__nav a[aria-current="page"] { opacity: 1; }
.header__nav a[aria-current="page"]::after { transform: scaleX(1); }

.header__actions { margin-left: auto; display: flex; align-items: center; gap: clamp(10px, 1.3vw, 18px); }

.lang {
  display: flex; gap: 7px; align-items: center;
  font-size: 12px; letter-spacing: .08em; color: inherit;
}
.lang b { font-weight: 700; }
.lang i { font-style: normal; opacity: .4; }
/* Engleza nu există încă — arătăm asta, în loc să ducem nicăieri. */
.lang button {
  all: unset;
  cursor: not-allowed; opacity: .45;
  font-size: 12px; letter-spacing: .08em;
  color: inherit; text-decoration: line-through;
}

.header__mobile { margin-left: auto; display: none; align-items: center; gap: 6px; }
.header__icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  color: inherit; background: transparent;
  border: 1px solid currentColor; border-radius: 2px;
  opacity: .55;
}
.header__icon:hover { opacity: 1; color: inherit; }
.header__burger { opacity: 1; }
.header__burger span { display: flex; flex-direction: column; gap: 4px; align-items: flex-end; }
.header__burger span span { display: block; width: 19px; height: 1.5px; background: currentColor; }
.header__burger span span:last-child { width: 12px; }

/* Meniu pe tot ecranul */
.menu {
  position: fixed; inset: 0; z-index: 300;
  background: var(--espresso); color: var(--ivory);
  display: flex; flex-direction: column;
  animation: shFade 240ms both;
  overflow-y: auto; overscroll-behavior: contain;
  padding-top: env(safe-area-inset-top);
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}
.menu[hidden] { display: none !important; }
.menu__top {
  flex: none; height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(16px, 4vw, 28px);
}
.menu__brand { display: flex; align-items: center; gap: 10px; }
.menu__brand span { font-family: var(--serif); font-size: 15px; letter-spacing: .16em; }
.menu__close {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: transparent; border: 1px solid rgba(245, 239, 230, .3);
  border-radius: 2px; color: var(--ivory); font-size: 20px; line-height: 1;
}
.menu nav { padding: clamp(10px, 3vw, 24px) clamp(16px, 4vw, 28px) 0; display: flex; flex-direction: column; }
.menu nav a {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  min-height: 60px; padding: 8px 0;
  border-bottom: 1px solid rgba(245, 239, 230, .12);
  font-family: var(--serif); font-size: clamp(26px, 7vw, 34px);
  color: var(--ivory);
  animation: shRise 520ms var(--ease-big) both;
}
.menu nav a:hover { color: var(--gold); }
.menu nav a:nth-child(1) { animation-delay: 60ms; }
.menu nav a:nth-child(2) { animation-delay: 120ms; }
.menu nav a:nth-child(3) { animation-delay: 180ms; }
.menu nav a:nth-child(4) { animation-delay: 240ms; }
.menu nav a:nth-child(5) { animation-delay: 300ms; }
.menu nav a:nth-child(6) { animation-delay: 360ms; }
.menu nav a span { font-family: var(--sans); font-size: 11px; letter-spacing: .14em; color: rgba(245, 239, 230, .32); }
.menu nav a[aria-current="page"] span { color: var(--gold); }

.menu__foot {
  margin-top: auto;
  padding: clamp(22px, 5vw, 32px) clamp(16px, 4vw, 28px) calc(24px + env(safe-area-inset-bottom));
  display: flex; flex-direction: column; gap: 12px;
}
.menu__foot .btn { min-height: 52px; }
.menu__foot .btn--ghost { border-color: rgba(245, 239, 230, .32); }
.menu__lang {
  display: flex; align-items: center; gap: 8px; padding-top: 6px;
  font-size: 12px; letter-spacing: .08em; color: rgba(245, 239, 230, .55);
}
.menu__lang b { color: var(--ivory); font-weight: 700; }
.menu__lang s { text-decoration: line-through; }
.menu__lang em { font-style: normal; margin-left: 6px; letter-spacing: 0; }

@media (max-height: 540px) and (orientation: landscape) {
  .menu nav a { min-height: 46px; font-size: 21px; padding: 4px 0; }
  .menu__foot { padding-top: 16px; padding-bottom: calc(14px + env(safe-area-inset-bottom)); }
}

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

.hero {
  position: relative; overflow: hidden;
  min-height: max(760px, 92svh);
  display: flex; flex-direction: column; justify-content: flex-end;
}
.hero__layer { position: absolute; inset: -24px 0; will-change: transform; }
.hero__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transform-origin: 58% 45%;
}
.js-motion .hero__img { animation: shKen 15s var(--ease-big) both; }
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(38, 27, 23, .88) 0%, rgba(87, 31, 43, .62) 46%, rgba(38, 27, 23, .34) 100%);
}
.hero__inner {
  position: relative; width: 100%;
  max-width: var(--wrap); margin: 0 auto;
  padding: 120px clamp(28px, 3vw, 40px) 30px;
}
.hero h1 { margin-top: clamp(14px, 2.4vw, 22px); color: var(--ivory); max-width: 15ch; }
.hero h1 span { display: block; overflow: hidden; padding-bottom: .04em; }
.hero h1 span span { display: block; animation: shMask 860ms var(--ease-big) both; }
.hero h1 span:nth-child(1) span { animation-delay: 320ms; }
.hero h1 span:nth-child(2) span { animation-delay: 440ms; }

.hero__eyebrow { animation: shRise 700ms 180ms var(--ease-in) both; font-size: clamp(10px, 2.6vw, 11.5px); }
.hero__lede {
  margin-top: clamp(14px, 2vw, 26px); max-width: 46ch;
  font-size: clamp(15px, 1.35vw, 17.5px); line-height: 1.6;
  color: rgba(245, 239, 230, .85);
  animation: shRise 760ms 640ms var(--ease-in) both;
}
.hero__actions {
  margin-top: clamp(22px, 3.4vw, 38px);
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
  animation: shRise 760ms 780ms var(--ease-in) both;
}
.hero__actions .btn { min-height: 52px; }
.hero__textlink {
  min-height: 44px; display: none; align-items: center;
  color: var(--ivory); font-size: 14px; font-weight: 600; letter-spacing: .03em;
  border-bottom: 1px solid rgba(181, 150, 96, .6); padding-bottom: 2px;
}
.hero__textlink:hover { color: var(--gold); }

.hero__stats {
  margin-top: clamp(26px, 4.4vw, 58px);
  display: grid; grid-template-columns: 1fr 1px 1fr 1px 1fr;
  align-items: center; gap: clamp(10px, 2.6vw, 40px);
  max-width: 760px;
  animation: shRise 900ms 940ms var(--ease-in) both;
}
.hero__stats > div { min-width: 0; }
.hero__rule { height: 34px; background: rgba(181, 150, 96, .4); }
.hero__stat-n { font-family: var(--serif); font-size: clamp(26px, 5vw, 38px); color: var(--ivory); line-height: 1; }
.hero__stat-n--sm { font-size: clamp(17px, 4.4vw, 38px); white-space: nowrap; }
.hero__stat-l { font-size: clamp(9px, 2.2vw, 12px); letter-spacing: .08em; color: rgba(245, 239, 230, .62); margin-top: 6px; line-height: 1.35; }
.hero__stat-l .short { display: none; }

.scroll-hint {
  position: relative; display: flex; justify-content: center; padding: 34px 0 26px;
}
.scroll-hint span {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: .2em; color: rgba(245, 239, 230, .55);
  animation: shNudge 2600ms ease-in-out infinite;
}
.scroll-hint i { display: block; width: 1px; height: 26px; background: linear-gradient(rgba(181, 150, 96, .9), rgba(181, 150, 96, 0)); }

/* --------------------------------------------------------------------------
   Bara de disponibilitate (desktop / tabletă)
   -------------------------------------------------------------------------- */

.availability {
  max-width: var(--wrap); margin: -52px auto 0;
  padding-inline: var(--gutter);
  position: relative; z-index: 20;
}
.availability__box {
  background: var(--ivory);
  box-shadow: 0 22px 56px rgba(38, 27, 23, .14);
  border-top: 2px solid var(--gold);
  padding: clamp(20px, 2.4vw, 28px) clamp(18px, 2.4vw, 30px);
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr)) auto;
  gap: 20px 22px; align-items: end;
}
.availability__box .btn { min-height: 50px; }

.field-line { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.field-line > span:first-child { font-size: 11px; letter-spacing: .14em; color: var(--ink-55); font-weight: 600; }
.field-line__control {
  display: flex; align-items: center; gap: 9px;
  border-bottom: 1px solid rgba(38, 27, 23, .24);
  padding-bottom: 8px;
}
.field-line__control svg { flex: none; opacity: .5; }
.field-line input,
.field-line select {
  flex: 1; min-width: 0;
  border: none; background: transparent;
  font-size: 15px; color: var(--espresso); outline: none;
  min-height: 32px;
}
.field-line__control:focus-within { border-bottom-color: var(--wine); }

.form-alert {
  margin-top: 12px;
  display: flex; gap: 8px; align-items: flex-start;
  font-size: 13px; line-height: 1.5; color: var(--error);
}
.form-alert[hidden] { display: none !important; }
.form-alert::before {
  content: ""; margin-top: 6px; flex: none;
  width: 5px; height: 5px; background: var(--error); transform: rotate(45deg);
}

.availability__meta {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
  padding: 14px 2px 0; gap: 10px 20px;
}
.availability__meta p { font-size: 12.5px; line-height: 1.55; color: var(--ink-55); max-width: 52ch; }
.availability__meta a { font-size: 12.5px; font-weight: 600; border-bottom: 1px solid rgba(123, 46, 63, .3); }
.availability__meta a:hover { border-bottom-color: var(--wine); }

/* --------------------------------------------------------------------------
   Secțiuni
   -------------------------------------------------------------------------- */

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(34px, 5vw, 80px);
  align-items: center;
}
.split > * { min-width: 0; }
.split--top { align-items: start; }

.figure-card { position: relative; min-width: 0; }
.figure-card__frame { overflow: hidden; }
.figure-card img { width: 100%; height: clamp(260px, 40vw, 560px); object-fit: cover; }
.figure-card__tag {
  position: absolute; right: -30px; bottom: -30px;
  background: var(--burgundy); color: var(--ivory);
  padding: 22px 26px; max-width: 230px;
}
.figure-card__tag h3 { font-family: var(--serif); font-size: clamp(24px, 3vw, 28px); line-height: 1.15; }
.figure-card__tag p { margin-top: 8px; font-size: 13.5px; line-height: 1.6; color: rgba(245, 239, 230, .78); }

.rowlist { margin-top: 30px; display: flex; flex-direction: column; }
.rowlist__item {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line);
}
.rowlist__item > span:first-child { font-size: clamp(14px, 1.3vw, 15.5px); font-weight: 500; }
.rowlist__item > span:last-child { font-size: 13.5px; color: var(--ink-62); white-space: nowrap; font-variant-numeric: tabular-nums; }

.section-head {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end;
  gap: 18px 40px;
}
.section-head--ruled { padding-bottom: 28px; border-bottom: 1px solid rgba(38, 27, 23, .14); }
.section-head > div { min-width: 0; }
.section-head h2 { margin-top: 16px; max-width: 24ch; }

/* Carduri de cameră */
.rooms-grid { margin-top: 36px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(24px, 3vw, 34px); }
.rooms-grid--full { margin-top: clamp(32px, 5vw, 52px); grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(26px, 3.4vw, 42px); }

.room {
  background: var(--card);
  display: flex; flex-direction: column; min-width: 0;
  transition: transform 320ms var(--ease-in), box-shadow 320ms;
}
.room:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(38, 27, 23, .13); }

.room__media {
  all: unset; cursor: pointer;
  display: block; position: relative; overflow: hidden;
  height: clamp(200px, 24vw, 290px);
}
.rooms-grid--full .room__media { height: clamp(210px, 26vw, 340px); }
.room__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 520ms var(--ease-big); }
.room:hover .room__media img { transform: scale(1.035); }
.room__media span {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 10px 14px;
  background: linear-gradient(rgba(38, 27, 23, 0), rgba(38, 27, 23, .62));
  color: var(--ivory); font-size: 11px; letter-spacing: .14em; font-weight: 600;
}
.room__media:focus-visible { outline: 2px solid var(--gold); outline-offset: -3px; }

.room__body { padding: 20px clamp(18px, 2.2vw, 26px) 24px; display: flex; flex-direction: column; flex: 1; min-width: 0; }
.rooms-grid--full .room__body { padding: clamp(18px, 2.4vw, 30px) clamp(18px, 2.4vw, 30px) 28px; }
.room__top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.room__top h3 { font-size: clamp(21px, 2.2vw, 25px); line-height: 1.15; }
.rooms-grid--full .room__top h2 { font-size: clamp(23px, 2.6vw, 30px); line-height: 1.12; }
.room__area { font-size: 12.5px; letter-spacing: .08em; color: var(--gold-ink); font-weight: 700; white-space: nowrap; }
.room__meta { margin-top: 9px; font-size: 13.5px; color: var(--ink-68); line-height: 1.55; }
.room__beds { margin-top: 12px; font-size: 14.5px; line-height: 1.65; color: rgba(38, 27, 23, .82); }

.tags { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 6px; }
.tags span { font-size: 11.5px; color: var(--ink-72); border: 1px solid rgba(38, 27, 23, .16); padding: 5px 9px; }

.room__underline {
  display: block; height: 1px; background: var(--gold);
  margin-top: 18px; transform: scaleX(0); transform-origin: left;
  transition: transform 420ms var(--ease-in);
}
.room:hover .room__underline { transform: scaleX(1); }

.room__actions { margin-top: auto; padding-top: 18px; display: flex; flex-wrap: wrap; gap: 8px; }
.rooms-grid--full .room__actions { padding-top: 22px; }
.room__actions .btn { flex: 1 1 120px; min-height: 46px; padding: 0 10px; font-size: 13px; }
.rooms-grid--full .room__actions .btn { flex-basis: 130px; min-height: 48px; }

/* Facilități grupate */
.band { margin-top: var(--section); background: var(--sand); padding: clamp(48px, 8vw, 100px) 0; }
.band--dark { background: var(--espresso); color: var(--ivory); overflow: hidden; }

.facilities { display: grid; grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr); gap: clamp(32px, 5vw, 70px); }
.facilities > * { min-width: 0; }
.amenity-groups { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(24px, 3vw, 34px); }
.amenity-groups > div { min-width: 0; }

.amenity-group__head {
  display: flex; align-items: center; gap: 9px;
  padding-bottom: 12px; border-bottom: 1px solid rgba(38, 27, 23, .2);
}
.amenity-group__head > span:first-child { flex: none; width: 16px; height: 16px; display: grid; place-items: center; }
.amenity-group__mark { width: 9px; height: 9px; border: 1px solid var(--gold-ink); }
.amenity-group__mark--circle { border-radius: 50%; }
.amenity-group__mark--diamond { transform: rotate(45deg); }
.amenity-group__head > span:last-child { font-size: 11.5px; letter-spacing: .14em; font-weight: 700; color: var(--ink-72); text-transform: uppercase; }

.amenity-group__item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 11px 0; border-bottom: 1px solid var(--line-soft);
}
.amenity-group__item::before { content: ""; margin-top: 7px; width: 5px; height: 1px; background: var(--gold); flex: none; }
.amenity-group__item span { font-size: 14px; line-height: 1.4; color: var(--ink-86); }

/* Mozaic galerie (pagina principală) */
.mosaic {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(150px, 17vw);
  grid-auto-flow: dense;
  gap: 14px;
}
.shot {
  all: unset; cursor: zoom-in;
  position: relative; overflow: hidden; display: block;
  background: var(--stone);
}
.shot img { width: 100%; height: 100%; object-fit: cover; transition: transform 560ms var(--ease-big); }
.shot:hover img { transform: scale(1.04); }
.shot:focus-visible { outline: 2px solid var(--gold); outline-offset: -3px; }
.shot__label {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 22px 12px 9px;
  background: linear-gradient(rgba(38, 27, 23, 0), rgba(38, 27, 23, .6));
  color: rgba(245, 239, 230, .92);
  font-size: 10.5px; letter-spacing: .1em;
}

/* Pagina de galerie */
.gallery-grid { margin-top: clamp(30px, 5vw, 50px); display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.gallery-grid .shot { background: transparent; height: auto; }
.gallery-grid .shot__frame { display: block; overflow: hidden; background: var(--stone); aspect-ratio: 4 / 3; }
.gallery-grid .shot:nth-child(3n+1) .shot__frame { aspect-ratio: 4 / 5; }
.gallery-grid .shot__frame img { width: 100%; height: 100%; object-fit: cover; }
.gallery-grid .shot__cap { display: block; padding: 10px 2px 0; font-size: 12.5px; line-height: 1.45; letter-spacing: .02em; color: var(--ink-62); }
.gallery-grid .shot[hidden] { display: none !important; }

.gallery-more { margin-top: 34px; display: flex; justify-content: center; }
.gallery-more[hidden] { display: none !important; }

/* Recenzii */
.reviews { display: grid; grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr); gap: clamp(32px, 5vw, 70px); align-items: start; }
.reviews > * { min-width: 0; }
.reviews__score { margin-top: 22px; display: flex; align-items: flex-end; gap: 12px; }
.reviews__score b { font-family: var(--serif); font-weight: 600; font-size: clamp(56px, 7vw, 96px); line-height: .86; }
.reviews__score span { font-size: 14px; color: rgba(245, 239, 230, .6); padding-bottom: 10px; }

.badge {
  margin-top: 22px; display: inline-flex; align-items: center; gap: 9px;
  border: 1px solid rgba(181, 150, 96, .42); padding: 9px 14px;
  font-size: 11.5px; letter-spacing: .08em; color: rgba(245, 239, 230, .82);
}
.badge:hover { color: var(--ivory); border-color: var(--gold); }
.badge::before { content: ""; width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); flex: none; }

.quotes {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 30px);
  scroll-snap-type: x mandatory; scrollbar-width: none;
  padding-bottom: 4px;
}
.quotes::-webkit-scrollbar { display: none; }
.quotes blockquote { margin: 0; min-width: 0; scroll-snap-align: start; border-top: 1px solid rgba(181, 150, 96, .34); padding-top: 20px; }
.quotes p { font-family: var(--serif); font-size: clamp(20px, 2.2vw, 24px); line-height: 1.4; color: var(--ivory); }
.quotes cite { display: block; margin-top: 12px; font-style: normal; font-size: 11.5px; letter-spacing: .1em; color: var(--cream-55); }

.dots { margin-top: 18px; display: none; gap: 6px; }
.dots span { height: 2px; flex: 1; background: rgba(245, 239, 230, .2); transition: background 300ms; }
.dots span.is-on { background: var(--gold); }

/* Ghid Sibiu */
.guide {
  margin-top: clamp(30px, 4vw, 48px);
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px; background: rgba(38, 27, 23, .14);
  scroll-snap-type: x mandatory; scrollbar-width: none;
}
.guide::-webkit-scrollbar { display: none; }
.guide article {
  background: var(--ivory); min-width: 0; scroll-snap-align: start;
  padding: clamp(22px, 2.6vw, 32px) clamp(20px, 2.4vw, 30px) 30px;
  transition: background 320ms;
}
.guide article:hover { background: var(--sand); }
.guide__n { display: flex; align-items: baseline; gap: 12px; }
.guide__n b { font-family: var(--serif); font-weight: 600; font-size: clamp(30px, 3.4vw, 44px); color: var(--gold); line-height: 1; }
.guide__n i { flex: 1; height: 1px; background: rgba(181, 150, 96, .4); }
.guide h3 { margin-top: 16px; font-size: clamp(22px, 2.4vw, 26px); line-height: 1.2; }
.guide p { margin-top: 10px; font-size: 14px; line-height: 1.65; color: var(--ink-72); }
.guide__dist { margin-top: 16px; font-size: 11.5px; letter-spacing: .1em; color: var(--ink-55); }

.swipe-hint { margin-top: 14px; font-size: 12px; letter-spacing: .06em; color: var(--ink-50); display: none; }

/* Hartă */
.map-split { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); background: var(--sand); }
.map-split > * { min-width: 0; }
.map-frame { min-height: clamp(320px, 38vw, 460px); position: relative; background: var(--stone); }
.map-tall { margin-top: clamp(28px, 4.4vw, 46px); height: clamp(360px, 44vw, 520px); background: var(--stone); position: relative; }
.map-frame iframe, .map-tall iframe {
  position: absolute; inset: 0; width: 100%; height: 100%;
  border: 0; filter: saturate(.72) contrast(1.02);
  animation: shFade 500ms both;
}
.map-pending {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-size: 12px; letter-spacing: .14em; color: var(--ink-50);
}
.map-pending[hidden] { display: none !important; }
.map-split__body { padding: clamp(26px, 4vw, 52px) clamp(20px, 3.4vw, 46px); }
.btn-row { margin-top: 14px; display: flex; gap: 10px; flex-wrap: wrap; }
.btn-row .btn { min-height: 48px; }

/* Întrebări frecvente */
.faq-split { display: grid; grid-template-columns: minmax(0, .62fr) minmax(0, 1.38fr); gap: clamp(28px, 5vw, 70px); align-items: start; }
.faq-split > * { min-width: 0; }
.faq-split__head { position: sticky; top: 100px; }

.faq { border-bottom: 1px solid rgba(38, 27, 23, .13); }
.faq__q {
  all: unset; cursor: pointer; box-sizing: border-box;
  width: 100%; min-height: 56px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 16px 0; transition: color 250ms;
}
.faq__q:hover { color: var(--wine); }
.faq__q:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.faq__q > span:first-child { font-size: clamp(15px, 1.5vw, 16.5px); font-weight: 500; line-height: 1.45; }

.faq__sign { flex: none; width: 22px; height: 22px; position: relative; transition: transform 320ms var(--ease-in); }
.faq__sign::before, .faq__sign::after { content: ""; position: absolute; background: var(--gold-ink); }
.faq__sign::before { top: 10.5px; left: 2px; right: 2px; height: 1.4px; }
.faq__sign::after { left: 10.5px; top: 2px; bottom: 2px; width: 1.4px; transition: opacity 320ms; }
.faq__q[aria-expanded="true"] .faq__sign { transform: rotate(90deg); }
.faq__q[aria-expanded="true"] .faq__sign::after { opacity: 0; }

.faq__a { overflow: hidden; animation: shRise 380ms var(--ease-in) both; }
.faq__a[hidden] { display: none !important; }
.faq__a p { padding: 0 0 20px; max-width: 62ch; font-size: 14.5px; line-height: 1.7; color: var(--ink-76); }

/* --------------------------------------------------------------------------
   Rezervare
   -------------------------------------------------------------------------- */

.booking { margin-top: var(--section); background: var(--burgundy); color: var(--ivory); padding: clamp(48px, 8vw, 104px) 0; scroll-margin-top: 80px; }
.booking__grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(32px, 5vw, 76px); }
.booking__grid > * { min-width: 0; }
.booking h2 { margin-top: 16px; max-width: 20ch; }
.booking__lede { margin-top: 18px; font-size: clamp(15px, 1.4vw, 16px); line-height: 1.7; color: rgba(245, 239, 230, .8); max-width: 44ch; }

.contact-list { margin: clamp(28px, 4vw, 44px) 0 0; display: flex; flex-direction: column; gap: 20px; }
.contact-list dt { font-size: 11.5px; letter-spacing: .14em; color: var(--cream-55); }
.contact-list dd { margin: 0; font-size: clamp(15px, 1.5vw, 17px); }
.contact-list dd a { color: var(--ivory); word-break: break-word; }
.contact-list dd a:hover { color: var(--gold); }
.contact-list .big { font-family: var(--serif); font-size: clamp(24px, 2.4vw, 30px); }

/* Formular */
.form-panel { background: var(--ivory); color: var(--espresso); padding: clamp(22px, 3.2vw, 40px) clamp(18px, 3vw, 38px); min-width: 0; }
.form-panel h2 { font-size: clamp(24px, 2.6vw, 28px); line-height: 1.15; }

.form-grid { margin-top: 24px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.field--wide { grid-column: 1 / -1; }
.field > span:first-child { font-size: 11.5px; letter-spacing: .12em; color: var(--ink-62); font-weight: 700; text-transform: uppercase; }
.field input, .field select, .field textarea {
  min-height: 50px;
  border: 1px solid var(--line-strong); background: #fff; color: var(--espresso);
  padding: 12px 13px; font-size: 15px; outline: none; border-radius: 2px;
  transition: border-color 200ms, box-shadow 200ms;
}
.field textarea { resize: vertical; min-height: 84px; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--wine); box-shadow: 0 0 0 3px rgba(123, 46, 63, .12);
}
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: var(--error); }
.field__err { font-size: 12.5px; line-height: 1.45; color: var(--error); }
.field__err[hidden] { display: none !important; }

.consent { margin-top: 18px; display: flex; gap: 11px; align-items: flex-start; cursor: pointer; }
.consent input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--wine); flex: none; }
.consent span { font-size: 13px; line-height: 1.55; color: var(--ink-72); }

.form-fine { margin-top: 14px; font-size: 12.5px; line-height: 1.6; color: rgba(38, 27, 23, .58); }
.form-body[hidden] { display: none !important; }

.form-success { animation: shRise 400ms both; }
.form-success[hidden] { display: none !important; }
.form-success__mark { width: 44px; height: 44px; border: 1px solid var(--sage); display: grid; place-items: center; }
.form-success__mark span { width: 9px; height: 9px; background: var(--sage); transform: rotate(45deg); }
.form-success h2 { margin-top: 22px; font-size: clamp(26px, 2.8vw, 30px); line-height: 1.15; }
.form-success p { margin-top: 14px; font-size: 15px; line-height: 1.7; color: rgba(38, 27, 23, .74); }
.form-success .fine { margin-top: 14px; font-size: 13.5px; line-height: 1.6; color: rgba(38, 27, 23, .58); }
.form-success .btn { margin-top: 24px; }

.form-summary {
  margin-top: 18px; padding: 14px 16px;
  background: var(--sand); border-left: 2px solid var(--sage);
}
.form-summary dt { font-size: 11px; letter-spacing: .14em; color: var(--ink-55); font-weight: 700; }
.form-summary dd { margin: 6px 0 0; font-size: 13.5px; line-height: 1.6; color: var(--ink-76); }

.form-error {
  margin-top: 18px; padding: 16px 18px;
  background: #F7E7E4; border-left: 2px solid var(--error);
  font-size: 13.5px; line-height: 1.6; color: #6E2020;
}
.form-error[hidden] { display: none !important; }
.form-error a { color: #6E2020; font-weight: 600; border-bottom: 1px solid rgba(110, 32, 32, .4); }

/* Varianta pe fundal burgundy */
.form-panel--dark { background: var(--burgundy); color: var(--ivory); }
.form-panel--dark h2 { color: var(--ivory); }
.form-panel--dark .field > span:first-child { color: rgba(245, 239, 230, .66); }
.form-panel--dark .field input,
.form-panel--dark .field select,
.form-panel--dark .field textarea {
  border-color: rgba(245, 239, 230, .28);
  background: rgba(245, 239, 230, .07);
  color: var(--ivory);
}
.form-panel--dark .field input:focus,
.form-panel--dark .field select:focus,
.form-panel--dark .field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(181, 150, 96, .22); }
.form-panel--dark .field select option { color: var(--espresso); }
.form-panel--dark .field__err { color: var(--error-light); }
.form-panel--dark .consent span { color: var(--cream-74); }
.form-panel--dark .consent a { color: var(--gold); }
.form-panel--dark .consent input { accent-color: var(--gold); }
.form-panel--dark .form-fine { color: rgba(245, 239, 230, .58); }
.form-panel--dark .form-success__mark { border-color: var(--gold); }
.form-panel--dark .form-success__mark span { background: var(--gold); }
.form-panel--dark .form-success p { color: var(--cream-74); }
.form-panel--dark .form-success .fine { color: rgba(245, 239, 230, .58); }
.form-panel--dark .form-summary { background: rgba(245, 239, 230, .07); border-left-color: var(--gold); }
.form-panel--dark .form-summary dt { color: rgba(245, 239, 230, .6); }
.form-panel--dark .form-summary dd { color: var(--cream-82); }
.form-panel--dark .form-error { background: rgba(245, 239, 230, .08); border-left-color: var(--error-light); color: #F6D6D0; }
.form-panel--dark .form-error a { color: #F6D6D0; border-bottom-color: rgba(246, 214, 208, .5); }
.form-panel--dark .btn--deep { background: var(--gold); color: var(--espresso); }
.form-panel--dark .btn--deep:hover { background: #C9AC77; color: var(--espresso); }
.form-panel--dark .btn--quiet { border-color: rgba(245, 239, 230, .3); color: var(--ivory); }
.form-panel--dark .btn--quiet:hover { border-color: var(--gold); color: var(--gold); }

/* Fila de contact */
.contact-card { background: var(--sand); padding: clamp(22px, 3.4vw, 44px) clamp(18px, 3.2vw, 42px); min-width: 0; }
.contact-card h2 { font-size: clamp(24px, 2.6vw, 30px); line-height: 1.15; }
.contact-card dl { margin: 26px 0 0; display: flex; flex-direction: column; gap: 22px; }
.contact-card dt { font-size: 11.5px; letter-spacing: .14em; color: var(--ink-55); font-weight: 700; }
.contact-card dd { margin: 0; font-size: clamp(16px, 1.6vw, 18px); word-break: break-word; }
.contact-card .big { font-family: var(--serif); font-size: clamp(25px, 2.6vw, 34px); color: var(--burgundy); }

.facts { margin-top: 30px; padding-top: 24px; border-top: 1px solid rgba(38, 27, 23, .14); display: flex; flex-direction: column; gap: 11px; }
.facts div { display: flex; justify-content: space-between; gap: 16px; }
.facts span:first-child { font-size: 14px; color: var(--ink-72); }
.facts span:last-child { font-size: 14px; font-weight: 500; text-align: right; }

.chips { margin-top: 12px; display: flex; flex-wrap: wrap; gap: 8px; }
.chips span { font-size: 12px; border: 1px solid rgba(38, 27, 23, .2); padding: 6px 11px; }
.label-sm { font-size: 11.5px; letter-spacing: .14em; color: var(--ink-55); font-weight: 700; text-transform: uppercase; }

/* --------------------------------------------------------------------------
   Subsol
   -------------------------------------------------------------------------- */

.footer { margin-top: var(--section); background: var(--espresso); color: var(--ivory); padding: clamp(42px, 6.5vw, 76px) 0 30px; }
.footer__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(26px, 4vw, 50px); }
.footer__grid > * { min-width: 0; }
.footer__brand { display: flex; align-items: center; gap: 11px; }
.footer__brand span { font-family: var(--serif); font-size: 18px; letter-spacing: .16em; }
.footer__about { margin-top: 16px; font-size: 14px; line-height: 1.7; color: var(--cream-70); max-width: 34ch; }
.footer__cert { margin-top: 16px; font-size: 12.5px; color: var(--cream-55); }
.footer h2 { font-family: var(--sans); font-size: 11.5px; letter-spacing: .14em; color: var(--gold); font-weight: 700; text-transform: uppercase; }
.footer__col { margin-top: 14px; display: flex; flex-direction: column; gap: 10px; font-size: 14.5px; }
.footer__col a { min-height: 32px; display: flex; align-items: center; color: var(--cream-88); word-break: break-word; }
.footer__col a:hover { color: var(--gold); }
.footer__col span { color: var(--cream-70); line-height: 1.6; }
.footer__cta { margin-top: 18px; width: 100%; max-width: 260px; min-height: 48px; }
.footer__hours { margin-top: 16px; font-size: 12.5px; line-height: 1.6; color: var(--cream-55); }
.footer__bar {
  margin-top: clamp(30px, 4.4vw, 56px); padding-top: 20px;
  border-top: 1px solid var(--cream-line);
  display: flex; justify-content: space-between; align-items: center;
  gap: 14px 20px; flex-wrap: wrap;
  font-size: 12.5px; color: rgba(245, 239, 230, .5);
}
.to-top {
  all: unset; cursor: pointer;
  min-height: 36px; display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; letter-spacing: .1em; color: var(--cream-70);
}
.to-top:hover { color: var(--gold); }
.to-top::before {
  content: ""; width: 0; height: 0;
  border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-bottom: 5px solid currentColor;
}

/* --------------------------------------------------------------------------
   Bara fixă de jos (telefon)
   -------------------------------------------------------------------------- */

.dock-spacer { display: none; height: 86px; }
.dock {
  display: none;
  position: fixed; inset: auto 0 0 0; z-index: 110;
  background: var(--ivory);
  border-top: 1px solid rgba(38, 27, 23, .14);
  box-shadow: 0 -8px 26px rgba(38, 27, 23, .12);
  padding-top: 12px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  padding-left: max(clamp(14px, 4vw, 20px), env(safe-area-inset-left));
  padding-right: max(clamp(14px, 4vw, 20px), env(safe-area-inset-right));
  gap: 9px;
  animation: shRise 420ms both;
}
.dock__call {
  width: 56px; min-height: 50px; flex: none;
  display: grid; place-items: center;
  border: 1px solid rgba(38, 27, 23, .25); color: var(--espresso); border-radius: 2px;
}
.dock__main { flex: 1; min-height: 50px; font-size: 14.5px; }

/* Panou glisant de disponibilitate */
.sheet-backdrop {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(38, 27, 23, .6);
  display: flex; align-items: flex-end;
  animation: shFade 240ms both;
}
.sheet-backdrop[hidden] { display: none !important; }
.sheet {
  width: 100%; max-height: 88svh;
  display: flex; flex-direction: column;
  background: var(--ivory); border-top: 2px solid var(--gold);
  animation: shSheet 380ms var(--ease-big) both;
}
.sheet__grip { flex: none; padding: 10px 0 0; display: grid; place-items: center; }
.sheet__grip span { width: 44px; height: 4px; border-radius: 2px; background: rgba(38, 27, 23, .2); }
.sheet__head {
  flex: none; display: flex; align-items: flex-start; justify-content: space-between;
  gap: 14px; padding: 12px clamp(16px, 4vw, 22px) 14px;
  border-bottom: 1px solid var(--line);
}
.sheet__head h2 { font-size: 24px; line-height: 1.15; }
.sheet__head p { margin-top: 5px; font-size: 12.5px; line-height: 1.5; color: var(--ink-62); }
.sheet__body {
  flex: 1; min-height: 0; overflow-y: auto;
  padding: 18px clamp(16px, 4vw, 22px) 0;
  display: flex; flex-direction: column; gap: 16px;
}
.sheet__body .field input, .sheet__body .field select { min-height: 50px; }
.sheet__foot {
  flex: none;
  padding: 14px clamp(16px, 4vw, 22px) calc(16px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 9px;
}
.sheet__foot .btn { min-height: 52px; }

/* --------------------------------------------------------------------------
   Fereastra camerei
   -------------------------------------------------------------------------- */

.modal {
  position: fixed; inset: 0; z-index: 320;
  background: rgba(38, 27, 23, .74);
  display: flex; align-items: flex-start; justify-content: center;
  overflow-y: auto; padding: clamp(24px, 4vw, 56px) clamp(14px, 2.4vw, 24px);
  animation: shFade 240ms both;
}
.modal[hidden] { display: none !important; }
.modal__panel {
  width: 100%; max-width: 1020px; background: var(--ivory);
  display: flex; flex-direction: column;
  animation: shRise 340ms var(--ease-big) both;
}
.modal__inner { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); flex: 1; min-height: 0; }
.modal__inner > * { min-width: 0; }
.modal__media { display: flex; flex-direction: column; gap: 6px; }
.modal__stage { position: relative; overflow: hidden; height: clamp(240px, 26vw, 390px); background: var(--stone); }
.modal__stage img { width: 100%; height: 100%; object-fit: cover; animation: shFade 320ms both; }

.modal__pager {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: none; align-items: center; justify-content: space-between; gap: 10px;
  padding: 12px 14px;
  background: linear-gradient(rgba(38, 27, 23, 0), rgba(38, 27, 23, .7));
}
.modal__pager button {
  width: 44px; height: 44px;
  background: rgba(38, 27, 23, .5); border: 1px solid rgba(245, 239, 230, .35);
  border-radius: 2px; color: var(--ivory); font-size: 18px; line-height: 1;
}
.modal__pager span { font-size: 11.5px; letter-spacing: .1em; color: rgba(245, 239, 230, .9); }

.modal__thumbs { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.modal__thumbs .shot { height: 170px; }

.modal__body { padding: clamp(20px, 3.2vw, 38px) clamp(18px, 3vw, 36px) clamp(22px, 3.4vw, 40px); display: flex; flex-direction: column; }
.modal__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 14px; }
.modal__head > div { min-width: 0; }
.modal__head .eyebrow { font-size: 11px; letter-spacing: .2em; color: var(--gold-ink); font-weight: 700; }
.modal__head h2 { margin-top: 9px; font-size: clamp(26px, 3.4vw, 36px); line-height: 1.08; }

.specs { margin: 20px 0 0; display: flex; flex-direction: column; }
.specs div { display: flex; justify-content: space-between; gap: 16px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.specs dt { font-size: 13.5px; color: rgba(38, 27, 23, .65); }
.specs dd { margin: 0; font-size: 14px; font-weight: 500; text-align: right; }

.modal__amenities { margin-top: 10px; display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
.modal__amenities div { display: flex; align-items: flex-start; gap: 9px; padding: 6px 0; }
.modal__amenities div::before { content: ""; margin-top: 8px; width: 5px; height: 1px; background: var(--gold); flex: none; }
.modal__amenities span { font-size: 13.5px; line-height: 1.4; color: rgba(38, 27, 23, .84); }

.modal__foot { margin-top: auto; padding-top: 24px; display: flex; flex-direction: column; gap: 9px; }
.modal__foot .btn { min-height: 52px; }
.modal__foot p { font-size: 12.5px; line-height: 1.6; color: rgba(38, 27, 23, .58); }

/* --------------------------------------------------------------------------
   Lightbox
   -------------------------------------------------------------------------- */

.lightbox {
  position: fixed; inset: 0; z-index: 360;
  background: rgba(20, 13, 11, .95);
  display: flex; flex-direction: column;
  animation: shFade 240ms both;
}
.lightbox[hidden] { display: none !important; }
.lightbox__bar {
  flex: none; display: flex; align-items: center; justify-content: space-between;
  gap: 14px; padding: 14px clamp(14px, 3vw, 26px);
  color: rgba(245, 239, 230, .78); font-size: 12.5px; letter-spacing: .06em;
}
.lightbox__stage { flex: 1; min-height: 0; display: flex; align-items: center; gap: 16px; padding: 0 clamp(10px, 3vw, 26px); }
.lightbox__stage > div { flex: 1; height: 100%; display: grid; place-items: center; min-width: 0; }
.lightbox__stage img { max-width: 100%; max-height: 100%; object-fit: contain; animation: shFade 300ms both; }
.lightbox__foot {
  flex: none; padding: 14px clamp(14px, 3vw, 26px) calc(18px + env(safe-area-inset-bottom));
  display: flex; flex-direction: column; gap: 12px; align-items: center;
}
.lightbox__foot p { font-size: 13.5px; line-height: 1.5; text-align: center; color: rgba(245, 239, 230, .75); max-width: 60ch; }
.lightbox__mobile-nav { display: none; gap: 10px; width: 100%; max-width: 340px; }
.lightbox__mobile-nav button { flex: 1; min-height: 48px; background: transparent; border: 1px solid rgba(245, 239, 230, .3); border-radius: 2px; color: var(--ivory); font-size: 16px; }

.round-btn {
  width: 52px; height: 52px; flex: none;
  background: transparent; border: 1px solid rgba(245, 239, 230, .3);
  border-radius: 50%; color: var(--ivory); font-size: 18px; line-height: 1;
  transition: background 250ms, color 250ms;
}
.round-btn:hover { background: var(--ivory); color: var(--espresso); }
.round-btn--square { border-radius: 2px; width: 44px; height: 44px; font-size: 20px; }

/* --------------------------------------------------------------------------
   Pagini de text
   -------------------------------------------------------------------------- */

.prose { max-width: 68ch; margin-top: 36px; }
.prose h2 { margin-top: 42px; font-size: clamp(22px, 2.4vw, 26px); line-height: 1.2; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { margin-top: 14px; font-size: 15.5px; line-height: 1.75; color: var(--ink-76); }
.prose ul { margin: 6px 0 0; padding-left: 20px; }
.prose a { border-bottom: 1px solid rgba(123, 46, 63, .35); }

/* ==========================================================================
   Adaptare — laptop (sub 1280)
   ========================================================================== */

@media (max-width: 1279px) {
  .rooms-grid--full { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ==========================================================================
   Adaptare — tabletă și mai jos (sub 1024)
   ========================================================================== */

@media (max-width: 1023px) {
  :root { --header-h: 64px; }

  .header { height: 64px; }
  .header--ghost.is-scrolled { height: 64px; }
  .header__nav, .header__actions { display: none; }
  .header__mobile { display: flex; }
  .header--ghost:not(.is-scrolled) .header__brand svg path { stroke: var(--gold); }

  .hero { min-height: min(94svh, 860px); }
  .hero__inner { padding: 110px 28px 46px; }
  .scroll-hint { display: none; }

  .availability { margin-top: -32px; }
  .availability__box { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .availability__box .btn { grid-column: 1 / -1; }

  .figure-card__tag { right: -16px; bottom: -16px; }

  .rooms-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rooms-grid--full { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .facilities { grid-template-columns: minmax(0, 1fr); }
  .amenity-groups { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .mosaic { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .mosaic .shot { grid-column: span 1; grid-row: span 1; }
  .mosaic .shot:first-child { grid-column: span 2; grid-row: span 2; }

  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

  .reviews { grid-template-columns: minmax(0, 1fr); }
  .guide { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .map-split { grid-template-columns: minmax(0, 1fr); }
  .faq-split { grid-template-columns: minmax(0, 1fr); }
  .faq-split__head { position: static; }
  .booking__grid { grid-template-columns: minmax(0, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .modal__inner { grid-template-columns: minmax(0, 1fr); }
  .modal__thumbs { display: none; }
  .modal__pager { display: flex; }
  .modal__amenities { grid-template-columns: 1fr; }

  .lightbox__stage .round-btn { display: none; }
  .lightbox__mobile-nav { display: flex; }
}

/* ==========================================================================
   Adaptare — telefon (sub 768)
   ========================================================================== */

@media (max-width: 767px) {
  .hero { min-height: clamp(620px, 96svh, 760px); }
  .hero__inner { padding: 84px 20px 34px; }
  .hero__scrim {
    background: linear-gradient(to top, rgba(38, 27, 23, .92) 4%, rgba(38, 27, 23, .62) 42%, rgba(38, 27, 23, .36) 100%);
  }
  .hero__actions .btn--ghost { display: none; }
  .hero__textlink { display: inline-flex; }

  /* Pe telefon, bara de disponibilitate devine panoul glisant din bara de jos. */
  .availability { display: none; }

  .split, .split--top { grid-template-columns: minmax(0, 1fr); }
  .figure-card__tag { position: static; margin-top: 0; max-width: 100%; padding: 20px 22px; }

  .rooms-grid, .rooms-grid--full { grid-template-columns: minmax(0, 1fr); }
  .amenity-groups { grid-template-columns: minmax(0, 1fr); }

  .mosaic { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: minmax(120px, 26vw); gap: 8px; }
  .mosaic .shot:nth-child(6) { grid-column: span 2; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }

  /* Recenzii și ghid devin caruseluri. */
  .quotes { display: flex; overflow-x: auto; }
  .quotes blockquote { flex: 0 0 78%; }
  .dots { display: flex; }

  .guide { display: flex; overflow-x: auto; }
  .guide article { flex: 0 0 76%; }
  .swipe-hint { display: block; }

  .map-frame { min-height: 320px; }
  .map-tall { height: 340px; }

  .form-grid { grid-template-columns: minmax(0, 1fr); }
  .footer__grid { grid-template-columns: minmax(0, 1fr); }

  .dock { display: flex; }
  .dock-spacer { display: block; }

  .modal { padding: 0; align-items: flex-end; }
  .modal__panel { max-width: 100%; min-height: 92svh; animation: shSheet 380ms var(--ease-big) both; }
}

/* ==========================================================================
   Adaptare — telefon mic (sub 480)
   ========================================================================== */

@media (max-width: 479px) {
  .hero__stat-l .long { display: none; }
  .hero__stat-l .short { display: inline; }
  .hero__actions .btn { flex: 1 1 100%; }
  .room__actions { flex-direction: column; }
  .room__actions .btn { flex: 1 1 auto; width: 100%; }
  .footer__bar { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   Mișcare redusă și print
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  [data-rv], [data-rv] > * {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }
  .hero__layer { transform: none !important; }
  .preloader { display: none !important; }
}

@media print {
  .header, .dock, .dock-spacer, .menu, .modal, .lightbox,
  .availability, .sheet-backdrop, .preloader, .scroll-hint { display: none !important; }
  body { background: #fff; }
  [data-rv], [data-rv] > * { opacity: 1 !important; transform: none !important; clip-path: none !important; }
}
