/* ============ Tokens ============ */
:root{
  --ink:#202327;
  --ink-soft:#68707a;
  --paper:#f6f7f5;
  --paper-2:#ecefed;
  --surface:#ffffff;
  --header-bg:rgba(255,255,255,.96);
  --menu-bg:rgba(32,35,39,.96);
  --header-edge:rgba(32,35,39,.1);
  --accent:#8f3f2b;
  --accent-dark:#6f2f22;
  --accent-light:#c86f54;
  --accent-2:#2f6757;
  --accent-2-light:#4e8876;
  --line:rgba(var(--shadow-rgb),.13);
  --line-light:rgba(var(--shadow-rgb),.13);
  --shadow-rgb:30,27,23;
  --radius:6px;
  --ff-display:'Fraunces', Georgia, serif;
  --ff-body:'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease:cubic-bezier(.16,.84,.44,1);
  color-scheme:light;
}

/* Dark theme: follows the OS by default, or the reader's explicit toggle (data-theme, saved to localStorage) */
@media (prefers-color-scheme: dark){
  :root:not([data-theme="light"]){
    --ink:#f3eee7;
    --ink-soft:#b6ada3;
    --paper:#161310;
    --paper-2:#211d18;
    --surface:#28231d;
    --header-bg:rgba(22,19,16,.98);
    --menu-bg:rgba(22,19,16,.93);
    --header-edge:rgba(255,255,255,.14);
    --accent:#e0714c;
    --accent-dark:#c65a37;
    --accent-light:#f0a184;
    --accent-2:#6f9382;
    --accent-2-light:#8fac9d;
    --line:rgba(255,255,255,.12);
    --line-light:rgba(255,255,255,.12);
    --shadow-rgb:0,0,0;
    color-scheme:dark;
  }
}
:root[data-theme="dark"]{
  --ink:#f3eee7;
  --ink-soft:#b6ada3;
  --paper:#161310;
  --paper-2:#211d18;
  --surface:#28231d;
  --header-bg:rgba(22,19,16,.98);
  --menu-bg:rgba(22,19,16,.93);
  --header-edge:rgba(255,255,255,.14);
  --accent:#e0714c;
  --accent-dark:#c65a37;
  --accent-light:#f0a184;
  --accent-2:#6f9382;
  --accent-2-light:#8fac9d;
  --line:rgba(255,255,255,.12);
  --line-light:rgba(255,255,255,.12);
  --shadow-rgb:0,0,0;
  color-scheme:dark;
}

