/* =========================================================
   DUANG JARAS by the River Kwae
   Editorial / boutique-journal redesign
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  --ink:        #2b2923;
  --ink-soft:   #5d5a4e;
  --paper:      #f1e5d0;
  --paper-2:    #e5d3b8;
  --paper-card: #f8efe0;
  --forest:     #3f6b4e;
  --forest-deep:#223a2e;
  --sage:       #8aa07d;
  --river-blue: #2f7894;
  --river-soft: #78aebe;
  --wood:       #7a5434;
  --wood-light: #b58a5d;
  --wood-deep:  #4f3425;
  --line:       rgba(122,84,52,0.22);
  --line-soft:  rgba(122,84,52,0.10);

  --serif: "Playfair Display", "Noto Serif Thai", Georgia, serif;
  --sans:  "Lato", "Sarabun", "Open Sans", system-ui, -apple-system, sans-serif;

  --wrap: 1280px;
  --pad:  clamp(1.25rem, 5vw, 4.5rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* , *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

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

/* subtle paper grain over everything */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: 0.04; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
::selection { background: var(--forest); color: var(--paper); }

h1,h2,h3,h4 { font-family: var(--serif); font-weight: 500; line-height: 1.04; letter-spacing: 0; color: var(--ink); text-wrap: balance; }

/* -------------------------------------------------------
   Typography fix — ภาษาไทยต้องการพื้นที่แนวตั้งมากกว่า
   และ "ห้าม" ใช้ letter-spacing ติดลบ ไม่งั้นสระ/วรรณยุกต์
   จะชนกันและดู "ตก/แปลก" — จึงแยกกฎไทยออกจากอังกฤษ
   ------------------------------------------------------- */
[data-lang="th"] h1,
[data-lang="th"] h2,
[data-lang="th"] h3,
[data-lang="th"] h4 {
  letter-spacing: 0;
  line-height: 1.22;
  font-weight: 600;
  word-break: normal;
  overflow-wrap: anywhere;
}
[data-lang="th"] .hero h1 { line-height: 1.12; letter-spacing: 0; }
[data-lang="th"] .footer__big { line-height: 1.0; letter-spacing: 0; }
[data-lang="th"] .statement__body p.lead-big { letter-spacing: 0; line-height: 1.42; }
[data-lang="th"] body,
[data-lang="th"] .house__desc,
[data-lang="th"] .exp-row__text,
[data-lang="th"] .aud-row p { line-height: 1.7; }
/* วรรณยุกต์/สระบนของไทยจะไม่ถูกตัดบนสุด */
[data-lang="th"] h1,
[data-lang="th"] h2,
[data-lang="th"] .hero h1,
[data-lang="th"] .footer__big { padding-top: 0.06em; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(4.5rem, 11vw, 11rem); position: relative; }

/* micro label */
.kicker {
  font-family: var(--sans);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--wood);
  display: inline-flex; align-items: center; gap: 0.7rem;
}
.kicker::before { content: ""; width: 26px; height: 1px; background: var(--wood); display: inline-block; }
.kicker--center { justify-content: center; }

.index-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--wood);
  letter-spacing: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--sans); font-weight: 600; font-size: 0.82rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 1.08rem 2.15rem; border-radius: 2px;
  border: 1px solid var(--ink); background: transparent; color: var(--ink);
  cursor: pointer; transition: background .45s var(--ease), color .45s var(--ease), border-color .45s var(--ease), transform .45s var(--ease), box-shadow .45s var(--ease);
  position: relative;
}
.btn .ar { transition: transform .45s var(--ease); }
.btn:hover { transform: translateY(-1px); }
.btn:hover .ar { transform: translateX(5px); }
.btn--solid { background: var(--forest); border-color: var(--forest); color: var(--paper); box-shadow: 0 14px 34px rgba(34,58,46,0.18); }
.btn--solid:hover { background: var(--forest-deep); border-color: var(--forest-deep); box-shadow: 0 18px 42px rgba(34,58,46,0.24); }
.btn--light { border-color: var(--paper); color: var(--paper); }
.btn--light:hover { background: var(--paper); color: var(--forest-deep); }
.btn--ink:hover { background: var(--river-blue); border-color: var(--river-blue); color: var(--paper); }
.btn--block { width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; height: 78px;
  transition: background .5s var(--ease), height .5s var(--ease), box-shadow .5s var(--ease);
  mix-blend-mode: normal;
}
.header.scrolled { background: rgba(241,229,208,0.92); backdrop-filter: blur(12px); height: 64px; box-shadow: 0 1px 0 var(--line); }
.header__inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }

.brand { display: flex; align-items: baseline; gap: 0.55rem; color: var(--paper); transition: color .5s var(--ease); }
.header.scrolled .brand, .header.light .brand { color: var(--ink); }
.brand__name { font-family: var(--serif); font-size: 1.45rem; font-weight: 600; letter-spacing: 0; }
.brand__sub { font-family: var(--sans); font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; opacity: 0.75; }

.nav { display: flex; align-items: center; gap: 1.35rem; }
.nav__links { display: flex; gap: clamp(0.75rem, 1.25vw, 1.35rem); }
.nav__links a { color: var(--paper); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; position: relative; transition: color .5s var(--ease), opacity .3s; opacity: 0.94; white-space: nowrap; }
.header.scrolled .nav__links a { color: var(--wood-deep); }
.header.scrolled .nav__links a:hover { color: var(--river-blue); }
.nav__links a::after { content:""; position:absolute; left:0; bottom:-5px; height:1px; width:0; background: var(--river-blue); transition: width .4s var(--ease); }
.nav__links a:hover::after { width:100%; }

.nav__right { display: flex; align-items: center; gap: 1.3rem; }
.lang { display: flex; align-items: center; font-family: var(--sans); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.05em; color: var(--paper); }
.header.scrolled .lang { color: var(--ink); }
.lang button { background: none; border: none; cursor: pointer; color: inherit; font: inherit; padding: 0 0.3rem; opacity: 0.5; transition: opacity .3s; }
.lang button.is-active { opacity: 1; text-decoration: underline; text-underline-offset: 4px; }
.lang span { opacity: 0.35; }

