/* ===== Reset & tokens ==================================================== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
/* height:auto is required, not cosmetic: the width/height attributes on these
   images would otherwise make both dimensions definite and cancel aspect-ratio. */
img, picture, svg { display: block; max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; color: inherit; }

:root {
  --ink:      #16211d;
  --ink-2:    #3c4a44;
  --ink-3:    #6b7973;
  --paper:    #fcfaf6;
  --card:     #ffffff;
  --sand:     #f0e9dd;
  --sand-2:   #e4dacb;
  --brand:    #1d5a48;
  --brand-2:  #16483a;
  --brand-3:  #2f7b64;
  --accent:   #b8802f;
  --accent-2: #9a6a24;
  --line:     #e3ddd2;

  --radius:   14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(22,33,29,.06), 0 2px 8px rgba(22,33,29,.05);
  --shadow:    0 4px 12px rgba(22,33,29,.07), 0 14px 34px rgba(22,33,29,.08);
  --shadow-lg: 0 10px 24px rgba(22,33,29,.10), 0 30px 70px rgba(22,33,29,.16);

  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --wrap: 1180px;
  --pad: clamp(1.1rem, 4vw, 2.5rem);
}

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ===== Type ============================================================== */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.12; letter-spacing: -.012em; }
h1 { font-size: clamp(2.4rem, 6.4vw, 4.3rem); }
h2 { font-size: clamp(1.85rem, 4.1vw, 2.9rem); }
h3 { font-size: clamp(1.2rem, 2.3vw, 1.5rem); line-height: 1.22; }
p { text-wrap: pretty; }
a { color: inherit; }

.eyebrow {
  font-family: var(--sans);
  font-size: .74rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent); margin-bottom: .85rem;
}
.lede { font-size: clamp(1.03rem, 1.7vw, 1.2rem); color: var(--ink-2); }