/* Dark theme: a few component-level tweaks that a token swap alone doesn't cover */
@media (prefers-color-scheme: dark){
  :root:not([data-theme="light"]) .btn-outline:hover{ color:var(--paper); }
  :root:not([data-theme="light"]) .form-error{ background:rgba(224,113,76,.14); border-color:rgba(224,113,76,.4); color:#ffb199; }
  :root:not([data-theme="light"]) .hero-scrim{ background:linear-gradient(90deg, rgba(8,9,10,.82) 0%, rgba(8,9,10,.52) 46%, rgba(8,9,10,.22) 100%); }
  :root:not([data-theme="light"]) .logo-light{ display:none; }
  :root:not([data-theme="light"]) .logo-dark{ display:block; }
}
:root[data-theme="dark"] .btn-outline:hover{ color:var(--paper); }
:root[data-theme="dark"] .form-error{ background:rgba(224,113,76,.14); border-color:rgba(224,113,76,.4); color:#ffb199; }
:root[data-theme="dark"] .hero-scrim{ background:linear-gradient(90deg, rgba(8,9,10,.82) 0%, rgba(8,9,10,.52) 46%, rgba(8,9,10,.22) 100%); }
:root[data-theme="dark"] .logo-light{ display:none; }
:root[data-theme="dark"] .logo-dark{ display:block; }

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--ff-body);
  color:var(--ink);
  background:var(--paper);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
h1,h2,h3,h4{ font-family:var(--ff-display); margin:0; line-height:1.15; font-weight:600; letter-spacing:0; }
em{ font-style:normal; font-weight:600; color:var(--accent); }
p{ margin:0; }
::selection{ background:var(--accent); color:#fff; }

.grain{
  position:fixed; inset:0; z-index:2; pointer-events:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  display:none;
  opacity:0; mix-blend-mode:multiply;
}
@media (prefers-color-scheme: dark){
  :root:not([data-theme="light"]) .grain{ mix-blend-mode:overlay; opacity:.05; }
}
:root[data-theme="dark"] .grain{ mix-blend-mode:overlay; opacity:.05; }

/* ============ Section scaffolding ============ */
section{ padding:76px 24px; max-width:1180px; margin:0 auto; position:relative; }
.section-head{ display:flex; align-items:center; gap:10px; margin-bottom:20px; }
.section-num{ font-family:var(--ff-body); font-size:.78rem; font-weight:700; color:var(--accent); }
.section-label{ text-transform:uppercase; letter-spacing:.08em; font-size:.74rem; font-weight:700; color:var(--ink-soft); }
section > h2{ font-size:clamp(1.9rem,3.6vw,2.7rem); }
.section-sub{ font-size:1.08rem; font-weight:500; line-height:1.65; color:var(--ink-soft); }
/* Used on the simpler "utility" pages (Book, Rooms, Gallery, Check
   Booking) where the section-head + intro line sit above a full-width
   tool rather than a two-column layout - centering them as one block
   reads better than a narrow line of text stranded on the left. */
.section-intro{ text-align:center; }
.section-intro .section-head{ justify-content:center; }
.section-intro .section-sub{ max-width:700px; margin-left:auto; margin-right:auto; }
.section-intro .rl-tip{ margin-left:auto; margin-right:auto; text-align:left; }

/* ============ Buttons ============ */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:14px 28px; border-radius:var(--radius); font-weight:600; font-size:.92rem;
  border:1.5px solid transparent; cursor:pointer; transition:transform .2s var(--ease), background .2s ease, color .2s ease, border-color .2s ease;
  white-space:nowrap; font-family:var(--ff-body);
}
.btn-primary{ background:var(--accent); color:#fff; }
.btn-primary:hover{ background:var(--accent-dark); transform:translateY(-1px); box-shadow:0 6px 16px rgba(161,64,44,.28); }
.btn-outline{ background:transparent; color:var(--ink); border-color:var(--line); }
.btn-outline:hover{ background:var(--ink); color:#fff; border-color:var(--ink); }
.btn-outline-light{ background:transparent; color:#fff; border-color:rgba(255,255,255,.6); }
.btn-outline-light:hover{ background:rgba(255,255,255,.14); border-color:#fff; }
.btn-pill{
  background:var(--accent);
  color:#fff;
  padding:11px 19px;
  font-size:.86rem;
  border-radius:4px;
  box-shadow:0 8px 18px rgba(var(--shadow-rgb),.14);
}
.btn-pill:hover{ background:var(--accent-dark); }
.btn-lg{ padding:16px 34px; font-size:1rem; }
.all-photos-btn{ margin-top:36px; display:block; width:max-content; margin-left:auto; margin-right:auto; }
.text-link{ font-weight:600; font-size:.92rem; color:var(--accent); border-bottom:1px solid transparent; padding-bottom:2px; transition:border-color .2s ease; }
.text-link:hover{ border-color:var(--accent); }
/* CTA-style text-links get a small pill/box treatment (border, fill
   on hover) instead of reading as plain underlined text - plain
   .text-link usages like a phone number are untouched. */
.text-link.link-arrow{
  display:inline-flex; align-items:center; gap:8px;
  padding:9px 18px; border:1.5px solid var(--accent); border-radius:999px;
  transition:background .25s ease, color .25s ease, border-color .25s ease;
}
.text-link.link-arrow:hover{ background:var(--accent); color:#fff; }
.text-link.link-arrow::after{
  content:''; width:13px; height:13px; flex-shrink:0; background:currentColor;
  mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E") no-repeat center / contain;
  -webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E") no-repeat center / contain;
  transition:transform .25s var(--ease), background-color .25s ease;
}
.text-link.link-arrow:hover::after{ transform:translateX(4px); }
:root[dir="rtl"] .text-link.link-arrow::after{ transform:scaleX(-1); }
:root[dir="rtl"] .text-link.link-arrow:hover::after{ transform:scaleX(-1) translateX(4px); }

/* ============ Icons ============ */
.icon{ width:1em; height:1em; stroke:currentColor; fill:none; stroke-width:1.7; stroke-linecap:round; stroke-linejoin:round; display:inline-block; vertical-align:-0.15em; flex-shrink:0; }

/* ============ Nav active state ============ */
.main-nav a.active{ color:var(--accent); background:var(--paper-2); border-color:var(--line); box-shadow:inset 0 -2px 0 var(--accent); }
.main-nav a.active::after{ width:0; }
.menu-links a.active{ color:var(--accent-light); background:rgba(161,64,44,.35); }

/* ============ Header ============ */
.site-header{
  position:fixed; top:16px; left:16px; right:16px; z-index:300;
  max-width:1320px; margin-inline:auto;
  display:flex; flex-direction:column;
  background:var(--header-bg);
  border:1px solid var(--header-edge);
  border-radius:10px;
  box-shadow:0 14px 34px rgba(var(--shadow-rgb),.12);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  transition:box-shadow .3s ease, top .3s ease, transform .4s var(--ease);
}
.site-header.solid{ top:10px; box-shadow:0 16px 38px rgba(var(--shadow-rgb),.16); }
.site-header.nav-hidden{ transform:none; }
.menu-overlay.open ~ .site-header{
  top:0; right:0; left:auto; margin-inline:0; width:min(440px, 100vw); max-width:none;
  border-radius:0; border:0; border-left:1px solid var(--header-edge);
  box-shadow:none; background:transparent;
}
.menu-overlay.open ~ .site-header.solid{ top:0; box-shadow:none; }
.menu-overlay.open ~ .site-header .main-nav{ display:none; }
.menu-overlay.open ~ .site-header .lang-switch,
.menu-overlay.open ~ .site-header .theme-toggle,
.menu-overlay.open ~ .site-header .btn.btn-pill{ display:none; }
.menu-overlay.open ~ .site-header .logo{ display:none; }
.menu-overlay.open ~ .site-header .header-inner{ position:relative; }
.menu-overlay.open ~ .site-header .header-right{ position:absolute; right:0; top:50%; transform:translateY(-50%); margin-left:0; }
.menu-overlay.open ~ .site-header .menu-btn span{ background:#f3eee7; }
.nav-row{ padding:10px 18px; display:flex; justify-content:center; transition:padding .25s ease; }
.site-header.solid .nav-row{ padding:8px 18px; }
.header-inner{
  width:100%; max-width:1240px;
  display:grid; grid-template-columns:minmax(170px,1fr) auto minmax(170px,1fr);
  align-items:center; gap:24px;
}
.logo{
  font-family:var(--ff-display);
  font-size:1.3rem;
  font-weight:700;
  color:var(--ink);
  letter-spacing:.01em;
  display:inline-flex;
  align-items:center;
  flex-shrink:0;
  padding:5px 20px 5px 0;
  border-right:1px solid var(--line);
}
.logo-img{ height:34px; width:auto; display:block; flex-shrink:0; transition:height .25s ease; }
.site-header.solid .logo-img{ height:32px; }
.logo-dark{ display:none; }
.main-nav{
  display:flex; align-items:center; justify-content:center; gap:2px;
  font-size:.72rem; font-weight:700; color:var(--ink-soft);
  min-width:0;
}
.main-nav a{
  position:relative; padding:9px 11px;
  border:1px solid transparent; border-radius:4px;
  letter-spacing:.065em; text-transform:uppercase;
  transition:color .2s ease, background .2s ease, border-color .2s ease;
  white-space:nowrap;
}
.main-nav a::after{
  content:none;
}
.main-nav a:hover{ color:var(--ink); background:var(--paper-2); border-color:var(--line); }
.header-right{ margin-left:0; justify-content:flex-end; display:flex; align-items:center; gap:10px; }
.header-right::before{ content:''; width:1px; height:28px; background:var(--line); margin-right:4px; }
.theme-toggle{
  background:var(--surface); border:1px solid var(--line); width:38px; height:38px; border-radius:50%;
  display:flex; align-items:center; justify-content:center; cursor:pointer; color:var(--ink);
  transition:border-color .2s ease, color .2s ease, background .2s ease; flex-shrink:0;
}
.theme-toggle:hover{ border-color:var(--accent); color:var(--accent); background:var(--paper); }
.theme-toggle .icon{ width:18px; height:18px; }
.theme-toggle .icon-moon{ display:none; }
:root[data-theme="dark"] .theme-toggle .icon-sun{ display:none; }
:root[data-theme="dark"] .theme-toggle .icon-moon{ display:block; }
@media (prefers-color-scheme: dark){
  :root:not([data-theme="light"]) .theme-toggle .icon-sun{ display:none; }
  :root:not([data-theme="light"]) .theme-toggle .icon-moon{ display:block; }
}

.lang-switch{ position:relative; flex-shrink:0; }
.lang-switch-toggle{
  background:transparent; border:0; height:38px; padding:0 8px; border-radius:4px;
  display:flex; align-items:center; gap:6px; cursor:pointer; color:var(--ink); font-size:.8rem; font-weight:700;
  font-family:var(--ff-body); letter-spacing:.03em; transition:border-color .2s ease, color .2s ease, background .2s ease;
}
.lang-switch-toggle:hover{ color:var(--accent); background:var(--paper-2); }
.lang-switch-toggle .icon{ width:16px; height:16px; }
.lang-dropdown{
  position:absolute; top:calc(100% + 10px); right:0; min-width:170px; background:var(--surface); border-radius:8px; border:1px solid var(--line);
  box-shadow:0 16px 40px rgba(var(--shadow-rgb),.18); padding:8px; z-index:40; display:flex; flex-direction:column; gap:2px;
  opacity:0; visibility:hidden; transform:translateY(-8px); transition:opacity .2s ease, transform .2s ease, visibility 0s linear .2s;
}
.lang-dropdown.open{ opacity:1; visibility:visible; transform:translateY(0); transition:opacity .2s ease, transform .2s ease; }
.lang-dropdown button{
  background:none; border:0; text-align:left; padding:9px 12px; border-radius:6px; cursor:pointer;
  font-family:var(--ff-body); font-size:.88rem; color:var(--ink); transition:background .15s ease;
}
.lang-dropdown button:hover{ background:var(--paper-2); }
.lang-dropdown button.active{ color:var(--accent); font-weight:700; }
:root[dir="rtl"] .lang-dropdown{ right:auto; left:0; }
:root[dir="rtl"] .lang-dropdown button{ text-align:right; }

/* On desktop every link is already visible in .main-nav, so a
   hamburger opening the same links again is pure redundancy - only
   show it where .main-nav is actually hidden (mobile, see below). */
.menu-btn{ display:none; background:none; border:0; cursor:pointer; width:26px; height:18px; position:relative; }
.menu-btn span{ position:absolute; left:0; right:0; height:2px; background:var(--ink); transition:transform .25s ease, opacity .25s ease; }
.menu-btn span:first-child{ top:1px; }
.menu-btn span:last-child{ bottom:1px; }
.menu-btn.open span:first-child{ transform:translateY(7.5px) rotate(45deg); }
.menu-btn.open span:last-child{ transform:translateY(-7.5px) rotate(-45deg); }

/* slide-in menu panel */
.menu-overlay{
  position:fixed; top:0; right:0; bottom:0; width:min(440px, 100vw); z-index:250;
  background:var(--menu-bg);
  color:#f3eee7;
  border-left:1px solid rgba(255,255,255,.18);
  box-shadow:-24px 0 60px rgba(0,0,0,.4);
  display:flex; flex-direction:column; justify-content:center; padding:0 40px;
  transform:translateX(100%); visibility:hidden;
  transition:transform .45s var(--ease), visibility 0s linear .45s;
}
.menu-overlay::before{
  content:''; position:absolute; top:0; bottom:0; left:0; width:3px;
  background:linear-gradient(180deg, var(--accent) 0%, var(--accent-light) 35%, var(--accent-2-light) 68%, var(--accent-2) 100%);
}
.menu-overlay.open{ transform:translateX(0); visibility:visible; transition:transform .45s var(--ease), visibility 0s linear 0s; }
.menu-links{ display:flex; flex-direction:column; gap:4px; }
.menu-links a{
  position:relative; display:flex; align-items:center; gap:14px; color:#f3eee7;
  font-family:var(--ff-display); font-size:1.4rem; font-weight:600; padding:12px 14px;
  margin:0 -14px; border-radius:12px;
  opacity:0; transform:translateX(16px);
  transition:opacity .4s var(--ease), transform .4s var(--ease), color .2s ease, background .25s ease;
  transition-delay:calc(var(--i) * 45ms);
}
.menu-icon{ width:20px; height:20px; align-self:center; flex-shrink:0; stroke-width:1.5; opacity:.85; transition:opacity .2s ease; }
.menu-links a:hover .menu-icon, .menu-links a.active .menu-icon{ opacity:1; }
.menu-links a::after{
  content:''; margin-left:auto; width:14px; height:14px; flex-shrink:0; background:currentColor;
  mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E") no-repeat center / contain;
  -webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E") no-repeat center / contain;
  opacity:0; transform:translateX(-8px); transition:opacity .25s ease, transform .25s ease;
}
.menu-overlay.open .menu-links a{ opacity:1; transform:translateX(0); }
.menu-links a:hover{ color:var(--accent-light); background:rgba(255,255,255,.1); }
.menu-links a:hover::after{ opacity:1; transform:translateX(0); }
.menu-cta{
  margin-top:22px; width:100%; padding:15px; font-size:1rem;
  opacity:0; transform:translateY(10px); transition:opacity .4s var(--ease), transform .4s var(--ease);
  transition-delay:calc(8 * 45ms);
}
.menu-overlay.open .menu-cta{ opacity:1; transform:translateY(0); }
.menu-foot{ margin-top:28px; display:flex; flex-direction:column; gap:8px; font-size:.88rem; color:rgba(255,255,255,.65); padding-top:22px; border-top:1px solid rgba(255,255,255,.16); }
.menu-foot a{ color:#f3eee7; font-weight:600; }

/* ============ Hero ============ */
.hero{ position:relative; height:100vh; height:100svh; min-height:700px; display:flex; align-items:flex-start; overflow:hidden; padding:0; max-width:none; }
.hero:not(.hero--page){ align-items:stretch; }
.hero-media{ position:absolute; inset:0; }
.hero-media img{
  width:100%; height:100%; object-fit:cover; object-position:center 40%;
  transform:none; animation:none; will-change:auto;
  opacity:1; transition:object-position .8s ease;
  filter:saturate(1.02) contrast(1.02);
}
.hero-media--building img{
  object-fit:cover;
  object-position:center 42%;
  filter:saturate(1.02) contrast(1.02);
}
@keyframes heroZoom{ to{ transform:none; } }
.hero-scrim{ position:absolute; inset:0; background:linear-gradient(90deg, rgba(18,20,23,.82) 0%, rgba(18,20,23,.5) 46%, rgba(18,20,23,.18) 100%); }
.hero-inner{ position:relative; z-index:2; width:100%; max-width:1180px; margin:0 auto; padding:150px 32px 0; color:#fff; display:flex; flex-direction:column; }
.hero:not(.hero--page) .hero-inner{ padding-top:168px; padding-bottom:130px; justify-content:center; }
.hero-eyebrow{ text-transform:uppercase; letter-spacing:.08em; font-size:.78rem; color:#fff; margin-bottom:12px; font-weight:700; opacity:.92; }
.hero-title{ font-size:clamp(2.3rem,4.6vw,3.95rem); font-weight:650; line-height:1.08; max-width:760px; }
.hero-title .line{ display:block; overflow:visible; padding-bottom:.03em; }
.hero-sub{ max-width:520px; color:#f4f5f3; font-size:1.08rem; margin-top:20px; }
.hero-cta{ display:flex; gap:12px; flex-wrap:wrap; margin-top:28px; }
.scroll-cue{ display:none; }

/* ============ Hero CTA bar (search widget below the hero image) ============ */
.hero-cta-bar{ background:var(--paper); padding-top:24px; }

/* ============ Trust row (near booking CTAs) ============ */
.trust-row{ display:flex; flex-wrap:wrap; gap:18px 28px; justify-content:center; margin-top:28px; padding-top:22px; border-top:1px solid var(--line); }
.trust-row .trust-item{ display:flex; align-items:center; gap:9px; font-size:.86rem; color:var(--ink-soft); font-weight:500; }
.trust-row .icon{ width:19px; height:19px; color:var(--accent); }
.trust-row.on-dark{ border-top-color:rgba(255,255,255,.16); }
.trust-row.on-dark .trust-item{ color:rgba(255,255,255,.85); }
.trust-row.on-dark .icon{ color:var(--accent-light); }
.hero-inner .trust-row{ justify-content:flex-start; border-top:0; padding-top:0; margin-top:28px; }

/* ============ Page banner (interior pages) - must stay after .hero to win the cascade ============ */
.hero--page{
  height:clamp(270px, 34vh, 360px); min-height:0; max-height:none; align-items:stretch;
  background:var(--paper-2); border-bottom:1px solid var(--line);
}
.hero--page .hero-media,
.hero--page .hero-scrim{ display:none; }
.hero--page::before{ display:none; }
.hero--page .hero-inner{ justify-content:center; align-items:center; text-align:center; padding-top:102px; padding-bottom:34px; }
.hero--page .hero-title{ font-size:clamp(2rem,4.6vw,3rem); }
.hero--page .hero-inner{ color:var(--ink); }
.hero--page .hero-eyebrow,
.hero--page .hero-title,
.hero--page .hero-sub{ text-shadow:none; }
.hero--page .hero-eyebrow{ color:#ed1c24; }
.hero--page .hero-title em{ color:#ed1c24; }
/* Text-shadow on top of the scrim for extra insurance against
   whichever photo happens to be behind it - the scrim alone can
   still be borderline over a bright patch of sky or wall. */
.hero-title, .hero-eyebrow, .hero-sub{ text-shadow:0 1px 12px rgba(0,0,0,.4); }

/* ============ Search widget (Booking.com-style) ============ */
.search-widget-wrap{ position:relative; z-index:20; max-width:1180px; margin:0 auto; padding:0 24px 44px; }
.search-widget-wrap.overlap{ margin-top:-46px; }
.hero-cta-bar .search-widget-wrap.overlap{ margin-top:-112px; }
.search-widget{
  background:var(--surface); border-radius:8px; box-shadow:0 18px 36px rgba(var(--shadow-rgb),.14); border:1px solid var(--line);
  display:grid; grid-template-columns:1fr 1fr 1.2fr auto; align-items:stretch;
  padding:8px; gap:4px;
}
.search-widget form{ display:contents; }
.sw-field{ position:relative; padding:15px 20px; border-radius:6px; cursor:pointer; transition:background .2s ease, box-shadow .2s ease; border-right:1px solid var(--line); }
.sw-field:last-of-type{ border-right:0; }
.sw-field:hover{ background:var(--paper-2); }
.sw-field:focus-within{ background:var(--paper-2); box-shadow:inset 0 -2px 0 var(--accent); }
.sw-field label{ display:flex; align-items:center; gap:6px; font-size:.74rem; font-weight:700; text-transform:uppercase; letter-spacing:.08em; color:var(--ink-soft); margin-bottom:6px; }
.sw-field label .icon{ width:15px; height:15px; color:var(--accent); }
.sw-field input[type="date"]{
  /* No appearance:none here - on iOS Safari it silently breaks the
     native date picker (the field stops responding to taps). border/
     background/padding resets below already give the flat look we want
     without needing to strip the input's native appearance. */
  border:0; background:none; padding:0; font-family:var(--ff-body); font-size:1.08rem; font-weight:600; color:var(--ink);
  width:100%; min-width:0; cursor:pointer; display:block; line-height:1.35; min-height:1.45em; accent-color:var(--accent);
}
.sw-field input[type="date"]:focus{ outline:none; }
/* Chrome/Safari render the date value in an internal shadow tree that doesn't
   reliably inherit font styles from the input itself - style those parts
   directly so "dd/mm/yyyy" matches the rest of the widget instead of falling
   back to the OS UI font. */
.sw-field input[type="date"]::-webkit-datetime-edit{ font-family:var(--ff-body); font-size:1.08rem; font-weight:600; color:var(--ink); padding:0; display:flex; align-items:center; }
.sw-field input[type="date"]::-webkit-datetime-edit-fields-wrapper{ padding:0; }
.sw-field input[type="date"]::-webkit-datetime-edit-text,
.sw-field input[type="date"]::-webkit-datetime-edit-month-field,
.sw-field input[type="date"]::-webkit-datetime-edit-day-field,
.sw-field input[type="date"]::-webkit-datetime-edit-year-field{
  font-family:var(--ff-body); font-size:1.08rem; font-weight:600; color:var(--ink); padding:0;
}
.sw-field input[type="date"]::-webkit-calendar-picker-indicator{
  cursor:pointer; opacity:.58; width:20px; height:20px; margin-left:8px; padding:3px;
  filter:var(--date-icon-filter, none);
}
.sw-field input[type="date"]::-webkit-calendar-picker-indicator:hover{ opacity:.9; }
.date-placeholder{ display:none; }
.sw-nights{
  position:absolute; left:28px; top:100%; margin-top:8px; z-index:5;
  display:flex; align-items:center; gap:2px; background:var(--accent); padding:3px; border-radius:20px;
  opacity:0; visibility:hidden; transform:translateY(-4px);
  transition:opacity .2s ease, transform .2s ease, visibility 0s linear .2s;
}
.sw-nights.visible{ opacity:1; visibility:visible; transform:translateY(0); transition:opacity .2s ease, transform .2s ease; }
.sw-nights-text{ font-size:.72rem; font-weight:700; color:#fff; white-space:nowrap; padding:0 8px; }
.sw-nights-btn{
  width:22px; height:22px; flex-shrink:0; border-radius:50%; border:1px solid rgba(255,255,255,.5);
  background:rgba(255,255,255,.12); color:#fff; font-size:.9rem; line-height:1; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  transition:background .2s ease, border-color .2s ease, opacity .2s ease;
}
.sw-nights-btn:hover:not(:disabled){ background:rgba(255,255,255,.28); border-color:#fff; }
.sw-nights-btn:disabled{ opacity:.35; cursor:not-allowed; }
.sw-guests-toggle{ background:none; border:0; padding:0; text-align:left; width:100%; font-family:var(--ff-body); font-size:1.15rem; font-weight:600; color:var(--ink); cursor:pointer; }
.sw-guests-field{ position:relative; }
.sw-submit{
  border:0; background:var(--accent); color:#fff; font-weight:700; font-size:1.05rem;
  padding:0 34px; border-radius:6px; cursor:pointer; transition:background .2s ease, transform .15s ease; white-space:nowrap;
  display:flex; align-items:center; justify-content:center; gap:10px; margin-left:12px;
}
.sw-submit:hover{ background:var(--accent-dark); transform:translateY(-1px); }

.guests-dropdown{
  position:absolute; top:calc(100% + 10px); left:0; width:300px; background:var(--surface); border-radius:8px; border:1px solid var(--line);
  box-shadow:0 16px 40px rgba(var(--shadow-rgb),.18); padding:20px; z-index:40;
  opacity:0; visibility:hidden; transform:translateY(-8px); transition:opacity .2s ease, transform .2s ease, visibility 0s linear .2s;
}
.guests-dropdown.open{ opacity:1; visibility:visible; transform:translateY(0); transition:opacity .2s ease, transform .2s ease; }
.stepper-row{ display:flex; align-items:center; justify-content:space-between; padding:10px 0; border-bottom:1px solid var(--line); }
.stepper-row:last-of-type{ border-bottom:0; }
.stepper-row span{ font-size:.9rem; }
.stepper{ display:flex; align-items:center; gap:14px; }
.stepper button{
  width:30px; height:30px; border-radius:50%; border:1.5px solid var(--line); background:var(--surface);
  color:var(--ink); font-size:1.1rem; cursor:pointer; display:flex; align-items:center; justify-content:center;
  transition:border-color .2s ease, color .2s ease, opacity .2s ease;
}
.stepper button:hover:not(:disabled){ border-color:var(--accent); color:var(--accent); }
.stepper button:disabled{ opacity:.3; cursor:not-allowed; }
.stepper b{ width:18px; text-align:center; font-weight:600; }
.guests-done{ width:100%; margin-top:16px; }

/* ============ Little Hotelier direct booking handoff ============ */
.direct-booking-section{ padding-top:14px; }
.direct-booking-panel{
  max-width:1120px; margin:0 auto; display:grid; grid-template-columns:minmax(0,1.45fr) minmax(320px,.75fr);
  gap:28px; align-items:stretch;
}
.direct-booking-copy{
  background:var(--surface); border:1px solid var(--line); border-radius:var(--radius);
  padding:38px; min-height:330px; display:flex; flex-direction:column; justify-content:center;
}
.direct-booking-copy h2{
  font-family:var(--ff-display); font-size:clamp(1.9rem,3.5vw,3rem); line-height:1.04;
  font-weight:700; max-width:620px; margin:18px 0 14px;
}
.direct-booking-copy p{ color:var(--ink-soft); font-size:1rem; line-height:1.7; max-width:620px; }
.direct-booking-features{ display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:12px; margin-top:28px; }
.direct-booking-features span{
  min-height:64px; border:1px solid var(--line); border-radius:8px; background:var(--paper-2);
  display:flex; align-items:center; gap:10px; padding:12px; color:var(--ink); font-size:.84rem; font-weight:600;
}
.direct-booking-features .icon{ width:18px; height:18px; flex:none; color:var(--accent); }
.direct-booking-card{
  background:var(--ink); color:var(--paper); border-radius:var(--radius); padding:28px;
  display:flex; flex-direction:column; justify-content:space-between; min-height:330px; box-shadow:0 24px 56px rgba(var(--shadow-rgb),.18);
}
.direct-booking-card-head{ display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:22px; }
.direct-booking-card-head span{ color:rgba(255,255,255,.72); font-size:.78rem; font-weight:700; text-transform:uppercase; letter-spacing:.08em; }
.direct-booking-card-head b{ color:#fff; font-size:.82rem; border:1px solid rgba(255,255,255,.22); border-radius:999px; padding:5px 9px; }
.direct-booking-summary{ display:grid; gap:0; margin:0 0 24px; }
.direct-booking-summary div{ display:flex; align-items:center; justify-content:space-between; gap:18px; padding:14px 0; border-bottom:1px solid rgba(255,255,255,.14); }
.direct-booking-summary dt{ color:rgba(255,255,255,.66); font-size:.82rem; }
.direct-booking-summary dd{ color:#fff; margin:0; font-weight:700; text-align:right; }
.direct-booking-btn{ width:100%; justify-content:center; }
.direct-booking-card p{ color:rgba(255,255,255,.7); font-size:.78rem; line-height:1.5; margin:16px 0 0; text-align:center; }
.direct-booking-help{
  max-width:1120px; margin:22px auto 0; display:flex; flex-wrap:wrap; justify-content:center; align-items:center;
  gap:9px; color:var(--ink-soft); font-size:.9rem;
}

/* ============ Room list (Booking.com-style availability table) ============ */
.rl-layout{ display:grid; grid-template-columns:1fr 200px; gap:24px; align-items:start; margin-top:26px; }
.rl-cols{ grid-template-columns:minmax(280px,2.2fr) 92px 130px minmax(170px,1.3fr) 140px; }
.rl-table{ border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; background:var(--surface); }
.rl-empty{ border:1px dashed var(--line); border-radius:var(--radius); padding:60px 30px; text-align:center; }
.rl-empty p{ color:var(--ink-soft); font-size:.95rem; max-width:380px; margin:0 auto; }
.rl-tip{ font-size:.86rem; color:var(--ink-soft); background:var(--paper-2); border-radius:8px; padding:12px 16px; margin-top:22px; max-width:760px; }
.rl-tip b{ color:var(--accent); }
.rl-header{ display:grid; background:var(--ink); color:var(--paper); font-size:.76rem; font-weight:700; text-transform:uppercase; letter-spacing:.04em; }
.rl-header > div{ padding:14px 16px; }
.rl-header > div:nth-child(2){ text-align:center; }
.rl-row{ display:grid; border-top:1px solid var(--line); transition:background .2s ease; }
.rl-row:hover{ background:var(--paper-2); }
.rl-row > div{ padding:18px 16px; border-right:1px solid var(--line); display:flex; flex-direction:column; justify-content:center; }
.rl-row > div:last-child{ border-right:0; }
.rl-row.dimmed{ opacity:.5; filter:saturate(.85); }
.rl-row.dimmed:hover{ background:none; }
.rl-note{ font-size:.8rem; color:var(--accent); font-weight:700; }

.rl-col-room{ flex-direction:row !important; gap:16px; align-items:flex-start !important; }
.rl-thumb{ flex:none; width:110px; aspect-ratio:4/3; border-radius:8px; overflow:hidden; background:var(--paper-2); }
.rl-thumb img{ width:100%; height:100%; object-fit:cover; }
.rl-info h3{ font-family:var(--ff-display); font-size:1.1rem; font-weight:600; margin-bottom:4px; }
.rl-info h3 small{ font-family:var(--ff-body); font-weight:400; font-size:.6em; color:var(--ink-soft); }
.rl-badge{ display:inline-block; padding:4px 9px; border-radius:999px; background:rgba(153,109,73,.1); color:var(--accent); font-size:.63rem; font-weight:700; text-transform:uppercase; letter-spacing:.07em; margin-bottom:6px; }
.rl-meta{ color:var(--ink-soft); font-size:.82rem; margin-bottom:8px; line-height:1.5; }
.rl-tags{ display:flex; flex-wrap:wrap; gap:6px; }
.rl-tags span{ font-size:.64rem; border:1px solid var(--line); padding:4px 8px; border-radius:999px; color:var(--ink-soft); background:var(--paper); }

.rl-guest-icons{ display:flex; justify-content:center; gap:2px; color:var(--ink-soft); }
.rl-guest-icons .icon{ width:16px; height:16px; }
.rl-guest-extra{ font-size:.78rem; color:var(--ink-soft); margin-left:4px; }

.rl-amount{ font-family:var(--ff-display); font-size:1.5rem; color:var(--ink); font-weight:700; line-height:1; }
.rl-per{ font-size:.72rem; color:var(--ink-soft); margin-top:4px; }
.rl-total-note{ font-size:.72rem; color:var(--ink-soft); margin-top:6px; padding-top:6px; border-top:1px dashed var(--line); }

.rl-col-choices .summary-badge{ margin-bottom:8px; }
.rl-choice-note{ font-size:.78rem; color:var(--ink-soft); display:flex; align-items:center; gap:6px; }
.rl-choice-note .icon{ width:13px; height:13px; flex:none; }
.rl-capacity-note{ font-size:.76rem; color:var(--ink-soft); margin-top:8px; }

.rl-qty{ width:100%; }

.rl-charge-note{ font-size:.7rem; color:var(--ink-soft); margin-top:8px; text-align:center; }

.rl-reserve-all{ position:sticky; top:100px; text-align:center; background:var(--surface); border:1px solid var(--line); border-radius:var(--radius); padding:22px 18px; }
.rl-reserve-all .btn{ width:100%; }
.rl-reserve-all .rl-charge-note{ margin-top:12px; }

@media (max-width:1100px){
  .rl-cols{ grid-template-columns:minmax(240px,2fr) 78px 118px minmax(150px,1.1fr) 120px; }
}

.reserve-panel{ grid-column:1 / -1; max-height:0; overflow:hidden; transition:max-height .4s var(--ease); }
.reserve-panel.open{ max-height:420px; }
.reserve-panel-inner{ background:var(--paper-2); border-radius:18px; padding:22px; margin-top:18px; display:grid; grid-template-columns:1fr 1fr auto; gap:16px; align-items:end; }
.reserve-panel-inner .form-row{ margin-bottom:0; }
.reserve-panel-inner .form-error{ grid-column:1 / -1; margin-bottom:0; }

/* load-in (hero, plays on page load) */
.load-in{ opacity:1; transform:none; animation:none; }
@keyframes loadUp{ to{ opacity:1; transform:translateY(0); } }

/* scroll reveal (rest of page) */
.reveal{ opacity:1; transform:none; transition:none; }
.reveal.in-view{ opacity:1; transform:translateY(0); }

/* ============ About ============ */
.about-grid{ display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:start; }
.about-lead{ font-size:clamp(1.5rem,2.6vw,2rem); font-weight:600; }
.about-body p{ color:var(--ink-soft); margin-bottom:1.1em; font-size:1rem; }
.stats-row{ margin-top:70px; display:grid; grid-template-columns:repeat(4,1fr); border-top:1px solid var(--line); }
.stat{ padding:28px 20px 0; border-left:1px solid var(--line); }
.stat:first-child{ border-left:none; padding-left:0; }
.stat-num{ display:block; font-family:var(--ff-display); font-size:clamp(1.8rem,3.2vw,2.4rem); color:var(--accent); font-weight:700; }
.stat p{ color:var(--ink-soft); font-size:.85rem; margin-top:6px; }

/* ============ Rooms (editorial rows) ============ */
.rooms{ background:var(--paper-2); max-width:none; }
.rooms > .section-head,
.rooms > .rooms-title,
.rooms > .room-rows,
.rooms > .section-foot,
.rooms > .section-intro{ max-width:1180px; margin-left:auto; margin-right:auto; }
.rooms-title{ font-size:clamp(1.9rem,3.8vw,2.8rem); margin-bottom:30px; }
.room-rows{ display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; }
.room-row{ display:block; background:var(--surface); border:1px solid var(--line); border-radius:8px; overflow:hidden; }
.room-row.reverse{ grid-template-columns:.9fr 1.1fr; }
.room-row.reverse .room-row-media{ order:initial; }
.room-row.reverse .room-row-body{ order:initial; }
.room-row-media{ aspect-ratio:4/3; overflow:hidden; border-radius:0; }
.room-row-media img{ width:100%; height:100%; object-fit:cover; transition:transform .5s var(--ease); }
.room-row:hover .room-row-media > img{ transform:scale(1.04); }
.room-gallery{ position:relative; background:var(--line); cursor:pointer; }
.room-gallery-main{ display:block; }
.room-gallery-strip{
  position:absolute;
  right:12px;
  bottom:12px;
  display:block;
  align-items:center;
  z-index:2;
}
.room-gallery-strip img{
  display:none;
}
.room-photo-more{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:50px;
  height:36px;
  padding:0 14px;
  border-radius:999px;
  background:rgba(255,255,255,.96);
  color:#16191d;
  border:1px solid rgba(255,255,255,.75);
  box-shadow:0 10px 24px rgba(0,0,0,.28);
  font-weight:800;
  font-size:.92rem;
  cursor:pointer;
  transition:transform .2s var(--ease), background .2s ease;
}
.room-gallery:hover .room-photo-more{ transform:translateY(-1px); background:#fff; }
.room-index{ font-family:var(--ff-body); font-weight:700; color:var(--accent); font-size:.82rem; letter-spacing:.06em; }
.room-row-body{ padding:20px; }
.room-row-body h3{ font-size:1.35rem; margin:6px 0 10px; font-weight:700; }
.room-row-body h3 small{ font-family:var(--ff-body); font-weight:400; font-size:.55em; color:var(--ink-soft); }
.room-desc{ color:var(--ink-soft); max-width:420px; margin-bottom:16px; }
.room-tags{ display:flex; flex-wrap:wrap; gap:8px; margin-bottom:22px; }
.room-tags span{ font-size:.72rem; text-transform:uppercase; letter-spacing:.04em; border:1px solid var(--line); padding:6px 12px; border-radius:5px; color:var(--ink-soft); background:var(--surface); }
.room-row-foot{ display:flex; align-items:center; justify-content:space-between; gap:16px; padding-top:16px; border-top:1px solid var(--line); }
.room-price{ font-family:var(--ff-display); font-size:1.25rem; color:var(--ink); font-weight:700; }
.room-price small{ font-family:var(--ff-body); font-size:.6rem; color:var(--ink-soft); font-weight:400; }

/* ============ Amenities (home, photo + checklist) ============ */
.amenities-home{ background:var(--paper-2); }
.amenities-home-grid{ display:grid; grid-template-columns:.85fr 1.15fr; gap:60px; align-items:center; margin-top:8px; }
.amenities-home-media{ aspect-ratio:4/5; border-radius:var(--radius); overflow:hidden; }
.amenities-home-media img{ width:100%; height:100%; object-fit:cover; }
.amenities-home-body h2{ font-size:clamp(1.9rem,3.4vw,2.5rem); margin-bottom:16px; }
.amenities-home-lead{ color:var(--ink-soft); max-width:460px; margin-bottom:32px; font-size:1.02rem; }
.amenity-checklist{ list-style:none; margin:0 0 28px; padding:0; display:grid; gap:22px; }
.amenity-checklist li{ display:flex; gap:16px; align-items:flex-start; }
.amenity-checklist .icon{ width:22px; height:22px; color:var(--accent-2); flex:none; margin-top:2px; }
.amenity-checklist b{ display:block; font-family:var(--ff-display); font-size:1.02rem; font-weight:600; margin-bottom:2px; }
.amenity-checklist span{ display:block; color:var(--ink-soft); font-size:.9rem; }
.section-foot{ margin-top:40px; text-align:center; }

/* ============ Gallery (masonry rhythm) ============ */
.bento{ display:grid; grid-template-columns:repeat(6,1fr); grid-auto-rows:120px; gap:10px; grid-auto-flow:dense; }
.bento img{ width:100%; height:100%; object-fit:cover; border-radius:var(--radius); cursor:pointer; transition:transform .3s var(--ease), filter .3s ease; }
.bento img:hover{ filter:brightness(1.04); }
.bento .g-big{ grid-column:span 3; grid-row:span 3; }
.bento .g-wide{ grid-column:span 3; grid-row:span 2; }
.bento .g-tall{ grid-column:span 2; grid-row:span 3; }
.bento .g-norm{ grid-column:span 2; grid-row:span 2; }

/* The full gallery keeps the original proportions so the vertical rhythm
   stays even instead of leaving holes between fixed-height grid tracks. */
.gallery .bento{
  display:block;
  column-count:3;
  column-gap:16px;
}
.gallery .bento img{
  width:100%; height:auto; object-fit:initial;
  margin:0 0 16px;
  border-radius:8px;
  break-inside:avoid;
  cursor:zoom-in;
}
.gallery .bento img:hover{ transform:translateY(-2px); filter:brightness(1.04); }

/* ============ Amenities (light, list style) ============ */
.amenities{ background:var(--paper-2); max-width:none; padding-left:0; padding-right:0; }
.amenities .section-head, .amenities > h2{ max-width:1240px; margin-left:auto; margin-right:auto; padding:0 24px; }
.amenities .section-label{ color:var(--ink-soft); }
.amenities h2.light{ color:var(--ink); margin-bottom:40px; }
.amenities-list{ max-width:1240px; margin:0 auto; padding:0 24px; border-top:1px solid var(--line); }
.amenity-row{ display:grid; grid-template-columns:44px 220px 1fr; gap:26px; padding:20px 0; border-bottom:1px solid var(--line); align-items:center; }
.amenity-row .icon-badge{ width:40px; height:40px; border-radius:50%; background:var(--surface); border:1px solid var(--line); display:flex; align-items:center; justify-content:center; }
.amenity-row .icon{ width:18px; height:18px; color:var(--accent); }
.amenity-row h4{ font-family:var(--ff-display); font-weight:700; font-size:1.05rem; }
.amenity-row p{ color:var(--ink-soft); max-width:520px; }

/* ============ Reviews ============ */
.reviews-grid{ display:grid; grid-template-columns:.9fr 1.1fr; gap:56px; }
.reviews-score h2{ font-size:clamp(1.6rem,2.8vw,2.1rem); margin-bottom:24px; }
.score-big{ font-family:var(--ff-display); font-size:3.4rem; color:var(--accent); line-height:1; font-weight:700; }
.score-big span{ font-size:1.2rem; color:var(--ink-soft); font-family:var(--ff-body); font-weight:400; }
.score-caption{ color:var(--ink-soft); margin:12px 0 28px; }
.score-highlight{ color:var(--ink-soft); font-size:.92rem; line-height:1.6; padding-top:24px; border-top:1px solid var(--line); }
.score-bars{ display:grid; gap:14px; }
.score-bar{ display:grid; grid-template-columns:100px 1fr 32px; align-items:center; gap:14px; font-size:.85rem; }
.score-bar .bar{ height:6px; background:var(--line); border-radius:99px; overflow:hidden; }
.score-bar .bar i{ display:block; height:100%; width:var(--w); background:var(--accent); }
.testimonial-slider{ background:var(--surface); border:1px solid var(--line); border-radius:var(--radius); padding:40px; display:flex; flex-direction:column; justify-content:space-between; min-height:280px; }
.testimonial-viewport{ overflow:hidden; }
.testimonial-track{ display:flex; }
.testimonial{ min-width:100%; margin:0; transition:opacity .3s ease; }
.testimonial p{ font-family:var(--ff-display); font-size:clamp(1.15rem,1.8vw,1.4rem); font-weight:500; line-height:1.45; color:var(--ink); }
.testimonial footer{ margin-top:20px; font-size:.85rem; color:var(--ink-soft); font-weight:600; }
.testimonial-controls{ display:flex; align-items:center; justify-content:space-between; margin-top:26px; }
.testimonial-controls button{ background:none; border:1px solid var(--line); width:40px; height:40px; border-radius:50%; cursor:pointer; font-size:1rem; transition:background .2s ease, color .2s ease, border-color .2s ease; }
.testimonial-controls button:hover{ background:var(--accent); color:#fff; border-color:var(--accent); }
.testimonial-dots{ display:flex; gap:8px; }
.testimonial-dots span{ width:6px; height:6px; border-radius:50%; background:var(--line); cursor:pointer; transition:background .2s ease, transform .2s ease; }
.testimonial-dots span.active{ background:var(--accent); transform:scale(1.4); }

/* ============ Booking ============ */
.booking-grid{ display:grid; grid-template-columns:1.3fr .9fr; gap:56px; align-items:start; }
/* Before a booking is found, the result column is empty - the form
   card ends up pinned to the left with a lopsided gap next to it, so
   center it as a standalone card instead until there's a result to
   show alongside it. */
.booking-grid.booking-grid--single{ grid-template-columns:1fr; max-width:620px; margin-left:auto; margin-right:auto; }
.booking-form{ background:var(--surface); border:1px solid var(--line); border-radius:var(--radius); padding:36px; }
.form-row{ margin-bottom:20px; }
.form-row.two-col{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.form-row label{ display:block; font-size:.8rem; font-weight:600; text-transform:uppercase; letter-spacing:.05em; color:var(--ink-soft); margin-bottom:8px; }
.form-row input, .form-row select{
  width:100%; padding:13px 14px; border:1.5px solid var(--line); border-radius:6px;
  font-family:var(--ff-body); font-size:.95rem; color:var(--ink); background:var(--paper);
  transition:border-color .2s ease;
}
.form-row input:focus, .form-row select:focus{ outline:none; border-color:var(--accent); }
.form-row input.invalid, .form-row textarea.invalid{ border-color:#c0392b; }
.field-error{ display:block; font-size:.78rem; color:#c0392b; margin-top:6px; font-weight:500; }
.form-error{ display:none; background:#fbeae7; border:1px solid #e2a89c; color:#8a2f1f; padding:12px 16px; border-radius:6px; font-size:.88rem; margin-bottom:18px; }
.form-error.visible{ display:block; }
.form-note{ font-size:.8rem; color:var(--ink-soft); margin-top:16px; text-align:center; }
.radio-group{ display:flex; gap:22px; flex-wrap:wrap; }
.radio-option{ display:flex; align-items:center; gap:8px; font-size:.9rem; font-weight:400; text-transform:none; color:var(--ink); cursor:pointer; }
.radio-option input{ width:auto; accent-color:var(--accent); }

.booking-summary{ background:var(--paper-2); border-radius:var(--radius); padding:30px; position:sticky; top:90px; overflow:hidden; }
.booking-summary h3{ font-family:var(--ff-display); font-weight:700; font-size:1.2rem; margin-bottom:18px; }
.summary-badge{
  display:inline-flex; align-items:center; gap:6px; background:rgba(46,125,50,.12); color:#2e7d32;
  font-size:.76rem; font-weight:700; padding:5px 12px; border-radius:999px; margin-bottom:18px;
}
:root:not([data-theme="light"]) .summary-badge{ background:rgba(102,214,110,.16); color:#8ce396; }
:root[data-theme="dark"] .summary-badge{ background:rgba(102,214,110,.16); color:#8ce396; }
.summary-badge .icon{ width:13px; height:13px; }
.summary-breakdown{ margin-bottom:6px; }
.summary-breakdown-row{ display:flex; justify-content:space-between; padding:6px 0; font-size:.86rem; color:var(--ink-soft); }
.summary-row{ display:flex; justify-content:space-between; padding:10px 0; border-bottom:1px solid var(--line); font-size:.9rem; }
.summary-row span{ color:var(--ink-soft); }
.summary-total{ display:flex; justify-content:space-between; align-items:baseline; padding-top:16px; margin-top:6px; }
.summary-total span{ color:var(--ink-soft); font-size:.9rem; }
.summary-total b{ font-family:var(--ff-display); font-size:1.6rem; color:var(--accent); }
.summary-policies{ margin-top:22px; padding-top:18px; border-top:1px solid var(--line); }
.summary-policies p{ font-size:.82rem; color:var(--ink-soft); margin-bottom:8px; }
.summary-alt{ margin-top:22px; padding-top:18px; border-top:1px solid var(--line); text-align:center; }
.summary-alt p{ font-size:.85rem; color:var(--ink-soft); margin-bottom:12px; }

.summary-items{ margin-bottom:6px; }
.summary-item{ display:flex; align-items:center; gap:12px; padding:10px 0; border-bottom:1px solid var(--line); }
.summary-item-thumb{ flex:none; width:48px; height:48px; border-radius:6px; overflow:hidden; background:var(--line); }
.summary-item-thumb img{ width:100%; height:100%; object-fit:cover; }
.summary-item-info{ flex:1; min-width:0; }
.summary-item-info b{ display:block; font-size:.86rem; font-weight:600; }
.summary-item-info span{ font-size:.76rem; color:var(--ink-soft); }
.summary-item-price{ font-size:.86rem; font-weight:600; white-space:nowrap; }


.booking-result{ max-width:1240px; margin:0 auto; padding:120px 24px 100px; text-align:center; display:flex; flex-direction:column; align-items:center; }
.booking-result .booking-summary{ position:static; text-align:left; width:100%; }

/* ============ Checkout (details -> payment) ============ */
.checkout-steps{ display:flex; align-items:center; margin-top:26px; max-width:360px; }
.checkout-step{ display:inline-flex; align-items:center; gap:10px; font-size:.85rem; font-weight:600; color:var(--ink-soft); white-space:nowrap; }
.checkout-step i{ font-style:normal; display:inline-flex; align-items:center; justify-content:center; width:30px; height:30px; border-radius:50%; background:var(--surface); border:1.5px solid var(--line); color:var(--ink-soft); font-size:.85rem; font-weight:700; transition:background .2s ease, border-color .2s ease, color .2s ease; }
.checkout-step.active{ color:var(--ink); }
.checkout-step.active i{ background:var(--accent); border-color:var(--accent); color:#fff; }
.checkout-step.done i{ background:var(--accent); border-color:var(--accent); color:#fff; }
.checkout-step-sep{ flex:1; height:2px; background:var(--line); margin:0 10px; position:relative; top:-11px; min-width:24px; }
.checkout-back{ background:none; border:0; padding:0; margin-bottom:18px; color:var(--ink-soft); font-size:.85rem; font-weight:600; cursor:pointer; display:inline-flex; align-items:center; gap:6px; transition:color .2s ease; }
.checkout-back:hover{ color:var(--accent); }
.checkout-section .booking-form + .booking-form{ margin-top:0; }

/* ============ Review CTA (Google) ============ */
.review-cta{ background:var(--paper-2); text-align:center; max-width:none; padding:70px 24px; }
.review-cta-inner{ max-width:560px; margin:0 auto; }
.review-cta-inner h2{ font-size:clamp(1.6rem,2.8vw,2.1rem); margin-bottom:14px; }
.review-cta-sub{ color:var(--ink-soft); margin-bottom:28px; }
.review-cta-inner .btn{ display:inline-flex; align-items:center; }

/* ============ Location ============ */
.location{ background:var(--paper-2); }
.location-grid{ display:grid; grid-template-columns:.85fr 1.15fr; gap:56px; align-items:center; }
.location-info h2{ font-size:clamp(1.7rem,2.8vw,2.3rem); margin-bottom:20px; }
.location-address{ color:var(--ink-soft); margin-bottom:26px; }
.location-list{ list-style:none; margin:0 0 26px; padding:0; display:grid; gap:12px; }
.location-list li{ display:flex; justify-content:space-between; padding-bottom:12px; border-bottom:1px solid var(--line); font-size:.94rem; }
.location-list li small{ color:var(--ink-soft); }
.location-map{ border-radius:var(--radius); overflow:hidden; box-shadow:0 14px 36px rgba(var(--shadow-rgb),.12); border:1px solid var(--line); }
.location-map iframe{ width:100%; height:400px; border:0; display:block; }

/* ============ Info / Accordion ============ */
.accordion{ border-top:1px solid var(--line); max-width:760px; }
.acc-item{ border-bottom:1px solid var(--line); }
.acc-trigger{
  width:100%; background:none; border:0; text-align:left; padding:22px 4px; cursor:pointer;
  display:flex; justify-content:space-between; align-items:center; font-family:var(--ff-display);
  font-size:1.08rem; font-weight:600; color:var(--ink);
}
.acc-trigger .acc-icon{ font-size:1.3rem; color:var(--accent); transition:transform .3s var(--ease); font-family:var(--ff-body); flex:none; }
.acc-item.open .acc-trigger .acc-icon{ transform:rotate(45deg); }
.acc-panel{ max-height:0; overflow:hidden; transition:max-height .4s var(--ease); }
.acc-panel-inner{ padding:0 4px 22px; color:var(--ink-soft); max-width:560px; }

/* ============ CTA ============ */
.cta{ background:#202327; color:#fff; text-align:center; padding-top:68px; padding-bottom:72px; max-width:none; }
.cta-eyebrow{ font-family:var(--ff-body); font-weight:600; letter-spacing:.06em; color:var(--accent-light); opacity:1; margin-bottom:14px; text-transform:uppercase; font-size:.78rem; }
.cta-title{ font-size:clamp(1.9rem,3.6vw,2.8rem); font-weight:700; margin-bottom:32px; }
.cta-actions{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* ============ Footer ============ */
.site-footer{ background:var(--paper-2); padding:56px 24px 0; border-top:1px solid var(--line); }
.footer-top{ max-width:1240px; margin:0 auto; display:flex; justify-content:space-between; gap:50px; flex-wrap:wrap; padding-bottom:44px; border-bottom:1px solid var(--line); }
.footer-brand{ max-width:280px; }
.footer-top .logo{ color:var(--ink); font-size:1.4rem; padding:0; border-right:0; }
.footer-top .logo-img{ height:48px; }
.footer-tagline{ margin-top:16px; font-size:.88rem; line-height:1.6; color:var(--ink-soft); }
.footer-cols{ display:flex; gap:60px; flex-wrap:wrap; }
.footer-cols h5{ text-transform:uppercase; letter-spacing:.1em; font-size:.72rem; color:var(--ink-soft); margin-bottom:14px; }
.footer-cols a, .footer-cols p{ display:block; margin-bottom:9px; font-size:.9rem; color:var(--ink-soft); }
.footer-cols a{ transition:color .2s ease; }
.footer-cols a:hover{ color:var(--accent); }
.footer-line{ display:flex; align-items:flex-start; gap:8px; }
.footer-line .icon{ width:15px; height:15px; margin-top:2px; color:var(--accent); flex-shrink:0; }
.footer-bottom{
  max-width:1240px; margin:0 auto; padding:22px 0; font-size:.8rem; color:var(--ink-soft);
  display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap;
}

/* ============ Lightbox ============ */
.lightbox{ position:fixed; inset:0; background:rgba(10,8,6,.94); display:none; align-items:center; justify-content:center; z-index:1000; padding:40px; }
.lightbox.active{ display:flex; }
.lightbox img{ max-width:90vw; max-height:85vh; border-radius:4px; box-shadow:0 20px 60px rgba(0,0,0,.5); }
.lightbox-close{ position:absolute; top:24px; right:32px; background:none; border:0; color:#fff; font-size:2.2rem; cursor:pointer; line-height:1; }
.lightbox-nav{ position:absolute; top:50%; transform:translateY(-50%); background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.25); color:#fff; width:48px; height:48px; border-radius:50%; cursor:pointer; font-size:1.1rem; }
.lightbox-prev{ left:24px; }
.lightbox-next{ right:24px; }
.lightbox-nav:hover{ background:rgba(255,255,255,.2); }

/* ============ Mobile sticky bar ============ */
.mobile-bar{
  position:fixed; left:16px; right:16px; bottom:16px; z-index:280;
  background:var(--accent); color:#fff; text-align:center; padding:16px; border-radius:var(--radius);
  font-weight:600; font-size:.9rem; box-shadow:0 10px 30px rgba(0,0,0,.25); display:none;
}
.menu-overlay.open ~ .mobile-bar{ display:none !important; }

/* ============ RTL support (Arabic) ============
   Flexbox/Grid row flow already mirrors automatically once dir="rtl" is set on
   <html> - these overrides only cover physical left/right properties that don't
   flip on their own (fixed/absolute positioning, one-sided borders, text-align:left). */
:root[dir="rtl"] .menu-overlay{ right:auto; left:0; box-shadow:20px 0 60px rgba(var(--shadow-rgb),.18); transform:translateX(-100%); }
:root[dir="rtl"] .menu-overlay.open{ transform:translateX(0); }
:root[dir="rtl"] .stat{ border-left:0; border-right:1px solid var(--line); padding-left:20px; padding-right:0; }
:root[dir="rtl"] .stat:first-child{ border-right:none; padding-right:0; }
:root[dir="rtl"] .stat:last-child{ padding-left:0; }
:root[dir="rtl"] .guests-dropdown{ left:auto; right:0; }
:root[dir="rtl"] .sw-nights{ left:auto; right:28px; }
:root[dir="rtl"] .sw-guests-toggle{ text-align:right; }
:root[dir="rtl"] .acc-trigger{ text-align:right; }
:root[dir="rtl"] .booking-result .booking-summary{ text-align:right; }
:root[dir="rtl"] .lightbox-prev{ left:auto; right:24px; }
:root[dir="rtl"] .lightbox-next{ right:auto; left:24px; }
:root[dir="rtl"] .amenity-row{ direction:rtl; }
:root[dir="rtl"] .rl-row > div, :root[dir="rtl"] .rl-header > div{ border-right:0; border-left:1px solid var(--line); }
:root[dir="rtl"] .rl-row > div:last-child, :root[dir="rtl"] .rl-header > div:last-child{ border-left:0; }

/* ============ Responsive ============ */
@media (max-width:1000px){
  .about-grid, .reviews-grid, .location-grid, .booking-grid{ grid-template-columns:1fr; }
  .booking-summary{ position:static; }
  .direct-booking-panel{ grid-template-columns:1fr; }
  .direct-booking-copy{ min-height:0; }
  .rl-layout{ grid-template-columns:1fr; }
  .rl-reserve-all{ position:static; }
  .room-rows{ grid-template-columns:repeat(2,minmax(0,1fr)); }
  .room-row, .room-row.reverse{ grid-template-columns:1fr; }
  .room-row.reverse .room-row-media, .room-row.reverse .room-row-body{ order:initial; }
  .stats-row{ grid-template-columns:1fr 1fr; row-gap:28px; }
  .stat:nth-child(3){ border-left:none; padding-left:0; }
  .amenity-row{ grid-template-columns:1fr; gap:8px; }
  .bento{ grid-template-columns:repeat(4,1fr); }
  .gallery .bento{ column-count:2; }
  .amenities-home-grid{ grid-template-columns:1fr; gap:32px; }
  .amenities-home-media{ aspect-ratio:16/9; }
  .search-widget{ grid-template-columns:1fr 1fr; }
  .sw-field{ border-right:0; border-bottom:1px solid var(--line); }
  .sw-submit{ grid-column:1 / -1; padding:16px; margin-left:0; margin-top:8px; }
  .reserve-panel-inner{ grid-template-columns:1fr; }
}

@media (max-width:1120px){
  .main-nav{ display:none; }
  .menu-btn{ display:block; }
  .site-header .btn.btn-pill{ display:none; }
  .header-inner{ display:flex; gap:20px; }
  .header-right{ margin-left:auto; gap:12px; }
  .header-right::before{ display:none; }
}

@media (max-width:760px){
  section{ padding:64px 20px; }
  /* The hero's own "Reserve Online" / "Call to Book" buttons duplicated
     the persistent "Reserve Now" bar that's already on screen the whole
     time on mobile - drop them there rather than showing "Reserve"
     twice (plus a phone-call option that's no longer the priority). */
  .hero-cta{ display:none; }
  .hero-sub{ display:none; }
  /* The homepage's three room "teaser" cards each repeated a full
     description plus the same three tags (Ensuite/TV/WiFi) - on
     mobile that's a lot of near-identical text before you even reach
     the full listing at /rooms, which is what these link to anyway.
     Scoped to #rooms (homepage only) - the actual /rooms page keeps
     its descriptions and tags, since that's where people compare. */
  #rooms .room-desc, #rooms .room-tags{ display:none; }
  /* Second About paragraph is supplementary (nearby landmarks) -
     drop it on mobile and keep just the opening paragraph. */
  .about-body p:nth-of-type(2){ display:none; }
  /* Trimming the copy above left sections feeling sparse on a phone
     screen - scale the remaining headlines/body text up instead of
     leaving the extra room empty, so each section still reads as full. */
  .hero{ height:100svh; min-height:640px; }
  .hero:not(.hero--page) .hero-inner{ padding:126px 22px 108px; justify-content:center; }
  .hero-title{ font-size:2.15rem; line-height:1.12; max-width:100%; }
  .hero-eyebrow{ font-size:.72rem; line-height:1.35; }
  .hero-media--building img{
    object-position:center 45%;
  }
  .hero--page{ height:clamp(320px,52svh,410px); min-height:0; }
  .hero--page .hero-media{ left:0; }
  .hero--page .hero-scrim{ background:linear-gradient(90deg, rgba(18,20,23,.82) 0%, rgba(18,20,23,.5) 58%, rgba(18,20,23,.2) 100%); }
  .hero--page .hero-inner{ padding:96px 22px 36px; justify-content:flex-end; }
  .hero--page .hero-title{ font-size:clamp(2rem,9vw,2.7rem); max-width:17ch; }
  section > h2{ font-size:2.3rem; }
  /* .rooms-title and .cta-title carry their own font-size rules (more
     specific than the bare "section > h2" above), so they need their
     own mobile bump to actually pick up the larger size. */
  .rooms-title, .cta-title{ font-size:2.3rem; }
  .about-lead{ font-size:1.9rem; }
  .about-body p{ font-size:1.15rem; line-height:1.65; }
  .room-row-body h3{ font-size:1.75rem; }
  .room-gallery-strip{ right:8px; bottom:8px; gap:6px; padding:6px; }
  .room-gallery-strip img{ width:48px; height:38px; }
  .room-photo-more{ min-width:38px; height:38px; font-size:.78rem; }
  /* Logo + EN pill + theme toggle + Reserve + hamburger together don't
     fit a phone-width header - without flex-shrink:0 (added above) the
     logo would get crushed to a sliver trying to make room. Reserve is
     redundant with the persistent "Call to book" mobile bar, and the
     language switcher only needs its icon here, not the "EN" label. */
  .logo{ padding-right:10px; }
  .logo-img, .site-header.solid .logo-img{ height:29px; }
  .lang-switch-toggle{ width:34px; height:34px; padding:0; justify-content:center; }
  .lang-switch-toggle #langCurrent{ display:none; }
  .theme-toggle{ width:34px; height:34px; }
  .header-right{ gap:8px; }
  .header-inner{ gap:10px; }
  .site-header{ top:0; left:0; right:0; border-radius:0; }
  .site-header.solid{ top:0; }
  .nav-row{ padding:14px 20px; }
  .site-header.solid .nav-row{ padding:11px 20px; }
  .form-row.two-col{ grid-template-columns:1fr; }
  .booking-form{ padding:24px; }
  .footer-cols{ gap:36px; }
  .footer-cols > div{ flex:1 1 100%; }
  .footer-bottom{ justify-content:center; text-align:center; }
  .hero-cta{ flex-direction:column; align-items:stretch; }
  .bento{ grid-template-columns:repeat(2,1fr); grid-auto-rows:150px; }
  .bento .g-big, .bento .g-wide, .bento .g-tall, .bento .g-norm{ grid-column:span 1; grid-row:span 1; }
  .gallery .bento{ column-count:1; column-gap:0; }
  .gallery .bento img{ margin-bottom:14px; }
  .mobile-bar{ display:block; }
  .testimonial-slider{ padding:28px 22px; }
  .cta{ padding-top:70px; padding-bottom:90px; }
  .search-widget{ grid-template-columns:1fr; }
  .search-widget-wrap.overlap{ margin-top:-20px; }
  .direct-booking-section{ padding-top:0; }
  .direct-booking-copy, .direct-booking-card{ padding:24px; }
  .direct-booking-features{ grid-template-columns:1fr; }
  .direct-booking-features span{ min-height:0; }
  .direct-booking-summary div{ align-items:flex-start; }
  .sw-field{ border-right:0; border-bottom:1px solid var(--line); }
  .sw-field:nth-child(2){ margin-bottom:0; }
  .sw-field:not(.has-date) input[type="date"]{ color:transparent; }
  .sw-field:not(.has-date) input[type="date"]::-webkit-datetime-edit{ color:transparent; }
  .date-placeholder{
    display:block; position:absolute; left:20px; top:43px; pointer-events:none;
    color:var(--ink-soft); font-family:var(--ff-body); font-size:1.08rem; font-weight:600; line-height:1.35;
  }
  .sw-field.has-date .date-placeholder{ display:none; }
  /* Keep the stay length attached to check-out in the mobile stack instead
     of absolutely positioning it over the occupancy control. */
  .sw-nights{ position:relative; left:auto; top:auto; width:max-content; margin:8px 0 0; }
  .sw-nights.visible{ display:flex; }
  .sw-nights:not(.visible){ display:none; }
  .guests-dropdown{ width:100%; left:0; right:0; }
  .menu-overlay{ width:100%; padding:0 32px; }
  .menu-overlay.open ~ .site-header{ width:100%; border-left:0; }
  .room-rows{ grid-template-columns:1fr; gap:18px; }
  .room-row-body{ padding:18px; }
  .room-row-foot{ align-items:flex-start; flex-direction:column; }

  .rl-table{ border:0; background:none; }
  .rl-header{ display:none; }
  .rl-row{ grid-template-columns:1fr; border:1px solid var(--line); border-radius:14px; margin-bottom:16px; background:var(--surface); }
  .rl-row > div{ border-right:0; border-top:1px solid var(--line); padding:16px; }
  .rl-row > div:first-child{ border-top:0; }
  .rl-col-guests::before, .rl-col-price::before, .rl-col-choices::before, .rl-col-select::before{
    content:attr(data-label); display:block; font-size:.68rem; font-weight:700; text-transform:uppercase; letter-spacing:.06em; color:var(--ink-soft); margin-bottom:8px;
  }
}

/* ============ Chatbot ============ */
.chatbot{ position:fixed; right:24px; bottom:24px; z-index:260; }
.chatbot-toggle{
  position:relative; width:58px; height:58px; border-radius:50%; border:none; cursor:pointer;
  background:var(--surface); color:var(--accent); border:1px solid var(--accent);
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 10px 30px rgba(var(--shadow-rgb),.2); transition:transform .25s var(--ease), background .2s, color .2s;
}
.chatbot-toggle::before{
  content:''; position:absolute; inset:-3px; border-radius:50%; background:var(--accent);
  opacity:.16; animation:chatbotPulse 2.6s ease-out infinite; z-index:-1;
}
.chatbot-toggle::after{
  content:'Ask Hotel 261'; position:absolute; right:calc(100% + 10px); top:50%;
  transform:translateY(-50%) translateX(4px); padding:6px 9px; border-radius:5px;
  background:var(--ink); color:#fff; font:600 .72rem/1 var(--ff-body); white-space:nowrap;
  opacity:0; pointer-events:none; transition:opacity .2s ease, transform .2s ease;
}
.chatbot-toggle:hover{ background:var(--accent); color:#fff; transform:translateY(-2px); }
.chatbot-toggle:hover::after{ opacity:1; transform:translateY(-50%) translateX(0); }
.chatbot-toggle.open::before{ animation:none; opacity:0; }
.chatbot-toggle.open{ background:var(--ink); color:#fff; border-color:var(--ink); }
.chatbot-toggle svg{ width:28px; height:28px; fill:none; stroke:currentColor; stroke-width:1.7; stroke-linecap:round; stroke-linejoin:round; }
.chatbot-toggle .chatbot-icon-close{ width:22px; height:22px; }
.chatbot-toggle .chatbot-icon-close{ display:none; }
.chatbot-toggle.open .chatbot-icon-chat{ display:none; }
.chatbot-toggle.open .chatbot-icon-close{ display:block; }
@keyframes chatbotPulse{
  0%{ transform:scale(1); opacity:.5; }
  100%{ transform:scale(1.6); opacity:0; }
}
@media (prefers-reduced-motion: reduce){
  .chatbot-toggle::before{ animation:none; opacity:0; }
}
.chatbot-badge{
  position:absolute; top:-2px; right:-2px; width:12px; height:12px; border-radius:50%;
  background:var(--accent); border:2px solid var(--paper);
}

.chatbot-panel{
  position:absolute; right:0; bottom:72px; width:360px; max-width:calc(100vw - 32px);
  height:min(520px, 70vh); background:var(--surface); border:1px solid var(--line); border-radius:16px;
  box-shadow:0 24px 60px rgba(var(--shadow-rgb),.28); display:flex; flex-direction:column; overflow:hidden;
  opacity:0; transform:translateY(12px) scale(.98); pointer-events:none; transition:opacity .22s var(--ease), transform .22s var(--ease);
}
.chatbot-panel.open{ opacity:1; transform:translateY(0) scale(1); pointer-events:auto; }
.chatbot-head{ display:flex; align-items:center; justify-content:space-between; padding:16px 18px; background:var(--accent-2); color:#fff; flex-shrink:0; }
.chatbot-title{ font-family:var(--ff-display); font-weight:600; font-size:1.02rem; margin:0; }
.chatbot-sub{ font-size:.78rem; opacity:.85; margin:2px 0 0; }
.chatbot-close{ background:none; border:none; color:#fff; font-size:1.5rem; line-height:1; cursor:pointer; padding:4px; opacity:.9; }
.chatbot-close:hover{ opacity:1; }
.chatbot-messages{ flex:1; overflow-y:auto; padding:16px; display:flex; flex-direction:column; gap:10px; }
.chatbot-msg{ max-width:84%; padding:10px 14px; border-radius:14px; font-size:.87rem; line-height:1.5; }
.chatbot-msg a{ color:inherit; font-weight:600; text-decoration:underline; }
.chatbot-msg.bot{ align-self:flex-start; background:var(--paper-2); color:var(--ink); border-bottom-left-radius:4px; }
.chatbot-msg.user{ align-self:flex-end; background:var(--accent-2); color:#fff; border-bottom-right-radius:4px; }
.chatbot-quick-replies{ display:flex; flex-wrap:wrap; gap:8px; padding:0 16px 12px; flex-shrink:0; }
.chatbot-chip{ border:1px solid var(--line); background:var(--paper); color:var(--ink); border-radius:999px; padding:6px 12px; font-size:.78rem; cursor:pointer; transition:background .15s, border-color .15s, color .15s; font-family:var(--ff-body); }
.chatbot-chip:hover{ border-color:var(--accent-2); color:var(--accent-2); }
.chatbot-form{ display:flex; gap:8px; padding:12px; border-top:1px solid var(--line); background:var(--surface); flex-shrink:0; }
.chatbot-form input{ flex:1; min-width:0; border:1px solid var(--line); border-radius:999px; padding:9px 14px; font-family:var(--ff-body); font-size:.85rem; background:var(--paper); color:var(--ink); }
.chatbot-form input:focus{ outline:none; border-color:var(--accent-2); }
.chatbot-send{ width:38px; height:38px; border-radius:50%; border:none; background:var(--accent-2); color:#fff; cursor:pointer; display:flex; align-items:center; justify-content:center; flex-shrink:0; transition:background .15s; }
.chatbot-send:hover{ background:var(--accent-2-light); }
.chatbot-send svg{ width:16px; height:16px; fill:none; stroke:currentColor; stroke-width:2; }
.chatbot-typing{ align-self:flex-start; display:flex; gap:4px; padding:12px 14px; background:var(--paper-2); border-radius:14px; border-bottom-left-radius:4px; }
.chatbot-typing span{ width:6px; height:6px; border-radius:50%; background:var(--ink-soft); opacity:.5; animation:chatbotTyping 1s infinite ease-in-out; }
.chatbot-typing span:nth-child(2){ animation-delay:.15s; }
.chatbot-typing span:nth-child(3){ animation-delay:.3s; }
@keyframes chatbotTyping{ 0%,60%,100%{ transform:translateY(0); opacity:.4; } 30%{ transform:translateY(-4px); opacity:1; } }

@media (max-width:760px){
  .chatbot{ right:16px; bottom:84px; }
}
@media (max-width:600px){
  .chatbot-panel{ width:calc(100vw - 32px); }
}

/* ============ Sitewide finish ============ */
/* Keep the shared pages on one visual rhythm. The content stays page-specific;
   these rules only unify spacing, surfaces, and interaction weight. */
.about[style*="padding-top"],
.rooms[style*="padding-top"],
.gallery[style*="padding-top"],
.reviews[style*="padding-top"],
.location[style*="padding-top"]{
  padding-top:76px !important;
}
.amenities[style*="padding-top"]{ padding-top:70px !important; }
.section-head{ padding-bottom:14px; border-bottom:1px solid var(--line); }
.section-label{ color:var(--ink); }
.text-link.link-arrow{ border-radius:5px; }
.btn{ border-radius:5px; }
.room-row,
.booking-form,
.testimonial-slider,
.location-map,
.direct-booking-copy,
.direct-booking-card{
  border-radius:8px;
  box-shadow:0 10px 28px rgba(var(--shadow-rgb),.07);
}
.room-row{ transition:transform .25s var(--ease), box-shadow .25s ease; }
.room-row:hover{ transform:translateY(-3px); box-shadow:0 16px 34px rgba(var(--shadow-rgb),.12); }
.room-tags span{ border-radius:4px; }
.booking-form{ box-shadow:0 12px 32px rgba(var(--shadow-rgb),.08); }
.booking-summary{ border:1px solid var(--line); box-shadow:0 12px 32px rgba(var(--shadow-rgb),.06); }
.location-map{ box-shadow:0 14px 36px rgba(var(--shadow-rgb),.1); }
.review-cta{ border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.cta{ border-top:1px solid rgba(255,255,255,.08); }
.site-footer{ padding-top:64px; }
.site-footer{
  background:#151719;
  color:#f6f7f5;
  border-top:1px solid rgba(255,255,255,.08);
}
.site-footer .logo{ color:#f6f7f5; }
.site-footer .logo-light{ display:none; }
.site-footer .logo-dark{ display:block; }
.site-footer .footer-tagline,
.site-footer .footer-cols a,
.site-footer .footer-cols p,
.site-footer .footer-bottom{ color:rgba(246,247,245,.68); }
.site-footer .footer-cols h5{ color:rgba(246,247,245,.48); }
.site-footer .footer-cols a:hover{ color:var(--accent-light); }
.site-footer .footer-line .icon{ color:var(--accent-light); }
.site-footer .footer-top,
.site-footer .footer-bottom{ border-color:rgba(255,255,255,.13); }
.chatbot-panel{ border-radius:8px; }
.chatbot-msg, .chatbot-typing{ border-radius:8px; }
.chatbot-chip{ border-radius:5px; }
.chatbot-form input{ border-radius:6px; }

@media (max-width:760px){
  .about[style*="padding-top"],
  .rooms[style*="padding-top"],
  .gallery[style*="padding-top"],
  .reviews[style*="padding-top"],
  .location[style*="padding-top"],
  .amenities[style*="padding-top"]{
    padding-top:56px !important;
  }
  .section-head{ margin-bottom:24px; padding-bottom:12px; }
  .room-row:hover{ transform:none; }
  .direct-booking-copy,
  .direct-booking-card,
  .booking-form,
  .testimonial-slider{ box-shadow:0 8px 22px rgba(var(--shadow-rgb),.07); }
  .site-footer{ padding-top:48px; }
}

/* Footer composition */
.site-footer{
  background:#1b1e1e;
  padding:0 28px;
}
.footer-top{
  display:grid;
  grid-template-columns:minmax(250px,.82fr) minmax(0,1.65fr);
  gap:88px;
  padding:64px 0 54px;
}
.footer-brand{
  max-width:320px;
  padding:4px 34px 12px 0;
  border-right:1px solid rgba(255,255,255,.16);
}
.footer-top .logo-img{ height:54px; width:auto; }
.footer-tagline{ max-width:270px; margin-top:22px; line-height:1.75; }
.footer-cols{
  display:grid;
  grid-template-columns:repeat(3,minmax(120px,1fr));
  gap:48px;
}
.footer-cols > div{ min-width:0; }
.footer-cols h5{ display:flex; align-items:center; gap:10px; margin-bottom:20px; color:#fff; }
.footer-cols h5::before{ display:none; }
.footer-cols a, .footer-cols p{ line-height:1.6; margin-bottom:13px; }
.footer-cols > div:first-child .footer-line:first-of-type{ margin-bottom:16px; }
.footer-cols > div:first-child a[href^="mailto:"]{ color:#fff; font-weight:600; }
.footer-bottom{ padding:20px 0; }
.footer-bottom p{ margin:0; }

@media (max-width:760px){
  .site-footer{ padding:0 20px; }
  .footer-top{ grid-template-columns:1fr; gap:38px; padding:48px 0 34px; }
  .footer-brand{ max-width:340px; padding:0 0 28px; border-right:0; border-bottom:1px solid rgba(255,255,255,.16); }
  .footer-top .logo-img{ height:48px; }
  .footer-cols{ grid-template-columns:repeat(2,minmax(0,1fr)); gap:32px 24px; }
  .footer-cols > div:first-child{ grid-column:1 / -1; }
  .footer-cols > div:first-child .footer-line{ max-width:340px; }
  .footer-bottom{ align-items:flex-start; flex-direction:column; gap:8px; }
}

/* Header finish */
.site-header{
  top:0; left:0; right:0; max-width:none; border-radius:0;
  border-width:0 0 1px; box-shadow:0 8px 24px rgba(var(--shadow-rgb),.08);
}
.site-header.solid{ top:0; box-shadow:0 8px 24px rgba(var(--shadow-rgb),.12); }
.nav-row{ padding:12px 24px; }
.site-header.solid .nav-row{ padding:10px 24px; }
.header-inner{ max-width:1280px; }
.logo{ border-right:0; padding-right:0; }
.header-right::before{ display:none; }
.main-nav{ gap:2px; }
.main-nav a{ padding:9px 12px; border-color:transparent; }
.main-nav a:hover,
.main-nav a.active{ background:transparent; border-color:transparent; box-shadow:none; }
.main-nav a:hover{ color:var(--accent); }
.main-nav a.active{ color:var(--accent); }
.btn.btn-pill{ box-shadow:none; }
.btn.btn-pill:hover{ box-shadow:0 6px 14px rgba(161,64,44,.2); }

/* Contact form */
.contact-form{
  margin-top:64px; padding:32px; background:var(--surface);
  border:1px solid var(--line); border-radius:8px;
}
.contact-form-head{ margin-bottom:28px; }
.contact-form-grid{ display:grid; grid-template-columns:1fr 1fr; gap:0 20px; }
.contact-form .form-row{ margin-bottom:18px; }
.contact-form label{ display:block; margin-bottom:8px; color:var(--ink-soft); font-size:.78rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase; }
.contact-form label span{ font-weight:500; text-transform:none; letter-spacing:0; }
.contact-form input,
.contact-form textarea{
  width:100%; padding:13px 14px; border:1px solid var(--line); border-radius:5px;
  background:var(--paper); color:var(--ink); font:inherit; resize:vertical;
}
.contact-form input:focus,
.contact-form textarea:focus{ outline:none; border-color:var(--accent); box-shadow:0 0 0 3px rgba(161,64,44,.1); }
.contact-form-actions{ display:flex; align-items:center; gap:18px; flex-wrap:wrap; }
.contact-form-actions .form-note{ margin:0; text-align:left; }
.success-text{ color:var(--accent-2) !important; }
.error-text{ color:#b3261e !important; }
.contact-trap{ position:absolute; left:-10000px; width:1px; height:1px; overflow:hidden; }

@media (max-width:760px){
  .contact-form{ margin-top:42px; padding:24px; }
  .contact-form-grid{ grid-template-columns:1fr; }
  .contact-form-actions{ align-items:flex-start; flex-direction:column; gap:10px; }
}

@media (max-width:760px){
  .nav-row{ padding:12px 20px; }
  .site-header.solid .nav-row{ padding:10px 20px; }
  .main-nav{ gap:0; }
  .main-nav a{ padding-inline:9px; }

  .hero--page{ height:250px; }
  .hero--page .hero-inner{ padding:92px 28px 24px; }
}