.nav-toggle { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { width: 28px; height: 1.5px; background: var(--paper); transition: .4s var(--ease); }
.header.scrolled .nav-toggle span { background: var(--ink); }

/* ---------- Side index ---------- */
.side-index { position: fixed; right: 2rem; top: 50%; transform: translateY(-50%); z-index: 90; display: flex; flex-direction: column; gap: 1rem; }
.side-index a { display: flex; align-items: center; gap: 0.6rem; justify-content: flex-end; font-family: var(--sans); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink); opacity: 0.4; transition: opacity .4s; }
.side-index a .dot { width: 7px; height: 7px; border: 1px solid currentColor; border-radius: 50%; transition: background .4s; }
.side-index a .lbl { opacity: 0; transform: translateX(6px); transition: .4s var(--ease); }
.side-index a:hover, .side-index a.active { opacity: 1; }
.side-index a:hover .lbl, .side-index a.active .lbl { opacity: 1; transform: none; }
.side-index a.active .dot { background: var(--wood); border-color: var(--wood); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; padding-top: 92px; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-end; color: var(--paper); overflow: hidden; background: var(--forest-deep); isolation: isolate; }
.hero__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; background: var(--forest-deep); }
.hero__bg img, .hero__bg-video { width: 100%; height: 100%; object-fit: cover; object-position: center 62%; transform: scale(1.045); filter: saturate(1.12) contrast(1.06) brightness(1.08); animation: heroZoom 14s var(--ease) forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero::after { content: none; }
.hero__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; }
.hero__photo-strip { --tilt-x: 0deg; --tilt-y: 0deg; --drift-x: 0px; --drift-y: 0px; --hover-shift-x: 0px; --hover-shift-y: 0px; --focus-shift-x: 0px; --focus-shift-y: 0px; position: absolute; right: clamp(1rem, 4vw, 4rem); bottom: clamp(1.2rem, 4vw, 3.2rem); z-index: 2; display: grid; grid-template-columns: repeat(3, minmax(86px, 1fr)); gap: 0.55rem; width: min(34vw, 520px); pointer-events: auto; perspective: 1000px; transform-style: preserve-3d; transform: translate3d(var(--drift-x), var(--drift-y), 0) rotateX(var(--tilt-y)) rotateY(var(--tilt-x)); transition: transform .7s var(--ease); }
.hero__photo-strip::before { content: ""; position: absolute; inset: -12%; z-index: 0; pointer-events: none; background: radial-gradient(circle at 52% 44%, rgba(239,231,214,0.24), transparent 58%); filter: blur(14px); opacity: 0; transform: translateY(12px) scale(0.94); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.hero__photo-strip img { --base-y: 0rem; --base-r: -1.2deg; --hover-y: -0.55rem; --hover-r: -0.8deg; --depth: 12px; position: relative; z-index: 1; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 6px; border: 1px solid rgba(239,231,214,0.38); box-shadow: 0 18px 42px rgba(22,30,24,0.28); filter: saturate(1.06) contrast(1.02); transform: translate3d(0, var(--base-y), var(--depth)) rotate(var(--base-r)) scale(1); transition: transform .68s cubic-bezier(.19,1,.22,1), filter .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease); will-change: transform; }
.hero__photo-strip img:nth-child(2) { --base-y: -1.2rem; --base-r: 0.7deg; --hover-y: -1.85rem; --hover-r: 0.6deg; --depth: 34px; }
.hero__photo-strip img:nth-child(3) { --base-y: 0.7rem; --base-r: 1.6deg; --hover-y: 0.05rem; --hover-r: 1deg; --depth: 20px; }
.hero__photo-strip:hover::before { opacity: 1; transform: translateY(0) scale(1); }
.hero__photo-strip:hover img { filter: saturate(1.14) contrast(1.05) brightness(1.04); border-color: rgba(239,231,214,0.6); box-shadow: 0 24px 56px rgba(17,27,22,0.38); transform: translate3d(var(--hover-shift-x), calc(var(--hover-y) + var(--hover-shift-y)), var(--depth)) rotate(calc(var(--base-r) + var(--hover-r))) scale(1.028); }
.hero__photo-strip img:hover { transform: translate3d(var(--focus-shift-x), calc(var(--hover-y) - 0.35rem + var(--focus-shift-y)), calc(var(--depth) + 22px)) rotate(calc(var(--base-r) + var(--hover-r))) scale(1.055); box-shadow: 0 30px 70px rgba(14,24,19,0.46); }
.hero__inner { position: relative; z-index: 3; padding-bottom: clamp(3rem, 7vw, 6.5rem); width:100%; pointer-events: none; }
.hero__inner a, .hero__inner button { pointer-events: auto; }
.hero__top { font-family: var(--sans); font-size: 0.74rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(247,239,222,0.92); margin-bottom: 1.4rem; text-shadow: 0 2px 18px rgba(0,0,0,0.28); }
.hero h1 { color: var(--paper); font-size: clamp(2.25rem, 5.4vw, 5.9rem); font-weight: 500; line-height: 1.06; letter-spacing: 0; max-width: 16.5ch; text-shadow: 0 3px 28px rgba(0,0,0,0.28); white-space: pre-line; }
.hero h1 em { font-style: italic; font-weight: 400; color: var(--sage); }
.hero__meta { margin-top: clamp(1.6rem, 4vw, 2.6rem); display: flex; flex-wrap: wrap; align-items: flex-end; gap: clamp(1.5rem,5vw,4rem); border-top: 1px solid rgba(239,231,214,0.3); padding-top: 1.4rem; }
.hero__sub { font-size: clamp(1.02rem, 1.45vw, 1.18rem); max-width: 42ch; color: rgba(241,229,208,0.94); }
.hero__coords { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(239,231,214,0.7); margin-left: auto; }
.hero__cta { margin-top: 1.8rem; display: flex; gap: 0.9rem; flex-wrap: wrap; }

/* ---------- Marquee ---------- */
.marquee { background: var(--forest); color: var(--paper); padding: 1.15rem 0; overflow: hidden; white-space: nowrap; border-block: 1px solid var(--forest-deep); }
.marquee__track { display: inline-flex; gap: 2.5rem; animation: marquee 26s linear infinite; }
.marquee span { font-family: var(--serif); font-style: italic; font-size: clamp(1.3rem, 3vw, 2.1rem); display: inline-flex; align-items: center; gap: 2.5rem; }
.marquee span::after { content: "—"; color: var(--sage); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Statement / intro ---------- */
.statement { display: grid; grid-template-columns: 4fr 7fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.statement__head { position: sticky; top: 110px; }
.statement__head h2 { font-size: clamp(2rem, 4vw, 3.4rem); margin-top: 1.2rem; font-weight: 400; }
.statement__body p.lead-big { font-size: clamp(1.5rem, 3.2vw, 2.4rem); font-family: var(--serif); font-weight: 400; line-height: 1.28; letter-spacing: 0; color: var(--ink); }
.statement__body p.lead-big::first-letter { /* keep simple */ }
.statement__body p.muted { color: var(--ink-soft); margin-top: 1.6rem; max-width: 56ch; }
.pts { margin-top: 2.4rem; display: grid; gap: 0; border-top: 1px solid var(--line); }
.pts li { display: grid; grid-template-columns: auto 1fr; gap: 1.2rem; padding: 1.1rem 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.pts li i { font-style: normal; font-family: var(--serif); font-style: italic; color: var(--wood); font-size: 0.95rem; }
.self-note { margin-top: 1.8rem; padding: 1.25rem 1.4rem; border: 1px solid var(--line); background: rgba(255,255,255,0.46); border-radius: 8px; }
.self-note__label { display: block; font-family: var(--sans); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--wood); margin-bottom: 0.55rem; }
.self-note h3 { font-family: var(--sans); font-size: clamp(1rem, 1.8vw, 1.18rem); line-height: 1.35; margin-bottom: 0.45rem; color: var(--ink); }
.self-note p { color: var(--ink-soft); max-width: 64ch; line-height: 1.72; }

/* ---------- Our Story / Founder ---------- */
.story { background: var(--paper-2); }
.story-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.story__media {
  position: sticky;
  top: 110px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--forest-deep);
}
.story__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.02);
}
.story__body h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 400;
  margin: 1rem 0 1.8rem;
  max-width: 20ch;
}
.story__text {
  display: grid;
  gap: 1.15rem;
}
.story__text p {
  color: var(--ink-soft);
  line-height: 1.78;
  max-width: 62ch;
  font-size: 1rem;
}
.story__sign {
  margin-top: 2.2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}
.story__sign-off {
  color: var(--ink-soft);
  font-style: italic;
  font-family: var(--serif);
  font-size: 1.02rem;
  margin-bottom: 0.9rem;
}
.story__sign-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--ink);
}
.story__sign-role {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--wood);
  margin-top: 0.25rem;
}
@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; }
  .story__media { position: static; aspect-ratio: 16 / 10; }
}

/* ---------- Experience editorial list ---------- */
.exp-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1rem; margin-bottom: clamp(2rem,5vw,3.5rem); }
.exp-head h2 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 400; max-width: 16ch; }
.exp-list { border-top: 1px solid var(--line); }
.exp-row { display: grid; grid-template-columns: 5rem 1fr 1.6fr; gap: clamp(1rem,3vw,3rem); align-items: center; padding: clamp(1.5rem,3.5vw,2.6rem) 0; border-bottom: 1px solid var(--line); transition: padding-left .5s var(--ease), background .5s var(--ease); }
.exp-row:hover { padding-left: 1.2rem; }
.exp-row__num { font-family: var(--serif); font-style: italic; font-size: 1.1rem; color: var(--wood); }
.exp-row__title { font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2.4rem); font-weight: 400; }
.exp-row__text { color: var(--ink-soft); font-size: 1rem; }

