:root {
  --ink: #1a1413;
  --ink-soft: #3a2f2d;
  --muted: #7d6e6a;
  --line: #ece3dc;
  --line-2: #ddc8c0;
  --bg: #fcf8f4;
  --bg-2: #f3ebe3;
  --bg-3: #ebe0d5;
  --bg-dark: #14090a;
  --bg-dark-2: #241315;
  --brand: #9a1f20;
  --brand-2: #c72c2d;
  --brand-deep: #6e1415;
  --gold: #c9a24a;
  --gold-2: #e5bd62;
  --cream: #fdf5ea;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
body.scroll-lock { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; }

/* ========== A11y: skip-link, focus-visible, motion ========== */
.skip-link {
  position: absolute;
  top: -40px;
  left: 8px;
  z-index: 200;
  padding: 10px 16px;
  background: var(--brand);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-decoration: none;
  border-radius: 6px;
  box-shadow: 0 4px 14px -4px rgba(0,0,0,.3);
  transition: top .15s ease;
}
.skip-link:focus { top: 8px; outline: 2px solid var(--gold-2); outline-offset: 2px; }

:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 4px;
}
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', 'Cormorant', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 .5em;
}

h1 { font-size: clamp(2.8rem, 7vw, 6rem); font-weight: 400; }
h1 em { font-style: italic; font-weight: 400; color: var(--brand-2); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 400; }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.75rem); font-weight: 500; }
h4 { font-size: 1.05rem; font-weight: 600; font-family: 'Inter', sans-serif; letter-spacing: -0.005em; }
h5 { font-size: .78rem; font-family: 'Inter', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: .18em; }

p { margin: 0 0 1em; color: var(--ink-soft); }

.container { max-width: 1280px; margin: 0 auto; padding: 0 36px; }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .28em;
  color: var(--brand);
  margin: 0 0 1.2em;
}

.section { padding: 130px 0; }
.sec-head { max-width: 740px; margin: 0 auto 72px; text-align: center; }
.sec-head h2 { margin-bottom: .4em; }
.sec-sub { color: var(--muted); font-size: 1.08rem; margin: 0; }

/* ========== NAV (AP Thai style — floating pill on scroll) ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  color: #fff;
  padding: 0;
  transition: padding .35s ease, color .35s ease;
}
.nav.scrolled {
  padding: 14px 18px;
  color: var(--ink);
}

.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 96px;
  padding: 0 40px;
  gap: 24px;
  transition: background .35s ease, min-height .35s ease, border-radius .35s ease, padding .35s ease, box-shadow .35s ease, backdrop-filter .35s ease;
}
.nav.scrolled .nav-inner {
  background: rgba(255,255,255,0.97);
  backdrop-filter: saturate(180%) blur(16px);
  min-height: 64px;
  border-radius: 999px;
  padding: 8px 24px;
  box-shadow: 0 10px 28px -12px rgba(0,0,0,.22);
}

.nav-left { display: flex; align-items: center; }
.nav-right { display: flex; align-items: center; justify-content: flex-end; gap: 14px; }

/* Menu button */
.menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 8px;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: inherit;
  font-family: inherit;
  transition: opacity .2s;
}
.menu-btn:hover { opacity: .7; }
.menu-icon {
  display: inline-block;
  width: 26px;
  height: 14px;
  position: relative;
}
.menu-icon span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transition: transform .3s, opacity .3s, top .3s;
}
.menu-icon span:nth-child(1) { top: 0; }
.menu-icon span:nth-child(2) { top: 6px; width: 70%; }
.menu-icon span:nth-child(3) { top: 12px; }
.menu-btn:hover .menu-icon span:nth-child(2) { width: 100%; }
.menu-label {
  font-size: .84rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Center logo (brand mark only — no wordmark) */
.nav-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  transition: color .35s ease, opacity .2s;
}
.nav-logo:hover { opacity: .85; }
.nav.scrolled .nav-logo { color: var(--brand); }

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  transition: width .3s, height .3s;
  flex-shrink: 0;
}
.brand-mark svg { width: 100%; height: 100%; display: block; }
.brand-mark-img { width: 100%; height: 100%; display: block; object-fit: contain; border-radius: 50%; }
.nav.scrolled .brand-mark { width: 44px; height: 44px; }

/* Lang toggle (segmented pill) */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  padding: 3px;
  gap: 0;
  transition: background .25s, border-color .25s;
}
.nav.scrolled .lang-toggle {
  background: rgba(154,31,32,.06);
  border-color: var(--line-2);
}
.lang-opt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  background: transparent;
  border: 0;
  font-family: inherit;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: inherit;
  cursor: pointer;
  border-radius: 999px;
  transition: background .2s, color .2s, opacity .2s;
  opacity: .7;
  line-height: 1;
  min-width: 36px;
}
.lang-opt:hover { opacity: 1; }
.lang-opt.active {
  background: var(--brand);
  color: #fff;
  opacity: 1;
}

/* Khmer font */
html[data-lang="kh"] body { font-family: 'Khmer OS Content', 'Noto Sans Khmer', 'Inter', -apple-system, sans-serif; }
html[data-lang="kh"] h1,
html[data-lang="kh"] h2,
html[data-lang="kh"] h3,
html[data-lang="kh"] blockquote,
html[data-lang="kh"] .hero-kh,
html[data-lang="kh"] .lede,
html[data-lang="kh"] .lede-alt {
  font-family: 'Khmer OS Content', 'Noto Serif Khmer', 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
}
html[data-lang="kh"] h1 { line-height: 1.3; }
html[data-lang="kh"] h2 { line-height: 1.35; }
html[data-lang="kh"] .btn,
html[data-lang="kh"] .menu-label { letter-spacing: .04em; }

.nav-cta {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  background: var(--brand);
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  transition: background .25s, transform .25s, box-shadow .25s, width .3s, height .3s;
  box-shadow: 0 6px 18px -6px rgba(154,31,32,.55);
}
.nav-cta:hover { background: var(--brand-2); transform: translateY(-1px); box-shadow: 0 8px 22px -6px rgba(154,31,32,.7); }
.nav.scrolled .nav-cta { width: 44px; height: 44px; }
.nav-cta svg { width: 18px; height: 18px; }

/* Search button on nav */
.nav-search {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.4);
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.nav-search:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.7); transform: translateY(-1px); }
.nav.scrolled .nav-search,
body.detail-nav-on .nav-search,
.nav.has-light .nav-search {
  border-color: var(--line-2, #d8c9c0);
  color: var(--ink);
}
.nav.scrolled .nav-search:hover { background: rgba(26,20,19,.06); border-color: var(--brand); color: var(--brand); }

/* ========== DRAWER ========== */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s;
}
.drawer.open {
  pointer-events: auto;
  opacity: 1;
}
.drawer-scrim {
  position: absolute;
  inset: 0;
  background: rgba(20, 9, 10, .65);
  backdrop-filter: blur(6px);
}
.drawer-panel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(460px, 92vw);
  background: var(--cream);
  color: var(--ink);
  transform: translateX(-100%);
  transition: transform .45s cubic-bezier(.22,1,.36,1);
  display: flex;
  flex-direction: column;
  padding: 32px 40px 32px;
  overflow-y: auto;
}
.drawer.open .drawer-panel { transform: translateX(0); }
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}
.drawer-eyebrow {
  font-size: .74rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--brand);
}
.drawer-close {
  background: transparent;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--ink);
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .3s, color .2s;
}
.drawer-close:hover { border-color: var(--brand); color: var(--brand); background: rgba(154,31,32,.06); transform: rotate(90deg); }

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.drawer-nav a {
  display: flex;
  align-items: baseline;
  gap: 22px;
  padding: 16px 0;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: padding-left .3s, color .2s;
}
.drawer-nav a:hover {
  padding-left: 12px;
  color: var(--brand);
}
.dn-num {
  font-size: .7rem;
  letter-spacing: .2em;
  color: var(--brand);
  font-weight: 600;
  flex-shrink: 0;
}
.dn-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 500;
}

