/* ============================================================
   Mantralayam Rooms — style.css
   Tokens are overridden at runtime from site-data.json (theme)
   ============================================================ */

:root {
  --c-primary: #063B78;
  --c-primary-light: #084D92;
  --c-primary-deep: #052E5E;
  --c-secondary: #D89B12;
  --c-secondary-light: #E7AF29;
  --c-bg: #F7F9FC;
  --c-surface: #FFFFFF;
  --c-heading: #102033;
  --c-body: #334155;
  --c-muted: #64748B;
  --c-button: #063B78;
  --c-line: #E3E9F1;
  --c-line-strong: #CBD5E1;
  --c-success: #1B8A4F;
  --c-whatsapp: #25D366;
  --c-whatsapp-dark: #128C4A;

  --radius: 14px;
  --radius-sm: 8px;
  --radius-btn: 10px;
  --shadow: 0 10px 30px -14px rgba(6, 59, 120, 0.22);
  --shadow-hover: 0 22px 40px -18px rgba(6, 59, 120, 0.32);
  --shadow-soft: 0 1px 2px rgba(16, 32, 51, 0.05), 0 6px 18px -10px rgba(16, 32, 51, 0.12);

  --font-heading: "Manrope", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --container: 1180px;
  --gutter: clamp(18px, 4vw, 40px);
  --section-y: clamp(56px, 8vw, 104px);
  --header-h: 78px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 180ms;
  --t-med: 260ms;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-body);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; display: block; }
img { height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }
a { color: var(--c-primary); text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--c-heading); line-height: 1.15; margin: 0; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.05rem, 4.6vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.1vw, 2.35rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.35rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
:focus-visible { outline: 3px solid var(--c-secondary); outline-offset: 3px; border-radius: 4px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: 12px; top: -60px; background: var(--c-primary); color: #fff; padding: 10px 16px; border-radius: 8px; z-index: 2000; }
.skip-link:focus { top: 12px; }

.container { width: min(100% - var(--gutter) * 2, var(--container)); margin-inline: auto; }
.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(40px, 5vw, 64px); }
.section--surface { background: var(--c-surface); }
.section-head { max-width: 640px; margin-bottom: clamp(28px, 4vw, 48px); }
.section-head--center { margin-inline: auto; text-align: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--c-primary); font-weight: 600; font-size: 0.9rem; margin-bottom: 12px; }
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--c-secondary); border-radius: 2px; }
.section-head--center .eyebrow::after { content: ""; width: 22px; height: 2px; background: var(--c-secondary); border-radius: 2px; }
.section-head p { color: var(--c-muted); margin-top: 12px; font-size: 1.05rem; }
.section-head--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; max-width: none; }
.section-head--row > div { max-width: 640px; }