/* ---------- Houses lookbook ---------- */
.houses-intro { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1.5rem; margin-bottom: clamp(2.5rem,6vw,4.5rem); }
.houses-intro h2 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 400; }
.houses-intro p { color: var(--ink-soft); max-width: 34ch; }
.house { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 5vw, 4.5rem); align-items: center; padding-block: clamp(2.5rem, 6vw, 5rem); border-top: 1px solid var(--line); }
.house:last-child { border-bottom: 1px solid var(--line); }
.house--flip .house__media,
.house--flip .house__gallery { order: 2; }
.house__media { position: relative; overflow: hidden; aspect-ratio: 5/4; }
.house__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.house:hover .house__media img { transform: scale(1.05); }
.house__media .tag { position: absolute; top: 1rem; left: 1rem; background: var(--paper); color: var(--ink); font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; padding: 0.4rem 0.8rem; }
.house__idx { font-family: var(--serif); font-style: italic; font-size: 1rem; color: var(--wood); }
.house__name { font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 400; margin: 0.6rem 0 1rem; }
.house__desc { color: var(--ink-soft); max-width: 42ch; }
.house__feat { display: flex; flex-wrap: wrap; gap: 0; margin: 1.6rem 0 1.8rem; border-top: 1px solid var(--line); }
.house__feat span { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); padding: 0.7rem 1.2rem 0.7rem 0; border-bottom: 1px solid var(--line); }
.house__link { display: inline-flex; align-items: center; gap: 0.6rem; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700; color: var(--river-blue); border-bottom: 1px solid var(--river-blue); padding-bottom: 3px; transition: gap .4s var(--ease), color .4s var(--ease); }
.house__link:hover { gap: 1rem; }
.house__stats { display: flex; flex-wrap: wrap; gap: 0.55rem; margin: 1.15rem 0 1rem; }
.house__stats span { display: inline-flex; align-items: center; min-height: 2rem; padding: 0.42rem 0.68rem; border: 1px solid var(--line); color: var(--wood-deep); background: rgba(255,255,255,0.34); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }
.house__detail-copy { color: var(--ink-soft); max-width: 58ch; line-height: 1.72; margin-top: 0.4rem; }
.house__details { display: grid; gap: 0.85rem; margin: 1.25rem 0 1.6rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.house__details div { display: grid; grid-template-columns: minmax(8rem, 0.42fr) 1fr; gap: 1rem; align-items: baseline; }
.house__details dt { color: var(--wood); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.11em; text-transform: uppercase; }
.house__details dd { color: var(--ink-soft); line-height: 1.62; }
.house__actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.house__link--airbnb { color: var(--wood); border-bottom-color: var(--wood); }

/* gallery (main image + view thumbnails) */
.house__gallery { display: flex; flex-direction: column; gap: 0.7rem; }
.house__main { position: relative; overflow: hidden; aspect-ratio: 5/4; background: var(--paper-2); }
.house__img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.house:hover .house__img { transform: scale(1.04); }
.house__main .tag { position: absolute; top: 1rem; left: 1rem; z-index: 2; background: var(--paper); color: var(--ink); font-family: var(--serif); font-style: italic; font-size: 0.8rem; letter-spacing: 0.04em; padding: 0.35rem 0.75rem; }
.house__view { position: absolute; left: 0; bottom: 0; z-index: 2; background: rgba(24,36,28,0.82); color: var(--paper); font-size: 0.64rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; padding: 0.5rem 0.95rem; }
.house__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.6rem; }
.house__thumb { padding: 0; margin: 0; border: 0; background: var(--paper-2); cursor: pointer; overflow: hidden; aspect-ratio: 1; position: relative; outline-offset: 2px; }
.house__thumb img { width: 100%; height: 100%; object-fit: cover; opacity: 0.6; transition: opacity .4s var(--ease), transform .6s var(--ease); }
.house__thumb:hover img { opacity: 0.92; transform: scale(1.06); }
.house__thumb.is-active img { opacity: 1; }
.house__thumb.is-active { outline: 1.5px solid var(--forest); }
.house__info { align-self: center; }

/* ---------- Image lift interactions ---------- */
.house__main,
.house__thumb,
.gallery-showcase figure,
.archive-masonry figure {
  cursor: pointer;
  transform: translate3d(0, 0, 0) scale(1);
  transition: transform .52s cubic-bezier(.19,1,.22,1), box-shadow .52s var(--ease), border-color .52s var(--ease), filter .52s var(--ease);
  will-change: transform;
}

.house__main:hover,
.house__main:active,
.house__main.is-image-pop,
.house__thumb:hover,
.house__thumb:active,
.house__thumb.is-image-pop,
.gallery-showcase figure:hover,
.gallery-showcase figure:active,
.gallery-showcase figure.is-image-pop,
.archive-masonry figure:hover,
.archive-masonry figure:active,
.archive-masonry figure.is-image-pop {
  transform: translate3d(0, -5px, 0) scale(1.018);
  box-shadow: 0 18px 40px rgba(34,58,46,0.18);
}

.house__main:hover .house__img,
.house__main:active .house__img,
.house__main.is-image-pop .house__img,
.house__thumb:active img,
.house__thumb.is-image-pop img,
.gallery-showcase figure:active img,
.gallery-showcase figure.is-image-pop img,
.archive-masonry figure:hover img,
.archive-masonry figure:active img,
.archive-masonry figure.is-image-pop img {
  transform: scale(1.065);
  filter: saturate(1.12) contrast(1.04) brightness(1.02);
}

.archive-masonry figure {
  overflow: hidden;
}

.archive-masonry img {
  transition: transform .72s cubic-bezier(.19,1,.22,1), filter .52s var(--ease);
  will-change: transform;
}

.aerial img {
  transition: transform 1.05s cubic-bezier(.19,1,.22,1), filter .65s var(--ease);
  will-change: transform;
}

.aerial:hover img,
.aerial:active img,
.aerial.is-image-pop img {
  transform: scale(1.04);
  filter: saturate(1.12) contrast(1.04) brightness(1.02);
}

.hero__photo-strip img.is-image-pop {
  transform: translate3d(var(--focus-shift-x), calc(var(--hover-y) - 0.45rem + var(--focus-shift-y)), calc(var(--depth) + 24px)) rotate(calc(var(--base-r) + var(--hover-r))) scale(1.06);
}
/* ---------- Aerial / drone band ---------- */
.aerial { position: relative; height: clamp(58vh, 78vh, 90vh); overflow: hidden; background: var(--forest-deep); }
.aerial img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.aerial::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(24,36,28,0.15) 0%, rgba(24,36,28,0.1) 40%, rgba(24,36,28,0.78) 100%); }
.aerial__cap { position: absolute; left: 0; right: 0; bottom: clamp(2.2rem, 6vw, 5rem); z-index: 2; color: var(--paper); }
.aerial__cap .kicker { color: var(--sage); }
.aerial__cap .kicker::before { background: var(--sage); }
.aerial__cap .index-num { color: var(--sage); font-style: normal; }
.aerial__cap h2 { color: var(--paper); font-size: clamp(2.2rem, 6vw, 4.4rem); font-weight: 400; margin-top: 1rem; max-width: 18ch; }
.aerial__cap p { color: rgba(239,231,214,0.86); max-width: 46ch; margin-top: 1.1rem; }

/* ---------- For whom (dark) ---------- */
.audience { background: var(--forest); color: var(--paper); }
.audience h2 { color: var(--paper); font-size: clamp(2.2rem,5vw,4rem); font-weight: 400; max-width: 14ch; }
.audience .kicker { color: var(--sage); }
.audience .kicker::before { background: var(--sage); }
.aud-grid { margin-top: clamp(2.5rem,6vw,4rem); border-top: 1px solid rgba(239,231,214,0.22); }
.aud-row { display: grid; grid-template-columns: 5rem 1.2fr 2fr; gap: clamp(1rem,3vw,2.5rem); align-items: baseline; padding: clamp(1.6rem,3.5vw,2.4rem) 0; border-bottom: 1px solid rgba(239,231,214,0.22); transition: padding-left .5s var(--ease); }
.aud-row:hover { padding-left: 1rem; }
.aud-row .n { font-family: var(--serif); font-style: italic; color: var(--sage); font-size: 1.1rem; }
.aud-row h3 { color: var(--paper); font-size: clamp(1.4rem,2.6vw,2rem); font-weight: 400; }
.aud-row p { color: rgba(239,231,214,0.72); }

