/* ============================================================
   QUAIL HOLLOW PROPERTIES — global theme
   Palette: deep charcoal · warm sandstone · soft cream · muted sage · copper/rust
   Loads AFTER bootstrap + lael structural CSS:
     1. Re-maps the legacy (lael) CSS variables so non-rewritten pages
        (property detail, checkout, payment flows) inherit the Quail palette.
     2. Defines the full qh-* design system used by the rewritten pages.
   ============================================================ */

/* ---------- 1. Legacy variable re-map (re-themes lael pages) ---------- */
:root {
  /* Quail design tokens */
  --qh-charcoal: #211f1b;
  --qh-ink: #2c2823;
  --qh-cream: #f7f1e6;
  --qh-cream-2: #efe6d6;
  --qh-sand: #d8c3a3;
  --qh-sandstone: #bd8c63;
  --qh-sage: #8c9a7e;
  --qh-sage-deep: #6f7d62;
  --qh-rust: #a8512c;
  --qh-copper: #c4703f;
  --qh-copper-soft: #d68a55;
  --qh-line: rgba(33, 31, 27, .14);
  --qh-shadow: 0 24px 60px -28px rgba(33, 31, 27, .45);
  --qh-shadow-soft: 0 16px 40px -24px rgba(33, 31, 27, .35);
  --qh-maxw: 1240px;
  --qh-ease: cubic-bezier(.22, .61, .36, 1);
  --qh-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --qh-sans: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Legacy lael variables → Quail palette */
  --green: #211f1b;
  --green-dark: #2c2823;
  --green-light: #8c9a7e;
  --green-pale: #efe6d6;
  --gold: #c4703f;
  --gold-light: #d68a55;
  --silver: #bd8c63;
  --silver-light: #d8c3a3;
  --cream: #f7f1e6;
  --cream-dk: #efe6d6;
  --brown: #211f1b;
  --brown-mid: #a8512c;
  --text-dark: #211f1b;
  --text-mid: #4a3f33;
  --text-dull: #2c2823;
  --text-muted: #7a6f60;
  --heading-font: "Cormorant Garamond", Georgia, serif;
  --body-font: "Jost", -apple-system, sans-serif;
  --font-third: "Cormorant Garamond", Georgia, serif;
}

body {
  font-family: var(--qh-sans);
  color: var(--qh-ink);
  background: var(--qh-cream);
  font-weight: 300;
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--qh-serif);
  font-weight: 500;
  line-height: 1.12;
  color: var(--qh-charcoal);
}

::selection { background: var(--qh-copper); color: #fff; }
:focus-visible { outline: 2px solid var(--qh-copper); outline-offset: 3px; border-radius: 2px; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--qh-rust); }

/* ---------- 2. Quail design system ---------- */
.qh-wrap { max-width: var(--qh-maxw); margin: 0 auto; padding: 0 clamp(20px, 5vw, 64px); }

.qh-eyebrow {
  font-size: .74rem; letter-spacing: .34em; text-transform: uppercase; font-weight: 500;
  color: var(--qh-rust); margin: 0 0 1.1em; display: inline-flex; align-items: center; gap: .7em;
}
.qh-eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--qh-copper); display: inline-block; }
.qh-eyebrow.center { justify-content: center; }
.qh-eyebrow.light { color: var(--qh-copper-soft); }

.qh-btn {
  display: inline-flex; align-items: center; gap: .6em; cursor: pointer; border: none;
  font-family: var(--qh-sans); font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 500;
  padding: 1.05em 2.1em; border-radius: 2px; transition: all .45s var(--qh-ease); position: relative; line-height: 1.2;
}
.qh-btn-primary { background: var(--qh-rust); color: var(--qh-cream); }
.qh-btn-primary:hover { background: var(--qh-charcoal); color: var(--qh-cream); transform: translateY(-2px); }
.qh-btn-ghost { background: transparent; color: var(--qh-cream); border: 1px solid rgba(247, 241, 230, .55); }
.qh-btn-ghost:hover { background: rgba(247, 241, 230, .12); border-color: var(--qh-cream); color: var(--qh-cream); transform: translateY(-2px); }
.qh-btn-dark { background: var(--qh-charcoal); color: var(--qh-cream); }
.qh-btn-dark:hover { background: var(--qh-rust); color: var(--qh-cream); transform: translateY(-2px); }
.qh-btn-outline { background: transparent; color: var(--qh-charcoal); border: 1px solid var(--qh-charcoal); }
.qh-btn-outline:hover { background: var(--qh-charcoal); color: var(--qh-cream); transform: translateY(-2px); }

/* reveal animation */
.qh-reveal { transition: opacity 1s var(--qh-ease), transform 1s var(--qh-ease); }
.js .qh-reveal { opacity: 0; transform: translateY(34px); }
.qh-reveal.in { opacity: 1; transform: none; }
.qh-reveal.d1 { transition-delay: .12s; } .qh-reveal.d2 { transition-delay: .24s; }
.qh-reveal.d3 { transition-delay: .36s; } .qh-reveal.d4 { transition-delay: .48s; }