.drawer-foot {
  margin-top: auto;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
}
.df-label {
  display: block;
  font-size: .7rem;
  letter-spacing: .24em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.drawer-foot a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--brand);
  padding-bottom: 1px;
  font-size: .94rem;
}
.df-social {
  display: flex;
  gap: 12px;
}
.df-social a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  color: var(--muted);
  transition: border-color .2s, background .2s, color .2s;
}
.df-social a:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: rgba(154,31,32,.06);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn-block { width: 100%; }
.btn-primary {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  box-shadow: 0 6px 18px -8px rgba(154,31,32,.55);
}
.btn-primary:hover { background: var(--brand-2); border-color: var(--brand-2); transform: translateY(-1px); }
.btn-dark { background: var(--brand-deep); color: #fff; border-color: var(--brand-deep); }
.btn-dark:hover { background: var(--brand); border-color: var(--brand); }
.btn-light { background: #fff; color: var(--ink); border-color: #fff; }
.btn-light:hover { background: var(--gold-2); border-color: var(--gold-2); color: var(--ink); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }

.link-arrow {
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--brand);
  transition: color .2s, padding-left .2s;
}
.link-arrow::after { content: " →"; transition: transform .2s; display: inline-block; }
.link-arrow:hover { color: var(--brand); }
.link-arrow:hover::after { transform: translateX(4px); }

/* ========== HERO ========== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  max-height: 960px;
  overflow: hidden;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.6s ease, transform 8s ease;
  transform: scale(1.04);
}
.hero-slide.is-active {
  opacity: 1;
  transform: scale(1.09);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(20,9,10,.55) 0%, rgba(20,9,10,.2) 30%, rgba(20,9,10,.85) 100%),
    linear-gradient(95deg, rgba(20,9,10,.35) 0%, rgba(20,9,10,0) 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 180px 56px 60px;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-kicker {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: .78rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  margin-bottom: 36px;
  color: rgba(255,255,255,.9);
}
.hero-kicker .line {
  width: 44px;
  height: 1px;
  background: var(--gold-2);
}
.hero-headline {
  color: #fff;
  margin: 0 0 24px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -.02em;
  text-shadow: 0 4px 22px rgba(0,0,0,.4);
}
.hero-headline em {
  font-style: italic;
  color: var(--brand-2);
  font-family: 'Cormorant Garamond', serif;
}
html[data-lang="kh"] .hero-headline {
  font-size: clamp(2rem, 4.6vw, 4rem);
  line-height: 1.25;
}
.hero-kh {
  font-family: 'Khmer OS Content', 'Noto Serif Khmer', 'Cormorant Garamond', serif;
  font-size: 1.12rem;
  color: rgba(255,255,255,.8);
  font-style: italic;
  margin: 0;
  letter-spacing: .02em;
}

.hero-bottom {
  position: relative;
  z-index: 2;
  padding: 0 56px 44px;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}
.hero-caption {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hc-location {
  font-size: .74rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
}
.hc-badge {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: normal;
  font-weight: 600;
  color: var(--brand-2);
  text-shadow: 0 2px 14px rgba(0,0,0,.4);
}
.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-size: .7rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  transition: color .2s;
}
.hero-scroll:hover { color: var(--gold-2); }
.hero-scroll svg {
  animation: scroll-bob 2.2s ease-in-out infinite;
}
@keyframes scroll-bob {
  0%, 100% { transform: translateY(0); opacity: .7; }
  50% { transform: translateY(6px); opacity: 1; }
}

.hero-dots {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hd-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.6);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background .3s, transform .3s;
}
.hd-dot.is-active {
  background: var(--gold-2);
  border-color: var(--gold-2);
  transform: scale(1.15);
}

/* ========== INTRO / ABOUT ========== */
.section-intro { background: var(--bg); }
.intro-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 96px;
  max-width: 1080px;
  margin: 0 auto;
}
.intro-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 18px;
}
.intro-label .rule { width: 40px; height: 1px; background: var(--brand); }
.intro-copy { max-width: 680px; }
.intro-copy .eyebrow { margin-bottom: 14px; }
.intro-copy h2 { margin-bottom: .55em; line-height: 1.18; letter-spacing: -.005em; }
.intro-copy .lede {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-style: italic;
  line-height: 1.55;
  margin-bottom: 1.15em;
  font-weight: 400;
  color: var(--ink);
}
.intro-copy p:not(.lede):not(.eyebrow) {
  font-size: 1.02rem;
  line-height: 1.78;
  color: var(--ink-soft);
  margin-bottom: 0;
  max-width: 62ch;
}
html[data-lang="kh"] .intro-copy p:not(.lede):not(.eyebrow) {
  font-size: 1rem;
  line-height: 1.95;
}

/* ========== HOMES CAROUSEL (AP Thai–style cards, 4 per row) ========== */
.section-homes { background: var(--bg-2); }

/* Filter pill bar above the carousel */
.home-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 36px;
}
.home-filter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: #fff;
  color: var(--ink);
  font-family: 'Inter', 'Noto Sans Khmer', sans-serif;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .02em;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 6px 16px -10px rgba(26,20,19,.18);
  transition: background .2s, color .2s, transform .2s, box-shadow .2s, border-color .2s;
}
.home-filter svg { color: var(--brand); transition: color .2s; }
.home-filter:hover {
  transform: translateY(-1px);
  border-color: rgba(154,31,32,.2);
  box-shadow: 0 12px 24px -12px rgba(26,20,19,.25);
}
.home-filter.is-active {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  box-shadow: 0 10px 22px -10px rgba(154,31,32,.55);
}
.home-filter.is-active svg { color: #fff; }

/* Hide cards that don't match the active filter */
.home-card.is-filtered-out {
  opacity: 0;
  transform: scale(.96);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  /* Keep the slot collapsed so the carousel re-flows */
  display: none;
}

.homes-carousel {
  position: relative;
  margin: 0 -64px;
  padding: 0 64px;
}
.homes-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 4px 24px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.homes-track::-webkit-scrollbar { display: none; }

.home-card {
  flex: 0 0 calc((100% - 3 * 20px) / 4);
  scroll-snap-align: start;
  background: #fff;
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  overflow: hidden;
  transition: transform .4s ease, box-shadow .4s ease;
  box-shadow: 0 14px 40px -24px rgba(26,20,19,.28);
}
.home-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -30px rgba(26,20,19,.32);
}

.home-cover {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--bg-3);
}
.home-cover::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 38%;
  background: linear-gradient(180deg, transparent 0%, rgba(26,20,19,.18) 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s ease;
}
.home-card:hover .home-cover::after { opacity: 1; }
.home-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.home-card:hover .home-cover img { transform: scale(1.05); }

.home-pill {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 14px;
  background: var(--brand);
  color: #fff;
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 999px;
  box-shadow: 0 4px 10px -4px rgba(154,31,32,.45);
}
.home-pill--tone { background: var(--brand-deep); box-shadow: 0 4px 10px -4px rgba(110,20,21,.45); }
.home-pill--featured {
  background: linear-gradient(135deg, #b8862c 0%, #d8a653 50%, #b8862c 100%);
  color: #fff;
  letter-spacing: .14em;
  padding: 7px 14px;
  font-weight: 700;
  box-shadow: 0 6px 16px -6px rgba(184,134,44,.55);
}
.home-card--featured {
  position: relative;
  box-shadow: 0 18px 50px -22px rgba(154,31,32,.32);
  outline: 1px solid rgba(184,134,44,.28);
  outline-offset: -1px;
}
.home-card--featured::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(184,134,44,.06) 0%, transparent 32%);
}
.home-card--featured:hover {
  box-shadow: 0 36px 70px -30px rgba(154,31,32,.36);
}