/* ===== Layout ============================================================ */
.wrap { width: min(var(--wrap), 100% - var(--pad) * 2); margin-inline: auto; }
.section { padding-block: clamp(3.6rem, 8vw, 6.5rem); }
.section--sand { background: var(--sand); }
.section--ink { background: var(--ink); color: #f2efe8; }
.section--ink h2, .section--ink h3 { color: #fff; }
.section--ink .lede { color: #c3cec8; }

.section-head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.section-head.center { margin-inline: auto; text-align: center; }

/* ===== Buttons =========================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .82rem 1.5rem; border-radius: 999px; border: 1.5px solid transparent;
  font-weight: 600; font-size: .95rem; text-decoration: none; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.btn--primary { background: var(--brand); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--brand-2); box-shadow: var(--shadow); }
.btn--ghost { border-color: currentColor; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: var(--sand); }
.btn--outline-light { border-color: rgba(255,255,255,.5); color: #fff; }
.btn--outline-light:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn--sm { padding: .55rem 1.05rem; font-size: .86rem; }

/* ===== Header ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 90;
  transition: background-color .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.site-header__inner {
  display: flex; align-items: center; gap: 1.4rem;
  padding-block: .95rem;
}
.brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; font-weight: 700; letter-spacing: -.02em; }
.brand__mark { width: 30px; height: 30px; flex: none; }
.brand__name { font-family: var(--serif); font-size: 1.32rem; }
.brand__dot { color: var(--accent); }

.nav { display: flex; align-items: center; gap: 1.6rem; margin-left: auto; }
.nav a { text-decoration: none; font-size: .93rem; font-weight: 500; opacity: .88; }
.nav a:hover { opacity: 1; color: var(--accent); }

/* transparent over hero, solid after scroll */
.site-header { color: #fff; }
.site-header.is-stuck {
  background: rgba(252,250,246,.9);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 var(--line);
  color: var(--ink);
}
.site-header.is-stuck .btn--light { background: var(--brand); color: #fff; }
.site-header.is-stuck .btn--light:hover { background: var(--brand-2); }

.nav-toggle { display: none; margin-left: auto; background: none; border: 0; padding: .5rem; cursor: pointer; }
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 860px) {
  .nav { display: none; }
  .nav-toggle { display: block; }
  .nav.is-open {
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    position: absolute; top: 100%; left: var(--pad); right: var(--pad);
    background: var(--card); color: var(--ink);
    border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: .5rem;
  }
  .nav.is-open a { padding: .8rem 1rem; border-radius: 10px; }
  .nav.is-open a:hover { background: var(--sand); }
  .nav.is-open .btn { margin: .4rem; }
}

/* ===== Hero ============================================================== */
.hero { position: relative; min-height: min(94svh, 860px); display: grid; align-items: end; color: #fff; }
.hero__media { position: absolute; inset: 0; overflow: hidden; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,20,16,.62) 0%, rgba(10,20,16,.24) 34%, rgba(10,20,16,.5) 72%, rgba(10,20,16,.86) 100%);
}
.hero__inner { position: relative; padding-block: clamp(3rem, 9vw, 6rem) clamp(2.6rem, 6vw, 4.2rem); }
.hero h1 { color: #fff; max-width: 16ch; text-shadow: 0 2px 30px rgba(0,0,0,.35); }
.hero__sub { margin-top: 1.25rem; max-width: 52ch; font-size: clamp(1.05rem, 2vw, 1.28rem); color: #e8eeea; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.9rem; }
.hero__scroll { margin-top: 2.2rem; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; opacity: .78; }

.chips { list-style: none; padding: 0; margin: 1.5rem 0 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.chips li {
  font-size: .82rem; font-weight: 600; padding: .38rem .85rem; border-radius: 999px;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.32);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); color: #fff;
}

/* ===== Comparison table ================================================== */
.compare-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius); }
.compare {
  width: 100%; min-width: 640px; border-collapse: separate; border-spacing: 0;
  background: var(--card); font-size: .93rem;
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
.compare th, .compare td { padding: .85rem 1.1rem; text-align: left; vertical-align: top; }
.compare thead th {
  font-family: var(--sans); font-size: .78rem; font-weight: 700;
  letter-spacing: .09em; text-transform: uppercase; color: var(--ink-3);
  border-bottom: 1px solid var(--line); background: var(--paper); white-space: nowrap;
}
.compare tbody th {
  font-weight: 600; color: var(--ink-2); white-space: nowrap;
  background: var(--paper); border-right: 1px solid var(--line);
}
.compare tbody tr + tr th, .compare tbody tr + tr td { border-top: 1px solid var(--line); }
.compare td { color: var(--ink-3); }
.compare .is-us { background: rgba(29,90,72,.06); color: var(--ink); font-weight: 600; }
.compare thead .is-us { background: var(--brand); color: #fff; }
.compare__note { text-align: center; font-size: .86rem; color: var(--ink-3); margin-top: 1rem; }

/* ===== Mid-page CTA band ================================================= */
.ctaband { background: var(--brand); color: #fff; padding-block: clamp(2.2rem, 5vw, 3.2rem); }
.ctaband__inner { display: flex; flex-wrap: wrap; gap: 1.4rem 2rem; align-items: center; justify-content: space-between; }
.ctaband h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.1rem); }
.ctaband p { color: #cfe3db; margin-top: .4rem; max-width: 52ch; font-size: .98rem; }

/* ===== Sticky mobile CTA ================================================= */
.stickybar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  display: none; align-items: center; gap: 1rem;
  padding: .7rem clamp(.9rem, 4vw, 1.4rem) calc(.7rem + env(safe-area-inset-bottom));
  background: rgba(252,250,246,.96);
  backdrop-filter: saturate(180%) blur(14px); -webkit-backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 -1px 0 var(--line), 0 -8px 24px rgba(22,33,29,.08);
  transform: translateY(110%); transition: transform .28s ease;
}
.stickybar.is-on { transform: none; }
.stickybar__text { line-height: 1.25; min-width: 0; }
.stickybar__text b { display: block; font-size: .84rem; }
.stickybar__text span { font-size: .76rem; color: var(--ink-3); }
.stickybar .btn { margin-left: auto; flex: none; }
@media (max-width: 860px) {
  .stickybar { display: flex; }
  body { padding-bottom: 0; }
}

/* ===== Trust strip ======================================================= */
.trust { background: var(--ink); color: #eef2f0; }
.trust__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  text-align: center; padding-block: clamp(1.6rem, 3vw, 2.2rem);
}
.trust__item { padding: .4rem 1rem; }
.trust__item + .trust__item { border-left: 1px solid rgba(255,255,255,.13); }
.trust__n { font-family: var(--serif); font-size: clamp(1.5rem, 3.4vw, 2.2rem); color: #fff; line-height: 1.1; }
.trust__l { font-size: .78rem; letter-spacing: .07em; text-transform: uppercase; color: #a9b8b2; margin-top: .3rem; }
@media (max-width: 640px) {
  .trust__grid { grid-template-columns: repeat(2, 1fr); gap: .4rem 0; }
  .trust__item:nth-child(odd) { border-left: 0; }
  .trust__item:nth-child(-n+2) { padding-bottom: 1rem; }
  .trust__item:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.13); padding-top: 1rem; }
}

/* ===== Value props ======================================================= */
.props { display: grid; gap: clamp(1.4rem, 2.6vw, 2.2rem); grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); }
.prop { }
.prop__icon {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: var(--brand); color: #fff; margin-bottom: 1rem;
}
.prop__icon svg { width: 23px; height: 23px; }
.prop h3 { margin-bottom: .45rem; }
.prop p { color: var(--ink-2); font-size: .97rem; }

/* ===== House sections ==================================================== */
.house { padding-block: clamp(3.4rem, 7vw, 5.6rem); border-top: 1px solid var(--line); }
.house:first-of-type { border-top: 0; }
.house__top { display: grid; gap: clamp(1.8rem, 4vw, 3.4rem); align-items: center; grid-template-columns: 1.05fr .95fr; }
.house__top.flip > .house__figure { order: 2; }
@media (max-width: 900px) { .house__top { grid-template-columns: 1fr; } .house__top.flip > .house__figure { order: 0; } }

.house__figure { position: relative; }
.house__figure img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
}
.house__badge {
  position: absolute; left: 1rem; bottom: 1rem;
  background: rgba(252,250,246,.94); backdrop-filter: blur(8px);
  padding: .5rem .95rem; border-radius: 999px; font-size: .82rem; font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.house__kicker { font-size: .84rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3); margin-top: .7rem; }
.house__pick {
  margin-top: 1.1rem; padding: .7rem 1rem; font-size: .95rem; font-weight: 600;
  color: var(--brand-2); background: rgba(29,90,72,.08);
  border-left: 3px solid var(--brand); border-radius: 0 8px 8px 0;
}
.house h2 { margin-top: .3rem; }
.house__lede { margin-top: 1rem; font-size: 1.08rem; color: var(--ink-2); }
.house__body { margin-top: 1rem; display: grid; gap: .8rem; color: var(--ink-2); font-size: .98rem; }

.perks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem 1.6rem; margin-top: 1.9rem; }
@media (max-width: 560px) { .perks { grid-template-columns: 1fr; } }
.perk { display: flex; gap: .7rem; }
.perk__tick { flex: none; width: 20px; height: 20px; margin-top: .22rem; color: var(--brand-3); }
.perk b { display: block; font-size: .95rem; }
.perk span { font-size: .89rem; color: var(--ink-3); }