/* ---------- NAV ---------- */
header.qh-nav {
  position: fixed; inset: 0 0 auto 0; z-index: 1040;
  display: flex; align-items: center; justify-content: space-between;
  padding: clamp(16px, 2.4vw, 30px) clamp(20px, 5vw, 64px);
  transition: background .5s var(--qh-ease), padding .5s var(--qh-ease), box-shadow .5s var(--qh-ease);
}
header.qh-nav.scrolled, header.qh-nav.solid {
  background: rgba(247, 241, 230, .94); backdrop-filter: blur(14px);
  padding-top: 14px; padding-bottom: 14px; box-shadow: 0 1px 0 var(--qh-line);
}
.qh-brand { display: flex; align-items: center; gap: 12px; color: var(--qh-cream); transition: color .5s var(--qh-ease); }
header.qh-nav.scrolled .qh-brand, header.qh-nav.solid .qh-brand { color: var(--qh-charcoal); }
.qh-brand:hover { color: inherit; }
.qh-brand svg { width: 34px; height: 34px; flex: none; }
.qh-brand .bt { display: flex; flex-direction: column; line-height: 1; }
.qh-brand .bt b { font-family: var(--qh-serif); font-size: 1.18rem; font-weight: 500; letter-spacing: .01em; }
.qh-brand .bt span { font-size: .62rem; letter-spacing: .32em; text-transform: uppercase; opacity: .8; margin-top: 4px; }
nav.qh-links { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 40px); }
nav.qh-links a {
  color: var(--qh-cream); font-size: .8rem; letter-spacing: .13em; text-transform: uppercase; font-weight: 400;
  transition: color .4s var(--qh-ease); position: relative;
}
nav.qh-links a:not(.qh-navcta)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 1px; width: 0; background: currentColor; transition: width .4s var(--qh-ease);
}
nav.qh-links a:not(.qh-navcta):hover::after { width: 100%; }
header.qh-nav.scrolled nav.qh-links a, header.qh-nav.solid nav.qh-links a { color: var(--qh-ink); }
.qh-navcta { border: 1px solid rgba(247, 241, 230, .5); padding: .7em 1.4em; border-radius: 2px; transition: all .4s var(--qh-ease) !important; }
header.qh-nav.scrolled .qh-navcta, header.qh-nav.solid .qh-navcta { border-color: var(--qh-rust); color: var(--qh-rust) !important; }
.qh-navcta:hover { background: var(--qh-rust); border-color: var(--qh-rust); color: var(--qh-cream) !important; }
.qh-navtoggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
.qh-navtoggle span { width: 24px; height: 2px; background: var(--qh-cream); transition: .4s var(--qh-ease); }
header.qh-nav.scrolled .qh-navtoggle span, header.qh-nav.solid .qh-navtoggle span { background: var(--qh-charcoal); }

/* pages without a hero need top offset */
body.qh-inner main, body.qh-inner .qh-page { padding-top: 0; }

/* ---------- HERO ---------- */
.qh-hero { position: relative; height: 100svh; min-height: 640px; display: flex; align-items: flex-end; overflow: hidden; background: radial-gradient(135% 135% at 70% 18%, #241e17 0%, #161209 72%); }
.qh-hero-media { position: absolute; inset: 0; z-index: 0; }
.qh-hero-media .slide {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
  opacity: 0; transition: opacity 1.8s var(--qh-ease);
  background-size: cover; background-position: center;
  animation: qh-kenburns 18s ease-in-out infinite alternate;
}
.qh-hero-media .slide.active { opacity: 1; }
#qhHeroVideo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; opacity: 0; transition: opacity 1.4s var(--qh-ease); }
#qhHeroVideo.ready { opacity: 1; }
@keyframes qh-kenburns { from { transform: scale(1.02) translate(0, 0); } to { transform: scale(1.14) translate(-1.5%, -1.5%); } }
.qh-hero-overlay {
  position: absolute; inset: 0; z-index: 3;
  background:
    radial-gradient(125% 125% at 78% 18%, rgba(20, 17, 13, 0) 40%, rgba(18, 15, 11, .52) 100%),
    linear-gradient(90deg, rgba(18, 15, 11, .66) 0%, rgba(18, 15, 11, .3) 40%, rgba(18, 15, 11, .04) 70%, rgba(18, 15, 11, .12) 100%),
    linear-gradient(0deg, rgba(18, 15, 11, .66) 0%, rgba(18, 15, 11, 0) 42%);
}
.qh-hero-inner { position: relative; z-index: 5; width: 100%; padding-bottom: clamp(56px, 9vh, 118px); }
.qh-hero-kicker { display: inline-flex; align-items: center; gap: .9em; color: var(--qh-copper-soft); font-size: .72rem; letter-spacing: .32em; text-transform: uppercase; margin-bottom: 1.6em; }
.qh-hero-kicker::before { content: ""; width: 40px; height: 1px; background: var(--qh-copper-soft); }
.qh-hero h1 { color: var(--qh-cream); font-size: clamp(2.5rem, 5.2vw, 4.7rem); font-weight: 500; max-width: 16ch; line-height: 1.05; text-shadow: 0 2px 44px rgba(0, 0, 0, .38); }
.qh-hero .sub { color: rgba(247, 241, 230, .95); max-width: 44ch; font-size: clamp(1rem, 1.4vw, 1.18rem); font-weight: 300; margin: 1.3rem 0 1.9rem; line-height: 1.6; text-shadow: 0 1px 22px rgba(0, 0, 0, .34); }
.qh-hero-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 24px; margin-bottom: 2.1rem; }
.qh-hero-badges { display: flex; align-items: center; gap: 1.1em; flex-wrap: wrap; color: rgba(247, 241, 230, .92); font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; }
.qh-hero-badges b { font-weight: 500; }
.qh-hero-badges .star { color: var(--qh-copper-soft); }
.qh-hero-badges .sep { width: 4px; height: 4px; border-radius: 50%; background: rgba(247, 241, 230, .42); }
.qh-scrollcue {
  position: absolute; left: 50%; bottom: 24px; transform: translateX(-50%); z-index: 5;
  color: rgba(247, 241, 230, .72); font-size: .6rem; letter-spacing: .3em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.qh-scrollcue .ln { width: 1px; height: 46px; background: linear-gradient(rgba(247, 241, 230, .7), transparent); animation: qh-cue 2.4s var(--qh-ease) infinite; }
@keyframes qh-cue { 0% { transform: scaleY(.2); transform-origin: top; opacity: 0; } 40% { opacity: 1; } 100% { transform: scaleY(1); transform-origin: top; opacity: 0; } }

/* ---------- sticky availability bar ---------- */
.qh-availbar {
  position: fixed; left: 0; right: 0; top: 0; z-index: 1050; transform: translateY(-130%);
  transition: transform .55s var(--qh-ease);
  background: rgba(33, 31, 27, .96); backdrop-filter: blur(10px); color: var(--qh-cream);
  box-shadow: 0 12px 30px -18px rgba(0, 0, 0, .6);
}
.qh-availbar.show { transform: translateY(0); }
.qh-availbar .inner {
  max-width: var(--qh-maxw); margin: 0 auto; padding: 12px clamp(20px, 5vw, 64px);
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
}
.qh-availbar .ab-brand { font-family: var(--qh-serif); font-size: 1.05rem; margin-right: auto; display: flex; align-items: center; gap: 10px; color: var(--qh-cream); }
.qh-availbar .ab-brand svg { width: 24px; height: 24px; }
.qh-availbar form { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin: 0; }
.qh-availbar .field { display: flex; flex-direction: column; gap: 2px; }
.qh-availbar label { font-size: .56rem; letter-spacing: .22em; text-transform: uppercase; color: var(--qh-copper-soft); margin: 0; }
.qh-availbar input, .qh-availbar select {
  background: rgba(247, 241, 230, .08); border: 1px solid rgba(247, 241, 230, .22); color: var(--qh-cream);
  border-radius: 2px; padding: .5em .7em; font-family: var(--qh-sans); font-size: .85rem; color-scheme: dark;
}
.qh-availbar .qh-btn { padding: .7em 1.4em; }

/* ---------- sections ---------- */
.qh-section-pad { padding: clamp(80px, 11vw, 150px) 0; }
.qh-sec-head { max-width: 640px; margin-bottom: clamp(40px, 6vw, 76px); }
.qh-sec-head h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); font-weight: 500; }
.qh-sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.qh-muted { color: rgba(44, 40, 35, .74); }