.home-body {
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: center;
  gap: 2px;
}
.home-title {
  margin: 0 0 4px;
  font-family: 'Inter', sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.2;
}
.home-kh {
  font-family: 'Khmer OS Content', 'Noto Serif Khmer', 'Cormorant Garamond', serif;
  font-size: .82rem;
  color: var(--muted);
  letter-spacing: .02em;
  font-weight: 500;
  margin-bottom: 10px;
}
.home-desc {
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: .82rem;
  line-height: 1.5;
}
.home-foot {
  margin-top: auto;
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.home-cta {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  background: var(--brand);
  color: #fff;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  text-decoration: none;
  transition: background .25s, transform .25s, box-shadow .25s;
  box-shadow: 0 6px 16px -6px rgba(154,31,32,.55);
}
.home-cta:hover {
  background: var(--brand-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -6px rgba(154,31,32,.65);
}
.home-cta:focus-visible { outline: 2px solid var(--gold-2); outline-offset: 3px; }
.home-cta svg { width: 20px; height: 20px; }

.carousel-nav {
  position: absolute;
  top: calc(50% - 12px);
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--brand);
  box-shadow: 0 10px 24px -10px rgba(26,20,19,.3);
  transition: background .2s, color .2s, border-color .2s, transform .2s, opacity .2s;
  z-index: 2;
}
.carousel-nav:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.carousel-nav:disabled {
  opacity: .35;
  cursor: not-allowed;
  transform: translateY(-50%);
}
.carousel-prev { left: 0; }
.carousel-next { right: 0; }

/* ========== HOME DETAILS MODAL ========== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s;
}
.modal.open { pointer-events: auto; opacity: 1; }
.modal-scrim {
  position: absolute;
  inset: 0;
  background: rgba(20, 9, 10, .72);
  backdrop-filter: blur(8px);
}
.modal-panel {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%) scale(.98);
  width: min(1120px, 94vw);
  max-height: 92vh;
  background: var(--bg);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.5);
  transition: transform .3s ease;
}
.modal.open .modal-panel { transform: translate(-50%, -50%) scale(1); }

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  border: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--ink);
  transition: background .2s, transform .3s;
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
}
.modal-close:hover { background: #fff; transform: rotate(90deg); }

.modal-gallery {
  position: relative;
  background: var(--bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
  max-height: 92vh;
  overflow: hidden;
}
.modal-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 92vh;
  background: var(--bg-2);
}
.mg-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--ink);
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
  transition: background .2s, transform .2s;
}
.mg-nav:hover { background: #fff; }
.mg-prev { left: 16px; }
.mg-next { right: 16px; }
.mg-counter {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 14px;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: .78rem;
  letter-spacing: .14em;
  border-radius: 999px;
  font-weight: 500;
}

.modal-body {
  padding: 44px 40px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.modal-kh {
  font-family: 'Khmer OS Content', 'Noto Serif Khmer', 'Cormorant Garamond', serif;
  font-size: .9rem;
  color: var(--brand);
  letter-spacing: .02em;
  font-weight: 600;
}
.modal-title {
  margin: 0 0 .15em;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}
.modal-desc {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 4px;
}
.modal-facts {
  margin: 6px 0 10px;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.modal-facts > div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.modal-facts dt {
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.modal-facts dd { margin: 0; color: var(--ink); font-size: .95rem; }
.modal-actions {
  margin-top: auto;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 12px;
}
.modal-actions .btn { flex: 1 1 160px; }

@media (max-width: 860px) {
  .modal-panel {
    grid-template-columns: 1fr;
    width: 96vw;
    max-height: 94vh;
  }
  .modal-gallery { min-height: 320px; max-height: 50vh; }
  .modal-body { padding: 28px 24px; max-height: 44vh; }
  .mg-nav { width: 40px; height: 40px; }
  .mg-prev { left: 10px; }
  .mg-next { right: 10px; }
}

/* ========== EXPERIENCE (light theme) ========== */
.section-exp {
  background: var(--bg);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.section-exp::before {
  content: "";
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(154,31,32,.06) 0%, transparent 70%);
  pointer-events: none;
}
.section-exp h2 { color: var(--ink); position: relative; }
.section-exp h4 { color: var(--ink); }
.section-exp p { color: var(--ink-soft); }
.section-exp .eyebrow { color: var(--brand); }
.exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
  position: relative;
}
.exp-media {
  aspect-ratio: 3 / 4;
  background-size: cover;
  background-position: center;
  position: relative;
}
.exp-media::after {
  content: "";
  position: absolute;
  inset: -16px -16px 16px 16px;
  border: 1px solid var(--brand);
  z-index: -1;
  pointer-events: none;
}
.exp-copy h2 { margin-bottom: .3em; }
.exp-list {
  list-style: none;
  padding: 0;
  margin: 36px 0 0;
}
.exp-list li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.exp-list li:last-child { border-bottom: 1px solid var(--line); }
.exp-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--brand);
  padding-top: 2px;
}

/* ========== FEATURES ========== */
.section-features { background: var(--bg); }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.feature {
  padding: 34px 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  transition: background .25s, transform .25s;
}
.feature:hover { background: #fff; transform: translateY(-2px); }
.ft-ic {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  color: var(--brand);
  background: rgba(154,31,32,.08);
  border-radius: 50%;
}
.ft-ic svg { width: 22px; height: 22px; }
.feature h4 { margin: 0 0 6px; font-size: 1rem; color: var(--ink); }
.feature p { margin: 0; font-size: .88rem; color: var(--muted); line-height: 1.5; }

/* ========== PROMO (banner only, modal for details) ========== */
/* ========== VISIT US ADDRESS CARD (in contact section) ========== */
.visit-card {
  position: relative;
  margin: 28px 0 26px;
  padding: 26px 28px 22px;
  background: linear-gradient(155deg, #fff 0%, #fbf6ee 100%);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 22px 52px -32px rgba(26,20,19,.32);
  overflow: hidden;
}
.visit-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--brand) 0%, #b8862c 100%);
}
.visit-card::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(184,134,44,.10) 0%, transparent 65%);
  pointer-events: none;
}

/* HEAD */
.visit-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px dashed rgba(26,20,19,.12);
  position: relative;
}
.visit-card-mark-wrap {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 58px; height: 58px;
  flex: 0 0 auto;
}
.visit-card-mark-wrap::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: conic-gradient(from 200deg, var(--brand) 0%, #b8862c 50%, var(--brand) 100%);
  padding: 2px;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}
.visit-card-mark {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
  box-shadow: 0 6px 16px -8px rgba(26,20,19,.3);
}
.visit-card-titles { display: flex; flex-direction: column; min-width: 0; gap: 2px; }
.visit-card-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: .66rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 600;
}
.visit-card-name {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--ink);
  text-transform: uppercase;
  line-height: 1.2;
}
.visit-card-kh {
  font-family: 'Khmer OS Content', 'Noto Serif Khmer', serif;
  font-size: .96rem;
  color: var(--ink-soft);
  font-weight: 500;
  margin-top: 2px;
}

/* ROWS */
.visit-card-rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
  position: relative;
}
.visit-row {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: start;
  gap: 14px;
}
.visit-ic {
  display: inline-grid;
  place-items: center;
  width: 32px; height: 32px;
  border-radius: 10px;
  background: rgba(154,31,32,.08);
  color: var(--brand);
  flex: 0 0 auto;
  margin-top: 2px;
}
.visit-row-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.visit-row-label {
  font-family: 'Inter', 'Noto Sans Khmer', sans-serif;
  font-size: .66rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.visit-row-value {
  font-size: .92rem;
  line-height: 1.55;
  color: var(--ink);
}

/* PHONES — two distinct clickable pills, never read as a duplicate string */
.visit-phones {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.visit-phone {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 14px;
  border: 1px solid rgba(154,31,32,.18);
  background: #fff;
  border-radius: 12px;
  text-decoration: none;
  color: var(--ink);
  transition: border-color .2s, transform .2s, box-shadow .2s, background .2s;
}
.visit-phone:hover {
  background: rgba(154,31,32,.04);
  border-color: var(--brand);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px -12px rgba(154,31,32,.4);
}
.visit-phone-tag {
  font-family: 'Inter', sans-serif;
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 700;
}
.visit-phone-num {
  font-family: 'Inter', sans-serif;
  font-size: .92rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: .01em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* CTA */
.visit-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background .25s, transform .25s, box-shadow .25s;
  box-shadow: 0 10px 22px -10px rgba(154,31,32,.6);
  position: relative;
}
.visit-card-cta:hover {
  background: var(--brand-2);
  transform: translateY(-1px);
  box-shadow: 0 14px 26px -10px rgba(154,31,32,.7);
}
.visit-card-cta svg { transition: transform .25s; }
.visit-card-cta:hover svg { transform: translateX(3px); }

@media (max-width: 520px) {
  .visit-card { padding: 22px 20px 18px; }
  .visit-card-head { gap: 12px; }
  .visit-card-mark-wrap { width: 50px; height: 50px; }
  .visit-card-name { font-size: .95rem; }
  .visit-phones { gap: 6px; }
  .visit-phone { padding: 7px 12px; flex: 1 1 calc(50% - 6px); }
  .visit-phone-num { font-size: .82rem; }
}

/* ========== MEDIA (Videos & poster album) ========== */
.section-media { background: var(--bg-2); padding: 96px 0; }
.section-media .sec-head { text-align: center; margin-bottom: 36px; }

.media-feature {
  max-width: 980px;
  margin: 0 auto 36px;
}
.media-feature-card {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 0;
  width: 100%;
  padding: 0;
  border: 0;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  box-shadow: 0 28px 64px -34px rgba(26,20,19,.4);
  transition: transform .35s ease, box-shadow .35s ease;
  font: inherit;
  color: inherit;
}
.media-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 40px 80px -40px rgba(26,20,19,.45);
}
.media-feature-card .media-cover {
  aspect-ratio: 16 / 10;
  border-radius: 0;
}
.media-feature-meta {
  padding: 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}
.media-feature-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  line-height: 1.2;
  color: var(--ink);
  font-weight: 500;
}
.media-feature-sub {
  font-size: .94rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.media-tag {
  font-family: 'Inter', sans-serif;
  font-size: .66rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 700;
}

/* Cover (shared between feature + grid cards) */
.media-cover {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-3);
  border-radius: 14px 14px 0 0;
}
.media-cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.media-cover-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,20,19,0) 40%, rgba(26,20,19,.55) 100%);
  pointer-events: none;
}
.media-card:hover .media-cover img,
.media-feature-card:hover .media-cover img { transform: scale(1.05); }

.media-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: inline-grid;
  place-items: center;
  width: 76px; height: 76px;
  border-radius: 50%;
  background: rgba(154,31,32,.95);
  color: #fff;
  box-shadow: 0 12px 32px -8px rgba(154,31,32,.7), 0 0 0 0 rgba(255,255,255,.5);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.media-play svg { margin-left: 4px; }
.media-play--sm { width: 52px; height: 52px; }
.media-play--sm svg { margin-left: 2px; }
.media-feature-card:hover .media-play,
.media-card:hover .media-play {
  transform: translate(-50%, -50%) scale(1.06);
  background: var(--brand-2);
  box-shadow: 0 18px 40px -10px rgba(154,31,32,.75), 0 0 0 8px rgba(255,255,255,.18);
}