/* photo strip */
.strip { display: flex; gap: .7rem; overflow-x: auto; padding: 1.8rem .2rem .6rem; scroll-snap-type: x mandatory; scrollbar-width: thin; }
.strip::-webkit-scrollbar { height: 7px; }
.strip::-webkit-scrollbar-thumb { background: var(--sand-2); border-radius: 4px; }
.strip button {
  flex: 0 0 auto; padding: 0; border: 0; background: none; cursor: pointer; scroll-snap-align: start;
  border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease;
}
.strip button:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.strip button:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
.strip img { width: 232px; height: 155px; object-fit: cover; }

/* ===== Room cards ======================================================== */
.rooms { display: grid; gap: 1.15rem; grid-template-columns: repeat(auto-fill, minmax(258px, 1fr)); margin-top: 1.8rem; }
.room {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; text-align: left;
  padding: 0; cursor: pointer; font: inherit; color: inherit;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.room:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--sand-2); }
.room:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.room__media { position: relative; aspect-ratio: 3 / 2; overflow: hidden; background: var(--sand); }
.room__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.room:hover .room__media img { transform: scale(1.045); }
.room__tag {
  position: absolute; top: .7rem; left: .7rem;
  background: var(--accent); color: #fff; font-size: .7rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; padding: .28rem .6rem; border-radius: 6px;
}
.room__count {
  position: absolute; bottom: .7rem; right: .7rem;
  background: rgba(0,0,0,.55); color: #fff; font-size: .74rem; font-weight: 600;
  padding: .24rem .55rem; border-radius: 6px; backdrop-filter: blur(4px);
}
.room__body { padding: 1.05rem 1.15rem 1.25rem; display: flex; flex-direction: column; flex: 1; }
.room__name { font-family: var(--serif); font-size: 1.18rem; font-weight: 600; }
.room__stars { font-size: .82rem; color: var(--ink-3); margin-top: .2rem; }
.room__stars b { color: var(--ink); }
.room__blurb {
  font-size: .89rem; color: var(--ink-2); margin-top: .5rem; flex: 1;
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; line-clamp: 3;
  overflow: hidden;
}
.room__specs { display: flex; flex-wrap: wrap; gap: .35rem; margin-top: .9rem; }
.room__specs span { font-size: .74rem; background: var(--sand); border-radius: 6px; padding: .22rem .5rem; color: var(--ink-2); }
.room__foot { display: flex; align-items: baseline; justify-content: space-between; gap: .6rem; margin-top: 1rem; padding-top: .85rem; border-top: 1px solid var(--line); }
.room__rate { font-weight: 700; font-size: 1.02rem; }
.room__rate small { font-weight: 500; color: var(--ink-3); font-size: .8rem; }
.room__rate.is-tbd { font-size: .88rem; font-weight: 600; color: var(--ink-3); }
.room__more { font-size: .85rem; font-weight: 600; color: var(--brand); }