/* ---------- Gallery / full local photo archive ---------- */
.gal-head { margin-bottom: clamp(1.5rem,3.8vw,2.6rem); }
.gallery-title { font-size: clamp(2.2rem,5vw,4rem); font-weight: 400; margin-top: 1rem; }
.gallery-showcase { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(300px, 1fr); gap: clamp(0.9rem,2vw,1.4rem); align-items: stretch; margin-bottom: clamp(2.2rem,5vw,4rem); opacity: 1; transform: none; }
.gallery-showcase figure { position: relative; overflow: hidden; background: var(--paper-card); border-bottom: 1px solid var(--line-soft); }
.gallery-showcase img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(1.04) contrast(1.02); transition: transform 1s var(--ease), filter .55s var(--ease); }
.gallery-showcase figure:hover img { transform: scale(1.035); filter: saturate(1.12) contrast(1.04) brightness(1.02); }
.gallery-showcase__main { min-height: clamp(380px, 52vw, 660px); }
.gallery-showcase__main figcaption { position: absolute; left: 0; right: 0; bottom: 0; display: grid; gap: 0.45rem; padding: clamp(1rem,2.4vw,1.8rem); color: var(--paper); background: linear-gradient(180deg, rgba(24,36,28,0) 0%, rgba(24,36,28,0.82) 100%); }
.gallery-showcase__main figcaption span { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sage); }
.gallery-showcase__main figcaption strong { font-family: var(--serif); font-size: clamp(1.45rem,3vw,2.5rem); font-weight: 400; line-height: 1.12; max-width: 16ch; }
.gallery-showcase__side { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(0.75rem,1.4vw,1rem); }
.gallery-showcase__side figure:first-child { grid-column: 1 / -1; min-height: 260px; }
.gallery-showcase__side figure:not(:first-child) { min-height: 210px; }
.photo-archive { display: grid; gap: clamp(2.4rem,6vw,5rem); }
.archive-group { border-top: 1px solid var(--line); padding-top: clamp(1.2rem,3vw,2rem); }
.archive-group__head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: clamp(1rem,2.4vw,1.6rem); }
.archive-group__head h3 { font-size: clamp(1.5rem,3vw,2.4rem); font-weight: 400; color: var(--wood-deep); }
.archive-group__head span { color: var(--river-blue); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; white-space: nowrap; }
.archive-masonry { column-count: 3; column-gap: clamp(0.8rem,1.6vw,1.2rem); }
.archive-group--river-landscape .archive-masonry,
.archive-group--entrance-guest-moments .archive-masonry { column-count: 2; }
.archive-masonry figure { break-inside: avoid; margin: 0 0 clamp(0.8rem,1.6vw,1.2rem); background: var(--paper-card); border-bottom: 1px solid var(--line-soft); }
.archive-masonry img { width: 100%; height: auto; display: block; }
.archive-masonry figcaption { padding: 0.55rem 0.65rem 0.65rem; color: var(--ink-soft); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; }

/* ---------- Location (redesigned) ---------- */
.location {
  background: var(--paper);
  padding-block: 0;   /* no section padding — map bleeds full width */
}
.loc-body {
  padding-block: clamp(4rem, 10vw, 8rem);
}
.loc-header h2 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 400;
  margin-top: 1rem;
  max-width: 20ch;
}
.loc-header p {
  color: var(--ink-soft);
  margin-top: 1.1rem;
  max-width: 48ch;
  line-height: 1.72;
}

/* Distance stats — horizontal row of 4 */
.loc-distances {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  margin-top: clamp(2rem, 5vw, 3.5rem);
  background: var(--paper-card);
}
.loc-dist {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
  padding: clamp(1.2rem, 2.5vw, 2rem) clamp(1rem, 2vw, 1.8rem);
  border-right: 1px solid var(--line);
}
.loc-dist:last-child { border-right: none; }
.loc-dist__icon {
  color: var(--forest);
  margin-bottom: 0.2rem;
}
.loc-dist__val {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  color: var(--ink);
  line-height: 1;
}
.loc-dist__val small {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  margin-left: 0.1em;
}
.loc-dist__lbl {
  font-size: 0.8rem;
  color: var(--ink-soft);
  line-height: 1.4;
}

/* Address card */
.loc-address {
  margin-top: clamp(1.8rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  flex-wrap: wrap;
  padding: clamp(1.2rem, 2.5vw, 2rem);
  background: var(--forest-deep);
  color: var(--paper);
}
.loc-address__card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex: 1;
  min-width: 260px;
}
.loc-address__pin {
  color: var(--sage);
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.loc-address__label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.3rem;
}
.loc-address__value {
  font-family: var(--serif);
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  line-height: 1.6;
  color: rgba(241,229,208,0.9);
}
.loc-address__btns {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
  flex-shrink: 0;
}
.loc-btn-maps {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--paper);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.loc-btn-maps:hover { background: #2d5238; border-color: #2d5238; }
.loc-btn-share {
  border-color: rgba(241,229,208,0.3);
  color: rgba(241,229,208,0.85);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: transparent;
}
.loc-btn-share:hover { background: rgba(241,229,208,0.1); border-color: var(--sage); color: var(--paper); }

/* Full-width map */
.loc-map-wrap {
  position: relative;
  width: 100%;
  height: clamp(320px, 55vw, 600px);
  overflow: hidden;
  display: block;
}
.loc-map-frame {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: saturate(0.9) contrast(1.02);
}
.loc-map-fab {
  position: absolute;
  bottom: 1.2rem;
  right: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.65rem 1.1rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  transition: background 0.3s, color 0.3s, transform 0.3s var(--ease);
}
.loc-map-fab:hover {
  background: var(--forest);
  color: var(--paper);
  transform: translateY(-2px);
}

/* Responsive location */
@media (max-width: 860px) {
  .loc-distances { grid-template-columns: repeat(2, 1fr); }
  .loc-dist:nth-child(2) { border-right: none; }
  .loc-dist:nth-child(3) { border-top: 1px solid var(--line); }
  .loc-dist:nth-child(4) { border-top: 1px solid var(--line); border-right: none; }
}
@media (max-width: 580px) {
  .loc-address { flex-direction: column; align-items: flex-start; }
  .loc-distances { grid-template-columns: 1fr 1fr; }
  .loc-map-wrap { height: clamp(280px, 70vw, 420px); }
}

/* ---------- Contact ---------- */
.contact { background: var(--forest-deep); color: var(--paper); }
.contact h2 { color: var(--paper); font-size: clamp(2.4rem,6vw,4.5rem); font-weight: 400; }
.contact .kicker { color: var(--sage); } .contact .kicker::before { background: var(--sage); }
.contact .lead { color: rgba(239,231,214,0.72); margin-top: 1rem; max-width: 40ch; }
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2.5rem,6vw,5rem); margin-top: clamp(2.5rem,6vw,4rem); align-items: start; }
.form { display: grid; gap: 1.6rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.field { display: grid; gap: 0.5rem; }
.field label { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sage); }
.field input, .field textarea {
  font-family: var(--sans); font-size: 1rem; color: var(--paper);
  background: transparent; border: 0; border-bottom: 1px solid rgba(239,231,214,0.35);
  padding: 0.6rem 0; transition: border-color .4s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(239,231,214,0.35); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--sage); }
.field textarea { resize: vertical; min-height: 90px; }
.field--hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form .btn { margin-top: 0.6rem; }
.form-success { display: none; padding: 1rem 1.2rem; background: var(--sage); color: var(--forest-deep); font-weight: 600; }
.form-success.show { display: block; }
.form-error { display: none; padding: 1rem 1.2rem; background: rgba(154, 68, 54, 0.96); color: var(--paper); font-weight: 600; }
.form-error.show { display: block; }
.form[aria-busy="true"] .btn { opacity: 0.65; cursor: wait; }