/* intro / manifesto */
.qh-intro { background: var(--qh-cream); padding-top: clamp(60px, 7vw, 100px); padding-bottom: clamp(46px, 5.5vw, 78px); }
.qh-intro-lead { max-width: 900px; margin: 0 auto; text-align: center; }
.qh-intro-statement { font-family: var(--qh-serif); font-weight: 500; font-size: clamp(1.55rem, 3vw, 2.45rem); line-height: 1.24; color: var(--qh-charcoal); margin: .2em auto 0; max-width: 27ch; }
.qh-intro-statement em { font-style: italic; color: var(--qh-rust); }
.qh-ornament { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: clamp(24px, 3.2vw, 38px); }
.qh-ornament .r { height: 1px; width: clamp(44px, 9vw, 110px); background: linear-gradient(90deg, transparent, var(--qh-copper)); }
.qh-ornament .r.right { background: linear-gradient(90deg, var(--qh-copper), transparent); }
.qh-ornament svg { width: 28px; height: 28px; color: var(--qh-copper); flex: none; }
.qh-ethos { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 4vw, 60px); margin-top: clamp(40px, 5vw, 60px); }
.qh-ethos-col { padding-top: 24px; border-top: 1px solid var(--qh-line); }
.qh-ethos-col .en { font-family: var(--qh-serif); font-size: 1.05rem; letter-spacing: .06em; color: var(--qh-copper); }
.qh-ethos-col h4 { font-family: var(--qh-serif); font-weight: 400; font-size: clamp(1.15rem, 1.7vw, 1.5rem); line-height: 1.15; margin: .7em 0 .55em; color: var(--qh-charcoal); }
.qh-ethos-col p { color: rgba(44, 40, 35, .72); font-size: .97rem; line-height: 1.62; margin: 0; }