.media-card-badge {
  position: absolute;
  top: 12px; left: 12px;
  padding: 5px 12px;
  font-family: 'Inter', sans-serif;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #fff;
  background: var(--brand);
  border-radius: 999px;
  box-shadow: 0 4px 10px -4px rgba(154,31,32,.45);
}
/* Grid */
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}
.media-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0;
  border: 0;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  box-shadow: 0 14px 36px -22px rgba(26,20,19,.28);
  transition: transform .3s ease, box-shadow .3s ease;
  font: inherit;
  color: inherit;
}
.media-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 50px -28px rgba(26,20,19,.35);
}
.media-card .media-cover { aspect-ratio: 16 / 10; }
.media-card-title {
  padding: 14px 16px 18px;
  font-family: 'Inter', 'Noto Sans Khmer', sans-serif;
  font-size: .92rem;
  line-height: 1.4;
  color: var(--ink);
  font-weight: 500;
}
/* Lightbox */
.media-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  transition: opacity .25s ease, visibility .25s;
}
.media-lightbox.is-open {
  visibility: visible;
  opacity: 1;
}
.media-lightbox-scrim {
  position: absolute;
  inset: 0;
  background: rgba(8,6,6,.78);
  backdrop-filter: blur(4px);
}
.media-lightbox-panel {
  position: relative;
  max-width: min(1080px, 92vw);
  max-height: 92vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.media-lightbox-close {
  position: absolute;
  top: -10px; right: -10px;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 10px 24px -10px rgba(0,0,0,.4);
  transition: transform .2s, background .2s;
}
.media-lightbox-close:hover { transform: rotate(90deg); background: var(--bg-2); }
.media-lightbox-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 36px 80px -30px rgba(0,0,0,.6);
}
.media-lightbox-frame iframe,
.media-lightbox-frame img {
  width: 100%; height: 100%;
  border: 0;
  display: block;
}
.media-lightbox-frame img { object-fit: contain; background: #000; }
.media-lightbox-frame--poster { aspect-ratio: auto; max-height: 78vh; }
.media-lightbox-title {
  margin: 0;
  text-align: center;
  color: rgba(255,255,255,.92);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  letter-spacing: .02em;
}

@media (max-width: 980px) {
  .media-feature-card { grid-template-columns: 1fr; }
  .media-feature-card .media-cover { aspect-ratio: 16 / 9; }
  .media-feature-meta { padding: 22px 24px 26px; }
  .media-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .media-play { width: 62px; height: 62px; }
}
@media (max-width: 560px) {
  .section-media { padding: 64px 0; }
  .media-grid { grid-template-columns: 1fr; }
  .media-play { width: 56px; height: 56px; }
}

/* ========== NEARBY (Branches, markets & daily life) ========== */
.section-nearby { background: var(--bg); padding: 90px 0; }
.section-nearby .sec-head { text-align: center; margin-bottom: 44px; }
.nearby-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1080px;
  margin: 0 auto;
}
.nearby-tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.nearby-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(154,31,32,.18);
  box-shadow: 0 18px 40px -22px rgba(26,20,19,.25);
}
.nearby-tile-ic {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(154,31,32,.07);
  color: var(--brand);
  margin-bottom: 8px;
}
.nearby-tile-dist {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.55rem;
  color: var(--ink);
  font-weight: 500;
  line-height: 1;
  margin-top: 4px;
}
.nearby-tile-name {
  font-family: 'Inter', 'Noto Sans Khmer', sans-serif;
  font-size: .96rem;
  color: var(--ink);
  font-weight: 600;
  margin-top: 6px;
}
.nearby-tile-cat {
  font-family: 'Inter', 'Noto Sans Khmer', sans-serif;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
@media (max-width: 860px) {
  .nearby-strip { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .section-nearby { padding: 64px 0; }
}
@media (max-width: 520px) {
  .nearby-strip { grid-template-columns: 1fr; }
}

.section-promo {
  background: var(--bg-2);
  padding: 110px 0;
}
.promo-head {
  text-align: center;
  margin-bottom: 44px;
}
.promo-head h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500;
  color: var(--ink);
}
.promo-hash {
  color: var(--brand);
  font-weight: 700;
  margin-right: 6px;
}
.promo-banner {
  display: block;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  box-shadow: 0 22px 50px -26px rgba(26,20,19,.3);
  transition: transform .35s ease, box-shadow .35s ease;
}
.promo-banner:hover { transform: translateY(-4px); box-shadow: 0 36px 70px -32px rgba(26,20,19,.35); }
.promo-banner img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform .8s ease;
}
.promo-banner:hover img { transform: scale(1.03); }
.promo-banner-cta {
  position: absolute;
  bottom: 22px;
  right: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--brand);
  color: #fff;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  box-shadow: 0 8px 22px -6px rgba(154,31,32,.55);
}

/* Promo modal (reuses .modal base) */
.modal-panel--promo {
  grid-template-columns: 1fr 1fr;
}
.promo-modal-media {
  background: var(--bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 480px;
  max-height: 92vh;
}
.promo-modal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.promo-modal-body {
  padding: 48px 40px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.promo-modal-body h3 {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  margin: 0 0 14px;
  font-weight: 500;
}
@media (max-width: 860px) {
  .modal-panel--promo { grid-template-columns: 1fr; }
  .promo-modal-media { min-height: 280px; max-height: 50vh; }
  .promo-modal-body { padding: 28px 24px; max-height: 44vh; }
}
.promo-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 600;
  margin: 0 0 16px;
}
.promo-card-body h3 {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  margin: 0 0 14px;
  color: var(--ink);
  font-weight: 500;
}
.promo-lede {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.18rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
  margin: 0 0 18px;
}
.promo-list {
  list-style: none;
  padding: 0;
  margin: 6px 0 22px;
}
.promo-list li {
  padding: 12px 0 12px 26px;
  position: relative;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: .95rem;
}
.promo-list li:first-child { border-top: 1px solid var(--line); }
.promo-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--brand);
}
.promo-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }

/* btn-outline (light bg secondary) */
.btn-outline {
  background: transparent;
  color: var(--brand);
  border: 1px solid var(--brand);
}
.btn-outline:hover {
  background: var(--brand);
  color: #fff;
}
/* ========== REVIEWS ========== */
.section-reviews { background: var(--bg-2); }
.rating-big {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 12px;
}
.rating-big .stars { color: var(--brand); letter-spacing: 2px; font-size: 1rem; }
.rating-big strong { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 500; }
.quotes {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
}
.quotes figure {
  margin: 0;
  padding: 36px 32px;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.quotes blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.22rem;
  line-height: 1.45;
  color: var(--ink);
  margin: 0;
  font-style: italic;
}
.quotes figcaption {
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: auto;
}
.quotes figcaption strong { font-size: .92rem; font-weight: 600; color: var(--ink); }
.quotes figcaption span { font-size: .78rem; color: var(--brand); letter-spacing: .08em; font-weight: 500; }

/* ========== SOCIAL ========== */
.section-social { background: var(--bg); }
.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.social-copy h2 { margin-bottom: .4em; max-width: 460px; }
.social-copy > p { max-width: 460px; margin-bottom: 2em; }
.social-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.social-embed iframe { max-width: 100%; box-shadow: 0 14px 40px -20px rgba(26,20,19,.2); }

/* ========== LOCATION ========== */
.section-location { background: var(--bg-2); }
.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: center;
}
.loc-copy h2 { margin-bottom: .4em; }
.loc-facts { margin: 36px 0; display: flex; flex-direction: column; }
.loc-facts > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.loc-facts > div:last-child { border-bottom: 1px solid var(--line); }
.loc-facts dt {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  padding-top: 2px;
}
.loc-facts dd { margin: 0; color: var(--ink); font-size: .98rem; line-height: 1.5; }
.loc-facts dd a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--brand);
}
.loc-facts dd a:hover { color: var(--brand); }
.loc-map {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e4ddd5;
  position: relative;
}
.loc-map::after {
  content: "";
  position: absolute;
  inset: -14px -14px 14px 14px;
  border: 1px solid var(--brand);
  z-index: -1;
  pointer-events: none;
}
.loc-map iframe { width: 100%; height: 100%; border: 0; }