.contact-aside { border-left: 1px solid rgba(239,231,214,0.22); padding-left: clamp(1.5rem,3vw,3rem); }
.contact-aside h3 { color: var(--paper); font-size: 1.6rem; font-weight: 400; }
.cmethod { padding: 1.2rem 0; border-bottom: 1px solid rgba(239,231,214,0.18); }
.cmethod small { display: block; font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sage); margin-bottom: 0.3rem; }
.cmethod b { font-family: var(--serif); font-weight: 400; font-size: 1.25rem; }
.contact-aside .btns { display: grid; gap: 0.9rem; margin-top: 1.8rem; }
.line-qr { display: flex; align-items: center; gap: 1rem; margin-top: 1.8rem; padding: 1rem; background: var(--paper-card); border-radius: 12px; text-decoration: none; }
.line-qr img { width: 72px; height: 72px; border-radius: 6px; background: #fff; padding: 4px; flex-shrink: 0; }
.line-qr span { color: var(--ink); font-family: var(--serif); font-size: 0.95rem; line-height: 1.4; }

/* ---------- Footer ---------- */
.footer { background: linear-gradient(180deg, var(--wood-deep), #3c2a20); color: rgba(241,229,208,0.68); padding-block: clamp(3.5rem,7vw,6rem) 2rem; }
.footer__big { font-family: var(--serif); font-size: clamp(3rem, 13vw, 12rem); line-height: 0.85; color: var(--paper); font-weight: 400; letter-spacing: 0; margin-bottom: 2.5rem; }
.footer__cols { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; padding-block: 2.5rem; border-top: 1px solid rgba(239,231,214,0.15); }
.footer__cols p { max-width: 32ch; }
.footer h4 { color: var(--paper); font-family: var(--sans); font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 1.1rem; font-weight: 600; }
.footer ul { display: grid; gap: 0.55rem; font-size: 0.92rem; }
.footer a:hover { color: var(--river-soft); }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.6rem; padding-top: 1.8rem; border-top: 1px solid rgba(239,231,214,0.15); font-size: 0.78rem; letter-spacing: 0.04em; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
[data-stagger] > * { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-stagger].in > * { opacity: 1; transform: none; }
[data-stagger].in > *:nth-child(2) { transition-delay: .08s; }
[data-stagger].in > *:nth-child(3) { transition-delay: .16s; }
[data-stagger].in > *:nth-child(4) { transition-delay: .24s; }

/* ── Location spinner ───────────────────────────────────────────────── */
.loc-spin {
  display: inline-block;
  width: 18px; height: 18px;
  border: 2px solid rgba(122,84,52,0.2);
  border-top-color: var(--forest);
  border-radius: 50%;
  animation: loc-spin 0.75s linear infinite;
  vertical-align: middle;
}
@keyframes loc-spin { to { transform: rotate(360deg); } }
.loc-dist--dynamic .loc-dist__val small {
  font-family: var(--sans); font-size: 0.72rem;
  font-weight: 700; letter-spacing: 0.05em;
  color: var(--ink-soft); margin-left: 0.08em;
}

/* ── Social Proof Strip ─────────────────────────────────────────────── */
.social-proof {
  background: var(--forest-deep);
  color: var(--paper);
  padding: clamp(1.1rem, 2.5vw, 1.6rem) 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.social-proof__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.2rem, 4vw, 3.5rem);
  flex-wrap: wrap;
}
.social-proof__item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-align: left;
}
.social-proof__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--sage);
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}
.social-proof__label {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  line-height: 1.45;
  color: rgba(239,231,214,0.75);
}
.social-proof__sep {
  width: 1px;
  height: 32px;
  background: rgba(239,231,214,0.15);
  flex-shrink: 0;
}
@media (max-width: 500px) {
  .social-proof__sep { display: none; }
  .social-proof__inner { gap: 1.4rem; justify-content: space-around; }
}

/* ── Floating LINE / WhatsApp Button ────────────────────────────────── */
.float-cta {
  position: fixed;
  bottom: clamp(1.2rem, 4vw, 2rem);
  right: clamp(1rem, 3.5vw, 1.8rem);
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  align-items: flex-end;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
.float-cta.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.float-cta__btn {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 22px rgba(0,0,0,0.26);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), filter 0.3s;
  white-space: nowrap;
}
.float-cta__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.32);
  filter: brightness(1.08);
}
.float-cta__btn--line {
  background: #06C755;
  padding: 0.7rem 1.3rem 0.7rem 0.95rem;
}
.float-cta__btn--wa {
  background: #25D366;
  padding: 0;
  width: 48px;
  height: 48px;
  justify-content: center;
  flex-shrink: 0;
}
.float-cta__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}
.float-cta__btn--wa .float-cta__icon { width: 24px; height: 24px; }

/* ── Property Catalogue Cards ───────────────────────────────────────── */
.prop-tabs {
  display: flex;
  gap: 0;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
  border-bottom: 1px solid var(--line);
}
.prop-tab {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 0.9rem 1.8rem;
  margin-bottom: -1px;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.prop-tab.is-active { color: var(--forest); border-bottom-color: var(--forest); }
.tab-count {
  display: inline-block;
  background: var(--line-soft);
  border-radius: 10px;
  padding: 0.06em 0.5em;
  font-size: 0.62rem;
  margin-left: 0.4em;
  font-weight: 700;
}

.prop-category-head {
  display: grid;
  gap: 0.25rem;
  margin: 0 0 clamp(1rem, 2vw, 1.4rem);
  max-width: 760px;
}
.prop-category-head--other {
  margin-top: clamp(3rem, 7vw, 5rem);
  padding-top: clamp(1.4rem, 3vw, 2rem);
  border-top: 1px solid var(--line);
}
.prop-category-head p {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wood);
}
.prop-category-head h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.1;
}
.prop-category-head span {
  color: var(--ink-soft);
  font-size: 0.96rem;
  max-width: 58ch;
}

.prop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.8rem, 1.6vw, 1.3rem);
}
.prop-grid--huahin { grid-template-columns: minmax(0, 640px); }
.prop-grid--huahin .prop-card--featured { grid-column: span 1; }

.prop-card {
  cursor: pointer;
  background: var(--paper-card);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  transition: transform 0.55s var(--ease), box-shadow 0.55s var(--ease), border-color 0.4s;
  outline-offset: 3px;
}
.prop-card:hover, .prop-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 28px 64px rgba(34,58,46,0.16);
  border-color: var(--sage);
}
.prop-card--featured { grid-column: span 2; }

.prop-card__img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--forest-deep);
}
.prop-card--featured .prop-card__img-wrap { aspect-ratio: 16 / 9; }
.prop-card:not(.prop-card--featured) .prop-card__img-wrap { aspect-ratio: 4 / 3; }
.prop-grid--huahin .prop-card--featured .prop-card__img-wrap { aspect-ratio: 16 / 7; }

.prop-card__img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.9s var(--ease), filter 0.5s;
  filter: saturate(1.02);
  will-change: transform;
}
.prop-card:hover .prop-card__img, .prop-card:focus-visible .prop-card__img {
  transform: scale(1.07);
  filter: saturate(1.12) contrast(1.04);
}

.prop-card__img-wrap::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(24,36,28,0.22) 100%);
  transition: background 0.45s;
  pointer-events: none;
}
.prop-card:hover .prop-card__img-wrap::after {
  background: linear-gradient(180deg, rgba(24,36,28,0.06) 0%, rgba(24,36,28,0.38) 100%);
}

.prop-card__explore {
  position: absolute;
  bottom: 1rem; left: 50%;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  background: var(--paper);
  color: var(--forest-deep);
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.52em 1.3em;
  white-space: nowrap;
  pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  z-index: 2;
}
.prop-card:hover .prop-card__explore, .prop-card:focus-visible .prop-card__explore {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.prop-card__badges {
  position: absolute; top: 0.85rem; left: 0.85rem; right: 0.85rem;
  display: flex; justify-content: space-between; align-items: flex-start;
  z-index: 1; pointer-events: none;
}
.prop-badge {
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.28em 0.7em;
}
.prop-badge--num { background: rgba(241,229,208,0.92); color: var(--wood-deep); }
.prop-badge--rating { background: rgba(63,107,78,0.9); color: var(--paper); }

.prop-card__body { padding: clamp(0.85rem, 1.8vw, 1.35rem); }
.prop-card__loc {
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--wood); margin-bottom: 0.3rem;
}
.prop-card__name {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(1.1rem, 1.9vw, 1.45rem);
  color: var(--ink); margin-bottom: 0.22rem; line-height: 1.15;
}
.prop-card--featured .prop-card__name { font-size: clamp(1.35rem, 2.4vw, 1.85rem); }
.prop-card__tagline { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 0.75rem; }
.prop-card__stats {
  display: flex; flex-wrap: wrap; gap: 0.2rem 0.8rem;
  font-size: 0.76rem; color: var(--ink-soft); margin-bottom: 0.6rem;
}
.prop-card__features { display: flex; flex-wrap: wrap; gap: 0.3rem; }
.prop-feat-chip {
  font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.22em 0.62em;
  border: 1px solid var(--line); color: var(--ink-soft);
}