/* ---------- property feature panels ---------- */
.qh-stays { background: linear-gradient(180deg, var(--qh-cream) 0%, var(--qh-cream-2) 100%); overflow: hidden; padding-top: clamp(44px, 5vw, 72px); }
.qh-feature { position: relative; display: grid; grid-template-columns: repeat(12, 1fr); align-items: center; margin-bottom: clamp(86px, 12vw, 160px); }
.qh-feature:last-child { margin-bottom: 0; }
.qh-f-media { grid-row: 1; grid-column: 1 / 8; position: relative; z-index: 1; }
.qh-feature.flip .qh-f-media { grid-column: 6 / 13; }
.qh-f-frame { position: relative; aspect-ratio: 5/4; border-radius: 3px; overflow: hidden; box-shadow: var(--qh-shadow); }
.qh-f-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.8s var(--qh-ease); display: block; }
.qh-feature:hover .qh-f-frame img { transform: scale(1.05); }
.qh-f-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(33, 31, 27, .04), rgba(33, 31, 27, .24)); }
.qh-f-tag { position: absolute; left: 20px; top: 20px; z-index: 3; color: var(--qh-cream); font-size: .6rem; letter-spacing: .26em; text-transform: uppercase; background: rgba(33, 31, 27, .5); backdrop-filter: blur(8px); padding: .7em 1.1em; border-radius: 2px; }
.qh-f-accent { position: absolute; z-index: 2; width: 40%; max-width: 250px; aspect-ratio: 4/3; border-radius: 3px; overflow: hidden; border: 7px solid var(--qh-cream); box-shadow: var(--qh-shadow-soft); bottom: -42px; left: -28px; }
.qh-feature.flip .qh-f-accent { left: auto; right: -28px; }
.qh-f-accent img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.8s var(--qh-ease); display: block; }
.qh-feature:hover .qh-f-accent img { transform: scale(1.06); }
.qh-f-panel { grid-row: 1; grid-column: 6 / 13; z-index: 4; background: var(--qh-cream); padding: clamp(32px, 3.3vw, 54px); box-shadow: var(--qh-shadow); border: 1px solid var(--qh-line); }
.qh-feature.flip .qh-f-panel { grid-column: 1 / 8; }
.qh-f-idx { font-family: var(--qh-serif); font-size: clamp(2.4rem, 3.6vw, 3.4rem); font-weight: 500; color: var(--qh-sand); line-height: .8; }
.qh-f-eyebrow { font-size: .66rem; letter-spacing: .3em; text-transform: uppercase; color: var(--qh-rust); display: block; margin: 1.1em 0 .9em; }
.qh-f-name { font-size: clamp(1.7rem, 2.7vw, 2.45rem); font-weight: 500; line-height: 1.06; margin-bottom: .7em; }
.qh-f-meta { display: flex; gap: 1.3em; flex-wrap: wrap; color: var(--qh-ink); font-size: .72rem; letter-spacing: .13em; text-transform: uppercase; padding-bottom: 1.2em; margin-bottom: 1.3em; border-bottom: 1px solid var(--qh-line); }
.qh-f-meta span { display: inline-flex; align-items: center; gap: .55em; }
.qh-f-meta svg { width: 16px; height: 16px; stroke: var(--qh-copper); }
.qh-f-blurb { font-family: var(--qh-serif); font-style: italic; font-size: 1.1rem; line-height: 1.5; color: rgba(44, 40, 35, .82); margin-bottom: 1.5em; }
.qh-f-amen { list-style: none; margin: 0 0 1.9em; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: .6em 1.4em; }
.qh-f-amen li { font-size: .85rem; color: rgba(44, 40, 35, .78); display: flex; align-items: center; gap: .65em; line-height: 1.35; }
.qh-f-amen li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--qh-copper); flex: none; }
.qh-f-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.qh-f-link { display: inline-flex; align-items: center; gap: .7em; font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 500; color: var(--qh-charcoal); border-bottom: 1px solid var(--qh-copper); padding-bottom: .5em; transition: gap .4s var(--qh-ease), color .4s var(--qh-ease); }
.qh-f-link svg { width: 20px; height: 12px; }
.qh-f-link:hover { gap: 1.15em; color: var(--qh-rust); }
.qh-f-secondary { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(44, 40, 35, .55); transition: color .4s var(--qh-ease); }
.qh-f-secondary:hover { color: var(--qh-rust); }
.qh-f-rate { font-size: .8rem; color: rgba(44,40,35,.6); letter-spacing: .06em; }
.qh-f-rate b { font-family: var(--qh-serif); font-size: 1.4rem; color: var(--qh-rust); font-weight: 500; }