/* ===== Included grid ===================================================== */
.incl { display: grid; gap: 1px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.incl__item { background: var(--paper); padding: 1.35rem 1.4rem; }
.incl__item b { display: block; font-size: .98rem; }
.incl__item span { font-size: .88rem; color: var(--ink-3); }

/* ===== Audiences ========================================================= */
.aud { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(265px, 1fr)); }
.aud__card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 1.5rem; }
.aud__card b { font-family: var(--serif); font-size: 1.16rem; display: block; margin-bottom: .4rem; }
.aud__card span { font-size: .92rem; color: #bccac4; }

/* ===== Steps ============================================================= */
.steps { display: grid; gap: 1.6rem; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); counter-reset: s; }
.step { counter-increment: s; }
.step::before {
  content: counter(s); display: grid; place-items: center;
  width: 40px; height: 40px; border-radius: 999px;
  background: var(--brand); color: #fff; font-weight: 700; font-size: 1rem;
  margin-bottom: .95rem;
}
.step b { display: block; font-family: var(--serif); font-size: 1.14rem; margin-bottom: .35rem; }
.step span { font-size: .94rem; color: var(--ink-2); }
.steps--ink .step::before { background: var(--accent); }
.steps--ink .step b { color: #fff; }
.steps--ink .step span { color: #bccac4; }

/* ===== Reviews =========================================================== */
.reviews { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); }
.review { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem 1.5rem 1.35rem; box-shadow: var(--shadow-sm); break-inside: avoid; }
.review__stars { color: var(--accent); letter-spacing: .08em; font-size: .95rem; }
.review__text { margin-top: .7rem; font-size: .95rem; color: var(--ink-2); }
.review__who { margin-top: 1rem; font-size: .86rem; }
.review__who b { font-weight: 600; }
.review__who span { color: var(--ink-3); }

.host-card {
  display: grid; grid-template-columns: auto 1fr; gap: 1.4rem; align-items: center;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 2.2rem); box-shadow: var(--shadow-sm); margin-top: 2.4rem;
}
@media (max-width: 600px) { .host-card { grid-template-columns: 1fr; } }
.host-card__badge {
  width: 74px; height: 74px; border-radius: 999px; display: grid; place-items: center;
  background: var(--brand); color: #fff; font-family: var(--serif); font-size: 1.7rem;
}
.host-card p { font-size: .98rem; color: var(--ink-2); margin-top: .45rem; }