/* ========== CONTACT (light theme, separate from promo) ========== */
.section-contact {
  background: var(--bg);
  border-top: 1px solid var(--line);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.section-contact::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(154,31,32,.07) 0%, transparent 70%);
  pointer-events: none;
}
.section-contact h2 { color: var(--ink); }
.section-contact p { color: var(--ink-soft); }
.section-contact .eyebrow { color: var(--brand); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.contact-copy h2 { margin-bottom: .3em; }
.contact-copy > p { font-size: 1.04rem; max-width: 460px; }
.contact-ways {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.cw {
  padding: 20px 2px;
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  transition: padding-left .25s, color .25s;
}
.cw:hover { padding-left: 10px; color: var(--brand); }
.cw:hover .cw-icon { border-color: var(--brand); color: var(--brand); background: rgba(154,31,32,.06); }
.cw-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  color: var(--muted);
  transition: border-color .25s, color .25s, background .25s;
}
.cw-text { display: flex; flex-direction: column; gap: 2px; }
.cw-label {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}
.cw-value { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; }

.form {
  background: var(--cream);
  color: var(--ink);
  padding: 44px;
  display: grid;
  gap: 18px;
}
.form-title {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-2);
  margin-bottom: 8px;
}
.form-title h3 { margin: 0; color: var(--ink); }
.form-title span {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 600;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form label {
  display: grid;
  gap: 8px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}
.form label em { font-style: normal; text-transform: none; letter-spacing: .02em; font-weight: 400; opacity: .7; }
.form input, .form select, .form textarea {
  padding: 14px 0 12px;
  border: 0;
  border-bottom: 1px solid var(--line-2);
  background: transparent;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  border-radius: 0;
}
.form input:focus, .form select:focus, .form textarea:focus { outline: 0; border-color: var(--brand); }
.form .btn { margin-top: 12px; }
.form-note {
  font-size: .74rem;
  color: var(--muted);
  text-align: center;
  margin: 2px 0 0;
}
.ok {
  background: #eef6ee;
  color: #236a3e;
  border: 1px solid #cfe6d7;
  padding: 14px;
  font-size: .9rem;
  text-align: center;
}

/* ========== FOOTER (apthai-style) ========== */
.footer {
  background: var(--bg-2);
  color: var(--ink-soft);
  padding: 84px 0 28px;
}
.footer h5 {
  color: var(--ink);
  font-size: .92rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  letter-spacing: .04em;
  text-transform: none;
  margin-bottom: 18px;
}
.footer p { color: var(--ink-soft); font-size: .92rem; margin: 0 0 .6em; line-height: 1.65; }
.footer a { color: var(--ink-soft); text-decoration: none; transition: color .2s; }
.footer a:hover { color: var(--brand); }

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 48px;
}
.footer-brand { max-width: 360px; }
.footer-mark {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--brand);
  margin-bottom: 20px;
}
.fm-img {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 14px rgba(154,31,32,.18);
  flex-shrink: 0;
}
.footer-mark > div { display: flex; flex-direction: column; gap: 2px; line-height: 1.1; }
.fm-en {
  font-size: .94rem;
  letter-spacing: .22em;
  font-weight: 700;
  color: var(--ink);
}
.fm-kh {
  font-family: 'Khmer OS Content', 'Noto Serif Khmer', serif;
  font-size: .92rem;
  color: var(--brand);
  margin-top: 4px;
}
.footer-tag {
  font-size: .92rem;
  color: var(--ink-soft);
  margin: 0 0 14px;
  line-height: 1.6;
}
.footer-addr {
  font-size: .88rem;
  color: var(--muted);
  margin: 0 0 22px;
  line-height: 1.65;
}
.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 8px 12px 22px;
  background: var(--brand);
  color: #fff !important;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  transition: background .25s, transform .25s, box-shadow .25s;
  box-shadow: 0 6px 18px -6px rgba(154,31,32,.5);
}
.footer-cta:hover { background: var(--brand-2); transform: translateY(-1px); }
.footer-cta-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  color: var(--brand);
}

.footer-col h5 { margin-top: 0; }
.footer-col-sub { margin-top: 22px !important; }
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a { font-size: .9rem; color: var(--ink-soft); }

.footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 32px;
  padding: 14px 28px;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 10px 28px -16px rgba(26,20,19,.18);
  flex-wrap: wrap;
}
.footer-bar-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-bar-links a {
  font-size: .88rem;
  font-weight: 500;
  color: var(--ink);
}
.footer-bar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px 8px 8px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: #fff;
  color: var(--ink) !important;
  font-size: .9rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  transition: border-color .2s, color .2s, background .2s;
}
.footer-phone:hover { border-color: var(--brand); color: var(--brand) !important; }
.footer-phone-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
}
.footer-socials {
  display: flex;
  gap: 8px;
}
.footer-socials a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  color: var(--muted);
  transition: border-color .2s, color .2s, background .2s;
}
.footer-socials a:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: rgba(154,31,32,.06);
}

.footer-base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  margin-top: 28px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-base p { font-size: .82rem; color: var(--muted); margin: 0; }
.footer-base-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-base-links a {
  font-size: .82rem;
  color: var(--muted);
}
.footer-base-soon {
  font-size: .82rem;
  color: var(--muted);
  opacity: .55;
  cursor: not-allowed;
  user-select: none;
}

@media (max-width: 960px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; max-width: none; }
  .footer-bar { flex-direction: column; align-items: flex-start; }
  .footer-base { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 580px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bar-links { gap: 16px; }
  .footer-bar-actions { width: 100%; justify-content: space-between; }
}

/* ========== HOME DETAIL PAGE ========== */
.breadcrumb {
  background: var(--bg);
  padding: 110px 0 0;
}
.breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 16px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  color: var(--muted);
}
.breadcrumb li { display: inline-flex; align-items: center; }
.breadcrumb li + li::before { content: "/"; margin: 0 10px 0 4px; color: var(--line-2); }
.breadcrumb a { color: var(--muted); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb [aria-current="page"] { color: var(--ink); font-weight: 600; }

/* Hero banner (full-bleed cover) */
.detail-banner {
  position: relative;
  height: clamp(380px, 54vh, 620px);
  overflow: hidden;
  color: #fff;
  margin-top: 96px; /* clear fixed nav */
}
/* Full-screen variant — matches index hero */
.detail-banner--full {
  height: 100vh;
  min-height: 640px;
  max-height: 960px;
  margin-top: 0;
}
.detail-banner--full .container {
  align-items: center;
}
.detail-banner--full .detail-banner-content {
  padding: 96px 0 0;
  max-width: 880px;
  align-items: flex-start;
  gap: 14px;
}
.detail-banner--full .detail-banner-title {
  font-size: clamp(2.8rem, 6.4vw, 5.6rem);
}
.detail-banner-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-family: 'Inter', sans-serif;
  font-size: .68rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.92);
  text-decoration: none;
  transition: color .2s, transform .2s;
}
.detail-banner-scroll:hover { color: var(--gold-2); transform: translateX(-50%) translateY(-2px); }
.detail-banner-scroll svg { animation: scroll-bob 2.2s ease-in-out infinite; }
.detail-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail-banner-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20,9,10,.3) 0%, rgba(20,9,10,.1) 30%, rgba(20,9,10,.82) 100%);
  pointer-events: none;
}
.detail-banner .container {
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-end;
}
.detail-banner-content {
  padding: 0 0 48px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  max-width: 760px;
}
.detail-banner-content .home-pill {
  position: static;
  display: inline-block;
}
.detail-banner-kh {
  margin: 0;
  font-family: 'Khmer OS Content', 'Noto Serif Khmer', 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  color: rgba(255,255,255,.92);
  letter-spacing: .02em;
}
.detail-banner-title {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.4rem, 5.2vw, 4.4rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -.01em;
  color: #fff;
  text-shadow: 0 4px 22px rgba(0,0,0,.45);
}
.detail-banner-loc {
  margin: 2px 0 0;
  font-family: 'Inter', sans-serif;
  font-size: .76rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.92);
}

/* Breadcrumb under banner (smaller top padding since banner handles nav clearance) */
.breadcrumb--under-banner { padding: 20px 0 0; background: var(--bg); }
.breadcrumb--under-banner ol { padding-top: 0; }

/* Summary container — actual content uses pd-* classes */
.detail-summary { background: var(--bg); padding: 32px 0 72px; }

/* Related promotions (hidden if none) */
.detail-promos { background: var(--bg-2); padding: 72px 0; }
.promos-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 20px;
}
.promos-head h2 {
  margin: 0;
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  color: var(--ink);
  font-weight: 500;
}
.promos-nav {
  display: flex;
  gap: 10px;
}
.promos-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--ink);
  transition: background .2s, color .2s, border-color .2s;
}
.promos-arrow:hover { background: var(--brand); color: #fff; border-color: var(--brand); }
.promos-strip {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 4px 4px 12px;
  scrollbar-width: none;
}
.promos-strip::-webkit-scrollbar { display: none; }
.promos-card {
  flex: 0 0 160px;
  scroll-snap-align: start;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  box-shadow: 0 8px 22px -14px rgba(26,20,19,.25);
  transition: transform .3s, box-shadow .3s;
}
.promos-card:hover { transform: translateY(-3px); box-shadow: 0 16px 30px -18px rgba(26,20,19,.3); }
.promos-cover {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-3);
}
.promos-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.promos-card:hover .promos-cover img { transform: scale(1.03); }
.promos-body { padding: 10px 12px 12px; }
.promos-body h3 {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Detail contact form */
.detail-contact { background: var(--bg); }
.detail-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}
.detail-contact .contact-copy h2 {
  margin-bottom: .3em;
  color: var(--ink);
}
.detail-contact .contact-copy > p {
  color: var(--ink-soft);
  font-size: 1rem;
  max-width: 440px;
  margin-bottom: 1.4em;
}
.contact-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  border-top: 1px solid var(--line);
}
.contact-benefits li {
  padding: 12px 0 12px 26px;
  position: relative;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: .95rem;
}
.contact-benefits li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--brand);
}
.detail-contact .contact-ways {
  margin-top: 0;
  border-top: 0;
}
.detail-contact .cw { color: var(--ink); border-color: var(--line); }
.detail-contact .cw:hover { color: var(--brand); }
.detail-contact .cw-label { color: var(--muted); }