/* ---------- why stay ---------- */
.qh-why { background: var(--qh-charcoal); color: var(--qh-cream); }
.qh-why h2 { color: var(--qh-cream); }
.qh-why .qh-muted { color: rgba(247, 241, 230, .66); }
.qh-whygrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(247, 241, 230, .12); border: 1px solid rgba(247, 241, 230, .12); border-radius: 3px; overflow: hidden; }
.qh-whyitem { position: relative; background: var(--qh-charcoal); padding: clamp(30px, 2.9vw, 44px) clamp(22px, 2vw, 32px); transition: background .5s var(--qh-ease); overflow: hidden; }
.qh-whyitem::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: var(--qh-copper); transform: scaleX(0); transform-origin: left; transition: transform .55s var(--qh-ease); }
.qh-whyitem:hover { background: #2a2620; }
.qh-whyitem:hover::before { transform: scaleX(1); }
.qh-whyitem .wn { position: absolute; top: clamp(30px, 2.9vw, 44px); right: clamp(22px, 2vw, 32px); font-family: var(--qh-serif); font-size: .95rem; color: rgba(247, 241, 230, .26); }
.qh-whyitem svg { width: 30px; height: 30px; stroke: var(--qh-copper-soft); stroke-width: 1.4; fill: none; margin-bottom: 20px; transition: transform .5s var(--qh-ease); }
.qh-whyitem:hover svg { transform: translateY(-4px); }
.qh-whyitem h4 { color: var(--qh-cream); font-size: 1.12rem; font-weight: 400; margin-bottom: .5em; font-family: var(--qh-sans); }
.qh-whyitem p { color: rgba(247, 241, 230, .6); font-size: .92rem; margin: 0; line-height: 1.55; }

/* ---------- day scenes ---------- */
.qh-day { background: var(--qh-charcoal); }
.qh-day-intro { background: linear-gradient(180deg, var(--qh-cream) 0%, var(--qh-cream-2) 100%); padding: clamp(80px, 11vw, 150px) 0 clamp(42px, 6vw, 72px); }
.qh-day-sub { max-width: 52ch; margin: 1.3em auto 0; }
.qh-day-arc { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 2em; color: var(--qh-rust); }
.qh-day-arc .line { height: 1px; width: clamp(40px, 12vw, 120px); background: linear-gradient(90deg, transparent, var(--qh-copper)); }
.qh-day-arc .line.r { background: linear-gradient(90deg, var(--qh-copper), transparent); }
.qh-day-arc svg { width: 20px; height: 20px; stroke: var(--qh-copper); fill: none; }
.qh-day-arc .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--qh-sand); }
.qh-scene { position: relative; min-height: clamp(450px, 66vh, 660px); display: flex; align-items: center; overflow: hidden; }
.qh-scene-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.07); transition: transform 2.6s var(--qh-ease); }
.qh-scene.in .qh-scene-bg { transform: scale(1); }
.qh-scene-veil { position: absolute; inset: 0; }
.qh-scene.left .qh-scene-veil { background: linear-gradient(90deg, rgba(16, 13, 10, .82) 0%, rgba(16, 13, 10, .5) 42%, rgba(16, 13, 10, .08) 70%, rgba(16, 13, 10, 0) 100%); }
.qh-scene.right .qh-scene-veil { background: linear-gradient(270deg, rgba(16, 13, 10, .82) 0%, rgba(16, 13, 10, .5) 42%, rgba(16, 13, 10, .08) 70%, rgba(16, 13, 10, 0) 100%); }
.qh-scene-inner { position: relative; z-index: 2; width: 100%; display: flex; }
.qh-scene.right .qh-scene-inner { justify-content: flex-end; }
.qh-scene-body { max-width: 440px; color: var(--qh-cream); text-shadow: 0 1px 22px rgba(12, 9, 6, .5); }
.qh-scene-time { display: flex; align-items: center; gap: .55em; margin-bottom: .5em; }
.qh-scene-time svg { width: 30px; height: 30px; flex: none; }
.qh-st-num { font-family: var(--qh-serif); font-size: clamp(2.4rem, 5vw, 3.5rem); font-weight: 500; line-height: 1; color: #fff; }
.qh-st-num small { font-size: .34em; letter-spacing: .16em; margin-left: .45em; font-family: var(--qh-sans); color: var(--qh-copper-soft); vertical-align: .35em; }
.qh-scene-phase { font-size: .66rem; letter-spacing: .32em; text-transform: uppercase; color: var(--qh-copper-soft); margin-bottom: 1.1em; }
.qh-scene-title { font-size: clamp(1.8rem, 3.2vw, 2.7rem); font-weight: 500; margin-bottom: .55em; color: #fff; }
.qh-scene-copy { color: rgba(247, 241, 230, .92); font-size: 1.06rem; line-height: 1.62; margin: 0; }

/* ---------- host ---------- */
.qh-host { background: var(--qh-cream); }
.qh-hostgrid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(44px, 6vw, 96px); align-items: center; }
.qh-hostfigure { position: relative; }
.qh-hostfigure::after { content: ""; position: absolute; right: -20px; bottom: -20px; width: 62%; height: 56%; border: 1px solid rgba(196, 112, 63, .55); border-radius: 3px; z-index: 0; pointer-events: none; }
.qh-hostphoto { position: relative; z-index: 1; aspect-ratio: 4/5; border-radius: 3px; overflow: hidden; box-shadow: var(--qh-shadow); }
.qh-hostphoto img { width: 100%; height: 100%; object-fit: cover; display: block; }
.qh-hostphoto .badge { position: absolute; left: 18px; bottom: 18px; background: rgba(247, 241, 230, .94); color: var(--qh-charcoal); padding: .7em 1.1em; border-radius: 2px; font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; backdrop-filter: blur(4px); font-weight: 500; }
.qh-host-quote { position: relative; margin: 1.1em 0 1.1em; }
.qh-host-quote .qg { position: absolute; left: -.06em; top: -.5em; font-family: var(--qh-serif); font-size: clamp(4rem, 7vw, 6rem); line-height: 1; color: var(--qh-sand); z-index: 0; }
.qh-host blockquote { position: relative; z-index: 1; font-family: var(--qh-serif); font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 500; line-height: 1.42; color: var(--qh-charcoal); margin: 0; border: none; padding: 0; }
.qh-host .sig { font-family: var(--qh-serif); font-style: italic; font-size: 1.6rem; color: var(--qh-rust); }
.qh-host .sigsub { font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(44, 40, 35, .6); margin-top: .4em; }
.qh-host-facts { display: flex; gap: clamp(1.5em, 3vw, 2.6em); flex-wrap: wrap; margin-top: 1.9em; padding-top: 1.6em; border-top: 1px solid var(--qh-line); }
.qh-host-facts span { font-size: .8rem; letter-spacing: .03em; color: rgba(44, 40, 35, .66); }
.qh-host-facts b { display: block; font-family: var(--qh-serif); font-size: 1.55rem; color: var(--qh-rust); font-weight: 400; margin-bottom: .12em; }

/* ---------- reviews ---------- */
.qh-reviews { background: var(--qh-ink); color: var(--qh-cream); position: relative; overflow: hidden; }
.qh-reviews h2 { color: var(--qh-cream); }
.qh-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 3vw, 40px); margin-bottom: clamp(48px, 6vw, 72px); text-align: center; border-top: 1px solid rgba(247, 241, 230, .16); border-bottom: 1px solid rgba(247, 241, 230, .16); padding: clamp(30px, 4vw, 48px) 0; }
.qh-stat .n { font-family: var(--qh-serif); font-size: clamp(2.4rem, 4.4vw, 3.5rem); font-weight: 500; color: var(--qh-cream); line-height: 1; }
.qh-stat .l { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--qh-copper-soft); margin-top: .9em; }
.qh-rcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.qh-rcard { position: relative; background: rgba(247, 241, 230, .05); border: 1px solid rgba(247, 241, 230, .12); border-radius: 3px; padding: clamp(28px, 2.8vw, 40px); transition: transform .5s var(--qh-ease), background .5s var(--qh-ease), border-color .5s var(--qh-ease); overflow: hidden; }
.qh-rcard::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: var(--qh-copper); transform: scaleX(0); transform-origin: left; transition: transform .55s var(--qh-ease); }
.qh-rcard:hover { transform: translateY(-6px); background: rgba(247, 241, 230, .08); border-color: rgba(214, 138, 85, .4); }
.qh-rcard:hover::before { transform: scaleX(1); }
.qh-rcard .stars { color: var(--qh-copper-soft); letter-spacing: .18em; font-size: .9rem; margin-bottom: 1.1em; }
.qh-rcard p { font-family: var(--qh-serif); font-style: italic; font-size: 1.14rem; color: rgba(247, 241, 230, .94); line-height: 1.55; margin: 0 0 1.5em; }
.qh-rcard .who { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(247, 241, 230, .6); }
.qh-rcard .who b { display: block; color: var(--qh-cream); font-weight: 500; margin-bottom: .3em; letter-spacing: .16em; }

