/* ============================================================
   Residence Inn — calm & boutique design system
   ============================================================ */

:root {
  /* brand greens (sampled & refined from the logo) */
  --green:       #1c7d45;
  --green-deep:  #14502f;
  --green-900:   #0f3a23;
  --green-bright:#2a9d52;
  --green-tint:  #eef3ec;

  /* warm sand accent — used very sparingly */
  --sand:        #b6904f;
  --sand-soft:   #d8c49a;

  /* warm neutral base */
  --paper:       #f7f4ee;
  --paper-2:     #efeae0;
  --white:       #ffffff;
  --ink:         #21241f;
  --ink-soft:    #5d6158;
  --ink-faint:   #8b8e84;
  --line:        #e4ddd0;
  --line-soft:   #ece6da;

  --shadow-sm: 0 2px 10px rgba(28,40,24,.06);
  --shadow:    0 18px 50px -22px rgba(20,40,24,.30);
  --shadow-lg: 0 40px 90px -30px rgba(15,40,20,.42);

  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans:  "Hanken Grotesk", system-ui, -apple-system, sans-serif;

  --container: 1220px;
  --radius: 4px;
  --radius-lg: 10px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--green); color: #fff; }

/* ---------- layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 0; }
.section--tight { padding: 64px 0; }
.bg-paper2 { background: var(--paper-2); }
.bg-green  { background: var(--green-900); color: #f3efe6; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--sand); display: inline-block; }
.eyebrow.center { justify-content: center; }
.eyebrow.center::after { content: ""; width: 28px; height: 1px; background: var(--sand); display: inline-block; }
.bg-green .eyebrow { color: var(--sand-soft); }

h1, h2, h3 { font-family: var(--font-serif); font-weight: 500; line-height: 1.04; letter-spacing: -.01em; margin: 0; color: var(--ink); }
.bg-green h1, .bg-green h2, .bg-green h3 { color: #fbf8f1; }

.h-display { font-size: clamp(44px, 7vw, 86px); }
.h-1 { font-size: clamp(36px, 5.2vw, 60px); }
.h-2 { font-size: clamp(28px, 3.4vw, 40px); }
.lead { font-size: clamp(18px, 2.2vw, 22px); color: var(--ink-soft); line-height: 1.55; }

.muted { color: var(--ink-soft); }

/* ---------- buttons ---------- */
.btn {
  --bg: var(--green);
  --fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-sans);
  font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: 15px 26px;
  background: var(--bg); color: var(--fg);
  border: 1px solid var(--bg);
  border-radius: var(--radius);
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { background: var(--green-deep); border-color: var(--green-deep); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn--ghost { --bg: transparent; --fg: #fff; border-color: rgba(255,255,255,.55); }
.btn--ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; box-shadow: none; }
.btn--outline { --bg: transparent; --fg: var(--green-deep); border-color: var(--line); }
.btn--outline:hover { background: var(--green); color:#fff; border-color: var(--green); }
.btn--lg { padding: 18px 34px; font-size: 14px; }
.btn--block { width: 100%; }
.btn--sand { --bg: var(--sand); border-color: var(--sand); }
.btn--sand:hover { --bg:#9c7a3c; border-color:#9c7a3c; }
.btn[disabled] { opacity:.45; pointer-events:none; }

.link-arrow { display:inline-flex; align-items:center; gap:9px; font-weight:600; font-size:14px; letter-spacing:.02em; color:var(--green-deep); border-bottom:1px solid transparent; padding-bottom:2px; transition:gap .25s var(--ease), border-color .25s var(--ease); }
.link-arrow:hover { gap:14px; border-color: var(--green); }
.link-arrow svg { transition: transform .25s var(--ease); }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  background: rgba(247,244,238,.72);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
}
.header.scrolled { background: rgba(247,244,238,.94); box-shadow: 0 6px 30px -18px rgba(20,40,20,.4); border-bottom-color: var(--line-soft); }
.header__bar { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 46px; width: auto; }
.brand__txt { display:flex; flex-direction:column; line-height:1; }
.brand__name { font-family: var(--font-serif); font-size: 21px; font-weight: 600; color: var(--green-deep); letter-spacing:.01em; }
.brand__tag { font-size: 9.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--sand); margin-top:3px; }

.nav { display: none; align-items: center; gap: 30px; }
.nav a { font-size: 14px; font-weight: 500; color: var(--ink); letter-spacing: .01em; position: relative; padding: 6px 0; transition: color .2s; }
.nav a::after { content:""; position:absolute; left:0; right:0; bottom:0; height:1.5px; background: var(--green); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.nav a:hover { color: var(--green-deep); }
.nav a:hover::after { transform: scaleX(1); }

.header__actions { display: flex; align-items: center; gap: 14px; }
.lang {
  display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 40px; overflow: hidden; background: var(--white);
}
.lang button { border: none; background: transparent; padding: 7px 13px; font-size: 12px; font-weight: 700; letter-spacing: .06em; color: var(--ink-faint); transition: background .2s, color .2s; }
.lang button.active { background: var(--green); color: #fff; }
.header__book { display: none; }

.burger { display: inline-flex; flex-direction: column; gap: 5px; width: 42px; height: 42px; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.burger span { width: 18px; height: 1.7px; background: var(--ink); transition: transform .3s var(--ease), opacity .2s; }
.burger.open span:nth-child(1){ transform: translateY(6.7px) rotate(45deg); }
.burger.open span:nth-child(2){ opacity: 0; }
.burger.open span:nth-child(3){ transform: translateY(-6.7px) rotate(-45deg); }

/* mobile menu drawer */
.drawer { position: fixed; inset: 0; z-index: 55; pointer-events: none; }
.drawer__scrim { position: absolute; inset: 0; background: rgba(15,30,18,.5); opacity: 0; transition: opacity .35s var(--ease); }
.drawer__panel { position: absolute; top: 0; right: 0; height: 100%; width: min(86vw, 360px); background: var(--paper); box-shadow: var(--shadow-lg); transform: translateX(100%); transition: transform .4s var(--ease); display: flex; flex-direction: column; padding: 96px 30px 30px; }
.drawer.open { pointer-events: auto; }
.drawer.open .drawer__scrim { opacity: 1; }
.drawer.open .drawer__panel { transform: none; }
.drawer__panel a.mnav { font-family: var(--font-serif); font-size: 27px; color: var(--ink); padding: 13px 0; border-bottom: 1px solid var(--line-soft); transition: color .2s, padding-left .25s var(--ease); }
.drawer__panel a.mnav:hover { color: var(--green); padding-left: 8px; }
.drawer__panel .btn { margin-top: 26px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; flex-wrap: wrap; align-items: flex-end; color: #fff; overflow: hidden; }
.hero__inner { flex: 1 1 100%; }
.bookbar { flex: 1 1 100%; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after { content: ""; position: absolute; inset: 0; background:
  linear-gradient(180deg, rgba(12,28,16,.46) 0%, rgba(12,28,16,.12) 34%, rgba(12,28,16,.30) 64%, rgba(10,24,14,.80) 100%); }
.hero__inner { position: relative; z-index: 2; width: 100%; padding-bottom: 150px; padding-top: 130px; }
.hero__eyebrow { color: #f1e6cf; }
.hero__eyebrow::before { background: var(--sand-soft); }
.hero h1 { color: #fff; max-width: 14ch; text-shadow: 0 2px 30px rgba(0,0,0,.3); }
.hero__sub { max-width: 46ch; margin: 22px 0 30px; font-size: clamp(17px,2vw,21px); color: #f3efe6; line-height: 1.55; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__scroll { position:absolute; left:50%; bottom:26px; transform:translateX(-50%); z-index:3; display:flex; flex-direction:column; align-items:center; gap:8px; color:rgba(255,255,255,.8); font-size:10px; letter-spacing:.24em; text-transform:uppercase; }
.hero__scroll .mouse { width:22px; height:34px; border:1.5px solid rgba(255,255,255,.7); border-radius: 12px; position:relative; }
.hero__scroll .mouse::after { content:""; position:absolute; top:6px; left:50%; transform:translateX(-50%); width:3px; height:6px; border-radius:3px; background:#fff; animation: scrolldot 1.8s var(--ease) infinite; }
@keyframes scrolldot { 0%{opacity:0; transform:translate(-50%,0)} 30%{opacity:1} 100%{opacity:0; transform:translate(-50%,10px)} }

/* ---------- booking widget ---------- */
.bookbar { position: relative; z-index: 20; margin-top: -64px; }
.bookbar__card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 1px solid var(--line-soft); overflow: hidden; }
.bookbar__head { display:flex; align-items:center; gap:10px; padding: 14px 22px; border-bottom: 1px solid var(--line-soft); background: var(--green-tint); }
.bookbar__head .dot { width:7px; height:7px; border-radius:50%; background: var(--green-bright); box-shadow: 0 0 0 4px rgba(42,157,82,.18); }
.bookbar__head span { font-size:12px; font-weight:600; letter-spacing:.16em; text-transform:uppercase; color: var(--green-deep); }
.bookbar__grid { display: grid; grid-template-columns: 1fr; }
.bk-field { padding: 16px 22px; border-bottom: 1px solid var(--line-soft); display:flex; flex-direction:column; gap:6px; position: relative; }
.bk-field > label { font-size: 11px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color: var(--ink-faint); }
.bk-field .val { display:flex; align-items:center; gap:10px; }
.bk-field input, .bk-field select { border: none; background: transparent; font-family: var(--font-sans); font-size: 16px; font-weight: 500; color: var(--ink); width: 100%; padding: 0; outline: none; }
.bk-field select { -webkit-appearance:none; appearance:none; cursor:pointer; }
.bk-field .ico { color: var(--green); flex: none; }
.bk-field--submit { padding: 14px; display:block; }
.bk-field--submit .btn { height: 100%; }

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid { display: grid; grid-template-columns: 1fr; gap: 44px; align-items: center; }
.about__copy p { color: var(--ink-soft); margin: 0 0 18px; }
.about__contacts { display: grid; gap: 14px; margin: 28px 0 30px; }
.contact-row { display:flex; align-items:flex-start; gap:14px; }
.contact-row .pin { flex:none; width:34px; height:34px; border-radius:50%; background: var(--green-tint); color: var(--green-deep); display:grid; place-items:center; }
.contact-row b { display:block; font-size:13px; letter-spacing:.04em; color: var(--ink); }
.contact-row span { font-size:14px; color: var(--ink-soft); }
.about__media { position: relative; }
.about__media .m1 { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 4/3; object-fit: cover; }
.about__media .m2 { position:absolute; right:-14px; bottom:-30px; width: 46%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 5px solid var(--white); aspect-ratio: 1/1; object-fit: cover; }
.about__badge { position:absolute; left:-18px; top:30px; background:var(--white); border-radius:var(--radius-lg); box-shadow: var(--shadow); padding:16px 20px; text-align:center; }
.about__badge .n { font-family: var(--font-serif); font-size: 38px; color: var(--green-deep); line-height:1; }
.about__badge .t { font-size: 10px; letter-spacing:.16em; text-transform:uppercase; color: var(--ink-faint); margin-top:4px; }

/* ---------- services strip ---------- */
.services { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); overflow: hidden; }
.service { background: var(--white); padding: 30px 18px; display:flex; flex-direction:column; align-items:center; text-align:center; gap:12px; transition: background .3s var(--ease); }
.service:hover { background: var(--green-tint); }
.service .ico { color: var(--green); }
.service .lbl { font-size: 13px; font-weight: 600; letter-spacing:.04em; color: var(--ink); }

/* ============================================================
   ROOMS
   ============================================================ */
.rooms__head { display:flex; flex-direction:column; gap: 16px; margin-bottom: 46px; }
.rooms__grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
.room-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line-soft); box-shadow: var(--shadow-sm); display:flex; flex-direction:column; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.room-card__media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.room-card__media img { width:100%; height:100%; object-fit: cover; transition: transform .7s var(--ease); }
.room-card:hover .room-card__media img { transform: scale(1.06); }
.room-card__tag { position:absolute; top:14px; left:14px; background: rgba(255,255,255,.92); -webkit-backdrop-filter:blur(4px); backdrop-filter:blur(4px); color: var(--green-deep); font-size:11px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; padding:7px 12px; border-radius: 40px; }
.room-card__body { padding: 24px 24px 26px; display:flex; flex-direction:column; flex:1; }
.room-card__body h3 { font-size: 27px; margin-bottom: 8px; }
.room-card__desc { color: var(--ink-soft); font-size: 15px; margin: 0 0 18px; flex:1; }
.room-amen { display:flex; flex-wrap:wrap; gap:8px; margin-bottom: 22px; }
.room-amen span { font-size: 12px; color: var(--ink-soft); background: var(--paper); border:1px solid var(--line-soft); padding: 5px 10px; border-radius: 40px; }
.room-card__foot { display:flex; align-items:center; justify-content:space-between; gap: 14px; padding-top: 18px; border-top: 1px solid var(--line-soft); }
.room-price { line-height: 1.1; }
.room-price .from { font-size: 11px; letter-spacing:.1em; text-transform:uppercase; color: var(--ink-faint); display:block; margin-bottom:3px; }
.room-price .amt { font-family: var(--font-serif); font-size: 28px; color: var(--ink); }
.room-price .amt small { font-size: 13px; font-family: var(--font-sans); color: var(--ink-faint); font-weight:500; }

/* ============================================================
   FACILITIES
   ============================================================ */
.fac-feature { display:grid; grid-template-columns:1fr; gap: 40px; align-items:center; }
.fac-feature + .fac-feature { margin-top: 70px; }
.fac-feature__media img { width:100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 3/2; object-fit: cover; }
.fac-feature__body h3 { font-size: clamp(30px,3.6vw,44px); margin-bottom: 16px; }
.fac-feature__body p { color: var(--ink-soft); margin: 0 0 14px; }
.fac-list { list-style:none; padding:0; margin: 18px 0 0; display:grid; gap:10px; }
.fac-list li { display:flex; gap:11px; align-items:flex-start; font-size:15px; color: var(--ink); }
.fac-list li .ck { flex:none; color: var(--green); margin-top:3px; }
.hours { display:inline-flex; align-items:center; gap:10px; margin-top:20px; background: var(--green-tint); color: var(--green-deep); padding:10px 16px; border-radius: 40px; font-size:14px; font-weight:600; }
.fac-mini { display:grid; grid-template-columns:1fr; gap: 18px; margin-top: 22px; }
.fac-mini .col h4 { font-family: var(--font-sans); font-size: 13px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color: var(--green-deep); margin:0 0 10px; }
.fac-mini .col p { font-size: 14px; color: var(--ink-soft); margin:0 0 6px; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery__grid { columns: 2; column-gap: 14px; }
.gallery__grid .gi { break-inside: avoid; margin-bottom: 14px; border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer; display:block; }
.gallery__grid .gi img { width:100%; transition: transform .7s var(--ease); }
.gallery__grid .gi::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg,rgba(15,40,20,0) 40%, rgba(15,40,20,.5)); opacity:0; transition: opacity .35s var(--ease); }
.gallery__grid .gi:hover img { transform: scale(1.05); }
.gallery__grid .gi:hover::after { opacity: 1; }
.gallery__grid .gi .plus { position:absolute; right:12px; bottom:12px; width:34px; height:34px; border-radius:50%; background:rgba(255,255,255,.9); color:var(--green-deep); display:grid; place-items:center; opacity:0; transform: scale(.8); transition: opacity .35s var(--ease), transform .35s var(--ease); z-index:2; }
.gallery__grid .gi:hover .plus { opacity:1; transform:none; }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 90; background: rgba(10,18,12,.92); display:flex; align-items:center; justify-content:center; opacity:0; pointer-events:none; transition: opacity .3s var(--ease); }
.lightbox.open { opacity:1; pointer-events:auto; }
.lightbox img { max-width: 90vw; max-height: 82vh; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lightbox__close { position:absolute; top:22px; right:24px; width:46px; height:46px; border-radius:50%; border:1px solid rgba(255,255,255,.3); background:rgba(255,255,255,.08); color:#fff; display:grid; place-items:center; }
.lightbox__close:hover { background: rgba(255,255,255,.18); }
.lightbox__nav { position:absolute; top:50%; transform:translateY(-50%); width:52px; height:52px; border-radius:50%; border:1px solid rgba(255,255,255,.3); background:rgba(255,255,255,.08); color:#fff; display:grid; place-items:center; transition: background .2s; }
.lightbox__nav:hover { background: rgba(255,255,255,.2); }
.lightbox__nav.prev { left: 18px; } .lightbox__nav.next { right: 18px; }
.lightbox__count { position:absolute; bottom:24px; left:50%; transform:translateX(-50%); color:rgba(255,255,255,.75); font-size:13px; letter-spacing:.1em; }

/* ============================================================
   LOCATIONS
   ============================================================ */
.loc-tabs { display:inline-flex; gap:6px; background: var(--white); border:1px solid var(--line); border-radius: 40px; padding: 5px; margin-bottom: 40px; }
.loc-tabs button { border:none; background:transparent; padding: 11px 26px; border-radius: 40px; font-size:14px; font-weight:600; letter-spacing:.03em; color: var(--ink-soft); transition: background .3s var(--ease), color .3s var(--ease); }
.loc-tabs button.active { background: var(--green); color:#fff; }
.loc-panel { display:grid; grid-template-columns: 1fr; gap: 40px; align-items:center; }
.loc-panel__media { position:relative; border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow); }
.loc-panel__media img { width:100%; aspect-ratio: 4/3; object-fit: cover; }
.loc-info h3 { font-size: clamp(32px,4vw,48px); margin-bottom: 6px; }
.loc-info .loc-sub { color: var(--green); font-weight:600; letter-spacing:.02em; font-size: 15px; margin-bottom: 22px; }
.loc-info p { color: var(--ink-soft); margin: 0 0 20px; }
.loc-meta { display:grid; gap: 14px; margin-bottom: 26px; }
.loc-meta .row { display:flex; gap:13px; align-items:flex-start; }
.loc-meta .row .ico { flex:none; color: var(--green); margin-top:2px; }
.loc-meta .row b { font-size: 13px; letter-spacing:.06em; text-transform:uppercase; color: var(--ink-faint); display:block; margin-bottom:2px; font-weight:700; }
.loc-meta .row span { color: var(--ink); font-size: 15.5px; }
.loc-stub { background: var(--green-tint); border:1px dashed var(--green-bright); border-radius: var(--radius-lg); padding: 22px; }
.loc-stub .badge { font-size:11px; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color: var(--green-deep); }
.loc-stub p { margin: 8px 0 0; color: var(--ink-soft); font-size: 14.5px; }
.loc-chips { display:flex; flex-wrap:wrap; gap:8px; margin-top: 8px; }
.loc-chips span { font-size:12px; background:var(--white); border:1px solid var(--line-soft); color:var(--ink-soft); padding:5px 11px; border-radius:40px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi { position: relative; }
.testi__note { position:absolute; top: 18px; right: 24px; font-size: 11px; letter-spacing:.06em; color: rgba(255,255,255,.55); border:1px solid rgba(255,255,255,.25); border-radius: 40px; padding: 5px 12px; }
.testi__quote { font-family: var(--font-serif); font-size: clamp(26px,3.4vw,42px); line-height: 1.28; color:#fbf8f1; font-weight:500; max-width: 24ch; margin: 0 auto 30px; text-align:center; }
.testi__quote .qm { color: var(--sand-soft); }
.testi__meta { text-align:center; }
.testi__stars { display:flex; gap:4px; justify-content:center; margin-bottom: 14px; color: var(--sand-soft); }
.testi__who { font-size: 14px; letter-spacing:.06em; color: rgba(255,255,255,.8); }
.testi__who b { color:#fff; font-weight:600; }
.testi__dots { display:flex; gap:9px; justify-content:center; margin-top: 34px; }
.testi__dots button { width:9px; height:9px; border-radius:50%; border:none; background: rgba(255,255,255,.28); transition: background .25s, transform .25s; }
.testi__dots button.active { background: var(--sand-soft); transform: scale(1.25); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #11261a; color: #cdd6cd; padding: 70px 0 30px; }
.footer__grid { display:grid; grid-template-columns: 1fr; gap: 40px; }
.footer__brand .brand__name { color:#fff; }
.footer__brand p { color: rgba(255,255,255,.62); font-size: 14px; max-width: 32ch; margin: 16px 0 20px; }
.footer h5 { font-family: var(--font-sans); font-size: 12px; font-weight:700; letter-spacing:.16em; text-transform:uppercase; color: var(--sand-soft); margin: 0 0 18px; }
.footer__loc b { color:#fff; font-size:15px; display:block; margin-bottom:6px; }
.footer__loc p { font-size:14px; color: rgba(255,255,255,.6); margin:0 0 4px; }
.footer__loc + .footer__loc { margin-top: 20px; }
.footer__links { display:grid; gap:11px; }
.footer__links a { font-size:14px; color: rgba(255,255,255,.7); transition: color .2s, padding-left .2s; }
.footer__links a:hover { color:#fff; padding-left: 4px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 44px; padding-top: 24px; display:flex; flex-direction:column; gap: 14px; align-items:center; text-align:center; }
.footer__bottom p { font-size: 12.5px; color: rgba(255,255,255,.45); margin:0; }
.footer__social { display:flex; gap:10px; }
.footer__social a { width:38px; height:38px; border-radius:50%; border:1px solid rgba(255,255,255,.18); display:grid; place-items:center; color:#cdd6cd; transition: background .25s, color .25s, border-color .25s; }
.footer__social a:hover { background: var(--green); color:#fff; border-color: var(--green); }

/* ============================================================
   BOOKING MODAL
   ============================================================ */
.modal { position: fixed; inset: 0; z-index: 100; display:flex; align-items:flex-end; justify-content:center; opacity:0; pointer-events:none; transition: opacity .3s var(--ease); }
.modal.open { opacity:1; pointer-events:auto; }
.modal__scrim { position:absolute; inset:0; background: rgba(12,24,14,.55); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); }
.modal__panel { position: relative; z-index:2; background: var(--paper); width: 100%; max-width: 640px; max-height: 94vh; overflow-y: auto; border-radius: 16px 16px 0 0; box-shadow: var(--shadow-lg); transform: translateY(30px); transition: transform .4s var(--ease); }
.modal.open .modal__panel { transform: none; }
.modal__head { position: sticky; top:0; z-index:3; background: var(--paper); padding: 22px 26px 16px; border-bottom: 1px solid var(--line-soft); }
.modal__head .top { display:flex; align-items:center; justify-content:space-between; gap: 14px; }
.modal__head .ttl { font-family: var(--font-serif); font-size: 24px; color: var(--ink); }
.modal__close { width:38px; height:38px; border-radius:50%; border:1px solid var(--line); background:var(--white); color:var(--ink); display:grid; place-items:center; flex:none; transition: background .2s; }
.modal__close:hover { background: var(--paper-2); }
.steps { display:flex; gap: 8px; margin-top: 16px; }
.steps .st { flex:1; display:flex; flex-direction:column; gap:7px; }
.steps .st .bar { height: 4px; border-radius: 3px; background: var(--line); overflow:hidden; }
.steps .st .bar i { display:block; height:100%; width:0; background: var(--green); transition: width .4s var(--ease); }
.steps .st.done .bar i, .steps .st.active .bar i { width: 100%; }
.steps .st .lbl { font-size: 10.5px; letter-spacing:.08em; text-transform:uppercase; font-weight:600; color: var(--ink-faint); transition: color .3s; }
.steps .st.active .lbl, .steps .st.done .lbl { color: var(--green-deep); }
.modal__body { padding: 24px 26px 28px; }
.modal__foot { display:flex; align-items:center; justify-content:space-between; gap:14px; padding: 18px 26px 26px; }

.field { display:flex; flex-direction:column; gap: 8px; margin-bottom: 18px; }
.field > label { font-size: 12px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  font-family: var(--font-sans); font-size: 16px; color: var(--ink);
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 13px 14px; outline: none; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green-bright); box-shadow: 0 0 0 3px rgba(42,157,82,.14); }
.field textarea { resize: vertical; min-height: 84px; }
.field select { -webkit-appearance:none; appearance:none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235d6158' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position: right 13px center; }
.field .err { color: #b4452f; font-size: 12.5px; font-weight:500; }
.field input.invalid, .field select.invalid { border-color: #cf7a66; }
.grid-2 { display:grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.stepper { display:inline-flex; align-items:center; border:1px solid var(--line); border-radius: var(--radius); overflow:hidden; background:var(--white); width: max-content; }
.stepper button { width:46px; height:48px; border:none; background:var(--white); font-size:20px; color:var(--green-deep); }
.stepper button:hover { background: var(--green-tint); }
.stepper .n { min-width: 54px; text-align:center; font-size:16px; font-weight:600; }

/* room option select cards */
.room-opts { display:grid; gap: 12px; }
.room-opt { display:flex; gap: 14px; align-items:center; padding: 12px; border:1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); cursor:pointer; transition: border-color .2s, box-shadow .2s, transform .2s; }
.room-opt:hover { border-color: var(--green-bright); }
.room-opt.sel { border-color: var(--green); box-shadow: 0 0 0 2px rgba(28,125,69,.18); }
.room-opt img { width: 84px; height: 64px; border-radius: var(--radius); object-fit: cover; flex:none; }
.room-opt .info { flex:1; }
.room-opt .info b { font-size: 16px; color: var(--ink); display:block; }
.room-opt .info span { font-size: 13px; color: var(--ink-soft); }
.room-opt .price { text-align:right; font-family: var(--font-serif); font-size: 20px; color: var(--green-deep); }
.room-opt .radio { width: 22px; height:22px; border-radius:50%; border:1.5px solid var(--line); flex:none; display:grid; place-items:center; transition: border-color .2s; }
.room-opt.sel .radio { border-color: var(--green); }
.room-opt.sel .radio::after { content:""; width:11px; height:11px; border-radius:50%; background: var(--green); }

/* summary / confirmation */
.summary { background: var(--white); border:1px solid var(--line-soft); border-radius: var(--radius-lg); padding: 6px 18px; margin-bottom: 20px; }
.summary .sr { display:flex; justify-content:space-between; gap: 14px; padding: 12px 0; border-bottom:1px solid var(--line-soft); }
.summary .sr:last-child { border-bottom: none; }
.summary .sr span { color: var(--ink-faint); font-size: 13px; letter-spacing:.04em; text-transform:uppercase; }
.summary .sr b { color: var(--ink); font-size: 15px; font-weight:600; text-align:right; }
.confirm { text-align:center; padding: 14px 0 8px; }
.confirm .check { width: 76px; height:76px; border-radius:50%; background: var(--green-tint); color: var(--green); display:grid; place-items:center; margin: 0 auto 22px; animation: pop .5s var(--ease); }
@keyframes pop { 0%{ transform: scale(.5); opacity:0 } 60%{ transform: scale(1.08) } 100%{ transform: scale(1); opacity:1 } }
.confirm h3 { font-size: 32px; margin-bottom: 10px; }
.confirm p { color: var(--ink-soft); max-width: 40ch; margin: 0 auto 6px; }
.confirm .ref { display:inline-block; margin-top: 16px; background: var(--white); border:1px solid var(--line); border-radius: var(--radius); padding: 10px 18px; font-size: 14px; }
.confirm .ref b { font-family: var(--font-serif); font-size: 18px; color: var(--green-deep); letter-spacing:.04em; }

.note-inline { font-size: 12.5px; color: var(--ink-faint); margin-top: 4px; }

body.locked { overflow: hidden; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 600px) {
  .services { grid-template-columns: repeat(5,1fr); }
  .fac-mini { grid-template-columns: repeat(3,1fr); }
  .bookbar__grid { grid-template-columns: repeat(2,1fr); }
  .bk-field--submit { grid-column: span 2; }
}
@media (min-width: 768px) {
  .section { padding: 110px 0; }
  .about__grid { grid-template-columns: 1.05fr 1fr; gap: 70px; }
  .rooms__grid { grid-template-columns: repeat(3,1fr); }
  .fac-feature { grid-template-columns: 1fr 1fr; gap: 60px; }
  .fac-feature.rev .fac-feature__media { order: 2; }
  .gallery__grid { columns: 3; }
  .loc-panel { grid-template-columns: 1fr 1fr; gap: 60px; }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 50px; }
  .modal { align-items: center; }
  .modal__panel { border-radius: 16px; }
}
@media (min-width: 920px) {
  .nav { display: flex; }
  .header__book { display: inline-flex; }
  .burger { display: none; }
  .bookbar__grid { grid-template-columns: 1.2fr 1fr 1fr .8fr 1.1fr auto; }
  .bookbar__grid .bk-field { border-bottom: none; border-right: 1px solid var(--line-soft); }
  .bk-field--submit { grid-column: auto; }
  .hero__inner { padding-bottom: 170px; }
}
@media (min-width: 1024px) {
  .gallery__grid { columns: 4; }
  .fac-mini { grid-template-columns: repeat(3,1fr); }
}