/* ── Property Modal ──────────────────────────────────────────────────── */
.prop-overlay {
  position: fixed; inset: 0; z-index: 900;
  background: rgba(24,36,28,0.7);
  backdrop-filter: blur(5px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.42s var(--ease);
}
.prop-overlay.is-open { opacity: 1; pointer-events: auto; }

.prop-modal {
  position: fixed; inset: 0; z-index: 901;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(0.5rem, 2vw, 2rem);
  pointer-events: none; opacity: 0;
  transition: opacity 0.42s var(--ease);
}
.prop-modal.is-open { pointer-events: auto; opacity: 1; }

.prop-modal__inner {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  width: 100%; max-width: 1280px;
  max-height: 94vh;
  background: var(--paper-card);
  overflow: hidden;
  transform: translateY(28px);
  transition: transform 0.52s var(--ease);
  box-shadow: 0 48px 120px rgba(24,36,28,0.44);
}
.prop-modal.is-open .prop-modal__inner { transform: none; }

/* Gallery side */
.prop-modal__gallery {
  display: flex; flex-direction: column;
  overflow: hidden; background: #111c16; min-height: 0;
}
.modal-gallery__stage {
  flex: 1; position: relative; overflow: hidden; min-height: 0;
  display: flex; align-items: center; justify-content: center;
}
.modal-gallery__main-img {
  /* contain — ไม่ตัดรูป เห็นภาพเต็ม */
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
  transition: opacity 0.22s ease;
}
.modal-gallery__arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(241,229,208,0.9); color: var(--ink);
  border: none; cursor: pointer;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s, transform 0.25s;
  z-index: 2;
}
.modal-gallery__arrow:hover { background: var(--paper); transform: translateY(-50%) scale(1.08); }
.modal-gallery__arrow--prev { left: 1rem; }
.modal-gallery__arrow--next { right: 1rem; }
.modal-gallery__count {
  position: absolute; bottom: 0.85rem; right: 0.9rem;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em;
  color: var(--paper); background: rgba(24,36,28,0.62);
  padding: 0.28em 0.7em;
}
.modal-gallery__thumbs {
  display: flex; gap: 4px; padding: 8px;
  background: rgba(24,36,28,0.85);
  overflow-x: auto; scrollbar-width: none; flex-shrink: 0;
}
.modal-gallery__thumbs::-webkit-scrollbar { display: none; }
.modal-gallery__thumb {
  flex: 0 0 80px; height: 58px; overflow: hidden;
  cursor: pointer; opacity: 0.5; border: 2px solid transparent;
  transition: opacity 0.25s, border-color 0.25s; background: none; padding: 0;
}
.modal-gallery__thumb.is-active { opacity: 1; border-color: var(--sage); }
.modal-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; background: #111c16; }

/* Info side */
.prop-modal__info {
  position: relative; overflow: hidden; display: flex; flex-direction: column;
  border-left: 1px solid var(--line-soft);
}
.prop-modal__close {
  position: absolute; top: 1rem; right: 1rem; z-index: 2;
  background: var(--paper); border: 1px solid var(--line);
  cursor: pointer; width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink); transition: background 0.25s, color 0.25s, transform 0.3s;
}
.prop-modal__close:hover { background: var(--ink); color: var(--paper); transform: rotate(90deg); }

.modal-info__scroll {
  overflow-y: auto; flex: 1;
  padding: clamp(1.4rem, 2.5vw, 2.2rem) clamp(1.4rem, 2.5vw, 2.2rem) 2rem;
  scrollbar-width: thin; scrollbar-color: var(--line) transparent;
}
.modal-info__loc {
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--wood); margin-bottom: 0.45rem;
}
.modal-info__name {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(1.55rem, 2.8vw, 2.3rem);
  line-height: 1.1; margin-bottom: 0.35rem; color: var(--ink);
}
.modal-info__tagline { color: var(--ink-soft); margin-bottom: 1.1rem; font-size: 0.95rem; }

.modal-info__stats {
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem; margin-bottom: 0.65rem;
}
.modal-stat { display: flex; flex-direction: column; gap: 0.05em; }
.modal-stat__val {
  font-family: var(--serif); font-size: 1.5rem;
  font-weight: 500; color: var(--forest);
}
.modal-stat__label {
  font-size: 0.62rem; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--ink-soft);
}
.modal-info__rating { font-size: 0.85rem; color: var(--wood); margin-bottom: 1rem; }
.modal-rating-star { font-weight: 700; }
.modal-rating-count { opacity: 0.72; }

.modal-info__divider {
  border: none; border-top: 1px solid var(--line); margin: 1.1rem 0;
}
.modal-info__desc {
  color: var(--ink-soft); line-height: 1.72; margin-bottom: 1.4rem; font-size: 0.95rem;
}
.modal-info__block { margin-bottom: 1.3rem; }
.modal-info__section-title {
  font-family: var(--sans); font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 0.7rem;
}
.modal-info__amenities { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.modal-amenity {
  font-size: 0.72rem; padding: 0.28em 0.72em;
  border: 1px solid var(--line); color: var(--ink-soft);
}
.modal-info__checkin { font-size: 0.9rem; color: var(--ink); margin-bottom: 0.4rem; }
.modal-info__note {
  font-size: 0.8rem; color: var(--ink-soft); font-style: italic;
  padding: 0.65rem 0.85rem; margin-top: 0.6rem;
  border-left: 2px solid var(--sage); background: rgba(138,160,125,0.08);
}
.modal-info__actions { display: grid; gap: 0.75rem; margin-top: 0.8rem; }
.modal-cta-airbnb { border-color: var(--line); color: var(--ink); }
.modal-cta-airbnb:hover { background: var(--ink); border-color: var(--ink); color: var(--paper); }

/* ── Responsive for modal + cards ──────────────────────────────────── */
@media (max-width: 1000px) {
  .prop-grid { grid-template-columns: repeat(2, 1fr); }
  .prop-card--featured { grid-column: span 2; }
}
@media (max-width: 900px) {
  /* Full-screen modal on mobile */
  .prop-modal {
    padding: 0;
    align-items: flex-end;
  }
  .prop-modal__inner {
    grid-template-columns: 1fr;
    /* gallery = 48% of screen height, info = rest */
    grid-template-rows: 48dvh 1fr;
    max-height: 100dvh;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    transform: translateY(40px);
  }
  .prop-modal.is-open .prop-modal__inner { transform: none; }
  .modal-gallery__stage { height: 100%; }
  /* thumbnails smaller on mobile */
  .modal-gallery__thumb { flex: 0 0 60px; height: 44px; }
  /* info panel: fill remaining space, scrollable */
  .prop-modal__info { max-height: calc(52dvh - 52px); }
}
@media (max-width: 600px) {
  .prop-grid { grid-template-columns: 1fr; }
  .prop-card--featured { grid-column: span 1; }
  .prop-card--featured .prop-card__img-wrap { aspect-ratio: 4 / 3; }
}

/* ── Global UI Polish ────────────────────────────────────────────────── */

/* Smoother focus rings for keyboard nav */
:focus-visible {
  outline: 2px solid var(--river-blue);
  outline-offset: 3px;
}

/* Selection colour */
::selection { background: var(--forest); color: var(--paper); }

/* Thin scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--paper-2); }
::-webkit-scrollbar-thumb { background: var(--sage); border-radius: 3px; }

/* Better link underlines in body copy */
.modal-info__desc a, .self-note a { text-decoration-color: var(--sage); text-underline-offset: 3px; }

/* ── Hero polish ─────────────────────────────────────────────────────── */
/* Subtle badge / rating in hero */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(241,229,208,0.12);
  border: 1px solid rgba(241,229,208,0.28);
  backdrop-filter: blur(8px);
  padding: 0.4em 0.85em;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.2rem;
}
.hero__badge svg { width: 14px; height: 14px; }

/* ── Statement section enhancements ─────────────────────────────────── */
.self-note { border-radius: 0; }

/* ── Experience rows hover ───────────────────────────────────────────── */
.exp-row { border-radius: 0; }
.exp-row__num { opacity: 0.8; }