/* light variant (reviews page on cream) */
.qh-rcards.on-cream .qh-rcard { background: #fff; border-color: var(--qh-line); }
.qh-rcards.on-cream .qh-rcard p { color: rgba(44, 40, 35, .85); }
.qh-rcards.on-cream .qh-rcard .who { color: rgba(44, 40, 35, .55); }
.qh-rcards.on-cream .qh-rcard .who b { color: var(--qh-charcoal); }
.qh-rcards.on-cream .qh-rcard:hover { background: #fff; }

/* ---------- final CTA ---------- */
.qh-finalcta { position: relative; overflow: hidden; color: var(--qh-cream); text-align: center; }
.qh-finalcta .bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.05); }
.qh-finalcta .ov { position: absolute; inset: 0; background: radial-gradient(120% 120% at 50% 28%, rgba(20, 16, 12, .5), rgba(15, 11, 8, .86)); }
.qh-finalcta .inner { position: relative; z-index: 2; padding: clamp(96px, 14vw, 180px) 0; }
.qh-finalcta h2 { color: var(--qh-cream); font-size: clamp(2.3rem, 5.2vw, 4.2rem); font-weight: 500; max-width: 16ch; margin: .2em auto .5em; line-height: 1.04; }
.qh-finalcta p { color: rgba(247, 241, 230, .9); max-width: 48ch; margin: 0 auto 2.2em; font-size: 1.1rem; }
.qh-finalcta .btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.qh-finalcta .reassure { margin-top: 2em; font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(247, 241, 230, .62); display: flex; gap: 1.4em; justify-content: center; flex-wrap: wrap; }
.qh-finalcta .reassure span { display: inline-flex; align-items: center; gap: .5em; }
.qh-finalcta .reassure .star { color: var(--qh-copper-soft); }

/* ---------- footer ---------- */
footer.qh-footer { background: var(--qh-charcoal); color: rgba(247, 241, 230, .7); padding: clamp(56px, 7vw, 90px) 0 34px; border-top: 2px solid var(--qh-rust); }
.qh-foot-top { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; padding-bottom: clamp(40px, 5vw, 56px); margin-bottom: clamp(40px, 5vw, 56px); border-bottom: 1px solid rgba(247, 241, 230, .14); }
.qh-foot-top h3 { font-family: var(--qh-serif); font-weight: 500; font-size: clamp(1.7rem, 3.2vw, 2.6rem); color: var(--qh-cream); max-width: 20ch; line-height: 1.12; margin: 0; }
.qh-foot-loc { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--qh-copper-soft); }
.qh-footgrid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: clamp(28px, 4vw, 56px); margin-bottom: 54px; }
footer.qh-footer .qh-brand { color: var(--qh-cream); margin-bottom: 1.2em; }
footer.qh-footer .fdesc { font-size: .95rem; max-width: 34ch; line-height: 1.6; }
footer.qh-footer h5 { color: var(--qh-cream); font-family: var(--qh-sans); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 500; margin: 0 0 1.4em; }
footer.qh-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .9em; }
footer.qh-footer ul a { font-size: .95rem; transition: color .4s var(--qh-ease); color: rgba(247, 241, 230, .7); }
footer.qh-footer ul a:hover { color: var(--qh-copper-soft); }
footer.qh-footer .contact a { display: block; color: rgba(247, 241, 230, .85); margin-bottom: .7em; font-size: .98rem; }
footer.qh-footer .contact a:hover { color: var(--qh-copper-soft); }
.qh-footbar { border-top: 1px solid rgba(247, 241, 230, .14); padding-top: 26px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .78rem; letter-spacing: .04em; color: rgba(247, 241, 230, .5); }
.qh-footbar .pill { display: inline-flex; align-items: center; gap: .5em; color: var(--qh-copper-soft); }