/* ---------- Icons ---------- */
.icon { width: 1.25em; height: 1.25em; flex: 0 0 auto; stroke: currentColor; fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.icon--sm { width: 1em; height: 1em; }
.icon--lg { width: 1.6em; height: 1.6em; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 48px; padding: 0 22px; border-radius: var(--radius-btn);
  font-weight: 600; font-size: 0.97rem; line-height: 1; white-space: nowrap;
  border: 1.5px solid transparent;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), background-color var(--t-fast), color var(--t-fast), border-color var(--t-fast);
  will-change: transform;
}
.btn .icon { transition: transform var(--t-fast) var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn:hover .icon--arrow { transform: translateX(3px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--c-button); color: #fff; box-shadow: 0 8px 18px -10px rgba(6, 59, 120, 0.55); }
.btn--primary:hover { background: var(--c-primary-light); box-shadow: 0 14px 26px -12px rgba(6, 59, 120, 0.6); }
.btn--gold { background: var(--c-secondary); color: #1a1405; box-shadow: 0 8px 18px -10px rgba(216, 155, 18, 0.6); }
.btn--gold:hover { background: var(--c-secondary-light); }
.btn--whatsapp { background: var(--c-whatsapp-dark); color: #fff; box-shadow: 0 8px 18px -10px rgba(18, 140, 74, 0.6); }
.btn--whatsapp:hover { background: #0f7a40; }
.btn--outline { background: transparent; color: var(--c-primary); border-color: var(--c-primary); }
.btn--outline:hover { background: rgba(6, 59, 120, 0.06); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.55); }
.btn--outline-light:hover { background: rgba(255, 255, 255, 0.1); border-color: #fff; }
.btn--ghost { color: var(--c-primary); padding-inline: 10px; }
.btn--ghost:hover { background: rgba(6, 59, 120, 0.06); transform: none; }
.btn--sm { min-height: 40px; padding: 0 16px; font-size: 0.9rem; }
.btn--lg { min-height: 54px; padding: 0 28px; font-size: 1.02rem; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: 0.6; pointer-events: none; }
.btn-group { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Badges / chips ---------- */
.badge { display: inline-flex; align-items: center; gap: 6px; padding: 5px 10px; border-radius: 999px; font-size: 0.78rem; font-weight: 600; line-height: 1; }
.badge--navy { background: rgba(6, 59, 120, 0.08); color: var(--c-primary); }
.badge--gold { background: rgba(216, 155, 18, 0.14); color: #8a6208; }
.badge--green { background: rgba(27, 138, 79, 0.12); color: var(--c-success); }
.badge--muted { background: #eef2f7; color: var(--c-muted); }
.badge--sample { background: #fff3cd; color: #7a5200; border: 1px dashed #d9b04f; }
.chip { display: inline-flex; align-items: center; gap: 7px; padding: 7px 12px; border-radius: 999px; background: var(--c-surface); border: 1px solid var(--c-line); font-size: 0.86rem; color: var(--c-body); }
.chip .icon { color: var(--c-primary); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: background-color var(--t-med), box-shadow var(--t-med), border-color var(--t-med), transform var(--t-med) var(--ease);
}
.site-header.is-scrolled { background: rgba(255, 255, 255, 0.97); border-bottom-color: var(--c-line); box-shadow: 0 8px 24px -18px rgba(6, 59, 120, 0.35); }
body.has-hero .site-header:not(.is-scrolled) { background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; }
.site-header__inner { display: flex; align-items: center; gap: 24px; min-height: var(--header-h); }

.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--c-heading); flex: 0 0 auto; }
.brand__logo { width: var(--logo-w, 52px); height: auto; }
.brand__logo img { width: 100%; }
.brand__text { display: flex; flex-direction: column; line-height: 1; font-family: var(--font-heading); }
.brand__text b { font-weight: 800; font-size: 1.05rem; letter-spacing: 0.01em; color: var(--c-primary); }
.brand__text span { font-weight: 700; font-size: 0.72rem; letter-spacing: 0.32em; color: var(--c-secondary); margin-top: 3px; }

.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav a {
  position: relative; display: inline-flex; align-items: center; padding: 10px 13px; white-space: nowrap;
  font-weight: 500; font-size: 0.95rem; color: var(--c-heading); border-radius: 8px;
  transition: color var(--t-fast), background-color var(--t-fast);
}
.nav a::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 6px; height: 2px;
  background: var(--c-secondary); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform 220ms var(--ease);
}
.nav a:hover { color: var(--c-primary); }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav a[aria-current="page"] { color: var(--c-primary); font-weight: 600; }

.header-actions { display: flex; align-items: center; gap: 10px; }
.header-phone { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 10px; border: 1.5px solid var(--c-line-strong); color: var(--c-primary); transition: all var(--t-fast); }
.header-phone:hover { border-color: var(--c-primary); background: rgba(6, 59, 120, 0.06); }
.menu-toggle { display: none; width: 46px; height: 46px; border-radius: 10px; border: 1.5px solid var(--c-line-strong); color: var(--c-heading); align-items: center; justify-content: center; }

/* Drawer */
.drawer-backdrop { position: fixed; inset: 0; background: rgba(5, 25, 52, 0.55); opacity: 0; visibility: hidden; transition: opacity var(--t-med), visibility var(--t-med); z-index: 950; }
.drawer {
  position: fixed; top: 0; right: 0; height: 100dvh; width: min(360px, 88vw);
  background: var(--c-surface); z-index: 960; display: flex; flex-direction: column;
  transform: translateX(104%); visibility: hidden; transition: transform 320ms var(--ease), visibility 0s 320ms;
  box-shadow: -20px 0 50px -30px rgba(0, 0, 0, 0.4);
}
body.drawer-open .drawer { transform: translateX(0); visibility: visible; transition: transform 320ms var(--ease), visibility 0s; }
body.drawer-open .drawer-backdrop { opacity: 1; visibility: visible; }
body.drawer-open { overflow: hidden; }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 16px 18px; border-bottom: 1px solid var(--c-line); }
.drawer__close { width: 42px; height: 42px; border-radius: 10px; display: grid; place-items: center; color: var(--c-heading); border: 1.5px solid var(--c-line); }
.drawer__nav { padding: 12px 10px; flex: 1; overflow-y: auto; }
.drawer__nav a { display: flex; align-items: center; justify-content: space-between; padding: 14px 12px; border-radius: 10px; font-weight: 500; color: var(--c-heading); font-size: 1.02rem; transition: background-color var(--t-fast); }
.drawer__nav a:hover, .drawer__nav a[aria-current="page"] { background: rgba(6, 59, 120, 0.06); color: var(--c-primary); }
.drawer__nav a .icon { color: var(--c-muted); }
.drawer__foot { padding: 16px 18px 20px; border-top: 1px solid var(--c-line); display: grid; gap: 10px; }
.drawer__addr { font-size: 0.86rem; color: var(--c-muted); line-height: 1.5; display: flex; gap: 8px; }
.drawer__addr .icon { color: var(--c-secondary); margin-top: 3px; }

/* ---------- Animated logo mark ---------- */
.logo-mark { overflow: visible; }
.logo-mark .lm-pin { stroke: var(--c-primary); fill: none; stroke-width: 7.5; stroke-linecap: round; stroke-linejoin: round; }
.logo-mark .lm-building { fill: var(--c-primary); }
.logo-mark .lm-window { fill: #fff; }
.logo-mark .lm-door { fill: #fff; }
.logo-mark .lm-key { fill: var(--c-secondary); }
.logo-mark--anim .lm-pin { stroke-dasharray: 420; stroke-dashoffset: 420; animation: lm-draw 1.1s var(--ease) forwards; }
.logo-mark--anim .lm-building-g { opacity: 0; transform: translateY(6px); animation: lm-rise 600ms 500ms var(--ease) forwards; }
.logo-mark--anim .lm-key { animation: lm-glow 1.6s 900ms ease-out 1; }
.logo-mark--anim .lm-float { animation: lm-float 6s 2.4s ease-in-out infinite; }
.brand__text--anim b { opacity: 0; transform: translateX(-6px); animation: lm-slide 500ms 700ms var(--ease) forwards; }
.brand__text--anim span { opacity: 0; transform: translateX(-6px); animation: lm-slide 500ms 850ms var(--ease) forwards; }
@keyframes lm-draw { to { stroke-dashoffset: 0; } }
@keyframes lm-rise { to { opacity: 1; transform: translateY(0); } }
@keyframes lm-glow { 0% { filter: drop-shadow(0 0 0 rgba(231, 175, 41, 0)); } 40% { filter: drop-shadow(0 0 6px rgba(231, 175, 41, 0.9)); } 100% { filter: drop-shadow(0 0 0 rgba(231, 175, 41, 0)); } }
@keyframes lm-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-2px); } }
@keyframes lm-slide { to { opacity: 1; transform: translateX(0); } }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  margin-top: calc(var(--header-h) * -1); padding-top: calc(var(--header-h) + clamp(36px, 6vw, 80px));
  padding-bottom: clamp(120px, 14vw, 170px);
  background: linear-gradient(180deg, #EEF3F9 0%, var(--c-bg) 100%);
  color: var(--c-heading);
}
.hero__pattern { position: absolute; inset: 0; pointer-events: none; opacity: 0.55; }
.hero__inner { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 64px); align-items: center; position: relative; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; color: var(--c-primary); background: rgba(6, 59, 120, 0.07); border: 1px solid rgba(6, 59, 120, 0.12); padding: 8px 14px 8px 10px; border-radius: 999px; font-size: 0.9rem; margin-bottom: 20px; }
.hero__eyebrow .icon { color: var(--c-secondary); }
.hero h1 { max-width: 12ch; }
.hero__desc { font-size: clamp(1.02rem, 1.4vw, 1.15rem); color: var(--c-muted); max-width: 48ch; margin: 20px 0 28px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.hero__trust .chip { background: rgba(255, 255, 255, 0.85); }

.hero__visual { position: relative; min-height: 380px; }
.hero__illustration { position: absolute; inset: -8% -10% -6% -14%; width: 124%; height: 114%; max-width: none; pointer-events: none; }
.hero__photo {
  position: relative; z-index: 2; border-radius: 22px; overflow: hidden; aspect-ratio: 1 / 1.08;
  box-shadow: 0 30px 60px -28px rgba(6, 59, 120, 0.5); background: #dfe6ef;
  width: min(100%, 400px); margin-inline: auto;
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: var(--pos-x, 50%) var(--pos-y, 40%); }
.hero__photo::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35); border-radius: inherit; }
.hero__card {
  position: absolute; z-index: 3; left: -6px; bottom: 28px;
  background: var(--c-surface); border-radius: 14px; padding: 12px 14px; display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-hover); border: 1px solid var(--c-line);
  animation: card-in 700ms 600ms var(--ease) both;
}
.hero__card-icon { width: 42px; height: 42px; border-radius: 10px; background: rgba(216, 155, 18, 0.14); color: #8a6208; display: grid; place-items: center; }
.hero__card b { display: block; font-size: 0.92rem; color: var(--c-heading); }
.hero__card small { color: var(--c-muted); font-size: 0.8rem; }
.hero__card--top { left: 8px; right: auto; top: 26px; bottom: auto; animation-delay: 900ms; }
.hero__card:not(.hero__card--top) { left: auto; right: 8px; }
.hero__card--top .hero__card-icon { background: rgba(6, 59, 120, 0.08); color: var(--c-primary); }
@keyframes card-in { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

/* Hero illustration SVG animations */
.ill-line { stroke: var(--c-primary); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; opacity: 0.55; }
.ill-line--draw { stroke-dasharray: 1200; stroke-dashoffset: 1200; animation: ill-draw 2.2s 200ms var(--ease) forwards; }
.ill-window { fill: rgba(216, 155, 18, 0.16); }
.ill-window--glow { animation: ill-glow 4.5s 1.5s ease-in-out infinite; }
.ill-window--glow.d2 { animation-delay: 3.2s; }
.ill-key { transform-origin: center; animation: ill-key 5s 2s ease-in-out infinite; }
.ill-check { stroke: var(--c-success); stroke-width: 2.2; fill: none; stroke-dasharray: 40; stroke-dashoffset: 40; animation: ill-draw 700ms 1.9s var(--ease) forwards; }
.ill-pin-pulse { transform-origin: center; animation: ill-pulse 3.2s 2.2s ease-out infinite; }
.ill-dot { fill: var(--c-secondary); }
@keyframes ill-draw { to { stroke-dashoffset: 0; } }
@keyframes ill-glow { 0%, 100% { fill: rgba(216, 155, 18, 0.14); } 50% { fill: rgba(231, 175, 41, 0.55); } }
@keyframes ill-key { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }
@keyframes ill-pulse { 0% { transform: scale(0.6); opacity: 0.6; } 100% { transform: scale(1.6); opacity: 0; } }

/* ============================================================
   QUICK BOOKING BAR
   ============================================================ */
.qbook { position: relative; z-index: 5; margin-top: clamp(-96px, -9vw, -70px); }
.qbook__card { background: var(--c-surface); border-radius: 18px; box-shadow: var(--shadow-hover); border: 1px solid var(--c-line); padding: clamp(16px, 2.5vw, 24px); }
.qbook__head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.qbook__head .icon { color: var(--c-secondary); }
.qbook__head h2 { font-size: 1.15rem; }
.qbook__head p { color: var(--c-muted); font-size: 0.88rem; margin: 0; }
.qbook__grid { display: grid; grid-template-columns: 1.15fr 1.15fr 0.7fr 1.1fr 0.9fr auto; gap: 12px; align-items: end; }
.qbook__grid .btn { min-height: 50px; }

/* ---------- Form fields ---------- */
.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field label { font-size: 0.82rem; font-weight: 600; color: var(--c-heading); }
.field label .req { color: #c0392b; }
.field__control { position: relative; display: flex; align-items: center; }
.field__control > .icon { position: absolute; left: 12px; color: var(--c-muted); pointer-events: none; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 48px; padding: 10px 12px 10px 40px; border-radius: 10px;
  border: 1.5px solid var(--c-line-strong); background: #fff; color: var(--c-heading);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.field textarea { padding-left: 12px; min-height: 110px; resize: vertical; }
.field select { appearance: none; -webkit-appearance: none; padding-right: 36px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--c-primary); box-shadow: 0 0 0 4px rgba(6, 59, 120, 0.12); }
.field.is-invalid input, .field.is-invalid select { border-color: #c0392b; }
.field__error { font-size: 0.78rem; color: #c0392b; display: none; }
.field.is-invalid .field__error { display: block; }
.field--noicon input, .field--noicon select { padding-left: 12px; }
.seg { display: inline-flex; background: #eef2f7; border-radius: 10px; padding: 4px; gap: 4px; }
.seg label { flex: 1; position: relative; }
.seg input { position: absolute; opacity: 0; width: 1px; height: 1px; left: 0; top: 0; pointer-events: none; }
.seg span { display: flex; justify-content: center; align-items: center; min-height: 40px; padding: 0 14px; border-radius: 8px; font-weight: 600; font-size: 0.9rem; color: var(--c-muted); cursor: pointer; transition: all var(--t-fast); }
.seg input:checked + span { background: #fff; color: var(--c-primary); box-shadow: var(--shadow-soft); }
.seg input:focus-visible + span { outline: 3px solid var(--c-secondary); }
.stepper { display: flex; align-items: center; border: 1.5px solid var(--c-line-strong); border-radius: 10px; overflow: hidden; min-height: 48px; }
.stepper button { width: 44px; align-self: stretch; display: grid; place-items: center; color: var(--c-primary); transition: background var(--t-fast); }
.stepper button:hover { background: rgba(6, 59, 120, 0.06); }
.stepper input { flex: 1; min-width: 0; text-align: center; border: 0; padding: 0; min-height: auto; font-weight: 600; }
.stepper input:focus { box-shadow: none; }

/* ============================================================
   CARDS
   ============================================================ */
.card { background: var(--c-surface); border-radius: var(--radius); border: 1px solid var(--c-line); box-shadow: var(--shadow-soft); transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease), border-color var(--t-med); }
.card--hover:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: rgba(6, 59, 120, 0.18); }

/* Rooms grid */
.rooms-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); gap: clamp(18px, 2.5vw, 28px); }
.room-card { overflow: hidden; display: flex; flex-direction: column; }
.room-card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: #e8edf3; }
.room-card__media img { width: 100%; height: 100%; object-fit: cover; object-position: var(--pos-x, 50%) var(--pos-y, 50%); transition: transform 600ms var(--ease); }
.room-card:hover .room-card__media img { transform: scale(1.03); }
.room-card__badges { position: absolute; left: 14px; top: 14px; display: flex; gap: 8px; }
.room-card__badges .badge { background: rgba(255, 255, 255, 0.94); color: var(--c-primary); box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12); }
.room-card__body { padding: clamp(18px, 2.5vw, 24px); display: flex; flex-direction: column; gap: 14px; flex: 1; }
.room-card__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.room-card__cap { display: inline-flex; align-items: center; gap: 6px; color: var(--c-muted); font-size: 0.88rem; margin-top: 4px; }
.room-card__cap .icon { color: var(--c-primary); }
.room-card__price { text-align: right; }
.room-card__price small { display: block; font-size: 0.74rem; color: var(--c-muted); font-weight: 500; }
.room-card__price b { font-family: var(--font-heading); font-size: 1.35rem; color: var(--c-primary); font-weight: 700; }
.room-card__price b sub { font-size: 0.7rem; vertical-align: baseline; color: var(--c-muted); font-weight: 500; }
.tariff { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.tariff__item { border: 1px solid var(--c-line); border-radius: 10px; padding: 10px 12px; display: flex; flex-direction: column; gap: 2px; background: var(--c-bg); }
.tariff__item span { font-size: 0.75rem; color: var(--c-muted); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.tariff__item b { font-family: var(--font-heading); color: var(--c-heading); font-size: 1.15rem; }
.tariff__item--ac { border-color: rgba(216, 155, 18, 0.5); background: rgba(216, 155, 18, 0.06); }
.amenities { display: flex; flex-wrap: wrap; gap: 8px 14px; }
.amenities li { display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem; color: var(--c-body); }
.amenities li .icon { color: var(--c-primary); width: 1.1em; height: 1.1em; }
.room-card__actions { display: flex; gap: 10px; margin-top: auto; padding-top: 6px; }
.room-card__actions .btn { flex: 1; }
.room-card--unavailable .room-card__media::after { content: "Currently unavailable"; position: absolute; inset: auto 0 0; background: rgba(16, 32, 51, 0.8); color: #fff; font-size: 0.8rem; padding: 6px 12px; }

/* Why choose */
.why-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.why-card { padding: 26px 24px; display: flex; flex-direction: column; gap: 12px; position: relative; overflow: hidden; }
.why-card__icon { width: 50px; height: 50px; border-radius: 12px; display: grid; place-items: center; background: rgba(6, 59, 120, 0.07); color: var(--c-primary); transition: background var(--t-med), color var(--t-med); }
.why-card:hover .why-card__icon { background: var(--c-primary); color: #fff; }
.why-card p { color: var(--c-muted); font-size: 0.95rem; }

/* Property / Featured stay */
.property { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); overflow: hidden; }
.property__media { position: relative; min-height: 320px; background: #e8edf3; }
.property__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: var(--pos-x, 50%) var(--pos-y, 50%); }
.property__label { position: absolute; left: 18px; top: 18px; background: #fff; color: #8a6208; box-shadow: 0 2px 8px rgba(0,0,0,.15); }
.property__body { padding: clamp(22px, 3.5vw, 40px); display: flex; flex-direction: column; gap: 18px; }
.property__meta { display: flex; flex-wrap: wrap; gap: 10px 18px; color: var(--c-muted); font-size: 0.9rem; }
.property__meta li { display: inline-flex; align-items: center; gap: 7px; }
.property__meta .icon { color: var(--c-secondary); }
.property__rooms { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 10px; }
.property__room { border: 1px solid var(--c-line); border-radius: 10px; padding: 12px 14px; background: var(--c-bg); }
.property__room b { display: block; font-family: var(--font-heading); color: var(--c-heading); }
.property__room span { font-size: 0.82rem; color: var(--c-muted); }
.property__thumbs { display: flex; gap: 8px; }
.property__thumbs img { width: 62px; height: 52px; object-fit: cover; border-radius: 8px; border: 1px solid var(--c-line); }

/* Facilities strip */
.facilities-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.facility { display: flex; gap: 14px; align-items: flex-start; padding: 18px; }
.facility__icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(216, 155, 18, 0.12); color: #8a6208; display: grid; place-items: center; flex: 0 0 auto; }
.facility b { display: block; color: var(--c-heading); font-family: var(--font-heading); font-size: 0.98rem; }
.facility p { font-size: 0.86rem; color: var(--c-muted); margin: 2px 0 0; }

/* Lodge illustration section */
.lodge-section { background: var(--c-surface); overflow: hidden; }
.lodge-section__inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); gap: clamp(28px, 5vw, 64px); align-items: center; }
.lodge-steps { display: grid; gap: 14px; margin-top: 24px; counter-reset: step; }
.lodge-steps li { display: flex; gap: 14px; align-items: flex-start; }
.lodge-steps li::before { counter-increment: step; content: counter(step); width: 34px; height: 34px; border-radius: 50%; flex: 0 0 auto; display: grid; place-items: center; background: var(--c-primary); color: #fff; font-weight: 700; font-family: var(--font-heading); font-size: 0.9rem; }
.lodge-steps b { display: block; color: var(--c-heading); }
.lodge-steps span { color: var(--c-muted); font-size: 0.93rem; }
.lodge-svg { width: 100%; height: auto; }
.ls-wall { fill: #FFFFFF; stroke: var(--c-primary); stroke-width: 1.5; }
.ls-roof { fill: var(--c-primary); }
.ls-win { fill: #E8EEF6; stroke: var(--c-primary); stroke-width: 1; }
.ls-win--lit { animation: ls-lit 5s ease-in-out infinite; }
.ls-win--lit.d1 { animation-delay: 1.4s; }
.ls-win--lit.d2 { animation-delay: 2.8s; }
.ls-door { fill: var(--c-primary); }
.ls-door-glow { fill: rgba(231, 175, 41, 0.35); animation: ls-door 4s 1s ease-in-out infinite; }
.ls-gold { fill: var(--c-secondary); }
.ls-ground { stroke: var(--c-line-strong); stroke-width: 1.5; stroke-linecap: round; }
.ls-check { stroke: var(--c-success); stroke-width: 2.4; fill: none; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 30; stroke-dashoffset: 30; }
.is-visible .ls-check { animation: ill-draw 700ms 700ms var(--ease) forwards; }
.ls-pulse { fill: var(--c-secondary); transform-origin: center; transform-box: fill-box; animation: ill-pulse 3s 1.5s ease-out infinite; }
@keyframes ls-lit { 0%, 100% { fill: #E8EEF6; } 50% { fill: #F5D680; } }
@keyframes ls-door { 0%, 100% { opacity: 0.35; } 50% { opacity: 0.9; } }

/* Testimonials */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: 18px; }
.testi { padding: 26px; display: flex; flex-direction: column; gap: 14px; }
.testi .badge { align-self: flex-start; }
.testi__stars { display: flex; gap: 3px; color: var(--c-secondary); }
.testi__stars .icon { width: 1.05em; height: 1.05em; fill: currentColor; stroke: none; }
.testi p { color: var(--c-body); font-size: 0.97rem; }
.testi__who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testi__avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--c-primary); color: #fff; display: grid; place-items: center; font-weight: 700; font-family: var(--font-heading); }
.testi__who b { display: block; color: var(--c-heading); font-size: 0.95rem; }
.testi__who span { color: var(--c-muted); font-size: 0.82rem; }

/* Nearby */
.nearby-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); gap: 18px; }
.nearby-card { overflow: hidden; display: flex; flex-direction: column; }
.nearby-card__media { aspect-ratio: 16 / 10; background: linear-gradient(135deg, #E8EEF6, #D8E2EE); display: grid; place-items: center; color: var(--c-primary); overflow: hidden; }
.nearby-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease); }
.nearby-card:hover .nearby-card__media img { transform: scale(1.03); }
.nearby-card__body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.nearby-card__dist { display: inline-flex; align-items: center; gap: 6px; font-size: 0.84rem; color: var(--c-muted); }
.nearby-card p { color: var(--c-muted); font-size: 0.92rem; }
.nearby-card .btn { align-self: flex-start; margin-top: auto; }

/* Offers */
.offers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: 18px; }
.offer { padding: 26px; display: flex; flex-direction: column; gap: 12px; border-left: 4px solid var(--c-secondary); }
.offer__badges { display: flex; gap: 8px; flex-wrap: wrap; }
.offer p { color: var(--c-muted); }
.offer .btn { align-self: flex-start; margin-top: auto; }

/* FAQ */
.faq { display: grid; gap: 10px; max-width: 800px; margin-inline: auto; }
.faq__item { background: var(--c-surface); border: 1px solid var(--c-line); border-radius: 12px; overflow: hidden; transition: border-color var(--t-fast), box-shadow var(--t-fast); }
.faq__item[open], .faq__item:hover { border-color: rgba(6, 59, 120, 0.25); }
.faq__item[open] { box-shadow: var(--shadow-soft); }
.faq__q { display: flex; justify-content: space-between; align-items: center; gap: 14px; width: 100%; padding: 18px 20px; text-align: left; font-family: var(--font-heading); font-weight: 600; color: var(--c-heading); font-size: 1.02rem; }
.faq__q .icon { color: var(--c-primary); transition: transform 260ms var(--ease); }
.faq__item.is-open .faq__q .icon { transform: rotate(45deg); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 300ms var(--ease); }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p { padding: 0 20px 20px; color: var(--c-muted); }

/* CTA band */
.cta-band { background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-deep) 100%); color: #fff; border-radius: 22px; padding: clamp(28px, 4vw, 48px); display: grid; grid-template-columns: minmax(0, 1.4fr) auto; gap: 24px; align-items: center; position: relative; overflow: hidden; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, 0.78); margin-top: 8px; }
.cta-band::before { content: ""; position: absolute; right: -60px; top: -60px; width: 260px; height: 260px; border-radius: 50%; border: 40px solid rgba(255, 255, 255, 0.05); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero { background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-deep) 100%); color: #fff; padding: clamp(40px, 6vw, 72px) 0; position: relative; overflow: hidden; }
.page-hero h1 { color: #fff; font-size: clamp(1.9rem, 3.8vw, 2.8rem); }
.page-hero p { color: rgba(255, 255, 255, 0.8); margin-top: 10px; max-width: 60ch; font-size: 1.05rem; }
.page-hero__pattern { position: absolute; inset: 0; opacity: 0.35; pointer-events: none; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 0.85rem; color: rgba(255, 255, 255, 0.7); margin-bottom: 14px; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255, 255, 255, 0.85); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .icon { width: 0.9em; height: 0.9em; }

/* Content sections (about / policies) */
.content-section { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(24px, 4vw, 56px); align-items: center; padding-block: clamp(30px, 4vw, 48px); }
.content-section + .content-section { border-top: 1px solid var(--c-line); }
.content-section:nth-child(even) .content-section__media { order: -1; }
.content-section--noimg { grid-template-columns: minmax(0, 760px); }
.content-section__media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3; box-shadow: var(--shadow); }
.content-section__media img { width: 100%; height: 100%; object-fit: cover; }
.content-section h2 { margin-bottom: 12px; }
.content-section h3 { color: var(--c-muted); font-weight: 500; margin-bottom: 10px; }
.content-section p { color: var(--c-body); white-space: pre-line; }
.content-section .btn { margin-top: 18px; }
.prose { max-width: 760px; }
.prose h2 { margin: 28px 0 10px; font-size: 1.35rem; }
.prose p { white-space: pre-line; }

/* ============================================================
   GALLERY
   ============================================================ */
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.filters button { padding: 9px 16px; border-radius: 999px; border: 1.5px solid var(--c-line-strong); background: var(--c-surface); font-weight: 500; font-size: 0.9rem; color: var(--c-body); transition: all var(--t-fast); min-height: 40px; }
.filters button:hover { border-color: var(--c-primary); color: var(--c-primary); }
.filters button.is-active { background: var(--c-primary); border-color: var(--c-primary); color: #fff; }
.gallery { columns: 3; column-gap: 16px; }
.gallery__item { break-inside: avoid; margin-bottom: 16px; position: relative; border-radius: 12px; overflow: hidden; background: #e8edf3; display: block; width: 100%; cursor: zoom-in; }
.gallery__item img { width: 100%; height: auto; object-position: var(--pos-x, 50%) var(--pos-y, 50%); transition: transform 600ms var(--ease); }
.gallery__item:hover img { transform: scale(1.03); }
.gallery__item figcaption { position: absolute; inset: auto 0 0; padding: 30px 14px 12px; background: linear-gradient(to top, rgba(16, 32, 51, 0.75), transparent); color: #fff; font-size: 0.86rem; opacity: 0; transition: opacity var(--t-med); text-align: left; }
.gallery__item:hover figcaption, .gallery__item:focus-visible figcaption { opacity: 1; }
.gallery__item.is-hidden { display: none; }
.gallery__empty { color: var(--c-muted); text-align: center; padding: 40px; }

.lightbox { position: fixed; inset: 0; background: rgba(5, 20, 44, 0.94); z-index: 1200; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity var(--t-med), visibility var(--t-med); }
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__img { max-width: min(92vw, 1100px); max-height: 82vh; object-fit: contain; border-radius: 8px; box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5); }
.lightbox__caption { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); color: #fff; font-size: 0.92rem; background: rgba(0, 0, 0, 0.35); padding: 8px 14px; border-radius: 999px; max-width: 90vw; text-align: center; }
.lightbox__btn { position: absolute; width: 48px; height: 48px; border-radius: 50%; background: rgba(255, 255, 255, 0.12); color: #fff; display: grid; place-items: center; transition: background var(--t-fast); }
.lightbox__btn:hover { background: rgba(255, 255, 255, 0.24); }
.lightbox__close { top: 18px; right: 18px; }
.lightbox__prev { left: 14px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 14px; top: 50%; transform: translateY(-50%); }
.lightbox__count { position: absolute; top: 26px; left: 24px; color: rgba(255, 255, 255, 0.75); font-size: 0.85rem; }

/* ============================================================
   BOOKING PAGE
   ============================================================ */
.booking-layout { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(300px, 1fr); gap: clamp(20px, 3vw, 36px); align-items: start; }
.booking-form { padding: clamp(20px, 3vw, 32px); }
.booking-form h2 { font-size: 1.45rem; }
.booking-form > p { color: var(--c-muted); margin: 6px 0 22px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .field--full { grid-column: 1 / -1; }
.form-disclaimer { display: flex; gap: 10px; align-items: flex-start; background: rgba(216, 155, 18, 0.1); border: 1px solid rgba(216, 155, 18, 0.35); border-radius: 10px; padding: 12px 14px; font-size: 0.86rem; color: #6b4d05; margin-top: 18px; }
.form-disclaimer .icon { flex: 0 0 auto; margin-top: 2px; }
.form-actions { margin-top: 20px; display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.summary { position: sticky; top: calc(var(--header-h) + 16px); padding: 24px; }
.summary h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.summary h3 .icon { color: var(--c-secondary); }
.summary__rows { display: grid; gap: 0; border-top: 1px solid var(--c-line); }
.summary__row { display: flex; justify-content: space-between; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--c-line); font-size: 0.93rem; }
.summary__row span { color: var(--c-muted); }
.summary__row b { color: var(--c-heading); text-align: right; font-weight: 600; }
.summary__total { margin-top: 14px; background: rgba(6, 59, 120, 0.06); border-radius: 10px; padding: 14px; }
.summary__total small { display: block; color: var(--c-muted); font-size: 0.78rem; }
.summary__total b { font-family: var(--font-heading); font-size: 1.5rem; color: var(--c-primary); }
.summary__total em { display: block; font-style: normal; font-size: 0.76rem; color: #6b4d05; margin-top: 6px; }
.summary__hint { color: var(--c-muted); font-size: 0.85rem; margin-top: 12px; }
.summary__contact { margin-top: 18px; display: grid; gap: 8px; }
.summary__contact a { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 10px; border: 1px solid var(--c-line); color: var(--c-heading); font-weight: 500; font-size: 0.92rem; transition: all var(--t-fast); }
.summary__contact a:hover { border-color: var(--c-primary); background: rgba(6, 59, 120, 0.05); }
.summary__contact .icon { color: var(--c-primary); }

/* Booking overlay (summary review before redirect) */
.modal { position: fixed; inset: 0; z-index: 1100; display: flex; align-items: center; justify-content: center; padding: 16px; background: rgba(5, 20, 44, 0.6); opacity: 0; visibility: hidden; transition: opacity var(--t-med), visibility var(--t-med); }
.modal.is-open { opacity: 1; visibility: visible; }
.modal__card { background: var(--c-surface); border-radius: 18px; width: min(560px, 100%); max-height: 90dvh; overflow: auto; padding: 26px; box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.5); transform: translateY(14px); transition: transform var(--t-med) var(--ease); }
.modal.is-open .modal__card { transform: translateY(0); }
.modal__head { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 14px; }
.modal__head h3 { display: inline-flex; align-items: center; gap: 8px; }
.modal__head h3 .icon { color: var(--c-success); }
.modal__close { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; border: 1.5px solid var(--c-line); }
.modal__foot { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.modal__foot .btn { flex: 1; }
.modal--wide .modal__card { width: min(980px, 100%); padding: 0; }

/* Room detail (modal) */
.room-detail { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); }
.room-detail__gallery { background: #0f1c2e; display: flex; flex-direction: column; }
.room-detail__main { aspect-ratio: 4 / 3; overflow: hidden; }
.room-detail__main img { width: 100%; height: 100%; object-fit: cover; }
.room-detail__thumbs { display: flex; gap: 8px; padding: 10px; overflow-x: auto; }
.room-detail__thumbs button { flex: 0 0 auto; width: 72px; height: 56px; border-radius: 8px; overflow: hidden; border: 2px solid transparent; opacity: 0.65; transition: all var(--t-fast); }
.room-detail__thumbs button img { width: 100%; height: 100%; object-fit: cover; }
.room-detail__thumbs button.is-active, .room-detail__thumbs button:hover { opacity: 1; border-color: var(--c-secondary); }
.room-detail__body { padding: clamp(20px, 3vw, 32px); display: flex; flex-direction: column; gap: 16px; }
.room-detail__body p { color: var(--c-muted); }
.room-detail__close { position: absolute; top: 12px; right: 12px; z-index: 2; background: rgba(255, 255, 255, 0.92); }
.room-detail__actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: auto; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); gap: clamp(20px, 3vw, 36px); align-items: start; }
.contact-cards { display: grid; gap: 14px; }
.contact-card { padding: 20px 22px; display: flex; gap: 16px; align-items: flex-start; }
.contact-card__icon { width: 46px; height: 46px; border-radius: 12px; background: rgba(6, 59, 120, 0.07); color: var(--c-primary); display: grid; place-items: center; flex: 0 0 auto; }
.contact-card b { display: block; color: var(--c-heading); font-family: var(--font-heading); margin-bottom: 4px; }
.contact-card p, .contact-card a { color: var(--c-body); font-size: 0.95rem; }
.contact-card a { font-weight: 500; }
.contact-card address { font-style: normal; white-space: pre-line; }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--c-line); aspect-ratio: 16 / 9; background: #e8edf3; }
.map-embed iframe { width: 100%; height: 100%; border: 0; }
.map-placeholder { display: grid; place-items: center; height: 100%; color: var(--c-primary); text-align: center; padding: 20px; gap: 10px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { position: relative; background: var(--c-primary-deep); color: rgba(255, 255, 255, 0.78); overflow: hidden; padding-bottom: 20px; }
.site-footer::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 50% at 20% 0%, rgba(8, 77, 146, 0.6), transparent 70%); pointer-events: none; }
.footer-bg { position: absolute; inset: auto 0 0; width: 100%; height: auto; opacity: 0.45; pointer-events: none; }
.fb-sky { stroke: rgba(255, 255, 255, 0.28); fill: none; stroke-width: 1.2; }
.fb-win { fill: rgba(231, 175, 41, 0.25); }
.fb-win--blink { animation: fb-blink 7s ease-in-out infinite; }
.fb-win--blink.d1 { animation-delay: 2.3s; }
.fb-win--blink.d2 { animation-delay: 4.6s; }
.fb-route { stroke: rgba(231, 175, 41, 0.55); fill: none; stroke-width: 1.5; stroke-dasharray: 6 8; animation: fb-route 30s linear infinite; }
.fb-dot { fill: rgba(231, 175, 41, 0.7); animation: fb-twinkle 6s ease-in-out infinite; }
.fb-dot.d1 { animation-delay: 1.5s; } .fb-dot.d2 { animation-delay: 3s; } .fb-dot.d3 { animation-delay: 4.5s; }
.fb-pin { fill: var(--c-secondary); }
.fb-pin-ring { fill: none; stroke: var(--c-secondary); stroke-width: 1.5; transform-origin: center; transform-box: fill-box; animation: ill-pulse 4s ease-out infinite; }
@keyframes fb-blink { 0%, 100% { opacity: 0.25; } 50% { opacity: 1; } }
@keyframes fb-route { to { stroke-dashoffset: -280; } }
@keyframes fb-twinkle { 0%, 100% { opacity: 0.2; } 50% { opacity: 0.9; } }
.site-footer.no-anim .fb-win--blink, .site-footer.no-anim .fb-route, .site-footer.no-anim .fb-dot, .site-footer.no-anim .fb-pin-ring { animation: none; }

.footer-grid { position: relative; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1.3fr; gap: 32px; padding: clamp(48px, 6vw, 80px) 0 40px; }
.footer-brand .brand__text b { color: #fff; }
.site-footer .logo-mark .lm-pin { stroke: #fff; }
.site-footer .logo-mark .lm-building { fill: #fff; }
.site-footer .logo-mark .lm-window, .site-footer .logo-mark .lm-door { fill: var(--c-primary-deep); }
.footer-brand p { margin-top: 16px; font-size: 0.93rem; max-width: 34ch; }
.footer-social { display: flex; gap: 8px; margin-top: 18px; }
.footer-social a { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, 0.18); color: #fff; transition: all var(--t-fast); }
.footer-social a:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--c-secondary); transform: translateY(-2px); }
.footer-col h4 { color: #fff; font-size: 0.98rem; margin-bottom: 16px; }
.footer-col ul { display: grid; gap: 9px; }
.footer-col a { position: relative; display: inline-block; color: rgba(255, 255, 255, 0.78); font-size: 0.93rem; transition: color var(--t-fast), transform var(--t-fast) var(--ease); }
.footer-col a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 1.5px; background: var(--c-secondary); transform: scaleX(0); transform-origin: left; transition: transform 220ms var(--ease); }
.footer-col a:hover { color: #fff; transform: translateX(3px); }
.footer-col a:hover::after { transform: scaleX(1); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.93rem; }
.footer-contact .icon { color: var(--c-secondary); flex: 0 0 auto; margin-top: 4px; }
.footer-contact address { font-style: normal; white-space: pre-line; }
.footer-bottom { position: relative; border-top: 1px solid rgba(255, 255, 255, 0.12); padding-top: 20px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 0.85rem; color: rgba(255, 255, 255, 0.6); }
.footer-bottom a { color: rgba(255, 255, 255, 0.85); }
.footer-bottom a:hover { color: var(--c-secondary); }
.footer-accordion-toggle { display: none; }

/* ============================================================
   FLOATING ACTIONS
   ============================================================ */
.fab-stack { position: fixed; right: 18px; bottom: 22px; z-index: 800; display: flex; flex-direction: column; gap: 10px; }
.fab { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; color: #fff; box-shadow: 0 12px 24px -10px rgba(0, 0, 0, 0.45); transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast); }
.fab:hover { transform: translateY(-3px) scale(1.04); }
.fab--whatsapp { background: var(--c-whatsapp); }
.fab--call { background: var(--c-primary); }
.fab .icon { width: 26px; height: 26px; }
.fab--whatsapp .icon { stroke: none; fill: #fff; }
.mobile-dock { display: none; }

/* ============================================================
   REVEAL / MOTION
   ============================================================ */
.reveal-up, .reveal-left, .reveal-right { opacity: 0; transition: opacity 600ms var(--ease), transform 600ms var(--ease); }
.reveal-up { transform: translateY(20px); }
.reveal-left { transform: translateX(-20px); }
.reveal-right { transform: translateX(20px); }
.reveal-up.is-visible, .reveal-left.is-visible, .reveal-right.is-visible { opacity: 1; transform: none; }
[data-stagger] > * { transition-delay: calc(var(--i, 0) * 70ms); }

/* Toast */
.toast { position: fixed; left: 50%; bottom: 90px; transform: translate(-50%, 20px); background: var(--c-heading); color: #fff; padding: 12px 18px; border-radius: 10px; font-size: 0.92rem; z-index: 1300; opacity: 0; visibility: hidden; transition: all var(--t-med) var(--ease); box-shadow: 0 16px 40px -14px rgba(0, 0, 0, 0.5); }
.toast.is-open { opacity: 1; visibility: visible; transform: translate(-50%, 0); }

/* Loading skeleton */
.skeleton { background: linear-gradient(90deg, #e9eef4 25%, #f3f6fa 50%, #e9eef4 75%); background-size: 200% 100%; animation: shimmer 1.4s infinite; border-radius: 10px; min-height: 120px; }
@keyframes shimmer { to { background-position: -200% 0; } }

/* ============================================================
   MAINTENANCE SCREEN
   ============================================================ */
.maint { position: fixed; inset: 0; z-index: 3000; display: grid; place-items: center; padding: 24px; color: #fff; overflow: hidden;
  background: radial-gradient(80% 60% at 50% 0%, #0A4C90 0%, #063B78 45%, #041F44 100%); }
.maint__svg { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.maint__card { position: relative; text-align: center; max-width: 560px; display: grid; justify-items: center; gap: 16px; }
.maint__card h1 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.7rem); margin-top: 8px; }
.maint__card p { color: rgba(255, 255, 255, 0.8); font-size: 1.05rem; max-width: 46ch; }
.maint__card small { color: rgba(255, 255, 255, 0.55); font-size: 0.85rem; }
.maint__brand { display: grid; justify-items: center; gap: 8px; }
.maint__brand .brand__text { align-items: center; }
.maint__brand .brand__text b { color: #fff; font-size: 1.5rem; }
.maint__brand .brand__text span { font-size: 0.95rem; }
.maint__brand .logo-mark .lm-pin { stroke: #fff; }
.maint__brand .logo-mark .lm-building { fill: #fff; }
.maint__brand .logo-mark .lm-window, .maint__brand .logo-mark .lm-door { fill: var(--c-primary); }
.mt-particle { fill: var(--c-secondary); animation: mt-float 12s ease-in-out infinite; }
.mt-particle.d1 { animation-delay: -3s; } .mt-particle.d2 { animation-delay: -6s; } .mt-particle.d3 { animation-delay: -9s; }
.mt-line { stroke: rgba(255, 255, 255, 0.14); fill: none; stroke-width: 1; }
.mt-curve { stroke: rgba(231, 175, 41, 0.25); fill: none; stroke-width: 1.2; }
@keyframes mt-float { 0%, 100% { transform: translateY(0); opacity: 0.35; } 50% { transform: translateY(-30px); opacity: 0.9; } }
.maint .btn-group { justify-content: center; margin-top: 8px; }

/* 404 */
.notfound { min-height: 60vh; display: grid; place-items: center; text-align: center; padding: 60px 0; }
.notfound h1 { font-size: clamp(3rem, 8vw, 5rem); color: var(--c-primary); }

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal-up, .reveal-left, .reveal-right { opacity: 1; transform: none; }
  .logo-mark--anim .lm-pin { stroke-dashoffset: 0; }
  .logo-mark--anim .lm-building-g, .brand__text--anim b, .brand__text--anim span { opacity: 1; transform: none; }
  .ill-line--draw, .ill-check, .ls-check { stroke-dashoffset: 0; }
  .hero__card { opacity: 1; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .qbook__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .qbook__grid .btn { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .footer-col--contact { grid-column: 1 / -1; }
}
@media (max-width: 992px) {
  :root { --header-h: 70px; }
  .nav, .header-actions .btn { display: none; }
  .menu-toggle { display: inline-flex; margin-left: auto; }
  .header-actions { margin-left: auto; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { min-height: auto; margin-top: 8px; }
  .hero__photo { margin: 0; width: 100%; aspect-ratio: 16 / 11; }
  .hero__illustration { display: none; }
  .hero h1 { max-width: 16ch; }
  .lodge-section__inner, .property, .booking-layout, .contact-layout, .content-section, .room-detail, .cta-band { grid-template-columns: 1fr; }
  .content-section:nth-child(even) .content-section__media { order: 0; }
  .summary { position: static; }
  .gallery { columns: 2; }
  .why-grid, .facilities-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-col--contact { grid-column: auto; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .qbook__grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .section-head--row { flex-direction: column; align-items: flex-start; }
  .hero { padding-bottom: 110px; }
  .hero__card--top { display: none; }
  .property__media { min-height: 240px; }
  .lightbox__prev, .lightbox__next { display: none; }
  .modal--wide .modal__card { max-height: 92dvh; }
}
@media (max-width: 576px) {
  body { font-size: 15.5px; }
  .qbook__grid { grid-template-columns: 1fr; }
  .qbook__grid > * { min-width: 0; }
  .qbook__grid .btn { white-space: normal; height: auto; padding-block: 12px; }
  .gallery { columns: 1; }
  .why-grid, .facilities-grid { grid-template-columns: 1fr; }
  .btn-group .btn { flex: 1 1 auto; }
  .hero__desc { font-size: 1rem; }
  .hero__trust .chip { font-size: 0.8rem; padding: 6px 10px; }
  .footer-grid { grid-template-columns: 1fr; gap: 6px; padding-top: 44px; }
  .footer-brand { margin-bottom: 20px; }
  .footer-col { border-top: 1px solid rgba(255, 255, 255, 0.12); }
  .footer-col h4 { margin: 0; }
  .footer-accordion-toggle { display: flex; width: 100%; justify-content: space-between; align-items: center; padding: 16px 0; color: #fff; font-family: var(--font-heading); font-weight: 600; font-size: 0.98rem; }
  .footer-accordion-toggle .icon { transition: transform 260ms var(--ease); }
  .footer-col.is-open .footer-accordion-toggle .icon { transform: rotate(180deg); }
  .footer-col ul { display: none; padding-bottom: 18px; }
  .footer-col.is-open ul { display: grid; }
  .footer-col--contact ul { display: grid; padding: 12px 0 18px; }
  .footer-col--contact .footer-accordion-toggle { pointer-events: none; }
  .footer-col--contact .footer-accordion-toggle .icon { display: none; }
  .footer-bottom { flex-direction: column; text-align: center; padding-bottom: 76px; }

  .fab-stack { display: none; }
  .mobile-dock { display: grid; grid-template-columns: 1fr 1fr 1.2fr; position: fixed; left: 0; right: 0; bottom: 0; z-index: 850; background: rgba(255, 255, 255, 0.97); backdrop-filter: blur(10px); border-top: 1px solid var(--c-line); padding: 8px 10px calc(8px + env(safe-area-inset-bottom)); gap: 8px; }
  .mobile-dock a { display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 46px; border-radius: 10px; font-weight: 600; font-size: 0.9rem; color: var(--c-primary); border: 1.5px solid var(--c-line); }
  .mobile-dock a.is-whatsapp { background: var(--c-whatsapp-dark); color: #fff; border-color: transparent; }
  .mobile-dock a.is-whatsapp .icon { stroke: none; fill: #fff; }
  body { padding-bottom: 70px; }
  .toast { bottom: 84px; width: min(92vw, 400px); text-align: center; }
  .room-card__actions { flex-direction: column; }
  .room-detail__actions .btn { flex: 1; }
  .modal__card { padding: 20px; }
}