/* ── Kicker improvements ─────────────────────────────────────────────── */
.kicker { gap: 0.6rem; }

/* ── Section heading accent line ─────────────────────────────────────── */
.houses-intro h2::after,
.gal-head h2::after {
  content: none; /* keep clean — relies on kicker line instead */
}

/* ── Houses section background ───────────────────────────────────────── */
#houses { background: var(--paper); }

/* ── Gallery section background ──────────────────────────────────────── */
#gallery { background: var(--paper-2); }

/* ── Location section ─────────────────────────────────────────────────── */
.location { background: var(--paper); }

/* ── Contact section subtle gradient ─────────────────────────────────── */
.contact {
  background: linear-gradient(160deg, var(--forest-deep) 0%, #1a3028 100%);
}

/* ── Footer gradient ──────────────────────────────────────────────────── */
.footer {
  background: linear-gradient(175deg, var(--wood-deep) 0%, #2e1e14 100%);
}

/* ── Navigation — add underline accent to active ──────────────────────── */
.nav__links a.is-active::after { width: 100%; }

/* ── Back to top button ──────────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: clamp(1.2rem, 4vw, 2rem);
  left: clamp(1rem, 3.5vw, 1.8rem);
  z-index: 500;
  width: 44px; height: 44px;
  background: var(--paper-card);
  border: 1px solid var(--line);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0; transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), background 0.3s, color 0.3s;
  border-radius: 2px;
}
.back-to-top.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.back-to-top:hover { background: var(--forest); color: var(--paper); border-color: var(--forest); }
.back-to-top svg { width: 18px; height: 18px; }

/* ── Mobile quick-contact bar (below 680px) ──────────────────────────── */
.mobile-contact-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 490;
  background: var(--paper-card);
  border-top: 1px solid var(--line);
  padding: 0.65rem var(--pad);
  gap: 0.6rem;
}
.mobile-contact-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
  color: #fff;
  text-decoration: none;
}
.mobile-contact-bar a:first-child { background: #06C755; }
.mobile-contact-bar a:last-child { background: var(--forest); }
.mobile-contact-bar svg { width: 18px; height: 18px; }
@media (max-width: 680px) {
  .mobile-contact-bar { display: flex; }
  /* pad body so footer not obscured */
  .footer { padding-bottom: calc(clamp(3.5rem,7vw,6rem) + 68px); }
  /* hide float CTA on mobile — bar replaces it */
  .float-cta, .back-to-top { display: none; }
}

/* ── Prop card rating stars color ───────────────────────────────────── */
.prop-badge--rating { letter-spacing: 0.06em; }

/* ── Modal info scroll improved ─────────────────────────────────────── */
.modal-info__scroll::-webkit-scrollbar { width: 4px; }
.modal-info__scroll::-webkit-scrollbar-thumb { background: var(--line); border-radius: 2px; }

/* ── Section divider accent ─────────────────────────────────────────── */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line) 20%, var(--line) 80%, transparent);
  margin: 0;
}

/* ── Print style ─────────────────────────────────────────────────────── */
@media print {
  .header, .side-index, .marquee, .social-proof, .float-cta,
  .back-to-top, .mobile-contact-bar, .prop-tabs, .prop-modal,
  .prop-overlay { display: none !important; }
  body { font-size: 12pt; color: #000; background: #fff; }
  a { color: #000; }
}

/* ---------- Responsive ---------- */
@media (min-width: 901px) {
  .hero__meta { max-width: min(60vw, 860px); }
  .hero__coords { margin-left: 0; }
}
@media (max-width: 1120px) {
  .side-index { display: none; }
  .nav__links, .nav__cta { display: none; }
  .nav-toggle { display: flex; }
  .nav.open .nav__links { display: flex; flex-direction: column; gap: 1.35rem; position: absolute; top: 100%; left: 0; right: 0; background: var(--paper-card); padding: 2rem var(--pad); box-shadow: 0 20px 40px rgba(43,41,35,.12); }
  .nav.open .nav__links a { color: var(--wood-deep); }
}
@media (max-width: 900px) {
  .statement, .loc-grid, .contact-grid { grid-template-columns: 1fr; }
  .statement__head { position: static; }
  .house { grid-template-columns: 1fr; gap: 1.5rem; }
  .house--flip .house__media,
  .house--flip .house__gallery { order: 0; }
  .exp-row { grid-template-columns: 3rem 1fr; }
  .exp-row__text { grid-column: 2; }
  .aud-row { grid-template-columns: 3rem 1fr; }
  .aud-row p { grid-column: 2; }
  .contact-aside { border-left: 0; padding-left: 0; border-top: 1px solid rgba(239,231,214,0.2); padding-top: 2rem; }
  .hero__photo-strip { display: none; }
  .gallery-showcase { grid-template-columns: 1fr; }
  .gallery-showcase__side { grid-template-columns: repeat(4, 1fr); }
  .gallery-showcase__side figure:first-child { grid-column: auto; }
  .archive-masonry, .archive-group--river-landscape .archive-masonry, .archive-group--entrance-guest-moments .archive-masonry { column-count: 2; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .form-row { grid-template-columns: 1fr; }
  .gallery-showcase__side { grid-template-columns: 1fr; }
  .gallery-showcase__main { min-height: 360px; }
  .gallery-showcase__side figure:first-child,
  .gallery-showcase__side figure:not(:first-child) { min-height: 260px; }
  .hero__coords { display: none; }
  .hero__photo-strip { display: none; }
  .hero::after { background: linear-gradient(180deg, rgba(19,31,24,0.34) 0%, rgba(19,31,24,0.34) 42%, rgba(61,39,27,0.74) 100%); }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .hero__cta .btn:nth-child(3) { display: none; }
  .hero__top { font-size: 0.66rem; margin-bottom: 1rem; }
  .hero__meta { margin-top: 1.2rem; padding-top: 1rem; }
  .hero__cta { margin-top: 1.4rem; gap: 0.7rem; }
  .house__details div { grid-template-columns: 1fr; gap: 0.28rem; }
  .house__actions { align-items: flex-start; flex-direction: column; }
  body { font-size: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto; }
  .reveal, [data-stagger] > * { opacity: 1 !important; transform: none !important; }
  .hero__bg img { animation: none; transform: none; }
  .hero__photo-strip, .hero__photo-strip img { transition: none; transform: none; }
  .house__main, .house__thumb, .gallery-showcase figure, .archive-masonry figure, .archive-masonry img, .aerial img { transition: none; transform: none; }
}
@media (hover: none) {
  .hero__photo-strip { pointer-events: none; }
}

/* =========================================================
   House detail pages (houses/<id>.html)
   ========================================================= */
.house-page { background: var(--paper); }
.house-page .header { background: rgba(241,229,208,0.94); backdrop-filter: blur(12px); height: 64px; box-shadow: 0 1px 0 var(--line); }
.house-page .header .brand__name { color: var(--ink); }
.house-page .header .brand__sub { color: var(--wood); }
.house-page .header .nav__links a { color: var(--wood-deep); }
.house-page .header .nav__links a:hover { color: var(--river-blue); }
.house-page .header .lang { color: var(--ink); }
.house-page .header .lang button { color: var(--ink-soft); }
.house-page .header .lang button.is-active { color: var(--river-blue); font-weight: 700; }

.house-wrap { padding-top: clamp(88px, 12vw, 108px); padding-bottom: clamp(3rem, 7vw, 5.5rem); }

.house-breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: var(--ink-soft); margin-bottom: clamp(1.2rem, 3vw, 2rem); }
.house-breadcrumb a:hover { color: var(--river-blue); }
.house-breadcrumb .is-current { color: var(--ink); font-weight: 700; }

.house-top { max-width: 60ch; margin-bottom: clamp(1.4rem, 3vw, 2.2rem); }
.house-eyebrow { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--wood); margin-bottom: 0.5rem; }
.house-title { font-family: var(--serif); font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1.05; margin-bottom: 0.5rem; }
.house-loc { color: var(--ink-soft); font-size: 1rem; margin-bottom: 0.7rem; }
.house-rating { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.95rem; color: var(--ink); margin-bottom: 0.8rem; }
.house-rating__star { color: #b8860b; font-weight: 700; }
.house-tagline { font-family: var(--serif); font-style: italic; font-size: clamp(1.05rem, 2.4vw, 1.4rem); color: var(--forest-deep); }

.house-gallery { margin-bottom: clamp(1.8rem, 4vw, 3rem); }
.house-gallery__stage { border-radius: 12px; overflow: hidden; background: var(--paper-2); aspect-ratio: 16 / 10; box-shadow: 0 20px 50px rgba(79,52,37,0.14); }
#houseMainImg { width: 100%; height: 100%; object-fit: cover; }
.house-thumbs { display: flex; gap: 0.6rem; margin-top: 0.8rem; overflow-x: auto; padding-bottom: 0.3rem; scrollbar-width: thin; }
.house-thumb { flex: 0 0 auto; width: 96px; height: 70px; border: 2px solid transparent; border-radius: 8px; overflow: hidden; cursor: pointer; background: var(--paper-2); padding: 0; }
.house-thumb img { width: 100%; height: 100%; object-fit: cover; }
.house-thumb.is-active { border-color: var(--forest); }

.house-grid { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: clamp(1.6rem, 4vw, 3rem); align-items: start; }
.house-block { margin-bottom: clamp(1.6rem, 3.5vw, 2.6rem); }
.house-block h2 { font-family: var(--serif); font-size: clamp(1.3rem, 2.6vw, 1.75rem); margin-bottom: 0.8rem; }
.house-desc { color: var(--ink-soft); font-size: 1.02rem; line-height: 1.75; }

.house-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.8rem; padding: 1.1rem 0; border-block: 1px solid var(--line); margin-bottom: clamp(1.6rem, 3.5vw, 2.4rem); }
.house-stat { text-align: center; }
.house-stat__val { display: block; font-family: var(--serif); font-size: 1.5rem; color: var(--forest-deep); }
.house-stat__label { font-size: 0.8rem; color: var(--ink-soft); }

.house-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.house-chip { font-size: 0.8rem; font-weight: 700; color: var(--wood-deep); background: var(--paper-card); border: 1px solid var(--line); border-radius: 999px; padding: 0.35rem 0.8rem; }

.house-amenities { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem 1.2rem; }
.house-amenities li { position: relative; padding-left: 1.3rem; color: var(--ink-soft); font-size: 0.96rem; }
.house-amenities li::before { content: "✓"; position: absolute; left: 0; color: var(--forest); font-weight: 700; }

.house-note { margin-top: 1rem; background: var(--paper-card); border: 1px solid var(--line); border-left: 3px solid var(--wood-light); border-radius: 8px; padding: 0.9rem 1.1rem; }
.house-note strong { display: block; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--wood); margin-bottom: 0.35rem; }
.house-note p { color: var(--ink-soft); font-size: 0.94rem; }