/* ---------- inner banner (shared banner blade re-skin) ---------- */
.inner-banner { position: relative; min-height: clamp(320px, 44vh, 460px); display: flex; align-items: flex-end; background-size: cover; background-position: center; }
.inner-banner .overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(18, 15, 11, .72) 0%, rgba(18, 15, 11, .18) 55%, rgba(18, 15, 11, .35) 100%); }
.inner-banner .content { position: relative; z-index: 2; padding: 0 0 clamp(36px, 5vw, 60px); }
.inner-banner .content h1 { color: var(--qh-cream); font-size: clamp(2.2rem, 4.6vw, 3.6rem); font-weight: 500; text-shadow: 0 2px 34px rgba(0, 0, 0, .4); }
.pagination { display: flex; align-items: center; gap: .7em; list-style: none; padding: 18px 0 0; margin: 0; font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(44, 40, 35, .6); border-radius: 0; }
.pagination li { display: inline-flex; align-items: center; }
.pagination a { color: rgba(44, 40, 35, .6); }
.pagination a:hover { color: var(--qh-rust); }
.pagination .angle { color: var(--qh-copper); font-size: .6rem; }

/* ---------- inner page generic ---------- */
.qh-page { background: var(--qh-cream); }
.qh-prose { max-width: 70ch; }
.qh-prose p { color: rgba(44, 40, 35, .8); }

/* stays / property list cards */
.qh-filterbar {
  background: #fff; border: 1px solid var(--qh-line); border-radius: 3px; box-shadow: var(--qh-shadow-soft);
  padding: clamp(18px, 2.4vw, 28px); margin-top: -54px; position: relative; z-index: 5;
}
.qh-filterbar form { display: grid; grid-template-columns: repeat(6, 1fr) auto; gap: 14px; align-items: end; margin: 0; }
.qh-filterbar .field { display: flex; flex-direction: column; gap: 6px; }
.qh-filterbar label { font-size: .6rem; letter-spacing: .22em; text-transform: uppercase; color: var(--qh-rust); font-weight: 500; margin: 0; }
.qh-filterbar input, .qh-filterbar select {
  border: 1px solid var(--qh-line); border-radius: 2px; background: var(--qh-cream);
  padding: .65em .8em; font-family: var(--qh-sans); font-size: .92rem; color: var(--qh-ink); width: 100%;
}
.qh-filterbar input:focus, .qh-filterbar select:focus { outline: 2px solid var(--qh-copper); outline-offset: 0; }

/* attractions */
.qh-attr-cat { margin-bottom: clamp(54px, 7vw, 86px); }
.qh-attr-cat-head { display: flex; align-items: baseline; gap: 18px; flex-wrap: wrap; margin-bottom: clamp(24px, 3vw, 40px); }
.qh-attr-cat-head h3 { font-size: clamp(1.6rem, 2.8vw, 2.3rem); margin: 0; }
.qh-attr-cat-head p { margin: 0; color: rgba(44, 40, 35, .6); font-size: .95rem; }
.qh-attr-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.qh-attr-card { background: #fff; border: 1px solid var(--qh-line); border-radius: 3px; overflow: hidden; transition: transform .5s var(--qh-ease), box-shadow .5s var(--qh-ease); display: flex; flex-direction: column; }
.qh-attr-card:hover { transform: translateY(-6px); box-shadow: var(--qh-shadow-soft); }
.qh-attr-card .ph { aspect-ratio: 16/10; overflow: hidden; }
.qh-attr-card .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--qh-ease); display: block; }
.qh-attr-card:hover .ph img { transform: scale(1.06); }
.qh-attr-card .body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.qh-attr-card h4 { font-size: 1.35rem; font-weight: 500; margin-bottom: .5em; }
.qh-attr-card p { font-size: .92rem; color: rgba(44, 40, 35, .72); line-height: 1.6; margin: 0 0 1.4em; flex: 1; }
.qh-attr-card .qh-f-link { align-self: flex-start; font-size: .7rem; }

/* contact */
.qh-contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(36px, 5vw, 80px); align-items: start; }
.qh-contact-card { background: var(--qh-charcoal); color: var(--qh-cream); border-radius: 3px; padding: clamp(30px, 3.4vw, 48px); }
.qh-contact-card h3 { color: var(--qh-cream); font-size: 1.7rem; margin-bottom: .9em; }
.qh-contact-card a { color: rgba(247, 241, 230, .9); display: flex; align-items: center; gap: .7em; margin-bottom: 1em; font-size: 1rem; }
.qh-contact-card a:hover { color: var(--qh-copper-soft); }
.qh-contact-card .lbl { font-size: .62rem; letter-spacing: .24em; text-transform: uppercase; color: var(--qh-copper-soft); display: block; margin: 1.4em 0 .5em; }
.qh-form .form-group { margin-bottom: 18px; }
.qh-form label { font-size: .64rem; letter-spacing: .22em; text-transform: uppercase; color: var(--qh-rust); font-weight: 500; margin-bottom: 7px; display: block; }
.qh-form input, .qh-form select, .qh-form textarea {
  width: 100%; border: 1px solid var(--qh-line); border-radius: 2px; background: #fff;
  padding: .8em .95em; font-family: var(--qh-sans); font-size: .95rem; color: var(--qh-ink);
}
.qh-form input:focus, .qh-form select:focus, .qh-form textarea:focus { outline: 2px solid var(--qh-copper); outline-offset: 0; border-color: var(--qh-copper); }