/* ===== FAQ =============================================================== */
.faq { max-width: 820px; margin-inline: auto; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 1.15rem .4rem 1.15rem 0;
  font-weight: 600; font-size: 1.02rem; display: flex; gap: 1rem; align-items: flex-start;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; margin-left: auto; font-size: 1.4rem; line-height: 1; color: var(--accent);
  transition: transform .2s ease; flex: none;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 6px; }
.faq p { padding: 0 2.4rem 1.3rem 0; color: var(--ink-2); font-size: .97rem; }

/* ===== Contact =========================================================== */
.contact__grid { display: grid; gap: clamp(1.8rem, 4vw, 3.4rem); grid-template-columns: .85fr 1.15fr; align-items: start; }
@media (max-width: 900px) { .contact__grid { grid-template-columns: 1fr; } }

.contact__lines { display: grid; gap: 1rem; margin-top: 1.8rem; }
.cline { display: flex; gap: .85rem; align-items: flex-start; text-decoration: none; }
.cline svg { width: 21px; height: 21px; flex: none; margin-top: .28rem; color: var(--accent); }
.cline b { display: block; font-size: 1.02rem; }
.cline span { font-size: .87rem; color: #a9b8b2; }
.section--ink .cline b { color: #fff; }

.form {
  background: var(--card); color: var(--ink);
  border-radius: var(--radius-lg); padding: clamp(1.4rem, 3vw, 2.1rem);
  box-shadow: var(--shadow-lg);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .form__row { grid-template-columns: 1fr; } }
.field { display: block; margin-bottom: 1rem; }
.field > span { display: block; font-size: .84rem; font-weight: 600; margin-bottom: .35rem; }
.field > span i { font-style: normal; color: var(--ink-3); font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%; padding: .7rem .85rem; border: 1.5px solid var(--line); border-radius: 10px;
  background: var(--paper); transition: border-color .16s ease, box-shadow .16s ease;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand-3); box-shadow: 0 0 0 3px rgba(47,123,100,.16);
}
.field input:user-invalid { border-color: #b3402f; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__note { font-size: .8rem; color: var(--ink-3); margin-top: .9rem; text-align: center; }
.form__status { margin-top: 1rem; padding: .85rem 1rem; border-radius: 10px; font-size: .9rem; display: none; }
.form__status.is-ok { display: block; background: #e7f3ee; color: #16483a; border: 1px solid #bcded1; }
.form__status.is-err { display: block; background: #fdecea; color: #8d2f21; border: 1px solid #f2c9c3; }
.btn[aria-busy="true"] { opacity: .65; pointer-events: none; }

/* ===== Footer ============================================================ */
.site-footer { background: var(--ink); color: #9fb0a9; padding-block: 2.6rem; font-size: .87rem; border-top: 1px solid rgba(255,255,255,.1); }
.site-footer__inner { display: flex; flex-wrap: wrap; gap: 1rem 2rem; align-items: center; justify-content: space-between; }
.site-footer a { color: #cfdad5; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 1.2rem; }

/* ===== Lightbox / room modal ============================================ */
.lb[hidden] { display: none; }
.lb {
  position: fixed; inset: 0; z-index: 120;
  background: rgba(10,17,14,.94);
  display: grid; grid-template-rows: auto 1fr auto;
  color: #fff;
  animation: lbin .2s ease;
}
@keyframes lbin { from { opacity: 0; } }
.lb__bar { display: flex; align-items: center; gap: 1rem; padding: .9rem clamp(.8rem, 3vw, 1.6rem); }
.lb__title { font-family: var(--serif); font-size: 1.1rem; }
.lb__meta { font-size: .84rem; color: #a9b8b2; margin-left: auto; }
.lb__x, .lb__nav {
  background: rgba(255,255,255,.1); border: 0; color: #fff; cursor: pointer;
  width: 42px; height: 42px; border-radius: 999px; display: grid; place-items: center;
  transition: background-color .16s ease;
}
.lb__x:hover, .lb__nav:hover { background: rgba(255,255,255,.24); }
.lb__x:focus-visible, .lb__nav:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
.lb__stage { position: relative; display: grid; place-items: center; padding: 0 clamp(.5rem, 3vw, 1.6rem); min-height: 0; }
.lb__stage img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; border-radius: 8px; }
.lb__nav { position: absolute; top: 50%; transform: translateY(-50%); }
.lb__nav--prev { left: clamp(.4rem, 2vw, 1.2rem); }
.lb__nav--next { right: clamp(.4rem, 2vw, 1.2rem); }
.lb__foot { padding: .8rem clamp(.8rem, 3vw, 1.6rem) 1.1rem; }
.lb__cap { font-size: .88rem; color: #c3cec8; text-align: center; min-height: 1.4em; }
.lb__thumbs { display: flex; gap: .45rem; overflow-x: auto; justify-content: flex-start; padding-top: .7rem; }
.lb__thumbs::-webkit-scrollbar { height: 5px; }
.lb__thumbs::-webkit-scrollbar-thumb { background: rgba(255,255,255,.3); border-radius: 3px; }
.lb__thumbs button { flex: none; padding: 0; border: 2px solid transparent; background: none; border-radius: 7px; overflow: hidden; cursor: pointer; opacity: .55; transition: opacity .16s ease, border-color .16s ease; }
.lb__thumbs button[aria-current="true"] { opacity: 1; border-color: #fff; }
.lb__thumbs button:hover { opacity: 1; }
.lb__thumbs img { width: 88px; height: 60px; object-fit: cover; }

/* room detail panel inside lightbox */
.lb__detail { display: grid; grid-template-columns: 1fr 320px; gap: 1.4rem; align-items: start; }
@media (max-width: 900px) { .lb__detail { grid-template-columns: 1fr; } .lb__aside { display: none; } }
.lb__aside { background: rgba(255,255,255,.07); border-radius: 12px; padding: 1.1rem 1.2rem; }
.lb__aside h4 { font-size: 1.05rem; margin-bottom: .5rem; }
.lb__aside p { font-size: .9rem; color: #c3cec8; }
.lb__aside ul { list-style: none; padding: 0; margin: .8rem 0 0; display: flex; flex-wrap: wrap; gap: .35rem; }
.lb__aside li { font-size: .75rem; background: rgba(255,255,255,.12); border-radius: 6px; padding: .22rem .5rem; }
.lb__aside .btn { width: 100%; margin-top: 1rem; }

body.no-scroll { overflow: hidden; }

/* ===== Reveal on scroll ================================================== */
/* Only hide when JS is present to reveal it again — never strand content. */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; } }

/* ===== Utilities ========================================================= */
.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: .6rem; top: -100px; z-index: 200;
  background: var(--brand); color: #fff; padding: .7rem 1.1rem; border-radius: 8px; text-decoration: none;
}
.skip-link:focus { top: .6rem; }