.house-side { position: sticky; top: 88px; }
.house-card { background: var(--paper-card); border: 1px solid var(--line); border-radius: 12px; padding: 1.4rem; box-shadow: 0 16px 40px rgba(79,52,37,0.1); }
.house-card__price { font-family: var(--serif); font-size: 1.15rem; color: var(--forest-deep); margin-bottom: 1rem; }
.house-cta { display: grid; gap: 0.6rem; }
.house-cta .btn { width: 100%; justify-content: center; }
.house-cta .btn--light { border-color: var(--line); color: var(--wood-deep); }
.house-cta .btn--light:hover { background: var(--forest); border-color: var(--forest); color: var(--paper); }
.house-contact { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.1rem; padding-top: 1rem; border-top: 1px solid var(--line); font-size: 0.88rem; font-weight: 700; }
.house-contact a { color: var(--river-blue); }
.house-contact a:hover { text-decoration: underline; }

.house-back { margin-top: clamp(2rem, 5vw, 3.5rem); }
.house-back a { color: var(--wood-deep); font-weight: 700; }
.house-back a:hover { color: var(--river-blue); }

@media (max-width: 860px) {
  .house-page .header .nav__links { display: none; }
  .house-grid { grid-template-columns: 1fr; }
  .house-side { position: static; }
}
@media (max-width: 480px) {
  .house-stats { grid-template-columns: repeat(2, 1fr); }
  .house-amenities { grid-template-columns: 1fr; }
}

/* =========================================================
   Guest Reviews section
   ========================================================= */
.reviews { background: linear-gradient(180deg, var(--paper), var(--paper-2)); }
.reviews-head { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 1.4rem; margin-bottom: clamp(1.6rem, 3.5vw, 2.6rem); }
.reviews-head h2 { font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 2.8rem); margin: 0.6rem 0 0.5rem; }
.reviews-head .lead { color: var(--ink-soft); max-width: 46ch; margin: 0; }
.reviews-badge { display: inline-flex; align-items: center; gap: 0.8rem; background: var(--paper-card); border: 1px solid var(--line); border-radius: 14px; padding: 0.8rem 1.1rem; box-shadow: 0 12px 30px rgba(79,52,37,0.1); }
.reviews-badge:hover { box-shadow: 0 16px 38px rgba(79,52,37,0.16); }
.reviews-badge__score { font-family: var(--serif); font-size: 1.6rem; color: #b8860b; font-weight: 700; }
.reviews-badge__meta { display: grid; line-height: 1.25; }
.reviews-badge__meta b { font-size: 0.9rem; color: var(--forest-deep); }
.reviews-badge__meta small { font-size: 0.72rem; color: var(--ink-soft); }

.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: clamp(1rem, 2vw, 1.4rem); align-items: start; }
.rv-card { background: var(--paper-card); border: 1px solid var(--line); border-radius: 12px; padding: 1.3rem 1.4rem; box-shadow: 0 8px 24px rgba(79,52,37,0.06); }
.rv-card.is-hidden { display: none; }
.rv-stars { letter-spacing: 2px; margin-bottom: 0.7rem; }
.rv-star { color: #d9a520; }
.rv-star.is-empty { color: rgba(122,84,52,0.22); }
.rv-text { color: var(--ink); font-size: 0.96rem; line-height: 1.7; }
.rv-response { margin-top: 0.9rem; padding: 0.8rem 1rem; background: rgba(63,107,78,0.07); border-left: 3px solid var(--forest); border-radius: 6px; }
.rv-response strong { display: block; font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--forest); margin-bottom: 0.3rem; }
.rv-response p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.6; }
.rv-author { display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 0.4rem; margin-top: 1rem; padding-top: 0.85rem; border-top: 1px solid var(--line-soft); }
.rv-name { font-weight: 700; color: var(--wood-deep); }
.rv-meta { font-size: 0.78rem; color: var(--ink-soft); }

.reviews-actions { display: flex; flex-direction: column; align-items: center; gap: 0.9rem; margin-top: clamp(1.8rem, 4vw, 2.8rem); }
.reviews-airbnb-link { font-weight: 700; color: var(--river-blue); font-size: 0.92rem; }
.reviews-airbnb-link:hover { text-decoration: underline; }

@media (max-width: 620px) {
  .reviews-head { flex-direction: column; align-items: flex-start; }
  .reviews-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   Get Directions quick-access buttons (floating CTA + mobile bar)
   ========================================================= */
.float-cta__btn--maps { background: var(--river-blue); padding: 0.7rem 1.3rem 0.7rem 0.95rem; }
.mobile-contact-bar a.mobile-contact-bar__map { background: var(--river-blue); }

.rv-verify { display: inline-block; margin-top: 0.7rem; font-size: 0.78rem; font-weight: 700; color: var(--river-blue); }
.rv-verify:hover { text-decoration: underline; }

/* =========================================================
   Hero USP strip (key selling points)
   ========================================================= */
.hero__usp { display: flex; flex-wrap: wrap; gap: 0.6rem 0.9rem; margin-top: 1.1rem; list-style: none; padding: 0; }
.hero__usp li {
  font-family: var(--sans); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.04em;
  color: rgba(241,229,208,0.94);
  background: rgba(241,229,208,0.1);
  border: 1px solid rgba(241,229,208,0.28);
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  backdrop-filter: blur(4px);
}
@media (max-width: 680px) {
  .hero__usp { gap: 0.5rem; margin-top: 0.9rem; }
  .hero__usp li { font-size: 0.7rem; padding: 0.4rem 0.8rem; }
}