/* faq */
.qh-faq-group { margin-bottom: clamp(40px, 5vw, 64px); }
.qh-faq-group h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); margin-bottom: 1em; display: flex; align-items: center; gap: .6em; }
.qh-faq-group h3::after { content: ""; flex: 1; height: 1px; background: var(--qh-line); }
.qh-acc { border: 1px solid var(--qh-line); border-radius: 3px; background: #fff; margin-bottom: 12px; overflow: hidden; }
.qh-acc summary {
  cursor: pointer; list-style: none; padding: 20px 24px; display: flex; justify-content: space-between; align-items: center;
  font-family: var(--qh-serif); font-size: 1.18rem; font-weight: 500; color: var(--qh-charcoal); transition: color .3s var(--qh-ease);
}
.qh-acc summary::-webkit-details-marker { display: none; }
.qh-acc summary::after { content: "+"; font-family: var(--qh-sans); font-size: 1.3rem; color: var(--qh-copper); transition: transform .4s var(--qh-ease); font-weight: 300; }
.qh-acc[open] summary::after { transform: rotate(45deg); }
.qh-acc[open] summary { color: var(--qh-rust); }
.qh-acc .ans { padding: 0 24px 22px; color: rgba(44, 40, 35, .78); font-size: .97rem; line-height: 1.65; max-width: 75ch; }

/* gallery */
.qh-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.qh-gallery-grid a { display: block; border-radius: 3px; overflow: hidden; position: relative; aspect-ratio: 4/3; }
.qh-gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--qh-ease); display: block; }
.qh-gallery-grid a:hover img { transform: scale(1.05); }
.qh-gallery-grid .cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 16px 12px; background: linear-gradient(0deg, rgba(18, 15, 11, .7), transparent); color: var(--qh-cream); font-size: .78rem; letter-spacing: .08em; opacity: 0; transition: opacity .5s var(--qh-ease); }
.qh-gallery-grid a:hover .cap { opacity: 1; }

/* host band (about page) */
.qh-about-band { background: var(--qh-cream-2); }

/* toastr above nav */
#toast-container { z-index: 2000; }

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .qh-whygrid { grid-template-columns: repeat(2, 1fr); }
  .qh-stats { grid-template-columns: repeat(2, 1fr); }
  .qh-rcards { grid-template-columns: 1fr; }
  .qh-footgrid { grid-template-columns: 1fr 1fr; }
  .qh-attr-grid { grid-template-columns: 1fr 1fr; }
  .qh-gallery-grid { grid-template-columns: 1fr 1fr; }
  .qh-filterbar form { grid-template-columns: repeat(3, 1fr); }
  .qh-contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  nav.qh-links {
    position: fixed; inset: 0 0 0 auto; width: min(80vw, 340px); max-width: 340px; background: rgba(33, 31, 27, .98); backdrop-filter: blur(16px);
    flex-direction: column; justify-content: center; align-items: flex-start; gap: 26px; padding: 0 40px;
    transform: translateX(100%); visibility: hidden;
    transition: transform .55s var(--qh-ease), visibility .55s var(--qh-ease); z-index: 1039;
  }
  nav.qh-links.open { transform: translateX(0); visibility: visible; }
  nav.qh-links a { color: var(--qh-cream) !important; font-size: 1rem; }
  header.qh-nav.scrolled nav.qh-links a, header.qh-nav.solid nav.qh-links a { color: var(--qh-cream) !important; }
  .qh-navtoggle { display: flex; z-index: 1041; }
  .qh-ethos { grid-template-columns: 1fr; gap: 34px; }
  .qh-hostgrid { grid-template-columns: 1fr; gap: 38px; }
  .qh-feature { grid-template-columns: 1fr; }
  .qh-f-media, .qh-feature.flip .qh-f-media { grid-column: 1; grid-row: 1; }
  .qh-f-panel, .qh-feature.flip .qh-f-panel { grid-column: 1; grid-row: 2; margin: -46px clamp(10px, 4vw, 26px) 0; }
  .qh-f-accent { display: none; }
  .qh-scene { min-height: clamp(420px, 74vh, 580px); align-items: flex-end; }
  .qh-scene .qh-scene-veil { background: linear-gradient(0deg, rgba(18, 15, 12, .85) 0%, rgba(18, 15, 12, .3) 52%, rgba(18, 15, 12, 0) 100%) !important; }
  .qh-scene-inner, .qh-scene.right .qh-scene-inner { justify-content: flex-start; }
  .qh-scene-body { max-width: none; padding-bottom: 6px; }
  .qh-hostphoto { aspect-ratio: 4/3; max-width: 520px; }
  /* Compact sticky bar on small screens: a slim full-width CTA instead of
     the stacked date/guest fields (which ate half the viewport). The full
     search form lives on /stays where there's room for it. */
  .qh-availbar .ab-brand { display: none; }
  .qh-availbar .field { display: none; }
  .qh-availbar form { width: 100%; }
  .qh-availbar .qh-btn { flex: 1; justify-content: center; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .qh-whygrid { grid-template-columns: 1fr; }
  .qh-stats { grid-template-columns: 1fr 1fr; gap: 30px 16px; }
  .qh-hero-cta .qh-btn { flex: 1; justify-content: center; }
  .qh-availbar .field.dates { display: none; }
  .qh-attr-grid { grid-template-columns: 1fr; }
  .qh-gallery-grid { grid-template-columns: 1fr; }
  .qh-filterbar form { grid-template-columns: 1fr 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .001ms !important; }
  .qh-reveal { opacity: 1; transform: none; }
  .qh-hero-media .slide { animation: none !important; }
  #qhHeroVideo { display: none !important; }
}