/* Highlights */
.detail-highlights { background: var(--bg-2); }
.hl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.hl-item {
  background: #fff;
  border-radius: 18px;
  padding: 28px 26px;
  box-shadow: 0 14px 40px -28px rgba(26,20,19,.25);
}
.hl-ic {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(154,31,32,.08);
  color: var(--brand);
  margin-bottom: 16px;
}
.hl-ic svg { width: 24px; height: 24px; }
.hl-item h4 { margin: 0 0 8px; font-size: 1.05rem; color: var(--ink); }
.hl-item p { margin: 0; color: var(--ink-soft); font-size: .92rem; line-height: 1.55; }

/* Gallery container */
.detail-gallery { background: var(--bg); }

/* Related */
.detail-related { background: var(--bg-2); }
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.related-card {
  display: block;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  box-shadow: 0 14px 36px -24px rgba(26,20,19,.25);
  transition: transform .3s ease, box-shadow .3s ease;
}
.related-card:hover { transform: translateY(-4px); box-shadow: 0 26px 50px -28px rgba(26,20,19,.3); }
.related-cover { aspect-ratio: 4 / 3; overflow: hidden; background: var(--bg-3); }
.related-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.related-card:hover .related-cover img { transform: scale(1.05); }
.related-body { padding: 16px 18px 18px; text-align: center; }
.related-body h3 {
  margin: 0 0 4px;
  font-family: 'Inter', sans-serif;
  font-size: .98rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink);
}
.related-body span {
  font-family: 'Khmer OS Content', 'Noto Serif Khmer', 'Cormorant Garamond', serif;
  font-size: .82rem;
  color: var(--muted);
}

/* Lightbox panel — single image, no body */
.modal-panel--lightbox {
  grid-template-columns: 1fr;
  background: #fff;
  width: min(1200px, 96vw);
  max-height: 92vh;
}
.modal-panel--lightbox .modal-gallery {
  background: var(--bg-2);
  min-height: 60vh;
}
.modal-panel--lightbox .modal-img {
  background: var(--bg-2);
  object-fit: contain;
}

/* ===== Sticky in-page section nav (home detail) ===== */
/* Two states:
   - Above the hero fold: tucks below the main #nav (top: 88/72px).
   - Below the hero fold: <body class="detail-nav-on"> hides #nav and pins this
     bar at top: 0 — a single transforming top bar like apthai.com. */
.detail-nav {
  position: sticky;
  top: 88px;
  z-index: 60;
  background: transparent;
  padding: 16px 0;
  pointer-events: none;
  transition: top .35s cubic-bezier(.2,.8,.2,1), opacity .25s ease;
  opacity: 0;
  visibility: hidden;
}
body.detail-nav-on .detail-nav {
  top: 0;
  opacity: 1;
  visibility: visible;
}
body.detail-nav-on .nav {
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), opacity .25s ease;
}
.nav { transition: transform .35s cubic-bezier(.2,.8,.2,1), opacity .25s ease, padding .35s ease, color .35s ease; }
.detail-nav-inner {
  pointer-events: auto;
  max-width: 1280px;
  margin: 0 auto;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 18px 38px -22px rgba(26,20,19,.32), 0 2px 8px rgba(26,20,19,.06);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 6px 6px 6px;
  width: calc(100% - 48px);
}
.detail-nav-menu {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.detail-nav-menu:hover { background: var(--brand); color: #fff; border-color: var(--brand); }
.dn-menu-icon { display: inline-flex; flex-direction: column; gap: 4px; }
.dn-menu-icon span {
  width: 18px;
  height: 1.6px;
  background: currentColor;
  border-radius: 2px;
  transition: background .2s;
}
.detail-nav-line {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(38,165,228,.12);
  color: #1a8fc7;
  font-family: 'Inter', 'Noto Sans Khmer', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s, color .2s;
}
.detail-nav-line:hover { background: #26A5E4; color: #fff; }
.detail-nav-arrow {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  display: none;
  place-items: center;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.detail-nav-arrow:hover { background: var(--brand); color: #fff; border-color: var(--brand); }
.detail-nav-list {
  flex: 1 1 auto;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-behavior: smooth;
}
.detail-nav-list::-webkit-scrollbar { display: none; }
.detail-nav-list li { flex: 0 0 auto; }
.detail-nav-list a {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  font-family: 'Inter', 'Noto Sans Khmer', sans-serif;
  font-size: .9rem;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  border-radius: 999px;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s, background .2s;
}
.detail-nav-list a:hover { color: var(--brand); }
.detail-nav-list a:focus { outline: none; }
.detail-nav-list a:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; border-radius: 999px; }
.detail-nav-list a.is-active {
  color: var(--brand);
  border-bottom-color: var(--brand);
  border-radius: 0;
}
.detail-nav-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: var(--brand);
  color: #fff;
  border-radius: 999px;
  font-family: 'Inter', 'Noto Sans Khmer', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s, transform .2s;
}
.detail-nav-cta:hover { background: var(--brand-2, #c0292a); transform: translateY(-1px); }

/* Section-head modifiers used across detail page */
.sec-head--center { text-align: center; max-width: 760px; margin-left: auto; margin-right: auto; }
.sec-head--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}
.sec-head--split .eyebrow { margin-top: 0; }

/* ===== Gallery mosaic ===== */
.detail-gallery--compact { padding: 72px 0; }
.detail-gallery--compact .sec-head { margin-bottom: 36px; }
.gal-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
.detail-gallery--compact .gal-mosaic .gal-tile { aspect-ratio: 1 / 1; border-radius: 14px; }
.detail-gallery--compact .gal-mosaic-foot { margin-top: 8px; }
.gal-mosaic .gal-tile {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 0;
  padding: 0;
  border-radius: 16px;
  background: var(--bg-2);
  cursor: zoom-in;
  box-shadow: 0 14px 36px -28px rgba(26,20,19,.3);
  transition: transform .35s ease, box-shadow .35s ease;
}
.gal-mosaic .gal-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px -28px rgba(26,20,19,.35);
}
.gal-mosaic .gal-tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  padding: 8px;
  transition: transform .6s ease;
  display: block;
  box-sizing: border-box;
}
.gal-mosaic .gal-tile:hover img { transform: scale(1.05); }
.gal-tile-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(180deg, rgba(20,9,10,0) 35%, rgba(20,9,10,.55) 100%);
  opacity: 0;
  transition: opacity .25s ease;
}
.gal-tile:hover .gal-tile-overlay { opacity: 1; }
.gal-mosaic-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-family: 'Inter', 'Noto Sans Khmer', sans-serif;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .04em;
}
.gal-mosaic-foot { display: flex; justify-content: center; }
.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 14px 36px;
  background: transparent;
  border: 1px solid var(--line-2, #d8c9c0);
  color: var(--ink);
  font-family: 'Inter', 'Noto Sans Khmer', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.btn-outline:hover { background: var(--brand); color: #fff; border-color: var(--brand); }

/* ===== Search overlay (modal) ===== */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 110;
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s ease;
}
.search-overlay.open {
  pointer-events: auto;
  opacity: 1;
}
.search-scrim {
  position: absolute;
  inset: 0;
  background: rgba(20,9,10,.55);
  backdrop-filter: blur(8px);
}
.search-panel {
  position: absolute;
  top: 14vh;
  left: 50%;
  transform: translateX(-50%) translateY(-12px);
  width: min(640px, 92vw);
  max-height: 70vh;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 40px 80px -30px rgba(26,20,19,.5);
  overflow: hidden;
  transition: transform .25s ease;
}
.search-overlay.open .search-panel { transform: translateX(-50%) translateY(0); }
.search-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}
.search-bar input {
  flex: 1;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  outline: none;
  padding: 4px 0;
}
.search-bar input::placeholder { color: var(--muted); }
.search-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 0;
  background: rgba(26,20,19,.06);
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.search-close:hover { background: var(--brand); color: #fff; }
.search-hint {
  margin: 0;
  padding: 14px 20px;
  font-size: .8rem;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}
.search-results {
  overflow-y: auto;
  padding: 6px 0;
}
.search-result {
  display: grid;
  grid-template-columns: 64px 1fr 22px;
  gap: 14px;
  align-items: center;
  padding: 12px 20px;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  transition: background .15s;
}
.search-result:last-child { border-bottom: 0; }
.search-result:hover { background: rgba(154,31,32,.05); }
.search-thumb {
  width: 64px;
  height: 48px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-2);
}
.search-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.search-meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.search-meta strong {
  font-family: 'Inter', 'Noto Sans Khmer', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink);
}
.search-kh {
  font-family: 'Khmer OS Content', 'Noto Serif Khmer', serif;
  font-size: .82rem;
  color: var(--muted);
}
.search-type {
  font-family: 'Inter', sans-serif;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 600;
}
.search-arrow { color: var(--muted); transition: transform .2s, color .2s; }
.search-result:hover .search-arrow { transform: translateX(3px); color: var(--brand); }
.search-empty {
  margin: 0;
  padding: 28px 20px;
  text-align: center;
  color: var(--muted);
  font-size: .9rem;
}

/* ===== Drawer apthai-style overrides ===== */
.drawer--apt .drawer-panel {
  background: #1a0f0e;
  color: #f5e9d8;
  width: min(420px, 92vw);
  padding: 32px 28px 26px;
  gap: 0;
}
.drawer--apt .drawer-head { border-bottom: 0; padding-bottom: 16px; margin-bottom: 22px; }
.drawer--apt .drawer-close {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 999px;
  padding: 8px 14px 8px 12px;
  background: rgba(255,255,255,.08);
  color: #f5e9d8;
  font-family: 'Inter', 'Noto Sans Khmer', sans-serif;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .04em;
}
.drawer--apt .drawer-close:hover { background: rgba(255,255,255,.16); color: #fff; transform: none; }
.drawer--apt .drawer-nav { gap: 0; }
.drawer--apt .drawer-nav a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: #f5e9d8;
  font-family: 'Cormorant Garamond', 'Noto Serif Khmer', serif;
  font-size: 1.45rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: .01em;
  transition: color .2s, padding-left .25s;
}
.drawer--apt .drawer-nav a:hover { color: #d8a462; padding-left: 8px; }
.drawer-nav--secondary { margin-top: 14px; }
.drawer-section-label {
  margin: 0 0 8px;
  font-family: 'Inter', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: #d8a462;
}
.drawer-section-label + .drawer-nav--secondary { margin-top: 0; }
.drawer--apt .drawer-nav + .drawer-section-label { margin-top: 22px; }
.drawer-nav--secondary a {
  font-family: 'Inter', 'Noto Sans Khmer', sans-serif !important;
  font-size: .92rem !important;
  font-weight: 400 !important;
  color: rgba(245,233,216,.7) !important;
}
.drawer-nav--secondary a:hover { color: #f5e9d8 !important; }

.drawer-foot--apt {
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.drawer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.drawer-brand-img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: cover;
  background: #fff;
}
.drawer-brand div { display: flex; flex-direction: column; }
.drawer-brand-en {
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  letter-spacing: .14em;
  font-weight: 700;
  color: #f5e9d8;
}
.drawer-brand-tag {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: .82rem;
  color: rgba(245,233,216,.6);
}
.drawer-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(38,165,228,.16);
  color: #6ec3ee;
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.drawer-call:hover { background: #26A5E4; color: #fff; }

/* ===== Concept block ===== */
.detail-concept {
  background: var(--bg);
  text-align: center;
  padding: 110px 0 90px;
  position: relative;
  overflow: hidden;
}
.detail-concept-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.5rem;
  color: rgba(154,31,32,.55);
  margin: 0 0 14px;
  letter-spacing: .04em;
}
.detail-concept-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  letter-spacing: .18em;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 28px;
  text-transform: uppercase;
}
.detail-concept-body {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--ink-soft);
}
.detail-concept-mark {
  margin: 36px auto 0;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: rgba(154,31,32,.5);
  border-radius: 50%;
  background: rgba(154,31,32,.05);
}

/* ===== Bento Property Details ===== */
.detail-summary--bento {
  background: var(--bg);
  padding: 100px 0 100px;
}
.detail-summary--bento .sec-head { margin-bottom: 56px; }
.detail-summary--bento .sec-sub {
  max-width: 680px;
  margin: 18px auto 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.18rem;
  line-height: 1.6;
  color: var(--ink-soft);
}
/* ===== Property Details — compact 2-col layout ===== */
.pd-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}
.pd-hero {
  position: relative;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: var(--ink);
  min-height: 360px;
  box-shadow: 0 26px 50px -32px rgba(26,20,19,.32);
  isolation: isolate;
}
.pd-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.pd-hero:hover .pd-hero-img { transform: scale(1.04); }
.pd-hero-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 28px 28px 26px;
  color: #fff;
  background: linear-gradient(180deg, rgba(20,9,10,0) 0%, rgba(20,9,10,.78) 100%);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pd-hero-kh {
  font-family: 'Khmer OS Content', 'Noto Serif Khmer', 'Cormorant Garamond', serif;
  font-size: .95rem;
  color: rgba(255,255,255,.85);
}
.pd-hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 500;
  line-height: 1.05;
  color: #fff;
}
.pd-hero-loc {
  margin-top: 6px;
  font-size: .65rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
}
.pd-facts {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px 28px 26px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 18px 40px -32px rgba(26,20,19,.25);
}
.pd-facts-title {
  font-family: 'Inter', 'Noto Sans Khmer', sans-serif;
  font-size: .68rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin: 0 0 14px;
}
.pd-fact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}
.pd-fact {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.pd-fact:last-child { border-bottom: 0; padding-bottom: 4px; }
.pd-fact:first-child { padding-top: 4px; }
.pd-fact-ic {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(154,31,32,.08);
  color: var(--brand);
  display: grid;
  place-items: center;
}
.pd-fact-label {
  font-family: 'Inter', 'Noto Sans Khmer', sans-serif;
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.pd-fact-value {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  color: var(--ink);
  font-weight: 500;
  text-align: right;
  line-height: 1.25;
}
.pd-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--brand);
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-family: 'Inter', 'Noto Sans Khmer', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .04em;
  transition: background .2s, transform .2s;
}
.pd-cta:hover { background: var(--brand-2, #c0292a); transform: translateY(-1px); }
.pd-cta-note {
  margin: 10px 0 0;
  text-align: center;
  font-family: 'Inter', 'Noto Sans Khmer', sans-serif;
  font-size: .72rem;
  color: var(--muted);
  letter-spacing: .04em;
}

.bento {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(170px, auto);
  gap: 18px;
}
.bento--compact { grid-auto-rows: minmax(150px, auto); gap: 16px; }
.bento-card {
  position: relative;
  background: #fff;
  border-radius: 22px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(154,31,32,.25);
  box-shadow: 0 30px 50px -32px rgba(26,20,19,.3);
}
.bento-card--hero {
  grid-column: span 2;
  grid-row: span 2;
  padding: 0;
  border: 0;
  background: var(--ink);
  min-height: 320px;
}
.bento-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.bento-card--hero:hover .bento-hero-img { transform: scale(1.05); }
.bento-hero-overlay {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 28px 28px 26px;
  color: #fff;
  background: linear-gradient(180deg, rgba(20,9,10,0) 0%, rgba(20,9,10,.78) 100%);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.bento-hero-eyebrow {
  font-family: 'Khmer OS Content', 'Noto Serif Khmer', 'Cormorant Garamond', serif;
  font-size: .95rem;
  color: rgba(255,255,255,.85);
}
.bento-hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -.01em;
  color: #fff;
}
.bento-hero-loc {
  margin-top: 6px;
  font-size: .68rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
}
.bento-card--feature {
  grid-column: span 1;
  grid-row: span 2;
  position: relative;
  overflow: hidden;
}
.bento-card--feature::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(154,31,32,.06) 0%, rgba(154,31,32,0) 70%);
  pointer-events: none;
}
.bento-illu {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  color: var(--brand);
  background: rgba(154,31,32,.08);
  border-radius: 18px;
  flex: 0 0 auto;
}
.bento-illu--brand { color: var(--brand); background: rgba(154,31,32,.1); }
.bento-card--feature .bento-illu { margin: 0 0 auto; }
.bento-card--feature .bento-label { margin-top: 12px; }
.bento-card--feature .bento-value { margin-top: 6px; font-size: 1.5rem; }
.bento-card--cream { background: #f9efe6; border-color: rgba(154,31,32,.12); }
.bento-card--mini {
  grid-column: span 1;
  grid-row: span 1;
  padding: 18px 20px;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}
.bento-card--mini .bento-mini-ic {
  margin-left: auto;
  flex: 0 0 auto;
}
.bento-card--mini .bento-label,
.bento-card--mini .bento-value { display: block; }
.bento-card--dark {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.bento-card--dark .bento-label { color: rgba(255,255,255,.6); }
.bento-card--dark .bento-value { color: #fff; }
.bento-card--dark:hover { background: #2a2120; }
.bento-card--cta {
  grid-column: span 2;
  grid-row: span 1;
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  text-decoration: none;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
}
.bento-card--cta .bento-label { color: rgba(255,255,255,.7); }
.bento-card--cta .bento-value { color: #fff; font-size: 1.15rem; }
.bento-card--cta:hover { background: var(--brand-2, #c0292a); border-color: var(--brand-2, #c0292a); }
.bento-cta-ic {
  margin-left: auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  transition: transform .25s ease, background .25s ease;
}
.bento-card--cta:hover .bento-cta-ic { transform: translateX(4px); background: rgba(255,255,255,.28); }
.bento-label {
  font-family: 'Inter', 'Noto Sans Khmer', sans-serif;
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.bento-value {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.32rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.25;
}

/* ===== Nearby destinations cards ===== */
.nearby-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0 0 44px;
}
.nearby-card {
  position: relative;
  padding: 26px 22px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.nearby-card:hover {
  transform: translateY(-4px);
  border-color: rgba(154,31,32,.3);
  box-shadow: 0 22px 40px -28px rgba(26,20,19,.3);
}
.nearby-ic {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(154,31,32,.08);
  color: var(--brand);
  display: grid;
  place-items: center;
  margin-bottom: 6px;
}
.nearby-dist {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--ink);
}
.nearby-name {
  font-family: 'Inter', 'Noto Sans Khmer', sans-serif;
  font-size: .95rem;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.35;
}
.nearby-cat {
  font-family: 'Inter', 'Noto Sans Khmer', sans-serif;
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

/* ===== Map section ===== */
.detail-map { background: var(--bg); }
.detail-map .sec-head { margin-bottom: 36px; }
.map-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 60px -32px rgba(26,20,19,.3);
  background: var(--bg-2);
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.map-cta {
  position: absolute;
  bottom: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--brand);
  color: #fff;
  font-family: 'Inter', 'Noto Sans Khmer', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 10px 28px -10px rgba(26,20,19,.4);
  transition: background .2s, transform .2s;
}
.map-cta:hover { background: var(--brand-2, #c0292a); transform: translateY(-1px); }

/* ===== Promotions — dark/gold "lux" treatment ===== */
.detail-promos--lux {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(1100px 600px at 12% -10%, rgba(216,164,98,.18), transparent 65%),
    radial-gradient(900px 500px at 95% 110%, rgba(154,31,32,.35), transparent 65%),
    linear-gradient(180deg, #1a0c0d 0%, #110709 100%);
  color: #f5e9d8;
  padding: 96px 0;
  overflow: hidden;
}
.promos-glow {
  position: absolute;
  top: -120px;
  left: -120px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216,164,98,.4) 0%, rgba(216,164,98,0) 65%);
  pointer-events: none;
  z-index: 0;
}
.promos-glow--right {
  left: auto;
  right: -120px;
  top: auto;
  bottom: -120px;
  background: radial-gradient(circle, rgba(154,31,32,.45) 0%, rgba(154,31,32,0) 65%);
}
.detail-promos--lux .container { position: relative; z-index: 1; }
.detail-promos--lux .promos-head h2 {
  color: #f5e9d8;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: .04em;
}
.eyebrow--gold {
  color: #d8a462 !important;
  letter-spacing: .3em !important;
}
.detail-promos--lux .promos-arrow {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(216,164,98,.4);
  color: #d8a462;
}
.detail-promos--lux .promos-arrow:hover { background: #d8a462; color: #1a0c0d; border-color: #d8a462; }
.detail-promos--lux .promos-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(216,164,98,.2);
  color: #f5e9d8;
  flex: 0 0 220px;
  border-radius: 16px;
  backdrop-filter: blur(2px);
}
.detail-promos--lux .promos-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(216,164,98,.6);
  box-shadow: 0 24px 50px -28px rgba(216,164,98,.5);
}
.detail-promos--lux .promos-body { padding: 14px 16px 18px; }
.detail-promos--lux .promos-body h3 {
  color: #f5e9d8;
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .04em;
}

/* Detail page responsive */
@media (max-width: 960px) {
  .detail-banner { margin-top: 80px; height: clamp(320px, 44vh, 460px); }
  .detail-banner--full { margin-top: 0; height: 100vh; min-height: 560px; }
  .detail-banner--full .detail-banner-content { padding-top: 80px; }
  .detail-banner-content { padding-bottom: 36px; }
  .hl-grid { grid-template-columns: 1fr; gap: 16px; }
  .gal-mosaic { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .related-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .promos-card { flex: 0 0 calc((100% - 18px) / 2); }
  .detail-contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .map-frame { aspect-ratio: 4 / 3; }
  .detail-nav { top: 76px; padding: 12px 0; }
  .detail-nav-inner { width: calc(100% - 24px); padding: 4px 4px 4px 4px; gap: 2px; }
  .detail-nav-menu { width: 38px; height: 38px; }
  .detail-nav-arrow { display: grid; }
  .detail-nav-cta { display: none; }
  .detail-nav-line { display: none; }
  .detail-nav-list a { padding: 9px 12px; font-size: .82rem; }
  .sec-head--split { flex-direction: column; align-items: flex-start; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-card--hero { grid-column: span 2; grid-row: span 2; min-height: 280px; }
  .bento-card--feature { grid-column: span 1; grid-row: span 2; }
  .bento-card--cta { grid-column: span 2; }
  .pd-grid { grid-template-columns: 1fr; gap: 18px; }
  .pd-hero { min-height: 280px; }
  .nearby-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .detail-concept { padding: 80px 0 60px; }
}
@media (max-width: 580px) {
  .breadcrumb--under-banner { padding-top: 16px; }
  .breadcrumb ol { font-size: .76rem; }
  .breadcrumb li + li::before { margin: 0 6px; }
  .detail-banner { margin-top: 72px; height: clamp(280px, 40vh, 380px); }
  .detail-banner--full { margin-top: 0; height: 100vh; min-height: 520px; }
  .detail-banner-content { padding-bottom: 28px; }
  .detail-summary { padding: 24px 0 60px; }
  .gal-mosaic { grid-template-columns: 1fr; gap: 12px; }
  .related-grid { grid-template-columns: 1fr; }
  .promos-card { flex: 0 0 78%; }
  .map-frame { aspect-ratio: 1 / 1; }
  .detail-nav { top: 68px; padding: 10px 0; }
  .detail-nav-list a { padding: 8px 10px; font-size: .78rem; }
  .bento { grid-template-columns: 1fr; gap: 14px; grid-auto-rows: minmax(140px, auto); }
  .bento-card--hero { grid-column: span 1; grid-row: span 2; min-height: 240px; }
  .bento-card--feature { grid-column: span 1; grid-row: span 1; }
  .bento-card--cta { grid-column: span 1; padding: 18px 20px; }
  .nearby-grid { grid-template-columns: 1fr; }
  .detail-concept-title { letter-spacing: .12em; }
}

/* ========== FAB ========== */
.fab-telegram {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #26A5E4;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 22px rgba(38,165,228,.45);
  transition: transform .25s, box-shadow .25s;
  text-decoration: none;
}
.fab-telegram:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 12px 28px rgba(38,165,228,.6); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .homes-carousel { margin: 0 -48px; padding: 0 48px; }
  .home-card { flex: 0 0 calc((100% - 2 * 20px) / 3); }
}

@media (max-width: 960px) {
  .section { padding: 88px 0; }
  .container { padding: 0 24px; }
  .sec-head { margin-bottom: 48px; }
  .intro-grid { grid-template-columns: 1fr; gap: 24px; }
  .nav-inner { padding: 0 20px; min-height: 80px; }
  .nav.scrolled .nav-inner { min-height: 60px; padding: 6px 18px; }
  .home-card { flex: 0 0 calc((100% - 20px) / 2); }
  .hero-content { padding: 160px 24px 24px; }
  .hero-bottom { padding: 0 24px 32px; flex-direction: column; align-items: flex-start; gap: 18px; }
  .hero-scroll { flex-direction: row; align-self: flex-end; }
  .hero-scroll svg { transform: rotate(-90deg); }
  .hero-dots { right: 20px; }
  .exp-grid { grid-template-columns: 1fr; gap: 48px; }
  .exp-media { aspect-ratio: 16 / 10; max-height: 440px; }
  .social-grid { grid-template-columns: 1fr; gap: 48px; }
  .loc-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .promo-grid { grid-template-columns: 1fr; gap: 32px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .quotes { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 680px) {
  .nav-cta { width: 42px; height: 42px; }
  .nav.scrolled .nav-cta { width: 40px; height: 40px; }
  .nav-cta svg { width: 16px; height: 16px; }
  .menu-label { display: none; }
  .menu-btn { gap: 0; }
  .lang-toggle { font-size: .76rem; }
  .brand-mark { width: 44px; height: 44px; }
  .nav.scrolled .brand-mark { width: 40px; height: 40px; }
  .hero { min-height: 560px; }
  .hero-content { padding: 140px 20px 20px; }
  .hero-kicker { font-size: .68rem; letter-spacing: .28em; gap: 12px; margin-bottom: 24px; }
  .hero-kicker .line { width: 28px; }
  .hero-bottom { padding: 0 20px 24px; }
  .home-card { flex: 0 0 85%; }
  .carousel-nav { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .form { padding: 28px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .drawer-panel { padding: 28px 28px; }
  .dn-label { font-size: 1.4rem; }
  .fab-telegram { right: 16px; bottom: 16px; width: 52px; height: 52px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-slide { transition: opacity .3s; transform: none !important; }
  .hero-scroll svg { animation: none; }
}
